
    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_8e2d0b04ddfc7ce9979260b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100000;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_6ff7463a391a75be92c284a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_81be9dd53ad6dce80e4d077e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f2869870b52183886d94bdbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe1c0c81544faf1239851ee5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112000;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_918e84d3c49e4c4f625a2514.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0e8a64198d19ae006929f2b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_02d0eb4e779c0a3818772949.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fbccf55bfb66fada81671aee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4f08474d225c07453f071334.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.098000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ba14af4d64504104b362a961.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_63d1df532cc5f11ea162c79d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bf25ede5f0da7e8ac82b859e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.842000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mbb{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245068,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.245156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245156,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245605,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246152,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246383,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246418,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246543,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246656,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246884,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247090,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247103,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247248,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247366,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247398,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247441,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247495,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247784,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247795,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247869,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247984,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248023,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248081,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248272,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.ma5{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m9d{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);}
.m60{transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m63{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);}
.m48{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.m89{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);}
.mc0{transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248634,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248705,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248723,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m3{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248766,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248845,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248857,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248907,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248959,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.ma2{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.ma9{transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249193,0.000000,0.000000,0.250000,0,0);}
.m66{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);}
.m74{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m55{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m85{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);}
.m2b{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);}
.md{transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249473,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249591,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249707,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.me{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m4f{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m3f{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m42{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m91{transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250489,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m46{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251023,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251616,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251873,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251939,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251961,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252243,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252816,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.128200px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:51.000000px;}
.ls51{letter-spacing:-6.204000px;}
.ls57{letter-spacing:-2.612478px;}
.ls53{letter-spacing:-1.256640px;}
.ls13{letter-spacing:-1.248000px;}
.ls62{letter-spacing:-0.681516px;}
.ls5b{letter-spacing:-0.624000px;}
.ls52{letter-spacing:-0.403920px;}
.ls1d{letter-spacing:-0.384780px;}
.ls19{letter-spacing:-0.264000px;}
.ls46{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.230868px;}
.lsf{letter-spacing:-0.198000px;}
.ls60{letter-spacing:-0.192000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.153912px;}
.ls58{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132000px;}
.ls42{letter-spacing:-0.120000px;}
.ls5e{letter-spacing:-0.113586px;}
.ls5f{letter-spacing:-0.096000px;}
.ls1a{letter-spacing:-0.076956px;}
.ls8{letter-spacing:-0.066000px;}
.ls3b{letter-spacing:-0.060000px;}
.ls63{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.038478px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000018px;}
.ls48{letter-spacing:0.021600px;}
.ls27{letter-spacing:0.033000px;}
.ls24{letter-spacing:0.038478px;}
.ls40{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.066000px;}
.ls26{letter-spacing:0.076956px;}
.ls4a{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.099000px;}
.ls61{letter-spacing:0.113586px;}
.ls38{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.132000px;}
.ls4f{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.165000px;}
.ls35{letter-spacing:0.180000px;}
.ls3f{letter-spacing:0.240000px;}
.ls3d{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.330000px;}
.ls4c{letter-spacing:0.336000px;}
.ls56{letter-spacing:0.340758px;}
.ls43{letter-spacing:0.360000px;}
.ls64{letter-spacing:0.384000px;}
.ls33{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.480000px;}
.ls54{letter-spacing:0.493680px;}
.ls28{letter-spacing:0.528000px;}
.ls34{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.567930px;}
.ls22{letter-spacing:0.576000px;}
.ls31{letter-spacing:0.600000px;}
.ls2c{letter-spacing:0.624000px;}
.ls5{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.726000px;}
.ls1b{letter-spacing:0.750000px;}
.ls1{letter-spacing:0.756000px;}
.ls23{letter-spacing:0.768000px;}
.ls32{letter-spacing:0.786000px;}
.ls59{letter-spacing:0.795102px;}
.ls3e{letter-spacing:0.840000px;}
.ls1c{letter-spacing:0.858000px;}
.ls5a{letter-spacing:0.908688px;}
.ls29{letter-spacing:0.912000px;}
.ls16{letter-spacing:0.924000px;}
.ls10{letter-spacing:0.990000px;}
.lse{letter-spacing:1.056000px;}
.ls2d{letter-spacing:1.104000px;}
.ls1e{letter-spacing:1.122000px;}
.ls55{letter-spacing:1.135860px;}
.ls37{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.260000px;}
.ls47{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.350000px;}
.ls3c{letter-spacing:1.380000px;}
.ls0{letter-spacing:1.620000px;}
.ls2f{letter-spacing:1.650000px;}
.ls41{letter-spacing:1.860000px;}
.lsa{letter-spacing:1.875000px;}
.ls15{letter-spacing:1.907400px;}
.ls44{letter-spacing:1.920000px;}
.ls25{letter-spacing:1.980000px;}
.ls11{letter-spacing:2.112000px;}
.ls17{letter-spacing:2.178000px;}
.ls9{letter-spacing:2.310000px;}
.ls45{letter-spacing:2.460000px;}
.ls39{letter-spacing:2.640000px;}
.ls1f{letter-spacing:3.306600px;}
.ls4d{letter-spacing:9.532578px;}
.ls4e{letter-spacing:9.543408px;}
.ls4b{letter-spacing:9.554892px;}
.ls49{letter-spacing:9.599826px;}
.ls14{letter-spacing:66.792000px;}
.ls2e{letter-spacing:67.056000px;}
.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;}
}
.wsfd{word-spacing:-30.100290px;}
.wsfb{word-spacing:-29.645946px;}
.ws1{word-spacing:-27.540000px;}
.wsfc{word-spacing:-26.692710px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.280000px;}
.ws69{word-spacing:-17.028000px;}
.ws35{word-spacing:-16.962000px;}
.ws88{word-spacing:-16.830000px;}
.wsb9{word-spacing:-16.500000px;}
.wsbe{word-spacing:-16.140000px;}
.ws4{word-spacing:-16.104000px;}
.ws7a{word-spacing:-15.972000px;}
.wseb{word-spacing:-15.960000px;}
.ws1b{word-spacing:-15.906000px;}
.ws34{word-spacing:-15.840000px;}
.ws68{word-spacing:-15.774000px;}
.ws78{word-spacing:-15.708000px;}
.wsc0{word-spacing:-15.480000px;}
.wsea{word-spacing:-15.420000px;}
.wsd9{word-spacing:-15.360000px;}
.ws36{word-spacing:-15.180000px;}
.wsc2{word-spacing:-14.880000px;}
.ws4b{word-spacing:-14.850000px;}
.wsed{word-spacing:-14.820000px;}
.ws4a{word-spacing:-14.784000px;}
.wsbb{word-spacing:-14.760000px;}
.wsbc{word-spacing:-14.700000px;}
.wsd8{word-spacing:-14.340000px;}
.wsc4{word-spacing:-14.160000px;}
.wsbf{word-spacing:-14.100000px;}
.wsda{word-spacing:-13.980000px;}
.wsc1{word-spacing:-13.920000px;}
.wsc3{word-spacing:-13.800000px;}
.wsbd{word-spacing:-13.620000px;}
.wsd7{word-spacing:-13.500000px;}
.wsec{word-spacing:-13.440000px;}
.ws2{word-spacing:-12.960000px;}
.wsad{word-spacing:-12.624000px;}
.ws9c{word-spacing:-12.432000px;}
.ws7f{word-spacing:-12.288000px;}
.wsfa{word-spacing:-12.192000px;}
.wsff{word-spacing:-12.144000px;}
.ws7e{word-spacing:-12.096000px;}
.ws9b{word-spacing:-12.048000px;}
.ws1c{word-spacing:-12.000000px;}
.wsfe{word-spacing:-11.952000px;}
.ws100{word-spacing:-11.904000px;}
.ws4c{word-spacing:-11.520000px;}
.ws8f{word-spacing:-8.734506px;}
.ws87{word-spacing:-8.696028px;}
.ws33{word-spacing:-8.657550px;}
.ws6a{word-spacing:-8.619072px;}
.wsa5{word-spacing:-8.426682px;}
.ws79{word-spacing:-8.272770px;}
.ws105{word-spacing:-4.599180px;}
.wsa9{word-spacing:-3.312000px;}
.ws29{word-spacing:-3.036000px;}
.ws15{word-spacing:-2.970000px;}
.ws93{word-spacing:-2.904000px;}
.ws46{word-spacing:-2.838000px;}
.ws74{word-spacing:-2.772000px;}
.wsd3{word-spacing:-2.760000px;}
.ws72{word-spacing:-2.706000px;}
.wsce{word-spacing:-2.700000px;}
.ws3f{word-spacing:-2.640000px;}
.wsd5{word-spacing:-2.580000px;}
.ws5d{word-spacing:-2.574000px;}
.ws114{word-spacing:-2.544000px;}
.wsf8{word-spacing:-2.520000px;}
.ws47{word-spacing:-2.508000px;}
.ws43{word-spacing:-2.442000px;}
.ws99{word-spacing:-2.376000px;}
.ws115{word-spacing:-2.352000px;}
.wsdb{word-spacing:-2.340000px;}
.ws45{word-spacing:-2.310000px;}
.ws10c{word-spacing:-2.304000px;}
.wsc6{word-spacing:-2.280000px;}
.ws11f{word-spacing:-2.256000px;}
.ws20{word-spacing:-2.244000px;}
.wscf{word-spacing:-2.220000px;}
.ws6e{word-spacing:-2.208000px;}
.ws5e{word-spacing:-2.178000px;}
.wsc9{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.112000px;}
.ws118{word-spacing:-2.064000px;}
.ws5b{word-spacing:-2.046000px;}
.ws1f{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.920000px;}
.ws2b{word-spacing:-1.914000px;}
.wsc5{word-spacing:-1.875000px;}
.wse2{word-spacing:-1.860000px;}
.ws70{word-spacing:-1.848000px;}
.ws53{word-spacing:-1.782000px;}
.wsdd{word-spacing:-1.740000px;}
.ws42{word-spacing:-1.716000px;}
.wse1{word-spacing:-1.680000px;}
.ws62{word-spacing:-1.650000px;}
.ws119{word-spacing:-1.632000px;}
.ws17{word-spacing:-1.584000px;}
.wsde{word-spacing:-1.560000px;}
.wsb8{word-spacing:-1.536000px;}
.ws81{word-spacing:-1.518000px;}
.wsf6{word-spacing:-1.500000px;}
.ws16{word-spacing:-1.452000px;}
.ws48{word-spacing:-1.392000px;}
.ws44{word-spacing:-1.386000px;}
.wsca{word-spacing:-1.380000px;}
.ws73{word-spacing:-1.320000px;}
.wse7{word-spacing:-1.260000px;}
.ws3a{word-spacing:-1.254000px;}
.ws86{word-spacing:-1.200000px;}
.ws27{word-spacing:-1.188000px;}
.ws106{word-spacing:-1.135860px;}
.ws6d{word-spacing:-1.122000px;}
.wsab{word-spacing:-1.104000px;}
.ws65{word-spacing:-1.056000px;}
.ws52{word-spacing:-0.990000px;}
.wscd{word-spacing:-0.960000px;}
.ws61{word-spacing:-0.924000px;}
.ws10f{word-spacing:-0.908688px;}
.wse3{word-spacing:-0.900000px;}
.ws6{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.858000px;}
.ws24{word-spacing:-0.792000px;}
.ws7b{word-spacing:-0.750000px;}
.ws23{word-spacing:-0.726000px;}
.ws7{word-spacing:-0.720000px;}
.ws6b{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.624000px;}
.ws1d{word-spacing:-0.600000px;}
.ws3d{word-spacing:-0.594000px;}
.ws96{word-spacing:-0.576000px;}
.ws111{word-spacing:-0.567930px;}
.wse8{word-spacing:-0.540000px;}
.ws50{word-spacing:-0.528000px;}
.ws104{word-spacing:-0.493680px;}
.ws32{word-spacing:-0.480000px;}
.ws21{word-spacing:-0.462000px;}
.ws2d{word-spacing:-0.396000px;}
.ws11d{word-spacing:-0.340758px;}
.ws18{word-spacing:-0.336000px;}
.ws89{word-spacing:-0.330000px;}
.wscb{word-spacing:-0.300000px;}
.ws31{word-spacing:-0.288000px;}
.ws60{word-spacing:-0.264000px;}
.wsf3{word-spacing:-0.240000px;}
.ws67{word-spacing:-0.198000px;}
.wsb0{word-spacing:-0.192000px;}
.wse9{word-spacing:-0.180000px;}
.wsac{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.132000px;}
.wsd0{word-spacing:-0.120000px;}
.ws117{word-spacing:-0.113586px;}
.ws4f{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.wsa3{word-spacing:0.038478px;}
.wsdc{word-spacing:0.060000px;}
.ws14{word-spacing:0.066000px;}
.ws75{word-spacing:0.076956px;}
.ws113{word-spacing:0.113586px;}
.wse0{word-spacing:0.120000px;}
.ws12{word-spacing:0.132000px;}
.wsba{word-spacing:0.153912px;}
.ws40{word-spacing:0.198000px;}
.wsf7{word-spacing:0.240000px;}
.ws37{word-spacing:0.264000px;}
.ws85{word-spacing:0.330000px;}
.ws2c{word-spacing:0.396000px;}
.ws102{word-spacing:0.403920px;}
.ws30{word-spacing:0.462000px;}
.wsc7{word-spacing:0.480000px;}
.ws3b{word-spacing:0.528000px;}
.wsb{word-spacing:0.594000px;}
.ws66{word-spacing:0.660000px;}
.ws11a{word-spacing:0.681516px;}
.wsa2{word-spacing:0.720000px;}
.wse{word-spacing:0.726000px;}
.wsc8{word-spacing:0.780000px;}
.ws8b{word-spacing:0.792000px;}
.ws10{word-spacing:0.858000px;}
.wsc{word-spacing:0.924000px;}
.wsb4{word-spacing:0.990000px;}
.wsf1{word-spacing:1.020000px;}
.ws4e{word-spacing:1.056000px;}
.ws110{word-spacing:1.104000px;}
.ws80{word-spacing:1.122000px;}
.wse6{word-spacing:1.140000px;}
.ws2e{word-spacing:1.188000px;}
.wsef{word-spacing:1.200000px;}
.ws57{word-spacing:1.248000px;}
.ws25{word-spacing:1.254000px;}
.ws103{word-spacing:1.256640px;}
.ws8{word-spacing:1.320000px;}
.ws1a{word-spacing:1.386000px;}
.ws49{word-spacing:1.440000px;}
.ws94{word-spacing:1.452000px;}
.ws9e{word-spacing:1.488000px;}
.ws3c{word-spacing:1.518000px;}
.ws11b{word-spacing:1.536000px;}
.ws19{word-spacing:1.584000px;}
.ws54{word-spacing:1.650000px;}
.ws39{word-spacing:1.716000px;}
.wsf2{word-spacing:1.740000px;}
.ws10e{word-spacing:1.776000px;}
.ws26{word-spacing:1.782000px;}
.wse4{word-spacing:1.800000px;}
.ws3e{word-spacing:1.848000px;}
.wsee{word-spacing:1.860000px;}
.ws10b{word-spacing:1.872000px;}
.ws1e{word-spacing:1.914000px;}
.ws9f{word-spacing:1.920000px;}
.wsa4{word-spacing:1.980000px;}
.ws41{word-spacing:2.046000px;}
.wsa0{word-spacing:2.064000px;}
.wse5{word-spacing:2.100000px;}
.ws64{word-spacing:2.112000px;}
.ws5f{word-spacing:2.178000px;}
.wsf5{word-spacing:2.220000px;}
.ws5c{word-spacing:2.244000px;}
.ws109{word-spacing:2.256000px;}
.ws76{word-spacing:2.310000px;}
.wsd4{word-spacing:2.340000px;}
.ws38{word-spacing:2.376000px;}
.ws97{word-spacing:2.442000px;}
.ws4d{word-spacing:2.508000px;}
.wsb5{word-spacing:2.544000px;}
.ws2f{word-spacing:2.574000px;}
.ws112{word-spacing:2.612478px;}
.ws116{word-spacing:2.640000px;}
.wsdf{word-spacing:2.700000px;}
.ws98{word-spacing:2.706000px;}
.wsaf{word-spacing:2.736000px;}
.wsb3{word-spacing:2.772000px;}
.wscc{word-spacing:2.820000px;}
.ws10d{word-spacing:2.832000px;}
.ws6c{word-spacing:2.838000px;}
.ws8d{word-spacing:2.880000px;}
.wsa6{word-spacing:2.904000px;}
.ws9a{word-spacing:2.970000px;}
.wsf9{word-spacing:3.000000px;}
.wsa{word-spacing:3.036000px;}
.ws22{word-spacing:3.102000px;}
.ws83{word-spacing:3.168000px;}
.ws51{word-spacing:3.234000px;}
.ws55{word-spacing:3.300000px;}
.ws28{word-spacing:3.366000px;}
.ws84{word-spacing:3.432000px;}
.wsb6{word-spacing:3.498000px;}
.ws63{word-spacing:3.564000px;}
.ws8c{word-spacing:3.630000px;}
.ws90{word-spacing:3.696000px;}
.ws108{word-spacing:3.744000px;}
.ws107{word-spacing:3.792000px;}
.wsb7{word-spacing:3.828000px;}
.ws11c{word-spacing:3.888000px;}
.wsf{word-spacing:3.894000px;}
.wsd2{word-spacing:3.900000px;}
.ws77{word-spacing:3.960000px;}
.ws59{word-spacing:3.984000px;}
.ws56{word-spacing:4.026000px;}
.wsf0{word-spacing:4.080000px;}
.ws8a{word-spacing:4.092000px;}
.ws11e{word-spacing:4.128000px;}
.ws92{word-spacing:4.158000px;}
.wsa1{word-spacing:4.224000px;}
.wsf4{word-spacing:4.260000px;}
.ws8e{word-spacing:4.272000px;}
.ws9d{word-spacing:4.356000px;}
.wsd1{word-spacing:4.380000px;}
.ws6f{word-spacing:4.422000px;}
.wsd6{word-spacing:4.440000px;}
.ws9{word-spacing:4.488000px;}
.ws82{word-spacing:4.554000px;}
.ws7d{word-spacing:4.620000px;}
.ws95{word-spacing:4.656000px;}
.ws7c{word-spacing:4.686000px;}
.ws2a{word-spacing:4.752000px;}
.ws11{word-spacing:4.818000px;}
.ws71{word-spacing:4.884000px;}
.wsd{word-spacing:4.950000px;}
.ws58{word-spacing:5.280000px;}
.wsa8{word-spacing:5.346000px;}
.wsa7{word-spacing:5.544000px;}
.ws10a{word-spacing:5.808000px;}
.ws101{word-spacing:6.204000px;}
.wsae{word-spacing:6.288000px;}
.wsb1{word-spacing:8.352000px;}
._0{margin-left:-2455.512600px;}
._1a{margin-left:-16.906824px;}
._18{margin-left:-13.078800px;}
._16{margin-left:-11.760000px;}
._17{margin-left:-9.888000px;}
._e{margin-left:-6.960000px;}
._f{margin-left:-5.785200px;}
._4{margin-left:-4.524000px;}
._3{margin-left:-2.940000px;}
._1{margin-left:-1.092000px;}
._5{width:1.385400px;}
._d{width:3.216000px;}
._10{width:4.392000px;}
._13{width:8.256000px;}
._12{width:9.600000px;}
._b{width:11.040000px;}
._a{width:13.872000px;}
._15{width:15.324000px;}
._2{width:31.920000px;}
._11{width:61.248000px;}
._14{width:63.426000px;}
._8{width:64.944000px;}
._9{width:66.726000px;}
._6{width:67.980000px;}
._7{width:69.828000px;}
._c{width:71.214000px;}
._26{width:627.168006px;}
._22{width:760.922802px;}
._1b{width:776.812338px;}
._1c{width:787.780758px;}
._19{width:828.615102px;}
._23{width:832.995114px;}
._1e{width:851.010978px;}
._1d{width:853.338120px;}
._20{width:865.906026px;}
._24{width:869.850798px;}
._21{width:885.751068px;}
._1f{width:896.018100px;}
._25{width:974.445174px;}
.fc3{color:rgb(90,94,100);}
.fc5{color:rgb(141,142,149);}
.fc1{color:rgb(230,189,5);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(98,106,104);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs1{font-size:42.000000px;}
.fsc{font-size:44.880000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fse{font-size:113.586000px;}
.fsd{font-size:170.340000px;}
.fsb{font-size:282.000000px;}
.y0{bottom:0.000000px;}
.y215{bottom:98.598450px;}
.y214{bottom:103.098450px;}
.y1{bottom:114.803100px;}
.y213{bottom:141.602400px;}
.y239{bottom:152.344500px;}
.y238{bottom:169.594500px;}
.y237{bottom:174.094500px;}
.y212{bottom:180.360150px;}
.y211{bottom:197.610150px;}
.y236{bottom:212.598450px;}
.y210{bottom:214.860150px;}
.y20f{bottom:219.360150px;}
.y9e{bottom:229.593750px;}
.y22{bottom:229.606500px;}
.ydd{bottom:229.606650px;}
.y83{bottom:229.606800px;}
.y6a{bottom:229.606950px;}
.yb1{bottom:229.607100px;}
.y11a{bottom:229.607400px;}
.y13f{bottom:229.607550px;}
.y235{bottom:229.848450px;}
.y233{bottom:234.348450px;}
.y151{bottom:243.106500px;}
.ydc{bottom:243.106650px;}
.y82{bottom:243.106800px;}
.y69{bottom:243.106950px;}
.yb0{bottom:243.107100px;}
.y119{bottom:243.107400px;}
.y13e{bottom:243.107550px;}
.y234{bottom:247.098450px;}
.y9d{bottom:250.004250px;}
.ye2{bottom:256.606650px;}
.y81{bottom:256.606800px;}
.y68{bottom:256.606950px;}
.yaf{bottom:256.607100px;}
.y118{bottom:256.607400px;}
.y13d{bottom:256.607550px;}
.y20e{bottom:257.864250px;}
.y1b0{bottom:266.537100px;}
.y1d7{bottom:266.598450px;}
.y184{bottom:268.724550px;}
.y80{bottom:270.106800px;}
.y67{bottom:270.106950px;}
.yae{bottom:270.107100px;}
.y117{bottom:270.107400px;}
.y13c{bottom:270.107550px;}
.y9c{bottom:270.414750px;}
.y232{bottom:272.858400px;}
.y20d{bottom:275.114250px;}
.y20c{bottom:279.614250px;}
.y7f{bottom:283.606800px;}
.y66{bottom:283.606950px;}
.yad{bottom:283.607100px;}
.y116{bottom:283.607400px;}
.y13b{bottom:283.607550px;}
.y1af{bottom:285.677100px;}
.y1d6{bottom:285.732300px;}
.y183{bottom:287.858400px;}
.y231{bottom:290.102400px;}
.y9b{bottom:290.825250px;}
.y21{bottom:290.833650px;}
.y4c{bottom:290.834700px;}
.y22f{bottom:294.602400px;}
.y65{bottom:297.106950px;}
.yac{bottom:297.107100px;}
.y115{bottom:297.107400px;}
.y13a{bottom:297.107550px;}
.y1ae{bottom:304.817100px;}
.y1d5{bottom:304.866150px;}
.y182{bottom:306.986100px;}
.y230{bottom:307.352400px;}
.y12e{bottom:310.606950px;}
.y102{bottom:310.607100px;}
.y114{bottom:310.607400px;}
.y139{bottom:310.607550px;}
.ydb{bottom:311.233650px;}
.y9a{bottom:311.235750px;}
.y150{bottom:311.237850px;}
.y158{bottom:311.239950px;}
.y145{bottom:311.241000px;}
.y4b{bottom:311.242050px;}
.y153{bottom:311.243100px;}
.y20{bottom:311.244150px;}
.y20b{bottom:318.118050px;}
.y1ad{bottom:323.957100px;}
.y1d4{bottom:324.000150px;}
.y12d{bottom:324.106950px;}
.y113{bottom:324.107400px;}
.y138{bottom:324.107550px;}
.y181{bottom:326.126100px;}
.yda{bottom:331.644150px;}
.y99{bottom:331.646250px;}
.y14f{bottom:331.648350px;}
.y157{bottom:331.650450px;}
.y144{bottom:331.651500px;}
.y4a{bottom:331.652550px;}
.y1f{bottom:331.653600px;}
.y22e{bottom:333.106350px;}
.y20a{bottom:335.368050px;}
.y112{bottom:337.607400px;}
.y137{bottom:337.607550px;}
.y1ac{bottom:343.097100px;}
.y1d3{bottom:343.133850px;}
.y180{bottom:345.259950px;}
.y111{bottom:351.107400px;}
.y136{bottom:351.107550px;}
.y120{bottom:352.052550px;}
.yd9{bottom:352.054650px;}
.y98{bottom:352.056750px;}
.y64{bottom:352.058850px;}
.y1e{bottom:352.060950px;}
.y107{bottom:352.062000px;}
.y49{bottom:352.063050px;}
.y209{bottom:352.624050px;}
.y208{bottom:357.118050px;}
.y1ab{bottom:362.237100px;}
.y1d2{bottom:362.243250px;}
.y17f{bottom:364.387650px;}
.y110{bottom:364.607400px;}
.y135{bottom:364.607550px;}
.y22d{bottom:371.864250px;}
.y11f{bottom:372.463050px;}
.yd8{bottom:372.465150px;}
.y97{bottom:372.467250px;}
.y63{bottom:372.469350px;}
.y1d{bottom:372.471450px;}
.y48{bottom:372.472500px;}
.y10f{bottom:378.107400px;}
.y134{bottom:378.107550px;}
.y1aa{bottom:381.377100px;}
.y1d1{bottom:381.383250px;}
.y17e{bottom:383.527650px;}
.y22c{bottom:389.114250px;}
.y133{bottom:391.607550px;}
.yca{bottom:392.873550px;}
.y47{bottom:392.875650px;}
.y96{bottom:392.877750px;}
.y156{bottom:392.878800px;}
.y62{bottom:392.879850px;}
.y1c{bottom:392.881950px;}
.y207{bottom:395.646000px;}
.y1a9{bottom:400.517100px;}
.y1d0{bottom:400.523250px;}
.y17d{bottom:402.661500px;}
.y22b{bottom:406.364250px;}
.y22a{bottom:410.864250px;}
.y206{bottom:412.890000px;}
.yc9{bottom:413.284050px;}
.y46{bottom:413.286150px;}
.y95{bottom:413.288250px;}
.y155{bottom:413.289300px;}
.y61{bottom:413.290350px;}
.y1b{bottom:413.291400px;}
.y1a8{bottom:419.657100px;}
.y1cf{bottom:419.663250px;}
.y17c{bottom:421.764600px;}
.y205{bottom:430.134000px;}
.yc8{bottom:433.694550px;}
.y10e{bottom:433.695600px;}
.y45{bottom:433.696650px;}
.y94{bottom:433.698750px;}
.yab{bottom:433.699800px;}
.y60{bottom:433.700850px;}
.yf3{bottom:433.710300px;}
.y1a7{bottom:438.797100px;}
.y1ce{bottom:438.803250px;}
.y17b{bottom:440.904600px;}
.y204{bottom:447.378000px;}
.y229{bottom:449.368050px;}
.y203{bottom:451.872000px;}
.yc7{bottom:454.105050px;}
.y10d{bottom:454.106100px;}
.y44{bottom:454.107150px;}
.y93{bottom:454.109250px;}
.y1a{bottom:454.110300px;}
.y1a6{bottom:457.937100px;}
.y12c{bottom:459.604800px;}
.y17a{bottom:460.044600px;}
.y1cd{bottom:462.932100px;}
.y228{bottom:471.118050px;}
.y7e{bottom:474.506100px;}
.yc6{bottom:474.515550px;}
.y10c{bottom:474.516600px;}
.y43{bottom:474.517650px;}
.y5f{bottom:474.518700px;}
.y19{bottom:474.519750px;}
.y1a5{bottom:477.070950px;}
.y179{bottom:479.184600px;}
.y101{bottom:480.014250px;}
.y202{bottom:490.387950px;}
.y7d{bottom:494.916600px;}
.y100{bottom:494.920800px;}
.y5e{bottom:494.925000px;}
.yc5{bottom:494.926050px;}
.y10b{bottom:494.927100px;}
.y42{bottom:494.928150px;}
.y92{bottom:494.929200px;}
.y1a4{bottom:496.204800px;}
.y178{bottom:498.324600px;}
.y201{bottom:507.631950px;}
.y227{bottom:509.887950px;}
.y1cc{bottom:515.258850px;}
.y7c{bottom:515.327100px;}
.y132{bottom:515.330250px;}
.yff{bottom:515.331300px;}
.yaa{bottom:515.333400px;}
.y5d{bottom:515.335500px;}
.yc4{bottom:515.336550px;}
.y18{bottom:515.337600px;}
.y41{bottom:515.338650px;}
.y177{bottom:517.464600px;}
.y200{bottom:524.875950px;}
.y226{bottom:527.131950px;}
.y225{bottom:531.625950px;}
.y1cb{bottom:534.398850px;}
.y1a3{bottom:534.472500px;}
.y7b{bottom:535.737600px;}
.y12b{bottom:535.740750px;}
.yfe{bottom:535.741800px;}
.y10a{bottom:535.742850px;}
.ya9{bottom:535.743900px;}
.y5c{bottom:535.746000px;}
.yc3{bottom:535.747050px;}
.y17{bottom:535.748100px;}
.y176{bottom:536.598450px;}
.y1ff{bottom:542.125950px;}
.y1fe{bottom:546.625950px;}
.y1ca{bottom:553.538850px;}
.y1a2{bottom:553.606350px;}
.y175{bottom:555.695550px;}
.y14e{bottom:556.135500px;}
.y7a{bottom:556.148100px;}
.y12a{bottom:556.151250px;}
.yfd{bottom:556.152300px;}
.y106{bottom:556.153350px;}
.ya8{bottom:556.154400px;}
.y91{bottom:556.155450px;}
.y5b{bottom:556.156500px;}
.y16{bottom:556.157550px;}
.y40{bottom:556.167000px;}
.y224{bottom:570.129900px;}
.y1c9{bottom:572.678850px;}
.y1a1{bottom:572.740200px;}
.y174{bottom:574.835550px;}
.y14d{bottom:576.546000px;}
.y79{bottom:576.558600px;}
.y129{bottom:576.561750px;}
.yfc{bottom:576.562800px;}
.y105{bottom:576.563850px;}
.y15{bottom:576.564900px;}
.y90{bottom:576.565950px;}
.y3f{bottom:576.567000px;}
.yc2{bottom:582.061500px;}
.y1fd{bottom:585.129900px;}
.y223{bottom:587.379900px;}
.y1c8{bottom:591.818850px;}
.y1a0{bottom:591.874050px;}
.y173{bottom:593.975550px;}
.y14c{bottom:596.956500px;}
.y78{bottom:596.969100px;}
.yc1{bottom:596.972250px;}
.yfb{bottom:596.973300px;}
.y104{bottom:596.974350px;}
.y14{bottom:596.975400px;}
.y5a{bottom:596.976450px;}
.y1fc{bottom:602.379900px;}
.y11e{bottom:602.470950px;}
.y222{bottom:604.635900px;}
.y221{bottom:609.129900px;}
.y19f{bottom:610.891200px;}
.y1c7{bottom:610.958850px;}
.y172{bottom:613.115550px;}
.y14b{bottom:617.367000px;}
.yf2{bottom:617.376450px;}
.y143{bottom:617.376600px;}
.y77{bottom:617.379600px;}
.yc0{bottom:617.382750px;}
.ye1{bottom:617.383800px;}
.y103{bottom:617.384850px;}
.y13{bottom:617.385900px;}
.y1fb{bottom:619.635900px;}
.y1fa{bottom:624.129900px;}
.y19e{bottom:630.031200px;}
.y1c6{bottom:630.098850px;}
.y171{bottom:632.255550px;}
.y14a{bottom:637.777500px;}
.yf1{bottom:637.786950px;}
.y76{bottom:637.790100px;}
.ybf{bottom:637.793250px;}
.y59{bottom:637.794300px;}
.y12{bottom:637.795350px;}
.y154{bottom:643.289850px;}
.y220{bottom:647.639850px;}
.y19d{bottom:649.171200px;}
.y1c5{bottom:649.238850px;}
.y170{bottom:651.395550px;}
.y149{bottom:658.188000px;}
.yf0{bottom:658.197450px;}
.y11{bottom:658.200600px;}
.ybe{bottom:658.203750px;}
.y3e{bottom:658.204800px;}
.y1f9{bottom:662.639850px;}
.y21f{bottom:664.883850px;}
.y19c{bottom:668.311200px;}
.y1c4{bottom:668.378850px;}
.y16f{bottom:670.535550px;}
.y148{bottom:678.598500px;}
.yef{bottom:678.607950px;}
.y152{bottom:678.609000px;}
.y10{bottom:678.611100px;}
.ya7{bottom:678.612150px;}
.y3d{bottom:678.614250px;}
.y1f8{bottom:679.883850px;}
.y21e{bottom:682.133850px;}
.y21d{bottom:686.633850px;}
.y19b{bottom:687.451200px;}
.y1c3{bottom:687.518850px;}
.y16e{bottom:689.669400px;}
.y1f7{bottom:697.133850px;}
.ye0{bottom:699.009000px;}
.y142{bottom:699.016350px;}
.yee{bottom:699.018450px;}
.y3c{bottom:699.019500px;}
.yf{bottom:699.021600px;}
.y58{bottom:699.022650px;}
.ybd{bottom:699.023700px;}
.y1f6{bottom:701.633850px;}
.y19a{bottom:706.591200px;}
.y1c2{bottom:706.658850px;}
.y16d{bottom:708.803250px;}
.yd7{bottom:719.417400px;}
.ydf{bottom:719.419500px;}
.y141{bottom:719.426850px;}
.yfa{bottom:719.427900px;}
.yed{bottom:719.428950px;}
.y3b{bottom:719.430000px;}
.ye{bottom:719.432100px;}
.y57{bottom:719.433150px;}
.y131{bottom:724.927650px;}
.y21c{bottom:725.149800px;}
.y199{bottom:725.731200px;}
.y1c1{bottom:725.798850px;}
.y16c{bottom:727.937100px;}
.yd6{bottom:739.827900px;}
.yde{bottom:739.830000px;}
.y140{bottom:739.837350px;}
.yf9{bottom:739.838400px;}
.yec{bottom:739.839450px;}
.y3a{bottom:739.840500px;}
.yd{bottom:739.842600px;}
.y1f5{bottom:740.143800px;}
.y21b{bottom:742.393800px;}
.y198{bottom:744.871200px;}
.y1c0{bottom:744.938850px;}
.y16b{bottom:746.984850px;}
.y1f4{bottom:757.387800px;}
.y21a{bottom:759.637800px;}
.yd5{bottom:760.238400px;}
.ybc{bottom:760.240500px;}
.y56{bottom:760.246800px;}
.ya6{bottom:760.247850px;}
.yf8{bottom:760.248900px;}
.yeb{bottom:760.249950px;}
.y39{bottom:760.251000px;}
.yc{bottom:760.252050px;}
.y197{bottom:764.011200px;}
.y1bf{bottom:764.078850px;}
.y16a{bottom:766.124850px;}
.y1f3{bottom:774.637800px;}
.y219{bottom:776.887800px;}
.y8f{bottom:780.647850px;}
.yd4{bottom:780.648900px;}
.ybb{bottom:780.651000px;}
.y55{bottom:780.657300px;}
.ya5{bottom:780.658350px;}
.yf7{bottom:780.659400px;}
.yea{bottom:780.660450px;}
.y38{bottom:780.661500px;}
.y218{bottom:781.387800px;}
.y196{bottom:783.151200px;}
.y1e6{bottom:783.163500px;}
.y1be{bottom:783.212700px;}
.y169{bottom:785.264850px;}
.y1f2{bottom:791.887800px;}
.y1f1{bottom:796.387800px;}
.y8e{bottom:801.058350px;}
.yd3{bottom:801.059400px;}
.yba{bottom:801.061500px;}
.y75{bottom:801.065700px;}
.y54{bottom:801.067800px;}
.ya4{bottom:801.068850px;}
.yf6{bottom:801.069900px;}
.y37{bottom:801.070950px;}
.y195{bottom:802.291200px;}
.y1e5{bottom:802.303500px;}
.y1bd{bottom:802.346550px;}
.y168{bottom:804.404850px;}
.y217{bottom:819.891750px;}
.y194{bottom:821.431200px;}
.y1e4{bottom:821.443500px;}
.y8d{bottom:821.468850px;}
.yd2{bottom:821.469900px;}
.y128{bottom:821.470950px;}
.yb9{bottom:821.472000px;}
.y74{bottom:821.476200px;}
.yb{bottom:821.477850px;}
.y53{bottom:821.478300px;}
.ya3{bottom:821.479350px;}
.y36{bottom:821.480400px;}
.y167{bottom:823.544850px;}
.y11d{bottom:826.974900px;}
.y1f0{bottom:834.891750px;}
.y216{bottom:837.141750px;}
.y193{bottom:840.571200px;}
.y1e3{bottom:840.583500px;}
.y1bc{bottom:840.608100px;}
.y8c{bottom:841.879350px;}
.yd1{bottom:841.880400px;}
.y127{bottom:841.881450px;}
.yb8{bottom:841.882500px;}
.y130{bottom:841.885650px;}
.y73{bottom:841.886700px;}
.y109{bottom:841.887750px;}
.y52{bottom:841.888800px;}
.ya{bottom:841.889850px;}
.y166{bottom:842.684850px;}
.y192{bottom:859.711200px;}
.y1e2{bottom:859.723500px;}
.y1bb{bottom:859.748100px;}
.y165{bottom:861.824850px;}
.y8b{bottom:862.289850px;}
.yd0{bottom:862.290900px;}
.y126{bottom:862.291950px;}
.yb7{bottom:862.293000px;}
.y12f{bottom:862.296150px;}
.y72{bottom:862.297200px;}
.y35{bottom:862.298250px;}
.y51{bottom:862.299300px;}
.y191{bottom:878.851200px;}
.y1e1{bottom:878.863500px;}
.y1ba{bottom:878.881950px;}
.y164{bottom:880.964850px;}
.ya2{bottom:882.699450px;}
.y8a{bottom:882.700350px;}
.ycf{bottom:882.701400px;}
.y125{bottom:882.702450px;}
.yb6{bottom:882.703500px;}
.y34{bottom:882.706650px;}
.y71{bottom:882.707700px;}
.y9{bottom:882.708750px;}
.y190{bottom:897.991200px;}
.y1b9{bottom:897.997350px;}
.y1e0{bottom:898.003500px;}
.y163{bottom:900.104850px;}
.y89{bottom:903.110850px;}
.yce{bottom:903.111900px;}
.y124{bottom:903.112950px;}
.yb5{bottom:903.114000px;}
.ye9{bottom:903.115050px;}
.y11c{bottom:903.116100px;}
.y33{bottom:903.117150px;}
.y50{bottom:903.118200px;}
.y108{bottom:908.612700px;}
.y18f{bottom:917.131200px;}
.y1b8{bottom:917.137350px;}
.y1df{bottom:917.143500px;}
.y162{bottom:919.244850px;}
.y15c{bottom:923.518200px;}
.yf5{bottom:923.519250px;}
.y88{bottom:923.521350px;}
.ycd{bottom:923.522400px;}
.y123{bottom:923.523450px;}
.yb4{bottom:923.524500px;}
.ye8{bottom:923.525550px;}
.y11b{bottom:923.526600px;}
.y32{bottom:923.527650px;}
.y8{bottom:931.713600px;}
.y18e{bottom:936.271200px;}
.y1b7{bottom:936.277350px;}
.y1de{bottom:936.283500px;}
.y161{bottom:938.384850px;}
.y15b{bottom:943.928700px;}
.yf4{bottom:943.929750px;}
.y87{bottom:943.931850px;}
.ycc{bottom:943.932900px;}
.y122{bottom:943.933950px;}
.yb3{bottom:943.935000px;}
.ye7{bottom:943.936050px;}
.y31{bottom:943.937100px;}
.y1ec{bottom:948.975750px;}
.y1ef{bottom:950.841390px;}
.y7{bottom:954.213600px;}
.y18d{bottom:955.411200px;}
.y1b6{bottom:955.417350px;}
.y160{bottom:957.524850px;}
.y15a{bottom:964.339200px;}
.y30{bottom:964.340250px;}
.y86{bottom:964.342350px;}
.ya1{bottom:964.343400px;}
.y121{bottom:964.344450px;}
.y70{bottom:964.345500px;}
.y4f{bottom:964.346550px;}
.y1eb{bottom:965.472750px;}
.y18c{bottom:974.551200px;}
.y15f{bottom:976.664850px;}
.y6{bottom:976.713600px;}
.y159{bottom:984.749700px;}
.y2f{bottom:984.750750px;}
.y85{bottom:984.752850px;}
.ya0{bottom:984.753900px;}
.y4e{bottom:984.754950px;}
.y6f{bottom:984.756000px;}
.y1ee{bottom:987.379320px;}
.y1b5{bottom:993.672900px;}
.y18b{bottom:993.685050px;}
.y15e{bottom:995.804850px;}
.ye6{bottom:1005.160200px;}
.y2e{bottom:1005.161250px;}
.y84{bottom:1005.163350px;}
.y9f{bottom:1005.164400px;}
.y29{bottom:1005.165450px;}
.y1dd{bottom:1012.782000px;}
.y1b4{bottom:1012.812900px;}
.y18a{bottom:1012.818900px;}
.y15d{bottom:1014.944850px;}
.y1ed{bottom:1023.917250px;}
.ye5{bottom:1025.570700px;}
.y2d{bottom:1025.571750px;}
.y147{bottom:1025.572800px;}
.y6e{bottom:1025.573850px;}
.y28{bottom:1025.574900px;}
.y1dc{bottom:1031.922000px;}
.y189{bottom:1031.952900px;}
.y5{bottom:1040.031600px;}
.y4d{bottom:1045.980000px;}
.ye4{bottom:1045.981200px;}
.y2c{bottom:1045.982250px;}
.y146{bottom:1045.983300px;}
.y6d{bottom:1045.984350px;}
.y1db{bottom:1051.062000px;}
.y188{bottom:1051.074450px;}
.y1b3{bottom:1051.086600px;}
.y27{bottom:1066.390500px;}
.ye3{bottom:1066.391700px;}
.y2b{bottom:1066.392750px;}
.y6c{bottom:1066.393800px;}
.y4{bottom:1067.031600px;}
.y1e7{bottom:1068.090750px;}
.y1da{bottom:1070.202000px;}
.y1b2{bottom:1070.208300px;}
.y187{bottom:1070.214450px;}
.y26{bottom:1086.801000px;}
.yb2{bottom:1086.802200px;}
.y2a{bottom:1086.803250px;}
.y1d9{bottom:1089.342000px;}
.y1b1{bottom:1089.348300px;}
.y186{bottom:1089.354450px;}
.y3{bottom:1094.031600px;}
.y25{bottom:1107.211500px;}
.y6b{bottom:1107.212700px;}
.ycb{bottom:1107.222000px;}
.y1d8{bottom:1108.482000px;}
.y185{bottom:1108.488300px;}
.y2{bottom:1121.031600px;}
.y24{bottom:1127.622000px;}
.y1ea{bottom:1131.599910px;}
.y1e9{bottom:1144.233630px;}
.y1e8{bottom:1156.867350px;}
.y23{bottom:1201.495650px;}
.h18{height:30.117780px;}
.h10{height:33.129558px;}
.h22{height:35.328000px;}
.ha{height:36.036000px;}
.h1c{height:38.641680px;}
.h1b{height:38.731440px;}
.h9{height:41.184000px;}
.h17{height:44.220000px;}
.h6{height:46.332000px;}
.h1d{height:46.602000px;}
.h16{height:51.660000px;}
.h1f{height:51.780000px;}
.h19{height:51.807600px;}
.h5{height:56.628000px;}
.h8{height:56.826000px;}
.he{height:56.830200px;}
.hb{height:56.834400px;}
.hf{height:56.838600px;}
.hc{height:56.842800px;}
.h14{height:56.843400px;}
.hd{height:56.847000px;}
.h13{height:56.855400px;}
.h15{height:56.859600px;}
.h12{height:56.863800px;}
.h11{height:56.889000px;}
.h2{height:62.136000px;}
.h7{height:64.875000px;}
.h4{height:77.670000px;}
.h21{height:85.416672px;}
.h20{height:92.184000px;}
.h3{height:93.204000px;}
.h1e{height:128.095680px;}
.h1a{height:212.064000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:54.612600px;}
.x19{left:55.807050px;}
.x1e{left:91.838250px;}
.x1b{left:93.530550px;}
.x1c{left:96.642900px;}
.x1f{left:98.798100px;}
.x22{left:103.852500px;}
.x23{left:107.651850px;}
.x21{left:109.847550px;}
.x20{left:111.482700px;}
.x2{left:167.610000px;}
.x15{left:181.164000px;}
.x16{left:182.704500px;}
.x3{left:187.830300px;}
.x4{left:202.558950px;}
.x11{left:227.162550px;}
.x12{left:234.866250px;}
.x9{left:361.935750px;}
.x7{left:368.318250px;}
.xa{left:371.606550px;}
.x8{left:376.317150px;}
.x1a{left:460.464600px;}
.x17{left:462.212550px;}
.x18{left:463.712550px;}
.x26{left:515.301000px;}
.xf{left:517.223400px;}
.x25{left:520.815450px;}
.x24{left:522.908250px;}
.x10{left:526.714050px;}
.xb{left:608.133300px;}
.x5{left:612.660750px;}
.xc{left:616.830600px;}
.xd{left:628.637100px;}
.xe{left:637.362150px;}
.x13{left:712.485600px;}
.x14{left:721.699050px;}
.x6{left:754.371450px;}
.x1{left:755.541450px;}
.x27{left:833.094750px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.891733pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:45.333333pt;}
.ls51{letter-spacing:-5.514667pt;}
.ls57{letter-spacing:-2.322203pt;}
.ls53{letter-spacing:-1.117013pt;}
.ls13{letter-spacing:-1.109333pt;}
.ls62{letter-spacing:-0.605792pt;}
.ls5b{letter-spacing:-0.554667pt;}
.ls52{letter-spacing:-0.359040pt;}
.ls1d{letter-spacing:-0.342027pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls46{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.205216pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls60{letter-spacing:-0.170667pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.136811pt;}
.ls58{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls42{letter-spacing:-0.106667pt;}
.ls5e{letter-spacing:-0.100965pt;}
.ls5f{letter-spacing:-0.085333pt;}
.ls1a{letter-spacing:-0.068405pt;}
.ls8{letter-spacing:-0.058667pt;}
.ls3b{letter-spacing:-0.053333pt;}
.ls63{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.034203pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000016pt;}
.ls48{letter-spacing:0.019200pt;}
.ls27{letter-spacing:0.029333pt;}
.ls24{letter-spacing:0.034203pt;}
.ls40{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.058667pt;}
.ls26{letter-spacing:0.068405pt;}
.ls4a{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.088000pt;}
.ls61{letter-spacing:0.100965pt;}
.ls38{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls4f{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.146667pt;}
.ls35{letter-spacing:0.160000pt;}
.ls3f{letter-spacing:0.213333pt;}
.ls3d{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.293333pt;}
.ls4c{letter-spacing:0.298667pt;}
.ls56{letter-spacing:0.302896pt;}
.ls43{letter-spacing:0.320000pt;}
.ls64{letter-spacing:0.341333pt;}
.ls33{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls54{letter-spacing:0.438827pt;}
.ls28{letter-spacing:0.469333pt;}
.ls34{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.504827pt;}
.ls22{letter-spacing:0.512000pt;}
.ls31{letter-spacing:0.533333pt;}
.ls2c{letter-spacing:0.554667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.645333pt;}
.ls1b{letter-spacing:0.666667pt;}
.ls1{letter-spacing:0.672000pt;}
.ls23{letter-spacing:0.682667pt;}
.ls32{letter-spacing:0.698667pt;}
.ls59{letter-spacing:0.706757pt;}
.ls3e{letter-spacing:0.746667pt;}
.ls1c{letter-spacing:0.762667pt;}
.ls5a{letter-spacing:0.807723pt;}
.ls29{letter-spacing:0.810667pt;}
.ls16{letter-spacing:0.821333pt;}
.ls10{letter-spacing:0.880000pt;}
.lse{letter-spacing:0.938667pt;}
.ls2d{letter-spacing:0.981333pt;}
.ls1e{letter-spacing:0.997333pt;}
.ls55{letter-spacing:1.009653pt;}
.ls37{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.120000pt;}
.ls47{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.200000pt;}
.ls3c{letter-spacing:1.226667pt;}
.ls0{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.466667pt;}
.ls41{letter-spacing:1.653333pt;}
.lsa{letter-spacing:1.666667pt;}
.ls15{letter-spacing:1.695467pt;}
.ls44{letter-spacing:1.706667pt;}
.ls25{letter-spacing:1.760000pt;}
.ls11{letter-spacing:1.877333pt;}
.ls17{letter-spacing:1.936000pt;}
.ls9{letter-spacing:2.053333pt;}
.ls45{letter-spacing:2.186667pt;}
.ls39{letter-spacing:2.346667pt;}
.ls1f{letter-spacing:2.939200pt;}
.ls4d{letter-spacing:8.473403pt;}
.ls4e{letter-spacing:8.483029pt;}
.ls4b{letter-spacing:8.493237pt;}
.ls49{letter-spacing:8.533179pt;}
.ls14{letter-spacing:59.370667pt;}
.ls2e{letter-spacing:59.605333pt;}
.wsfd{word-spacing:-26.755813pt;}
.wsfb{word-spacing:-26.351952pt;}
.ws1{word-spacing:-24.480000pt;}
.wsfc{word-spacing:-23.726853pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.360000pt;}
.ws69{word-spacing:-15.136000pt;}
.ws35{word-spacing:-15.077333pt;}
.ws88{word-spacing:-14.960000pt;}
.wsb9{word-spacing:-14.666667pt;}
.wsbe{word-spacing:-14.346667pt;}
.ws4{word-spacing:-14.314667pt;}
.ws7a{word-spacing:-14.197333pt;}
.wseb{word-spacing:-14.186667pt;}
.ws1b{word-spacing:-14.138667pt;}
.ws34{word-spacing:-14.080000pt;}
.ws68{word-spacing:-14.021333pt;}
.ws78{word-spacing:-13.962667pt;}
.wsc0{word-spacing:-13.760000pt;}
.wsea{word-spacing:-13.706667pt;}
.wsd9{word-spacing:-13.653333pt;}
.ws36{word-spacing:-13.493333pt;}
.wsc2{word-spacing:-13.226667pt;}
.ws4b{word-spacing:-13.200000pt;}
.wsed{word-spacing:-13.173333pt;}
.ws4a{word-spacing:-13.141333pt;}
.wsbb{word-spacing:-13.120000pt;}
.wsbc{word-spacing:-13.066667pt;}
.wsd8{word-spacing:-12.746667pt;}
.wsc4{word-spacing:-12.586667pt;}
.wsbf{word-spacing:-12.533333pt;}
.wsda{word-spacing:-12.426667pt;}
.wsc1{word-spacing:-12.373333pt;}
.wsc3{word-spacing:-12.266667pt;}
.wsbd{word-spacing:-12.106667pt;}
.wsd7{word-spacing:-12.000000pt;}
.wsec{word-spacing:-11.946667pt;}
.ws2{word-spacing:-11.520000pt;}
.wsad{word-spacing:-11.221333pt;}
.ws9c{word-spacing:-11.050667pt;}
.ws7f{word-spacing:-10.922667pt;}
.wsfa{word-spacing:-10.837333pt;}
.wsff{word-spacing:-10.794667pt;}
.ws7e{word-spacing:-10.752000pt;}
.ws9b{word-spacing:-10.709333pt;}
.ws1c{word-spacing:-10.666667pt;}
.wsfe{word-spacing:-10.624000pt;}
.ws100{word-spacing:-10.581333pt;}
.ws4c{word-spacing:-10.240000pt;}
.ws8f{word-spacing:-7.764005pt;}
.ws87{word-spacing:-7.729803pt;}
.ws33{word-spacing:-7.695600pt;}
.ws6a{word-spacing:-7.661397pt;}
.wsa5{word-spacing:-7.490384pt;}
.ws79{word-spacing:-7.353573pt;}
.ws105{word-spacing:-4.088160pt;}
.wsa9{word-spacing:-2.944000pt;}
.ws29{word-spacing:-2.698667pt;}
.ws15{word-spacing:-2.640000pt;}
.ws93{word-spacing:-2.581333pt;}
.ws46{word-spacing:-2.522667pt;}
.ws74{word-spacing:-2.464000pt;}
.wsd3{word-spacing:-2.453333pt;}
.ws72{word-spacing:-2.405333pt;}
.wsce{word-spacing:-2.400000pt;}
.ws3f{word-spacing:-2.346667pt;}
.wsd5{word-spacing:-2.293333pt;}
.ws5d{word-spacing:-2.288000pt;}
.ws114{word-spacing:-2.261333pt;}
.wsf8{word-spacing:-2.240000pt;}
.ws47{word-spacing:-2.229333pt;}
.ws43{word-spacing:-2.170667pt;}
.ws99{word-spacing:-2.112000pt;}
.ws115{word-spacing:-2.090667pt;}
.wsdb{word-spacing:-2.080000pt;}
.ws45{word-spacing:-2.053333pt;}
.ws10c{word-spacing:-2.048000pt;}
.wsc6{word-spacing:-2.026667pt;}
.ws11f{word-spacing:-2.005333pt;}
.ws20{word-spacing:-1.994667pt;}
.wscf{word-spacing:-1.973333pt;}
.ws6e{word-spacing:-1.962667pt;}
.ws5e{word-spacing:-1.936000pt;}
.wsc9{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.877333pt;}
.ws118{word-spacing:-1.834667pt;}
.ws5b{word-spacing:-1.818667pt;}
.ws1f{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.706667pt;}
.ws2b{word-spacing:-1.701333pt;}
.wsc5{word-spacing:-1.666667pt;}
.wse2{word-spacing:-1.653333pt;}
.ws70{word-spacing:-1.642667pt;}
.ws53{word-spacing:-1.584000pt;}
.wsdd{word-spacing:-1.546667pt;}
.ws42{word-spacing:-1.525333pt;}
.wse1{word-spacing:-1.493333pt;}
.ws62{word-spacing:-1.466667pt;}
.ws119{word-spacing:-1.450667pt;}
.ws17{word-spacing:-1.408000pt;}
.wsde{word-spacing:-1.386667pt;}
.wsb8{word-spacing:-1.365333pt;}
.ws81{word-spacing:-1.349333pt;}
.wsf6{word-spacing:-1.333333pt;}
.ws16{word-spacing:-1.290667pt;}
.ws48{word-spacing:-1.237333pt;}
.ws44{word-spacing:-1.232000pt;}
.wsca{word-spacing:-1.226667pt;}
.ws73{word-spacing:-1.173333pt;}
.wse7{word-spacing:-1.120000pt;}
.ws3a{word-spacing:-1.114667pt;}
.ws86{word-spacing:-1.066667pt;}
.ws27{word-spacing:-1.056000pt;}
.ws106{word-spacing:-1.009653pt;}
.ws6d{word-spacing:-0.997333pt;}
.wsab{word-spacing:-0.981333pt;}
.ws65{word-spacing:-0.938667pt;}
.ws52{word-spacing:-0.880000pt;}
.wscd{word-spacing:-0.853333pt;}
.ws61{word-spacing:-0.821333pt;}
.ws10f{word-spacing:-0.807723pt;}
.wse3{word-spacing:-0.800000pt;}
.ws6{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.762667pt;}
.ws24{word-spacing:-0.704000pt;}
.ws7b{word-spacing:-0.666667pt;}
.ws23{word-spacing:-0.645333pt;}
.ws7{word-spacing:-0.640000pt;}
.ws6b{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.554667pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws3d{word-spacing:-0.528000pt;}
.ws96{word-spacing:-0.512000pt;}
.ws111{word-spacing:-0.504827pt;}
.wse8{word-spacing:-0.480000pt;}
.ws50{word-spacing:-0.469333pt;}
.ws104{word-spacing:-0.438827pt;}
.ws32{word-spacing:-0.426667pt;}
.ws21{word-spacing:-0.410667pt;}
.ws2d{word-spacing:-0.352000pt;}
.ws11d{word-spacing:-0.302896pt;}
.ws18{word-spacing:-0.298667pt;}
.ws89{word-spacing:-0.293333pt;}
.wscb{word-spacing:-0.266667pt;}
.ws31{word-spacing:-0.256000pt;}
.ws60{word-spacing:-0.234667pt;}
.wsf3{word-spacing:-0.213333pt;}
.ws67{word-spacing:-0.176000pt;}
.wsb0{word-spacing:-0.170667pt;}
.wse9{word-spacing:-0.160000pt;}
.wsac{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.117333pt;}
.wsd0{word-spacing:-0.106667pt;}
.ws117{word-spacing:-0.100965pt;}
.ws4f{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.034203pt;}
.wsdc{word-spacing:0.053333pt;}
.ws14{word-spacing:0.058667pt;}
.ws75{word-spacing:0.068405pt;}
.ws113{word-spacing:0.100965pt;}
.wse0{word-spacing:0.106667pt;}
.ws12{word-spacing:0.117333pt;}
.wsba{word-spacing:0.136811pt;}
.ws40{word-spacing:0.176000pt;}
.wsf7{word-spacing:0.213333pt;}
.ws37{word-spacing:0.234667pt;}
.ws85{word-spacing:0.293333pt;}
.ws2c{word-spacing:0.352000pt;}
.ws102{word-spacing:0.359040pt;}
.ws30{word-spacing:0.410667pt;}
.wsc7{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.469333pt;}
.wsb{word-spacing:0.528000pt;}
.ws66{word-spacing:0.586667pt;}
.ws11a{word-spacing:0.605792pt;}
.wsa2{word-spacing:0.640000pt;}
.wse{word-spacing:0.645333pt;}
.wsc8{word-spacing:0.693333pt;}
.ws8b{word-spacing:0.704000pt;}
.ws10{word-spacing:0.762667pt;}
.wsc{word-spacing:0.821333pt;}
.wsb4{word-spacing:0.880000pt;}
.wsf1{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.938667pt;}
.ws110{word-spacing:0.981333pt;}
.ws80{word-spacing:0.997333pt;}
.wse6{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.056000pt;}
.wsef{word-spacing:1.066667pt;}
.ws57{word-spacing:1.109333pt;}
.ws25{word-spacing:1.114667pt;}
.ws103{word-spacing:1.117013pt;}
.ws8{word-spacing:1.173333pt;}
.ws1a{word-spacing:1.232000pt;}
.ws49{word-spacing:1.280000pt;}
.ws94{word-spacing:1.290667pt;}
.ws9e{word-spacing:1.322667pt;}
.ws3c{word-spacing:1.349333pt;}
.ws11b{word-spacing:1.365333pt;}
.ws19{word-spacing:1.408000pt;}
.ws54{word-spacing:1.466667pt;}
.ws39{word-spacing:1.525333pt;}
.wsf2{word-spacing:1.546667pt;}
.ws10e{word-spacing:1.578667pt;}
.ws26{word-spacing:1.584000pt;}
.wse4{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.642667pt;}
.wsee{word-spacing:1.653333pt;}
.ws10b{word-spacing:1.664000pt;}
.ws1e{word-spacing:1.701333pt;}
.ws9f{word-spacing:1.706667pt;}
.wsa4{word-spacing:1.760000pt;}
.ws41{word-spacing:1.818667pt;}
.wsa0{word-spacing:1.834667pt;}
.wse5{word-spacing:1.866667pt;}
.ws64{word-spacing:1.877333pt;}
.ws5f{word-spacing:1.936000pt;}
.wsf5{word-spacing:1.973333pt;}
.ws5c{word-spacing:1.994667pt;}
.ws109{word-spacing:2.005333pt;}
.ws76{word-spacing:2.053333pt;}
.wsd4{word-spacing:2.080000pt;}
.ws38{word-spacing:2.112000pt;}
.ws97{word-spacing:2.170667pt;}
.ws4d{word-spacing:2.229333pt;}
.wsb5{word-spacing:2.261333pt;}
.ws2f{word-spacing:2.288000pt;}
.ws112{word-spacing:2.322203pt;}
.ws116{word-spacing:2.346667pt;}
.wsdf{word-spacing:2.400000pt;}
.ws98{word-spacing:2.405333pt;}
.wsaf{word-spacing:2.432000pt;}
.wsb3{word-spacing:2.464000pt;}
.wscc{word-spacing:2.506667pt;}
.ws10d{word-spacing:2.517333pt;}
.ws6c{word-spacing:2.522667pt;}
.ws8d{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.581333pt;}
.ws9a{word-spacing:2.640000pt;}
.wsf9{word-spacing:2.666667pt;}
.wsa{word-spacing:2.698667pt;}
.ws22{word-spacing:2.757333pt;}
.ws83{word-spacing:2.816000pt;}
.ws51{word-spacing:2.874667pt;}
.ws55{word-spacing:2.933333pt;}
.ws28{word-spacing:2.992000pt;}
.ws84{word-spacing:3.050667pt;}
.wsb6{word-spacing:3.109333pt;}
.ws63{word-spacing:3.168000pt;}
.ws8c{word-spacing:3.226667pt;}
.ws90{word-spacing:3.285333pt;}
.ws108{word-spacing:3.328000pt;}
.ws107{word-spacing:3.370667pt;}
.wsb7{word-spacing:3.402667pt;}
.ws11c{word-spacing:3.456000pt;}
.wsf{word-spacing:3.461333pt;}
.wsd2{word-spacing:3.466667pt;}
.ws77{word-spacing:3.520000pt;}
.ws59{word-spacing:3.541333pt;}
.ws56{word-spacing:3.578667pt;}
.wsf0{word-spacing:3.626667pt;}
.ws8a{word-spacing:3.637333pt;}
.ws11e{word-spacing:3.669333pt;}
.ws92{word-spacing:3.696000pt;}
.wsa1{word-spacing:3.754667pt;}
.wsf4{word-spacing:3.786667pt;}
.ws8e{word-spacing:3.797333pt;}
.ws9d{word-spacing:3.872000pt;}
.wsd1{word-spacing:3.893333pt;}
.ws6f{word-spacing:3.930667pt;}
.wsd6{word-spacing:3.946667pt;}
.ws9{word-spacing:3.989333pt;}
.ws82{word-spacing:4.048000pt;}
.ws7d{word-spacing:4.106667pt;}
.ws95{word-spacing:4.138667pt;}
.ws7c{word-spacing:4.165333pt;}
.ws2a{word-spacing:4.224000pt;}
.ws11{word-spacing:4.282667pt;}
.ws71{word-spacing:4.341333pt;}
.wsd{word-spacing:4.400000pt;}
.ws58{word-spacing:4.693333pt;}
.wsa8{word-spacing:4.752000pt;}
.wsa7{word-spacing:4.928000pt;}
.ws10a{word-spacing:5.162667pt;}
.ws101{word-spacing:5.514667pt;}
.wsae{word-spacing:5.589333pt;}
.wsb1{word-spacing:7.424000pt;}
._0{margin-left:-2182.677867pt;}
._1a{margin-left:-15.028288pt;}
._18{margin-left:-11.625600pt;}
._16{margin-left:-10.453333pt;}
._17{margin-left:-8.789333pt;}
._e{margin-left:-6.186667pt;}
._f{margin-left:-5.142400pt;}
._4{margin-left:-4.021333pt;}
._3{margin-left:-2.613333pt;}
._1{margin-left:-0.970667pt;}
._5{width:1.231467pt;}
._d{width:2.858667pt;}
._10{width:3.904000pt;}
._13{width:7.338667pt;}
._12{width:8.533333pt;}
._b{width:9.813333pt;}
._a{width:12.330667pt;}
._15{width:13.621333pt;}
._2{width:28.373333pt;}
._11{width:54.442667pt;}
._14{width:56.378667pt;}
._8{width:57.728000pt;}
._9{width:59.312000pt;}
._6{width:60.426667pt;}
._7{width:62.069333pt;}
._c{width:63.301333pt;}
._26{width:557.482672pt;}
._22{width:676.375824pt;}
._1b{width:690.499856pt;}
._1c{width:700.249563pt;}
._19{width:736.546757pt;}
._23{width:740.440101pt;}
._1e{width:756.454203pt;}
._1d{width:758.522773pt;}
._20{width:769.694245pt;}
._24{width:773.200709pt;}
._21{width:787.334283pt;}
._1f{width:796.460533pt;}
._25{width:866.173488pt;}
.fsa{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs1{font-size:37.333333pt;}
.fsc{font-size:39.893333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fse{font-size:100.965333pt;}
.fsd{font-size:151.413333pt;}
.fsb{font-size:250.666667pt;}
.y0{bottom:0.000000pt;}
.y215{bottom:87.643067pt;}
.y214{bottom:91.643067pt;}
.y1{bottom:102.047200pt;}
.y213{bottom:125.868800pt;}
.y239{bottom:135.417333pt;}
.y238{bottom:150.750667pt;}
.y237{bottom:154.750667pt;}
.y212{bottom:160.320133pt;}
.y211{bottom:175.653467pt;}
.y236{bottom:188.976400pt;}
.y210{bottom:190.986800pt;}
.y20f{bottom:194.986800pt;}
.y9e{bottom:204.083333pt;}
.y22{bottom:204.094667pt;}
.ydd{bottom:204.094800pt;}
.y83{bottom:204.094933pt;}
.y6a{bottom:204.095067pt;}
.yb1{bottom:204.095200pt;}
.y11a{bottom:204.095467pt;}
.y13f{bottom:204.095600pt;}
.y235{bottom:204.309733pt;}
.y233{bottom:208.309733pt;}
.y151{bottom:216.094667pt;}
.ydc{bottom:216.094800pt;}
.y82{bottom:216.094933pt;}
.y69{bottom:216.095067pt;}
.yb0{bottom:216.095200pt;}
.y119{bottom:216.095467pt;}
.y13e{bottom:216.095600pt;}
.y234{bottom:219.643067pt;}
.y9d{bottom:222.226000pt;}
.ye2{bottom:228.094800pt;}
.y81{bottom:228.094933pt;}
.y68{bottom:228.095067pt;}
.yaf{bottom:228.095200pt;}
.y118{bottom:228.095467pt;}
.y13d{bottom:228.095600pt;}
.y20e{bottom:229.212667pt;}
.y1b0{bottom:236.921867pt;}
.y1d7{bottom:236.976400pt;}
.y184{bottom:238.866267pt;}
.y80{bottom:240.094933pt;}
.y67{bottom:240.095067pt;}
.yae{bottom:240.095200pt;}
.y117{bottom:240.095467pt;}
.y13c{bottom:240.095600pt;}
.y9c{bottom:240.368667pt;}
.y232{bottom:242.540800pt;}
.y20d{bottom:244.546000pt;}
.y20c{bottom:248.546000pt;}
.y7f{bottom:252.094933pt;}
.y66{bottom:252.095067pt;}
.yad{bottom:252.095200pt;}
.y116{bottom:252.095467pt;}
.y13b{bottom:252.095600pt;}
.y1af{bottom:253.935200pt;}
.y1d6{bottom:253.984267pt;}
.y183{bottom:255.874133pt;}
.y231{bottom:257.868800pt;}
.y9b{bottom:258.511333pt;}
.y21{bottom:258.518800pt;}
.y4c{bottom:258.519733pt;}
.y22f{bottom:261.868800pt;}
.y65{bottom:264.095067pt;}
.yac{bottom:264.095200pt;}
.y115{bottom:264.095467pt;}
.y13a{bottom:264.095600pt;}
.y1ae{bottom:270.948533pt;}
.y1d5{bottom:270.992133pt;}
.y182{bottom:272.876533pt;}
.y230{bottom:273.202133pt;}
.y12e{bottom:276.095067pt;}
.y102{bottom:276.095200pt;}
.y114{bottom:276.095467pt;}
.y139{bottom:276.095600pt;}
.ydb{bottom:276.652133pt;}
.y9a{bottom:276.654000pt;}
.y150{bottom:276.655867pt;}
.y158{bottom:276.657733pt;}
.y145{bottom:276.658667pt;}
.y4b{bottom:276.659600pt;}
.y153{bottom:276.660533pt;}
.y20{bottom:276.661467pt;}
.y20b{bottom:282.771600pt;}
.y1ad{bottom:287.961867pt;}
.y1d4{bottom:288.000133pt;}
.y12d{bottom:288.095067pt;}
.y113{bottom:288.095467pt;}
.y138{bottom:288.095600pt;}
.y181{bottom:289.889867pt;}
.yda{bottom:294.794800pt;}
.y99{bottom:294.796667pt;}
.y14f{bottom:294.798533pt;}
.y157{bottom:294.800400pt;}
.y144{bottom:294.801333pt;}
.y4a{bottom:294.802267pt;}
.y1f{bottom:294.803200pt;}
.y22e{bottom:296.094533pt;}
.y20a{bottom:298.104933pt;}
.y112{bottom:300.095467pt;}
.y137{bottom:300.095600pt;}
.y1ac{bottom:304.975200pt;}
.y1d3{bottom:305.007867pt;}
.y180{bottom:306.897733pt;}
.y111{bottom:312.095467pt;}
.y136{bottom:312.095600pt;}
.y120{bottom:312.935600pt;}
.yd9{bottom:312.937467pt;}
.y98{bottom:312.939333pt;}
.y64{bottom:312.941200pt;}
.y1e{bottom:312.943067pt;}
.y107{bottom:312.944000pt;}
.y49{bottom:312.944933pt;}
.y209{bottom:313.443600pt;}
.y208{bottom:317.438267pt;}
.y1ab{bottom:321.988533pt;}
.y1d2{bottom:321.994000pt;}
.y17f{bottom:323.900133pt;}
.y110{bottom:324.095467pt;}
.y135{bottom:324.095600pt;}
.y22d{bottom:330.546000pt;}
.y11f{bottom:331.078267pt;}
.yd8{bottom:331.080133pt;}
.y97{bottom:331.082000pt;}
.y63{bottom:331.083867pt;}
.y1d{bottom:331.085733pt;}
.y48{bottom:331.086667pt;}
.y10f{bottom:336.095467pt;}
.y134{bottom:336.095600pt;}
.y1aa{bottom:339.001867pt;}
.y1d1{bottom:339.007333pt;}
.y17e{bottom:340.913467pt;}
.y22c{bottom:345.879333pt;}
.y133{bottom:348.095600pt;}
.yca{bottom:349.220933pt;}
.y47{bottom:349.222800pt;}
.y96{bottom:349.224667pt;}
.y156{bottom:349.225600pt;}
.y62{bottom:349.226533pt;}
.y1c{bottom:349.228400pt;}
.y207{bottom:351.685333pt;}
.y1a9{bottom:356.015200pt;}
.y1d0{bottom:356.020667pt;}
.y17d{bottom:357.921333pt;}
.y22b{bottom:361.212667pt;}
.y22a{bottom:365.212667pt;}
.y206{bottom:367.013333pt;}
.yc9{bottom:367.363600pt;}
.y46{bottom:367.365467pt;}
.y95{bottom:367.367333pt;}
.y155{bottom:367.368267pt;}
.y61{bottom:367.369200pt;}
.y1b{bottom:367.370133pt;}
.y1a8{bottom:373.028533pt;}
.y1cf{bottom:373.034000pt;}
.y17c{bottom:374.901867pt;}
.y205{bottom:382.341333pt;}
.yc8{bottom:385.506267pt;}
.y10e{bottom:385.507200pt;}
.y45{bottom:385.508133pt;}
.y94{bottom:385.510000pt;}
.yab{bottom:385.510933pt;}
.y60{bottom:385.511867pt;}
.yf3{bottom:385.520267pt;}
.y1a7{bottom:390.041867pt;}
.y1ce{bottom:390.047333pt;}
.y17b{bottom:391.915200pt;}
.y204{bottom:397.669333pt;}
.y229{bottom:399.438267pt;}
.y203{bottom:401.664000pt;}
.yc7{bottom:403.648933pt;}
.y10d{bottom:403.649867pt;}
.y44{bottom:403.650800pt;}
.y93{bottom:403.652667pt;}
.y1a{bottom:403.653600pt;}
.y1a6{bottom:407.055200pt;}
.y12c{bottom:408.537600pt;}
.y17a{bottom:408.928533pt;}
.y1cd{bottom:411.495200pt;}
.y228{bottom:418.771600pt;}
.y7e{bottom:421.783200pt;}
.yc6{bottom:421.791600pt;}
.y10c{bottom:421.792533pt;}
.y43{bottom:421.793467pt;}
.y5f{bottom:421.794400pt;}
.y19{bottom:421.795333pt;}
.y1a5{bottom:424.063067pt;}
.y179{bottom:425.941867pt;}
.y101{bottom:426.679333pt;}
.y202{bottom:435.900400pt;}
.y7d{bottom:439.925867pt;}
.y100{bottom:439.929600pt;}
.y5e{bottom:439.933333pt;}
.yc5{bottom:439.934267pt;}
.y10b{bottom:439.935200pt;}
.y42{bottom:439.936133pt;}
.y92{bottom:439.937067pt;}
.y1a4{bottom:441.070933pt;}
.y178{bottom:442.955200pt;}
.y201{bottom:451.228400pt;}
.y227{bottom:453.233733pt;}
.y1cc{bottom:458.007867pt;}
.y7c{bottom:458.068533pt;}
.y132{bottom:458.071333pt;}
.yff{bottom:458.072267pt;}
.yaa{bottom:458.074133pt;}
.y5d{bottom:458.076000pt;}
.yc4{bottom:458.076933pt;}
.y18{bottom:458.077867pt;}
.y41{bottom:458.078800pt;}
.y177{bottom:459.968533pt;}
.y200{bottom:466.556400pt;}
.y226{bottom:468.561733pt;}
.y225{bottom:472.556400pt;}
.y1cb{bottom:475.021200pt;}
.y1a3{bottom:475.086667pt;}
.y7b{bottom:476.211200pt;}
.y12b{bottom:476.214000pt;}
.yfe{bottom:476.214933pt;}
.y10a{bottom:476.215867pt;}
.ya9{bottom:476.216800pt;}
.y5c{bottom:476.218667pt;}
.yc3{bottom:476.219600pt;}
.y17{bottom:476.220533pt;}
.y176{bottom:476.976400pt;}
.y1ff{bottom:481.889733pt;}
.y1fe{bottom:485.889733pt;}
.y1ca{bottom:492.034533pt;}
.y1a2{bottom:492.094533pt;}
.y175{bottom:493.951600pt;}
.y14e{bottom:494.342667pt;}
.y7a{bottom:494.353867pt;}
.y12a{bottom:494.356667pt;}
.yfd{bottom:494.357600pt;}
.y106{bottom:494.358533pt;}
.ya8{bottom:494.359467pt;}
.y91{bottom:494.360400pt;}
.y5b{bottom:494.361333pt;}
.y16{bottom:494.362267pt;}
.y40{bottom:494.370667pt;}
.y224{bottom:506.782133pt;}
.y1c9{bottom:509.047867pt;}
.y1a1{bottom:509.102400pt;}
.y174{bottom:510.964933pt;}
.y14d{bottom:512.485333pt;}
.y79{bottom:512.496533pt;}
.y129{bottom:512.499333pt;}
.yfc{bottom:512.500267pt;}
.y105{bottom:512.501200pt;}
.y15{bottom:512.502133pt;}
.y90{bottom:512.503067pt;}
.y3f{bottom:512.504000pt;}
.yc2{bottom:517.388000pt;}
.y1fd{bottom:520.115467pt;}
.y223{bottom:522.115467pt;}
.y1c8{bottom:526.061200pt;}
.y1a0{bottom:526.110267pt;}
.y173{bottom:527.978267pt;}
.y14c{bottom:530.628000pt;}
.y78{bottom:530.639200pt;}
.yc1{bottom:530.642000pt;}
.yfb{bottom:530.642933pt;}
.y104{bottom:530.643867pt;}
.y14{bottom:530.644800pt;}
.y5a{bottom:530.645733pt;}
.y1fc{bottom:535.448800pt;}
.y11e{bottom:535.529733pt;}
.y222{bottom:537.454133pt;}
.y221{bottom:541.448800pt;}
.y19f{bottom:543.014400pt;}
.y1c7{bottom:543.074533pt;}
.y172{bottom:544.991600pt;}
.y14b{bottom:548.770667pt;}
.yf2{bottom:548.779067pt;}
.y143{bottom:548.779200pt;}
.y77{bottom:548.781867pt;}
.yc0{bottom:548.784667pt;}
.ye1{bottom:548.785600pt;}
.y103{bottom:548.786533pt;}
.y13{bottom:548.787467pt;}
.y1fb{bottom:550.787467pt;}
.y1fa{bottom:554.782133pt;}
.y19e{bottom:560.027733pt;}
.y1c6{bottom:560.087867pt;}
.y171{bottom:562.004933pt;}
.y14a{bottom:566.913333pt;}
.yf1{bottom:566.921733pt;}
.y76{bottom:566.924533pt;}
.ybf{bottom:566.927333pt;}
.y59{bottom:566.928267pt;}
.y12{bottom:566.929200pt;}
.y154{bottom:571.813200pt;}
.y220{bottom:575.679867pt;}
.y19d{bottom:577.041067pt;}
.y1c5{bottom:577.101200pt;}
.y170{bottom:579.018267pt;}
.y149{bottom:585.056000pt;}
.yf0{bottom:585.064400pt;}
.y11{bottom:585.067200pt;}
.ybe{bottom:585.070000pt;}
.y3e{bottom:585.070933pt;}
.y1f9{bottom:589.013200pt;}
.y21f{bottom:591.007867pt;}
.y19c{bottom:594.054400pt;}
.y1c4{bottom:594.114533pt;}
.y16f{bottom:596.031600pt;}
.y148{bottom:603.198667pt;}
.yef{bottom:603.207067pt;}
.y152{bottom:603.208000pt;}
.y10{bottom:603.209867pt;}
.ya7{bottom:603.210800pt;}
.y3d{bottom:603.212667pt;}
.y1f8{bottom:604.341200pt;}
.y21e{bottom:606.341200pt;}
.y21d{bottom:610.341200pt;}
.y19b{bottom:611.067733pt;}
.y1c3{bottom:611.127867pt;}
.y16e{bottom:613.039467pt;}
.y1f7{bottom:619.674533pt;}
.ye0{bottom:621.341333pt;}
.y142{bottom:621.347867pt;}
.yee{bottom:621.349733pt;}
.y3c{bottom:621.350667pt;}
.yf{bottom:621.352533pt;}
.y58{bottom:621.353467pt;}
.ybd{bottom:621.354400pt;}
.y1f6{bottom:623.674533pt;}
.y19a{bottom:628.081067pt;}
.y1c2{bottom:628.141200pt;}
.y16d{bottom:630.047333pt;}
.yd7{bottom:639.482133pt;}
.ydf{bottom:639.484000pt;}
.y141{bottom:639.490533pt;}
.yfa{bottom:639.491467pt;}
.yed{bottom:639.492400pt;}
.y3b{bottom:639.493333pt;}
.ye{bottom:639.495200pt;}
.y57{bottom:639.496133pt;}
.y131{bottom:644.380133pt;}
.y21c{bottom:644.577600pt;}
.y199{bottom:645.094400pt;}
.y1c1{bottom:645.154533pt;}
.y16c{bottom:647.055200pt;}
.yd6{bottom:657.624800pt;}
.yde{bottom:657.626667pt;}
.y140{bottom:657.633200pt;}
.yf9{bottom:657.634133pt;}
.yec{bottom:657.635067pt;}
.y3a{bottom:657.636000pt;}
.yd{bottom:657.637867pt;}
.y1f5{bottom:657.905600pt;}
.y21b{bottom:659.905600pt;}
.y198{bottom:662.107733pt;}
.y1c0{bottom:662.167867pt;}
.y16b{bottom:663.986533pt;}
.y1f4{bottom:673.233600pt;}
.y21a{bottom:675.233600pt;}
.yd5{bottom:675.767467pt;}
.ybc{bottom:675.769333pt;}
.y56{bottom:675.774933pt;}
.ya6{bottom:675.775867pt;}
.yf8{bottom:675.776800pt;}
.yeb{bottom:675.777733pt;}
.y39{bottom:675.778667pt;}
.yc{bottom:675.779600pt;}
.y197{bottom:679.121067pt;}
.y1bf{bottom:679.181200pt;}
.y16a{bottom:680.999867pt;}
.y1f3{bottom:688.566933pt;}
.y219{bottom:690.566933pt;}
.y8f{bottom:693.909200pt;}
.yd4{bottom:693.910133pt;}
.ybb{bottom:693.912000pt;}
.y55{bottom:693.917600pt;}
.ya5{bottom:693.918533pt;}
.yf7{bottom:693.919467pt;}
.yea{bottom:693.920400pt;}
.y38{bottom:693.921333pt;}
.y218{bottom:694.566933pt;}
.y196{bottom:696.134400pt;}
.y1e6{bottom:696.145333pt;}
.y1be{bottom:696.189067pt;}
.y169{bottom:698.013200pt;}
.y1f2{bottom:703.900267pt;}
.y1f1{bottom:707.900267pt;}
.y8e{bottom:712.051867pt;}
.yd3{bottom:712.052800pt;}
.yba{bottom:712.054667pt;}
.y75{bottom:712.058400pt;}
.y54{bottom:712.060267pt;}
.ya4{bottom:712.061200pt;}
.yf6{bottom:712.062133pt;}
.y37{bottom:712.063067pt;}
.y195{bottom:713.147733pt;}
.y1e5{bottom:713.158667pt;}
.y1bd{bottom:713.196933pt;}
.y168{bottom:715.026533pt;}
.y217{bottom:728.792667pt;}
.y194{bottom:730.161067pt;}
.y1e4{bottom:730.172000pt;}
.y8d{bottom:730.194533pt;}
.yd2{bottom:730.195467pt;}
.y128{bottom:730.196400pt;}
.yb9{bottom:730.197333pt;}
.y74{bottom:730.201067pt;}
.yb{bottom:730.202533pt;}
.y53{bottom:730.202933pt;}
.ya3{bottom:730.203867pt;}
.y36{bottom:730.204800pt;}
.y167{bottom:732.039867pt;}
.y11d{bottom:735.088800pt;}
.y1f0{bottom:742.126000pt;}
.y216{bottom:744.126000pt;}
.y193{bottom:747.174400pt;}
.y1e3{bottom:747.185333pt;}
.y1bc{bottom:747.207200pt;}
.y8c{bottom:748.337200pt;}
.yd1{bottom:748.338133pt;}
.y127{bottom:748.339067pt;}
.yb8{bottom:748.340000pt;}
.y130{bottom:748.342800pt;}
.y73{bottom:748.343733pt;}
.y109{bottom:748.344667pt;}
.y52{bottom:748.345600pt;}
.ya{bottom:748.346533pt;}
.y166{bottom:749.053200pt;}
.y192{bottom:764.187733pt;}
.y1e2{bottom:764.198667pt;}
.y1bb{bottom:764.220533pt;}
.y165{bottom:766.066533pt;}
.y8b{bottom:766.479867pt;}
.yd0{bottom:766.480800pt;}
.y126{bottom:766.481733pt;}
.yb7{bottom:766.482667pt;}
.y12f{bottom:766.485467pt;}
.y72{bottom:766.486400pt;}
.y35{bottom:766.487333pt;}
.y51{bottom:766.488267pt;}
.y191{bottom:781.201067pt;}
.y1e1{bottom:781.212000pt;}
.y1ba{bottom:781.228400pt;}
.y164{bottom:783.079867pt;}
.ya2{bottom:784.621733pt;}
.y8a{bottom:784.622533pt;}
.ycf{bottom:784.623467pt;}
.y125{bottom:784.624400pt;}
.yb6{bottom:784.625333pt;}
.y34{bottom:784.628133pt;}
.y71{bottom:784.629067pt;}
.y9{bottom:784.630000pt;}
.y190{bottom:798.214400pt;}
.y1b9{bottom:798.219867pt;}
.y1e0{bottom:798.225333pt;}
.y163{bottom:800.093200pt;}
.y89{bottom:802.765200pt;}
.yce{bottom:802.766133pt;}
.y124{bottom:802.767067pt;}
.yb5{bottom:802.768000pt;}
.ye9{bottom:802.768933pt;}
.y11c{bottom:802.769867pt;}
.y33{bottom:802.770800pt;}
.y50{bottom:802.771733pt;}
.y108{bottom:807.655733pt;}
.y18f{bottom:815.227733pt;}
.y1b8{bottom:815.233200pt;}
.y1df{bottom:815.238667pt;}
.y162{bottom:817.106533pt;}
.y15c{bottom:820.905067pt;}
.yf5{bottom:820.906000pt;}
.y88{bottom:820.907867pt;}
.ycd{bottom:820.908800pt;}
.y123{bottom:820.909733pt;}
.yb4{bottom:820.910667pt;}
.ye8{bottom:820.911600pt;}
.y11b{bottom:820.912533pt;}
.y32{bottom:820.913467pt;}
.y8{bottom:828.189867pt;}
.y18e{bottom:832.241067pt;}
.y1b7{bottom:832.246533pt;}
.y1de{bottom:832.252000pt;}
.y161{bottom:834.119867pt;}
.y15b{bottom:839.047733pt;}
.yf4{bottom:839.048667pt;}
.y87{bottom:839.050533pt;}
.ycc{bottom:839.051467pt;}
.y122{bottom:839.052400pt;}
.yb3{bottom:839.053333pt;}
.ye7{bottom:839.054267pt;}
.y31{bottom:839.055200pt;}
.y1ec{bottom:843.534000pt;}
.y1ef{bottom:845.192347pt;}
.y7{bottom:848.189867pt;}
.y18d{bottom:849.254400pt;}
.y1b6{bottom:849.259867pt;}
.y160{bottom:851.133200pt;}
.y15a{bottom:857.190400pt;}
.y30{bottom:857.191333pt;}
.y86{bottom:857.193200pt;}
.ya1{bottom:857.194133pt;}
.y121{bottom:857.195067pt;}
.y70{bottom:857.196000pt;}
.y4f{bottom:857.196933pt;}
.y1eb{bottom:858.198000pt;}
.y18c{bottom:866.267733pt;}
.y15f{bottom:868.146533pt;}
.y6{bottom:868.189867pt;}
.y159{bottom:875.333067pt;}
.y2f{bottom:875.334000pt;}
.y85{bottom:875.335867pt;}
.ya0{bottom:875.336800pt;}
.y4e{bottom:875.337733pt;}
.y6f{bottom:875.338667pt;}
.y1ee{bottom:877.670507pt;}
.y1b5{bottom:883.264800pt;}
.y18b{bottom:883.275600pt;}
.y15e{bottom:885.159867pt;}
.ye6{bottom:893.475733pt;}
.y2e{bottom:893.476667pt;}
.y84{bottom:893.478533pt;}
.y9f{bottom:893.479467pt;}
.y29{bottom:893.480400pt;}
.y1dd{bottom:900.250667pt;}
.y1b4{bottom:900.278133pt;}
.y18a{bottom:900.283467pt;}
.y15d{bottom:902.173200pt;}
.y1ed{bottom:910.148667pt;}
.ye5{bottom:911.618400pt;}
.y2d{bottom:911.619333pt;}
.y147{bottom:911.620267pt;}
.y6e{bottom:911.621200pt;}
.y28{bottom:911.622133pt;}
.y1dc{bottom:917.264000pt;}
.y189{bottom:917.291467pt;}
.y5{bottom:924.472533pt;}
.y4d{bottom:929.760000pt;}
.ye4{bottom:929.761067pt;}
.y2c{bottom:929.762000pt;}
.y146{bottom:929.762933pt;}
.y6d{bottom:929.763867pt;}
.y1db{bottom:934.277333pt;}
.y188{bottom:934.288400pt;}
.y1b3{bottom:934.299200pt;}
.y27{bottom:947.902667pt;}
.ye3{bottom:947.903733pt;}
.y2b{bottom:947.904667pt;}
.y6c{bottom:947.905600pt;}
.y4{bottom:948.472533pt;}
.y1e7{bottom:949.414000pt;}
.y1da{bottom:951.290667pt;}
.y1b2{bottom:951.296267pt;}
.y187{bottom:951.301733pt;}
.y26{bottom:966.045333pt;}
.yb2{bottom:966.046400pt;}
.y2a{bottom:966.047333pt;}
.y1d9{bottom:968.304000pt;}
.y1b1{bottom:968.309600pt;}
.y186{bottom:968.315067pt;}
.y3{bottom:972.472533pt;}
.y25{bottom:984.188000pt;}
.y6b{bottom:984.189067pt;}
.ycb{bottom:984.197333pt;}
.y1d8{bottom:985.317333pt;}
.y185{bottom:985.322933pt;}
.y2{bottom:996.472533pt;}
.y24{bottom:1002.330667pt;}
.y1ea{bottom:1005.866587pt;}
.y1e9{bottom:1017.096560pt;}
.y1e8{bottom:1028.326533pt;}
.y23{bottom:1067.996133pt;}
.h18{height:26.771360pt;}
.h10{height:29.448496pt;}
.h22{height:31.402667pt;}
.ha{height:32.032000pt;}
.h1c{height:34.348160pt;}
.h1b{height:34.427947pt;}
.h9{height:36.608000pt;}
.h17{height:39.306667pt;}
.h6{height:41.184000pt;}
.h1d{height:41.424000pt;}
.h16{height:45.920000pt;}
.h1f{height:46.026667pt;}
.h19{height:46.051200pt;}
.h5{height:50.336000pt;}
.h8{height:50.512000pt;}
.he{height:50.515733pt;}
.hb{height:50.519467pt;}
.hf{height:50.523200pt;}
.hc{height:50.526933pt;}
.h14{height:50.527467pt;}
.hd{height:50.530667pt;}
.h13{height:50.538133pt;}
.h15{height:50.541867pt;}
.h12{height:50.545600pt;}
.h11{height:50.568000pt;}
.h2{height:55.232000pt;}
.h7{height:57.666667pt;}
.h4{height:69.040000pt;}
.h21{height:75.925931pt;}
.h20{height:81.941333pt;}
.h3{height:82.848000pt;}
.h1e{height:113.862827pt;}
.h1a{height:188.501333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:48.544533pt;}
.x19{left:49.606267pt;}
.x1e{left:81.634000pt;}
.x1b{left:83.138267pt;}
.x1c{left:85.904800pt;}
.x1f{left:87.820533pt;}
.x22{left:92.313333pt;}
.x23{left:95.690533pt;}
.x21{left:97.642267pt;}
.x20{left:99.095733pt;}
.x2{left:148.986667pt;}
.x15{left:161.034667pt;}
.x16{left:162.404000pt;}
.x3{left:166.960267pt;}
.x4{left:180.052400pt;}
.x11{left:201.922267pt;}
.x12{left:208.770000pt;}
.x9{left:321.720667pt;}
.x7{left:327.394000pt;}
.xa{left:330.316933pt;}
.x8{left:334.504133pt;}
.x1a{left:409.301867pt;}
.x17{left:410.855600pt;}
.x18{left:412.188933pt;}
.x26{left:458.045333pt;}
.xf{left:459.754133pt;}
.x25{left:462.947067pt;}
.x24{left:464.807333pt;}
.x10{left:468.190267pt;}
.xb{left:540.562933pt;}
.x5{left:544.587333pt;}
.xc{left:548.293867pt;}
.xd{left:558.788533pt;}
.xe{left:566.544133pt;}
.x13{left:633.320533pt;}
.x14{left:641.510267pt;}
.x6{left:670.552400pt;}
.x1{left:671.592400pt;}
.x27{left:740.528667pt;}
}




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