
    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_704926f72e607b77322ef573.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_42954ba50d251b14a0fd81e4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6de231d2d91a5c3d9b2b3c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_4eeb08f6192bd464fc8ab932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_dd46ae5a118cfb7f829d834a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0e6c690bb0a90a2fa77d724c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_764736b2f31094817ed17f1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2bdd8346b708e60bf4aeaf33.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_7025a211cfa40fd1fea5a8c5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_685301f1631c0a346950c719.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a8c94269aeae4863f6a6f924.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_a68895cd4b700f8583289273.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d9084c83a207dfc3178cf1ea.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c45106dd82edd8c590d6c66e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_d565a693fb63903f931c78f1.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d9084c83a207dfc3178cf1ea.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_c45106dd82edd8c590d6c66e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_d565a693fb63903f931c78f1.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_0ae3c37088858db21c7e7314.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_99c6ec05f9c8e66493c28c9b.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_7e9536b710dce9881e7442b1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_3b1a9b38942d5f88433c95b1.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_f2e5c93a410c79e686a21394.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_97ac57f5daa0a43068ef339c.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_dd4243f4f150583d3bd26d6f.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_a4a742965463893c9d289367.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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_d8d24b3ee94642f39e3ac076.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_dd9bd535b34587211fe8b33e.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_175b99cac1c5c95c0a4ba3d6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.482000;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_bb7a7fc4df6d3eabfea88a91.woff2')format("woff");}.ff1e{font-family:ff1e;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;}
