
    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_27680e97729db518c50b1ee7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_6936028b21f4f9a4b15f4825.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d959661239fcac08f3ebcd87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.185000;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_b834e87ed126be90b4b27ef2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.165000;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_f1c1da65a290a82ec3a1fa01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_579c103e50bd3c58fba7b5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.176000;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;}
.m2b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247591,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247593,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247782,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247986,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248109,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248139,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248152,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248205,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248211,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248327,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248393,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248407,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248424,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m45{transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);}
.m93{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);}
.m9b{transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.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);}
.m62{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248673,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248755,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248868,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249061,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249066,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.mdb{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);}
.m14{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249261,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249411,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249461,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249502,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.mb8{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);}
.m1d{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.mb3{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250061,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250143,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m7b{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);}
.mc5{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250341,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250452,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m3d{transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250603,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250643,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250664,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250689,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250904,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251173,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251202,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251224,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.972000px;}
.v2{vertical-align:21.978000px;}
.ls29{letter-spacing:-6.600000px;}
.ls28{letter-spacing:-4.560000px;}
.ls21{letter-spacing:-4.554000px;}
.ls36{letter-spacing:-4.422000px;}
.ls34{letter-spacing:-2.046000px;}
.ls14{letter-spacing:-1.914000px;}
.ls31{letter-spacing:-1.620000px;}
.ls15{letter-spacing:-1.452000px;}
.ls11{letter-spacing:-0.990000px;}
.ls12{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.858000px;}
.ls17{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls16{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.594000px;}
.ls1c{letter-spacing:-0.528000px;}
.ls1d{letter-spacing:-0.462000px;}
.ls37{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.396000px;}
.ls44{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.330000px;}
.ls3b{letter-spacing:-0.285000px;}
.ls7{letter-spacing:-0.264000px;}
.ls23{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.228000px;}
.ls22{letter-spacing:-0.198000px;}
.ls27{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.171000px;}
.ls8{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.114000px;}
.lsf{letter-spacing:-0.066000px;}
.ls30{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.057000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000066px;}
.ls25{letter-spacing:0.033000px;}
.ls2d{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.066000px;}
.ls2c{letter-spacing:0.090000px;}
.ls41{letter-spacing:0.114000px;}
.ls19{letter-spacing:0.132000px;}
.ls20{letter-spacing:0.150000px;}
.ls38{letter-spacing:0.153912px;}
.ls24{letter-spacing:0.165000px;}
.ls3c{letter-spacing:0.171000px;}
.lsb{letter-spacing:0.198000px;}
.ls42{letter-spacing:0.228000px;}
.ls3{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.264000px;}
.ls2e{letter-spacing:0.269346px;}
.ls26{letter-spacing:0.270000px;}
.ls3e{letter-spacing:0.285000px;}
.ls33{letter-spacing:0.300000px;}
.ls43{letter-spacing:0.307800px;}
.lsc{letter-spacing:0.330000px;}
.ls3d{letter-spacing:0.342000px;}
.ls1f{letter-spacing:0.396000px;}
.ls39{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.462000px;}
.ls32{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.726000px;}
.lse{letter-spacing:0.810000px;}
.ls1b{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls35{letter-spacing:1.722600px;}
.ls2f{letter-spacing:2.112000px;}
.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;}
}
.ws2{word-spacing:-16.632000px;}
.ws93{word-spacing:-14.322000px;}
.ws1e{word-spacing:-14.190000px;}
.ws92{word-spacing:-14.124000px;}
.ws82{word-spacing:-14.058000px;}
.wscd{word-spacing:-13.992000px;}
.wsa6{word-spacing:-13.926000px;}
.ws40{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.794000px;}
.ws60{word-spacing:-13.728000px;}
.wsa5{word-spacing:-13.608000px;}
.ws83{word-spacing:-13.596000px;}
.ws4{word-spacing:-13.530000px;}
.ws57{word-spacing:-13.464000px;}
.ws59{word-spacing:-13.398000px;}
.ws20{word-spacing:-13.266000px;}
.wsae{word-spacing:-13.200000px;}
.ws58{word-spacing:-13.134000px;}
.ws81{word-spacing:-13.068000px;}
.wsd1{word-spacing:-13.002000px;}
.ws8f{word-spacing:-12.870000px;}
.wsc5{word-spacing:-12.840000px;}
.wsb5{word-spacing:-12.804000px;}
.wsd3{word-spacing:-12.798000px;}
.ws6e{word-spacing:-12.738000px;}
.wsd4{word-spacing:-12.672000px;}
.ws95{word-spacing:-12.660000px;}
.wscb{word-spacing:-12.606000px;}
.ws41{word-spacing:-12.600000px;}
.wsbe{word-spacing:-12.540000px;}
.ws84{word-spacing:-12.420000px;}
.wsca{word-spacing:-12.408000px;}
.ws6f{word-spacing:-12.360000px;}
.wsc9{word-spacing:-12.342000px;}
.wsdc{word-spacing:-11.970000px;}
.ws23{word-spacing:-11.700000px;}
.wsc8{word-spacing:-11.685000px;}
.ws22{word-spacing:-11.418000px;}
.wsef{word-spacing:-11.115000px;}
.ws21{word-spacing:-10.956000px;}
.wsdd{word-spacing:-10.830000px;}
.wsc4{word-spacing:-9.438000px;}
.ws61{word-spacing:-9.306000px;}
.ws94{word-spacing:-8.349726px;}
.ws3{word-spacing:-8.080380px;}
.ws85{word-spacing:-8.040000px;}
.ws90{word-spacing:-7.260000px;}
.ws1{word-spacing:-6.978510px;}
.wsee{word-spacing:-6.480045px;}
.ws77{word-spacing:-3.432000px;}
.wsbf{word-spacing:-3.168000px;}
.wsa2{word-spacing:-3.036000px;}
.ws5d{word-spacing:-2.970000px;}
.ws10b{word-spacing:-2.964000px;}
.wsa3{word-spacing:-2.904000px;}
.ws19{word-spacing:-2.838000px;}
.wse8{word-spacing:-2.793000px;}
.ws11{word-spacing:-2.772000px;}
.ws49{word-spacing:-2.706000px;}
.ws91{word-spacing:-2.640000px;}
.ws7e{word-spacing:-2.580000px;}
.ws4a{word-spacing:-2.574000px;}
.ws3d{word-spacing:-2.520000px;}
.ws8a{word-spacing:-2.508000px;}
.wse6{word-spacing:-2.451000px;}
.ws3b{word-spacing:-2.442000px;}
.wsb{word-spacing:-2.394000px;}
.ws89{word-spacing:-2.376000px;}
.ws9c{word-spacing:-2.340000px;}
.wsb6{word-spacing:-2.310000px;}
.wsb0{word-spacing:-2.244000px;}
.wse7{word-spacing:-2.223000px;}
.wsb8{word-spacing:-2.160000px;}
.wsb2{word-spacing:-2.112000px;}
.ws101{word-spacing:-2.109000px;}
.wsb3{word-spacing:-2.100000px;}
.ws29{word-spacing:-2.046000px;}
.ws2c{word-spacing:-1.980000px;}
.wsc1{word-spacing:-1.914000px;}
.wse2{word-spacing:-1.881000px;}
.ws2a{word-spacing:-1.848000px;}
.wsfb{word-spacing:-1.824000px;}
.ws86{word-spacing:-1.782000px;}
.wsf0{word-spacing:-1.767000px;}
.ws43{word-spacing:-1.716000px;}
.wse{word-spacing:-1.710000px;}
.wsd5{word-spacing:-1.650000px;}
.ws63{word-spacing:-1.584000px;}
.wsda{word-spacing:-1.560000px;}
.wsd0{word-spacing:-1.518000px;}
.ws103{word-spacing:-1.482000px;}
.ws97{word-spacing:-1.452000px;}
.ws4e{word-spacing:-1.386000px;}
.wsbb{word-spacing:-1.380000px;}
.ws105{word-spacing:-1.368000px;}
.ws5{word-spacing:-1.350000px;}
.ws38{word-spacing:-1.320000px;}
.ws9d{word-spacing:-1.260000px;}
.ws47{word-spacing:-1.254000px;}
.ws96{word-spacing:-1.188000px;}
.wscc{word-spacing:-1.122000px;}
.ws100{word-spacing:-1.083000px;}
.wsc2{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.056000px;}
.wsff{word-spacing:-1.026000px;}
.ws54{word-spacing:-1.020000px;}
.ws5c{word-spacing:-0.990000px;}
.ws34{word-spacing:-0.924000px;}
.ws113{word-spacing:-0.912000px;}
.wsb7{word-spacing:-0.900000px;}
.ws31{word-spacing:-0.858000px;}
.ws9{word-spacing:-0.855000px;}
.ws46{word-spacing:-0.792000px;}
.ws3a{word-spacing:-0.726000px;}
.ws32{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.660000px;}
.wse3{word-spacing:-0.627000px;}
.ws9b{word-spacing:-0.600000px;}
.wsa7{word-spacing:-0.594000px;}
.wsec{word-spacing:-0.570000px;}
.ws7d{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.513000px;}
.wsa4{word-spacing:-0.462000px;}
.wsc3{word-spacing:-0.420000px;}
.ws70{word-spacing:-0.396000px;}
.ws7{word-spacing:-0.342000px;}
.ws4c{word-spacing:-0.330000px;}
.ws9a{word-spacing:-0.300000px;}
.ws102{word-spacing:-0.285000px;}
.ws79{word-spacing:-0.264000px;}
.ws10f{word-spacing:-0.228000px;}
.ws39{word-spacing:-0.198000px;}
.wse0{word-spacing:-0.171000px;}
.wsd9{word-spacing:-0.153912px;}
.ws2f{word-spacing:-0.132000px;}
.ws87{word-spacing:-0.066000px;}
.ws10e{word-spacing:-0.057000px;}
.ws6{word-spacing:0.000000px;}
.wsdf{word-spacing:0.057000px;}
.wsbc{word-spacing:0.060000px;}
.ws36{word-spacing:0.066000px;}
.ws75{word-spacing:0.132000px;}
.ws104{word-spacing:0.171000px;}
.ws69{word-spacing:0.198000px;}
.wsed{word-spacing:0.228000px;}
.ws5b{word-spacing:0.264000px;}
.ws8{word-spacing:0.285000px;}
.ws2d{word-spacing:0.330000px;}
.wsa{word-spacing:0.342000px;}
.ws8d{word-spacing:0.360000px;}
.ws8b{word-spacing:0.396000px;}
.ws111{word-spacing:0.399000px;}
.ws8c{word-spacing:0.462000px;}
.ws107{word-spacing:0.513000px;}
.ws6b{word-spacing:0.528000px;}
.ws13{word-spacing:0.594000px;}
.wsf9{word-spacing:0.627000px;}
.ws3f{word-spacing:0.660000px;}
.wsf8{word-spacing:0.684000px;}
.ws71{word-spacing:0.726000px;}
.ws66{word-spacing:0.792000px;}
.ws110{word-spacing:0.855000px;}
.ws33{word-spacing:0.858000px;}
.wsfd{word-spacing:0.912000px;}
.ws35{word-spacing:0.924000px;}
.ws109{word-spacing:0.969000px;}
.ws7a{word-spacing:0.990000px;}
.ws3e{word-spacing:1.020000px;}
.wsfc{word-spacing:1.026000px;}
.ws3c{word-spacing:1.056000px;}
.wsc0{word-spacing:1.122000px;}
.ws99{word-spacing:1.140000px;}
.ws51{word-spacing:1.188000px;}
.wsd8{word-spacing:1.200000px;}
.ws5a{word-spacing:1.254000px;}
.ws78{word-spacing:1.320000px;}
.wsc{word-spacing:1.368000px;}
.wsa9{word-spacing:1.386000px;}
.ws64{word-spacing:1.452000px;}
.wsba{word-spacing:1.500000px;}
.ws62{word-spacing:1.518000px;}
.wsa8{word-spacing:1.584000px;}
.wsf5{word-spacing:1.596000px;}
.wsb4{word-spacing:1.620000px;}
.wsac{word-spacing:1.650000px;}
.ws10a{word-spacing:1.653000px;}
.ws37{word-spacing:1.716000px;}
.wsa0{word-spacing:1.740000px;}
.ws76{word-spacing:1.782000px;}
.ws12{word-spacing:1.848000px;}
.ws4d{word-spacing:1.914000px;}
.ws88{word-spacing:1.980000px;}
.ws108{word-spacing:1.995000px;}
.wsb9{word-spacing:2.040000px;}
.ws24{word-spacing:2.046000px;}
.wse1{word-spacing:2.109000px;}
.ws72{word-spacing:2.112000px;}
.wsd2{word-spacing:2.160000px;}
.wsf4{word-spacing:2.166000px;}
.ws44{word-spacing:2.178000px;}
.ws9e{word-spacing:2.220000px;}
.ws7c{word-spacing:2.244000px;}
.wse5{word-spacing:2.280000px;}
.wsce{word-spacing:2.310000px;}
.wsf7{word-spacing:2.337000px;}
.ws9f{word-spacing:2.340000px;}
.ws14{word-spacing:2.376000px;}
.wsad{word-spacing:2.442000px;}
.wse4{word-spacing:2.451000px;}
.ws67{word-spacing:2.508000px;}
.wsf6{word-spacing:2.565000px;}
.ws30{word-spacing:2.574000px;}
.ws10{word-spacing:2.640000px;}
.ws7f{word-spacing:2.700000px;}
.ws28{word-spacing:2.706000px;}
.wseb{word-spacing:2.736000px;}
.ws6c{word-spacing:2.772000px;}
.ws114{word-spacing:2.793000px;}
.ws5f{word-spacing:2.838000px;}
.ws4f{word-spacing:2.904000px;}
.wsea{word-spacing:2.907000px;}
.wsfe{word-spacing:2.964000px;}
.ws53{word-spacing:2.970000px;}
.ws27{word-spacing:3.036000px;}
.ws18{word-spacing:3.102000px;}
.ws55{word-spacing:3.120000px;}
.wsf1{word-spacing:3.135000px;}
.ws4b{word-spacing:3.168000px;}
.ws1a{word-spacing:3.180000px;}
.ws7b{word-spacing:3.234000px;}
.ws50{word-spacing:3.300000px;}
.wsf2{word-spacing:3.306000px;}
.wse9{word-spacing:3.363000px;}
.ws65{word-spacing:3.366000px;}
.ws17{word-spacing:3.432000px;}
.ws10c{word-spacing:3.477000px;}
.ws73{word-spacing:3.498000px;}
.wsf3{word-spacing:3.534000px;}
.ws80{word-spacing:3.540000px;}
.ws2e{word-spacing:3.564000px;}
.ws112{word-spacing:3.591000px;}
.ws1b{word-spacing:3.600000px;}
.ws52{word-spacing:3.630000px;}
.wsfa{word-spacing:3.648000px;}
.wsc6{word-spacing:3.696000px;}
.ws10d{word-spacing:3.705000px;}
.wsab{word-spacing:3.762000px;}
.ws45{word-spacing:3.828000px;}
.ws98{word-spacing:3.840000px;}
.wsb1{word-spacing:3.894000px;}
.wsd{word-spacing:3.933000px;}
.ws2b{word-spacing:3.960000px;}
.wsde{word-spacing:3.990000px;}
.ws68{word-spacing:4.026000px;}
.wsaa{word-spacing:4.092000px;}
.ws1c{word-spacing:4.140000px;}
.ws5e{word-spacing:4.158000px;}
.ws48{word-spacing:4.224000px;}
.wscf{word-spacing:4.290000px;}
.wsd7{word-spacing:4.356000px;}
.ws26{word-spacing:4.422000px;}
.ws15{word-spacing:4.488000px;}
.ws25{word-spacing:4.554000px;}
.ws42{word-spacing:4.620000px;}
.wsa1{word-spacing:1903.773000px;}
.wsd6{word-spacing:1905.231000px;}
.wsbd{word-spacing:1906.635000px;}
.wsc7{word-spacing:1907.823000px;}
.ws56{word-spacing:1908.039000px;}
.ws106{word-spacing:1908.093000px;}
.ws8e{word-spacing:1909.443000px;}
.ws6d{word-spacing:1910.037000px;}
.wsaf{word-spacing:1910.523000px;}
.ws1d{word-spacing:1912.737000px;}
.wsdb{word-spacing:1912.791000px;}
._f{margin-left:-2620.296000px;}
._21{margin-left:-2619.216000px;}
._13{margin-left:-19.536000px;}
._12{margin-left:-17.588400px;}
._9{margin-left:-16.500000px;}
._c{margin-left:-15.444000px;}
._14{margin-left:-14.304000px;}
._5{margin-left:-12.894000px;}
._6{margin-left:-11.595000px;}
._10{margin-left:-10.053000px;}
._b{margin-left:-7.536000px;}
._11{margin-left:-6.436200px;}
._7{margin-left:-5.085000px;}
._3{margin-left:-3.580200px;}
._2{margin-left:-2.040000px;}
._1{margin-left:-1.020000px;}
._0{width:1.080000px;}
._d{width:2.702400px;}
._4{width:3.990000px;}
._8{width:5.010000px;}
._18{width:6.913200px;}
._1c{width:9.914400px;}
._1b{width:11.354400px;}
._19{width:13.140000px;}
._1a{width:15.862200px;}
._1f{width:21.660000px;}
._1e{width:23.460000px;}
._20{width:27.060000px;}
._1d{width:30.900000px;}
._17{width:40.200000px;}
._15{width:42.060000px;}
._16{width:43.440000px;}
._e{width:46.080000px;}
._a{width:48.300000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.231000px;}
.fs8{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:89.716500px;}
.y24{bottom:89.716650px;}
.yb8{bottom:89.722050px;}
.y146{bottom:89.722350px;}
.yfd{bottom:89.738550px;}
.y156{bottom:89.739600px;}
.y23{bottom:107.716650px;}
.y63{bottom:109.700850px;}
.yb7{bottom:109.703550px;}
.y155{bottom:109.718100px;}
.yfc{bottom:109.720050px;}
.y145{bottom:109.735350px;}
.y22{bottom:125.716650px;}
.y62{bottom:129.685050px;}
.yca{bottom:129.693300px;}
.y154{bottom:129.696600px;}
.yfb{bottom:129.701550px;}
.y144{bottom:129.713850px;}
.y21{bottom:143.716650px;}
.y77{bottom:149.669250px;}
.y61{bottom:149.672100px;}
.yc9{bottom:149.674800px;}
.y127{bottom:149.675100px;}
.yfa{bottom:149.683050px;}
.y143{bottom:149.692350px;}
.y45{bottom:161.716650px;}
.y97{bottom:163.278000px;}
.y60{bottom:169.653600px;}
.yb6{bottom:169.656300px;}
.yf9{bottom:169.664550px;}
.y142{bottom:169.670850px;}
.y8a{bottom:179.716650px;}
.y96{bottom:181.275750px;}
.y5f{bottom:189.637800px;}
.y76{bottom:189.640500px;}
.y10d{bottom:189.643350px;}
.yf8{bottom:189.646050px;}
.y141{bottom:189.649350px;}
.yec{bottom:189.651600px;}
.y95{bottom:189.654300px;}
.y89{bottom:197.716650px;}
.y5a{bottom:209.622000px;}
.y44{bottom:209.624850px;}
.yf7{bottom:209.627550px;}
.y140{bottom:209.627850px;}
.yeb{bottom:209.633100px;}
.y94{bottom:209.635800px;}
.y126{bottom:209.668050px;}
.yab{bottom:215.716650px;}
.y20{bottom:229.606350px;}
.ye3{bottom:229.609050px;}
.yea{bottom:229.614600px;}
.y93{bottom:229.617300px;}
.y125{bottom:229.646550px;}
.yaa{bottom:233.716650px;}
.y1f{bottom:249.590550px;}
.yc8{bottom:249.596100px;}
.y92{bottom:249.598800px;}
.yb5{bottom:249.604350px;}
.y124{bottom:249.625050px;}
.y153{bottom:249.642450px;}
.ya9{bottom:251.716650px;}
.y5e{bottom:253.133850px;}
.y43{bottom:269.574900px;}
.y1e{bottom:269.577600px;}
.y91{bottom:269.580300px;}
.y13f{bottom:269.580600px;}
.yb4{bottom:269.585850px;}
.y123{bottom:269.603550px;}
.y152{bottom:269.620950px;}
.ya8{bottom:269.716650px;}
.ya7{bottom:287.716650px;}
.y1d{bottom:289.559100px;}
.y90{bottom:289.561800px;}
.yf6{bottom:289.564650px;}
.yd2{bottom:289.567350px;}
.y88{bottom:289.572900px;}
.y122{bottom:289.582050px;}
.y151{bottom:289.599450px;}
.ya6{bottom:305.716650px;}
.y1c{bottom:309.543300px;}
.y42{bottom:309.546150px;}
.yd1{bottom:309.548850px;}
.y87{bottom:309.554400px;}
.y121{bottom:309.560550px;}
.y150{bottom:309.577950px;}
.ya5{bottom:323.716650px;}
.ybb{bottom:324.301200px;}
.y41{bottom:329.527650px;}
.yd0{bottom:329.530350px;}
.yff{bottom:329.533050px;}
.y1b{bottom:329.535900px;}
.y120{bottom:329.539050px;}
.y14f{bottom:329.556450px;}
.yba{bottom:342.298950px;}
.y40{bottom:349.511850px;}
.y75{bottom:349.514550px;}
.y1a{bottom:349.517400px;}
.y11f{bottom:349.517550px;}
.y14e{bottom:349.534950px;}
.y10c{bottom:349.544850px;}
.yb9{bottom:360.296700px;}
.y74{bottom:369.496050px;}
.y19{bottom:369.498900px;}
.ye2{bottom:369.501600px;}
.y3f{bottom:369.507150px;}
.y14d{bottom:369.513450px;}
.y10b{bottom:369.526350px;}
.y18{bottom:389.480400px;}
.yd7{bottom:389.483100px;}
.y111{bottom:389.485950px;}
.y3e{bottom:389.488650px;}
.y14c{bottom:389.491950px;}
.y10a{bottom:389.507850px;}
.y17{bottom:409.464600px;}
.y110{bottom:409.467450px;}
.y3d{bottom:409.470150px;}
.y14b{bottom:409.470450px;}
.y11e{bottom:409.481850px;}
.y13e{bottom:409.487700px;}
.y109{bottom:409.489350px;}
.y8f{bottom:429.448950px;}
.y16{bottom:429.451650px;}
.y73{bottom:429.454350px;}
.y86{bottom:429.457200px;}
.y59{bottom:429.459900px;}
.y11d{bottom:429.460350px;}
.yf5{bottom:429.465450px;}
.y13d{bottom:429.466200px;}
.y108{bottom:429.470850px;}
.y15{bottom:449.433150px;}
.y72{bottom:449.435850px;}
.y85{bottom:449.438700px;}
.y11c{bottom:449.438850px;}
.y58{bottom:449.441400px;}
.y13c{bottom:449.444700px;}
.yf4{bottom:449.446950px;}
.y107{bottom:449.452350px;}
.ye1{bottom:449.471700px;}
.y14{bottom:469.417350px;}
.y84{bottom:469.420200px;}
.y57{bottom:469.422900px;}
.y13b{bottom:469.423200px;}
.y71{bottom:469.425600px;}
.yf3{bottom:469.428450px;}
.y106{bottom:469.433850px;}
.ye0{bottom:469.453200px;}
.yef{bottom:481.044000px;}
.y13{bottom:489.401700px;}
.y56{bottom:489.404400px;}
.y70{bottom:489.407100px;}
.yf2{bottom:489.409950px;}
.ye9{bottom:489.412650px;}
.y105{bottom:489.415350px;}
.ydf{bottom:489.434700px;}
.yee{bottom:499.041750px;}
.y3c{bottom:509.385900px;}
.y6f{bottom:509.388600px;}
.yf1{bottom:509.391450px;}
.ye8{bottom:509.394150px;}
.y104{bottom:509.396850px;}
.yde{bottom:509.416200px;}
.y11b{bottom:509.437650px;}
.y83{bottom:514.880400px;}
.yed{bottom:517.039500px;}
.y12{bottom:529.370100px;}
.yf0{bottom:529.372950px;}
.ye7{bottom:529.375650px;}
.ya4{bottom:529.378350px;}
.yc7{bottom:529.381200px;}
.ydd{bottom:529.397700px;}
.y13a{bottom:529.404600px;}
.y11a{bottom:529.416150px;}
.y3b{bottom:534.864600px;}
.y3a{bottom:549.354450px;}
.ye6{bottom:549.357150px;}
.ya3{bottom:549.359850px;}
.yc6{bottom:549.362700px;}
.ydc{bottom:549.379200px;}
.y139{bottom:549.383100px;}
.y119{bottom:549.394650px;}
.yd6{bottom:569.338650px;}
.ya2{bottom:569.341350px;}
.y55{bottom:569.344200px;}
.y82{bottom:569.346900px;}
.y6e{bottom:569.352450px;}
.ydb{bottom:569.360700px;}
.y138{bottom:569.361600px;}
.y118{bottom:569.373150px;}
.y39{bottom:589.322850px;}
.y54{bottom:589.325700px;}
.y81{bottom:589.328400px;}
.yd5{bottom:589.331100px;}
.y6d{bottom:589.333950px;}
.y137{bottom:589.340100px;}
.yda{bottom:589.342200px;}
.y117{bottom:589.351650px;}
.y53{bottom:609.307200px;}
.y80{bottom:609.309900px;}
.yd4{bottom:609.312600px;}
.y6c{bottom:609.315450px;}
.y136{bottom:609.318600px;}
.yd9{bottom:609.323700px;}
.y116{bottom:609.330150px;}
.y11{bottom:626.539200px;}
.y52{bottom:629.291400px;}
.yd3{bottom:629.294100px;}
.y6b{bottom:629.296950px;}
.y135{bottom:629.297100px;}
.ya1{bottom:629.299650px;}
.yd8{bottom:629.305200px;}
.y115{bottom:629.308650px;}
.y103{bottom:629.310750px;}
.y10{bottom:644.539200px;}
.y7f{bottom:649.275600px;}
.y51{bottom:649.278450px;}
.ya0{bottom:649.281150px;}
.y134{bottom:649.281450px;}
.y38{bottom:649.286700px;}
.y114{bottom:649.287150px;}
.y102{bottom:649.292250px;}
.y50{bottom:669.259950px;}
.y9f{bottom:669.262650px;}
.yb3{bottom:669.265350px;}
.y113{bottom:669.265650px;}
.y37{bottom:669.268200px;}
.y101{bottom:669.273750px;}
.yc5{bottom:669.284700px;}
.y4f{bottom:689.244150px;}
.yb2{bottom:689.246850px;}
.y36{bottom:689.249700px;}
.yfe{bottom:689.252400px;}
.y100{bottom:689.255250px;}
.yc4{bottom:689.266200px;}
.yf{bottom:705.063450px;}
.y4e{bottom:709.228350px;}
.y35{bottom:709.231200px;}
.y8e{bottom:709.233900px;}
.y6a{bottom:709.236750px;}
.ycf{bottom:709.239450px;}
.y133{bottom:709.239900px;}
.yc3{bottom:709.247700px;}
.ye{bottom:723.061200px;}
.y34{bottom:729.212700px;}
.y4d{bottom:729.215400px;}
.y69{bottom:729.218250px;}
.y132{bottom:729.218400px;}
.yce{bottom:729.220950px;}
.y7e{bottom:729.223650px;}
.yc2{bottom:729.229200px;}
.yd{bottom:741.058950px;}
.y33{bottom:749.196900px;}
.y68{bottom:749.199750px;}
.ycd{bottom:749.202450px;}
.y7d{bottom:749.205150px;}
.y9e{bottom:749.208000px;}
.yc1{bottom:749.210700px;}
.y112{bottom:751.181100px;}
.yc{bottom:759.058950px;}
.y4c{bottom:769.181250px;}
.ycc{bottom:769.183950px;}
.y7c{bottom:769.186650px;}
.y32{bottom:769.189500px;}
.yc0{bottom:769.192200px;}
.yb1{bottom:769.197600px;}
.yb{bottom:777.058950px;}
.y15d{bottom:780.983700px;}
.y67{bottom:789.165450px;}
.y4b{bottom:789.168150px;}
.y31{bottom:789.171000px;}
.ybf{bottom:789.173700px;}
.yb0{bottom:789.179100px;}
.y131{bottom:789.199950px;}
.ya{bottom:795.058950px;}
.y15c{bottom:798.981450px;}
.y4a{bottom:809.149650px;}
.y30{bottom:809.152500px;}
.y8d{bottom:809.155200px;}
.yaf{bottom:809.160600px;}
.y130{bottom:809.178450px;}
.y9{bottom:813.063450px;}
.y15b{bottom:816.979200px;}
.y2f{bottom:829.134000px;}
.y8c{bottom:829.136700px;}
.y5d{bottom:829.139400px;}
.yae{bottom:829.142100px;}
.y10f{bottom:829.144950px;}
.y12f{bottom:829.156950px;}
.y8{bottom:831.061200px;}
.y15a{bottom:834.976950px;}
.y7{bottom:849.061200px;}
.y2e{bottom:849.118200px;}
.y5c{bottom:849.120900px;}
.yad{bottom:849.123600px;}
.y7b{bottom:849.126450px;}
.y12e{bottom:849.135450px;}
.y159{bottom:852.974700px;}
.y6{bottom:867.058950px;}
.y2d{bottom:869.102400px;}
.yac{bottom:869.105100px;}
.y7a{bottom:869.107950px;}
.y12d{bottom:869.113950px;}
.ye5{bottom:869.118900px;}
.y9d{bottom:869.124450px;}
.y158{bottom:870.972450px;}
.y5{bottom:885.058950px;}
.y157{bottom:888.970200px;}
.y2c{bottom:889.086600px;}
.y79{bottom:889.089450px;}
.y66{bottom:889.092150px;}
.y12c{bottom:889.092450px;}
.ye4{bottom:889.100400px;}
.y9c{bottom:889.105950px;}
.y49{bottom:909.070950px;}
.y65{bottom:909.073650px;}
.y2b{bottom:909.081900px;}
.y9b{bottom:909.087450px;}
.y12b{bottom:909.088200px;}
.y48{bottom:929.055150px;}
.ycb{bottom:929.057850px;}
.y14a{bottom:929.060850px;}
.y2a{bottom:929.063400px;}
.y12a{bottom:929.066700px;}
.y9a{bottom:929.068950px;}
.y47{bottom:949.039350px;}
.y8b{bottom:949.042200px;}
.y29{bottom:949.044900px;}
.y129{bottom:949.045200px;}
.ybe{bottom:949.047600px;}
.y99{bottom:949.050450px;}
.y149{bottom:949.062450px;}
.y4{bottom:954.082650px;}
.y46{bottom:969.023700px;}
.y28{bottom:969.026400px;}
.ybd{bottom:969.029100px;}
.y98{bottom:969.031950px;}
.y148{bottom:969.040950px;}
.y27{bottom:989.007900px;}
.ybc{bottom:989.010600px;}
.y78{bottom:989.013450px;}
.y147{bottom:989.019450px;}
.y3{bottom:997.585350px;}
.y26{bottom:1008.992100px;}
.y5b{bottom:1008.994950px;}
.y128{bottom:1008.997950px;}
.y2{bottom:1026.094350px;}
.y25{bottom:1028.976450px;}
.y10e{bottom:1034.470950px;}
.y1{bottom:1082.225850px;}
.ha{height:34.630200px;}
.h5{height:44.100000px;}
.hb{height:50.844000px;}
.h2{height:50.868000px;}
.hc{height:51.276600px;}
.h6{height:51.300000px;}
.h7{height:52.920000px;}
.h9{height:54.000000px;}
.h8{height:59.400000px;}
.h4{height:73.476000px;}
.h3{height:74.970000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x11{left:69.596100px;}
.x4{left:72.283500px;}
.xe{left:76.155900px;}
.xd{left:78.078900px;}
.x9{left:79.737900px;}
.x1{left:80.787450px;}
.x15{left:88.520100px;}
.xf{left:90.856050px;}
.x10{left:92.972100px;}
.x7{left:94.130100px;}
.x2{left:101.453250px;}
.x3{left:102.710250px;}
.x5{left:175.583250px;}
.x6{left:179.678550px;}
.x13{left:452.916450px;}
.x14{left:461.050950px;}
.xa{left:638.624700px;}
.xb{left:642.973500px;}
.x8{left:720.497700px;}
.xc{left:723.116700px;}
.x12{left:724.946100px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.864000pt;}
.v2{vertical-align:19.536000pt;}
.ls29{letter-spacing:-5.866667pt;}
.ls28{letter-spacing:-4.053333pt;}
.ls21{letter-spacing:-4.048000pt;}
.ls36{letter-spacing:-3.930667pt;}
.ls34{letter-spacing:-1.818667pt;}
.ls14{letter-spacing:-1.701333pt;}
.ls31{letter-spacing:-1.440000pt;}
.ls15{letter-spacing:-1.290667pt;}
.ls11{letter-spacing:-0.880000pt;}
.ls12{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.762667pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls1c{letter-spacing:-0.469333pt;}
.ls1d{letter-spacing:-0.410667pt;}
.ls37{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls44{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls3b{letter-spacing:-0.253333pt;}
.ls7{letter-spacing:-0.234667pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.202667pt;}
.ls22{letter-spacing:-0.176000pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.152000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.101333pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.050667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000059pt;}
.ls25{letter-spacing:0.029333pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls2c{letter-spacing:0.080000pt;}
.ls41{letter-spacing:0.101333pt;}
.ls19{letter-spacing:0.117333pt;}
.ls20{letter-spacing:0.133333pt;}
.ls38{letter-spacing:0.136811pt;}
.ls24{letter-spacing:0.146667pt;}
.ls3c{letter-spacing:0.152000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls42{letter-spacing:0.202667pt;}
.ls3{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.234667pt;}
.ls2e{letter-spacing:0.239419pt;}
.ls26{letter-spacing:0.240000pt;}
.ls3e{letter-spacing:0.253333pt;}
.ls33{letter-spacing:0.266667pt;}
.ls43{letter-spacing:0.273600pt;}
.lsc{letter-spacing:0.293333pt;}
.ls3d{letter-spacing:0.304000pt;}
.ls1f{letter-spacing:0.352000pt;}
.ls39{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls32{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.720000pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls35{letter-spacing:1.531200pt;}
.ls2f{letter-spacing:1.877333pt;}
.ws2{word-spacing:-14.784000pt;}
.ws93{word-spacing:-12.730667pt;}
.ws1e{word-spacing:-12.613333pt;}
.ws92{word-spacing:-12.554667pt;}
.ws82{word-spacing:-12.496000pt;}
.wscd{word-spacing:-12.437333pt;}
.wsa6{word-spacing:-12.378667pt;}
.ws40{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.261333pt;}
.ws60{word-spacing:-12.202667pt;}
.wsa5{word-spacing:-12.096000pt;}
.ws83{word-spacing:-12.085333pt;}
.ws4{word-spacing:-12.026667pt;}
.ws57{word-spacing:-11.968000pt;}
.ws59{word-spacing:-11.909333pt;}
.ws20{word-spacing:-11.792000pt;}
.wsae{word-spacing:-11.733333pt;}
.ws58{word-spacing:-11.674667pt;}
.ws81{word-spacing:-11.616000pt;}
.wsd1{word-spacing:-11.557333pt;}
.ws8f{word-spacing:-11.440000pt;}
.wsc5{word-spacing:-11.413333pt;}
.wsb5{word-spacing:-11.381333pt;}
.wsd3{word-spacing:-11.376000pt;}
.ws6e{word-spacing:-11.322667pt;}
.wsd4{word-spacing:-11.264000pt;}
.ws95{word-spacing:-11.253333pt;}
.wscb{word-spacing:-11.205333pt;}
.ws41{word-spacing:-11.200000pt;}
.wsbe{word-spacing:-11.146667pt;}
.ws84{word-spacing:-11.040000pt;}
.wsca{word-spacing:-11.029333pt;}
.ws6f{word-spacing:-10.986667pt;}
.wsc9{word-spacing:-10.970667pt;}
.wsdc{word-spacing:-10.640000pt;}
.ws23{word-spacing:-10.400000pt;}
.wsc8{word-spacing:-10.386667pt;}
.ws22{word-spacing:-10.149333pt;}
.wsef{word-spacing:-9.880000pt;}
.ws21{word-spacing:-9.738667pt;}
.wsdd{word-spacing:-9.626667pt;}
.wsc4{word-spacing:-8.389333pt;}
.ws61{word-spacing:-8.272000pt;}
.ws94{word-spacing:-7.421979pt;}
.ws3{word-spacing:-7.182560pt;}
.ws85{word-spacing:-7.146667pt;}
.ws90{word-spacing:-6.453333pt;}
.ws1{word-spacing:-6.203120pt;}
.wsee{word-spacing:-5.760040pt;}
.ws77{word-spacing:-3.050667pt;}
.wsbf{word-spacing:-2.816000pt;}
.wsa2{word-spacing:-2.698667pt;}
.ws5d{word-spacing:-2.640000pt;}
.ws10b{word-spacing:-2.634667pt;}
.wsa3{word-spacing:-2.581333pt;}
.ws19{word-spacing:-2.522667pt;}
.wse8{word-spacing:-2.482667pt;}
.ws11{word-spacing:-2.464000pt;}
.ws49{word-spacing:-2.405333pt;}
.ws91{word-spacing:-2.346667pt;}
.ws7e{word-spacing:-2.293333pt;}
.ws4a{word-spacing:-2.288000pt;}
.ws3d{word-spacing:-2.240000pt;}
.ws8a{word-spacing:-2.229333pt;}
.wse6{word-spacing:-2.178667pt;}
.ws3b{word-spacing:-2.170667pt;}
.wsb{word-spacing:-2.128000pt;}
.ws89{word-spacing:-2.112000pt;}
.ws9c{word-spacing:-2.080000pt;}
.wsb6{word-spacing:-2.053333pt;}
.wsb0{word-spacing:-1.994667pt;}
.wse7{word-spacing:-1.976000pt;}
.wsb8{word-spacing:-1.920000pt;}
.wsb2{word-spacing:-1.877333pt;}
.ws101{word-spacing:-1.874667pt;}
.wsb3{word-spacing:-1.866667pt;}
.ws29{word-spacing:-1.818667pt;}
.ws2c{word-spacing:-1.760000pt;}
.wsc1{word-spacing:-1.701333pt;}
.wse2{word-spacing:-1.672000pt;}
.ws2a{word-spacing:-1.642667pt;}
.wsfb{word-spacing:-1.621333pt;}
.ws86{word-spacing:-1.584000pt;}
.wsf0{word-spacing:-1.570667pt;}
.ws43{word-spacing:-1.525333pt;}
.wse{word-spacing:-1.520000pt;}
.wsd5{word-spacing:-1.466667pt;}
.ws63{word-spacing:-1.408000pt;}
.wsda{word-spacing:-1.386667pt;}
.wsd0{word-spacing:-1.349333pt;}
.ws103{word-spacing:-1.317333pt;}
.ws97{word-spacing:-1.290667pt;}
.ws4e{word-spacing:-1.232000pt;}
.wsbb{word-spacing:-1.226667pt;}
.ws105{word-spacing:-1.216000pt;}
.ws5{word-spacing:-1.200000pt;}
.ws38{word-spacing:-1.173333pt;}
.ws9d{word-spacing:-1.120000pt;}
.ws47{word-spacing:-1.114667pt;}
.ws96{word-spacing:-1.056000pt;}
.wscc{word-spacing:-0.997333pt;}
.ws100{word-spacing:-0.962667pt;}
.wsc2{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.938667pt;}
.wsff{word-spacing:-0.912000pt;}
.ws54{word-spacing:-0.906667pt;}
.ws5c{word-spacing:-0.880000pt;}
.ws34{word-spacing:-0.821333pt;}
.ws113{word-spacing:-0.810667pt;}
.wsb7{word-spacing:-0.800000pt;}
.ws31{word-spacing:-0.762667pt;}
.ws9{word-spacing:-0.760000pt;}
.ws46{word-spacing:-0.704000pt;}
.ws3a{word-spacing:-0.645333pt;}
.ws32{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.586667pt;}
.wse3{word-spacing:-0.557333pt;}
.ws9b{word-spacing:-0.533333pt;}
.wsa7{word-spacing:-0.528000pt;}
.wsec{word-spacing:-0.506667pt;}
.ws7d{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.456000pt;}
.wsa4{word-spacing:-0.410667pt;}
.wsc3{word-spacing:-0.373333pt;}
.ws70{word-spacing:-0.352000pt;}
.ws7{word-spacing:-0.304000pt;}
.ws4c{word-spacing:-0.293333pt;}
.ws9a{word-spacing:-0.266667pt;}
.ws102{word-spacing:-0.253333pt;}
.ws79{word-spacing:-0.234667pt;}
.ws10f{word-spacing:-0.202667pt;}
.ws39{word-spacing:-0.176000pt;}
.wse0{word-spacing:-0.152000pt;}
.wsd9{word-spacing:-0.136811pt;}
.ws2f{word-spacing:-0.117333pt;}
.ws87{word-spacing:-0.058667pt;}
.ws10e{word-spacing:-0.050667pt;}
.ws6{word-spacing:0.000000pt;}
.wsdf{word-spacing:0.050667pt;}
.wsbc{word-spacing:0.053333pt;}
.ws36{word-spacing:0.058667pt;}
.ws75{word-spacing:0.117333pt;}
.ws104{word-spacing:0.152000pt;}
.ws69{word-spacing:0.176000pt;}
.wsed{word-spacing:0.202667pt;}
.ws5b{word-spacing:0.234667pt;}
.ws8{word-spacing:0.253333pt;}
.ws2d{word-spacing:0.293333pt;}
.wsa{word-spacing:0.304000pt;}
.ws8d{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.352000pt;}
.ws111{word-spacing:0.354667pt;}
.ws8c{word-spacing:0.410667pt;}
.ws107{word-spacing:0.456000pt;}
.ws6b{word-spacing:0.469333pt;}
.ws13{word-spacing:0.528000pt;}
.wsf9{word-spacing:0.557333pt;}
.ws3f{word-spacing:0.586667pt;}
.wsf8{word-spacing:0.608000pt;}
.ws71{word-spacing:0.645333pt;}
.ws66{word-spacing:0.704000pt;}
.ws110{word-spacing:0.760000pt;}
.ws33{word-spacing:0.762667pt;}
.wsfd{word-spacing:0.810667pt;}
.ws35{word-spacing:0.821333pt;}
.ws109{word-spacing:0.861333pt;}
.ws7a{word-spacing:0.880000pt;}
.ws3e{word-spacing:0.906667pt;}
.wsfc{word-spacing:0.912000pt;}
.ws3c{word-spacing:0.938667pt;}
.wsc0{word-spacing:0.997333pt;}
.ws99{word-spacing:1.013333pt;}
.ws51{word-spacing:1.056000pt;}
.wsd8{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.114667pt;}
.ws78{word-spacing:1.173333pt;}
.wsc{word-spacing:1.216000pt;}
.wsa9{word-spacing:1.232000pt;}
.ws64{word-spacing:1.290667pt;}
.wsba{word-spacing:1.333333pt;}
.ws62{word-spacing:1.349333pt;}
.wsa8{word-spacing:1.408000pt;}
.wsf5{word-spacing:1.418667pt;}
.wsb4{word-spacing:1.440000pt;}
.wsac{word-spacing:1.466667pt;}
.ws10a{word-spacing:1.469333pt;}
.ws37{word-spacing:1.525333pt;}
.wsa0{word-spacing:1.546667pt;}
.ws76{word-spacing:1.584000pt;}
.ws12{word-spacing:1.642667pt;}
.ws4d{word-spacing:1.701333pt;}
.ws88{word-spacing:1.760000pt;}
.ws108{word-spacing:1.773333pt;}
.wsb9{word-spacing:1.813333pt;}
.ws24{word-spacing:1.818667pt;}
.wse1{word-spacing:1.874667pt;}
.ws72{word-spacing:1.877333pt;}
.wsd2{word-spacing:1.920000pt;}
.wsf4{word-spacing:1.925333pt;}
.ws44{word-spacing:1.936000pt;}
.ws9e{word-spacing:1.973333pt;}
.ws7c{word-spacing:1.994667pt;}
.wse5{word-spacing:2.026667pt;}
.wsce{word-spacing:2.053333pt;}
.wsf7{word-spacing:2.077333pt;}
.ws9f{word-spacing:2.080000pt;}
.ws14{word-spacing:2.112000pt;}
.wsad{word-spacing:2.170667pt;}
.wse4{word-spacing:2.178667pt;}
.ws67{word-spacing:2.229333pt;}
.wsf6{word-spacing:2.280000pt;}
.ws30{word-spacing:2.288000pt;}
.ws10{word-spacing:2.346667pt;}
.ws7f{word-spacing:2.400000pt;}
.ws28{word-spacing:2.405333pt;}
.wseb{word-spacing:2.432000pt;}
.ws6c{word-spacing:2.464000pt;}
.ws114{word-spacing:2.482667pt;}
.ws5f{word-spacing:2.522667pt;}
.ws4f{word-spacing:2.581333pt;}
.wsea{word-spacing:2.584000pt;}
.wsfe{word-spacing:2.634667pt;}
.ws53{word-spacing:2.640000pt;}
.ws27{word-spacing:2.698667pt;}
.ws18{word-spacing:2.757333pt;}
.ws55{word-spacing:2.773333pt;}
.wsf1{word-spacing:2.786667pt;}
.ws4b{word-spacing:2.816000pt;}
.ws1a{word-spacing:2.826667pt;}
.ws7b{word-spacing:2.874667pt;}
.ws50{word-spacing:2.933333pt;}
.wsf2{word-spacing:2.938667pt;}
.wse9{word-spacing:2.989333pt;}
.ws65{word-spacing:2.992000pt;}
.ws17{word-spacing:3.050667pt;}
.ws10c{word-spacing:3.090667pt;}
.ws73{word-spacing:3.109333pt;}
.wsf3{word-spacing:3.141333pt;}
.ws80{word-spacing:3.146667pt;}
.ws2e{word-spacing:3.168000pt;}
.ws112{word-spacing:3.192000pt;}
.ws1b{word-spacing:3.200000pt;}
.ws52{word-spacing:3.226667pt;}
.wsfa{word-spacing:3.242667pt;}
.wsc6{word-spacing:3.285333pt;}
.ws10d{word-spacing:3.293333pt;}
.wsab{word-spacing:3.344000pt;}
.ws45{word-spacing:3.402667pt;}
.ws98{word-spacing:3.413333pt;}
.wsb1{word-spacing:3.461333pt;}
.wsd{word-spacing:3.496000pt;}
.ws2b{word-spacing:3.520000pt;}
.wsde{word-spacing:3.546667pt;}
.ws68{word-spacing:3.578667pt;}
.wsaa{word-spacing:3.637333pt;}
.ws1c{word-spacing:3.680000pt;}
.ws5e{word-spacing:3.696000pt;}
.ws48{word-spacing:3.754667pt;}
.wscf{word-spacing:3.813333pt;}
.wsd7{word-spacing:3.872000pt;}
.ws26{word-spacing:3.930667pt;}
.ws15{word-spacing:3.989333pt;}
.ws25{word-spacing:4.048000pt;}
.ws42{word-spacing:4.106667pt;}
.wsa1{word-spacing:1692.242667pt;}
.wsd6{word-spacing:1693.538667pt;}
.wsbd{word-spacing:1694.786667pt;}
.wsc7{word-spacing:1695.842667pt;}
.ws56{word-spacing:1696.034667pt;}
.ws106{word-spacing:1696.082667pt;}
.ws8e{word-spacing:1697.282667pt;}
.ws6d{word-spacing:1697.810667pt;}
.wsaf{word-spacing:1698.242667pt;}
.ws1d{word-spacing:1700.210667pt;}
.wsdb{word-spacing:1700.258667pt;}
._f{margin-left:-2329.152000pt;}
._21{margin-left:-2328.192000pt;}
._13{margin-left:-17.365333pt;}
._12{margin-left:-15.634133pt;}
._9{margin-left:-14.666667pt;}
._c{margin-left:-13.728000pt;}
._14{margin-left:-12.714667pt;}
._5{margin-left:-11.461333pt;}
._6{margin-left:-10.306667pt;}
._10{margin-left:-8.936000pt;}
._b{margin-left:-6.698667pt;}
._11{margin-left:-5.721067pt;}
._7{margin-left:-4.520000pt;}
._3{margin-left:-3.182400pt;}
._2{margin-left:-1.813333pt;}
._1{margin-left:-0.906667pt;}
._0{width:0.960000pt;}
._d{width:2.402133pt;}
._4{width:3.546667pt;}
._8{width:4.453333pt;}
._18{width:6.145067pt;}
._1c{width:8.812800pt;}
._1b{width:10.092800pt;}
._19{width:11.680000pt;}
._1a{width:14.099733pt;}
._1f{width:19.253333pt;}
._1e{width:20.853333pt;}
._20{width:24.053333pt;}
._1d{width:27.466667pt;}
._17{width:35.733333pt;}
._15{width:37.386667pt;}
._16{width:38.613333pt;}
._e{width:40.960000pt;}
._a{width:42.933333pt;}
.fs5{font-size:29.538667pt;}
.fs8{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:79.748000pt;}
.y24{bottom:79.748133pt;}
.yb8{bottom:79.752933pt;}
.y146{bottom:79.753200pt;}
.yfd{bottom:79.767600pt;}
.y156{bottom:79.768533pt;}
.y23{bottom:95.748133pt;}
.y63{bottom:97.511867pt;}
.yb7{bottom:97.514267pt;}
.y155{bottom:97.527200pt;}
.yfc{bottom:97.528933pt;}
.y145{bottom:97.542533pt;}
.y22{bottom:111.748133pt;}
.y62{bottom:115.275600pt;}
.yca{bottom:115.282933pt;}
.y154{bottom:115.285867pt;}
.yfb{bottom:115.290267pt;}
.y144{bottom:115.301200pt;}
.y21{bottom:127.748133pt;}
.y77{bottom:133.039333pt;}
.y61{bottom:133.041867pt;}
.yc9{bottom:133.044267pt;}
.y127{bottom:133.044533pt;}
.yfa{bottom:133.051600pt;}
.y143{bottom:133.059867pt;}
.y45{bottom:143.748133pt;}
.y97{bottom:145.136000pt;}
.y60{bottom:150.803200pt;}
.yb6{bottom:150.805600pt;}
.yf9{bottom:150.812933pt;}
.y142{bottom:150.818533pt;}
.y8a{bottom:159.748133pt;}
.y96{bottom:161.134000pt;}
.y5f{bottom:168.566933pt;}
.y76{bottom:168.569333pt;}
.y10d{bottom:168.571867pt;}
.yf8{bottom:168.574267pt;}
.y141{bottom:168.577200pt;}
.yec{bottom:168.579200pt;}
.y95{bottom:168.581600pt;}
.y89{bottom:175.748133pt;}
.y5a{bottom:186.330667pt;}
.y44{bottom:186.333200pt;}
.yf7{bottom:186.335600pt;}
.y140{bottom:186.335867pt;}
.yeb{bottom:186.340533pt;}
.y94{bottom:186.342933pt;}
.y126{bottom:186.371600pt;}
.yab{bottom:191.748133pt;}
.y20{bottom:204.094533pt;}
.ye3{bottom:204.096933pt;}
.yea{bottom:204.101867pt;}
.y93{bottom:204.104267pt;}
.y125{bottom:204.130267pt;}
.yaa{bottom:207.748133pt;}
.y1f{bottom:221.858267pt;}
.yc8{bottom:221.863200pt;}
.y92{bottom:221.865600pt;}
.yb5{bottom:221.870533pt;}
.y124{bottom:221.888933pt;}
.y153{bottom:221.904400pt;}
.ya9{bottom:223.748133pt;}
.y5e{bottom:225.007867pt;}
.y43{bottom:239.622133pt;}
.y1e{bottom:239.624533pt;}
.y91{bottom:239.626933pt;}
.y13f{bottom:239.627200pt;}
.yb4{bottom:239.631867pt;}
.y123{bottom:239.647600pt;}
.y152{bottom:239.663067pt;}
.ya8{bottom:239.748133pt;}
.ya7{bottom:255.748133pt;}
.y1d{bottom:257.385867pt;}
.y90{bottom:257.388267pt;}
.yf6{bottom:257.390800pt;}
.yd2{bottom:257.393200pt;}
.y88{bottom:257.398133pt;}
.y122{bottom:257.406267pt;}
.y151{bottom:257.421733pt;}
.ya6{bottom:271.748133pt;}
.y1c{bottom:275.149600pt;}
.y42{bottom:275.152133pt;}
.yd1{bottom:275.154533pt;}
.y87{bottom:275.159467pt;}
.y121{bottom:275.164933pt;}
.y150{bottom:275.180400pt;}
.ya5{bottom:287.748133pt;}
.ybb{bottom:288.267733pt;}
.y41{bottom:292.913467pt;}
.yd0{bottom:292.915867pt;}
.yff{bottom:292.918267pt;}
.y1b{bottom:292.920800pt;}
.y120{bottom:292.923600pt;}
.y14f{bottom:292.939067pt;}
.yba{bottom:304.265733pt;}
.y40{bottom:310.677200pt;}
.y75{bottom:310.679600pt;}
.y1a{bottom:310.682133pt;}
.y11f{bottom:310.682267pt;}
.y14e{bottom:310.697733pt;}
.y10c{bottom:310.706533pt;}
.yb9{bottom:320.263733pt;}
.y74{bottom:328.440933pt;}
.y19{bottom:328.443467pt;}
.ye2{bottom:328.445867pt;}
.y3f{bottom:328.450800pt;}
.y14d{bottom:328.456400pt;}
.y10b{bottom:328.467867pt;}
.y18{bottom:346.204800pt;}
.yd7{bottom:346.207200pt;}
.y111{bottom:346.209733pt;}
.y3e{bottom:346.212133pt;}
.y14c{bottom:346.215067pt;}
.y10a{bottom:346.229200pt;}
.y17{bottom:363.968533pt;}
.y110{bottom:363.971067pt;}
.y3d{bottom:363.973467pt;}
.y14b{bottom:363.973733pt;}
.y11e{bottom:363.983867pt;}
.y13e{bottom:363.989067pt;}
.y109{bottom:363.990533pt;}
.y8f{bottom:381.732400pt;}
.y16{bottom:381.734800pt;}
.y73{bottom:381.737200pt;}
.y86{bottom:381.739733pt;}
.y59{bottom:381.742133pt;}
.y11d{bottom:381.742533pt;}
.yf5{bottom:381.747067pt;}
.y13d{bottom:381.747733pt;}
.y108{bottom:381.751867pt;}
.y15{bottom:399.496133pt;}
.y72{bottom:399.498533pt;}
.y85{bottom:399.501067pt;}
.y11c{bottom:399.501200pt;}
.y58{bottom:399.503467pt;}
.y13c{bottom:399.506400pt;}
.yf4{bottom:399.508400pt;}
.y107{bottom:399.513200pt;}
.ye1{bottom:399.530400pt;}
.y14{bottom:417.259867pt;}
.y84{bottom:417.262400pt;}
.y57{bottom:417.264800pt;}
.y13b{bottom:417.265067pt;}
.y71{bottom:417.267200pt;}
.yf3{bottom:417.269733pt;}
.y106{bottom:417.274533pt;}
.ye0{bottom:417.291733pt;}
.yef{bottom:427.594667pt;}
.y13{bottom:435.023733pt;}
.y56{bottom:435.026133pt;}
.y70{bottom:435.028533pt;}
.yf2{bottom:435.031067pt;}
.ye9{bottom:435.033467pt;}
.y105{bottom:435.035867pt;}
.ydf{bottom:435.053067pt;}
.yee{bottom:443.592667pt;}
.y3c{bottom:452.787467pt;}
.y6f{bottom:452.789867pt;}
.yf1{bottom:452.792400pt;}
.ye8{bottom:452.794800pt;}
.y104{bottom:452.797200pt;}
.yde{bottom:452.814400pt;}
.y11b{bottom:452.833467pt;}
.y83{bottom:457.671467pt;}
.yed{bottom:459.590667pt;}
.y12{bottom:470.551200pt;}
.yf0{bottom:470.553733pt;}
.ye7{bottom:470.556133pt;}
.ya4{bottom:470.558533pt;}
.yc7{bottom:470.561067pt;}
.ydd{bottom:470.575733pt;}
.y13a{bottom:470.581867pt;}
.y11a{bottom:470.592133pt;}
.y3b{bottom:475.435200pt;}
.y3a{bottom:488.315067pt;}
.ye6{bottom:488.317467pt;}
.ya3{bottom:488.319867pt;}
.yc6{bottom:488.322400pt;}
.ydc{bottom:488.337067pt;}
.y139{bottom:488.340533pt;}
.y119{bottom:488.350800pt;}
.yd6{bottom:506.078800pt;}
.ya2{bottom:506.081200pt;}
.y55{bottom:506.083733pt;}
.y82{bottom:506.086133pt;}
.y6e{bottom:506.091067pt;}
.ydb{bottom:506.098400pt;}
.y138{bottom:506.099200pt;}
.y118{bottom:506.109467pt;}
.y39{bottom:523.842533pt;}
.y54{bottom:523.845067pt;}
.y81{bottom:523.847467pt;}
.yd5{bottom:523.849867pt;}
.y6d{bottom:523.852400pt;}
.y137{bottom:523.857867pt;}
.yda{bottom:523.859733pt;}
.y117{bottom:523.868133pt;}
.y53{bottom:541.606400pt;}
.y80{bottom:541.608800pt;}
.yd4{bottom:541.611200pt;}
.y6c{bottom:541.613733pt;}
.y136{bottom:541.616533pt;}
.yd9{bottom:541.621067pt;}
.y116{bottom:541.626800pt;}
.y11{bottom:556.923733pt;}
.y52{bottom:559.370133pt;}
.yd3{bottom:559.372533pt;}
.y6b{bottom:559.375067pt;}
.y135{bottom:559.375200pt;}
.ya1{bottom:559.377467pt;}
.yd8{bottom:559.382400pt;}
.y115{bottom:559.385467pt;}
.y103{bottom:559.387333pt;}
.y10{bottom:572.923733pt;}
.y7f{bottom:577.133867pt;}
.y51{bottom:577.136400pt;}
.ya0{bottom:577.138800pt;}
.y134{bottom:577.139067pt;}
.y38{bottom:577.143733pt;}
.y114{bottom:577.144133pt;}
.y102{bottom:577.148667pt;}
.y50{bottom:594.897733pt;}
.y9f{bottom:594.900133pt;}
.yb3{bottom:594.902533pt;}
.y113{bottom:594.902800pt;}
.y37{bottom:594.905067pt;}
.y101{bottom:594.910000pt;}
.yc5{bottom:594.919733pt;}
.y4f{bottom:612.661467pt;}
.yb2{bottom:612.663867pt;}
.y36{bottom:612.666400pt;}
.yfe{bottom:612.668800pt;}
.y100{bottom:612.671333pt;}
.yc4{bottom:612.681067pt;}
.yf{bottom:626.723067pt;}
.y4e{bottom:630.425200pt;}
.y35{bottom:630.427733pt;}
.y8e{bottom:630.430133pt;}
.y6a{bottom:630.432667pt;}
.ycf{bottom:630.435067pt;}
.y133{bottom:630.435467pt;}
.yc3{bottom:630.442400pt;}
.ye{bottom:642.721067pt;}
.y34{bottom:648.189067pt;}
.y4d{bottom:648.191467pt;}
.y69{bottom:648.194000pt;}
.y132{bottom:648.194133pt;}
.yce{bottom:648.196400pt;}
.y7e{bottom:648.198800pt;}
.yc2{bottom:648.203733pt;}
.yd{bottom:658.719067pt;}
.y33{bottom:665.952800pt;}
.y68{bottom:665.955333pt;}
.ycd{bottom:665.957733pt;}
.y7d{bottom:665.960133pt;}
.y9e{bottom:665.962667pt;}
.yc1{bottom:665.965067pt;}
.y112{bottom:667.716533pt;}
.yc{bottom:674.719067pt;}
.y4c{bottom:683.716667pt;}
.ycc{bottom:683.719067pt;}
.y7c{bottom:683.721467pt;}
.y32{bottom:683.724000pt;}
.yc0{bottom:683.726400pt;}
.yb1{bottom:683.731200pt;}
.yb{bottom:690.719067pt;}
.y15d{bottom:694.207733pt;}
.y67{bottom:701.480400pt;}
.y4b{bottom:701.482800pt;}
.y31{bottom:701.485333pt;}
.ybf{bottom:701.487733pt;}
.yb0{bottom:701.492533pt;}
.y131{bottom:701.511067pt;}
.ya{bottom:706.719067pt;}
.y15c{bottom:710.205733pt;}
.y4a{bottom:719.244133pt;}
.y30{bottom:719.246667pt;}
.y8d{bottom:719.249067pt;}
.yaf{bottom:719.253867pt;}
.y130{bottom:719.269733pt;}
.y9{bottom:722.723067pt;}
.y15b{bottom:726.203733pt;}
.y2f{bottom:737.008000pt;}
.y8c{bottom:737.010400pt;}
.y5d{bottom:737.012800pt;}
.yae{bottom:737.015200pt;}
.y10f{bottom:737.017733pt;}
.y12f{bottom:737.028400pt;}
.y8{bottom:738.721067pt;}
.y15a{bottom:742.201733pt;}
.y7{bottom:754.721067pt;}
.y2e{bottom:754.771733pt;}
.y5c{bottom:754.774133pt;}
.yad{bottom:754.776533pt;}
.y7b{bottom:754.779067pt;}
.y12e{bottom:754.787067pt;}
.y159{bottom:758.199733pt;}
.y6{bottom:770.719067pt;}
.y2d{bottom:772.535467pt;}
.yac{bottom:772.537867pt;}
.y7a{bottom:772.540400pt;}
.y12d{bottom:772.545733pt;}
.ye5{bottom:772.550133pt;}
.y9d{bottom:772.555067pt;}
.y158{bottom:774.197733pt;}
.y5{bottom:786.719067pt;}
.y157{bottom:790.195733pt;}
.y2c{bottom:790.299200pt;}
.y79{bottom:790.301733pt;}
.y66{bottom:790.304133pt;}
.y12c{bottom:790.304400pt;}
.ye4{bottom:790.311467pt;}
.y9c{bottom:790.316400pt;}
.y49{bottom:808.063067pt;}
.y65{bottom:808.065467pt;}
.y2b{bottom:808.072800pt;}
.y9b{bottom:808.077733pt;}
.y12b{bottom:808.078400pt;}
.y48{bottom:825.826800pt;}
.ycb{bottom:825.829200pt;}
.y14a{bottom:825.831867pt;}
.y2a{bottom:825.834133pt;}
.y12a{bottom:825.837067pt;}
.y9a{bottom:825.839067pt;}
.y47{bottom:843.590533pt;}
.y8b{bottom:843.593067pt;}
.y29{bottom:843.595467pt;}
.y129{bottom:843.595733pt;}
.ybe{bottom:843.597867pt;}
.y99{bottom:843.600400pt;}
.y149{bottom:843.611067pt;}
.y4{bottom:848.073467pt;}
.y46{bottom:861.354400pt;}
.y28{bottom:861.356800pt;}
.ybd{bottom:861.359200pt;}
.y98{bottom:861.361733pt;}
.y148{bottom:861.369733pt;}
.y27{bottom:879.118133pt;}
.ybc{bottom:879.120533pt;}
.y78{bottom:879.123067pt;}
.y147{bottom:879.128400pt;}
.y3{bottom:886.742533pt;}
.y26{bottom:896.881867pt;}
.y5b{bottom:896.884400pt;}
.y128{bottom:896.887067pt;}
.y2{bottom:912.083867pt;}
.y25{bottom:914.645733pt;}
.y10e{bottom:919.529733pt;}
.y1{bottom:961.978533pt;}
.ha{height:30.782400pt;}
.h5{height:39.200000pt;}
.hb{height:45.194667pt;}
.h2{height:45.216000pt;}
.hc{height:45.579200pt;}
.h6{height:45.600000pt;}
.h7{height:47.040000pt;}
.h9{height:48.000000pt;}
.h8{height:52.800000pt;}
.h4{height:65.312000pt;}
.h3{height:66.640000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x11{left:61.863200pt;}
.x4{left:64.252000pt;}
.xe{left:67.694133pt;}
.xd{left:69.403467pt;}
.x9{left:70.878133pt;}
.x1{left:71.811067pt;}
.x15{left:78.684533pt;}
.xf{left:80.760933pt;}
.x10{left:82.641867pt;}
.x7{left:83.671200pt;}
.x2{left:90.180667pt;}
.x3{left:91.298000pt;}
.x5{left:156.074000pt;}
.x6{left:159.714267pt;}
.x13{left:402.592400pt;}
.x14{left:409.823067pt;}
.xa{left:567.666400pt;}
.xb{left:571.532000pt;}
.x8{left:640.442400pt;}
.xc{left:642.770400pt;}
.x12{left:644.396533pt;}
}




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