
    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_05b9faa1f55ed03ac93d0ad5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_acc28a29be960508fe980238.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_a46dc2f01502e227143e94e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_1837c709655ffe6553df1029.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_f633b9ad4f006cd0655de555.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_38b6d12dde9d97523e223b7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_0e89965fadd8bbdb6eb4642f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_104699231b918254e71e9839.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_5e5ce92ac8261c8c0e92b0a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_aa9328ef2aff30d80094a481.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2e6f07c9d2fd22fbacf63887.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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:fff;src:url('chunks/assets/font_fb07debdc2d00b823a332450.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_5e5ce92ac8261c8c0e92b0a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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:ff11;src:url('chunks/assets/font_0d7c487746315db85bea9dc0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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:ff12;src:url('chunks/assets/font_3bb809ab20d5beb920674d4b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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:ff13;src:url('chunks/assets/font_fb07debdc2d00b823a332450.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_1f145d8efe22026bf5d2a0cd.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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:ff15;src:url('chunks/assets/font_f50b3e216eead9915abcde1c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.003906;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:ff16;src:url('chunks/assets/font_adf23e38213e1214fde6bc38.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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:ff17;src:url('chunks/assets/font_fb07debdc2d00b823a332450.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;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:ff18;src:url('chunks/assets/font_cebf50155ffb01c46f320433.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.988281;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:ff19;src:url('chunks/assets/font_3ebd0777db5e508f601b5ce7.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.909180;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:ff1a;src:url('chunks/assets/font_5e5ce92ac8261c8c0e92b0a2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000488;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:ff1b;src:url('chunks/assets/font_33c7d8997cc5146edefd65b2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.003906;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:ff1c;src:url('chunks/assets/font_3adc945d9ad9dba1818f63f1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.206055;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:ff1d;src:url('chunks/assets/font_fb07debdc2d00b823a332450.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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:ff1e;src:url('chunks/assets/font_25a54a4c52b6bd767b05aee5.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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:ff1f;src:url('chunks/assets/font_a43e37ced002127c79472641.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.003906;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:ff20;src:url('chunks/assets/font_7340b8f0d3c0a560058d5c09.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.206055;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:ff21;src:url('chunks/assets/font_fb07debdc2d00b823a332450.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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:ff22;src:url('chunks/assets/font_1f591a309883e64483b47a56.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.933000;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;}
.m3{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);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.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);}
.m23{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m26{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v3{vertical-align:-10.944000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.123600px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls4d{letter-spacing:-0.334800px;}
.ls32{letter-spacing:-0.311364px;}
.ls75{letter-spacing:-0.287280px;}
.ls74{letter-spacing:-0.271890px;}
.ls66{letter-spacing:-0.108517px;}
.ls55{letter-spacing:-0.102204px;}
.ls73{letter-spacing:-0.086423px;}
.ls4c{letter-spacing:-0.086184px;}
.ls1f{letter-spacing:-0.081875px;}
.ls30{letter-spacing:-0.080151px;}
.ls71{letter-spacing:-0.068229px;}
.ls5c{letter-spacing:-0.066132px;}
.ls4a{letter-spacing:-0.062244px;}
.ls1d{letter-spacing:-0.059132px;}
.ls2e{letter-spacing:-0.057887px;}
.ls51{letter-spacing:-0.048096px;}
.ls68{letter-spacing:-0.045691px;}
.ls4f{letter-spacing:-0.037800px;}
.ls53{letter-spacing:-0.036072px;}
.ls65{letter-spacing:-0.034268px;}
.ls5a{letter-spacing:-0.032400px;}
.ls54{letter-spacing:-0.030060px;}
.ls20{letter-spacing:-0.025650px;}
.ls58{letter-spacing:-0.024048px;}
.ls67{letter-spacing:-0.022846px;}
.ls4e{letter-spacing:-0.021600px;}
.ls31{letter-spacing:-0.015066px;}
.ls56{letter-spacing:-0.012024px;}
.ls6a{letter-spacing:-0.011423px;}
.ls59{letter-spacing:-0.010800px;}
.ls33{letter-spacing:-0.010044px;}
.ls50{letter-spacing:-0.006012px;}
.ls5b{letter-spacing:-0.005400px;}
.ls34{letter-spacing:-0.005022px;}
.lsd{letter-spacing:0.000000px;}
.ls96{letter-spacing:0.000088px;}
.lsf{letter-spacing:0.000583px;}
.ls79{letter-spacing:0.000608px;}
.lsa0{letter-spacing:0.000800px;}
.ls7d{letter-spacing:0.000845px;}
.lsa2{letter-spacing:0.001155px;}
.ls7b{letter-spacing:0.001584px;}
.ls0{letter-spacing:0.002400px;}
.ls81{letter-spacing:0.002458px;}
.lsa1{letter-spacing:0.002544px;}
.ls7c{letter-spacing:0.002841px;}
.ls7e{letter-spacing:0.002898px;}
.ls5{letter-spacing:0.004200px;}
.ls87{letter-spacing:0.004800px;}
.ls2b{letter-spacing:0.005022px;}
.ls1b{letter-spacing:0.005130px;}
.ls3d{letter-spacing:0.005400px;}
.ls5f{letter-spacing:0.005711px;}
.ls3a{letter-spacing:0.006903px;}
.ls3c{letter-spacing:0.007503px;}
.ls21{letter-spacing:0.010260px;}
.ls39{letter-spacing:0.010800px;}
.ls24{letter-spacing:0.015066px;}
.ls1a{letter-spacing:0.015390px;}
.ls3e{letter-spacing:0.016200px;}
.ls27{letter-spacing:0.020088px;}
.ls13{letter-spacing:0.020520px;}
.ls38{letter-spacing:0.021600px;}
.ls42{letter-spacing:0.024048px;}
.ls2a{letter-spacing:0.025110px;}
.ls17{letter-spacing:0.025650px;}
.ls3f{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030780px;}
.ls5e{letter-spacing:0.034268px;}
.ls23{letter-spacing:0.035154px;}
.ls12{letter-spacing:0.035910px;}
.ls40{letter-spacing:0.037800px;}
.ls5d{letter-spacing:0.039980px;}
.ls25{letter-spacing:0.040176px;}
.ls1c{letter-spacing:0.041040px;}
.ls45{letter-spacing:0.042084px;}
.ls28{letter-spacing:0.045198px;}
.ls19{letter-spacing:0.046170px;}
.ls43{letter-spacing:0.048096px;}
.ls29{letter-spacing:0.050220px;}
.ls14{letter-spacing:0.051300px;}
.ls2d{letter-spacing:0.055242px;}
.ls60{letter-spacing:0.057114px;}
.ls46{letter-spacing:0.060120px;}
.ls2c{letter-spacing:0.060264px;}
.ls6c{letter-spacing:0.061560px;}
.ls69{letter-spacing:0.062825px;}
.ls52{letter-spacing:0.066132px;}
.ls6d{letter-spacing:0.066690px;}
.ls61{letter-spacing:0.068537px;}
.ls47{letter-spacing:0.072144px;}
.ls64{letter-spacing:0.074248px;}
.ls3b{letter-spacing:0.075600px;}
.ls44{letter-spacing:0.084168px;}
.ls57{letter-spacing:0.090180px;}
.ls41{letter-spacing:0.096192px;}
.ls6e{letter-spacing:0.102600px;}
.ls26{letter-spacing:0.115506px;}
.ls18{letter-spacing:0.117990px;}
.ls6b{letter-spacing:0.122812px;}
.ls22{letter-spacing:0.124680px;}
.ls11{letter-spacing:0.127361px;}
.ls37{letter-spacing:0.134064px;}
.ls48{letter-spacing:0.135000px;}
.ls72{letter-spacing:0.172847px;}
.ls2f{letter-spacing:0.178114px;}
.ls1e{letter-spacing:0.181944px;}
.ls4b{letter-spacing:0.191520px;}
.lse{letter-spacing:1.275394px;}
.lsb{letter-spacing:1.861130px;}
.ls49{letter-spacing:2.349000px;}
.ls35{letter-spacing:2.987263px;}
.ls80{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.ls9f{letter-spacing:2.994600px;}
.ls3{letter-spacing:2.998354px;}
.ls16{letter-spacing:3.257550px;}
.lsa6{letter-spacing:11.658563px;}
.lsc{letter-spacing:11.954850px;}
.ls94{letter-spacing:12.185094px;}
.ls93{letter-spacing:12.264686px;}
.ls9c{letter-spacing:12.613665px;}
.ls62{letter-spacing:12.774422px;}
.ls63{letter-spacing:12.778800px;}
.ls8d{letter-spacing:13.203341px;}
.ls8f{letter-spacing:13.215750px;}
.ls99{letter-spacing:13.240055px;}
.ls91{letter-spacing:13.266376px;}
.ls7f{letter-spacing:13.283508px;}
.lsab{letter-spacing:13.368672px;}
.ls85{letter-spacing:13.448400px;}
.ls70{letter-spacing:13.450800px;}
.ls84{letter-spacing:13.454400px;}
.ls9a{letter-spacing:13.460400px;}
.ls97{letter-spacing:13.463313px;}
.lsa5{letter-spacing:13.496183px;}
.ls9d{letter-spacing:13.496400px;}
.lsaa{letter-spacing:13.604945px;}
.ls8b{letter-spacing:13.647566px;}
.ls90{letter-spacing:13.660156px;}
.ls95{letter-spacing:13.693838px;}
.ls88{letter-spacing:13.715106px;}
.lsa8{letter-spacing:13.724357px;}
.lsa3{letter-spacing:13.758139px;}
.ls9b{letter-spacing:13.915106px;}
.ls6f{letter-spacing:14.094088px;}
.ls89{letter-spacing:14.191576px;}
.ls83{letter-spacing:14.503341px;}
.ls98{letter-spacing:14.556282px;}
.lsa7{letter-spacing:14.779812px;}
.ls8c{letter-spacing:14.897459px;}
.ls6{letter-spacing:14.939108px;}
.ls4{letter-spacing:14.943292px;}
.ls7{letter-spacing:14.944766px;}
.ls78{letter-spacing:14.966010px;}
.lsa9{letter-spacing:15.020988px;}
.ls76{letter-spacing:15.116645px;}
.ls8a{letter-spacing:15.120988px;}
.ls77{letter-spacing:15.122699px;}
.ls10{letter-spacing:15.663483px;}
.ls36{letter-spacing:16.439263px;}
.ls86{letter-spacing:17.068047px;}
.ls8e{letter-spacing:17.850400px;}
.lsa4{letter-spacing:17.862165px;}
.ls8{letter-spacing:17.935200px;}
.ls9e{letter-spacing:18.268047px;}
.ls92{letter-spacing:19.085694px;}
.lsac{letter-spacing:19.650400px;}
.ls7a{letter-spacing:25.912200px;}
.ls2{letter-spacing:57.415200px;}
.ls9{letter-spacing:70.236600px;}
.lsa{letter-spacing:72.353510px;}
.ls82{letter-spacing:259.008600px;}
.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;}
}
.wsab{word-spacing:-33.120000px;}
.ws2{word-spacing:-14.943900px;}
.ws7{word-spacing:-14.355754px;}
.wsad{word-spacing:-13.635000px;}
.wsa8{word-spacing:-13.575600px;}
.wsac{word-spacing:-13.521600px;}
.wsaa{word-spacing:-13.500000px;}
.wsa9{word-spacing:-13.478400px;}
.ws8{word-spacing:-13.449600px;}
.ws47{word-spacing:-12.825000px;}
.ws6e{word-spacing:-12.615264px;}
.ws6d{word-spacing:-12.555000px;}
.wsa7{word-spacing:-12.161520px;}
.ws1b{word-spacing:-11.955150px;}
.ws46{word-spacing:-11.553444px;}
.wsfa{word-spacing:-11.544347px;}
.ws132{word-spacing:-11.357400px;}
.ws6c{word-spacing:-11.310214px;}
.ws22{word-spacing:-3.048556px;}
.ws11d{word-spacing:-2.869229px;}
.ws150{word-spacing:-2.743718px;}
.ws9d{word-spacing:-2.689902px;}
.ws10{word-spacing:-2.570351px;}
.wsa4{word-spacing:-2.391024px;}
.ws1be{word-spacing:-2.313331px;}
.ws197{word-spacing:-2.259533px;}
.wsa0{word-spacing:-2.211697px;}
.ws13{word-spacing:-2.151922px;}
.ws4a{word-spacing:-2.098138px;}
.ws1d{word-spacing:-2.032370px;}
.ws9c{word-spacing:-1.972595px;}
.ws1a6{word-spacing:-1.936742px;}
.ws28{word-spacing:-1.912819px;}
.wsa{word-spacing:-1.908367px;}
.ws1ba{word-spacing:-1.882944px;}
.ws1a5{word-spacing:-1.829146px;}
.ws173{word-spacing:-1.775347px;}
.wsfe{word-spacing:-1.721549px;}
.ws114{word-spacing:-1.673717px;}
.ws18e{word-spacing:-1.667750px;}
.ws18c{word-spacing:-1.560154px;}
.ws127{word-spacing:-1.494390px;}
.ws171{word-spacing:-1.452557px;}
.ws1b9{word-spacing:-1.344960px;}
.ws9{word-spacing:-1.322630px;}
.ws11f{word-spacing:-1.315063px;}
.ws190{word-spacing:-1.291162px;}
.ws133{word-spacing:-1.255288px;}
.ws74{word-spacing:-1.200258px;}
.wsf{word-spacing:-1.195512px;}
.ws18d{word-spacing:-1.183565px;}
.ws75{word-spacing:-1.180170px;}
.ws11e{word-spacing:-1.135736px;}
.ws1a9{word-spacing:-1.129766px;}
.ws1e{word-spacing:-1.075961px;}
.ws116{word-spacing:-1.016185px;}
.ws131{word-spacing:-0.956410px;}
.ws142{word-spacing:-0.896634px;}
.ws73{word-spacing:-0.868806px;}
.wsea{word-spacing:-0.860774px;}
.ws2d{word-spacing:-0.836858px;}
.wse9{word-spacing:-0.806976px;}
.ws137{word-spacing:-0.777083px;}
.wse8{word-spacing:-0.753178px;}
.ws26{word-spacing:-0.717307px;}
.wse5{word-spacing:-0.699379px;}
.ws112{word-spacing:-0.657532px;}
.ws2c{word-spacing:-0.597756px;}
.wsf0{word-spacing:-0.593986px;}
.ws6b{word-spacing:-0.537984px;}
.ws42{word-spacing:-0.537980px;}
.ws13a{word-spacing:-0.478205px;}
.ws181{word-spacing:-0.430387px;}
.ws3d{word-spacing:-0.418429px;}
.ws3a{word-spacing:-0.358654px;}
.wsd5{word-spacing:-0.324648px;}
.ws169{word-spacing:-0.322790px;}
.wsc4{word-spacing:-0.312624px;}
.ws25{word-spacing:-0.298878px;}
.ws4d{word-spacing:-0.268992px;}
.ws21{word-spacing:-0.239102px;}
.wsc5{word-spacing:-0.234468px;}
.wsb1{word-spacing:-0.220248px;}
.ws51{word-spacing:-0.215194px;}
.ws53{word-spacing:-0.209236px;}
.ws72{word-spacing:-0.204831px;}
.ws14{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.161395px;}
.wsee{word-spacing:-0.142785px;}
.ws20{word-spacing:-0.119551px;}
.ws4c{word-spacing:-0.107597px;}
.ws1{word-spacing:-0.059776px;}
.wsae{word-spacing:-0.053798px;}
.wsb0{word-spacing:-0.023940px;}
.ws52{word-spacing:-0.022743px;}
.ws71{word-spacing:-0.022264px;}
.wsff{word-spacing:-0.018194px;}
.ws1ac{word-spacing:-0.006816px;}
.ws180{word-spacing:-0.006182px;}
.ws1c5{word-spacing:-0.005933px;}
.ws1a7{word-spacing:-0.005338px;}
.ws16c{word-spacing:-0.004512px;}
.ws194{word-spacing:-0.004282px;}
.ws1bd{word-spacing:-0.003859px;}
.ws6{word-spacing:-0.003524px;}
.ws179{word-spacing:-0.003466px;}
.ws164{word-spacing:-0.002621px;}
.ws175{word-spacing:-0.002602px;}
.ws167{word-spacing:-0.002304px;}
.ws3{word-spacing:-0.002066px;}
.ws4{word-spacing:-0.001750px;}
.ws1ab{word-spacing:-0.001200px;}
.ws1c0{word-spacing:-0.000557px;}
.ws0{word-spacing:0.000000px;}
.ws154{word-spacing:0.000019px;}
.wsf9{word-spacing:0.022846px;}
.ws110{word-spacing:0.023789px;}
.wsca{word-spacing:0.024048px;}
.wsc2{word-spacing:0.030060px;}
.ws1ad{word-spacing:0.035933px;}
.wscb{word-spacing:0.048096px;}
.ws49{word-spacing:0.053798px;}
.ws18{word-spacing:0.059776px;}
.wsc0{word-spacing:0.096192px;}
.wsbe{word-spacing:0.102204px;}
.ws152{word-spacing:0.107597px;}
.wsef{word-spacing:0.114228px;}
.ws1f{word-spacing:0.119551px;}
.ws89{word-spacing:0.130572px;}
.ws10c{word-spacing:0.143640px;}
.wsc1{word-spacing:0.144288px;}
.wsbd{word-spacing:0.145800px;}
.wsd7{word-spacing:0.151200px;}
.wsbc{word-spacing:0.156600px;}
.ws65{word-spacing:0.161395px;}
.wse0{word-spacing:0.162324px;}
.wsdf{word-spacing:0.167400px;}
.ws10b{word-spacing:0.169290px;}
.ws88{word-spacing:0.175770px;}
.wse{word-spacing:0.179327px;}
.wsd8{word-spacing:0.194400px;}
.ws6f{word-spacing:0.215194px;}
.ws11{word-spacing:0.239102px;}
.ws4b{word-spacing:0.268992px;}
.ws36{word-spacing:0.298878px;}
.ws48{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.ws14f{word-spacing:0.376589px;}
.ws10d{word-spacing:0.456570px;}
.ws2a{word-spacing:0.478205px;}
.ws70{word-spacing:0.484186px;}
.ws62{word-spacing:0.487350px;}
.ws61{word-spacing:0.518130px;}
.ws92{word-spacing:0.537980px;}
.ws8e{word-spacing:0.537984px;}
.ws8f{word-spacing:0.591782px;}
.ws168{word-spacing:0.645581px;}
.ws1b0{word-spacing:0.699379px;}
.ws99{word-spacing:0.777083px;}
.ws15e{word-spacing:0.806976px;}
.ws129{word-spacing:0.836858px;}
.wsd6{word-spacing:0.869400px;}
.wsb4{word-spacing:0.885600px;}
.wsb5{word-spacing:0.896400px;}
.ws11b{word-spacing:0.896634px;}
.ws34{word-spacing:0.956410px;}
.ws1c2{word-spacing:1.022170px;}
.wsf3{word-spacing:1.056609px;}
.ws93{word-spacing:1.075961px;}
.wse4{word-spacing:1.075968px;}
.ws196{word-spacing:1.129766px;}
.ws12{word-spacing:1.135736px;}
.wsc8{word-spacing:1.136268px;}
.ws1c7{word-spacing:1.183565px;}
.ws120{word-spacing:1.195512px;}
.ws178{word-spacing:1.291162px;}
.wsfc{word-spacing:1.344960px;}
.ws10e{word-spacing:1.374839px;}
.ws94{word-spacing:1.434614px;}
.ws17d{word-spacing:1.452557px;}
.wsed{word-spacing:1.496387px;}
.ws79{word-spacing:1.511622px;}
.wse1{word-spacing:1.560154px;}
.wsdc{word-spacing:1.598400px;}
.wsdb{word-spacing:1.657800px;}
.ws67{word-spacing:1.667750px;}
.ws3e{word-spacing:1.673717px;}
.ws66{word-spacing:1.721549px;}
.ws119{word-spacing:1.733492px;}
.ws14a{word-spacing:1.793268px;}
.ws1bf{word-spacing:1.829146px;}
.wsd{word-spacing:1.853044px;}
.ws17{word-spacing:1.912819px;}
.wsd9{word-spacing:1.971000px;}
.ws141{word-spacing:1.972595px;}
.wsda{word-spacing:1.976400px;}
.ws96{word-spacing:2.032370px;}
.ws69{word-spacing:2.044339px;}
.wsc{word-spacing:2.092146px;}
.ws4e{word-spacing:2.098138px;}
.ws13f{word-spacing:2.151922px;}
.ws50{word-spacing:2.151936px;}
.ws19b{word-spacing:2.205734px;}
.ws9a{word-spacing:2.211697px;}
.ws43{word-spacing:2.271473px;}
.ws1a0{word-spacing:2.313331px;}
.ws135{word-spacing:2.331248px;}
.wsfb{word-spacing:2.420928px;}
.wsa1{word-spacing:2.450800px;}
.wse2{word-spacing:2.474726px;}
.ws98{word-spacing:2.510575px;}
.ws5a{word-spacing:2.523960px;}
.ws59{word-spacing:2.539350px;}
.ws5e{word-spacing:2.544480px;}
.ws55{word-spacing:2.549610px;}
.ws5b{word-spacing:2.559870px;}
.ws1ca{word-spacing:2.582323px;}
.ws56{word-spacing:2.595780px;}
.wsaf{word-spacing:2.636122px;}
.ws123{word-spacing:2.689902px;}
.ws1b7{word-spacing:2.689920px;}
.ws143{word-spacing:2.749678px;}
.ws1bb{word-spacing:2.797517px;}
.ws108{word-spacing:2.842020px;}
.ws16e{word-spacing:2.851315px;}
.ws10a{word-spacing:2.857410px;}
.ws128{word-spacing:2.869229px;}
.ws1a{word-spacing:2.869236px;}
.ws107{word-spacing:2.898450px;}
.ws18f{word-spacing:2.905114px;}
.ws17e{word-spacing:2.958912px;}
.ws12c{word-spacing:2.988780px;}
.ws165{word-spacing:3.012710px;}
.ws2b{word-spacing:3.048556px;}
.ws172{word-spacing:3.066509px;}
.ws9b{word-spacing:3.108331px;}
.wseb{word-spacing:3.129847px;}
.wsf5{word-spacing:3.164116px;}
.ws109{word-spacing:3.180600px;}
.wsf4{word-spacing:3.181250px;}
.ws1a3{word-spacing:3.220666px;}
.ws54{word-spacing:3.221640px;}
.ws19a{word-spacing:3.222211px;}
.ws18b{word-spacing:3.223718px;}
.ws191{word-spacing:3.224112px;}
.ws19c{word-spacing:3.224179px;}
.ws1b4{word-spacing:3.225322px;}
.ws1ae{word-spacing:3.225533px;}
.ws19e{word-spacing:3.225686px;}
.ws1cb{word-spacing:3.225706px;}
.ws161{word-spacing:3.225811px;}
.ws1c4{word-spacing:3.226157px;}
.ws1b5{word-spacing:3.226666px;}
.ws16b{word-spacing:3.226685px;}
.ws160{word-spacing:3.226963px;}
.ws16a{word-spacing:3.227357px;}
.ws195{word-spacing:3.227674px;}
.ws1a1{word-spacing:3.227722px;}
.ws6a{word-spacing:3.227904px;}
.ws199{word-spacing:3.228038px;}
.ws1bc{word-spacing:3.228701px;}
.ws162{word-spacing:3.229354px;}
.ws166{word-spacing:3.229958px;}
.ws182{word-spacing:3.230333px;}
.ws1a4{word-spacing:3.281702px;}
.ws32{word-spacing:3.287658px;}
.ws97{word-spacing:3.347434px;}
.ws8a{word-spacing:3.389299px;}
.ws115{word-spacing:3.407209px;}
.ws184{word-spacing:3.443098px;}
.ws9e{word-spacing:3.466985px;}
.ws17a{word-spacing:3.496896px;}
.ws117{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.ws170{word-spacing:3.604493px;}
.ws163{word-spacing:3.658291px;}
.ws153{word-spacing:3.712090px;}
.ws39{word-spacing:3.765863px;}
.ws8d{word-spacing:3.765888px;}
.ws81{word-spacing:3.816720px;}
.ws1b1{word-spacing:3.819686px;}
.ws82{word-spacing:3.821742px;}
.ws113{word-spacing:3.825638px;}
.ws187{word-spacing:3.873485px;}
.wsa3{word-spacing:3.885414px;}
.ws40{word-spacing:4.004965px;}
.ws192{word-spacing:4.034880px;}
.ws1c6{word-spacing:4.088678px;}
.ws84{word-spacing:4.168260px;}
.wse7{word-spacing:4.250074px;}
.ws11a{word-spacing:4.303843px;}
.wsfd{word-spacing:4.303872px;}
.ws193{word-spacing:4.357670px;}
.ws185{word-spacing:4.411469px;}
.ws134{word-spacing:4.423394px;}
.ws188{word-spacing:4.465267px;}
.wsec{word-spacing:4.466315px;}
.ws111{word-spacing:4.483170px;}
.ws76{word-spacing:4.484646px;}
.ws77{word-spacing:4.504734px;}
.ws78{word-spacing:4.539888px;}
.ws5d{word-spacing:4.606740px;}
.ws1a8{word-spacing:4.626662px;}
.ws5c{word-spacing:4.647780px;}
.ws12e{word-spacing:4.662497px;}
.ws12f{word-spacing:4.722272px;}
.ws1b8{word-spacing:4.734259px;}
.wsb8{word-spacing:4.838400px;}
.ws148{word-spacing:4.841824px;}
.ws1b2{word-spacing:4.841856px;}
.wsb9{word-spacing:4.865400px;}
.ws1cc{word-spacing:4.895654px;}
.ws130{word-spacing:4.961375px;}
.wsa5{word-spacing:5.021150px;}
.ws151{word-spacing:5.110848px;}
.wsd4{word-spacing:5.116212px;}
.ws19f{word-spacing:5.164646px;}
.ws41{word-spacing:5.260253px;}
.ws44{word-spacing:5.379804px;}
.ws8b{word-spacing:5.433638px;}
.ws45{word-spacing:5.439580px;}
.ws7c{word-spacing:5.479002px;}
.ws138{word-spacing:5.499355px;}
.wsd3{word-spacing:5.525028px;}
.ws102{word-spacing:5.581440px;}
.ws58{word-spacing:5.617350px;}
.ws10f{word-spacing:5.618906px;}
.ws105{word-spacing:5.627610px;}
.ws106{word-spacing:5.643000px;}
.ws18a{word-spacing:5.648832px;}
.ws33{word-spacing:5.678682px;}
.ws3f{word-spacing:5.738458px;}
.ws17f{word-spacing:5.756429px;}
.ws1c1{word-spacing:5.864026px;}
.wsa2{word-spacing:5.917784px;}
.ws13b{word-spacing:5.977560px;}
.ws124{word-spacing:6.037336px;}
.ws15f{word-spacing:6.079219px;}
.ws12b{word-spacing:6.097111px;}
.ws12d{word-spacing:6.216662px;}
.ws23{word-spacing:6.276438px;}
.ws68{word-spacing:6.294413px;}
.ws24{word-spacing:6.336214px;}
.ws121{word-spacing:6.455765px;}
.ws177{word-spacing:6.455808px;}
.ws3c{word-spacing:6.515540px;}
.wsf8{word-spacing:6.533842px;}
.ws3b{word-spacing:6.575316px;}
.wsb2{word-spacing:6.647400px;}
.wsb3{word-spacing:6.658200px;}
.ws1c3{word-spacing:6.724800px;}
.ws139{word-spacing:6.814418px;}
.ws17c{word-spacing:6.993792px;}
.ws1aa{word-spacing:7.047590px;}
.ws2f{word-spacing:7.113296px;}
.ws83{word-spacing:7.156350px;}
.ws30{word-spacing:7.173072px;}
.ws1af{word-spacing:7.208986px;}
.wsa6{word-spacing:7.232848px;}
.wsc9{word-spacing:7.238448px;}
.wscd{word-spacing:7.310592px;}
.ws126{word-spacing:7.352399px;}
.wsdd{word-spacing:7.360200px;}
.wsde{word-spacing:7.392600px;}
.ws125{word-spacing:7.412174px;}
.ws140{word-spacing:7.471950px;}
.wsce{word-spacing:7.569108px;}
.ws1c8{word-spacing:7.585574px;}
.ws16{word-spacing:7.651277px;}
.ws136{word-spacing:7.711052px;}
.ws27{word-spacing:7.830604px;}
.ws35{word-spacing:7.890379px;}
.ws90{word-spacing:7.950155px;}
.ws60{word-spacing:7.992540px;}
.ws5f{word-spacing:8.013060px;}
.ws9f{word-spacing:8.249033px;}
.wsc7{word-spacing:8.296560px;}
.ws57{word-spacing:8.336250px;}
.ws16d{word-spacing:8.338752px;}
.ws2e{word-spacing:8.368584px;}
.wsb7{word-spacing:8.451000px;}
.wsb6{word-spacing:8.461800px;}
.ws14b{word-spacing:8.488135px;}
.ws7d{word-spacing:8.522334px;}
.ws14c{word-spacing:8.547911px;}
.ws95{word-spacing:8.607686px;}
.ws103{word-spacing:8.659440px;}
.ws1c9{word-spacing:8.769139px;}
.wsc6{word-spacing:8.843652px;}
.ws13e{word-spacing:8.966340px;}
.ws13c{word-spacing:9.026116px;}
.ws11c{word-spacing:9.205442px;}
.ws144{word-spacing:9.504320px;}
.ws155{word-spacing:9.629914px;}
.ws64{word-spacing:9.716220px;}
.ws1b3{word-spacing:9.737510px;}
.ws118{word-spacing:9.743423px;}
.ws63{word-spacing:9.752130px;}
.ws1a2{word-spacing:9.791309px;}
.ws4f{word-spacing:10.114099px;}
.wse6{word-spacing:10.167898px;}
.ws13d{word-spacing:10.341179px;}
.ws122{word-spacing:10.759608px;}
.ws19d{word-spacing:10.813478px;}
.ws14e{word-spacing:10.938935px;}
.ws14d{word-spacing:10.998710px;}
.ws186{word-spacing:11.190067px;}
.ws198{word-spacing:11.620454px;}
.ws31{word-spacing:11.656242px;}
.ws37{word-spacing:11.835569px;}
.ws85{word-spacing:11.841876px;}
.ws86{word-spacing:11.861964px;}
.wse3{word-spacing:11.889446px;}
.ws16f{word-spacing:12.212237px;}
.ws38{word-spacing:12.433325px;}
.ws15{word-spacing:12.851754px;}
.ws7a{word-spacing:12.856320px;}
.ws145{word-spacing:13.150632px;}
.ws7b{word-spacing:13.212882px;}
.ws104{word-spacing:13.471380px;}
.ws1b6{word-spacing:13.772390px;}
.ws7f{word-spacing:13.900896px;}
.ws80{word-spacing:13.915962px;}
.ws19{word-spacing:13.987490px;}
.ws17b{word-spacing:14.095181px;}
.ws87{word-spacing:14.583888px;}
.wsb{word-spacing:14.704798px;}
.wscf{word-spacing:15.180300px;}
.wsd0{word-spacing:15.258456px;}
.wsf1{word-spacing:15.797732px;}
.wsf2{word-spacing:15.877692px;}
.ws12a{word-spacing:15.960085px;}
.wsf6{word-spacing:16.106148px;}
.wsf7{word-spacing:16.523080px;}
.ws7e{word-spacing:16.929162px;}
.ws189{word-spacing:17.054093px;}
.ws176{word-spacing:18.345254px;}
.ws174{word-spacing:18.883238px;}
.ws147{word-spacing:19.008641px;}
.ws183{word-spacing:20.550989px;}
.ws149{word-spacing:20.682358px;}
.wsba{word-spacing:22.869000px;}
.wsbb{word-spacing:22.912200px;}
.wsbf{word-spacing:24.204312px;}
.wsd2{word-spacing:25.671240px;}
.wsd1{word-spacing:25.677252px;}
.ws101{word-spacing:25.793640px;}
.ws100{word-spacing:26.501580px;}
.ws91{word-spacing:28.034756px;}
.ws146{word-spacing:28.991166px;}
.wscc{word-spacing:30.090060px;}
.ws5{word-spacing:40.036186px;}
.wsc3{word-spacing:49.472748px;}
.ws15c{word-spacing:81.881165px;}
.ws157{word-spacing:168.604186px;}
.ws156{word-spacing:207.016243px;}
.ws158{word-spacing:264.257741px;}
.ws15b{word-spacing:277.169357px;}
.ws15a{word-spacing:279.536486px;}
.ws15d{word-spacing:306.328090px;}
.ws159{word-spacing:326.448691px;}
._0{margin-left:-35.544868px;}
._29{margin-left:-8.901661px;}
._28{margin-left:-7.651277px;}
._1{margin-left:-6.637466px;}
._9{margin-left:-5.559131px;}
._2{margin-left:-4.421261px;}
._4{margin-left:-2.958912px;}
._3{margin-left:-1.496563px;}
._7{width:1.091170px;}
._24{width:2.635423px;}
._1e{width:3.948703px;}
._1c{width:9.420645px;}
._3e{width:10.759680px;}
._f{width:11.955150px;}
._3f{width:12.976763px;}
._12{width:13.989664px;}
._5{width:15.709133px;}
._6{width:17.645875px;}
._8{width:18.829314px;}
._1a{width:20.507377px;}
._a{width:21.822440px;}
._18{width:23.192933px;}
._14{width:24.806874px;}
._1f{width:26.737805px;}
._15{width:28.214083px;}
._22{width:30.248627px;}
._b{width:31.685616px;}
._2b{width:33.117856px;}
._1b{width:34.193816px;}
._3d{width:35.206120px;}
._e{width:36.465289px;}
._13{width:37.957506px;}
._19{width:39.155191px;}
._16{width:40.408306px;}
._d{width:41.847266px;}
._21{width:44.951251px;}
._25{width:48.310848px;}
._2a{width:51.469166px;}
._2c{width:52.776230px;}
._17{width:54.816398px;}
._c{width:57.803005px;}
._3b{width:61.868160px;}
._3c{width:72.249482px;}
._30{width:214.601818px;}
._35{width:229.342579px;}
._36{width:243.706752px;}
._31{width:245.976077px;}
._2d{width:256.510771px;}
._34{width:258.286118px;}
._2f{width:269.207194px;}
._33{width:271.735718px;}
._32{width:294.600038px;}
._37{width:297.289958px;}
._2e{width:316.839041px;}
._3a{width:321.015053px;}
._38{width:330.160781px;}
._39{width:340.274880px;}
._10{width:867.988721px;}
._20{width:1407.526253px;}
._26{width:1414.491788px;}
._1d{width:1438.021696px;}
._23{width:1514.260301px;}
._27{width:1913.875811px;}
._11{width:1937.785811px;}
.fc7{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs15{font-size:30.801600px;}
.fs18{font-size:33.120000px;}
.fs1a{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs11{font-size:43.600200px;}
.fs12{font-size:44.528400px;}
.fs5{font-size:45.429600px;}
.fsd{font-size:45.486000px;}
.fs8{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fs16{font-size:47.880000px;}
.fs13{font-size:50.220000px;}
.fse{font-size:51.300000px;}
.fs0{font-size:52.914960px;}
.fs7{font-size:53.798400px;}
.fs17{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs1c{font-size:57.114000px;}
.fs3{font-size:59.775600px;}
.fs19{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs14{font-size:66.960000px;}
.fs2{font-size:68.033520px;}
.fsf{font-size:68.400000px;}
.fs1b{font-size:72.000000px;}
.fs4{font-size:107.596800px;}
.yb7{bottom:-216.955561px;}
.y109{bottom:-205.694550px;}
.y95{bottom:-192.414472px;}
.yc5{bottom:-191.175543px;}
.y14a{bottom:-187.627897px;}
.yc4{bottom:-173.012225px;}
.y152{bottom:-163.516897px;}
.y9e{bottom:-161.122755px;}
.yc3{bottom:-154.766043px;}
.y128{bottom:-143.324400px;}
.y9d{bottom:-142.568827px;}
.yc2{bottom:-136.770961px;}
.yc1{bottom:-136.770403px;}
.y151{bottom:-124.614825px;}
.y9c{bottom:-124.014900px;}
.yc0{bottom:-118.524222px;}
.y150{bottom:-106.060897px;}
.y127{bottom:-105.615450px;}
.y9b{bottom:-105.546900px;}
.ybe{bottom:-100.445580px;}
.ybf{bottom:-100.445022px;}
.y14f{bottom:-87.592897px;}
.y9a{bottom:-86.992972px;}
.y126{bottom:-86.085000px;}
.ybd{bottom:-82.282262px;}
.y14e{bottom:-69.038970px;}
.y99{bottom:-68.524972px;}
.y125{bottom:-66.554550px;}
.y124{bottom:-66.553950px;}
.ybc{bottom:-64.203061px;}
.ybb{bottom:-64.202643px;}
.y14d{bottom:-50.570970px;}
.y98{bottom:-49.886400px;}
.y132{bottom:-47.126175px;}
.y123{bottom:-47.113950px;}
.yba{bottom:-45.956461px;}
.y14c{bottom:-31.932397px;}
.y97{bottom:-31.332472px;}
.yb9{bottom:-27.877261px;}
.y122{bottom:-27.494400px;}
.y14b{bottom:-8.676397px;}
.y13c{bottom:-8.394675px;}
.y96{bottom:-8.161972px;}
.yb8{bottom:-5.110861px;}
.y121{bottom:-3.104550px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.425340px;}
.y4{bottom:9.473101px;}
.y20{bottom:14.151273px;}
.y3{bottom:28.937869px;}
.y2{bottom:32.769195px;}
.y34{bottom:63.780000px;}
.ya8{bottom:101.952000px;}
.yca{bottom:105.970500px;}
.yc9{bottom:108.592500px;}
.y270{bottom:108.957000px;}
.y209{bottom:109.743000px;}
.y1b0{bottom:110.091000px;}
.yfa{bottom:113.440500px;}
.y67{bottom:114.156000px;}
.y1d8{bottom:116.607000px;}
.ya7{bottom:121.185000px;}
.y147{bottom:125.407500px;}
.yc8{bottom:127.825500px;}
.y26f{bottom:128.325000px;}
.y208{bottom:128.671500px;}
.y1af{bottom:130.354500px;}
.yf9{bottom:130.974000px;}
.yf8{bottom:133.704000px;}
.y66{bottom:134.419500px;}
.y1d6{bottom:136.870500px;}
.y23c{bottom:138.606000px;}
.ya6{bottom:140.418000px;}
.y1d7{bottom:142.294500px;}
.yc7{bottom:144.435000px;}
.y146{bottom:144.640500px;}
.yc6{bottom:147.058500px;}
.y207{bottom:147.598500px;}
.y26e{bottom:147.691500px;}
.y1ae{bottom:150.619500px;}
.yf7{bottom:153.967500px;}
.y65{bottom:154.683000px;}
.y33{bottom:155.266500px;}
.y1d5{bottom:157.134000px;}
.y23b{bottom:157.974000px;}
.ya5{bottom:159.651000px;}
.y17f{bottom:163.650000px;}
.y145{bottom:163.873500px;}
.y206{bottom:166.527000px;}
.y26d{bottom:167.059500px;}
.y158{bottom:169.453500px;}
.yb5{bottom:169.488000px;}
.y1ad{bottom:170.883000px;}
.y15f{bottom:172.218000px;}
.yf6{bottom:174.232500px;}
.y64{bottom:174.948000px;}
.y32{bottom:175.530000px;}
.y23a{bottom:177.340500px;}
.y1d4{bottom:177.399000px;}
.ya4{bottom:178.884000px;}
.y144{bottom:183.105000px;}
.y17e{bottom:183.913500px;}
.y205{bottom:185.455500px;}
.y26c{bottom:186.427500px;}
.y157{bottom:188.686500px;}
.yf5{bottom:194.496000px;}
.y63{bottom:195.211500px;}
.y239{bottom:196.708500px;}
.y1d3{bottom:197.662500px;}
.ya3{bottom:198.117000px;}
.y1ac{bottom:200.113500px;}
.y143{bottom:202.338000px;}
.y17d{bottom:204.178500px;}
.y204{bottom:204.382500px;}
.y26b{bottom:205.794000px;}
.y156{bottom:207.919500px;}
.y31{bottom:213.727500px;}
.yf4{bottom:214.761000px;}
.y1d2{bottom:215.197500px;}
.y62{bottom:215.476500px;}
.y238{bottom:216.076500px;}
.ya2{bottom:217.350000px;}
.y1d1{bottom:217.927500px;}
.y142{bottom:221.571000px;}
.y203{bottom:223.311000px;}
.y17c{bottom:224.442000px;}
.y26a{bottom:225.162000px;}
.y155{bottom:227.152500px;}
.y30{bottom:233.991000px;}
.y1ab{bottom:234.933000px;}
.yf3{bottom:235.024500px;}
.y237{bottom:235.443000px;}
.y61{bottom:235.740000px;}
.ya1{bottom:236.583000px;}
.y1d0{bottom:238.191000px;}
.y141{bottom:240.804000px;}
.y202{bottom:242.239500px;}
.y269{bottom:244.528500px;}
.y17b{bottom:244.707000px;}
.y154{bottom:246.384000px;}
.y15e{bottom:253.273500px;}
.y2f{bottom:254.256000px;}
.y236{bottom:254.811000px;}
.y1aa{bottom:255.198000px;}
.ya0{bottom:255.814500px;}
.y60{bottom:256.003500px;}
.y1cf{bottom:258.454500px;}
.y140{bottom:260.037000px;}
.y201{bottom:261.166500px;}
.y268{bottom:263.896500px;}
.yf2{bottom:264.255000px;}
.y17a{bottom:264.970500px;}
.y153{bottom:265.617000px;}
.y235{bottom:274.177500px;}
.y2e{bottom:274.519500px;}
.y9f{bottom:275.047500px;}
.y1a9{bottom:275.461500px;}
.y5f{bottom:276.268500px;}
.y13f{bottom:279.270000px;}
.y200{bottom:280.095000px;}
.yf1{bottom:281.142000px;}
.y12f{bottom:283.113000px;}
.y267{bottom:283.264500px;}
.y179{bottom:285.234000px;}
.y1ce{bottom:287.685000px;}
.y148{bottom:288.046500px;}
.y234{bottom:293.545500px;}
.y15d{bottom:293.802000px;}
.y2d{bottom:294.783000px;}
.y1a8{bottom:295.725000px;}
.y5e{bottom:296.532000px;}
.y93{bottom:297.477000px;}
.y13e{bottom:298.503000px;}
.y1ff{bottom:299.023500px;}
.y12e{bottom:302.346000px;}
.y266{bottom:302.631000px;}
.y92{bottom:304.692000px;}
.y178{bottom:305.499000px;}
.y233{bottom:312.913500px;}
.y2c{bottom:315.048000px;}
.yf0{bottom:315.961500px;}
.y1a7{bottom:315.990000px;}
.y5d{bottom:316.797000px;}
.y13d{bottom:317.736000px;}
.y1fe{bottom:317.950500px;}
.y12d{bottom:318.955500px;}
.y12c{bottom:321.579000px;}
.y265{bottom:321.999000px;}
.y1cd{bottom:322.504500px;}
.y91{bottom:324.955500px;}
.y177{bottom:325.762500px;}
.y232{bottom:332.280000px;}
.y2b{bottom:335.311500px;}
.yef{bottom:336.225000px;}
.y1a6{bottom:336.253500px;}
.y1fd{bottom:336.879000px;}
.y5c{bottom:337.060500px;}
.y130{bottom:340.164502px;}
.y12b{bottom:340.812000px;}
.y264{bottom:341.367000px;}
.y1cc{bottom:342.769500px;}
.y90{bottom:345.220500px;}
.y176{bottom:346.027500px;}
.y231{bottom:351.648000px;}
.y2a{bottom:355.576500px;}
.y1fc{bottom:355.807500px;}
.yee{bottom:356.490000px;}
.y1a5{bottom:356.518500px;}
.y5b{bottom:357.324000px;}
.y12a{bottom:357.421500px;}
.y129{bottom:360.045000px;}
.y263{bottom:360.733500px;}
.y1cb{bottom:363.033000px;}
.y8f{bottom:365.484000px;}
.y175{bottom:366.291000px;}
.y230{bottom:371.014500px;}
.y1fb{bottom:374.734500px;}
.y15c{bottom:374.859000px;}
.y29{bottom:375.840000px;}
.yed{bottom:376.753500px;}
.y1a4{bottom:376.782000px;}
.y271{bottom:377.478000px;}
.y5a{bottom:377.589000px;}
.y262{bottom:380.101500px;}
.y107{bottom:382.474500px;}
.y8e{bottom:383.019000px;}
.y1ca{bottom:383.298000px;}
.y8d{bottom:385.749000px;}
.y174{bottom:386.554500px;}
.y22f{bottom:390.382500px;}
.y1fa{bottom:393.663000px;}
.y1a3{bottom:394.315500px;}
.y15b{bottom:395.122500px;}
.y28{bottom:396.103500px;}
.yec{bottom:397.017000px;}
.y1a2{bottom:397.045500px;}
.y59{bottom:397.852500px;}
.y261{bottom:399.468000px;}
.y1c9{bottom:403.561500px;}
.y8b{bottom:406.012500px;}
.y173{bottom:406.819500px;}
.y22e{bottom:409.750500px;}
.y8c{bottom:411.436500px;}
.y1f9{bottom:412.591500px;}
.y27{bottom:416.368500px;}
.yeb{bottom:417.282000px;}
.y58{bottom:418.117500px;}
.y260{bottom:418.836000px;}
.y1c8{bottom:421.095000px;}
.y1c7{bottom:423.825000px;}
.y89{bottom:426.276000px;}
.y172{bottom:427.083000px;}
.y22d{bottom:429.117000px;}
.y1f8{bottom:431.518500px;}
.y8a{bottom:431.701500px;}
.y120{bottom:436.365531px;}
.y26{bottom:436.632000px;}
.yea{bottom:437.545500px;}
.y25f{bottom:438.204000px;}
.y57{bottom:438.381000px;}
.y88{bottom:443.811000px;}
.y1c5{bottom:444.090000px;}
.y87{bottom:446.541000px;}
.y171{bottom:447.348000px;}
.y22c{bottom:448.485000px;}
.y1c6{bottom:449.514000px;}
.y1f7{bottom:450.447000px;}
.y11f{bottom:456.615450px;}
.y11e{bottom:456.615693px;}
.y25{bottom:456.897000px;}
.y25e{bottom:457.570500px;}
.ye9{bottom:457.810500px;}
.y56{bottom:458.644500px;}
.y1a1{bottom:461.095500px;}
.y1c4{bottom:464.353500px;}
.y86{bottom:466.804500px;}
.y170{bottom:467.611500px;}
.y22b{bottom:467.851500px;}
.y1f6{bottom:469.375500px;}
.y11d{bottom:476.865612px;}
.y25d{bottom:476.938500px;}
.y24{bottom:477.160500px;}
.ye8{bottom:478.074000px;}
.y55{bottom:478.909500px;}
.y1a0{bottom:481.360500px;}
.y85{bottom:484.339500px;}
.y1c3{bottom:484.618500px;}
.y84{bottom:487.069500px;}
.y22a{bottom:487.219500px;}
.y16f{bottom:487.875000px;}
.y1f5{bottom:488.304000px;}
.y25c{bottom:496.305000px;}
.y11c{bottom:497.115531px;}
.y23{bottom:497.424000px;}
.y19f{bottom:498.894000px;}
.y54{bottom:499.173000px;}
.y19e{bottom:501.624000px;}
.y1c2{bottom:502.152000px;}
.y83{bottom:504.603000px;}
.y1c1{bottom:504.882000px;}
.y229{bottom:506.587500px;}
.y1f4{bottom:507.231000px;}
.ye7{bottom:507.304500px;}
.y82{bottom:507.333000px;}
.y16e{bottom:508.140000px;}
.y25b{bottom:515.673000px;}
.y11b{bottom:517.365450px;}
.y11a{bottom:517.366656px;}
.y22{bottom:517.689000px;}
.y53{bottom:519.438000px;}
.y19d{bottom:521.889000px;}
.y1c0{bottom:525.145500px;}
.y228{bottom:525.954000px;}
.y1f3{bottom:526.159500px;}
.y81{bottom:527.596500px;}
.y16d{bottom:528.403500px;}
.y25a{bottom:535.041000px;}
.y119{bottom:537.526395px;}
.y52{bottom:539.701500px;}
.ye6{bottom:542.124000px;}
.y19c{bottom:542.152500px;}
.y1f2{bottom:545.088000px;}
.y227{bottom:545.322000px;}
.y1bf{bottom:545.410500px;}
.y80{bottom:547.861500px;}
.y16c{bottom:548.667000px;}
.y1f{bottom:552.403464px;}
.y1e{bottom:552.796500px;}
.y259{bottom:554.407500px;}
.y118{bottom:557.776314px;}
.ye5{bottom:559.657500px;}
.y51{bottom:559.965000px;}
.ye4{bottom:562.387500px;}
.y19b{bottom:562.416000px;}
.y1f1{bottom:564.015000px;}
.y226{bottom:564.688500px;}
.y15a{bottom:565.390500px;}
.y1be{bottom:565.674000px;}
.y16b{bottom:568.932000px;}
.y258{bottom:573.775500px;}
.y7f{bottom:577.092000px;}
.y117{bottom:578.026233px;}
.y50{bottom:580.230000px;}
.ye3{bottom:582.652500px;}
.y199{bottom:582.681000px;}
.y1f0{bottom:582.943500px;}
.y225{bottom:584.056500px;}
.y1bd{bottom:585.939000px;}
.y19a{bottom:588.105000px;}
.y16a{bottom:589.195500px;}
.y1d{bottom:592.168500px;}
.y257{bottom:593.142000px;}
.y116{bottom:598.276152px;}
.y4f{bottom:600.493500px;}
.ye2{bottom:602.916000px;}
.y198{bottom:602.944500px;}
.y224{bottom:603.424500px;}
.y159{bottom:605.919000px;}
.y1bc{bottom:606.202500px;}
.y169{bottom:609.460500px;}
.y1c{bottom:610.326000px;}
.y1ef{bottom:611.826000px;}
.y7e{bottom:611.911500px;}
.y256{bottom:612.510000px;}
.y115{bottom:618.526071px;}
.y4e{bottom:620.758500px;}
.y223{bottom:622.791000px;}
.ye1{bottom:623.181000px;}
.y197{bottom:623.209500px;}
.y1bb{bottom:626.466000px;}
.y168{bottom:629.724000px;}
.y255{bottom:631.878000px;}
.y7d{bottom:632.175000px;}
.y1b{bottom:633.364500px;}
.y114{bottom:638.775990px;}
.ye0{bottom:640.714500px;}
.y4d{bottom:641.022000px;}
.y222{bottom:642.159000px;}
.ydf{bottom:643.444500px;}
.y196{bottom:643.473000px;}
.y1a{bottom:646.639500px;}
.y1ee{bottom:646.645500px;}
.y1b9{bottom:646.731000px;}
.y167{bottom:649.987500px;}
.y254{bottom:651.244500px;}
.y1ba{bottom:652.155000px;}
.y7c{bottom:652.438500px;}
.y113{bottom:659.025909px;}
.y4c{bottom:661.285500px;}
.y221{bottom:661.527000px;}
.yde{bottom:663.708000px;}
.y195{bottom:663.736500px;}
.y1b8{bottom:666.994500px;}
.y19{bottom:669.679500px;}
.y166{bottom:670.252500px;}
.y253{bottom:670.612500px;}
.y1ed{bottom:670.809000px;}
.y7b{bottom:672.703500px;}
.y112{bottom:679.185648px;}
.y220{bottom:680.893500px;}
.y4b{bottom:681.550500px;}
.y18{bottom:682.954500px;}
.ydd{bottom:683.973000px;}
.y194{bottom:684.001500px;}
.y1b7{bottom:687.258000px;}
.y252{bottom:689.979000px;}
.y165{bottom:690.516000px;}
.y7a{bottom:692.967000px;}
.y1ec{bottom:694.974000px;}
.y111{bottom:699.435567px;}
.y21f{bottom:700.261500px;}
.y17{bottom:701.110500px;}
.y4a{bottom:701.814000px;}
.ydc{bottom:704.236500px;}
.y193{bottom:704.265000px;}
.y1b6{bottom:707.523000px;}
.y251{bottom:709.347000px;}
.y1eb{bottom:710.172000px;}
.y164{bottom:710.781000px;}
.y79{bottom:713.232000px;}
.y21e{bottom:719.628000px;}
.y49{bottom:722.077500px;}
.y16{bottom:724.150500px;}
.ydb{bottom:724.501500px;}
.y192{bottom:724.530000px;}
.y1ea{bottom:725.370000px;}
.y1b4{bottom:727.786500px;}
.y110{bottom:728.685450px;}
.y250{bottom:728.715000px;}
.y163{bottom:731.044500px;}
.y1b5{bottom:733.212000px;}
.y78{bottom:733.495500px;}
.y274{bottom:735.804000px;}
.y21d{bottom:738.996000px;}
.y15{bottom:742.306500px;}
.y48{bottom:742.342500px;}
.yda{bottom:744.765000px;}
.y190{bottom:744.793500px;}
.y1b3{bottom:748.051500px;}
.y24f{bottom:748.081500px;}
.y1e9{bottom:749.535000px;}
.y191{bottom:750.217500px;}
.y162{bottom:751.308000px;}
.y77{bottom:753.759000px;}
.y273{bottom:755.170500px;}
.y14{bottom:755.581500px;}
.y21c{bottom:758.364000px;}
.y47{bottom:762.606000px;}
.y1e8{bottom:764.733000px;}
.yd9{bottom:765.028500px;}
.y18f{bottom:765.057000px;}
.y10f{bottom:766.485450px;}
.y24e{bottom:767.449500px;}
.y161{bottom:771.573000px;}
.y76{bottom:774.024000px;}
.y272{bottom:774.538500px;}
.y1b2{bottom:777.282000px;}
.y21b{bottom:777.730500px;}
.y13{bottom:778.621500px;}
.y1e7{bottom:779.931000px;}
.y18e{bottom:782.592000px;}
.y46{bottom:782.871000px;}
.yd8{bottom:785.293500px;}
.y18c{bottom:785.322000px;}
.y10e{bottom:785.925900px;}
.y24d{bottom:786.816000px;}
.y18d{bottom:790.746000px;}
.y160{bottom:791.836500px;}
.y12{bottom:791.896500px;}
.y75{bottom:794.287500px;}
.y21a{bottom:797.098500px;}
.y45{bottom:803.134500px;}
.y1e6{bottom:804.094500px;}
.y10d{bottom:805.545450px;}
.yd7{bottom:805.557000px;}
.y18b{bottom:805.585500px;}
.y24c{bottom:806.184000px;}
.y106{bottom:812.101500px;}
.yb6{bottom:812.387039px;}
.y74{bottom:814.552500px;}
.y11{bottom:814.935000px;}
.y13b{bottom:814.971112px;}
.y219{bottom:816.465000px;}
.y1e5{bottom:821.829000px;}
.y44{bottom:823.398000px;}
.y10c{bottom:824.985600px;}
.y24b{bottom:825.552000px;}
.y18a{bottom:825.849000px;}
.y10{bottom:828.210000px;}
.y105{bottom:832.365000px;}
.y13a{bottom:834.208535px;}
.yd6{bottom:834.787500px;}
.y73{bottom:834.816000px;}
.y218{bottom:835.833000px;}
.y1e4{bottom:837.028500px;}
.y43{bottom:843.663000px;}
.y10b{bottom:844.424550px;}
.y24a{bottom:844.918500px;}
.yf{bottom:851.248500px;}
.y1e3{bottom:852.226500px;}
.y104{bottom:852.628500px;}
.y139{bottom:853.445958px;}
.y72{bottom:855.079500px;}
.y217{bottom:855.201000px;}
.y94{bottom:859.064527px;}
.yd5{bottom:862.839000px;}
.y149{bottom:863.851102px;}
.y42{bottom:863.926500px;}
.y10a{bottom:863.955000px;}
.y249{bottom:864.286500px;}
.ye{bottom:864.523500px;}
.y1e2{bottom:867.424500px;}
.y138{bottom:872.683381px;}
.y103{bottom:872.893500px;}
.y216{bottom:874.567500px;}
.y71{bottom:875.344500px;}
.yd3{bottom:882.072000px;}
.y1e1{bottom:882.622500px;}
.yd{bottom:882.681000px;}
.y248{bottom:883.653000px;}
.y41{bottom:884.191500px;}
.yd4{bottom:886.954500px;}
.y189{bottom:889.899000px;}
.y137{bottom:891.920804px;}
.y102{bottom:893.157000px;}
.y215{bottom:893.935500px;}
.y70{bottom:895.608000px;}
.y1e0{bottom:897.820500px;}
.y108{bottom:901.125450px;}
.yd2{bottom:901.305000px;}
.y247{bottom:903.021000px;}
.y40{bottom:904.455000px;}
.yc{bottom:905.719500px;}
.y188{bottom:910.164000px;}
.y136{bottom:911.158227px;}
.y1df{bottom:913.018500px;}
.y214{bottom:913.302000px;}
.y101{bottom:913.422000px;}
.y6f{bottom:915.873000px;}
.yd0{bottom:920.538000px;}
.y246{bottom:922.389000px;}
.y3f{bottom:924.718500px;}
.yd1{bottom:925.419000px;}
.yb{bottom:927.243000px;}
.y135{bottom:930.309979px;}
.y187{bottom:930.427500px;}
.y213{bottom:932.670000px;}
.y100{bottom:933.685500px;}
.y6e{bottom:936.136500px;}
.y1de{bottom:937.182000px;}
.yce{bottom:939.771000px;}
.y245{bottom:941.755500px;}
.ycf{bottom:944.652000px;}
.y3e{bottom:944.983500px;}
.ya{bottom:947.508000px;}
.y134{bottom:949.547402px;}
.y186{bottom:950.692500px;}
.y212{bottom:952.038000px;}
.y1dd{bottom:952.380000px;}
.yff{bottom:953.949000px;}
.y6d{bottom:956.400000px;}
.ycd{bottom:959.002500px;}
.y244{bottom:961.123500px;}
.y3d{bottom:965.247000px;}
.y1dc{bottom:967.579500px;}
.y9{bottom:967.771500px;}
.y133{bottom:968.784825px;}
.y185{bottom:970.956000px;}
.y211{bottom:971.404500px;}
.yfe{bottom:974.214000px;}
.yb4{bottom:978.235500px;}
.y1b1{bottom:979.638000px;}
.y243{bottom:980.490000px;}
.y1db{bottom:982.777500px;}
.y3c{bottom:985.512000px;}
.y6c{bottom:985.630500px;}
.y210{bottom:990.772500px;}
.y184{bottom:991.219500px;}
.yfd{bottom:994.477500px;}
.yb2{bottom:997.468500px;}
.y1da{bottom:997.975500px;}
.y242{bottom:999.858000px;}
.yb3{bottom:1002.351000px;}
.y131{bottom:1004.352825px;}
.y3b{bottom:1005.775500px;}
.y20f{bottom:1010.139000px;}
.y8{bottom:1010.451000px;}
.y183{bottom:1011.484500px;}
.y1d9{bottom:1013.173500px;}
.yfc{bottom:1014.742500px;}
.yb0{bottom:1016.701500px;}
.y241{bottom:1019.226000px;}
.y6b{bottom:1020.450000px;}
.yb1{bottom:1021.584000px;}
.y3a{bottom:1026.039000px;}
.y20e{bottom:1029.507000px;}
.y182{bottom:1031.748000px;}
.ycc{bottom:1033.312500px;}
.yfb{bottom:1035.006000px;}
.yae{bottom:1035.934500px;}
.y240{bottom:1038.592500px;}
.yaf{bottom:1040.817000px;}
.y7{bottom:1040.848500px;}
.y39{bottom:1046.304000px;}
.y20d{bottom:1048.875000px;}
.y181{bottom:1052.013000px;}
.yac{bottom:1055.167500px;}
.y6a{bottom:1055.269500px;}
.y23f{bottom:1057.960500px;}
.yad{bottom:1060.050000px;}
.y38{bottom:1066.567500px;}
.y20c{bottom:1068.241500px;}
.y6{bottom:1071.244500px;}
.ycb{bottom:1071.777000px;}
.yaa{bottom:1074.400500px;}
.y69{bottom:1075.534500px;}
.y23e{bottom:1077.327000px;}
.yab{bottom:1079.283000px;}
.y180{bottom:1081.243500px;}
.y37{bottom:1086.832500px;}
.y20b{bottom:1087.609500px;}
.ya9{bottom:1093.633500px;}
.y68{bottom:1095.798000px;}
.y23d{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y20a{bottom:1115.943000px;}
.y36{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y35{bottom:1168.366500px;}
.hc{height:25.508090px;}
.h2c{height:25.910156px;}
.h23{height:28.485464px;}
.h1d{height:29.037733px;}
.ha{height:30.461558px;}
.h30{height:30.629531px;}
.h14{height:31.526842px;}
.h13{height:33.072749px;}
.he{height:33.112997px;}
.h2e{height:33.292969px;}
.h20{height:33.471826px;}
.h17{height:34.191650px;}
.hd{height:34.199443px;}
.h11{height:35.100320px;}
.h3{height:35.876343px;}
.h28{height:35.991211px;}
.h1b{height:37.334628px;}
.h1c{height:37.551283px;}
.h1a{height:38.734848px;}
.hb{height:39.165235px;}
.h4{height:39.402747px;}
.h33{height:39.488026px;}
.h1f{height:41.180073px;}
.h12{height:41.482876px;}
.h25{height:41.723369px;}
.h16{height:42.065666px;}
.hf{height:43.038432px;}
.h2b{height:43.269961px;}
.h10{height:43.516637px;}
.h6{height:43.875290px;}
.h27{height:44.279648px;}
.h5{height:46.126727px;}
.h22{height:46.443691px;}
.h19{height:47.442480px;}
.h21{height:49.108359px;}
.h35{height:49.117939px;}
.h29{height:49.939453px;}
.h2a{height:49.943653px;}
.h24{height:49.991558px;}
.h18{height:50.164453px;}
.h2{height:50.931027px;}
.h2f{height:52.804688px;}
.h32{height:52.819295px;}
.h9{height:54.405312px;}
.h8{height:54.411312px;}
.h2d{height:55.599258px;}
.h7{height:77.469696px;}
.h26{height:405.987000px;}
.h31{height:790.846072px;}
.h1e{height:792.526005px;}
.h15{height:833.533800px;}
.h34{height:842.964450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w6{width:401.257500px;}
.w4{width:595.381673px;}
.w8{width:631.474358px;}
.w5{width:633.433370px;}
.w7{width:643.311832px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xda{left:-132.693000px;}
.xdb{left:-100.832604px;}
.xe7{left:-61.143000px;}
.xe8{left:-57.003000px;}
.xe9{left:-46.383000px;}
.xea{left:-42.333000px;}
.x6b{left:-9.978277px;}
.xde{left:-5.703000px;}
.x8d{left:-2.436926px;}
.xdf{left:-1.203000px;}
.x0{left:0.000000px;}
.xf0{left:1.255283px;}
.xe0{left:10.587000px;}
.xe1{left:14.997000px;}
.x6d{left:20.288723px;}
.x8f{left:27.192875px;}
.x8{left:29.274117px;}
.xf1{left:31.522283px;}
.x91{left:37.655374px;}
.x92{left:41.505575px;}
.x93{left:51.382175px;}
.x94{left:55.232374px;}
.x3{left:60.027581px;}
.x29{left:112.561500px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.xef{left:124.803143px;}
.x8c{left:129.743861px;}
.x5{left:146.170500px;}
.x6a{left:148.767427px;}
.xf4{left:150.679500px;}
.x11c{left:151.845000px;}
.x9d{left:157.872000px;}
.x21{left:160.165500px;}
.x9e{left:163.849500px;}
.x101{left:166.779000px;}
.x137{left:169.435500px;}
.x22{left:175.110000px;}
.x23{left:178.839000px;}
.x2{left:181.274369px;}
.x12d{left:183.244500px;}
.x12e{left:188.260500px;}
.x115{left:189.400500px;}
.x109{left:190.900500px;}
.x24{left:193.782000px;}
.xec{left:194.854500px;}
.x9{left:195.997500px;}
.x116{left:197.022000px;}
.x10a{left:198.223500px;}
.xed{left:200.832000px;}
.x42{left:202.866000px;}
.x6e{left:204.252000px;}
.xf3{left:205.396500px;}
.x12f{left:206.565000px;}
.xe{left:208.695000px;}
.x44{left:210.720000px;}
.x117{left:211.965000px;}
.x10b{left:213.166500px;}
.x43{left:217.810500px;}
.xee{left:220.648500px;}
.xd3{left:223.177500px;}
.x45{left:225.663000px;}
.x46{left:229.474500px;}
.x13a{left:237.658500px;}
.xd4{left:239.185500px;}
.xa6{left:242.752500px;}
.x47{left:244.417500px;}
.xd9{left:245.829000px;}
.x120{left:248.325000px;}
.xa7{left:252.103500px;}
.x80{left:254.512500px;}
.x10c{left:256.350000px;}
.x58{left:260.362500px;}
.x81{left:261.598500px;}
.x71{left:263.734500px;}
.x10d{left:266.187000px;}
.x59{left:267.993000px;}
.xc3{left:270.186000px;}
.xbc{left:271.642500px;}
.x65{left:272.869500px;}
.x72{left:274.795500px;}
.x95{left:276.869974px;}
.x9c{left:279.217500px;}
.x124{left:281.043000px;}
.x82{left:282.118500px;}
.x122{left:283.360500px;}
.x32{left:284.496000px;}
.xbd{left:286.587000px;}
.x66{left:288.876000px;}
.x5a{left:291.021000px;}
.x83{left:294.640500px;}
.x125{left:295.987500px;}
.x33{left:299.440500px;}
.x5b{left:301.110000px;}
.x90{left:303.905075px;}
.x13{left:305.205000px;}
.xa{left:308.215500px;}
.x106{left:310.839000px;}
.x14{left:312.676500px;}
.xac{left:314.055000px;}
.x135{left:315.340500px;}
.x15{left:316.488000px;}
.xe5{left:319.467000px;}
.x76{left:322.348500px;}
.x16{left:323.959500px;}
.x1d{left:326.845500px;}
.x77{left:329.434500px;}
.x113{left:332.677500px;}
.xa9{left:333.985500px;}
.xa1{left:336.174000px;}
.xe6{left:338.277000px;}
.x30{left:340.621500px;}
.x39{left:342.210000px;}
.x2a{left:344.578500px;}
.x114{left:347.622000px;}
.x3a{left:349.533000px;}
.x78{left:350.788500px;}
.xa2{left:352.935000px;}
.x31{left:355.566000px;}
.xad{left:356.910000px;}
.xa3{left:358.912500px;}
.xb{left:360.183000px;}
.xc9{left:361.506000px;}
.x2b{left:363.205500px;}
.x3b{left:364.477500px;}
.xca{left:367.932000px;}
.x132{left:370.990500px;}
.xf5{left:373.281000px;}
.x1f{left:374.763000px;}
.x2c{left:378.150000px;}
.xcb{left:379.912500px;}
.xf6{left:381.454500px;}
.xdc{left:384.177000px;}
.x67{left:387.018000px;}
.x20{left:389.706000px;}
.xcc{left:390.774000px;}
.xc6{left:393.822000px;}
.xdd{left:395.787000px;}
.x84{left:398.073000px;}
.xc7{left:401.145000px;}
.x68{left:403.023000px;}
.x2f{left:404.818500px;}
.x85{left:407.424000px;}
.xce{left:409.605000px;}
.x5c{left:412.339500px;}
.xf8{left:413.386500px;}
.x7d{left:415.228500px;}
.x96{left:416.565274px;}
.x97{left:420.415475px;}
.x5d{left:422.428500px;}
.xf9{left:423.850500px;}
.xcf{left:425.619000px;}
.x86{left:427.813500px;}
.x9a{left:428.872500px;}
.x98{left:430.292075px;}
.x25{left:432.093000px;}
.x99{left:434.142275px;}
.x11{left:435.897000px;}
.x87{left:438.070500px;}
.x10f{left:440.583000px;}
.x12{left:443.370000px;}
.x5e{left:445.315500px;}
.x26{left:447.036000px;}
.x11d{left:449.467500px;}
.x7e{left:450.624000px;}
.x48{left:452.002500px;}
.x9b{left:454.636500px;}
.x104{left:457.434000px;}
.xd0{left:461.170500px;}
.xc4{left:463.035000px;}
.x3c{left:465.772500px;}
.xae{left:466.810500px;}
.x49{left:468.637500px;}
.x40{left:469.938000px;}
.x11e{left:472.123500px;}
.xaf{left:473.898000px;}
.x50{left:475.075500px;}
.xc5{left:478.513500px;}
.x133{left:479.976000px;}
.x110{left:481.342500px;}
.xa4{left:486.303000px;}
.x4d{left:487.408500px;}
.xfa{left:488.832000px;}
.x12a{left:490.798500px;}
.xa5{left:492.280500px;}
.xb0{left:494.668500px;}
.xf{left:497.106000px;}
.x51{left:498.631500px;}
.x123{left:500.100000px;}
.x4e{left:503.424000px;}
.x10{left:504.577500px;}
.x111{left:505.963500px;}
.x105{left:507.745500px;}
.xc0{left:509.601000px;}
.x73{left:511.135500px;}
.xe2{left:514.317000px;}
.xc1{left:516.027000px;}
.x35{left:517.569000px;}
.x3d{left:519.639000px;}
.x41{left:523.438500px;}
.x3e{left:524.715000px;}
.xe3{left:526.106850px;}
.xc2{left:528.007500px;}
.xe4{left:530.606850px;}
.x36{left:532.512000px;}
.x37{left:536.173500px;}
.x3f{left:539.659500px;}
.x62{left:541.299000px;}
.x74{left:545.556000px;}
.xf7{left:546.648000px;}
.x63{left:547.725000px;}
.x38{left:551.118000px;}
.xd5{left:552.436500px;}
.x1e{left:553.726500px;}
.x12c{left:555.096000px;}
.xd6{left:557.215500px;}
.x64{left:559.600500px;}
.x19{left:561.540000px;}
.xbe{left:563.550000px;}
.xc{left:566.353500px;}
.xfe{left:567.897000px;}
.x1a{left:569.011500px;}
.x88{left:570.699000px;}
.xd7{left:572.587500px;}
.x11f{left:575.224500px;}
.x1b{left:576.633000px;}
.x89{left:577.785000px;}
.x13e{left:579.693000px;}
.x4f{left:581.508000px;}
.xff{left:582.840000px;}
.x126{left:587.625000px;}
.x55{left:589.110000px;}
.xeb{left:590.302500px;}
.x1c{left:591.576000px;}
.x4a{left:594.765000px;}
.x143{left:596.182500px;}
.x8a{left:598.174500px;}
.x75{left:600.091500px;}
.xcd{left:603.405000px;}
.x100{left:605.308500px;}
.x34{left:606.549000px;}
.x8b{left:608.431500px;}
.x2d{left:611.778000px;}
.x6c{left:613.744080px;}
.xd{left:616.255500px;}
.xa8{left:617.830500px;}
.x121{left:621.667500px;}
.x144{left:623.082000px;}
.x9f{left:624.520500px;}
.x2e{left:626.721000px;}
.x129{left:628.156500px;}
.x8e{left:630.753575px;}
.xfb{left:631.848000px;}
.x5f{left:634.345500px;}
.x107{left:635.403000px;}
.x119{left:637.129500px;}
.xb1{left:639.024000px;}
.x11a{left:641.784000px;}
.x12b{left:644.926500px;}
.xfc{left:646.791000px;}
.xa0{left:647.970000px;}
.xb2{left:649.492500px;}
.xd1{left:651.607500px;}
.x11b{left:653.589000px;}
.x60{left:657.232500px;}
.xaa{left:658.591500px;}
.xf2{left:659.690782px;}
.xb9{left:663.448500px;}
.x61{left:664.861500px;}
.xd2{left:667.636500px;}
.x108{left:669.981000px;}
.xd8{left:673.717500px;}
.xb3{left:677.689500px;}
.x13b{left:678.760500px;}
.x79{left:680.349000px;}
.xba{left:682.203000px;}
.x69{left:684.087000px;}
.xab{left:686.901000px;}
.x7a{left:689.700000px;}
.x13c{left:691.027500px;}
.xb4{left:692.632500px;}
.x6f{left:694.465500px;}
.xbb{left:697.147500px;}
.xc8{left:698.703000px;}
.xb5{left:700.254000px;}
.x7{left:701.339982px;}
.x10e{left:703.729500px;}
.x70{left:704.928000px;}
.x4b{left:706.489500px;}
.x7b{left:710.922000px;}
.x118{left:713.628000px;}
.x7f{left:715.516500px;}
.x7c{left:718.008000px;}
.xb6{left:719.385000px;}
.x141{left:720.901500px;}
.x4c{left:722.530500px;}
.x102{left:723.888000px;}
.x127{left:726.858000px;}
.x52{left:728.080500px;}
.x142{left:729.439500px;}
.xfd{left:730.711500px;}
.x138{left:732.066000px;}
.xb7{left:734.329500px;}
.x112{left:736.035000px;}
.x56{left:737.281500px;}
.x103{left:738.832500px;}
.x53{left:740.061000px;}
.x27{left:741.777000px;}
.x134{left:747.441000px;}
.x128{left:749.422500px;}
.x54{left:750.543000px;}
.xb8{left:753.084000px;}
.x139{left:754.269000px;}
.x140{left:755.665500px;}
.x28{left:756.720000px;}
.xbf{left:759.703500px;}
.x57{left:761.004000px;}
.x13d{left:763.206000px;}
.x17{left:764.367000px;}
.x136{left:765.775500px;}
.x130{left:768.237000px;}
.x18{left:771.838500px;}
.x131{left:774.532500px;}
.x13f{left:776.415000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v3{vertical-align:-9.728000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.443200pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls4d{letter-spacing:-0.297600pt;}
.ls32{letter-spacing:-0.276768pt;}
.ls75{letter-spacing:-0.255360pt;}
.ls74{letter-spacing:-0.241680pt;}
.ls66{letter-spacing:-0.096459pt;}
.ls55{letter-spacing:-0.090848pt;}
.ls73{letter-spacing:-0.076821pt;}
.ls4c{letter-spacing:-0.076608pt;}
.ls1f{letter-spacing:-0.072778pt;}
.ls30{letter-spacing:-0.071245pt;}
.ls71{letter-spacing:-0.060648pt;}
.ls5c{letter-spacing:-0.058784pt;}
.ls4a{letter-spacing:-0.055328pt;}
.ls1d{letter-spacing:-0.052562pt;}
.ls2e{letter-spacing:-0.051455pt;}
.ls51{letter-spacing:-0.042752pt;}
.ls68{letter-spacing:-0.040614pt;}
.ls4f{letter-spacing:-0.033600pt;}
.ls53{letter-spacing:-0.032064pt;}
.ls65{letter-spacing:-0.030461pt;}
.ls5a{letter-spacing:-0.028800pt;}
.ls54{letter-spacing:-0.026720pt;}
.ls20{letter-spacing:-0.022800pt;}
.ls58{letter-spacing:-0.021376pt;}
.ls67{letter-spacing:-0.020307pt;}
.ls4e{letter-spacing:-0.019200pt;}
.ls31{letter-spacing:-0.013392pt;}
.ls56{letter-spacing:-0.010688pt;}
.ls6a{letter-spacing:-0.010154pt;}
.ls59{letter-spacing:-0.009600pt;}
.ls33{letter-spacing:-0.008928pt;}
.ls50{letter-spacing:-0.005344pt;}
.ls5b{letter-spacing:-0.004800pt;}
.ls34{letter-spacing:-0.004464pt;}
.lsd{letter-spacing:0.000000pt;}
.ls96{letter-spacing:0.000078pt;}
.lsf{letter-spacing:0.000518pt;}
.ls79{letter-spacing:0.000540pt;}
.lsa0{letter-spacing:0.000711pt;}
.ls7d{letter-spacing:0.000751pt;}
.lsa2{letter-spacing:0.001026pt;}
.ls7b{letter-spacing:0.001408pt;}
.ls0{letter-spacing:0.002133pt;}
.ls81{letter-spacing:0.002185pt;}
.lsa1{letter-spacing:0.002262pt;}
.ls7c{letter-spacing:0.002525pt;}
.ls7e{letter-spacing:0.002576pt;}
.ls5{letter-spacing:0.003733pt;}
.ls87{letter-spacing:0.004267pt;}
.ls2b{letter-spacing:0.004464pt;}
.ls1b{letter-spacing:0.004560pt;}
.ls3d{letter-spacing:0.004800pt;}
.ls5f{letter-spacing:0.005077pt;}
.ls3a{letter-spacing:0.006136pt;}
.ls3c{letter-spacing:0.006669pt;}
.ls21{letter-spacing:0.009120pt;}
.ls39{letter-spacing:0.009600pt;}
.ls24{letter-spacing:0.013392pt;}
.ls1a{letter-spacing:0.013680pt;}
.ls3e{letter-spacing:0.014400pt;}
.ls27{letter-spacing:0.017856pt;}
.ls13{letter-spacing:0.018240pt;}
.ls38{letter-spacing:0.019200pt;}
.ls42{letter-spacing:0.021376pt;}
.ls2a{letter-spacing:0.022320pt;}
.ls17{letter-spacing:0.022800pt;}
.ls3f{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.027360pt;}
.ls5e{letter-spacing:0.030461pt;}
.ls23{letter-spacing:0.031248pt;}
.ls12{letter-spacing:0.031920pt;}
.ls40{letter-spacing:0.033600pt;}
.ls5d{letter-spacing:0.035538pt;}
.ls25{letter-spacing:0.035712pt;}
.ls1c{letter-spacing:0.036480pt;}
.ls45{letter-spacing:0.037408pt;}
.ls28{letter-spacing:0.040176pt;}
.ls19{letter-spacing:0.041040pt;}
.ls43{letter-spacing:0.042752pt;}
.ls29{letter-spacing:0.044640pt;}
.ls14{letter-spacing:0.045600pt;}
.ls2d{letter-spacing:0.049104pt;}
.ls60{letter-spacing:0.050768pt;}
.ls46{letter-spacing:0.053440pt;}
.ls2c{letter-spacing:0.053568pt;}
.ls6c{letter-spacing:0.054720pt;}
.ls69{letter-spacing:0.055845pt;}
.ls52{letter-spacing:0.058784pt;}
.ls6d{letter-spacing:0.059280pt;}
.ls61{letter-spacing:0.060922pt;}
.ls47{letter-spacing:0.064128pt;}
.ls64{letter-spacing:0.065998pt;}
.ls3b{letter-spacing:0.067200pt;}
.ls44{letter-spacing:0.074816pt;}
.ls57{letter-spacing:0.080160pt;}
.ls41{letter-spacing:0.085504pt;}
.ls6e{letter-spacing:0.091200pt;}
.ls26{letter-spacing:0.102672pt;}
.ls18{letter-spacing:0.104880pt;}
.ls6b{letter-spacing:0.109166pt;}
.ls22{letter-spacing:0.110826pt;}
.ls11{letter-spacing:0.113210pt;}
.ls37{letter-spacing:0.119168pt;}
.ls48{letter-spacing:0.120000pt;}
.ls72{letter-spacing:0.153642pt;}
.ls2f{letter-spacing:0.158323pt;}
.ls1e{letter-spacing:0.161728pt;}
.ls4b{letter-spacing:0.170240pt;}
.lse{letter-spacing:1.133683pt;}
.lsb{letter-spacing:1.654338pt;}
.ls49{letter-spacing:2.088000pt;}
.ls35{letter-spacing:2.655345pt;}
.ls80{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.ls9f{letter-spacing:2.661867pt;}
.ls3{letter-spacing:2.665203pt;}
.ls16{letter-spacing:2.895600pt;}
.lsa6{letter-spacing:10.363167pt;}
.lsc{letter-spacing:10.626533pt;}
.ls94{letter-spacing:10.831195pt;}
.ls93{letter-spacing:10.901943pt;}
.ls9c{letter-spacing:11.212147pt;}
.ls62{letter-spacing:11.355042pt;}
.ls63{letter-spacing:11.358933pt;}
.ls8d{letter-spacing:11.736303pt;}
.ls8f{letter-spacing:11.747334pt;}
.ls99{letter-spacing:11.768938pt;}
.ls91{letter-spacing:11.792335pt;}
.ls7f{letter-spacing:11.807562pt;}
.lsab{letter-spacing:11.883264pt;}
.ls85{letter-spacing:11.954133pt;}
.ls70{letter-spacing:11.956267pt;}
.ls84{letter-spacing:11.959467pt;}
.ls9a{letter-spacing:11.964800pt;}
.ls97{letter-spacing:11.967389pt;}
.lsa5{letter-spacing:11.996607pt;}
.ls9d{letter-spacing:11.996800pt;}
.lsaa{letter-spacing:12.093285pt;}
.ls8b{letter-spacing:12.131170pt;}
.ls90{letter-spacing:12.142361pt;}
.ls95{letter-spacing:12.172301pt;}
.ls88{letter-spacing:12.191205pt;}
.lsa8{letter-spacing:12.199429pt;}
.lsa3{letter-spacing:12.229457pt;}
.ls9b{letter-spacing:12.368983pt;}
.ls6f{letter-spacing:12.528078pt;}
.ls89{letter-spacing:12.614735pt;}
.ls83{letter-spacing:12.891859pt;}
.ls98{letter-spacing:12.938918pt;}
.lsa7{letter-spacing:13.137610pt;}
.ls8c{letter-spacing:13.242186pt;}
.ls6{letter-spacing:13.279207pt;}
.ls4{letter-spacing:13.282926pt;}
.ls7{letter-spacing:13.284237pt;}
.ls78{letter-spacing:13.303120pt;}
.lsa9{letter-spacing:13.351990pt;}
.ls76{letter-spacing:13.437018pt;}
.ls8a{letter-spacing:13.440878pt;}
.ls77{letter-spacing:13.442399pt;}
.ls10{letter-spacing:13.923096pt;}
.ls36{letter-spacing:14.612678pt;}
.ls86{letter-spacing:15.171597pt;}
.ls8e{letter-spacing:15.867022pt;}
.lsa4{letter-spacing:15.877480pt;}
.ls8{letter-spacing:15.942400pt;}
.ls9e{letter-spacing:16.238264pt;}
.ls92{letter-spacing:16.965061pt;}
.lsac{letter-spacing:17.467022pt;}
.ls7a{letter-spacing:23.033067pt;}
.ls2{letter-spacing:51.035733pt;}
.ls9{letter-spacing:62.432533pt;}
.lsa{letter-spacing:64.314231pt;}
.ls82{letter-spacing:230.229867pt;}
.wsab{word-spacing:-29.440000pt;}
.ws2{word-spacing:-13.283467pt;}
.ws7{word-spacing:-12.760670pt;}
.wsad{word-spacing:-12.120000pt;}
.wsa8{word-spacing:-12.067200pt;}
.wsac{word-spacing:-12.019200pt;}
.wsaa{word-spacing:-12.000000pt;}
.wsa9{word-spacing:-11.980800pt;}
.ws8{word-spacing:-11.955200pt;}
.ws47{word-spacing:-11.400000pt;}
.ws6e{word-spacing:-11.213568pt;}
.ws6d{word-spacing:-11.160000pt;}
.wsa7{word-spacing:-10.810240pt;}
.ws1b{word-spacing:-10.626800pt;}
.ws46{word-spacing:-10.269728pt;}
.wsfa{word-spacing:-10.261642pt;}
.ws132{word-spacing:-10.095467pt;}
.ws6c{word-spacing:-10.053523pt;}
.ws22{word-spacing:-2.709827pt;}
.ws11d{word-spacing:-2.550426pt;}
.ws150{word-spacing:-2.438861pt;}
.ws9d{word-spacing:-2.391024pt;}
.ws10{word-spacing:-2.284756pt;}
.wsa4{word-spacing:-2.125355pt;}
.ws1be{word-spacing:-2.056294pt;}
.ws197{word-spacing:-2.008474pt;}
.wsa0{word-spacing:-1.965953pt;}
.ws13{word-spacing:-1.912819pt;}
.ws4a{word-spacing:-1.865011pt;}
.ws1d{word-spacing:-1.806551pt;}
.ws9c{word-spacing:-1.753418pt;}
.ws1a6{word-spacing:-1.721549pt;}
.ws28{word-spacing:-1.700284pt;}
.wsa{word-spacing:-1.696326pt;}
.ws1ba{word-spacing:-1.673728pt;}
.ws1a5{word-spacing:-1.625907pt;}
.ws173{word-spacing:-1.578086pt;}
.wsfe{word-spacing:-1.530266pt;}
.ws114{word-spacing:-1.487748pt;}
.ws18e{word-spacing:-1.482445pt;}
.ws18c{word-spacing:-1.386803pt;}
.ws127{word-spacing:-1.328347pt;}
.ws171{word-spacing:-1.291162pt;}
.ws1b9{word-spacing:-1.195520pt;}
.ws9{word-spacing:-1.175671pt;}
.ws11f{word-spacing:-1.168945pt;}
.ws190{word-spacing:-1.147699pt;}
.ws133{word-spacing:-1.115811pt;}
.ws74{word-spacing:-1.066896pt;}
.wsf{word-spacing:-1.062677pt;}
.ws18d{word-spacing:-1.052058pt;}
.ws75{word-spacing:-1.049040pt;}
.ws11e{word-spacing:-1.009543pt;}
.ws1a9{word-spacing:-1.004237pt;}
.ws1e{word-spacing:-0.956410pt;}
.ws116{word-spacing:-0.903276pt;}
.ws131{word-spacing:-0.850142pt;}
.ws142{word-spacing:-0.797008pt;}
.ws73{word-spacing:-0.772272pt;}
.wsea{word-spacing:-0.765133pt;}
.ws2d{word-spacing:-0.743874pt;}
.wse9{word-spacing:-0.717312pt;}
.ws137{word-spacing:-0.690740pt;}
.wse8{word-spacing:-0.669491pt;}
.ws26{word-spacing:-0.637606pt;}
.wse5{word-spacing:-0.621670pt;}
.ws112{word-spacing:-0.584473pt;}
.ws2c{word-spacing:-0.531339pt;}
.wsf0{word-spacing:-0.527987pt;}
.ws6b{word-spacing:-0.478208pt;}
.ws42{word-spacing:-0.478205pt;}
.ws13a{word-spacing:-0.425071pt;}
.ws181{word-spacing:-0.382566pt;}
.ws3d{word-spacing:-0.371937pt;}
.ws3a{word-spacing:-0.318803pt;}
.wsd5{word-spacing:-0.288576pt;}
.ws169{word-spacing:-0.286925pt;}
.wsc4{word-spacing:-0.277888pt;}
.ws25{word-spacing:-0.265669pt;}
.ws4d{word-spacing:-0.239104pt;}
.ws21{word-spacing:-0.212535pt;}
.wsc5{word-spacing:-0.208416pt;}
.wsb1{word-spacing:-0.195776pt;}
.ws51{word-spacing:-0.191283pt;}
.ws53{word-spacing:-0.185987pt;}
.ws72{word-spacing:-0.182072pt;}
.ws14{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.143462pt;}
.wsee{word-spacing:-0.126920pt;}
.ws20{word-spacing:-0.106268pt;}
.ws4c{word-spacing:-0.095642pt;}
.ws1{word-spacing:-0.053134pt;}
.wsae{word-spacing:-0.047821pt;}
.wsb0{word-spacing:-0.021280pt;}
.ws52{word-spacing:-0.020216pt;}
.ws71{word-spacing:-0.019790pt;}
.wsff{word-spacing:-0.016173pt;}
.ws1ac{word-spacing:-0.006059pt;}
.ws180{word-spacing:-0.005495pt;}
.ws1c5{word-spacing:-0.005274pt;}
.ws1a7{word-spacing:-0.004745pt;}
.ws16c{word-spacing:-0.004011pt;}
.ws194{word-spacing:-0.003806pt;}
.ws1bd{word-spacing:-0.003430pt;}
.ws6{word-spacing:-0.003133pt;}
.ws179{word-spacing:-0.003081pt;}
.ws164{word-spacing:-0.002330pt;}
.ws175{word-spacing:-0.002313pt;}
.ws167{word-spacing:-0.002048pt;}
.ws3{word-spacing:-0.001837pt;}
.ws4{word-spacing:-0.001555pt;}
.ws1ab{word-spacing:-0.001067pt;}
.ws1c0{word-spacing:-0.000495pt;}
.ws0{word-spacing:0.000000pt;}
.ws154{word-spacing:0.000017pt;}
.wsf9{word-spacing:0.020307pt;}
.ws110{word-spacing:0.021146pt;}
.wsca{word-spacing:0.021376pt;}
.wsc2{word-spacing:0.026720pt;}
.ws1ad{word-spacing:0.031940pt;}
.wscb{word-spacing:0.042752pt;}
.ws49{word-spacing:0.047821pt;}
.ws18{word-spacing:0.053134pt;}
.wsc0{word-spacing:0.085504pt;}
.wsbe{word-spacing:0.090848pt;}
.ws152{word-spacing:0.095642pt;}
.wsef{word-spacing:0.101536pt;}
.ws1f{word-spacing:0.106268pt;}
.ws89{word-spacing:0.116064pt;}
.ws10c{word-spacing:0.127680pt;}
.wsc1{word-spacing:0.128256pt;}
.wsbd{word-spacing:0.129600pt;}
.wsd7{word-spacing:0.134400pt;}
.wsbc{word-spacing:0.139200pt;}
.ws65{word-spacing:0.143462pt;}
.wse0{word-spacing:0.144288pt;}
.wsdf{word-spacing:0.148800pt;}
.ws10b{word-spacing:0.150480pt;}
.ws88{word-spacing:0.156240pt;}
.wse{word-spacing:0.159402pt;}
.wsd8{word-spacing:0.172800pt;}
.ws6f{word-spacing:0.191283pt;}
.ws11{word-spacing:0.212535pt;}
.ws4b{word-spacing:0.239104pt;}
.ws36{word-spacing:0.265669pt;}
.ws48{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.ws14f{word-spacing:0.334746pt;}
.ws10d{word-spacing:0.405840pt;}
.ws2a{word-spacing:0.425071pt;}
.ws70{word-spacing:0.430387pt;}
.ws62{word-spacing:0.433200pt;}
.ws61{word-spacing:0.460560pt;}
.ws92{word-spacing:0.478205pt;}
.ws8e{word-spacing:0.478208pt;}
.ws8f{word-spacing:0.526029pt;}
.ws168{word-spacing:0.573850pt;}
.ws1b0{word-spacing:0.621670pt;}
.ws99{word-spacing:0.690740pt;}
.ws15e{word-spacing:0.717312pt;}
.ws129{word-spacing:0.743874pt;}
.wsd6{word-spacing:0.772800pt;}
.wsb4{word-spacing:0.787200pt;}
.wsb5{word-spacing:0.796800pt;}
.ws11b{word-spacing:0.797008pt;}
.ws34{word-spacing:0.850142pt;}
.ws1c2{word-spacing:0.908595pt;}
.wsf3{word-spacing:0.939208pt;}
.ws93{word-spacing:0.956410pt;}
.wse4{word-spacing:0.956416pt;}
.ws196{word-spacing:1.004237pt;}
.ws12{word-spacing:1.009543pt;}
.wsc8{word-spacing:1.010016pt;}
.ws1c7{word-spacing:1.052058pt;}
.ws120{word-spacing:1.062677pt;}
.ws178{word-spacing:1.147699pt;}
.wsfc{word-spacing:1.195520pt;}
.ws10e{word-spacing:1.222079pt;}
.ws94{word-spacing:1.275213pt;}
.ws17d{word-spacing:1.291162pt;}
.wsed{word-spacing:1.330122pt;}
.ws79{word-spacing:1.343664pt;}
.wse1{word-spacing:1.386803pt;}
.wsdc{word-spacing:1.420800pt;}
.wsdb{word-spacing:1.473600pt;}
.ws67{word-spacing:1.482445pt;}
.ws3e{word-spacing:1.487748pt;}
.ws66{word-spacing:1.530266pt;}
.ws119{word-spacing:1.540882pt;}
.ws14a{word-spacing:1.594016pt;}
.ws1bf{word-spacing:1.625907pt;}
.wsd{word-spacing:1.647150pt;}
.ws17{word-spacing:1.700284pt;}
.wsd9{word-spacing:1.752000pt;}
.ws141{word-spacing:1.753418pt;}
.wsda{word-spacing:1.756800pt;}
.ws96{word-spacing:1.806551pt;}
.ws69{word-spacing:1.817190pt;}
.wsc{word-spacing:1.859685pt;}
.ws4e{word-spacing:1.865011pt;}
.ws13f{word-spacing:1.912819pt;}
.ws50{word-spacing:1.912832pt;}
.ws19b{word-spacing:1.960653pt;}
.ws9a{word-spacing:1.965953pt;}
.ws43{word-spacing:2.019087pt;}
.ws1a0{word-spacing:2.056294pt;}
.ws135{word-spacing:2.072221pt;}
.wsfb{word-spacing:2.151936pt;}
.wsa1{word-spacing:2.178489pt;}
.wse2{word-spacing:2.199757pt;}
.ws98{word-spacing:2.231622pt;}
.ws5a{word-spacing:2.243520pt;}
.ws59{word-spacing:2.257200pt;}
.ws5e{word-spacing:2.261760pt;}
.ws55{word-spacing:2.266320pt;}
.ws5b{word-spacing:2.275440pt;}
.ws1ca{word-spacing:2.295398pt;}
.ws56{word-spacing:2.307360pt;}
.wsaf{word-spacing:2.343219pt;}
.ws123{word-spacing:2.391024pt;}
.ws1b7{word-spacing:2.391040pt;}
.ws143{word-spacing:2.444158pt;}
.ws1bb{word-spacing:2.486682pt;}
.ws108{word-spacing:2.526240pt;}
.ws16e{word-spacing:2.534502pt;}
.ws10a{word-spacing:2.539920pt;}
.ws128{word-spacing:2.550426pt;}
.ws1a{word-spacing:2.550432pt;}
.ws107{word-spacing:2.576400pt;}
.ws18f{word-spacing:2.582323pt;}
.ws17e{word-spacing:2.630144pt;}
.ws12c{word-spacing:2.656693pt;}
.ws165{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.709827pt;}
.ws172{word-spacing:2.725786pt;}
.ws9b{word-spacing:2.762961pt;}
.wseb{word-spacing:2.782086pt;}
.wsf5{word-spacing:2.812547pt;}
.ws109{word-spacing:2.827200pt;}
.wsf4{word-spacing:2.827778pt;}
.ws1a3{word-spacing:2.862814pt;}
.ws54{word-spacing:2.863680pt;}
.ws19a{word-spacing:2.864188pt;}
.ws18b{word-spacing:2.865527pt;}
.ws191{word-spacing:2.865877pt;}
.ws19c{word-spacing:2.865937pt;}
.ws1b4{word-spacing:2.866953pt;}
.ws1ae{word-spacing:2.867140pt;}
.ws19e{word-spacing:2.867277pt;}
.ws1cb{word-spacing:2.867294pt;}
.ws161{word-spacing:2.867388pt;}
.ws1c4{word-spacing:2.867695pt;}
.ws1b5{word-spacing:2.868147pt;}
.ws16b{word-spacing:2.868164pt;}
.ws160{word-spacing:2.868412pt;}
.ws16a{word-spacing:2.868762pt;}
.ws195{word-spacing:2.869043pt;}
.ws1a1{word-spacing:2.869086pt;}
.ws6a{word-spacing:2.869248pt;}
.ws199{word-spacing:2.869367pt;}
.ws1bc{word-spacing:2.869956pt;}
.ws162{word-spacing:2.870537pt;}
.ws166{word-spacing:2.871074pt;}
.ws182{word-spacing:2.871407pt;}
.ws1a4{word-spacing:2.917069pt;}
.ws32{word-spacing:2.922363pt;}
.ws97{word-spacing:2.975497pt;}
.ws8a{word-spacing:3.012710pt;}
.ws115{word-spacing:3.028630pt;}
.ws184{word-spacing:3.060531pt;}
.ws9e{word-spacing:3.081764pt;}
.ws17a{word-spacing:3.108352pt;}
.ws117{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.ws170{word-spacing:3.203994pt;}
.ws163{word-spacing:3.251814pt;}
.ws153{word-spacing:3.299635pt;}
.ws39{word-spacing:3.347434pt;}
.ws8d{word-spacing:3.347456pt;}
.ws81{word-spacing:3.392640pt;}
.ws1b1{word-spacing:3.395277pt;}
.ws82{word-spacing:3.397104pt;}
.ws113{word-spacing:3.400567pt;}
.ws187{word-spacing:3.443098pt;}
.wsa3{word-spacing:3.453701pt;}
.ws40{word-spacing:3.559969pt;}
.ws192{word-spacing:3.586560pt;}
.ws1c6{word-spacing:3.634381pt;}
.ws84{word-spacing:3.705120pt;}
.wse7{word-spacing:3.777843pt;}
.ws11a{word-spacing:3.825638pt;}
.wsfd{word-spacing:3.825664pt;}
.ws193{word-spacing:3.873485pt;}
.ws185{word-spacing:3.921306pt;}
.ws134{word-spacing:3.931906pt;}
.ws188{word-spacing:3.969126pt;}
.wsec{word-spacing:3.970058pt;}
.ws111{word-spacing:3.985040pt;}
.ws76{word-spacing:3.986352pt;}
.ws77{word-spacing:4.004208pt;}
.ws78{word-spacing:4.035456pt;}
.ws5d{word-spacing:4.094880pt;}
.ws1a8{word-spacing:4.112589pt;}
.ws5c{word-spacing:4.131360pt;}
.ws12e{word-spacing:4.144442pt;}
.ws12f{word-spacing:4.197575pt;}
.ws1b8{word-spacing:4.208230pt;}
.wsb8{word-spacing:4.300800pt;}
.ws148{word-spacing:4.303843pt;}
.ws1b2{word-spacing:4.303872pt;}
.wsb9{word-spacing:4.324800pt;}
.ws1cc{word-spacing:4.351693pt;}
.ws130{word-spacing:4.410111pt;}
.wsa5{word-spacing:4.463245pt;}
.ws151{word-spacing:4.542976pt;}
.wsd4{word-spacing:4.547744pt;}
.ws19f{word-spacing:4.590797pt;}
.ws41{word-spacing:4.675780pt;}
.ws44{word-spacing:4.782048pt;}
.ws8b{word-spacing:4.829901pt;}
.ws45{word-spacing:4.835182pt;}
.ws7c{word-spacing:4.870224pt;}
.ws138{word-spacing:4.888316pt;}
.wsd3{word-spacing:4.911136pt;}
.ws102{word-spacing:4.961280pt;}
.ws58{word-spacing:4.993200pt;}
.ws10f{word-spacing:4.994583pt;}
.ws105{word-spacing:5.002320pt;}
.ws106{word-spacing:5.016000pt;}
.ws18a{word-spacing:5.021184pt;}
.ws33{word-spacing:5.047717pt;}
.ws3f{word-spacing:5.100851pt;}
.ws17f{word-spacing:5.116826pt;}
.ws1c1{word-spacing:5.212467pt;}
.wsa2{word-spacing:5.260253pt;}
.ws13b{word-spacing:5.313387pt;}
.ws124{word-spacing:5.366521pt;}
.ws15f{word-spacing:5.403750pt;}
.ws12b{word-spacing:5.419654pt;}
.ws12d{word-spacing:5.525922pt;}
.ws23{word-spacing:5.579056pt;}
.ws68{word-spacing:5.595034pt;}
.ws24{word-spacing:5.632190pt;}
.ws121{word-spacing:5.738458pt;}
.ws177{word-spacing:5.738496pt;}
.ws3c{word-spacing:5.791591pt;}
.wsf8{word-spacing:5.807859pt;}
.ws3b{word-spacing:5.844725pt;}
.wsb2{word-spacing:5.908800pt;}
.wsb3{word-spacing:5.918400pt;}
.ws1c3{word-spacing:5.977600pt;}
.ws139{word-spacing:6.057261pt;}
.ws17c{word-spacing:6.216704pt;}
.ws1aa{word-spacing:6.264525pt;}
.ws2f{word-spacing:6.322930pt;}
.ws83{word-spacing:6.361200pt;}
.ws30{word-spacing:6.376064pt;}
.ws1af{word-spacing:6.407987pt;}
.wsa6{word-spacing:6.429198pt;}
.wsc9{word-spacing:6.434176pt;}
.wscd{word-spacing:6.498304pt;}
.ws126{word-spacing:6.535466pt;}
.wsdd{word-spacing:6.542400pt;}
.wsde{word-spacing:6.571200pt;}
.ws125{word-spacing:6.588599pt;}
.ws140{word-spacing:6.641733pt;}
.wsce{word-spacing:6.728096pt;}
.ws1c8{word-spacing:6.742733pt;}
.ws16{word-spacing:6.801135pt;}
.ws136{word-spacing:6.854269pt;}
.ws27{word-spacing:6.960537pt;}
.ws35{word-spacing:7.013670pt;}
.ws90{word-spacing:7.066804pt;}
.ws60{word-spacing:7.104480pt;}
.ws5f{word-spacing:7.122720pt;}
.ws9f{word-spacing:7.332474pt;}
.wsc7{word-spacing:7.374720pt;}
.ws57{word-spacing:7.410000pt;}
.ws16d{word-spacing:7.412224pt;}
.ws2e{word-spacing:7.438741pt;}
.wsb7{word-spacing:7.512000pt;}
.wsb6{word-spacing:7.521600pt;}
.ws14b{word-spacing:7.545009pt;}
.ws7d{word-spacing:7.575408pt;}
.ws14c{word-spacing:7.598143pt;}
.ws95{word-spacing:7.651277pt;}
.ws103{word-spacing:7.697280pt;}
.ws1c9{word-spacing:7.794790pt;}
.wsc6{word-spacing:7.861024pt;}
.ws13e{word-spacing:7.970080pt;}
.ws13c{word-spacing:8.023214pt;}
.ws11c{word-spacing:8.182615pt;}
.ws144{word-spacing:8.448285pt;}
.ws155{word-spacing:8.559923pt;}
.ws64{word-spacing:8.636640pt;}
.ws1b3{word-spacing:8.655565pt;}
.ws118{word-spacing:8.660820pt;}
.ws63{word-spacing:8.668560pt;}
.ws1a2{word-spacing:8.703386pt;}
.ws4f{word-spacing:8.990310pt;}
.wse6{word-spacing:9.038131pt;}
.ws13d{word-spacing:9.192159pt;}
.ws122{word-spacing:9.564096pt;}
.ws19d{word-spacing:9.611981pt;}
.ws14e{word-spacing:9.723498pt;}
.ws14d{word-spacing:9.776631pt;}
.ws186{word-spacing:9.946726pt;}
.ws198{word-spacing:10.329293pt;}
.ws31{word-spacing:10.361104pt;}
.ws37{word-spacing:10.520506pt;}
.ws85{word-spacing:10.526112pt;}
.ws86{word-spacing:10.543968pt;}
.wse3{word-spacing:10.568397pt;}
.ws16f{word-spacing:10.855322pt;}
.ws38{word-spacing:11.051844pt;}
.ws15{word-spacing:11.423781pt;}
.ws7a{word-spacing:11.427840pt;}
.ws145{word-spacing:11.689451pt;}
.ws7b{word-spacing:11.744784pt;}
.ws104{word-spacing:11.974560pt;}
.ws1b6{word-spacing:12.242125pt;}
.ws7f{word-spacing:12.356352pt;}
.ws80{word-spacing:12.369744pt;}
.ws19{word-spacing:12.433325pt;}
.ws17b{word-spacing:12.529050pt;}
.ws87{word-spacing:12.963456pt;}
.wsb{word-spacing:13.070931pt;}
.wscf{word-spacing:13.493600pt;}
.wsd0{word-spacing:13.563072pt;}
.wsf1{word-spacing:14.042429pt;}
.wsf2{word-spacing:14.113504pt;}
.ws12a{word-spacing:14.186742pt;}
.wsf6{word-spacing:14.316576pt;}
.wsf7{word-spacing:14.687182pt;}
.ws7e{word-spacing:15.048144pt;}
.ws189{word-spacing:15.159194pt;}
.ws176{word-spacing:16.306893pt;}
.ws174{word-spacing:16.785101pt;}
.ws147{word-spacing:16.896570pt;}
.ws183{word-spacing:18.267546pt;}
.ws149{word-spacing:18.384318pt;}
.wsba{word-spacing:20.328000pt;}
.wsbb{word-spacing:20.366400pt;}
.wsbf{word-spacing:21.514944pt;}
.wsd2{word-spacing:22.818880pt;}
.wsd1{word-spacing:22.824224pt;}
.ws101{word-spacing:22.927680pt;}
.ws100{word-spacing:23.556960pt;}
.ws91{word-spacing:24.919783pt;}
.ws146{word-spacing:25.769925pt;}
.wscc{word-spacing:26.746720pt;}
.ws5{word-spacing:35.587721pt;}
.wsc3{word-spacing:43.975776pt;}
.ws15c{word-spacing:72.783258pt;}
.ws157{word-spacing:149.870387pt;}
.ws156{word-spacing:184.014438pt;}
.ws158{word-spacing:234.895770pt;}
.ws15b{word-spacing:246.372762pt;}
.ws15a{word-spacing:248.476877pt;}
.ws15d{word-spacing:272.291635pt;}
.ws159{word-spacing:290.176614pt;}
._0{margin-left:-31.595439pt;}
._29{margin-left:-7.912588pt;}
._28{margin-left:-6.801135pt;}
._1{margin-left:-5.899970pt;}
._9{margin-left:-4.941450pt;}
._2{margin-left:-3.930010pt;}
._4{margin-left:-2.630144pt;}
._3{margin-left:-1.330278pt;}
._7{width:0.969929pt;}
._24{width:2.342598pt;}
._1e{width:3.509958pt;}
._1c{width:8.373906pt;}
._3e{width:9.564160pt;}
._f{width:10.626800pt;}
._3f{width:11.534900pt;}
._12{width:12.435257pt;}
._5{width:13.963674pt;}
._6{width:15.685222pt;}
._8{width:16.737168pt;}
._1a{width:18.228780pt;}
._a{width:19.397725pt;}
._18{width:20.615940pt;}
._14{width:22.050555pt;}
._1f{width:23.766938pt;}
._15{width:25.079185pt;}
._22{width:26.887668pt;}
._b{width:28.164992pt;}
._2b{width:29.438094pt;}
._1b{width:30.394503pt;}
._3d{width:31.294329pt;}
._e{width:32.413590pt;}
._13{width:33.740005pt;}
._19{width:34.804614pt;}
._16{width:35.918494pt;}
._d{width:37.197570pt;}
._21{width:39.956668pt;}
._25{width:42.942976pt;}
._2a{width:45.750370pt;}
._2c{width:46.912205pt;}
._17{width:48.725687pt;}
._c{width:51.380449pt;}
._3b{width:54.993920pt;}
._3c{width:64.221762pt;}
._30{width:190.757171pt;}
._35{width:203.860070pt;}
._36{width:216.628224pt;}
._31{width:218.645402pt;}
._2d{width:228.009574pt;}
._34{width:229.587661pt;}
._2f{width:239.295283pt;}
._33{width:241.542861pt;}
._32{width:261.866701pt;}
._37{width:264.257741pt;}
._2e{width:281.634703pt;}
._3a{width:285.346714pt;}
._38{width:293.476250pt;}
._39{width:302.466560pt;}
._10{width:771.545530pt;}
._20{width:1251.134447pt;}
._26{width:1257.326034pt;}
._1d{width:1278.241507pt;}
._23{width:1346.009157pt;}
._27{width:1701.222943pt;}
._11{width:1722.476276pt;}
.fs15{font-size:27.379200pt;}
.fs18{font-size:29.440000pt;}
.fs1a{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs11{font-size:38.755733pt;}
.fs12{font-size:39.580800pt;}
.fs5{font-size:40.381867pt;}
.fsd{font-size:40.432000pt;}
.fs8{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fs16{font-size:42.560000pt;}
.fs13{font-size:44.640000pt;}
.fse{font-size:45.600000pt;}
.fs0{font-size:47.035520pt;}
.fs7{font-size:47.820800pt;}
.fs17{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs1c{font-size:50.768000pt;}
.fs3{font-size:53.133867pt;}
.fs19{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs14{font-size:59.520000pt;}
.fs2{font-size:60.474240pt;}
.fsf{font-size:60.800000pt;}
.fs1b{font-size:64.000000pt;}
.fs4{font-size:95.641600pt;}
.yb7{bottom:-192.849388pt;}
.y109{bottom:-182.839600pt;}
.y95{bottom:-171.035087pt;}
.yc5{bottom:-169.933816pt;}
.y14a{bottom:-166.780353pt;}
.yc4{bottom:-153.788644pt;}
.y152{bottom:-145.348353pt;}
.y9e{bottom:-143.220227pt;}
.yc3{bottom:-137.569816pt;}
.y128{bottom:-127.399467pt;}
.y9d{bottom:-126.727847pt;}
.yc2{bottom:-121.574188pt;}
.yc1{bottom:-121.573692pt;}
.y151{bottom:-110.768733pt;}
.y9c{bottom:-110.235467pt;}
.yc0{bottom:-105.354864pt;}
.y150{bottom:-94.276353pt;}
.y127{bottom:-93.880400pt;}
.y9b{bottom:-93.819467pt;}
.ybe{bottom:-89.284960pt;}
.ybf{bottom:-89.284464pt;}
.y14f{bottom:-77.860353pt;}
.y9a{bottom:-77.327087pt;}
.y126{bottom:-76.520000pt;}
.ybd{bottom:-73.139788pt;}
.y14e{bottom:-61.367973pt;}
.y99{bottom:-60.911087pt;}
.y125{bottom:-59.159600pt;}
.y124{bottom:-59.159067pt;}
.ybc{bottom:-57.069388pt;}
.ybb{bottom:-57.069016pt;}
.y14d{bottom:-44.951973pt;}
.y98{bottom:-44.343467pt;}
.y132{bottom:-41.889933pt;}
.y123{bottom:-41.879067pt;}
.yba{bottom:-40.850188pt;}
.y14c{bottom:-28.384353pt;}
.y97{bottom:-27.851087pt;}
.yb9{bottom:-24.779788pt;}
.y122{bottom:-24.439467pt;}
.y14b{bottom:-7.712353pt;}
.y13c{bottom:-7.461933pt;}
.y96{bottom:-7.255087pt;}
.yb8{bottom:-4.542988pt;}
.y121{bottom:-2.759600pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.044747pt;}
.y4{bottom:8.420534pt;}
.y20{bottom:12.578910pt;}
.y3{bottom:25.722550pt;}
.y2{bottom:29.128174pt;}
.y34{bottom:56.693333pt;}
.ya8{bottom:90.624000pt;}
.yca{bottom:94.196000pt;}
.yc9{bottom:96.526667pt;}
.y270{bottom:96.850667pt;}
.y209{bottom:97.549333pt;}
.y1b0{bottom:97.858667pt;}
.yfa{bottom:100.836000pt;}
.y67{bottom:101.472000pt;}
.y1d8{bottom:103.650667pt;}
.ya7{bottom:107.720000pt;}
.y147{bottom:111.473333pt;}
.yc8{bottom:113.622667pt;}
.y26f{bottom:114.066667pt;}
.y208{bottom:114.374667pt;}
.y1af{bottom:115.870667pt;}
.yf9{bottom:116.421333pt;}
.yf8{bottom:118.848000pt;}
.y66{bottom:119.484000pt;}
.y1d6{bottom:121.662667pt;}
.y23c{bottom:123.205333pt;}
.ya6{bottom:124.816000pt;}
.y1d7{bottom:126.484000pt;}
.yc7{bottom:128.386667pt;}
.y146{bottom:128.569333pt;}
.yc6{bottom:130.718667pt;}
.y207{bottom:131.198667pt;}
.y26e{bottom:131.281333pt;}
.y1ae{bottom:133.884000pt;}
.yf7{bottom:136.860000pt;}
.y65{bottom:137.496000pt;}
.y33{bottom:138.014667pt;}
.y1d5{bottom:139.674667pt;}
.y23b{bottom:140.421333pt;}
.ya5{bottom:141.912000pt;}
.y17f{bottom:145.466667pt;}
.y145{bottom:145.665333pt;}
.y206{bottom:148.024000pt;}
.y26d{bottom:148.497333pt;}
.y158{bottom:150.625333pt;}
.yb5{bottom:150.656000pt;}
.y1ad{bottom:151.896000pt;}
.y15f{bottom:153.082667pt;}
.yf6{bottom:154.873333pt;}
.y64{bottom:155.509333pt;}
.y32{bottom:156.026667pt;}
.y23a{bottom:157.636000pt;}
.y1d4{bottom:157.688000pt;}
.ya4{bottom:159.008000pt;}
.y144{bottom:162.760000pt;}
.y17e{bottom:163.478667pt;}
.y205{bottom:164.849333pt;}
.y26c{bottom:165.713333pt;}
.y157{bottom:167.721333pt;}
.yf5{bottom:172.885333pt;}
.y63{bottom:173.521333pt;}
.y239{bottom:174.852000pt;}
.y1d3{bottom:175.700000pt;}
.ya3{bottom:176.104000pt;}
.y1ac{bottom:177.878667pt;}
.y143{bottom:179.856000pt;}
.y17d{bottom:181.492000pt;}
.y204{bottom:181.673333pt;}
.y26b{bottom:182.928000pt;}
.y156{bottom:184.817333pt;}
.y31{bottom:189.980000pt;}
.yf4{bottom:190.898667pt;}
.y1d2{bottom:191.286667pt;}
.y62{bottom:191.534667pt;}
.y238{bottom:192.068000pt;}
.ya2{bottom:193.200000pt;}
.y1d1{bottom:193.713333pt;}
.y142{bottom:196.952000pt;}
.y203{bottom:198.498667pt;}
.y17c{bottom:199.504000pt;}
.y26a{bottom:200.144000pt;}
.y155{bottom:201.913333pt;}
.y30{bottom:207.992000pt;}
.y1ab{bottom:208.829333pt;}
.yf3{bottom:208.910667pt;}
.y237{bottom:209.282667pt;}
.y61{bottom:209.546667pt;}
.ya1{bottom:210.296000pt;}
.y1d0{bottom:211.725333pt;}
.y141{bottom:214.048000pt;}
.y202{bottom:215.324000pt;}
.y269{bottom:217.358667pt;}
.y17b{bottom:217.517333pt;}
.y154{bottom:219.008000pt;}
.y15e{bottom:225.132000pt;}
.y2f{bottom:226.005333pt;}
.y236{bottom:226.498667pt;}
.y1aa{bottom:226.842667pt;}
.ya0{bottom:227.390667pt;}
.y60{bottom:227.558667pt;}
.y1cf{bottom:229.737333pt;}
.y140{bottom:231.144000pt;}
.y201{bottom:232.148000pt;}
.y268{bottom:234.574667pt;}
.yf2{bottom:234.893333pt;}
.y17a{bottom:235.529333pt;}
.y153{bottom:236.104000pt;}
.y235{bottom:243.713333pt;}
.y2e{bottom:244.017333pt;}
.y9f{bottom:244.486667pt;}
.y1a9{bottom:244.854667pt;}
.y5f{bottom:245.572000pt;}
.y13f{bottom:248.240000pt;}
.y200{bottom:248.973333pt;}
.yf1{bottom:249.904000pt;}
.y12f{bottom:251.656000pt;}
.y267{bottom:251.790667pt;}
.y179{bottom:253.541333pt;}
.y1ce{bottom:255.720000pt;}
.y148{bottom:256.041333pt;}
.y234{bottom:260.929333pt;}
.y15d{bottom:261.157333pt;}
.y2d{bottom:262.029333pt;}
.y1a8{bottom:262.866667pt;}
.y5e{bottom:263.584000pt;}
.y93{bottom:264.424000pt;}
.y13e{bottom:265.336000pt;}
.y1ff{bottom:265.798667pt;}
.y12e{bottom:268.752000pt;}
.y266{bottom:269.005333pt;}
.y92{bottom:270.837333pt;}
.y178{bottom:271.554667pt;}
.y233{bottom:278.145333pt;}
.y2c{bottom:280.042667pt;}
.yf0{bottom:280.854667pt;}
.y1a7{bottom:280.880000pt;}
.y5d{bottom:281.597333pt;}
.y13d{bottom:282.432000pt;}
.y1fe{bottom:282.622667pt;}
.y12d{bottom:283.516000pt;}
.y12c{bottom:285.848000pt;}
.y265{bottom:286.221333pt;}
.y1cd{bottom:286.670667pt;}
.y91{bottom:288.849333pt;}
.y177{bottom:289.566667pt;}
.y232{bottom:295.360000pt;}
.y2b{bottom:298.054667pt;}
.yef{bottom:298.866667pt;}
.y1a6{bottom:298.892000pt;}
.y1fd{bottom:299.448000pt;}
.y5c{bottom:299.609333pt;}
.y130{bottom:302.368447pt;}
.y12b{bottom:302.944000pt;}
.y264{bottom:303.437333pt;}
.y1cc{bottom:304.684000pt;}
.y90{bottom:306.862667pt;}
.y176{bottom:307.580000pt;}
.y231{bottom:312.576000pt;}
.y2a{bottom:316.068000pt;}
.y1fc{bottom:316.273333pt;}
.yee{bottom:316.880000pt;}
.y1a5{bottom:316.905333pt;}
.y5b{bottom:317.621333pt;}
.y12a{bottom:317.708000pt;}
.y129{bottom:320.040000pt;}
.y263{bottom:320.652000pt;}
.y1cb{bottom:322.696000pt;}
.y8f{bottom:324.874667pt;}
.y175{bottom:325.592000pt;}
.y230{bottom:329.790667pt;}
.y1fb{bottom:333.097333pt;}
.y15c{bottom:333.208000pt;}
.y29{bottom:334.080000pt;}
.yed{bottom:334.892000pt;}
.y1a4{bottom:334.917333pt;}
.y271{bottom:335.536000pt;}
.y5a{bottom:335.634667pt;}
.y262{bottom:337.868000pt;}
.y107{bottom:339.977333pt;}
.y8e{bottom:340.461333pt;}
.y1ca{bottom:340.709333pt;}
.y8d{bottom:342.888000pt;}
.y174{bottom:343.604000pt;}
.y22f{bottom:347.006667pt;}
.y1fa{bottom:349.922667pt;}
.y1a3{bottom:350.502667pt;}
.y15b{bottom:351.220000pt;}
.y28{bottom:352.092000pt;}
.yec{bottom:352.904000pt;}
.y1a2{bottom:352.929333pt;}
.y59{bottom:353.646667pt;}
.y261{bottom:355.082667pt;}
.y1c9{bottom:358.721333pt;}
.y8b{bottom:360.900000pt;}
.y173{bottom:361.617333pt;}
.y22e{bottom:364.222667pt;}
.y8c{bottom:365.721333pt;}
.y1f9{bottom:366.748000pt;}
.y27{bottom:370.105333pt;}
.yeb{bottom:370.917333pt;}
.y58{bottom:371.660000pt;}
.y260{bottom:372.298667pt;}
.y1c8{bottom:374.306667pt;}
.y1c7{bottom:376.733333pt;}
.y89{bottom:378.912000pt;}
.y172{bottom:379.629333pt;}
.y22d{bottom:381.437333pt;}
.y1f8{bottom:383.572000pt;}
.y8a{bottom:383.734667pt;}
.y120{bottom:387.880472pt;}
.y26{bottom:388.117333pt;}
.yea{bottom:388.929333pt;}
.y25f{bottom:389.514667pt;}
.y57{bottom:389.672000pt;}
.y88{bottom:394.498667pt;}
.y1c5{bottom:394.746667pt;}
.y87{bottom:396.925333pt;}
.y171{bottom:397.642667pt;}
.y22c{bottom:398.653333pt;}
.y1c6{bottom:399.568000pt;}
.y1f7{bottom:400.397333pt;}
.y11f{bottom:405.880400pt;}
.y11e{bottom:405.880616pt;}
.y25{bottom:406.130667pt;}
.y25e{bottom:406.729333pt;}
.ye9{bottom:406.942667pt;}
.y56{bottom:407.684000pt;}
.y1a1{bottom:409.862667pt;}
.y1c4{bottom:412.758667pt;}
.y86{bottom:414.937333pt;}
.y170{bottom:415.654667pt;}
.y22b{bottom:415.868000pt;}
.y1f6{bottom:417.222667pt;}
.y11d{bottom:423.880544pt;}
.y25d{bottom:423.945333pt;}
.y24{bottom:424.142667pt;}
.ye8{bottom:424.954667pt;}
.y55{bottom:425.697333pt;}
.y1a0{bottom:427.876000pt;}
.y85{bottom:430.524000pt;}
.y1c3{bottom:430.772000pt;}
.y84{bottom:432.950667pt;}
.y22a{bottom:433.084000pt;}
.y16f{bottom:433.666667pt;}
.y1f5{bottom:434.048000pt;}
.y25c{bottom:441.160000pt;}
.y11c{bottom:441.880472pt;}
.y23{bottom:442.154667pt;}
.y19f{bottom:443.461333pt;}
.y54{bottom:443.709333pt;}
.y19e{bottom:445.888000pt;}
.y1c2{bottom:446.357333pt;}
.y83{bottom:448.536000pt;}
.y1c1{bottom:448.784000pt;}
.y229{bottom:450.300000pt;}
.y1f4{bottom:450.872000pt;}
.ye7{bottom:450.937333pt;}
.y82{bottom:450.962667pt;}
.y16e{bottom:451.680000pt;}
.y25b{bottom:458.376000pt;}
.y11b{bottom:459.880400pt;}
.y11a{bottom:459.881472pt;}
.y22{bottom:460.168000pt;}
.y53{bottom:461.722667pt;}
.y19d{bottom:463.901333pt;}
.y1c0{bottom:466.796000pt;}
.y228{bottom:467.514667pt;}
.y1f3{bottom:467.697333pt;}
.y81{bottom:468.974667pt;}
.y16d{bottom:469.692000pt;}
.y25a{bottom:475.592000pt;}
.y119{bottom:477.801240pt;}
.y52{bottom:479.734667pt;}
.ye6{bottom:481.888000pt;}
.y19c{bottom:481.913333pt;}
.y1f2{bottom:484.522667pt;}
.y227{bottom:484.730667pt;}
.y1bf{bottom:484.809333pt;}
.y80{bottom:486.988000pt;}
.y16c{bottom:487.704000pt;}
.y1f{bottom:491.025301pt;}
.y1e{bottom:491.374667pt;}
.y259{bottom:492.806667pt;}
.y118{bottom:495.801168pt;}
.ye5{bottom:497.473333pt;}
.y51{bottom:497.746667pt;}
.ye4{bottom:499.900000pt;}
.y19b{bottom:499.925333pt;}
.y1f1{bottom:501.346667pt;}
.y226{bottom:501.945333pt;}
.y15a{bottom:502.569333pt;}
.y1be{bottom:502.821333pt;}
.y16b{bottom:505.717333pt;}
.y258{bottom:510.022667pt;}
.y7f{bottom:512.970667pt;}
.y117{bottom:513.801096pt;}
.y50{bottom:515.760000pt;}
.ye3{bottom:517.913333pt;}
.y199{bottom:517.938667pt;}
.y1f0{bottom:518.172000pt;}
.y225{bottom:519.161333pt;}
.y1bd{bottom:520.834667pt;}
.y19a{bottom:522.760000pt;}
.y16a{bottom:523.729333pt;}
.y1d{bottom:526.372000pt;}
.y257{bottom:527.237333pt;}
.y116{bottom:531.801024pt;}
.y4f{bottom:533.772000pt;}
.ye2{bottom:535.925333pt;}
.y198{bottom:535.950667pt;}
.y224{bottom:536.377333pt;}
.y159{bottom:538.594667pt;}
.y1bc{bottom:538.846667pt;}
.y169{bottom:541.742667pt;}
.y1c{bottom:542.512000pt;}
.y1ef{bottom:543.845333pt;}
.y7e{bottom:543.921333pt;}
.y256{bottom:544.453333pt;}
.y115{bottom:549.800952pt;}
.y4e{bottom:551.785333pt;}
.y223{bottom:553.592000pt;}
.ye1{bottom:553.938667pt;}
.y197{bottom:553.964000pt;}
.y1bb{bottom:556.858667pt;}
.y168{bottom:559.754667pt;}
.y255{bottom:561.669333pt;}
.y7d{bottom:561.933333pt;}
.y1b{bottom:562.990667pt;}
.y114{bottom:567.800880pt;}
.ye0{bottom:569.524000pt;}
.y4d{bottom:569.797333pt;}
.y222{bottom:570.808000pt;}
.ydf{bottom:571.950667pt;}
.y196{bottom:571.976000pt;}
.y1a{bottom:574.790667pt;}
.y1ee{bottom:574.796000pt;}
.y1b9{bottom:574.872000pt;}
.y167{bottom:577.766667pt;}
.y254{bottom:578.884000pt;}
.y1ba{bottom:579.693333pt;}
.y7c{bottom:579.945333pt;}
.y113{bottom:585.800808pt;}
.y4c{bottom:587.809333pt;}
.y221{bottom:588.024000pt;}
.yde{bottom:589.962667pt;}
.y195{bottom:589.988000pt;}
.y1b8{bottom:592.884000pt;}
.y19{bottom:595.270667pt;}
.y166{bottom:595.780000pt;}
.y253{bottom:596.100000pt;}
.y1ed{bottom:596.274667pt;}
.y7b{bottom:597.958667pt;}
.y112{bottom:603.720576pt;}
.y220{bottom:605.238667pt;}
.y4b{bottom:605.822667pt;}
.y18{bottom:607.070667pt;}
.ydd{bottom:607.976000pt;}
.y194{bottom:608.001333pt;}
.y1b7{bottom:610.896000pt;}
.y252{bottom:613.314667pt;}
.y165{bottom:613.792000pt;}
.y7a{bottom:615.970667pt;}
.y1ec{bottom:617.754667pt;}
.y111{bottom:621.720504pt;}
.y21f{bottom:622.454667pt;}
.y17{bottom:623.209333pt;}
.y4a{bottom:623.834667pt;}
.ydc{bottom:625.988000pt;}
.y193{bottom:626.013333pt;}
.y1b6{bottom:628.909333pt;}
.y251{bottom:630.530667pt;}
.y1eb{bottom:631.264000pt;}
.y164{bottom:631.805333pt;}
.y79{bottom:633.984000pt;}
.y21e{bottom:639.669333pt;}
.y49{bottom:641.846667pt;}
.y16{bottom:643.689333pt;}
.ydb{bottom:644.001333pt;}
.y192{bottom:644.026667pt;}
.y1ea{bottom:644.773333pt;}
.y1b4{bottom:646.921333pt;}
.y110{bottom:647.720400pt;}
.y250{bottom:647.746667pt;}
.y163{bottom:649.817333pt;}
.y1b5{bottom:651.744000pt;}
.y78{bottom:651.996000pt;}
.y274{bottom:654.048000pt;}
.y21d{bottom:656.885333pt;}
.y15{bottom:659.828000pt;}
.y48{bottom:659.860000pt;}
.yda{bottom:662.013333pt;}
.y190{bottom:662.038667pt;}
.y1b3{bottom:664.934667pt;}
.y24f{bottom:664.961333pt;}
.y1e9{bottom:666.253333pt;}
.y191{bottom:666.860000pt;}
.y162{bottom:667.829333pt;}
.y77{bottom:670.008000pt;}
.y273{bottom:671.262667pt;}
.y14{bottom:671.628000pt;}
.y21c{bottom:674.101333pt;}
.y47{bottom:677.872000pt;}
.y1e8{bottom:679.762667pt;}
.yd9{bottom:680.025333pt;}
.y18f{bottom:680.050667pt;}
.y10f{bottom:681.320400pt;}
.y24e{bottom:682.177333pt;}
.y161{bottom:685.842667pt;}
.y76{bottom:688.021333pt;}
.y272{bottom:688.478667pt;}
.y1b2{bottom:690.917333pt;}
.y21b{bottom:691.316000pt;}
.y13{bottom:692.108000pt;}
.y1e7{bottom:693.272000pt;}
.y18e{bottom:695.637333pt;}
.y46{bottom:695.885333pt;}
.yd8{bottom:698.038667pt;}
.y18c{bottom:698.064000pt;}
.y10e{bottom:698.600800pt;}
.y24d{bottom:699.392000pt;}
.y18d{bottom:702.885333pt;}
.y160{bottom:703.854667pt;}
.y12{bottom:703.908000pt;}
.y75{bottom:706.033333pt;}
.y21a{bottom:708.532000pt;}
.y45{bottom:713.897333pt;}
.y1e6{bottom:714.750667pt;}
.y10d{bottom:716.040400pt;}
.yd7{bottom:716.050667pt;}
.y18b{bottom:716.076000pt;}
.y24c{bottom:716.608000pt;}
.y106{bottom:721.868000pt;}
.yb6{bottom:722.121812pt;}
.y74{bottom:724.046667pt;}
.y11{bottom:724.386667pt;}
.y13b{bottom:724.418766pt;}
.y219{bottom:725.746667pt;}
.y1e5{bottom:730.514667pt;}
.y44{bottom:731.909333pt;}
.y10c{bottom:733.320533pt;}
.y24b{bottom:733.824000pt;}
.y18a{bottom:734.088000pt;}
.y10{bottom:736.186667pt;}
.y105{bottom:739.880000pt;}
.y13a{bottom:741.518697pt;}
.yd6{bottom:742.033333pt;}
.y73{bottom:742.058667pt;}
.y218{bottom:742.962667pt;}
.y1e4{bottom:744.025333pt;}
.y43{bottom:749.922667pt;}
.y10b{bottom:750.599600pt;}
.y24a{bottom:751.038667pt;}
.yf{bottom:756.665333pt;}
.y1e3{bottom:757.534667pt;}
.y104{bottom:757.892000pt;}
.y139{bottom:758.618629pt;}
.y72{bottom:760.070667pt;}
.y217{bottom:760.178667pt;}
.y94{bottom:763.612913pt;}
.yd5{bottom:766.968000pt;}
.y149{bottom:767.867647pt;}
.y42{bottom:767.934667pt;}
.y10a{bottom:767.960000pt;}
.y249{bottom:768.254667pt;}
.ye{bottom:768.465333pt;}
.y1e2{bottom:771.044000pt;}
.y138{bottom:775.718561pt;}
.y103{bottom:775.905333pt;}
.y216{bottom:777.393333pt;}
.y71{bottom:778.084000pt;}
.yd3{bottom:784.064000pt;}
.y1e1{bottom:784.553333pt;}
.yd{bottom:784.605333pt;}
.y248{bottom:785.469333pt;}
.y41{bottom:785.948000pt;}
.yd4{bottom:788.404000pt;}
.y189{bottom:791.021333pt;}
.y137{bottom:792.818492pt;}
.y102{bottom:793.917333pt;}
.y215{bottom:794.609333pt;}
.y70{bottom:796.096000pt;}
.y1e0{bottom:798.062667pt;}
.y108{bottom:801.000400pt;}
.yd2{bottom:801.160000pt;}
.y247{bottom:802.685333pt;}
.y40{bottom:803.960000pt;}
.yc{bottom:805.084000pt;}
.y188{bottom:809.034667pt;}
.y136{bottom:809.918424pt;}
.y1df{bottom:811.572000pt;}
.y214{bottom:811.824000pt;}
.y101{bottom:811.930667pt;}
.y6f{bottom:814.109333pt;}
.yd0{bottom:818.256000pt;}
.y246{bottom:819.901333pt;}
.y3f{bottom:821.972000pt;}
.yd1{bottom:822.594667pt;}
.yb{bottom:824.216000pt;}
.y135{bottom:826.942203pt;}
.y187{bottom:827.046667pt;}
.y213{bottom:829.040000pt;}
.y100{bottom:829.942667pt;}
.y6e{bottom:832.121333pt;}
.y1de{bottom:833.050667pt;}
.yce{bottom:835.352000pt;}
.y245{bottom:837.116000pt;}
.ycf{bottom:839.690667pt;}
.y3e{bottom:839.985333pt;}
.ya{bottom:842.229333pt;}
.y134{bottom:844.042135pt;}
.y186{bottom:845.060000pt;}
.y212{bottom:846.256000pt;}
.y1dd{bottom:846.560000pt;}
.yff{bottom:847.954667pt;}
.y6d{bottom:850.133333pt;}
.ycd{bottom:852.446667pt;}
.y244{bottom:854.332000pt;}
.y3d{bottom:857.997333pt;}
.y1dc{bottom:860.070667pt;}
.y9{bottom:860.241333pt;}
.y133{bottom:861.142067pt;}
.y185{bottom:863.072000pt;}
.y211{bottom:863.470667pt;}
.yfe{bottom:865.968000pt;}
.yb4{bottom:869.542667pt;}
.y1b1{bottom:870.789333pt;}
.y243{bottom:871.546667pt;}
.y1db{bottom:873.580000pt;}
.y3c{bottom:876.010667pt;}
.y6c{bottom:876.116000pt;}
.y210{bottom:880.686667pt;}
.y184{bottom:881.084000pt;}
.yfd{bottom:883.980000pt;}
.yb2{bottom:886.638667pt;}
.y1da{bottom:887.089333pt;}
.y242{bottom:888.762667pt;}
.yb3{bottom:890.978667pt;}
.y131{bottom:892.758067pt;}
.y3b{bottom:894.022667pt;}
.y20f{bottom:897.901333pt;}
.y8{bottom:898.178667pt;}
.y183{bottom:899.097333pt;}
.y1d9{bottom:900.598667pt;}
.yfc{bottom:901.993333pt;}
.yb0{bottom:903.734667pt;}
.y241{bottom:905.978667pt;}
.y6b{bottom:907.066667pt;}
.yb1{bottom:908.074667pt;}
.y3a{bottom:912.034667pt;}
.y20e{bottom:915.117333pt;}
.y182{bottom:917.109333pt;}
.ycc{bottom:918.500000pt;}
.yfb{bottom:920.005333pt;}
.yae{bottom:920.830667pt;}
.y240{bottom:923.193333pt;}
.yaf{bottom:925.170667pt;}
.y7{bottom:925.198667pt;}
.y39{bottom:930.048000pt;}
.y20d{bottom:932.333333pt;}
.y181{bottom:935.122667pt;}
.yac{bottom:937.926667pt;}
.y6a{bottom:938.017333pt;}
.y23f{bottom:940.409333pt;}
.yad{bottom:942.266667pt;}
.y38{bottom:948.060000pt;}
.y20c{bottom:949.548000pt;}
.y6{bottom:952.217333pt;}
.ycb{bottom:952.690667pt;}
.yaa{bottom:955.022667pt;}
.y69{bottom:956.030667pt;}
.y23e{bottom:957.624000pt;}
.yab{bottom:959.362667pt;}
.y180{bottom:961.105333pt;}
.y37{bottom:966.073333pt;}
.y20b{bottom:966.764000pt;}
.ya9{bottom:972.118667pt;}
.y68{bottom:974.042667pt;}
.y23d{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y20a{bottom:991.949333pt;}
.y36{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y35{bottom:1038.548000pt;}
.hc{height:22.673858pt;}
.h2c{height:23.031250pt;}
.h23{height:25.320412pt;}
.h1d{height:25.811318pt;}
.ha{height:27.076941pt;}
.h30{height:27.226250pt;}
.h14{height:28.023859pt;}
.h13{height:29.397999pt;}
.he{height:29.433775pt;}
.h2e{height:29.593750pt;}
.h20{height:29.752734pt;}
.h17{height:30.392578pt;}
.hd{height:30.399505pt;}
.h11{height:31.200285pt;}
.h3{height:31.890083pt;}
.h28{height:31.992188pt;}
.h1b{height:33.186336pt;}
.h1c{height:33.378918pt;}
.h1a{height:34.430976pt;}
.hb{height:34.813542pt;}
.h4{height:35.024664pt;}
.h33{height:35.100467pt;}
.h1f{height:36.604509pt;}
.h12{height:36.873667pt;}
.h25{height:37.087439pt;}
.h16{height:37.391703pt;}
.hf{height:38.256384pt;}
.h2b{height:38.462187pt;}
.h10{height:38.681455pt;}
.h6{height:39.000258pt;}
.h27{height:39.359687pt;}
.h5{height:41.001535pt;}
.h22{height:41.283281pt;}
.h19{height:42.171094pt;}
.h21{height:43.651875pt;}
.h35{height:43.660390pt;}
.h29{height:44.390625pt;}
.h2a{height:44.394358pt;}
.h24{height:44.436941pt;}
.h18{height:44.590625pt;}
.h2{height:45.272024pt;}
.h2f{height:46.937500pt;}
.h32{height:46.950484pt;}
.h9{height:48.360277pt;}
.h8{height:48.365611pt;}
.h2d{height:49.421563pt;}
.h7{height:68.861952pt;}
.h26{height:360.877333pt;}
.h31{height:702.974287pt;}
.h1e{height:704.467560pt;}
.h15{height:740.918933pt;}
.h34{height:749.301733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w6{width:356.673333pt;}
.w4{width:529.228153pt;}
.w8{width:561.310540pt;}
.w5{width:563.051884pt;}
.w7{width:571.832740pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xda{left:-117.949333pt;}
.xdb{left:-89.628981pt;}
.xe7{left:-54.349333pt;}
.xe8{left:-50.669333pt;}
.xe9{left:-41.229333pt;}
.xea{left:-37.629333pt;}
.x6b{left:-8.869580pt;}
.xde{left:-5.069333pt;}
.x8d{left:-2.166156pt;}
.xdf{left:-1.069333pt;}
.x0{left:0.000000pt;}
.xf0{left:1.115807pt;}
.xe0{left:9.410667pt;}
.xe1{left:13.330667pt;}
.x6d{left:18.034420pt;}
.x8f{left:24.171444pt;}
.x8{left:26.021437pt;}
.xf1{left:28.019807pt;}
.x91{left:33.471444pt;}
.x92{left:36.893844pt;}
.x93{left:45.673044pt;}
.x94{left:49.095444pt;}
.x3{left:53.357850pt;}
.x29{left:100.054667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.xef{left:110.936127pt;}
.x8c{left:115.327876pt;}
.x5{left:129.929333pt;}
.x6a{left:132.237713pt;}
.xf4{left:133.937333pt;}
.x11c{left:134.973333pt;}
.x9d{left:140.330667pt;}
.x21{left:142.369333pt;}
.x9e{left:145.644000pt;}
.x101{left:148.248000pt;}
.x137{left:150.609333pt;}
.x22{left:155.653333pt;}
.x23{left:158.968000pt;}
.x2{left:161.132773pt;}
.x12d{left:162.884000pt;}
.x12e{left:167.342667pt;}
.x115{left:168.356000pt;}
.x109{left:169.689333pt;}
.x24{left:172.250667pt;}
.xec{left:173.204000pt;}
.x9{left:174.220000pt;}
.x116{left:175.130667pt;}
.x10a{left:176.198667pt;}
.xed{left:178.517333pt;}
.x42{left:180.325333pt;}
.x6e{left:181.557333pt;}
.xf3{left:182.574667pt;}
.x12f{left:183.613333pt;}
.xe{left:185.506667pt;}
.x44{left:187.306667pt;}
.x117{left:188.413333pt;}
.x10b{left:189.481333pt;}
.x43{left:193.609333pt;}
.xee{left:196.132000pt;}
.xd3{left:198.380000pt;}
.x45{left:200.589333pt;}
.x46{left:203.977333pt;}
.x13a{left:211.252000pt;}
.xd4{left:212.609333pt;}
.xa6{left:215.780000pt;}
.x47{left:217.260000pt;}
.xd9{left:218.514667pt;}
.x120{left:220.733333pt;}
.xa7{left:224.092000pt;}
.x80{left:226.233333pt;}
.x10c{left:227.866667pt;}
.x58{left:231.433333pt;}
.x81{left:232.532000pt;}
.x71{left:234.430667pt;}
.x10d{left:236.610667pt;}
.x59{left:238.216000pt;}
.xc3{left:240.165333pt;}
.xbc{left:241.460000pt;}
.x65{left:242.550667pt;}
.x72{left:244.262667pt;}
.x95{left:246.106644pt;}
.x9c{left:248.193333pt;}
.x124{left:249.816000pt;}
.x82{left:250.772000pt;}
.x122{left:251.876000pt;}
.x32{left:252.885333pt;}
.xbd{left:254.744000pt;}
.x66{left:256.778667pt;}
.x5a{left:258.685333pt;}
.x83{left:261.902667pt;}
.x125{left:263.100000pt;}
.x33{left:266.169333pt;}
.x5b{left:267.653333pt;}
.x90{left:270.137844pt;}
.x13{left:271.293333pt;}
.xa{left:273.969333pt;}
.x106{left:276.301333pt;}
.x14{left:277.934667pt;}
.xac{left:279.160000pt;}
.x135{left:280.302667pt;}
.x15{left:281.322667pt;}
.xe5{left:283.970667pt;}
.x76{left:286.532000pt;}
.x16{left:287.964000pt;}
.x1d{left:290.529333pt;}
.x77{left:292.830667pt;}
.x113{left:295.713333pt;}
.xa9{left:296.876000pt;}
.xa1{left:298.821333pt;}
.xe6{left:300.690667pt;}
.x30{left:302.774667pt;}
.x39{left:304.186667pt;}
.x2a{left:306.292000pt;}
.x114{left:308.997333pt;}
.x3a{left:310.696000pt;}
.x78{left:311.812000pt;}
.xa2{left:313.720000pt;}
.x31{left:316.058667pt;}
.xad{left:317.253333pt;}
.xa3{left:319.033333pt;}
.xb{left:320.162667pt;}
.xc9{left:321.338667pt;}
.x2b{left:322.849333pt;}
.x3b{left:323.980000pt;}
.xca{left:327.050667pt;}
.x132{left:329.769333pt;}
.xf5{left:331.805333pt;}
.x1f{left:333.122667pt;}
.x2c{left:336.133333pt;}
.xcb{left:337.700000pt;}
.xf6{left:339.070667pt;}
.xdc{left:341.490667pt;}
.x67{left:344.016000pt;}
.x20{left:346.405333pt;}
.xcc{left:347.354667pt;}
.xc6{left:350.064000pt;}
.xdd{left:351.810667pt;}
.x84{left:353.842667pt;}
.xc7{left:356.573333pt;}
.x68{left:358.242667pt;}
.x2f{left:359.838667pt;}
.x85{left:362.154667pt;}
.xce{left:364.093333pt;}
.x5c{left:366.524000pt;}
.xf8{left:367.454667pt;}
.x7d{left:369.092000pt;}
.x96{left:370.280244pt;}
.x97{left:373.702644pt;}
.x5d{left:375.492000pt;}
.xf9{left:376.756000pt;}
.xcf{left:378.328000pt;}
.x86{left:380.278667pt;}
.x9a{left:381.220000pt;}
.x98{left:382.481844pt;}
.x25{left:384.082667pt;}
.x99{left:385.904244pt;}
.x11{left:387.464000pt;}
.x87{left:389.396000pt;}
.x10f{left:391.629333pt;}
.x12{left:394.106667pt;}
.x5e{left:395.836000pt;}
.x26{left:397.365333pt;}
.x11d{left:399.526667pt;}
.x7e{left:400.554667pt;}
.x48{left:401.780000pt;}
.x9b{left:404.121333pt;}
.x104{left:406.608000pt;}
.xd0{left:409.929333pt;}
.xc4{left:411.586667pt;}
.x3c{left:414.020000pt;}
.xae{left:414.942667pt;}
.x49{left:416.566667pt;}
.x40{left:417.722667pt;}
.x11e{left:419.665333pt;}
.xaf{left:421.242667pt;}
.x50{left:422.289333pt;}
.xc5{left:425.345333pt;}
.x133{left:426.645333pt;}
.x110{left:427.860000pt;}
.xa4{left:432.269333pt;}
.x4d{left:433.252000pt;}
.xfa{left:434.517333pt;}
.x12a{left:436.265333pt;}
.xa5{left:437.582667pt;}
.xb0{left:439.705333pt;}
.xf{left:441.872000pt;}
.x51{left:443.228000pt;}
.x123{left:444.533333pt;}
.x4e{left:447.488000pt;}
.x10{left:448.513333pt;}
.x111{left:449.745333pt;}
.x105{left:451.329333pt;}
.xc0{left:452.978667pt;}
.x73{left:454.342667pt;}
.xe2{left:457.170667pt;}
.xc1{left:458.690667pt;}
.x35{left:460.061333pt;}
.x3d{left:461.901333pt;}
.x41{left:465.278667pt;}
.x3e{left:466.413333pt;}
.xe3{left:467.650533pt;}
.xc2{left:469.340000pt;}
.xe4{left:471.650533pt;}
.x36{left:473.344000pt;}
.x37{left:476.598667pt;}
.x3f{left:479.697333pt;}
.x62{left:481.154667pt;}
.x74{left:484.938667pt;}
.xf7{left:485.909333pt;}
.x63{left:486.866667pt;}
.x38{left:489.882667pt;}
.xd5{left:491.054667pt;}
.x1e{left:492.201333pt;}
.x12c{left:493.418667pt;}
.xd6{left:495.302667pt;}
.x64{left:497.422667pt;}
.x19{left:499.146667pt;}
.xbe{left:500.933333pt;}
.xc{left:503.425333pt;}
.xfe{left:504.797333pt;}
.x1a{left:505.788000pt;}
.x88{left:507.288000pt;}
.xd7{left:508.966667pt;}
.x11f{left:511.310667pt;}
.x1b{left:512.562667pt;}
.x89{left:513.586667pt;}
.x13e{left:515.282667pt;}
.x4f{left:516.896000pt;}
.xff{left:518.080000pt;}
.x126{left:522.333333pt;}
.x55{left:523.653333pt;}
.xeb{left:524.713333pt;}
.x1c{left:525.845333pt;}
.x4a{left:528.680000pt;}
.x143{left:529.940000pt;}
.x8a{left:531.710667pt;}
.x75{left:533.414667pt;}
.xcd{left:536.360000pt;}
.x100{left:538.052000pt;}
.x34{left:539.154667pt;}
.x8b{left:540.828000pt;}
.x2d{left:543.802667pt;}
.x6c{left:545.550293pt;}
.xd{left:547.782667pt;}
.xa8{left:549.182667pt;}
.x121{left:552.593333pt;}
.x144{left:553.850667pt;}
.x9f{left:555.129333pt;}
.x2e{left:557.085333pt;}
.x129{left:558.361333pt;}
.x8e{left:560.669844pt;}
.xfb{left:561.642667pt;}
.x5f{left:563.862667pt;}
.x107{left:564.802667pt;}
.x119{left:566.337333pt;}
.xb1{left:568.021333pt;}
.x11a{left:570.474667pt;}
.x12b{left:573.268000pt;}
.xfc{left:574.925333pt;}
.xa0{left:575.973333pt;}
.xb2{left:577.326667pt;}
.xd1{left:579.206667pt;}
.x11b{left:580.968000pt;}
.x60{left:584.206667pt;}
.xaa{left:585.414667pt;}
.xf2{left:586.391807pt;}
.xb9{left:589.732000pt;}
.x61{left:590.988000pt;}
.xd2{left:593.454667pt;}
.x108{left:595.538667pt;}
.xd8{left:598.860000pt;}
.xb3{left:602.390667pt;}
.x13b{left:603.342667pt;}
.x79{left:604.754667pt;}
.xba{left:606.402667pt;}
.x69{left:608.077333pt;}
.xab{left:610.578667pt;}
.x7a{left:613.066667pt;}
.x13c{left:614.246667pt;}
.xb4{left:615.673333pt;}
.x6f{left:617.302667pt;}
.xbb{left:619.686667pt;}
.xc8{left:621.069333pt;}
.xb5{left:622.448000pt;}
.x7{left:623.413317pt;}
.x10e{left:625.537333pt;}
.x70{left:626.602667pt;}
.x4b{left:627.990667pt;}
.x7b{left:631.930667pt;}
.x118{left:634.336000pt;}
.x7f{left:636.014667pt;}
.x7c{left:638.229333pt;}
.xb6{left:639.453333pt;}
.x141{left:640.801333pt;}
.x4c{left:642.249333pt;}
.x102{left:643.456000pt;}
.x127{left:646.096000pt;}
.x52{left:647.182667pt;}
.x142{left:648.390667pt;}
.xfd{left:649.521333pt;}
.x138{left:650.725333pt;}
.xb7{left:652.737333pt;}
.x112{left:654.253333pt;}
.x56{left:655.361333pt;}
.x103{left:656.740000pt;}
.x53{left:657.832000pt;}
.x27{left:659.357333pt;}
.x134{left:664.392000pt;}
.x128{left:666.153333pt;}
.x54{left:667.149333pt;}
.xb8{left:669.408000pt;}
.x139{left:670.461333pt;}
.x140{left:671.702667pt;}
.x28{left:672.640000pt;}
.xbf{left:675.292000pt;}
.x57{left:676.448000pt;}
.x13d{left:678.405333pt;}
.x17{left:679.437333pt;}
.x136{left:680.689333pt;}
.x130{left:682.877333pt;}
.x18{left:686.078667pt;}
.x131{left:688.473333pt;}
.x13f{left:690.146667pt;}
}




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