.m2{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);}
.m18{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);}
.m5{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);}
.m3{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);}
.m20{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);}
.m19{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);}
.m6{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);}
.m11{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);}
.m1f{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);}
.m22{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);}
.m1d{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);}
.m7{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);}
.m8{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);}
.m4{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);}
.m1e{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);}
.m9{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);}
.m2a{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);}
.m12{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);}
.m14{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.md{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);}
.m1a{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);}
.m1c{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.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);}
.m1b{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);}
.m16{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);}
.m25{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);}
.m17{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);}
.m10{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);}
.m2f{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);}
.m24{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);}
.m2e{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);}
.m2b{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);}
.m2c{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);}
.ma{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);}
.m28{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);}
.m2d{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);}
.me{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);}
.mb{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);}
.mc{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);}
.m29{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);}
.m27{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);}
.m13{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);}
.m26{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);}
.mf{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls86{letter-spacing:-0.351540px;}
.ls7d{letter-spacing:-0.334800px;}
.ls9d{letter-spacing:-0.252504px;}
.ls81{letter-spacing:-0.238140px;}
.ls78{letter-spacing:-0.226800px;}
.ls25{letter-spacing:-0.218236px;}
.ls9b{letter-spacing:-0.210420px;}
.lsa4{letter-spacing:-0.186372px;}
.ls1b{letter-spacing:-0.171943px;}
.ls90{letter-spacing:-0.152104px;}
.lsa3{letter-spacing:-0.144288px;}
.ls1f{letter-spacing:-0.138877px;}
.lsa2{letter-spacing:-0.126252px;}
.ls22{letter-spacing:-0.125651px;}
.ls23{letter-spacing:-0.112424px;}
.ls9e{letter-spacing:-0.108216px;}
.ls36{letter-spacing:-0.072745px;}
.ls9c{letter-spacing:-0.066132px;}
.ls34{letter-spacing:-0.065340px;}
.ls1e{letter-spacing:-0.059519px;}
.ls24{letter-spacing:-0.052906px;}
.ls82{letter-spacing:-0.050501px;}
.ls79{letter-spacing:-0.048096px;}
.ls1d{letter-spacing:-0.046292px;}
.ls9f{letter-spacing:-0.036072px;}
.ls88{letter-spacing:-0.034020px;}
.ls7f{letter-spacing:-0.032400px;}
.ls8e{letter-spacing:-0.029700px;}
.lsa1{letter-spacing:-0.024048px;}
.ls35{letter-spacing:-0.023760px;}
.lsa0{letter-spacing:-0.021600px;}
.ls19{letter-spacing:-0.019840px;}
.ls89{letter-spacing:-0.018938px;}
.ls80{letter-spacing:-0.018036px;}
.ls1a{letter-spacing:-0.013226px;}
.ls83{letter-spacing:-0.012625px;}
.ls7a{letter-spacing:-0.012024px;}
.ls21{letter-spacing:-0.011880px;}
.ls87{letter-spacing:-0.011340px;}
.ls7e{letter-spacing:-0.010800px;}
.ls37{letter-spacing:-0.006613px;}
.ls84{letter-spacing:-0.006313px;}
.ls7b{letter-spacing:-0.006012px;}
.ls85{letter-spacing:-0.005670px;}
.ls7c{letter-spacing:-0.005400px;}
.ls6{letter-spacing:0.000000px;}
.lsb1{letter-spacing:0.000335px;}
.ls27{letter-spacing:0.000612px;}
.lsa9{letter-spacing:0.000800px;}
.lsaa{letter-spacing:0.003239px;}
.lsaf{letter-spacing:0.003668px;}
.lsad{letter-spacing:0.004800px;}
.ls9{letter-spacing:0.005267px;}
.ls3d{letter-spacing:0.005400px;}
.lsb2{letter-spacing:0.005562px;}
.ls5d{letter-spacing:0.005670px;}
.ls2c{letter-spacing:0.005940px;}
.ls4c{letter-spacing:0.006012px;}
.ls6d{letter-spacing:0.006313px;}
.lsf{letter-spacing:0.006613px;}
.ls41{letter-spacing:0.010800px;}
.ls61{letter-spacing:0.011340px;}
.ls15{letter-spacing:0.011880px;}
.ls44{letter-spacing:0.012024px;}
.ls64{letter-spacing:0.012625px;}
.lsb{letter-spacing:0.013226px;}
.ls3a{letter-spacing:0.014364px;}
.ls5a{letter-spacing:0.015082px;}
.ls7{letter-spacing:0.015800px;}
.ls3c{letter-spacing:0.016200px;}
.ls5c{letter-spacing:0.017010px;}
.ls2b{letter-spacing:0.017820px;}
.ls48{letter-spacing:0.018036px;}
.ls68{letter-spacing:0.018938px;}
.ls16{letter-spacing:0.019840px;}
.ls4d{letter-spacing:0.021600px;}
.ls6e{letter-spacing:0.022680px;}
.ls2f{letter-spacing:0.023760px;}
.ls38{letter-spacing:0.023940px;}
.ls49{letter-spacing:0.024048px;}
.ls58{letter-spacing:0.025137px;}
.ls69{letter-spacing:0.025250px;}
.ls28{letter-spacing:0.026334px;}
.ls13{letter-spacing:0.026453px;}
.ls42{letter-spacing:0.027000px;}
.ls62{letter-spacing:0.028350px;}
.ls2e{letter-spacing:0.029700px;}
.ls45{letter-spacing:0.030060px;}
.ls65{letter-spacing:0.031563px;}
.ls40{letter-spacing:0.032400px;}
.ls10{letter-spacing:0.033066px;}
.ls60{letter-spacing:0.034020px;}
.ls8b{letter-spacing:0.035640px;}
.ls46{letter-spacing:0.036072px;}
.ls4f{letter-spacing:0.037800px;}
.ls66{letter-spacing:0.037876px;}
.lsd{letter-spacing:0.039679px;}
.ls70{letter-spacing:0.039690px;}
.ls93{letter-spacing:0.042084px;}
.ls3f{letter-spacing:0.043200px;}
.ls5f{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.046292px;}
.ls8f{letter-spacing:0.047520px;}
.ls4a{letter-spacing:0.048096px;}
.ls4e{letter-spacing:0.048600px;}
.ls6a{letter-spacing:0.050501px;}
.ls6f{letter-spacing:0.051030px;}
.lsc{letter-spacing:0.052906px;}
.ls94{letter-spacing:0.054000px;}
.ls47{letter-spacing:0.054108px;}
.ls67{letter-spacing:0.056813px;}
.ls95{letter-spacing:0.059400px;}
.ls17{letter-spacing:0.059519px;}
.ls53{letter-spacing:0.060120px;}
.ls74{letter-spacing:0.063126px;}
.ls8a{letter-spacing:0.065340px;}
.lse{letter-spacing:0.066132px;}
.ls6c{letter-spacing:0.069439px;}
.ls4b{letter-spacing:0.072144px;}
.ls18{letter-spacing:0.072745px;}
.ls43{letter-spacing:0.075600px;}
.ls6b{letter-spacing:0.075751px;}
.ls52{letter-spacing:0.078156px;}
.ls14{letter-spacing:0.079358px;}
.ls63{letter-spacing:0.079380px;}
.ls73{letter-spacing:0.082064px;}
.ls51{letter-spacing:0.084168px;}
.ls20{letter-spacing:0.085972px;}
.ls99{letter-spacing:0.086400px;}
.ls72{letter-spacing:0.088376px;}
.ls12{letter-spacing:0.092585px;}
.ls50{letter-spacing:0.096192px;}
.ls71{letter-spacing:0.101002px;}
.ls1c{letter-spacing:0.105811px;}
.ls96{letter-spacing:0.113400px;}
.ls30{letter-spacing:0.119038px;}
.ls26{letter-spacing:0.122257px;}
.ls3e{letter-spacing:0.124200px;}
.ls5e{letter-spacing:0.130410px;}
.ls2d{letter-spacing:0.136620px;}
.ls92{letter-spacing:0.150300px;}
.ls3b{letter-spacing:0.177156px;}
.lsa{letter-spacing:0.184338px;}
.ls5b{letter-spacing:0.186014px;}
.ls39{letter-spacing:0.191520px;}
.ls2a{letter-spacing:0.194872px;}
.ls8{letter-spacing:0.200138px;}
.ls59{letter-spacing:0.201096px;}
.ls29{letter-spacing:0.210672px;}
.ls91{letter-spacing:1.296187px;}
.ls98{letter-spacing:2.349000px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls9a{letter-spacing:12.345232px;}
.ls77{letter-spacing:12.439133px;}
.ls76{letter-spacing:12.442800px;}
.ls31{letter-spacing:12.530514px;}
.ls32{letter-spacing:12.531103px;}
.ls33{letter-spacing:12.533618px;}
.lsa7{letter-spacing:12.809584px;}
.ls75{letter-spacing:12.870443px;}
.lsa6{letter-spacing:13.135287px;}
.ls8c{letter-spacing:13.406771px;}
.ls8d{letter-spacing:13.410490px;}
.ls55{letter-spacing:13.444800px;}
.ls57{letter-spacing:13.447133px;}
.lsa8{letter-spacing:13.448400px;}
.lsae{letter-spacing:13.449754px;}
.ls97{letter-spacing:13.450090px;}
.ls56{letter-spacing:13.450800px;}
.lsac{letter-spacing:13.454400px;}
.lsb0{letter-spacing:13.503341px;}
.ls54{letter-spacing:13.536782px;}
.lsab{letter-spacing:13.685694px;}
.lsa5{letter-spacing:15.591576px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.355200px;}
.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;}
}
.ws147{word-spacing:-15.030000px;}
.ws8d{word-spacing:-14.943900px;}
.ws86{word-spacing:-14.850000px;}
.wsbd{word-spacing:-14.175000px;}
.wsb4{word-spacing:-13.500000px;}
.ws88{word-spacing:-13.449600px;}
.ws85{word-spacing:-13.377672px;}
.ws40{word-spacing:-13.367138px;}
.ws41{word-spacing:-13.167000px;}
.wsbb{word-spacing:-12.769596px;}
.wsbc{word-spacing:-12.568500px;}
.wsb2{word-spacing:-12.161520px;}
.wsb3{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws1a6{word-spacing:-3.108331px;}
.ws1aa{word-spacing:-2.988780px;}
.ws1a9{word-spacing:-2.869229px;}
.ws15a{word-spacing:-2.795580px;}
.ws159{word-spacing:-2.765520px;}
.ws6f{word-spacing:-2.737865px;}
.ws158{word-spacing:-2.717424px;}
.ws13c{word-spacing:-2.631420px;}
.ws10e{word-spacing:-2.600791px;}
.ws13a{word-spacing:-2.595780px;}
.ws10f{word-spacing:-2.575541px;}
.ws13b{word-spacing:-2.542320px;}
.wsd9{word-spacing:-2.476944px;}
.wsda{word-spacing:-2.452896px;}
.ws82{word-spacing:-2.347686px;}
.ws56{word-spacing:-2.308007px;}
.ws67{word-spacing:-2.301394px;}
.ws55{word-spacing:-2.281554px;}
.wsab{word-spacing:-2.261714px;}
.ws1b2{word-spacing:-2.211697px;}
.ws1a{word-spacing:-2.205734px;}
.ws1b{word-spacing:-2.151936px;}
.wsaa{word-spacing:-2.142677px;}
.ws192{word-spacing:-2.098188px;}
.wsc1{word-spacing:-1.972595px;}
.ws80{word-spacing:-1.950894px;}
.ws83{word-spacing:-1.944281px;}
.ws1b4{word-spacing:-1.912819px;}
.ws124{word-spacing:-1.881155px;}
.ws123{word-spacing:-1.862217px;}
.ws13d{word-spacing:-1.799820px;}
.ws99{word-spacing:-1.793880px;}
.wsef{word-spacing:-1.791576px;}
.ws9e{word-spacing:-1.787940px;}
.ws9a{word-spacing:-1.782000px;}
.wsee{word-spacing:-1.773540px;}
.ws9f{word-spacing:-1.764180px;}
.ws9b{word-spacing:-1.710720px;}
.ws1b5{word-spacing:-1.673717px;}
.ws2c{word-spacing:-1.494390px;}
.ws63{word-spacing:-1.468130px;}
.ws110{word-spacing:-1.432960px;}
.ws185{word-spacing:-1.388772px;}
.ws194{word-spacing:-1.370736px;}
.wsdb{word-spacing:-1.364724px;}
.wsfe{word-spacing:-1.360800px;}
.wsff{word-spacing:-1.349460px;}
.wsfc{word-spacing:-1.332450px;}
.wsfd{word-spacing:-1.321110px;}
.wsc9{word-spacing:-1.296000px;}
.wsca{word-spacing:-1.285200px;}
.wsc7{word-spacing:-1.269000px;}
.wsc8{word-spacing:-1.258200px;}
.ws1a1{word-spacing:-1.195512px;}
.ws84{word-spacing:-1.177150px;}
.ws7{word-spacing:-1.171598px;}
.ws7a{word-spacing:-1.150697px;}
.ws19f{word-spacing:-1.135736px;}
.ws14c{word-spacing:-1.129766px;}
.ws79{word-spacing:-1.111018px;}
.ws91{word-spacing:-1.075961px;}
.ws9{word-spacing:-1.046070px;}
.ws12a{word-spacing:-1.041579px;}
.ws12b{word-spacing:-1.022641px;}
.wsbf{word-spacing:-1.022170px;}
.ws15d{word-spacing:-1.016028px;}
.ws11f{word-spacing:-0.992250px;}
.wsf5{word-spacing:-0.991980px;}
.wsf6{word-spacing:-0.973944px;}
.ws20{word-spacing:-0.968371px;}
.wsea{word-spacing:-0.945000px;}
.ws11e{word-spacing:-0.929880px;}
.ws57{word-spacing:-0.919235px;}
.ws8a{word-spacing:-0.914573px;}
.ws92{word-spacing:-0.896634px;}
.wse9{word-spacing:-0.885600px;}
.ws1c9{word-spacing:-0.860774px;}
.ws8b{word-spacing:-0.836858px;}
.wsbe{word-spacing:-0.806976px;}
.ws94{word-spacing:-0.777083px;}
.wsa9{word-spacing:-0.767131px;}
.ws93{word-spacing:-0.747744px;}
.ws4e{word-spacing:-0.747292px;}
.ws127{word-spacing:-0.738574px;}
.ws125{word-spacing:-0.732262px;}
.ws78{word-spacing:-0.720839px;}
.ws2b{word-spacing:-0.717307px;}
.wsf2{word-spacing:-0.703404px;}
.ws89{word-spacing:-0.699379px;}
.wsf0{word-spacing:-0.697392px;}
.ws8f{word-spacing:-0.657532px;}
.ws1ca{word-spacing:-0.645581px;}
.ws160{word-spacing:-0.643284px;}
.ws15e{word-spacing:-0.619236px;}
.ws8c{word-spacing:-0.597756px;}
.wsc0{word-spacing:-0.591782px;}
.ws15f{word-spacing:-0.589176px;}
.ws145{word-spacing:-0.575348px;}
.ws77{word-spacing:-0.568735px;}
.ws15c{word-spacing:-0.517032px;}
.ws90{word-spacing:-0.478205px;}
.ws65{word-spacing:-0.363726px;}
.ws29{word-spacing:-0.358654px;}
.ws114{word-spacing:-0.353506px;}
.ws17b{word-spacing:-0.342684px;}
.wsdf{word-spacing:-0.336672px;}
.ws2{word-spacing:-0.334742px;}
.ws5d{word-spacing:-0.330660px;}
.ws113{word-spacing:-0.328255px;}
.ws177{word-spacing:-0.324648px;}
.ws1c0{word-spacing:-0.322790px;}
.wsa8{word-spacing:-0.317434px;}
.wsde{word-spacing:-0.312624px;}
.ws95{word-spacing:-0.305474px;}
.ws126{word-spacing:-0.303005px;}
.ws17a{word-spacing:-0.300600px;}
.ws49{word-spacing:-0.300208px;}
.ws28{word-spacing:-0.298878px;}
.ws64{word-spacing:-0.297594px;}
.wsf9{word-spacing:-0.291589px;}
.wsf1{word-spacing:-0.288576px;}
.wsc4{word-spacing:-0.277704px;}
.ws18a{word-spacing:-0.276552px;}
.ws14b{word-spacing:-0.268992px;}
.ws5c{word-spacing:-0.251302px;}
.ws168{word-spacing:-0.240480px;}
.ws42{word-spacing:-0.239102px;}
.ws141{word-spacing:-0.237600px;}
.ws189{word-spacing:-0.228456px;}
.ws13f{word-spacing:-0.225720px;}
.ws148{word-spacing:-0.215194px;}
.ws13e{word-spacing:-0.201960px;}
.ws27{word-spacing:-0.179327px;}
.ws164{word-spacing:-0.178200px;}
.ws155{word-spacing:-0.167400px;}
.ws1e2{word-spacing:-0.161395px;}
.ws140{word-spacing:-0.160380px;}
.ws165{word-spacing:-0.151200px;}
.ws38{word-spacing:-0.119551px;}
.ws96{word-spacing:-0.110603px;}
.wsb6{word-spacing:-0.107597px;}
.wsfa{word-spacing:-0.105575px;}
.ws4a{word-spacing:-0.105336px;}
.wsc5{word-spacing:-0.100548px;}
.ws43{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.wsb1{word-spacing:-0.013226px;}
.ws5a{word-spacing:-0.006613px;}
.ws11{word-spacing:-0.003566px;}
.ws132{word-spacing:-0.002755px;}
.wsb7{word-spacing:-0.001939px;}
.wsb9{word-spacing:-0.001500px;}
.ws1{word-spacing:0.000000px;}
.ws47{word-spacing:0.004500px;}
.ws7c{word-spacing:0.006613px;}
.ws7b{word-spacing:0.026453px;}
.ws5e{word-spacing:0.033066px;}
.ws70{word-spacing:0.039679px;}
.wse3{word-spacing:0.042084px;}
.ws118{word-spacing:0.044188px;}
.ws137{word-spacing:0.046292px;}
.ws54{word-spacing:0.052906px;}
.ws1dd{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.ws156{word-spacing:0.060120px;}
.ws69{word-spacing:0.066132px;}
.ws154{word-spacing:0.070200px;}
.wsdd{word-spacing:0.072144px;}
.ws112{word-spacing:0.075751px;}
.wse2{word-spacing:0.090180px;}
.ws117{word-spacing:0.094689px;}
.wsd3{word-spacing:0.096192px;}
.ws167{word-spacing:0.097200px;}
.ws108{word-spacing:0.101002px;}
.wsdc{word-spacing:0.102204px;}
.ws111{word-spacing:0.107314px;}
.wsb5{word-spacing:0.107597px;}
.ws161{word-spacing:0.108216px;}
.ws53{word-spacing:0.112424px;}
.ws18d{word-spacing:0.114228px;}
.ws23{word-spacing:0.119551px;}
.ws153{word-spacing:0.124200px;}
.ws166{word-spacing:0.129600px;}
.wseb{word-spacing:0.135000px;}
.ws120{word-spacing:0.141750px;}
.wsec{word-spacing:0.145800px;}
.ws121{word-spacing:0.153090px;}
.ws1d{word-spacing:0.161395px;}
.wsd2{word-spacing:0.167400px;}
.wscf{word-spacing:0.172800px;}
.ws107{word-spacing:0.175770px;}
.wsd0{word-spacing:0.178200px;}
.wsa2{word-spacing:0.178556px;}
.ws2a{word-spacing:0.179327px;}
.ws104{word-spacing:0.181440px;}
.ws73{word-spacing:0.184140px;}
.ws105{word-spacing:0.187110px;}
.ws72{word-spacing:0.196020px;}
.ws74{word-spacing:0.207900px;}
.ws7d{word-spacing:0.211622px;}
.ws17{word-spacing:0.215194px;}
.wsed{word-spacing:0.216000px;}
.ws122{word-spacing:0.226800px;}
.ws71{word-spacing:0.238075px;}
.ws3a{word-spacing:0.239102px;}
.ws142{word-spacing:0.257915px;}
.ws1bb{word-spacing:0.268992px;}
.ws48{word-spacing:0.298878px;}
.ws1bc{word-spacing:0.322790px;}
.wsd1{word-spacing:0.410400px;}
.ws3e{word-spacing:0.418429px;}
.ws186{word-spacing:0.426852px;}
.ws106{word-spacing:0.430920px;}
.wsce{word-spacing:0.469800px;}
.ws103{word-spacing:0.493290px;}
.wscd{word-spacing:0.518400px;}
.ws133{word-spacing:0.537980px;}
.ws1e0{word-spacing:0.537984px;}
.ws102{word-spacing:0.544320px;}
.ws1b3{word-spacing:0.597756px;}
.ws1a4{word-spacing:0.657532px;}
.ws1a5{word-spacing:0.717307px;}
.ws171{word-spacing:0.751500px;}
.ws170{word-spacing:0.775548px;}
.ws199{word-spacing:0.777083px;}
.wsa4{word-spacing:0.780358px;}
.ws66{word-spacing:0.800197px;}
.ws68{word-spacing:0.806810px;}
.ws33{word-spacing:0.836858px;}
.ws6d{word-spacing:0.853103px;}
.ws1d0{word-spacing:0.860774px;}
.ws6c{word-spacing:0.879556px;}
.wsa3{word-spacing:0.892782px;}
.ws1c{word-spacing:0.914573px;}
.ws1a2{word-spacing:0.956410px;}
.ws9c{word-spacing:0.968220px;}
.ws9d{word-spacing:0.986040px;}
.ws8{word-spacing:1.004227px;}
.ws1cf{word-spacing:1.075968px;}
.ws190{word-spacing:1.100196px;}
.ws188{word-spacing:1.124244px;}
.ws3c{word-spacing:1.135736px;}
.ws1e4{word-spacing:1.183565px;}
.ws1ba{word-spacing:1.291162px;}
.ws7e{word-spacing:1.342480px;}
.ws2e{word-spacing:1.374839px;}
.ws2d{word-spacing:1.434614px;}
.ws3d{word-spacing:1.494390px;}
.ws1de{word-spacing:1.506355px;}
.ws7f{word-spacing:1.507810px;}
.ws181{word-spacing:1.551096px;}
.ws1b9{word-spacing:1.613952px;}
.wsad{word-spacing:1.620234px;}
.ws58{word-spacing:1.666526px;}
.ws1c1{word-spacing:1.667750px;}
.ws19{word-spacing:1.721549px;}
.ws1c4{word-spacing:1.775347px;}
.ws18b{word-spacing:1.791576px;}
.ws1b8{word-spacing:1.793268px;}
.ws16{word-spacing:1.829146px;}
.wsf8{word-spacing:1.833660px;}
.ws18c{word-spacing:1.851696px;}
.wsc3{word-spacing:1.853044px;}
.ws169{word-spacing:1.875744px;}
.ws18e{word-spacing:1.881756px;}
.ws182{word-spacing:1.893780px;}
.ws18f{word-spacing:1.899792px;}
.ws1a3{word-spacing:1.912819px;}
.ws12d{word-spacing:1.925343px;}
.wsac{word-spacing:1.997186px;}
.ws59{word-spacing:2.023639px;}
.ws35{word-spacing:2.032370px;}
.ws1f{word-spacing:2.098138px;}
.ws1a0{word-spacing:2.151922px;}
.ws1c3{word-spacing:2.151936px;}
.ws1b7{word-spacing:2.211697px;}
.ws157{word-spacing:2.218428px;}
.wsd4{word-spacing:2.242476px;}
.ws19b{word-spacing:2.271473px;}
.ws16a{word-spacing:2.272536px;}
.ws14e{word-spacing:2.295000px;}
.wse7{word-spacing:2.300400px;}
.ws14f{word-spacing:2.322000px;}
.ws32{word-spacing:2.331248px;}
.wse4{word-spacing:2.332800px;}
.wse6{word-spacing:2.349000px;}
.wse5{word-spacing:2.354400px;}
.ws109{word-spacing:2.354600px;}
.wsae{word-spacing:2.407205px;}
.ws11c{word-spacing:2.415420px;}
.ws119{word-spacing:2.449440px;}
.ws11b{word-spacing:2.466450px;}
.ws11a{word-spacing:2.472120px;}
.ws76{word-spacing:2.473337px;}
.ws75{word-spacing:2.486563px;}
.ws24{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws3{word-spacing:2.511702px;}
.ws151{word-spacing:2.662200px;}
.ws1c8{word-spacing:2.689920px;}
.ws152{word-spacing:2.700000px;}
.ws150{word-spacing:2.716200px;}
.ws144{word-spacing:2.843676px;}
.ws15b{word-spacing:2.867724px;}
.ws13{word-spacing:2.869236px;}
.ws174{word-spacing:2.903796px;}
.ws1da{word-spacing:2.958912px;}
.ws37{word-spacing:2.988780px;}
.ws135{word-spacing:3.168107px;}
.ws143{word-spacing:3.200789px;}
.ws21{word-spacing:3.219667px;}
.ws1cb{word-spacing:3.221011px;}
.ws1e9{word-spacing:3.222019px;}
.ws1e1{word-spacing:3.223555px;}
.ws1df{word-spacing:3.225283px;}
.ws1dc{word-spacing:3.225994px;}
.ws26{word-spacing:3.227882px;}
.ws1ce{word-spacing:3.227904px;}
.wse0{word-spacing:3.270528px;}
.ws176{word-spacing:3.276540px;}
.ws195{word-spacing:3.312612px;}
.wse1{word-spacing:3.324636px;}
.ws175{word-spacing:3.330648px;}
.ws1b1{word-spacing:3.347434px;}
.ws196{word-spacing:3.348684px;}
.ws138{word-spacing:3.356100px;}
.ws139{word-spacing:3.362040px;}
.ws163{word-spacing:3.396600px;}
.ws162{word-spacing:3.412800px;}
.ws115{word-spacing:3.434054px;}
.ws3b{word-spacing:3.466985px;}
.ws116{word-spacing:3.490868px;}
.ws87{word-spacing:3.496896px;}
.ws1ab{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.ws198{word-spacing:3.646312px;}
.ws191{word-spacing:3.649284px;}
.ws18{word-spacing:3.658291px;}
.ws19a{word-spacing:3.706087px;}
.wsa0{word-spacing:3.748140px;}
.ws19c{word-spacing:3.765863px;}
.wsa1{word-spacing:3.795660px;}
.ws1e{word-spacing:3.873485px;}
.ws1ad{word-spacing:3.885414px;}
.ws19e{word-spacing:3.945190px;}
.wsaf{word-spacing:3.961307px;}
.ws98{word-spacing:3.981146px;}
.wsb0{word-spacing:3.987760px;}
.ws51{word-spacing:3.994373px;}
.wsc2{word-spacing:4.004965px;}
.ws52{word-spacing:4.007599px;}
.wsd8{word-spacing:4.022028px;}
.ws16c{word-spacing:4.052088px;}
.ws3f{word-spacing:4.064741px;}
.wse8{word-spacing:4.120200px;}
.wscb{word-spacing:4.136400px;}
.wscc{word-spacing:4.141800px;}
.ws16b{word-spacing:4.184352px;}
.ws14a{word-spacing:4.196275px;}
.ws16d{word-spacing:4.202388px;}
.ws10d{word-spacing:4.223129px;}
.ws1b6{word-spacing:4.244068px;}
.ws11d{word-spacing:4.326210px;}
.ws100{word-spacing:4.343220px;}
.ws101{word-spacing:4.348890px;}
.ws6b{word-spacing:4.377938px;}
.ws136{word-spacing:4.391165px;}
.ws19d{word-spacing:4.423394px;}
.wsd7{word-spacing:4.430844px;}
.ws1bd{word-spacing:4.519066px;}
.ws149{word-spacing:4.572864px;}
.ws10c{word-spacing:4.652386px;}
.ws1af{word-spacing:4.722272px;}
.ws130{word-spacing:4.734259px;}
.wsf{word-spacing:4.770079px;}
.ws14{word-spacing:4.841856px;}
.ws10{word-spacing:4.853765px;}
.ws34{word-spacing:4.961375px;}
.ws5b{word-spacing:5.191362px;}
.ws50{word-spacing:5.204588px;}
.ws4f{word-spacing:5.257494px;}
.ws8e{word-spacing:5.260253px;}
.ws36{word-spacing:5.379804px;}
.ws1b0{word-spacing:5.439580px;}
.ws1bf{word-spacing:5.541235px;}
.ws1a8{word-spacing:5.678682px;}
.ws39{word-spacing:5.738458px;}
.wsf7{word-spacing:5.819616px;}
.wsd5{word-spacing:5.825628px;}
.ws131{word-spacing:5.864026px;}
.wsd6{word-spacing:5.903784px;}
.ws1be{word-spacing:5.971622px;}
.ws4c{word-spacing:6.024625px;}
.ws4d{word-spacing:6.057691px;}
.ws12c{word-spacing:6.110597px;}
.ws10a{word-spacing:6.116909px;}
.ws1e8{word-spacing:6.133018px;}
.ws1ae{word-spacing:6.156887px;}
.ws10b{word-spacing:6.198973px;}
.wsba{word-spacing:6.276438px;}
.ws97{word-spacing:6.414804px;}
.ws5f{word-spacing:6.494162px;}
.ws178{word-spacing:6.517008px;}
.ws60{word-spacing:6.573521px;}
.wsb8{word-spacing:6.575316px;}
.ws12f{word-spacing:6.778598px;}
.ws183{word-spacing:6.841656px;}
.wsa7{word-spacing:6.857888px;}
.ws17d{word-spacing:6.871716px;}
.ws179{word-spacing:6.895764px;}
.ws1ac{word-spacing:6.933970px;}
.ws17c{word-spacing:6.937848px;}
.ws1db{word-spacing:6.939994px;}
.ws184{word-spacing:6.973920px;}
.ws12e{word-spacing:7.155187px;}
.wsa5{word-spacing:7.168709px;}
.wsa6{word-spacing:7.221614px;}
.ws193{word-spacing:7.250472px;}
.ws187{word-spacing:7.262496px;}
.ws81{word-spacing:7.565501px;}
.ws6e{word-spacing:7.611793px;}
.ws17e{word-spacing:7.629228px;}
.ws46{word-spacing:7.651277px;}
.wsd{word-spacing:7.782761px;}
.ws134{word-spacing:7.830604px;}
.ws146{word-spacing:8.021812px;}
.ws45{word-spacing:8.129482px;}
.ws62{word-spacing:8.365698px;}
.ws61{word-spacing:8.405377px;}
.wsf4{word-spacing:9.120204px;}
.ws197{word-spacing:9.205442px;}
.wsf3{word-spacing:9.450864px;}
.ws129{word-spacing:9.576214px;}
.ws128{word-spacing:9.923407px;}
.ws16e{word-spacing:10.154268px;}
.ws4{word-spacing:10.417066px;}
.ws16f{word-spacing:10.563084px;}
.wsc6{word-spacing:11.620476px;}
.ws2f{word-spacing:11.902651px;}
.wsb{word-spacing:12.176255px;}
.wsfb{word-spacing:12.201500px;}
.ws4b{word-spacing:12.782524px;}
.ws172{word-spacing:13.015980px;}
.ws173{word-spacing:13.021992px;}
.ws1d5{word-spacing:13.386787px;}
.ws1e3{word-spacing:13.389226px;}
.ws1eb{word-spacing:13.389245px;}
.ws1d1{word-spacing:13.389600px;}
.ws1e5{word-spacing:13.391520px;}
.ws1ea{word-spacing:13.391587px;}
.ws1d3{word-spacing:13.391846px;}
.ws1d6{word-spacing:13.395802px;}
.ws1cd{word-spacing:13.397357px;}
.ws17f{word-spacing:13.418784px;}
.ws1d2{word-spacing:13.557197px;}
.ws180{word-spacing:13.605156px;}
.ws44{word-spacing:14.884124px;}
.wsc{word-spacing:16.109478px;}
.ws1c7{word-spacing:16.300915px;}
.ws1c6{word-spacing:16.408512px;}
.ws1d4{word-spacing:16.569907px;}
.ws1e6{word-spacing:16.611859px;}
.ws1ec{word-spacing:16.616342px;}
.ws1d7{word-spacing:16.618522px;}
.ws1d9{word-spacing:16.619549px;}
.ws1cc{word-spacing:16.623706px;}
.ws1d8{word-spacing:16.946496px;}
.ws1e7{word-spacing:17.054093px;}
.ws1a7{word-spacing:18.470660px;}
.ws1c2{word-spacing:22.057344px;}
.ws1c5{word-spacing:22.326336px;}
.ws6a{word-spacing:25.784867px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws14d{word-spacing:1224.067248px;}
._12{margin-left:-7.478078px;}
._c{margin-left:-6.455765px;}
._6{margin-left:-5.308087px;}
._1a{margin-left:-4.303843px;}
._0{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._14{width:1.190297px;}
._2{width:2.301354px;}
._5{width:3.679364px;}
._20{width:4.913550px;}
._7{width:11.094379px;}
._1{width:12.971268px;}
._f{width:14.828586px;}
._8{width:16.892698px;}
._a{width:17.896898px;}
._b{width:19.797811px;}
._1d{width:20.921460px;}
._9{width:22.541530px;}
._e{width:24.316727px;}
._d{width:26.253439px;}
._22{width:27.473920px;}
._17{width:29.266027px;}
._4{width:30.587087px;}
._1f{width:32.709204px;}
._1c{width:33.946790px;}
._13{width:36.343565px;}
._19{width:38.089008px;}
._1e{width:41.818979px;}
._16{width:42.984785px;}
._24{width:61.868160px;}
._23{width:88.767360px;}
._10{width:630.658073px;}
._18{width:1977.307063px;}
._1b{width:2076.231931px;}
._15{width:2174.224576px;}
._21{width:2366.906700px;}
._11{width:2390.816700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(92,53,155);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:40.116780px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fs10{font-size:50.274000px;}
.fs8{font-size:52.668000px;}
.fsb{font-size:53.155080px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fs14{font-size:56.058000px;}
.fs12{font-size:56.700000px;}
.fsa{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs15{font-size:62.286600px;}
.fs11{font-size:63.126000px;}
.fs9{font-size:66.132000px;}
.fs1{font-size:79.372440px;}
.fs3{font-size:107.596800px;}
.yd4{bottom:-865.621050px;}
.y169{bottom:-809.329050px;}
.yf0{bottom:-809.006586px;}
.yef{bottom:-789.837324px;}
.yee{bottom:-770.577882px;}
.y192{bottom:-752.069781px;}
.yed{bottom:-751.318440px;}
.y191{bottom:-732.900519px;}
.yec{bottom:-732.149178px;}
.y190{bottom:-713.641077px;}
.yeb{bottom:-712.889736px;}
.y18f{bottom:-694.381635px;}
.yea{bottom:-693.720474px;}
.y18e{bottom:-675.212373px;}
.ye9{bottom:-669.961050px;}
.y18d{bottom:-655.952931px;}
.y18c{bottom:-636.693489px;}
.y12e{bottom:-633.223305px;}
.ye8{bottom:-633.151950px;}
.y18b{bottom:-617.524227px;}
.ye7{bottom:-615.781500px;}
.ye6{bottom:-598.501500px;}
.y18a{bottom:-598.264785px;}
.yae{bottom:-589.303605px;}
.ye5{bottom:-581.131050px;}
.y189{bottom:-579.095523px;}
.y188{bottom:-559.836081px;}
.ye4{bottom:-558.717945px;}
.y155{bottom:-553.403550px;}
.y187{bottom:-540.576639px;}
.y186{bottom:-521.407377px;}
.y185{bottom:-502.147935px;}
.y184{bottom:-482.978673px;}
.y183{bottom:-463.719231px;}
.y182{bottom:-444.459789px;}
.y181{bottom:-425.290527px;}
.y180{bottom:-406.031085px;}
.y17f{bottom:-386.861823px;}
.y6b{bottom:-386.559855px;}
.y17e{bottom:-367.602381px;}
.yc2{bottom:-357.141655px;}
.y17d{bottom:-348.342939px;}
.yc1{bottom:-335.956269px;}
.y17c{bottom:-329.173677px;}
.y102{bottom:-326.782103px;}
.y97{bottom:-325.371846px;}
.yc0{bottom:-314.870081px;}
.y17b{bottom:-309.914235px;}
.y96{bottom:-304.285657px;}
.ybf{bottom:-293.684695px;}
.y17a{bottom:-290.654793px;}
.ye3{bottom:-290.608296px;}
.y95{bottom:-283.100271px;}
.ybe{bottom:-272.598506px;}
.y179{bottom:-271.484028px;}
.ye2{bottom:-271.348854px;}
.y13d{bottom:-271.275008px;}
.y11e{bottom:-267.336915px;}
.y94{bottom:-261.914885px;}
.y178{bottom:-252.224586px;}
.ye1{bottom:-252.179592px;}
.ybd{bottom:-251.413120px;}
.y13c{bottom:-250.188820px;}
.y11d{bottom:-247.209190px;}
.y93{bottom:-240.828697px;}
.y177{bottom:-233.055324px;}
.ye0{bottom:-232.920150px;}
.ybc{bottom:-230.227734px;}
.y162{bottom:-229.130439px;}
.y13b{bottom:-229.003434px;}
.y11c{bottom:-226.986776px;}
.y92{bottom:-214.693330px;}
.y176{bottom:-213.795882px;}
.ydf{bottom:-213.660708px;}
.y161{bottom:-209.870997px;}
.ybb{bottom:-209.141546px;}
.y13a{bottom:-207.917246px;}
.y11b{bottom:-206.764362px;}
.y175{bottom:-194.536440px;}
.yde{bottom:-194.491446px;}
.y160{bottom:-190.701735px;}
.y91{bottom:-188.655509px;}
.yba{bottom:-187.956160px;}
.y139{bottom:-186.731860px;}
.y11a{bottom:-186.636637px;}
.y174{bottom:-175.367178px;}
.ydd{bottom:-175.232004px;}
.y15f{bottom:-171.442293px;}
.yb9{bottom:-166.869971px;}
.y119{bottom:-166.414223px;}
.y138{bottom:-165.546473px;}
.y173{bottom:-156.107736px;}
.ydc{bottom:-156.061239px;}
.y15e{bottom:-152.273031px;}
.y90{bottom:-147.670202px;}
.y118{bottom:-146.286498px;}
.yb8{bottom:-140.734605px;}
.y137{bottom:-139.510305px;}
.y172{bottom:-136.938474px;}
.ydb{bottom:-136.801797px;}
.y15d{bottom:-133.013589px;}
.y8f{bottom:-126.484816px;}
.y117{bottom:-121.339102px;}
.y15c{bottom:-113.754147px;}
.y171{bottom:-113.179050px;}
.yda{bottom:-113.131050px;}
.y8e{bottom:-105.398627px;}
.yb7{bottom:-100.244595px;}
.y136{bottom:-99.020295px;}
.y15b{bottom:-90.083400px;}
.y8d{bottom:-84.213241px;}
.y116{bottom:-82.689548px;}
.yb6{bottom:-81.137100px;}
.y135{bottom:-79.912800px;}
.y170{bottom:-76.369350px;}
.yd9{bottom:-76.231350px;}
.y115{bottom:-64.450575px;}
.y8c{bottom:-63.027855px;}
.yb5{bottom:-62.129100px;}
.y134{bottom:-60.805305px;}
.y16f{bottom:-58.998900px;}
.yd8{bottom:-58.860900px;}
.y15a{bottom:-53.274450px;}
.y114{bottom:-46.306575px;}
.yb4{bottom:-43.021605px;}
.y133{bottom:-41.797305px;}
.y16c{bottom:-41.719500px;}
.y16e{bottom:-41.718900px;}
.yd7{bottom:-41.580900px;}
.y16d{bottom:-37.939050px;}
.y159{bottom:-35.904000px;}
.y113{bottom:-28.067602px;}
.y16b{bottom:-24.349050px;}
.yd6{bottom:-24.300900px;}
.yb3{bottom:-24.013605px;}
.y132{bottom:-22.789305px;}
.y8b{bottom:-22.635855px;}
.y158{bottom:-18.533550px;}
.y112{bottom:-4.533842px;}
.y16a{bottom:-1.938492px;}
.yd5{bottom:-1.890537px;}
.y0{bottom:0.000000px;}
.yb2{bottom:0.637395px;}
.y131{bottom:1.862131px;}
.y8a{bottom:2.127668px;}
.y9c{bottom:6.668145px;}
.y157{bottom:8.375766px;}
.y1c{bottom:17.649123px;}
.y156{bottom:24.125703px;}
.y4a{bottom:31.890000px;}
.y98{bottom:72.602145px;}
.y12a{bottom:94.404000px;}
.y49{bottom:103.621500px;}
.y1fd{bottom:104.055000px;}
.y1a{bottom:104.646000px;}
.y129{bottom:113.233500px;}
.yaa{bottom:113.679000px;}
.y258{bottom:117.280500px;}
.y1cb{bottom:121.987500px;}
.y48{bottom:122.449500px;}
.y19{bottom:122.535000px;}
.y1fc{bottom:122.884500px;}
.y9a{bottom:125.270145px;}
.y99{bottom:128.141310px;}
.y197{bottom:128.578500px;}
.y128{bottom:132.063000px;}
.ya9{bottom:132.508500px;}
.y257{bottom:134.541000px;}
.y18{bottom:140.422500px;}
.y1ca{bottom:140.817000px;}
.y47{bottom:141.279000px;}
.y1fb{bottom:141.714000px;}
.y151{bottom:146.056500px;}
.y196{bottom:147.811500px;}
.y9b{bottom:150.614310px;}
.y127{bottom:150.892500px;}
.ya8{bottom:151.338000px;}
.y256{bottom:151.800000px;}
.y17{bottom:158.310000px;}
.y1c9{bottom:159.646500px;}
.y46{bottom:160.108500px;}
.y1fa{bottom:160.543500px;}
.y150{bottom:164.884500px;}
.y194{bottom:167.044500px;}
.y255{bottom:169.060500px;}
.y126{bottom:169.722000px;}
.ya7{bottom:170.167500px;}
.y195{bottom:171.927000px;}
.y16{bottom:176.199000px;}
.y1c8{bottom:178.476000px;}
.y45{bottom:178.938000px;}
.y1f9{bottom:179.373000px;}
.y14f{bottom:183.714000px;}
.y193{bottom:186.277500px;}
.y254{bottom:186.321000px;}
.y89{bottom:187.455985px;}
.y125{bottom:188.551500px;}
.ya6{bottom:188.997000px;}
.y15{bottom:194.086500px;}
.y1c7{bottom:197.305500px;}
.y44{bottom:197.767500px;}
.y1f8{bottom:198.202500px;}
.y224{bottom:198.741000px;}
.y14e{bottom:202.543500px;}
.y253{bottom:203.581500px;}
.y124{bottom:207.381000px;}
.ya5{bottom:207.826500px;}
.y88{bottom:208.641371px;}
.y166{bottom:211.695000px;}
.y14{bottom:211.974000px;}
.y1c6{bottom:216.135000px;}
.y43{bottom:216.597000px;}
.y1f7{bottom:217.032000px;}
.y252{bottom:220.842000px;}
.y14d{bottom:221.373000px;}
.y223{bottom:225.280500px;}
.y87{bottom:229.826758px;}
.y13{bottom:229.863000px;}
.y123{bottom:230.692500px;}
.ya4{bottom:231.138000px;}
.y1c5{bottom:234.964500px;}
.y42{bottom:235.426500px;}
.y1f6{bottom:235.861500px;}
.y251{bottom:238.102500px;}
.y14c{bottom:240.202500px;}
.y222{bottom:242.854500px;}
.y86{bottom:250.912946px;}
.ya3{bottom:251.313000px;}
.y1c4{bottom:253.794000px;}
.y41{bottom:254.256000px;}
.y1f5{bottom:254.691000px;}
.y250{bottom:255.363000px;}
.yd0{bottom:257.511000px;}
.y14b{bottom:259.032000px;}
.y122{bottom:261.120000px;}
.yd3{bottom:268.469085px;}
.y221{bottom:269.395500px;}
.y85{bottom:272.098332px;}
.y1c3{bottom:272.623500px;}
.y40{bottom:273.085500px;}
.y1f3{bottom:273.520500px;}
.ycf{bottom:276.340500px;}
.y111{bottom:276.981289px;}
.yd2{bottom:278.098950px;}
.y1f4{bottom:278.944500px;}
.y121{bottom:280.353000px;}
.y14a{bottom:282.345000px;}
.ya2{bottom:284.937000px;}
.y24f{bottom:289.884000px;}
.y1c2{bottom:291.453000px;}
.y3f{bottom:291.915000px;}
.y84{bottom:293.283718px;}
.yce{bottom:295.170000px;}
.y220{bottom:295.936500px;}
.y1f2{bottom:296.832000px;}
.y110{bottom:297.203703px;}
.y120{bottom:299.586000px;}
.y12{bottom:300.154500px;}
.ya1{bottom:303.766500px;}
.y24e{bottom:307.143000px;}
.y1c1{bottom:310.282500px;}
.y3e{bottom:310.744500px;}
.ycd{bottom:313.999500px;}
.y83{bottom:314.369906px;}
.y149{bottom:315.969000px;}
.y10f{bottom:317.331428px;}
.y11{bottom:318.043500px;}
.y11f{bottom:318.819000px;}
.y21f{bottom:322.476000px;}
.ya0{bottom:322.596000px;}
.y24d{bottom:324.403500px;}
.y168{bottom:324.761085px;}
.y1c0{bottom:329.112000px;}
.y3d{bottom:329.574000px;}
.y1f1{bottom:330.456000px;}
.ycc{bottom:332.829000px;}
.y167{bottom:334.390950px;}
.y148{bottom:334.798500px;}
.y82{bottom:335.555293px;}
.y10{bottom:335.931000px;}
.y10e{bottom:337.553843px;}
.y21e{bottom:340.050000px;}
.y9f{bottom:341.425500px;}
.y24c{bottom:341.664000px;}
.yff{bottom:344.238000px;}
.y1bf{bottom:347.940000px;}
.y3c{bottom:348.403500px;}
.y1f0{bottom:349.285500px;}
.ycb{bottom:351.658500px;}
.y147{bottom:353.628000px;}
.yf{bottom:353.818500px;}
.y81{bottom:356.643134px;}
.y10d{bottom:357.776257px;}
.y24b{bottom:358.924500px;}
.y9e{bottom:360.255000px;}
.y21d{bottom:366.591000px;}
.y1be{bottom:366.769500px;}
.y3b{bottom:367.233000px;}
.y1ef{bottom:368.115000px;}
.yca{bottom:370.488000px;}
.y146{bottom:372.457500px;}
.y24a{bottom:376.185000px;}
.y80{bottom:377.828520px;}
.y10c{bottom:377.903982px;}
.ye{bottom:380.673000px;}
.y21c{bottom:384.165000px;}
.y1bd{bottom:385.599000px;}
.y3a{bottom:386.062500px;}
.y1ee{bottom:386.944500px;}
.yc9{bottom:389.317500px;}
.y145{bottom:391.287000px;}
.y249{bottom:393.445500px;}
.y9d{bottom:393.820500px;}
.y10b{bottom:398.126396px;}
.yd{bottom:398.562000px;}
.y7f{bottom:399.013907px;}
.y1bc{bottom:404.428500px;}
.y39{bottom:404.892000px;}
.y1ed{bottom:405.774000px;}
.yc8{bottom:408.147000px;}
.y144{bottom:410.116500px;}
.y21b{bottom:410.706000px;}
.y68{bottom:416.250000px;}
.yc{bottom:416.449500px;}
.y10a{bottom:418.255699px;}
.y7e{bottom:420.101748px;}
.y1bb{bottom:423.258000px;}
.y38{bottom:423.721500px;}
.y1ec{bottom:424.603500px;}
.y248{bottom:427.966500px;}
.y21a{bottom:428.280000px;}
.yc7{bottom:431.460000px;}
.y143{bottom:433.429500px;}
.y109{bottom:438.478113px;}
.y7d{bottom:441.287134px;}
.y1ba{bottom:442.087500px;}
.y37{bottom:442.551000px;}
.y1eb{bottom:443.433000px;}
.yb{bottom:444.798000px;}
.y247{bottom:445.225500px;}
.y219{bottom:445.854000px;}
.y1b9{bottom:460.917000px;}
.y36{bottom:461.380500px;}
.yc6{bottom:461.887500px;}
.y1ea{bottom:462.262500px;}
.y7c{bottom:462.373322px;}
.y246{bottom:462.486000px;}
.ya{bottom:462.685500px;}
.y108{bottom:463.332398px;}
.y218{bottom:463.428000px;}
.y142{bottom:463.857000px;}
.y1b8{bottom:479.746500px;}
.y9{bottom:480.574500px;}
.y217{bottom:481.002000px;}
.y1e8{bottom:481.092000px;}
.yc5{bottom:481.120500px;}
.y141{bottom:483.088500px;}
.y7b{bottom:483.558709px;}
.y35{bottom:484.693500px;}
.y1e9{bottom:486.516000px;}
.y245{bottom:497.007000px;}
.y1b7{bottom:498.576000px;}
.yc4{bottom:500.353500px;}
.y107{bottom:502.077083px;}
.y140{bottom:502.321500px;}
.y1e7{bottom:504.405000px;}
.y7a{bottom:504.744095px;}
.y8{bottom:507.429000px;}
.y244{bottom:514.267500px;}
.y165{bottom:515.356500px;}
.y216{bottom:516.508500px;}
.y1b6{bottom:517.405500px;}
.yc3{bottom:519.585000px;}
.y106{bottom:520.316055px;}
.y13f{bottom:521.554500px;}
.y7{bottom:525.316500px;}
.y79{bottom:525.831936px;}
.y243{bottom:531.528000px;}
.y130{bottom:532.996329px;}
.y164{bottom:534.589500px;}
.y215{bottom:535.338000px;}
.y1b5{bottom:536.235000px;}
.y1e6{bottom:538.029000px;}
.y105{bottom:538.460055px;}
.y13e{bottom:540.787500px;}
.y6{bottom:543.204000px;}
.yab{bottom:545.004000px;}
.y78{bottom:547.017323px;}
.y242{bottom:548.788500px;}
.y163{bottom:553.822500px;}
.y12f{bottom:554.084170px;}
.y214{bottom:554.167500px;}
.y1b4{bottom:555.064500px;}
.yb1{bottom:555.730643px;}
.y104{bottom:556.604055px;}
.y1e5{bottom:556.858500px;}
.y34{bottom:559.492500px;}
.y5{bottom:561.093000px;}
.y241{bottom:566.049000px;}
.y12b{bottom:566.206500px;}
.y77{bottom:568.103511px;}
.y213{bottom:572.997000px;}
.y1b3{bottom:573.894000px;}
.y1e4{bottom:575.688000px;}
.yb0{bottom:576.916029px;}
.y4{bottom:578.980500px;}
.y152{bottom:579.240000px;}
.y103{bottom:580.134936px;}
.y154{bottom:580.686585px;}
.y240{bottom:583.309500px;}
.y76{bottom:589.288897px;}
.y153{bottom:590.316450px;}
.y212{bottom:591.826500px;}
.y1b2{bottom:592.723500px;}
.y1e3{bottom:594.517500px;}
.y3{bottom:596.868000px;}
.y33{bottom:596.883000px;}
.y67{bottom:597.207000px;}
.yaf{bottom:598.003870px;}
.y23f{bottom:600.568500px;}
.yfe{bottom:609.199500px;}
.y75{bottom:610.474283px;}
.y211{bottom:610.656000px;}
.y1b1{bottom:611.553000px;}
.y1e2{bottom:613.347000px;}
.y12d{bottom:614.275844px;}
.y2{bottom:614.757000px;}
.y66{bottom:616.036500px;}
.y32{bottom:616.339500px;}
.y23e{bottom:617.829000px;}
.y12c{bottom:624.868695px;}
.yfd{bottom:628.029000px;}
.y20f{bottom:629.485500px;}
.y1b0{bottom:630.382500px;}
.y74{bottom:631.560471px;}
.y1e1{bottom:632.176500px;}
.y1{bottom:632.644500px;}
.y65{bottom:634.866000px;}
.y210{bottom:634.911000px;}
.y23d{bottom:635.089500px;}
.y31{bottom:635.797500px;}
.yfc{bottom:646.858500px;}
.y20d{bottom:648.315000px;}
.y1af{bottom:649.212000px;}
.y1df{bottom:651.006000px;}
.y23c{bottom:652.350000px;}
.y73{bottom:652.745857px;}
.y64{bottom:653.695500px;}
.y20e{bottom:653.740500px;}
.y30{bottom:655.254000px;}
.y1e0{bottom:656.430000px;}
.yad{bottom:658.195544px;}
.yfb{bottom:665.688000px;}
.y20c{bottom:667.144500px;}
.y1ae{bottom:668.041500px;}
.yac{bottom:668.788395px;}
.y23b{bottom:669.610500px;}
.y63{bottom:672.525000px;}
.y72{bottom:673.931244px;}
.y270{bottom:674.094000px;}
.y1de{bottom:674.317500px;}
.y2f{bottom:674.712000px;}
.yfa{bottom:684.517500px;}
.y20b{bottom:685.974000px;}
.y1ad{bottom:686.871000px;}
.y62{bottom:691.354500px;}
.y2e{bottom:694.168500px;}
.y71{bottom:695.017432px;}
.yf9{bottom:703.347000px;}
.y23a{bottom:704.131500px;}
.y1ac{bottom:705.700500px;}
.y1dd{bottom:707.941500px;}
.y26f{bottom:708.613500px;}
.y20a{bottom:709.287000px;}
.y61{bottom:710.184000px;}
.y2d{bottom:713.625000px;}
.y70{bottom:716.202818px;}
.y239{bottom:721.392000px;}
.yf8{bottom:722.176500px;}
.y1ab{bottom:724.530000px;}
.y26e{bottom:725.874000px;}
.y1dc{bottom:726.771000px;}
.y60{bottom:729.013500px;}
.y2c{bottom:733.083000px;}
.y6f{bottom:737.289006px;}
.y238{bottom:738.651000px;}
.yf7{bottom:741.006000px;}
.y209{bottom:742.911000px;}
.y26d{bottom:743.134500px;}
.y1aa{bottom:743.359500px;}
.y1db{bottom:745.600500px;}
.y5f{bottom:747.843000px;}
.y2b{bottom:752.539500px;}
.y237{bottom:755.911500px;}
.y6e{bottom:758.474393px;}
.yf6{bottom:759.835500px;}
.y26c{bottom:760.395000px;}
.y208{bottom:761.740500px;}
.y1a9{bottom:762.189000px;}
.y1da{bottom:764.430000px;}
.y5e{bottom:766.671000px;}
.y2a{bottom:771.996000px;}
.y236{bottom:773.172000px;}
.y26b{bottom:777.655500px;}
.y6d{bottom:779.659779px;}
.y207{bottom:780.570000px;}
.y1a8{bottom:781.018500px;}
.yf5{bottom:783.148500px;}
.y1d9{bottom:783.259500px;}
.y5d{bottom:785.500500px;}
.y235{bottom:790.432500px;}
.y29{bottom:791.454000px;}
.y26a{bottom:794.916000px;}
.y206{bottom:799.399500px;}
.y1a7{bottom:799.848000px;}
.y6c{bottom:800.747620px;}
.y1d8{bottom:802.089000px;}
.y5c{bottom:804.330000px;}
.y234{bottom:807.693000px;}
.y28{bottom:810.910500px;}
.y269{bottom:812.176500px;}
.yf4{bottom:813.576000px;}
.y205{bottom:818.229000px;}
.y1a6{bottom:818.677500px;}
.y1d7{bottom:820.918500px;}
.y5b{bottom:823.159500px;}
.y233{bottom:824.953500px;}
.y268{bottom:829.437000px;}
.y27{bottom:830.368500px;}
.yf3{bottom:832.809000px;}
.y204{bottom:837.058500px;}
.y1a5{bottom:837.507000px;}
.y1d6{bottom:839.748000px;}
.y5a{bottom:841.989000px;}
.y232{bottom:842.214000px;}
.y267{bottom:846.697500px;}
.y26{bottom:849.825000px;}
.yf2{bottom:852.042000px;}
.y203{bottom:855.888000px;}
.y1a4{bottom:856.335000px;}
.y1d5{bottom:858.577500px;}
.y231{bottom:859.474500px;}
.y59{bottom:860.818500px;}
.y6a{bottom:860.939294px;}
.y266{bottom:863.956500px;}
.y101{bottom:864.012539px;}
.y25{bottom:869.281500px;}
.yf1{bottom:871.273500px;}
.y69{bottom:871.532145px;}
.y100{bottom:874.123898px;}
.y201{bottom:874.717500px;}
.y1a3{bottom:875.164500px;}
.y230{bottom:876.735000px;}
.y58{bottom:879.648000px;}
.y202{bottom:880.141500px;}
.y265{bottom:881.217000px;}
.y1d4{bottom:881.890500px;}
.y200{bottom:893.547000px;}
.y1a2{bottom:893.994000px;}
.yd1{bottom:896.692500px;}
.y57{bottom:898.477500px;}
.y24{bottom:905.331000px;}
.y22f{bottom:911.254500px;}
.y1a1{bottom:912.823500px;}
.y1d3{bottom:915.514500px;}
.y264{bottom:915.738000px;}
.y1ff{bottom:916.858500px;}
.y56{bottom:917.307000px;}
.y23{bottom:925.810500px;}
.y22e{bottom:928.515000px;}
.y1a0{bottom:931.653000px;}
.y263{bottom:932.998500px;}
.y1d2{bottom:934.344000px;}
.y55{bottom:936.136500px;}
.y22{bottom:937.609500px;}
.y22d{bottom:945.775500px;}
.y262{bottom:950.259000px;}
.y19f{bottom:950.482500px;}
.y1d1{bottom:953.173500px;}
.y54{bottom:954.966000px;}
.y21{bottom:958.089000px;}
.y22c{bottom:963.036000px;}
.y261{bottom:967.519500px;}
.y19e{bottom:969.312000px;}
.y1d0{bottom:972.003000px;}
.y53{bottom:973.795500px;}
.y22b{bottom:980.296500px;}
.y260{bottom:984.780000px;}
.y19d{bottom:988.141500px;}
.y1cf{bottom:990.832500px;}
.y52{bottom:992.625000px;}
.y22a{bottom:997.557000px;}
.y20{bottom:1000.230000px;}
.y25e{bottom:1002.039000px;}
.y25f{bottom:1002.040500px;}
.y19c{bottom:1006.971000px;}
.y1ce{bottom:1009.662000px;}
.y51{bottom:1011.454500px;}
.y229{bottom:1014.817500px;}
.y25d{bottom:1019.299500px;}
.y19b{bottom:1025.800500px;}
.y50{bottom:1030.284000px;}
.y228{bottom:1032.076500px;}
.y1cd{bottom:1032.973500px;}
.y25c{bottom:1036.560000px;}
.y1f{bottom:1036.992000px;}
.y19a{bottom:1044.630000px;}
.y4f{bottom:1049.113500px;}
.y227{bottom:1049.337000px;}
.y1cc{bottom:1053.148500px;}
.y25b{bottom:1053.820500px;}
.y199{bottom:1063.459500px;}
.y1e{bottom:1065.235500px;}
.y226{bottom:1066.597500px;}
.y4e{bottom:1067.943000px;}
.y25a{bottom:1071.081000px;}
.y198{bottom:1082.289000px;}
.y225{bottom:1083.858000px;}
.y4d{bottom:1086.772500px;}
.y1fe{bottom:1087.713000px;}
.y259{bottom:1088.341500px;}
.y1d{bottom:1093.480500px;}
.y4c{bottom:1105.602000px;}
.y1b{bottom:1136.967000px;}
.y4b{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2a{height:27.524478px;}
.h17{height:29.225701px;}
.h2{height:30.461558px;}
.h2b{height:30.582721px;}
.h28{height:30.629531px;}
.h3{height:30.670772px;}
.h2c{height:33.072749px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.h2e{height:37.551283px;}
.h16{height:38.724306px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h1a{height:39.434227px;}
.h18{height:41.723369px;}
.hd{height:43.038432px;}
.h1f{height:43.269961px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h29{height:43.886426px;}
.h1c{height:44.279648px;}
.h24{height:45.433459px;}
.h21{height:46.493631px;}
.h15{height:47.596957px;}
.h14{height:48.275068px;}
.h11{height:48.707613px;}
.h2d{height:49.117939px;}
.h1e{height:49.939453px;}
.h4{height:50.930649px;}
.h23{height:52.436426px;}
.h5{height:53.814514px;}
.h8{height:54.405312px;}
.h13{height:54.933398px;}
.h1d{height:55.599258px;}
.h22{height:58.379221px;}
.h12{height:61.159184px;}
.h7{height:77.469696px;}
.h10{height:164.787150px;}
.h1b{height:223.854000px;}
.h20{height:248.793300px;}
.h27{height:281.454000px;}
.h25{height:506.158950px;}
.h19{height:525.597600px;}
.h26{height:541.306500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:191.751450px;}
.w2{width:195.543455px;}
.w8{width:638.179950px;}
.w9{width:674.834850px;}
.w5{width:695.125950px;}
.w6{width:722.321460px;}
.w4{width:742.317675px;}
.w7{width:771.838320px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2b{left:-216.242400px;}
.x7b{left:-73.636050px;}
.x43{left:-58.679775px;}
.x73{left:-52.199730px;}
.x6b{left:-49.827015px;}
.x59{left:-42.872550px;}
.x2c{left:-1.115004px;}
.x0{left:0.000000px;}
.x2d{left:33.931649px;}
.x30{left:42.741600px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x31{left:57.888600px;}
.x2{left:59.946413px;}
.x42{left:75.083175px;}
.x6a{left:85.083315px;}
.x2f{left:86.400600px;}
.xc0{left:94.758000px;}
.x32{left:98.973600px;}
.x84{left:108.826650px;}
.x7e{left:121.933950px;}
.x7a{left:127.154550px;}
.x86{left:142.879350px;}
.x7d{left:147.673480px;}
.x5a{left:152.697450px;}
.x7f{left:153.793844px;}
.x44{left:156.446026px;}
.x74{left:162.926071px;}
.x33{left:174.213600px;}
.x5b{left:184.557344px;}
.x2e{left:189.460887px;}
.x47{left:191.493109px;}
.x76{left:197.973154px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x48{left:253.515000px;}
.xb2{left:260.868000px;}
.x49{left:262.284000px;}
.x5{left:269.914500px;}
.xad{left:275.449500px;}
.x39{left:276.967500px;}
.xc{left:281.479500px;}
.xae{left:284.680500px;}
.xa0{left:290.988000px;}
.x3d{left:294.609000px;}
.x29{left:298.155000px;}
.xb3{left:301.767000px;}
.x8c{left:304.489500px;}
.x5d{left:306.808500px;}
.x4a{left:309.448500px;}
.x7{left:310.732500px;}
.x1f{left:312.069000px;}
.x2a{left:313.099500px;}
.x9c{left:319.348500px;}
.x23{left:325.363500px;}
.x64{left:328.251000px;}
.xa7{left:339.909000px;}
.x56{left:342.990000px;}
.x87{left:345.559350px;}
.xa1{left:347.409000px;}
.x88{left:349.699350px;}
.x57{left:352.072500px;}
.x36{left:355.954500px;}
.x62{left:359.508000px;}
.x3e{left:361.732500px;}
.x3a{left:363.268500px;}
.x8{left:364.612500px;}
.x63{left:368.737500px;}
.x3f{left:370.963500px;}
.x3b{left:372.499500px;}
.xaf{left:373.536000px;}
.x9a{left:375.564000px;}
.xa2{left:378.343500px;}
.x69{left:379.639500px;}
.x34{left:387.061500px;}
.x11{left:388.257000px;}
.x9b{left:390.508500px;}
.xb4{left:391.911000px;}
.x12{left:395.728500px;}
.x13{left:399.540000px;}
.xd{left:401.709000px;}
.xb0{left:405.736500px;}
.x14{left:407.011500px;}
.xe{left:409.180500px;}
.x9{left:410.788500px;}
.xb1{left:416.827500px;}
.x80{left:420.154500px;}
.xa3{left:421.258500px;}
.x28{left:423.934500px;}
.x81{left:430.617000px;}
.x40{left:435.781500px;}
.x35{left:439.024500px;}
.x41{left:445.012500px;}
.x9e{left:446.323500px;}
.x3c{left:448.422000px;}
.x89{left:452.992500px;}
.x9f{left:461.266500px;}
.x8a{left:466.669500px;}
.xa{left:473.737500px;}
.x8b{left:476.004000px;}
.x4f{left:481.701000px;}
.x90{left:483.127500px;}
.xa9{left:484.332000px;}
.xa8{left:487.114500px;}
.x50{left:490.782000px;}
.xb5{left:496.519500px;}
.x91{left:498.072000px;}
.x98{left:501.327000px;}
.x71{left:508.978500px;}
.x94{left:514.279500px;}
.xb{left:515.296500px;}
.x72{left:518.209500px;}
.x21{left:522.135000px;}
.x24{left:525.843000px;}
.x95{left:529.224000px;}
.x5e{left:544.948500px;}
.x99{left:547.503000px;}
.x77{left:550.630500px;}
.x5f{left:555.412500px;}
.x65{left:556.830000px;}
.x78{left:561.094500px;}
.x66{left:566.061000px;}
.x82{left:568.588500px;}
.x22{left:572.031000px;}
.x25{left:575.745000px;}
.x83{left:577.558500px;}
.x26{left:580.681500px;}
.x96{left:592.041000px;}
.x27{left:595.626000px;}
.x37{left:603.031500px;}
.x38{left:612.261000px;}
.xa4{left:616.357500px;}
.x51{left:620.137500px;}
.xaa{left:626.514000px;}
.xf{left:628.189500px;}
.x52{left:629.218500px;}
.xa5{left:632.388000px;}
.x10{left:635.661000px;}
.x7c{left:641.141267px;}
.x97{left:644.134500px;}
.xa6{left:647.512500px;}
.x6e{left:649.471500px;}
.xbb{left:651.723000px;}
.x20{left:656.868000px;}
.x6f{left:659.734500px;}
.xb6{left:662.931000px;}
.x53{left:667.876500px;}
.x54{left:676.957500px;}
.xbc{left:678.622500px;}
.x85{left:681.706508px;}
.x9d{left:683.833500px;}
.xba{left:685.851000px;}
.xc1{left:688.642500px;}
.xb7{left:689.830500px;}
.x15{left:691.581000px;}
.x60{left:694.801500px;}
.xc2{left:696.111000px;}
.x5c{left:697.195756px;}
.x16{left:699.052500px;}
.x17{left:702.714000px;}
.x61{left:703.773000px;}
.x18{left:710.187000px;}
.xbe{left:714.879000px;}
.xab{left:716.343000px;}
.x79{left:719.707500px;}
.xac{left:725.574000px;}
.x6d{left:727.244706px;}
.x6c{left:732.252188px;}
.xc3{left:735.226500px;}
.x67{left:738.024000px;}
.x55{left:739.996500px;}
.xbf{left:741.778500px;}
.x4b{left:742.890000px;}
.x68{left:747.255000px;}
.x45{left:748.368060px;}
.x4c{left:751.971000px;}
.x8d{left:753.364500px;}
.x46{left:755.001225px;}
.x8e{left:760.815000px;}
.x75{left:765.635616px;}
.xbd{left:769.123500px;}
.x8f{left:775.758000px;}
.x19{left:787.284000px;}
.x1d{left:790.213500px;}
.x1a{left:794.755500px;}
.x58{left:797.352000px;}
.x1b{left:798.487500px;}
.x70{left:803.278500px;}
.x1e{left:805.158000px;}
.xb8{left:810.265500px;}
.x1c{left:813.432000px;}
.x4d{left:815.863500px;}
.x92{left:817.038000px;}
.x4e{left:824.944500px;}
.x93{left:831.982500px;}
.xb9{left:837.165000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls86{letter-spacing:-0.312480pt;}
.ls7d{letter-spacing:-0.297600pt;}
.ls9d{letter-spacing:-0.224448pt;}
.ls81{letter-spacing:-0.211680pt;}
.ls78{letter-spacing:-0.201600pt;}
.ls25{letter-spacing:-0.193987pt;}
.ls9b{letter-spacing:-0.187040pt;}
.lsa4{letter-spacing:-0.165664pt;}
.ls1b{letter-spacing:-0.152838pt;}
.ls90{letter-spacing:-0.135203pt;}
.lsa3{letter-spacing:-0.128256pt;}
.ls1f{letter-spacing:-0.123446pt;}
.lsa2{letter-spacing:-0.112224pt;}
.ls22{letter-spacing:-0.111690pt;}
.ls23{letter-spacing:-0.099933pt;}
.ls9e{letter-spacing:-0.096192pt;}
.ls36{letter-spacing:-0.064662pt;}
.ls9c{letter-spacing:-0.058784pt;}
.ls34{letter-spacing:-0.058080pt;}
.ls1e{letter-spacing:-0.052906pt;}
.ls24{letter-spacing:-0.047027pt;}
.ls82{letter-spacing:-0.044890pt;}
.ls79{letter-spacing:-0.042752pt;}
.ls1d{letter-spacing:-0.041149pt;}
.ls9f{letter-spacing:-0.032064pt;}
.ls88{letter-spacing:-0.030240pt;}
.ls7f{letter-spacing:-0.028800pt;}
.ls8e{letter-spacing:-0.026400pt;}
.lsa1{letter-spacing:-0.021376pt;}
.ls35{letter-spacing:-0.021120pt;}
.lsa0{letter-spacing:-0.019200pt;}
.ls19{letter-spacing:-0.017635pt;}
.ls89{letter-spacing:-0.016834pt;}
.ls80{letter-spacing:-0.016032pt;}
.ls1a{letter-spacing:-0.011757pt;}
.ls83{letter-spacing:-0.011222pt;}
.ls7a{letter-spacing:-0.010688pt;}
.ls21{letter-spacing:-0.010560pt;}
.ls87{letter-spacing:-0.010080pt;}
.ls7e{letter-spacing:-0.009600pt;}
.ls37{letter-spacing:-0.005878pt;}
.ls84{letter-spacing:-0.005611pt;}
.ls7b{letter-spacing:-0.005344pt;}
.ls85{letter-spacing:-0.005040pt;}
.ls7c{letter-spacing:-0.004800pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb1{letter-spacing:0.000298pt;}
.ls27{letter-spacing:0.000544pt;}
.lsa9{letter-spacing:0.000711pt;}
.lsaa{letter-spacing:0.002879pt;}
.lsaf{letter-spacing:0.003261pt;}
.lsad{letter-spacing:0.004267pt;}
.ls9{letter-spacing:0.004682pt;}
.ls3d{letter-spacing:0.004800pt;}
.lsb2{letter-spacing:0.004944pt;}
.ls5d{letter-spacing:0.005040pt;}
.ls2c{letter-spacing:0.005280pt;}
.ls4c{letter-spacing:0.005344pt;}
.ls6d{letter-spacing:0.005611pt;}
.lsf{letter-spacing:0.005878pt;}
.ls41{letter-spacing:0.009600pt;}
.ls61{letter-spacing:0.010080pt;}
.ls15{letter-spacing:0.010560pt;}
.ls44{letter-spacing:0.010688pt;}
.ls64{letter-spacing:0.011222pt;}
.lsb{letter-spacing:0.011757pt;}
.ls3a{letter-spacing:0.012768pt;}
.ls5a{letter-spacing:0.013406pt;}
.ls7{letter-spacing:0.014045pt;}
.ls3c{letter-spacing:0.014400pt;}
.ls5c{letter-spacing:0.015120pt;}
.ls2b{letter-spacing:0.015840pt;}
.ls48{letter-spacing:0.016032pt;}
.ls68{letter-spacing:0.016834pt;}
.ls16{letter-spacing:0.017635pt;}
.ls4d{letter-spacing:0.019200pt;}
.ls6e{letter-spacing:0.020160pt;}
.ls2f{letter-spacing:0.021120pt;}
.ls38{letter-spacing:0.021280pt;}
.ls49{letter-spacing:0.021376pt;}
.ls58{letter-spacing:0.022344pt;}
.ls69{letter-spacing:0.022445pt;}
.ls28{letter-spacing:0.023408pt;}
.ls13{letter-spacing:0.023514pt;}
.ls42{letter-spacing:0.024000pt;}
.ls62{letter-spacing:0.025200pt;}
.ls2e{letter-spacing:0.026400pt;}
.ls45{letter-spacing:0.026720pt;}
.ls65{letter-spacing:0.028056pt;}
.ls40{letter-spacing:0.028800pt;}
.ls10{letter-spacing:0.029392pt;}
.ls60{letter-spacing:0.030240pt;}
.ls8b{letter-spacing:0.031680pt;}
.ls46{letter-spacing:0.032064pt;}
.ls4f{letter-spacing:0.033600pt;}
.ls66{letter-spacing:0.033667pt;}
.lsd{letter-spacing:0.035270pt;}
.ls70{letter-spacing:0.035280pt;}
.ls93{letter-spacing:0.037408pt;}
.ls3f{letter-spacing:0.038400pt;}
.ls5f{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.041149pt;}
.ls8f{letter-spacing:0.042240pt;}
.ls4a{letter-spacing:0.042752pt;}
.ls4e{letter-spacing:0.043200pt;}
.ls6a{letter-spacing:0.044890pt;}
.ls6f{letter-spacing:0.045360pt;}
.lsc{letter-spacing:0.047027pt;}
.ls94{letter-spacing:0.048000pt;}
.ls47{letter-spacing:0.048096pt;}
.ls67{letter-spacing:0.050501pt;}
.ls95{letter-spacing:0.052800pt;}
.ls17{letter-spacing:0.052906pt;}
.ls53{letter-spacing:0.053440pt;}
.ls74{letter-spacing:0.056112pt;}
.ls8a{letter-spacing:0.058080pt;}
.lse{letter-spacing:0.058784pt;}
.ls6c{letter-spacing:0.061723pt;}
.ls4b{letter-spacing:0.064128pt;}
.ls18{letter-spacing:0.064662pt;}
.ls43{letter-spacing:0.067200pt;}
.ls6b{letter-spacing:0.067334pt;}
.ls52{letter-spacing:0.069472pt;}
.ls14{letter-spacing:0.070541pt;}
.ls63{letter-spacing:0.070560pt;}
.ls73{letter-spacing:0.072946pt;}
.ls51{letter-spacing:0.074816pt;}
.ls20{letter-spacing:0.076419pt;}
.ls99{letter-spacing:0.076800pt;}
.ls72{letter-spacing:0.078557pt;}
.ls12{letter-spacing:0.082298pt;}
.ls50{letter-spacing:0.085504pt;}
.ls71{letter-spacing:0.089779pt;}
.ls1c{letter-spacing:0.094054pt;}
.ls96{letter-spacing:0.100800pt;}
.ls30{letter-spacing:0.105811pt;}
.ls26{letter-spacing:0.108673pt;}
.ls3e{letter-spacing:0.110400pt;}
.ls5e{letter-spacing:0.115920pt;}
.ls2d{letter-spacing:0.121440pt;}
.ls92{letter-spacing:0.133600pt;}
.ls3b{letter-spacing:0.157472pt;}
.lsa{letter-spacing:0.163856pt;}
.ls5b{letter-spacing:0.165346pt;}
.ls39{letter-spacing:0.170240pt;}
.ls2a{letter-spacing:0.173219pt;}
.ls8{letter-spacing:0.177901pt;}
.ls59{letter-spacing:0.178752pt;}
.ls29{letter-spacing:0.187264pt;}
.ls91{letter-spacing:1.152166pt;}
.ls98{letter-spacing:2.088000pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls9a{letter-spacing:10.973540pt;}
.ls77{letter-spacing:11.057007pt;}
.ls76{letter-spacing:11.060267pt;}
.ls31{letter-spacing:11.138235pt;}
.ls32{letter-spacing:11.138758pt;}
.ls33{letter-spacing:11.140993pt;}
.lsa7{letter-spacing:11.386297pt;}
.ls75{letter-spacing:11.440393pt;}
.lsa6{letter-spacing:11.675811pt;}
.ls8c{letter-spacing:11.917130pt;}
.ls8d{letter-spacing:11.920436pt;}
.ls55{letter-spacing:11.950933pt;}
.ls57{letter-spacing:11.953007pt;}
.lsa8{letter-spacing:11.954133pt;}
.lsae{letter-spacing:11.955337pt;}
.ls97{letter-spacing:11.955635pt;}
.ls56{letter-spacing:11.956267pt;}
.lsac{letter-spacing:11.959467pt;}
.lsb0{letter-spacing:12.002970pt;}
.ls54{letter-spacing:12.032695pt;}
.lsab{letter-spacing:12.165061pt;}
.lsa5{letter-spacing:13.859179pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.315733pt;}
.ws147{word-spacing:-13.360000pt;}
.ws8d{word-spacing:-13.283467pt;}
.ws86{word-spacing:-13.200000pt;}
.wsbd{word-spacing:-12.600000pt;}
.wsb4{word-spacing:-12.000000pt;}
.ws88{word-spacing:-11.955200pt;}
.ws85{word-spacing:-11.891264pt;}
.ws40{word-spacing:-11.881901pt;}
.ws41{word-spacing:-11.704000pt;}
.wsbb{word-spacing:-11.350752pt;}
.wsbc{word-spacing:-11.172000pt;}
.wsb2{word-spacing:-10.810240pt;}
.wsb3{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws1a6{word-spacing:-2.762961pt;}
.ws1aa{word-spacing:-2.656693pt;}
.ws1a9{word-spacing:-2.550426pt;}
.ws15a{word-spacing:-2.484960pt;}
.ws159{word-spacing:-2.458240pt;}
.ws6f{word-spacing:-2.433658pt;}
.ws158{word-spacing:-2.415488pt;}
.ws13c{word-spacing:-2.339040pt;}
.ws10e{word-spacing:-2.311814pt;}
.ws13a{word-spacing:-2.307360pt;}
.ws10f{word-spacing:-2.289370pt;}
.ws13b{word-spacing:-2.259840pt;}
.wsd9{word-spacing:-2.201728pt;}
.wsda{word-spacing:-2.180352pt;}
.ws82{word-spacing:-2.086832pt;}
.ws56{word-spacing:-2.051562pt;}
.ws67{word-spacing:-2.045683pt;}
.ws55{word-spacing:-2.028048pt;}
.wsab{word-spacing:-2.010413pt;}
.ws1b2{word-spacing:-1.965953pt;}
.ws1a{word-spacing:-1.960653pt;}
.ws1b{word-spacing:-1.912832pt;}
.wsaa{word-spacing:-1.904602pt;}
.ws192{word-spacing:-1.865056pt;}
.wsc1{word-spacing:-1.753418pt;}
.ws80{word-spacing:-1.734128pt;}
.ws83{word-spacing:-1.728250pt;}
.ws1b4{word-spacing:-1.700284pt;}
.ws124{word-spacing:-1.672138pt;}
.ws123{word-spacing:-1.655304pt;}
.ws13d{word-spacing:-1.599840pt;}
.ws99{word-spacing:-1.594560pt;}
.wsef{word-spacing:-1.592512pt;}
.ws9e{word-spacing:-1.589280pt;}
.ws9a{word-spacing:-1.584000pt;}
.wsee{word-spacing:-1.576480pt;}
.ws9f{word-spacing:-1.568160pt;}
.ws9b{word-spacing:-1.520640pt;}
.ws1b5{word-spacing:-1.487748pt;}
.ws2c{word-spacing:-1.328347pt;}
.ws63{word-spacing:-1.305005pt;}
.ws110{word-spacing:-1.273742pt;}
.ws185{word-spacing:-1.234464pt;}
.ws194{word-spacing:-1.218432pt;}
.wsdb{word-spacing:-1.213088pt;}
.wsfe{word-spacing:-1.209600pt;}
.wsff{word-spacing:-1.199520pt;}
.wsfc{word-spacing:-1.184400pt;}
.wsfd{word-spacing:-1.174320pt;}
.wsc9{word-spacing:-1.152000pt;}
.wsca{word-spacing:-1.142400pt;}
.wsc7{word-spacing:-1.128000pt;}
.wsc8{word-spacing:-1.118400pt;}
.ws1a1{word-spacing:-1.062677pt;}
.ws84{word-spacing:-1.046355pt;}
.ws7{word-spacing:-1.041421pt;}
.ws7a{word-spacing:-1.022842pt;}
.ws19f{word-spacing:-1.009543pt;}
.ws14c{word-spacing:-1.004237pt;}
.ws79{word-spacing:-0.987571pt;}
.ws91{word-spacing:-0.956410pt;}
.ws9{word-spacing:-0.929840pt;}
.ws12a{word-spacing:-0.925848pt;}
.ws12b{word-spacing:-0.909014pt;}
.wsbf{word-spacing:-0.908595pt;}
.ws15d{word-spacing:-0.903136pt;}
.ws11f{word-spacing:-0.882000pt;}
.wsf5{word-spacing:-0.881760pt;}
.wsf6{word-spacing:-0.865728pt;}
.ws20{word-spacing:-0.860774pt;}
.wsea{word-spacing:-0.840000pt;}
.ws11e{word-spacing:-0.826560pt;}
.ws57{word-spacing:-0.817098pt;}
.ws8a{word-spacing:-0.812954pt;}
.ws92{word-spacing:-0.797008pt;}
.wse9{word-spacing:-0.787200pt;}
.ws1c9{word-spacing:-0.765133pt;}
.ws8b{word-spacing:-0.743874pt;}
.wsbe{word-spacing:-0.717312pt;}
.ws94{word-spacing:-0.690740pt;}
.wsa9{word-spacing:-0.681894pt;}
.ws93{word-spacing:-0.664661pt;}
.ws4e{word-spacing:-0.664259pt;}
.ws127{word-spacing:-0.656510pt;}
.ws125{word-spacing:-0.650899pt;}
.ws78{word-spacing:-0.640746pt;}
.ws2b{word-spacing:-0.637606pt;}
.wsf2{word-spacing:-0.625248pt;}
.ws89{word-spacing:-0.621670pt;}
.wsf0{word-spacing:-0.619904pt;}
.ws8f{word-spacing:-0.584473pt;}
.ws1ca{word-spacing:-0.573850pt;}
.ws160{word-spacing:-0.571808pt;}
.ws15e{word-spacing:-0.550432pt;}
.ws8c{word-spacing:-0.531339pt;}
.wsc0{word-spacing:-0.526029pt;}
.ws15f{word-spacing:-0.523712pt;}
.ws145{word-spacing:-0.511421pt;}
.ws77{word-spacing:-0.505542pt;}
.ws15c{word-spacing:-0.459584pt;}
.ws90{word-spacing:-0.425071pt;}
.ws65{word-spacing:-0.323312pt;}
.ws29{word-spacing:-0.318803pt;}
.ws114{word-spacing:-0.314227pt;}
.ws17b{word-spacing:-0.304608pt;}
.wsdf{word-spacing:-0.299264pt;}
.ws2{word-spacing:-0.297549pt;}
.ws5d{word-spacing:-0.293920pt;}
.ws113{word-spacing:-0.291782pt;}
.ws177{word-spacing:-0.288576pt;}
.ws1c0{word-spacing:-0.286925pt;}
.wsa8{word-spacing:-0.282163pt;}
.wsde{word-spacing:-0.277888pt;}
.ws95{word-spacing:-0.271533pt;}
.ws126{word-spacing:-0.269338pt;}
.ws17a{word-spacing:-0.267200pt;}
.ws49{word-spacing:-0.266851pt;}
.ws28{word-spacing:-0.265669pt;}
.ws64{word-spacing:-0.264528pt;}
.wsf9{word-spacing:-0.259190pt;}
.wsf1{word-spacing:-0.256512pt;}
.wsc4{word-spacing:-0.246848pt;}
.ws18a{word-spacing:-0.245824pt;}
.ws14b{word-spacing:-0.239104pt;}
.ws5c{word-spacing:-0.223379pt;}
.ws168{word-spacing:-0.213760pt;}
.ws42{word-spacing:-0.212535pt;}
.ws141{word-spacing:-0.211200pt;}
.ws189{word-spacing:-0.203072pt;}
.ws13f{word-spacing:-0.200640pt;}
.ws148{word-spacing:-0.191283pt;}
.ws13e{word-spacing:-0.179520pt;}
.ws27{word-spacing:-0.159402pt;}
.ws164{word-spacing:-0.158400pt;}
.ws155{word-spacing:-0.148800pt;}
.ws1e2{word-spacing:-0.143462pt;}
.ws140{word-spacing:-0.142560pt;}
.ws165{word-spacing:-0.134400pt;}
.ws38{word-spacing:-0.106268pt;}
.ws96{word-spacing:-0.098314pt;}
.wsb6{word-spacing:-0.095642pt;}
.wsfa{word-spacing:-0.093845pt;}
.ws4a{word-spacing:-0.093632pt;}
.wsc5{word-spacing:-0.089376pt;}
.ws43{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.wsb1{word-spacing:-0.011757pt;}
.ws5a{word-spacing:-0.005878pt;}
.ws11{word-spacing:-0.003170pt;}
.ws132{word-spacing:-0.002449pt;}
.wsb7{word-spacing:-0.001724pt;}
.wsb9{word-spacing:-0.001333pt;}
.ws1{word-spacing:0.000000pt;}
.ws47{word-spacing:0.004000pt;}
.ws7c{word-spacing:0.005878pt;}
.ws7b{word-spacing:0.023514pt;}
.ws5e{word-spacing:0.029392pt;}
.ws70{word-spacing:0.035270pt;}
.wse3{word-spacing:0.037408pt;}
.ws118{word-spacing:0.039278pt;}
.ws137{word-spacing:0.041149pt;}
.ws54{word-spacing:0.047027pt;}
.ws1dd{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.ws156{word-spacing:0.053440pt;}
.ws69{word-spacing:0.058784pt;}
.ws154{word-spacing:0.062400pt;}
.wsdd{word-spacing:0.064128pt;}
.ws112{word-spacing:0.067334pt;}
.wse2{word-spacing:0.080160pt;}
.ws117{word-spacing:0.084168pt;}
.wsd3{word-spacing:0.085504pt;}
.ws167{word-spacing:0.086400pt;}
.ws108{word-spacing:0.089779pt;}
.wsdc{word-spacing:0.090848pt;}
.ws111{word-spacing:0.095390pt;}
.wsb5{word-spacing:0.095642pt;}
.ws161{word-spacing:0.096192pt;}
.ws53{word-spacing:0.099933pt;}
.ws18d{word-spacing:0.101536pt;}
.ws23{word-spacing:0.106268pt;}
.ws153{word-spacing:0.110400pt;}
.ws166{word-spacing:0.115200pt;}
.wseb{word-spacing:0.120000pt;}
.ws120{word-spacing:0.126000pt;}
.wsec{word-spacing:0.129600pt;}
.ws121{word-spacing:0.136080pt;}
.ws1d{word-spacing:0.143462pt;}
.wsd2{word-spacing:0.148800pt;}
.wscf{word-spacing:0.153600pt;}
.ws107{word-spacing:0.156240pt;}
.wsd0{word-spacing:0.158400pt;}
.wsa2{word-spacing:0.158717pt;}
.ws2a{word-spacing:0.159402pt;}
.ws104{word-spacing:0.161280pt;}
.ws73{word-spacing:0.163680pt;}
.ws105{word-spacing:0.166320pt;}
.ws72{word-spacing:0.174240pt;}
.ws74{word-spacing:0.184800pt;}
.ws7d{word-spacing:0.188109pt;}
.ws17{word-spacing:0.191283pt;}
.wsed{word-spacing:0.192000pt;}
.ws122{word-spacing:0.201600pt;}
.ws71{word-spacing:0.211622pt;}
.ws3a{word-spacing:0.212535pt;}
.ws142{word-spacing:0.229258pt;}
.ws1bb{word-spacing:0.239104pt;}
.ws48{word-spacing:0.265669pt;}
.ws1bc{word-spacing:0.286925pt;}
.wsd1{word-spacing:0.364800pt;}
.ws3e{word-spacing:0.371937pt;}
.ws186{word-spacing:0.379424pt;}
.ws106{word-spacing:0.383040pt;}
.wsce{word-spacing:0.417600pt;}
.ws103{word-spacing:0.438480pt;}
.wscd{word-spacing:0.460800pt;}
.ws133{word-spacing:0.478205pt;}
.ws1e0{word-spacing:0.478208pt;}
.ws102{word-spacing:0.483840pt;}
.ws1b3{word-spacing:0.531339pt;}
.ws1a4{word-spacing:0.584473pt;}
.ws1a5{word-spacing:0.637606pt;}
.ws171{word-spacing:0.668000pt;}
.ws170{word-spacing:0.689376pt;}
.ws199{word-spacing:0.690740pt;}
.wsa4{word-spacing:0.693651pt;}
.ws66{word-spacing:0.711286pt;}
.ws68{word-spacing:0.717165pt;}
.ws33{word-spacing:0.743874pt;}
.ws6d{word-spacing:0.758314pt;}
.ws1d0{word-spacing:0.765133pt;}
.ws6c{word-spacing:0.781827pt;}
.wsa3{word-spacing:0.793584pt;}
.ws1c{word-spacing:0.812954pt;}
.ws1a2{word-spacing:0.850142pt;}
.ws9c{word-spacing:0.860640pt;}
.ws9d{word-spacing:0.876480pt;}
.ws8{word-spacing:0.892646pt;}
.ws1cf{word-spacing:0.956416pt;}
.ws190{word-spacing:0.977952pt;}
.ws188{word-spacing:0.999328pt;}
.ws3c{word-spacing:1.009543pt;}
.ws1e4{word-spacing:1.052058pt;}
.ws1ba{word-spacing:1.147699pt;}
.ws7e{word-spacing:1.193315pt;}
.ws2e{word-spacing:1.222079pt;}
.ws2d{word-spacing:1.275213pt;}
.ws3d{word-spacing:1.328347pt;}
.ws1de{word-spacing:1.338982pt;}
.ws7f{word-spacing:1.340275pt;}
.ws181{word-spacing:1.378752pt;}
.ws1b9{word-spacing:1.434624pt;}
.wsad{word-spacing:1.440208pt;}
.ws58{word-spacing:1.481357pt;}
.ws1c1{word-spacing:1.482445pt;}
.ws19{word-spacing:1.530266pt;}
.ws1c4{word-spacing:1.578086pt;}
.ws18b{word-spacing:1.592512pt;}
.ws1b8{word-spacing:1.594016pt;}
.ws16{word-spacing:1.625907pt;}
.wsf8{word-spacing:1.629920pt;}
.ws18c{word-spacing:1.645952pt;}
.wsc3{word-spacing:1.647150pt;}
.ws169{word-spacing:1.667328pt;}
.ws18e{word-spacing:1.672672pt;}
.ws182{word-spacing:1.683360pt;}
.ws18f{word-spacing:1.688704pt;}
.ws1a3{word-spacing:1.700284pt;}
.ws12d{word-spacing:1.711416pt;}
.wsac{word-spacing:1.775277pt;}
.ws59{word-spacing:1.798790pt;}
.ws35{word-spacing:1.806551pt;}
.ws1f{word-spacing:1.865011pt;}
.ws1a0{word-spacing:1.912819pt;}
.ws1c3{word-spacing:1.912832pt;}
.ws1b7{word-spacing:1.965953pt;}
.ws157{word-spacing:1.971936pt;}
.wsd4{word-spacing:1.993312pt;}
.ws19b{word-spacing:2.019087pt;}
.ws16a{word-spacing:2.020032pt;}
.ws14e{word-spacing:2.040000pt;}
.wse7{word-spacing:2.044800pt;}
.ws14f{word-spacing:2.064000pt;}
.ws32{word-spacing:2.072221pt;}
.wse4{word-spacing:2.073600pt;}
.wse6{word-spacing:2.088000pt;}
.wse5{word-spacing:2.092800pt;}
.ws109{word-spacing:2.092978pt;}
.wsae{word-spacing:2.139738pt;}
.ws11c{word-spacing:2.147040pt;}
.ws119{word-spacing:2.177280pt;}
.ws11b{word-spacing:2.192400pt;}
.ws11a{word-spacing:2.197440pt;}
.ws76{word-spacing:2.198522pt;}
.ws75{word-spacing:2.210278pt;}
.ws24{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws3{word-spacing:2.232624pt;}
.ws151{word-spacing:2.366400pt;}
.ws1c8{word-spacing:2.391040pt;}
.ws152{word-spacing:2.400000pt;}
.ws150{word-spacing:2.414400pt;}
.ws144{word-spacing:2.527712pt;}
.ws15b{word-spacing:2.549088pt;}
.ws13{word-spacing:2.550432pt;}
.ws174{word-spacing:2.581152pt;}
.ws1da{word-spacing:2.630144pt;}
.ws37{word-spacing:2.656693pt;}
.ws135{word-spacing:2.816095pt;}
.ws143{word-spacing:2.845146pt;}
.ws21{word-spacing:2.861926pt;}
.ws1cb{word-spacing:2.863121pt;}
.ws1e9{word-spacing:2.864017pt;}
.ws1e1{word-spacing:2.865382pt;}
.ws1df{word-spacing:2.866918pt;}
.ws1dc{word-spacing:2.867550pt;}
.ws26{word-spacing:2.869229pt;}
.ws1ce{word-spacing:2.869248pt;}
.wse0{word-spacing:2.907136pt;}
.ws176{word-spacing:2.912480pt;}
.ws195{word-spacing:2.944544pt;}
.wse1{word-spacing:2.955232pt;}
.ws175{word-spacing:2.960576pt;}
.ws1b1{word-spacing:2.975497pt;}
.ws196{word-spacing:2.976608pt;}
.ws138{word-spacing:2.983200pt;}
.ws139{word-spacing:2.988480pt;}
.ws163{word-spacing:3.019200pt;}
.ws162{word-spacing:3.033600pt;}
.ws115{word-spacing:3.052493pt;}
.ws3b{word-spacing:3.081764pt;}
.ws116{word-spacing:3.102994pt;}
.ws87{word-spacing:3.108352pt;}
.ws1ab{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.ws198{word-spacing:3.241166pt;}
.ws191{word-spacing:3.243808pt;}
.ws18{word-spacing:3.251814pt;}
.ws19a{word-spacing:3.294300pt;}
.wsa0{word-spacing:3.331680pt;}
.ws19c{word-spacing:3.347434pt;}
.wsa1{word-spacing:3.373920pt;}
.ws1e{word-spacing:3.443098pt;}
.ws1ad{word-spacing:3.453701pt;}
.ws19e{word-spacing:3.506835pt;}
.wsaf{word-spacing:3.521162pt;}
.ws98{word-spacing:3.538797pt;}
.wsb0{word-spacing:3.544675pt;}
.ws51{word-spacing:3.550554pt;}
.wsc2{word-spacing:3.559969pt;}
.ws52{word-spacing:3.562310pt;}
.wsd8{word-spacing:3.575136pt;}
.ws16c{word-spacing:3.601856pt;}
.ws3f{word-spacing:3.613103pt;}
.wse8{word-spacing:3.662400pt;}
.wscb{word-spacing:3.676800pt;}
.wscc{word-spacing:3.681600pt;}
.ws16b{word-spacing:3.719424pt;}
.ws14a{word-spacing:3.730022pt;}
.ws16d{word-spacing:3.735456pt;}
.ws10d{word-spacing:3.753893pt;}
.ws1b6{word-spacing:3.772505pt;}
.ws11d{word-spacing:3.845520pt;}
.ws100{word-spacing:3.860640pt;}
.ws101{word-spacing:3.865680pt;}
.ws6b{word-spacing:3.891501pt;}
.ws136{word-spacing:3.903258pt;}
.ws19d{word-spacing:3.931906pt;}
.wsd7{word-spacing:3.938528pt;}
.ws1bd{word-spacing:4.016947pt;}
.ws149{word-spacing:4.064768pt;}
.ws10c{word-spacing:4.135454pt;}
.ws1af{word-spacing:4.197575pt;}
.ws130{word-spacing:4.208230pt;}
.wsf{word-spacing:4.240070pt;}
.ws14{word-spacing:4.303872pt;}
.ws10{word-spacing:4.314458pt;}
.ws34{word-spacing:4.410111pt;}
.ws5b{word-spacing:4.614544pt;}
.ws50{word-spacing:4.626301pt;}
.ws4f{word-spacing:4.673328pt;}
.ws8e{word-spacing:4.675780pt;}
.ws36{word-spacing:4.782048pt;}
.ws1b0{word-spacing:4.835182pt;}
.ws1bf{word-spacing:4.925542pt;}
.ws1a8{word-spacing:5.047717pt;}
.ws39{word-spacing:5.100851pt;}
.wsf7{word-spacing:5.172992pt;}
.wsd5{word-spacing:5.178336pt;}
.ws131{word-spacing:5.212467pt;}
.wsd6{word-spacing:5.247808pt;}
.ws1be{word-spacing:5.308109pt;}
.ws4c{word-spacing:5.355222pt;}
.ws4d{word-spacing:5.384614pt;}
.ws12c{word-spacing:5.431642pt;}
.ws10a{word-spacing:5.437253pt;}
.ws1e8{word-spacing:5.451571pt;}
.ws1ae{word-spacing:5.472788pt;}
.ws10b{word-spacing:5.510198pt;}
.wsba{word-spacing:5.579056pt;}
.ws97{word-spacing:5.702048pt;}
.ws5f{word-spacing:5.772589pt;}
.ws178{word-spacing:5.792896pt;}
.ws60{word-spacing:5.843130pt;}
.wsb8{word-spacing:5.844725pt;}
.ws12f{word-spacing:6.025421pt;}
.ws183{word-spacing:6.081472pt;}
.wsa7{word-spacing:6.095901pt;}
.ws17d{word-spacing:6.108192pt;}
.ws179{word-spacing:6.129568pt;}
.ws1ac{word-spacing:6.163529pt;}
.ws17c{word-spacing:6.166976pt;}
.ws1db{word-spacing:6.168883pt;}
.ws184{word-spacing:6.199040pt;}
.ws12e{word-spacing:6.360166pt;}
.wsa5{word-spacing:6.372186pt;}
.wsa6{word-spacing:6.419213pt;}
.ws193{word-spacing:6.444864pt;}
.ws187{word-spacing:6.455552pt;}
.ws81{word-spacing:6.724890pt;}
.ws6e{word-spacing:6.766038pt;}
.ws17e{word-spacing:6.781536pt;}
.ws46{word-spacing:6.801135pt;}
.wsd{word-spacing:6.918010pt;}
.ws134{word-spacing:6.960537pt;}
.ws146{word-spacing:7.130499pt;}
.ws45{word-spacing:7.226206pt;}
.ws62{word-spacing:7.436176pt;}
.ws61{word-spacing:7.471446pt;}
.wsf4{word-spacing:8.106848pt;}
.ws197{word-spacing:8.182615pt;}
.wsf3{word-spacing:8.400768pt;}
.ws129{word-spacing:8.512190pt;}
.ws128{word-spacing:8.820806pt;}
.ws16e{word-spacing:9.026016pt;}
.ws4{word-spacing:9.259614pt;}
.ws16f{word-spacing:9.389408pt;}
.wsc6{word-spacing:10.329312pt;}
.ws2f{word-spacing:10.580134pt;}
.wsb{word-spacing:10.823338pt;}
.wsfb{word-spacing:10.845778pt;}
.ws4b{word-spacing:11.362243pt;}
.ws172{word-spacing:11.569760pt;}
.ws173{word-spacing:11.575104pt;}
.ws1d5{word-spacing:11.899366pt;}
.ws1e3{word-spacing:11.901534pt;}
.ws1eb{word-spacing:11.901551pt;}
.ws1d1{word-spacing:11.901867pt;}
.ws1e5{word-spacing:11.903573pt;}
.ws1ea{word-spacing:11.903633pt;}
.ws1d3{word-spacing:11.903863pt;}
.ws1d6{word-spacing:11.907379pt;}
.ws1cd{word-spacing:11.908762pt;}
.ws17f{word-spacing:11.927808pt;}
.ws1d2{word-spacing:12.050842pt;}
.ws180{word-spacing:12.093472pt;}
.ws44{word-spacing:13.230333pt;}
.wsc{word-spacing:14.319536pt;}
.ws1c7{word-spacing:14.489702pt;}
.ws1c6{word-spacing:14.585344pt;}
.ws1d4{word-spacing:14.728806pt;}
.ws1e6{word-spacing:14.766097pt;}
.ws1ec{word-spacing:14.770082pt;}
.ws1d7{word-spacing:14.772019pt;}
.ws1d9{word-spacing:14.772932pt;}
.ws1cc{word-spacing:14.776627pt;}
.ws1d8{word-spacing:15.063552pt;}
.ws1e7{word-spacing:15.159194pt;}
.ws1a7{word-spacing:16.418365pt;}
.ws1c2{word-spacing:19.606528pt;}
.ws1c5{word-spacing:19.845632pt;}
.ws6a{word-spacing:22.919882pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws14d{word-spacing:1088.059776pt;}
._12{margin-left:-6.647181pt;}
._c{margin-left:-5.738458pt;}
._6{margin-left:-4.718299pt;}
._1a{margin-left:-3.825638pt;}
._0{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._14{width:1.058042pt;}
._2{width:2.045648pt;}
._5{width:3.270546pt;}
._20{width:4.367600pt;}
._7{width:9.861670pt;}
._1{width:11.530016pt;}
._f{width:13.180965pt;}
._8{width:15.015731pt;}
._a{width:15.908354pt;}
._b{width:17.598054pt;}
._1d{width:18.596853pt;}
._9{width:20.036915pt;}
._e{width:21.614869pt;}
._d{width:23.336390pt;}
._22{width:24.421262pt;}
._17{width:26.014246pt;}
._4{width:27.188522pt;}
._1f{width:29.074848pt;}
._1c{width:30.174925pt;}
._13{width:32.305391pt;}
._19{width:33.856896pt;}
._1e{width:37.172426pt;}
._16{width:38.208698pt;}
._24{width:54.993920pt;}
._23{width:78.904320pt;}
._10{width:560.584954pt;}
._18{width:1757.606278pt;}
._1b{width:1845.539494pt;}
._15{width:1932.644067pt;}
._21{width:2103.917067pt;}
._11{width:2125.170400pt;}
.fs13{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:35.659360pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fs10{font-size:44.688000pt;}
.fs8{font-size:46.816000pt;}
.fsb{font-size:47.248960pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fs14{font-size:49.829333pt;}
.fs12{font-size:50.400000pt;}
.fsa{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs15{font-size:55.365867pt;}
.fs11{font-size:56.112000pt;}
.fs9{font-size:58.784000pt;}
.fs1{font-size:70.553280pt;}
.fs3{font-size:95.641600pt;}
.yd4{bottom:-769.440933pt;}
.y169{bottom:-719.403600pt;}
.yf0{bottom:-719.116965pt;}
.yef{bottom:-702.077621pt;}
.yee{bottom:-684.958117pt;}
.y192{bottom:-668.506472pt;}
.yed{bottom:-667.838613pt;}
.y191{bottom:-651.467128pt;}
.yec{bottom:-650.799269pt;}
.y190{bottom:-634.347624pt;}
.yeb{bottom:-633.679765pt;}
.y18f{bottom:-617.228120pt;}
.yea{bottom:-616.640421pt;}
.y18e{bottom:-600.188776pt;}
.ye9{bottom:-595.520933pt;}
.y18d{bottom:-583.069272pt;}
.y18c{bottom:-565.949768pt;}
.y12e{bottom:-562.865160pt;}
.ye8{bottom:-562.801733pt;}
.y18b{bottom:-548.910424pt;}
.ye7{bottom:-547.361333pt;}
.ye6{bottom:-532.001333pt;}
.y18a{bottom:-531.790920pt;}
.yae{bottom:-523.825427pt;}
.ye5{bottom:-516.560933pt;}
.y189{bottom:-514.751576pt;}
.y188{bottom:-497.632072pt;}
.ye4{bottom:-496.638173pt;}
.y155{bottom:-491.914267pt;}
.y187{bottom:-480.512568pt;}
.y186{bottom:-463.473224pt;}
.y185{bottom:-446.353720pt;}
.y184{bottom:-429.314376pt;}
.y183{bottom:-412.194872pt;}
.y182{bottom:-395.075368pt;}
.y181{bottom:-378.036024pt;}
.y180{bottom:-360.916520pt;}
.y17f{bottom:-343.877176pt;}
.y6b{bottom:-343.608760pt;}
.y17e{bottom:-326.757672pt;}
.yc2{bottom:-317.459249pt;}
.y17d{bottom:-309.638168pt;}
.yc1{bottom:-298.627795pt;}
.y17c{bottom:-292.598824pt;}
.y102{bottom:-290.472980pt;}
.y97{bottom:-289.219418pt;}
.yc0{bottom:-279.884516pt;}
.y17b{bottom:-275.479320pt;}
.y96{bottom:-270.476140pt;}
.ybf{bottom:-261.053062pt;}
.y17a{bottom:-258.359816pt;}
.ye3{bottom:-258.318485pt;}
.y95{bottom:-251.644686pt;}
.ybe{bottom:-242.309783pt;}
.y179{bottom:-241.319136pt;}
.ye2{bottom:-241.198981pt;}
.y13d{bottom:-241.133341pt;}
.y11e{bottom:-237.632814pt;}
.y94{bottom:-232.813231pt;}
.y178{bottom:-224.199632pt;}
.ye1{bottom:-224.159637pt;}
.ybd{bottom:-223.478329pt;}
.y13c{bottom:-222.390062pt;}
.y11d{bottom:-219.741502pt;}
.y93{bottom:-214.069953pt;}
.y177{bottom:-207.160288pt;}
.ye0{bottom:-207.040133pt;}
.ybc{bottom:-204.646875pt;}
.y162{bottom:-203.671501pt;}
.y13b{bottom:-203.558608pt;}
.y11c{bottom:-201.766023pt;}
.y92{bottom:-190.838516pt;}
.y176{bottom:-190.040784pt;}
.ydf{bottom:-189.920629pt;}
.y161{bottom:-186.551997pt;}
.ybb{bottom:-185.903596pt;}
.y13a{bottom:-184.815330pt;}
.y11b{bottom:-183.790544pt;}
.y175{bottom:-172.921280pt;}
.yde{bottom:-172.881285pt;}
.y160{bottom:-169.512653pt;}
.y91{bottom:-167.693786pt;}
.yba{bottom:-167.072142pt;}
.y139{bottom:-165.983875pt;}
.y11a{bottom:-165.899233pt;}
.y174{bottom:-155.881936pt;}
.ydd{bottom:-155.761781pt;}
.y15f{bottom:-152.393149pt;}
.yb9{bottom:-148.328863pt;}
.y119{bottom:-147.923754pt;}
.y138{bottom:-147.152421pt;}
.y173{bottom:-138.762432pt;}
.ydc{bottom:-138.721101pt;}
.y15e{bottom:-135.353805pt;}
.y90{bottom:-131.262402pt;}
.y118{bottom:-130.032442pt;}
.yb8{bottom:-125.097427pt;}
.y137{bottom:-124.009160pt;}
.y172{bottom:-121.723088pt;}
.ydb{bottom:-121.601597pt;}
.y15d{bottom:-118.234301pt;}
.y8f{bottom:-112.430947pt;}
.y117{bottom:-107.856980pt;}
.y15c{bottom:-101.114797pt;}
.y171{bottom:-100.603600pt;}
.yda{bottom:-100.560933pt;}
.y8e{bottom:-93.687669pt;}
.yb7{bottom:-89.106307pt;}
.y136{bottom:-88.018040pt;}
.y15b{bottom:-80.074133pt;}
.y8d{bottom:-74.856214pt;}
.y116{bottom:-73.501820pt;}
.yb6{bottom:-72.121867pt;}
.y135{bottom:-71.033600pt;}
.y170{bottom:-67.883867pt;}
.yd9{bottom:-67.761200pt;}
.y115{bottom:-57.289400pt;}
.y8c{bottom:-56.024760pt;}
.yb5{bottom:-55.225867pt;}
.y134{bottom:-54.049160pt;}
.y16f{bottom:-52.443467pt;}
.yd8{bottom:-52.320800pt;}
.y15a{bottom:-47.355067pt;}
.y114{bottom:-41.161400pt;}
.yb4{bottom:-38.241427pt;}
.y133{bottom:-37.153160pt;}
.y16c{bottom:-37.084000pt;}
.y16e{bottom:-37.083467pt;}
.yd7{bottom:-36.960800pt;}
.y16d{bottom:-33.723600pt;}
.y159{bottom:-31.914667pt;}
.y113{bottom:-24.948980pt;}
.y16b{bottom:-21.643600pt;}
.yd6{bottom:-21.600800pt;}
.yb3{bottom:-21.345427pt;}
.y132{bottom:-20.257160pt;}
.y8b{bottom:-20.120760pt;}
.y158{bottom:-16.474267pt;}
.y112{bottom:-4.030082pt;}
.y16a{bottom:-1.723104pt;}
.yd5{bottom:-1.680477pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:0.566573pt;}
.y131{bottom:1.655227pt;}
.y8a{bottom:1.891261pt;}
.y9c{bottom:5.927240pt;}
.y157{bottom:7.445125pt;}
.y1c{bottom:15.688110pt;}
.y156{bottom:21.445069pt;}
.y4a{bottom:28.346667pt;}
.y98{bottom:64.535240pt;}
.y12a{bottom:83.914667pt;}
.y49{bottom:92.108000pt;}
.y1fd{bottom:92.493333pt;}
.y1a{bottom:93.018667pt;}
.y129{bottom:100.652000pt;}
.yaa{bottom:101.048000pt;}
.y258{bottom:104.249333pt;}
.y1cb{bottom:108.433333pt;}
.y48{bottom:108.844000pt;}
.y19{bottom:108.920000pt;}
.y1fc{bottom:109.230667pt;}
.y9a{bottom:111.351240pt;}
.y99{bottom:113.903387pt;}
.y197{bottom:114.292000pt;}
.y128{bottom:117.389333pt;}
.ya9{bottom:117.785333pt;}
.y257{bottom:119.592000pt;}
.y18{bottom:124.820000pt;}
.y1ca{bottom:125.170667pt;}
.y47{bottom:125.581333pt;}
.y1fb{bottom:125.968000pt;}
.y151{bottom:129.828000pt;}
.y196{bottom:131.388000pt;}
.y9b{bottom:133.879387pt;}
.y127{bottom:134.126667pt;}
.ya8{bottom:134.522667pt;}
.y256{bottom:134.933333pt;}
.y17{bottom:140.720000pt;}
.y1c9{bottom:141.908000pt;}
.y46{bottom:142.318667pt;}
.y1fa{bottom:142.705333pt;}
.y150{bottom:146.564000pt;}
.y194{bottom:148.484000pt;}
.y255{bottom:150.276000pt;}
.y126{bottom:150.864000pt;}
.ya7{bottom:151.260000pt;}
.y195{bottom:152.824000pt;}
.y16{bottom:156.621333pt;}
.y1c8{bottom:158.645333pt;}
.y45{bottom:159.056000pt;}
.y1f9{bottom:159.442667pt;}
.y14f{bottom:163.301333pt;}
.y193{bottom:165.580000pt;}
.y254{bottom:165.618667pt;}
.y89{bottom:166.627542pt;}
.y125{bottom:167.601333pt;}
.ya6{bottom:167.997333pt;}
.y15{bottom:172.521333pt;}
.y1c7{bottom:175.382667pt;}
.y44{bottom:175.793333pt;}
.y1f8{bottom:176.180000pt;}
.y224{bottom:176.658667pt;}
.y14e{bottom:180.038667pt;}
.y253{bottom:180.961333pt;}
.y124{bottom:184.338667pt;}
.ya5{bottom:184.734667pt;}
.y88{bottom:185.458997pt;}
.y166{bottom:188.173333pt;}
.y14{bottom:188.421333pt;}
.y1c6{bottom:192.120000pt;}
.y43{bottom:192.530667pt;}
.y1f7{bottom:192.917333pt;}
.y252{bottom:196.304000pt;}
.y14d{bottom:196.776000pt;}
.y223{bottom:200.249333pt;}
.y87{bottom:204.290451pt;}
.y13{bottom:204.322667pt;}
.y123{bottom:205.060000pt;}
.ya4{bottom:205.456000pt;}
.y1c5{bottom:208.857333pt;}
.y42{bottom:209.268000pt;}
.y1f6{bottom:209.654667pt;}
.y251{bottom:211.646667pt;}
.y14c{bottom:213.513333pt;}
.y222{bottom:215.870667pt;}
.y86{bottom:223.033730pt;}
.ya3{bottom:223.389333pt;}
.y1c4{bottom:225.594667pt;}
.y41{bottom:226.005333pt;}
.y1f5{bottom:226.392000pt;}
.y250{bottom:226.989333pt;}
.yd0{bottom:228.898667pt;}
.y14b{bottom:230.250667pt;}
.y122{bottom:232.106667pt;}
.yd3{bottom:238.639187pt;}
.y221{bottom:239.462667pt;}
.y85{bottom:241.865184pt;}
.y1c3{bottom:242.332000pt;}
.y40{bottom:242.742667pt;}
.y1f3{bottom:243.129333pt;}
.ycf{bottom:245.636000pt;}
.y111{bottom:246.205590pt;}
.yd2{bottom:247.199067pt;}
.y1f4{bottom:247.950667pt;}
.y121{bottom:249.202667pt;}
.y14a{bottom:250.973333pt;}
.ya2{bottom:253.277333pt;}
.y24f{bottom:257.674667pt;}
.y1c2{bottom:259.069333pt;}
.y3f{bottom:259.480000pt;}
.y84{bottom:260.696638pt;}
.yce{bottom:262.373333pt;}
.y220{bottom:263.054667pt;}
.y1f2{bottom:263.850667pt;}
.y110{bottom:264.181070pt;}
.y120{bottom:266.298667pt;}
.y12{bottom:266.804000pt;}
.ya1{bottom:270.014667pt;}
.y24e{bottom:273.016000pt;}
.y1c1{bottom:275.806667pt;}
.y3e{bottom:276.217333pt;}
.ycd{bottom:279.110667pt;}
.y83{bottom:279.439917pt;}
.y149{bottom:280.861333pt;}
.y10f{bottom:282.072381pt;}
.y11{bottom:282.705333pt;}
.y11f{bottom:283.394667pt;}
.y21f{bottom:286.645333pt;}
.ya0{bottom:286.752000pt;}
.y24d{bottom:288.358667pt;}
.y168{bottom:288.676520pt;}
.y1c0{bottom:292.544000pt;}
.y3d{bottom:292.954667pt;}
.y1f1{bottom:293.738667pt;}
.ycc{bottom:295.848000pt;}
.y167{bottom:297.236400pt;}
.y148{bottom:297.598667pt;}
.y82{bottom:298.271371pt;}
.y10{bottom:298.605333pt;}
.y10e{bottom:300.047860pt;}
.y21e{bottom:302.266667pt;}
.y9f{bottom:303.489333pt;}
.y24c{bottom:303.701333pt;}
.yff{bottom:305.989333pt;}
.y1bf{bottom:309.280000pt;}
.y3c{bottom:309.692000pt;}
.y1f0{bottom:310.476000pt;}
.ycb{bottom:312.585333pt;}
.y147{bottom:314.336000pt;}
.yf{bottom:314.505333pt;}
.y81{bottom:317.016119pt;}
.y10d{bottom:318.023339pt;}
.y24b{bottom:319.044000pt;}
.y9e{bottom:320.226667pt;}
.y21d{bottom:325.858667pt;}
.y1be{bottom:326.017333pt;}
.y3b{bottom:326.429333pt;}
.y1ef{bottom:327.213333pt;}
.yca{bottom:329.322667pt;}
.y146{bottom:331.073333pt;}
.y24a{bottom:334.386667pt;}
.y80{bottom:335.847574pt;}
.y10c{bottom:335.914650pt;}
.ye{bottom:338.376000pt;}
.y21c{bottom:341.480000pt;}
.y1bd{bottom:342.754667pt;}
.y3a{bottom:343.166667pt;}
.y1ee{bottom:343.950667pt;}
.yc9{bottom:346.060000pt;}
.y145{bottom:347.810667pt;}
.y249{bottom:349.729333pt;}
.y9d{bottom:350.062667pt;}
.y10b{bottom:353.890130pt;}
.yd{bottom:354.277333pt;}
.y7f{bottom:354.679028pt;}
.y1bc{bottom:359.492000pt;}
.y39{bottom:359.904000pt;}
.y1ed{bottom:360.688000pt;}
.yc8{bottom:362.797333pt;}
.y144{bottom:364.548000pt;}
.y21b{bottom:365.072000pt;}
.y68{bottom:370.000000pt;}
.yc{bottom:370.177333pt;}
.y10a{bottom:371.782844pt;}
.y7e{bottom:373.423776pt;}
.y1bb{bottom:376.229333pt;}
.y38{bottom:376.641333pt;}
.y1ec{bottom:377.425333pt;}
.y248{bottom:380.414667pt;}
.y21a{bottom:380.693333pt;}
.yc7{bottom:383.520000pt;}
.y143{bottom:385.270667pt;}
.y109{bottom:389.758323pt;}
.y7d{bottom:392.255230pt;}
.y1ba{bottom:392.966667pt;}
.y37{bottom:393.378667pt;}
.y1eb{bottom:394.162667pt;}
.yb{bottom:395.376000pt;}
.y247{bottom:395.756000pt;}
.y219{bottom:396.314667pt;}
.y1b9{bottom:409.704000pt;}
.y36{bottom:410.116000pt;}
.yc6{bottom:410.566667pt;}
.y1ea{bottom:410.900000pt;}
.y7c{bottom:410.998509pt;}
.y246{bottom:411.098667pt;}
.ya{bottom:411.276000pt;}
.y108{bottom:411.851020pt;}
.y218{bottom:411.936000pt;}
.y142{bottom:412.317333pt;}
.y1b8{bottom:426.441333pt;}
.y9{bottom:427.177333pt;}
.y217{bottom:427.557333pt;}
.y1e8{bottom:427.637333pt;}
.yc5{bottom:427.662667pt;}
.y141{bottom:429.412000pt;}
.y7b{bottom:429.829963pt;}
.y35{bottom:430.838667pt;}
.y1e9{bottom:432.458667pt;}
.y245{bottom:441.784000pt;}
.y1b7{bottom:443.178667pt;}
.yc4{bottom:444.758667pt;}
.y107{bottom:446.290740pt;}
.y140{bottom:446.508000pt;}
.y1e7{bottom:448.360000pt;}
.y7a{bottom:448.661418pt;}
.y8{bottom:451.048000pt;}
.y244{bottom:457.126667pt;}
.y165{bottom:458.094667pt;}
.y216{bottom:459.118667pt;}
.y1b6{bottom:459.916000pt;}
.yc3{bottom:461.853333pt;}
.y106{bottom:462.503160pt;}
.y13f{bottom:463.604000pt;}
.y7{bottom:466.948000pt;}
.y79{bottom:467.406166pt;}
.y243{bottom:472.469333pt;}
.y130{bottom:473.774514pt;}
.y164{bottom:475.190667pt;}
.y215{bottom:475.856000pt;}
.y1b5{bottom:476.653333pt;}
.y1e6{bottom:478.248000pt;}
.y105{bottom:478.631160pt;}
.y13e{bottom:480.700000pt;}
.y6{bottom:482.848000pt;}
.yab{bottom:484.448000pt;}
.y78{bottom:486.237620pt;}
.y242{bottom:487.812000pt;}
.y163{bottom:492.286667pt;}
.y12f{bottom:492.519262pt;}
.y214{bottom:492.593333pt;}
.y1b4{bottom:493.390667pt;}
.yb1{bottom:493.982793pt;}
.y104{bottom:494.759160pt;}
.y1e5{bottom:494.985333pt;}
.y34{bottom:497.326667pt;}
.y5{bottom:498.749333pt;}
.y241{bottom:503.154667pt;}
.y12b{bottom:503.294667pt;}
.y77{bottom:504.980898pt;}
.y213{bottom:509.330667pt;}
.y1b3{bottom:510.128000pt;}
.y1e4{bottom:511.722667pt;}
.yb0{bottom:512.814248pt;}
.y4{bottom:514.649333pt;}
.y152{bottom:514.880000pt;}
.y103{bottom:515.675499pt;}
.y154{bottom:516.165853pt;}
.y240{bottom:518.497333pt;}
.y76{bottom:523.812353pt;}
.y153{bottom:524.725733pt;}
.y212{bottom:526.068000pt;}
.y1b2{bottom:526.865333pt;}
.y1e3{bottom:528.460000pt;}
.y3{bottom:530.549333pt;}
.y33{bottom:530.562667pt;}
.y67{bottom:530.850667pt;}
.yaf{bottom:531.558996pt;}
.y23f{bottom:533.838667pt;}
.yfe{bottom:541.510667pt;}
.y75{bottom:542.643807pt;}
.y211{bottom:542.805333pt;}
.y1b1{bottom:543.602667pt;}
.y1e2{bottom:545.197333pt;}
.y12d{bottom:546.022972pt;}
.y2{bottom:546.450667pt;}
.y66{bottom:547.588000pt;}
.y32{bottom:547.857333pt;}
.y23e{bottom:549.181333pt;}
.y12c{bottom:555.438840pt;}
.yfd{bottom:558.248000pt;}
.y20f{bottom:559.542667pt;}
.y1b0{bottom:560.340000pt;}
.y74{bottom:561.387086pt;}
.y1e1{bottom:561.934667pt;}
.y1{bottom:562.350667pt;}
.y65{bottom:564.325333pt;}
.y210{bottom:564.365333pt;}
.y23d{bottom:564.524000pt;}
.y31{bottom:565.153333pt;}
.yfc{bottom:574.985333pt;}
.y20d{bottom:576.280000pt;}
.y1af{bottom:577.077333pt;}
.y1df{bottom:578.672000pt;}
.y23c{bottom:579.866667pt;}
.y73{bottom:580.218540pt;}
.y64{bottom:581.062667pt;}
.y20e{bottom:581.102667pt;}
.y30{bottom:582.448000pt;}
.y1e0{bottom:583.493333pt;}
.yad{bottom:585.062705pt;}
.yfb{bottom:591.722667pt;}
.y20c{bottom:593.017333pt;}
.y1ae{bottom:593.814667pt;}
.yac{bottom:594.478573pt;}
.y23b{bottom:595.209333pt;}
.y63{bottom:597.800000pt;}
.y72{bottom:599.049994pt;}
.y270{bottom:599.194667pt;}
.y1de{bottom:599.393333pt;}
.y2f{bottom:599.744000pt;}
.yfa{bottom:608.460000pt;}
.y20b{bottom:609.754667pt;}
.y1ad{bottom:610.552000pt;}
.y62{bottom:614.537333pt;}
.y2e{bottom:617.038667pt;}
.y71{bottom:617.793273pt;}
.yf9{bottom:625.197333pt;}
.y23a{bottom:625.894667pt;}
.y1ac{bottom:627.289333pt;}
.y1dd{bottom:629.281333pt;}
.y26f{bottom:629.878667pt;}
.y20a{bottom:630.477333pt;}
.y61{bottom:631.274667pt;}
.y2d{bottom:634.333333pt;}
.y70{bottom:636.624727pt;}
.y239{bottom:641.237333pt;}
.yf8{bottom:641.934667pt;}
.y1ab{bottom:644.026667pt;}
.y26e{bottom:645.221333pt;}
.y1dc{bottom:646.018667pt;}
.y60{bottom:648.012000pt;}
.y2c{bottom:651.629333pt;}
.y6f{bottom:655.368006pt;}
.y238{bottom:656.578667pt;}
.yf7{bottom:658.672000pt;}
.y209{bottom:660.365333pt;}
.y26d{bottom:660.564000pt;}
.y1aa{bottom:660.764000pt;}
.y1db{bottom:662.756000pt;}
.y5f{bottom:664.749333pt;}
.y2b{bottom:668.924000pt;}
.y237{bottom:671.921333pt;}
.y6e{bottom:674.199460pt;}
.yf6{bottom:675.409333pt;}
.y26c{bottom:675.906667pt;}
.y208{bottom:677.102667pt;}
.y1a9{bottom:677.501333pt;}
.y1da{bottom:679.493333pt;}
.y5e{bottom:681.485333pt;}
.y2a{bottom:686.218667pt;}
.y236{bottom:687.264000pt;}
.y26b{bottom:691.249333pt;}
.y6d{bottom:693.030914pt;}
.y207{bottom:693.840000pt;}
.y1a8{bottom:694.238667pt;}
.yf5{bottom:696.132000pt;}
.y1d9{bottom:696.230667pt;}
.y5d{bottom:698.222667pt;}
.y235{bottom:702.606667pt;}
.y29{bottom:703.514667pt;}
.y26a{bottom:706.592000pt;}
.y206{bottom:710.577333pt;}
.y1a7{bottom:710.976000pt;}
.y6c{bottom:711.775662pt;}
.y1d8{bottom:712.968000pt;}
.y5c{bottom:714.960000pt;}
.y234{bottom:717.949333pt;}
.y28{bottom:720.809333pt;}
.y269{bottom:721.934667pt;}
.yf4{bottom:723.178667pt;}
.y205{bottom:727.314667pt;}
.y1a6{bottom:727.713333pt;}
.y1d7{bottom:729.705333pt;}
.y5b{bottom:731.697333pt;}
.y233{bottom:733.292000pt;}
.y268{bottom:737.277333pt;}
.y27{bottom:738.105333pt;}
.yf3{bottom:740.274667pt;}
.y204{bottom:744.052000pt;}
.y1a5{bottom:744.450667pt;}
.y1d6{bottom:746.442667pt;}
.y5a{bottom:748.434667pt;}
.y232{bottom:748.634667pt;}
.y267{bottom:752.620000pt;}
.y26{bottom:755.400000pt;}
.yf2{bottom:757.370667pt;}
.y203{bottom:760.789333pt;}
.y1a4{bottom:761.186667pt;}
.y1d5{bottom:763.180000pt;}
.y231{bottom:763.977333pt;}
.y59{bottom:765.172000pt;}
.y6a{bottom:765.279372pt;}
.y266{bottom:767.961333pt;}
.y101{bottom:768.011146pt;}
.y25{bottom:772.694667pt;}
.yf1{bottom:774.465333pt;}
.y69{bottom:774.695240pt;}
.y100{bottom:776.999020pt;}
.y201{bottom:777.526667pt;}
.y1a3{bottom:777.924000pt;}
.y230{bottom:779.320000pt;}
.y58{bottom:781.909333pt;}
.y202{bottom:782.348000pt;}
.y265{bottom:783.304000pt;}
.y1d4{bottom:783.902667pt;}
.y200{bottom:794.264000pt;}
.y1a2{bottom:794.661333pt;}
.yd1{bottom:797.060000pt;}
.y57{bottom:798.646667pt;}
.y24{bottom:804.738667pt;}
.y22f{bottom:810.004000pt;}
.y1a1{bottom:811.398667pt;}
.y1d3{bottom:813.790667pt;}
.y264{bottom:813.989333pt;}
.y1ff{bottom:814.985333pt;}
.y56{bottom:815.384000pt;}
.y23{bottom:822.942667pt;}
.y22e{bottom:825.346667pt;}
.y1a0{bottom:828.136000pt;}
.y263{bottom:829.332000pt;}
.y1d2{bottom:830.528000pt;}
.y55{bottom:832.121333pt;}
.y22{bottom:833.430667pt;}
.y22d{bottom:840.689333pt;}
.y262{bottom:844.674667pt;}
.y19f{bottom:844.873333pt;}
.y1d1{bottom:847.265333pt;}
.y54{bottom:848.858667pt;}
.y21{bottom:851.634667pt;}
.y22c{bottom:856.032000pt;}
.y261{bottom:860.017333pt;}
.y19e{bottom:861.610667pt;}
.y1d0{bottom:864.002667pt;}
.y53{bottom:865.596000pt;}
.y22b{bottom:871.374667pt;}
.y260{bottom:875.360000pt;}
.y19d{bottom:878.348000pt;}
.y1cf{bottom:880.740000pt;}
.y52{bottom:882.333333pt;}
.y22a{bottom:886.717333pt;}
.y20{bottom:889.093333pt;}
.y25e{bottom:890.701333pt;}
.y25f{bottom:890.702667pt;}
.y19c{bottom:895.085333pt;}
.y1ce{bottom:897.477333pt;}
.y51{bottom:899.070667pt;}
.y229{bottom:902.060000pt;}
.y25d{bottom:906.044000pt;}
.y19b{bottom:911.822667pt;}
.y50{bottom:915.808000pt;}
.y228{bottom:917.401333pt;}
.y1cd{bottom:918.198667pt;}
.y25c{bottom:921.386667pt;}
.y1f{bottom:921.770667pt;}
.y19a{bottom:928.560000pt;}
.y4f{bottom:932.545333pt;}
.y227{bottom:932.744000pt;}
.y1cc{bottom:936.132000pt;}
.y25b{bottom:936.729333pt;}
.y199{bottom:945.297333pt;}
.y1e{bottom:946.876000pt;}
.y226{bottom:948.086667pt;}
.y4e{bottom:949.282667pt;}
.y25a{bottom:952.072000pt;}
.y198{bottom:962.034667pt;}
.y225{bottom:963.429333pt;}
.y4d{bottom:966.020000pt;}
.y1fe{bottom:966.856000pt;}
.y259{bottom:967.414667pt;}
.y1d{bottom:971.982667pt;}
.y4c{bottom:982.757333pt;}
.y1b{bottom:1010.637333pt;}
.y4b{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2a{height:24.466203pt;}
.h17{height:25.978401pt;}
.h2{height:27.076941pt;}
.h2b{height:27.184641pt;}
.h28{height:27.226250pt;}
.h3{height:27.262909pt;}
.h2c{height:29.397999pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.h2e{height:33.378918pt;}
.h16{height:34.421606pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h1a{height:35.052646pt;}
.h18{height:37.087439pt;}
.hd{height:38.256384pt;}
.h1f{height:38.462187pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h29{height:39.010156pt;}
.h1c{height:39.359687pt;}
.h24{height:40.385297pt;}
.h21{height:41.327672pt;}
.h15{height:42.308406pt;}
.h14{height:42.911172pt;}
.h11{height:43.295656pt;}
.h2d{height:43.660390pt;}
.h1e{height:44.390625pt;}
.h4{height:45.271688pt;}
.h23{height:46.610156pt;}
.h5{height:47.835124pt;}
.h8{height:48.360277pt;}
.h13{height:48.829687pt;}
.h1d{height:49.421563pt;}
.h22{height:51.892641pt;}
.h12{height:54.363719pt;}
.h7{height:68.861952pt;}
.h10{height:146.477467pt;}
.h1b{height:198.981333pt;}
.h20{height:221.149600pt;}
.h27{height:250.181333pt;}
.h25{height:449.919067pt;}
.h19{height:467.197867pt;}
.h26{height:481.161333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:170.445733pt;}
.w2{width:173.816404pt;}
.w8{width:567.271067pt;}
.w9{width:599.853200pt;}
.w5{width:617.889733pt;}
.w6{width:642.063520pt;}
.w4{width:659.837933pt;}
.w7{width:686.078507pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2b{left:-192.215467pt;}
.x7b{left:-65.454267pt;}
.x43{left:-52.159800pt;}
.x73{left:-46.399760pt;}
.x6b{left:-44.290680pt;}
.x59{left:-38.108933pt;}
.x2c{left:-0.991115pt;}
.x0{left:0.000000pt;}
.x2d{left:30.161466pt;}
.x30{left:37.992533pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x31{left:51.456533pt;}
.x2{left:53.285701pt;}
.x42{left:66.740600pt;}
.x6a{left:75.629613pt;}
.x2f{left:76.800533pt;}
.xc0{left:84.229333pt;}
.x32{left:87.976533pt;}
.x84{left:96.734800pt;}
.x7e{left:108.385733pt;}
.x7a{left:113.026267pt;}
.x86{left:127.003867pt;}
.x7d{left:131.265315pt;}
.x5a{left:135.731067pt;}
.x7f{left:136.705639pt;}
.x44{left:139.063135pt;}
.x74{left:144.823175pt;}
.x33{left:154.856533pt;}
.x5b{left:164.050973pt;}
.x2e{left:168.409677pt;}
.x47{left:170.216097pt;}
.x76{left:175.976137pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x48{left:225.346667pt;}
.xb2{left:231.882667pt;}
.x49{left:233.141333pt;}
.x5{left:239.924000pt;}
.xad{left:244.844000pt;}
.x39{left:246.193333pt;}
.xc{left:250.204000pt;}
.xae{left:253.049333pt;}
.xa0{left:258.656000pt;}
.x3d{left:261.874667pt;}
.x29{left:265.026667pt;}
.xb3{left:268.237333pt;}
.x8c{left:270.657333pt;}
.x5d{left:272.718667pt;}
.x4a{left:275.065333pt;}
.x7{left:276.206667pt;}
.x1f{left:277.394667pt;}
.x2a{left:278.310667pt;}
.x9c{left:283.865333pt;}
.x23{left:289.212000pt;}
.x64{left:291.778667pt;}
.xa7{left:302.141333pt;}
.x56{left:304.880000pt;}
.x87{left:307.163867pt;}
.xa1{left:308.808000pt;}
.x88{left:310.843867pt;}
.x57{left:312.953333pt;}
.x36{left:316.404000pt;}
.x62{left:319.562667pt;}
.x3e{left:321.540000pt;}
.x3a{left:322.905333pt;}
.x8{left:324.100000pt;}
.x63{left:327.766667pt;}
.x3f{left:329.745333pt;}
.x3b{left:331.110667pt;}
.xaf{left:332.032000pt;}
.x9a{left:333.834667pt;}
.xa2{left:336.305333pt;}
.x69{left:337.457333pt;}
.x34{left:344.054667pt;}
.x11{left:345.117333pt;}
.x9b{left:347.118667pt;}
.xb4{left:348.365333pt;}
.x12{left:351.758667pt;}
.x13{left:355.146667pt;}
.xd{left:357.074667pt;}
.xb0{left:360.654667pt;}
.x14{left:361.788000pt;}
.xe{left:363.716000pt;}
.x9{left:365.145333pt;}
.xb1{left:370.513333pt;}
.x80{left:373.470667pt;}
.xa3{left:374.452000pt;}
.x28{left:376.830667pt;}
.x81{left:382.770667pt;}
.x40{left:387.361333pt;}
.x35{left:390.244000pt;}
.x41{left:395.566667pt;}
.x9e{left:396.732000pt;}
.x3c{left:398.597333pt;}
.x89{left:402.660000pt;}
.x9f{left:410.014667pt;}
.x8a{left:414.817333pt;}
.xa{left:421.100000pt;}
.x8b{left:423.114667pt;}
.x4f{left:428.178667pt;}
.x90{left:429.446667pt;}
.xa9{left:430.517333pt;}
.xa8{left:432.990667pt;}
.x50{left:436.250667pt;}
.xb5{left:441.350667pt;}
.x91{left:442.730667pt;}
.x98{left:445.624000pt;}
.x71{left:452.425333pt;}
.x94{left:457.137333pt;}
.xb{left:458.041333pt;}
.x72{left:460.630667pt;}
.x21{left:464.120000pt;}
.x24{left:467.416000pt;}
.x95{left:470.421333pt;}
.x5e{left:484.398667pt;}
.x99{left:486.669333pt;}
.x77{left:489.449333pt;}
.x5f{left:493.700000pt;}
.x65{left:494.960000pt;}
.x78{left:498.750667pt;}
.x66{left:503.165333pt;}
.x82{left:505.412000pt;}
.x22{left:508.472000pt;}
.x25{left:511.773333pt;}
.x83{left:513.385333pt;}
.x26{left:516.161333pt;}
.x96{left:526.258667pt;}
.x27{left:529.445333pt;}
.x37{left:536.028000pt;}
.x38{left:544.232000pt;}
.xa4{left:547.873333pt;}
.x51{left:551.233333pt;}
.xaa{left:556.901333pt;}
.xf{left:558.390667pt;}
.x52{left:559.305333pt;}
.xa5{left:562.122667pt;}
.x10{left:565.032000pt;}
.x7c{left:569.903348pt;}
.x97{left:572.564000pt;}
.xa6{left:575.566667pt;}
.x6e{left:577.308000pt;}
.xbb{left:579.309333pt;}
.x20{left:583.882667pt;}
.x6f{left:586.430667pt;}
.xb6{left:589.272000pt;}
.x53{left:593.668000pt;}
.x54{left:601.740000pt;}
.xbc{left:603.220000pt;}
.x85{left:605.961341pt;}
.x9d{left:607.852000pt;}
.xba{left:609.645333pt;}
.xc1{left:612.126667pt;}
.xb7{left:613.182667pt;}
.x15{left:614.738667pt;}
.x60{left:617.601333pt;}
.xc2{left:618.765333pt;}
.x5c{left:619.729561pt;}
.x16{left:621.380000pt;}
.x17{left:624.634667pt;}
.x61{left:625.576000pt;}
.x18{left:631.277333pt;}
.xbe{left:635.448000pt;}
.xab{left:636.749333pt;}
.x79{left:639.740000pt;}
.xac{left:644.954667pt;}
.x6d{left:646.439739pt;}
.x6c{left:650.890834pt;}
.xc3{left:653.534667pt;}
.x67{left:656.021333pt;}
.x55{left:657.774667pt;}
.xbf{left:659.358667pt;}
.x4b{left:660.346667pt;}
.x68{left:664.226667pt;}
.x45{left:665.216053pt;}
.x4c{left:668.418667pt;}
.x8d{left:669.657333pt;}
.x46{left:671.112200pt;}
.x8e{left:676.280000pt;}
.x75{left:680.564992pt;}
.xbd{left:683.665333pt;}
.x8f{left:689.562667pt;}
.x19{left:699.808000pt;}
.x1d{left:702.412000pt;}
.x1a{left:706.449333pt;}
.x58{left:708.757333pt;}
.x1b{left:709.766667pt;}
.x70{left:714.025333pt;}
.x1e{left:715.696000pt;}
.xb8{left:720.236000pt;}
.x1c{left:723.050667pt;}
.x4d{left:725.212000pt;}
.x92{left:726.256000pt;}
.x4e{left:733.284000pt;}
.x93{left:739.540000pt;}
.xb9{left:744.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; }
  