
    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_662eae5f7de510fd61b80858.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_7767803e527bb7afa55ca6bf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c3f87698906e115ee97a9a65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_ef988251af4c431faed52922.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8a77bde648d74563ae3ab363.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.688000;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_6a14768417efd414d04ba791.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0c6a19231a92419953e44135.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;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_5a011a7930e5a605a4af288d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699000;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_fa0d20b881028c25da5c51fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4f6ecdf62c89b8909416ed41.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae1d1a4cdd0933d2bbdd0fed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7d875a178ad744d242e24075.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_56e70607a655513e2c572998.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_89fe842f0c6bcf85e1b772a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dcd042b4803e7a9817d5fd90.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7d875a178ad744d242e24075.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_56e70607a655513e2c572998.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_89fe842f0c6bcf85e1b772a0.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_dcd042b4803e7a9817d5fd90.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5d1af3707e58b75401f00c5e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.723000;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_ae9623861178e5861468871e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.740000;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_2ed964726d050c9c0077a2f8.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_dd196d11d58762eb7661c8d9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_89fe842f0c6bcf85e1b772a0.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_c27dad35b70e5ac2f8911129.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.054688;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_dcd042b4803e7a9817d5fd90.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ff049dd3c94ecaf030f2d7cf.woff2')format("woff");}.ff1b{font-family:ff1b;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;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_be63d154ab3b00c06c22a322.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.869000;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;}
.m4{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);}
.m11{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);}
.m1f{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);}
.m12{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);}
.me{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);}
.m1c{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);}
.m1e{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);}
.m1b{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);}
.m19{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);}
.mc{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);}
.m28{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);}
.m24{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);}
.m3{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);}
.m2{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);}
.m26{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);}
.m20{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);}
.mf{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);}
.m13{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);}
.m1d{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);}
.m1{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);}
.m15{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);}
.m17{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);}
.m16{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);}
.m10{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);}
.m27{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);}
.ma{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);}
.mb{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);}
.m1a{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);}
.m22{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);}
.m18{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);}
.m2a{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);}
.m14{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);}
.m9{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);}
.m6{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);}
.m23{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);}
.m7{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);}
.m25{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);}
.m21{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);}
.m29{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);}
.m2b{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);}
.md{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);}
.m5{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);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.v4{vertical-align:36.358200px;}
.ls62{letter-spacing:-0.204408px;}
.ls65{letter-spacing:-0.192384px;}
.ls5f{letter-spacing:-0.186372px;}
.ls63{letter-spacing:-0.168336px;}
.ls59{letter-spacing:-0.156312px;}
.ls64{letter-spacing:-0.144288px;}
.ls40{letter-spacing:-0.132264px;}
.ls61{letter-spacing:-0.120240px;}
.ls60{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.108216px;}
.ls3d{letter-spacing:-0.086184px;}
.ls5b{letter-spacing:-0.078156px;}
.ls3f{letter-spacing:-0.066132px;}
.ls41{letter-spacing:-0.060120px;}
.ls43{letter-spacing:-0.048096px;}
.ls5c{letter-spacing:-0.043200px;}
.ls57{letter-spacing:-0.042084px;}
.ls5a{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.027000px;}
.ls42{letter-spacing:-0.024048px;}
.ls5d{letter-spacing:-0.021600px;}
.ls58{letter-spacing:-0.018036px;}
.ls44{letter-spacing:-0.012024px;}
.ls5e{letter-spacing:-0.006012px;}
.ls56{letter-spacing:-0.005400px;}
.ls3e{letter-spacing:-0.004788px;}
.ls1c{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000124px;}
.ls69{letter-spacing:0.000154px;}
.ls71{letter-spacing:0.000183px;}
.ls6b{letter-spacing:0.000213px;}
.ls72{letter-spacing:0.000435px;}
.ls80{letter-spacing:0.000566px;}
.ls37{letter-spacing:0.000846px;}
.ls49{letter-spacing:0.001133px;}
.ls67{letter-spacing:0.001960px;}
.ls78{letter-spacing:0.002074px;}
.ls6e{letter-spacing:0.002436px;}
.ls81{letter-spacing:0.002573px;}
.ls1{letter-spacing:0.002725px;}
.ls4a{letter-spacing:0.002870px;}
.ls36{letter-spacing:0.003179px;}
.ls1b{letter-spacing:0.003488px;}
.ls73{letter-spacing:0.003643px;}
.lsd{letter-spacing:0.003859px;}
.ls47{letter-spacing:0.004090px;}
.ls3{letter-spacing:0.004200px;}
.ls55{letter-spacing:0.004241px;}
.ls9{letter-spacing:0.004766px;}
.ls24{letter-spacing:0.004788px;}
.ls87{letter-spacing:0.004800px;}
.ls51{letter-spacing:0.005400px;}
.ls6d{letter-spacing:0.005415px;}
.ls2a{letter-spacing:0.006012px;}
.ls34{letter-spacing:0.010800px;}
.ls2c{letter-spacing:0.012024px;}
.ls32{letter-spacing:0.016200px;}
.ls2d{letter-spacing:0.018036px;}
.ls4c{letter-spacing:0.021600px;}
.ls29{letter-spacing:0.027000px;}
.ls33{letter-spacing:0.032400px;}
.ls27{letter-spacing:0.037800px;}
.ls2b{letter-spacing:0.042084px;}
.ls4e{letter-spacing:0.043200px;}
.ls2e{letter-spacing:0.048096px;}
.ls28{letter-spacing:0.048600px;}
.ls4d{letter-spacing:0.054000px;}
.ls50{letter-spacing:0.059400px;}
.ls31{letter-spacing:0.066132px;}
.ls4f{letter-spacing:0.070200px;}
.ls35{letter-spacing:0.075600px;}
.ls52{letter-spacing:0.091800px;}
.ls66{letter-spacing:0.114228px;}
.ls2f{letter-spacing:0.126252px;}
.ls26{letter-spacing:0.181944px;}
.ls25{letter-spacing:0.191520px;}
.ls30{letter-spacing:0.192384px;}
.ls77{letter-spacing:0.524565px;}
.ls76{letter-spacing:0.530447px;}
.ls7b{letter-spacing:0.537859px;}
.ls7a{letter-spacing:0.543714px;}
.ls6f{letter-spacing:0.597167px;}
.ls6c{letter-spacing:0.598403px;}
.ls1d{letter-spacing:1.275394px;}
.ls10{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls7f{letter-spacing:11.321829px;}
.ls83{letter-spacing:11.768400px;}
.ls4b{letter-spacing:11.952019px;}
.ls1a{letter-spacing:11.954850px;}
.ls6a{letter-spacing:11.958019px;}
.ls68{letter-spacing:12.253998px;}
.ls86{letter-spacing:12.440400px;}
.ls85{letter-spacing:12.975859px;}
.ls7d{letter-spacing:13.253171px;}
.ls79{letter-spacing:13.446566px;}
.ls7c{letter-spacing:13.448400px;}
.ls48{letter-spacing:13.448870px;}
.ls82{letter-spacing:13.454400px;}
.ls7e{letter-spacing:13.626388px;}
.ls11{letter-spacing:13.714574px;}
.ls12{letter-spacing:13.719322px;}
.ls21{letter-spacing:13.728491px;}
.ls20{letter-spacing:13.728527px;}
.ls15{letter-spacing:13.822200px;}
.ls16{letter-spacing:13.824124px;}
.ls84{letter-spacing:13.989859px;}
.ls8{letter-spacing:14.320200px;}
.lsa{letter-spacing:14.321108px;}
.ls70{letter-spacing:14.743416px;}
.ls7{letter-spacing:14.824200px;}
.ls5{letter-spacing:14.824766px;}
.ls6{letter-spacing:14.825108px;}
.ls3a{letter-spacing:14.884124px;}
.ls39{letter-spacing:14.925378px;}
.ls38{letter-spacing:14.929747px;}
.lsb{letter-spacing:14.944200px;}
.ls23{letter-spacing:14.946124px;}
.ls74{letter-spacing:15.078697px;}
.ls75{letter-spacing:15.088296px;}
.ls3b{letter-spacing:15.812200px;}
.ls3c{letter-spacing:15.816006px;}
.ls19{letter-spacing:16.174829px;}
.ls17{letter-spacing:16.176906px;}
.ls18{letter-spacing:16.180712px;}
.ls13{letter-spacing:19.859259px;}
.ls14{letter-spacing:19.863065px;}
.ls54{letter-spacing:21.286594px;}
.ls53{letter-spacing:21.288671px;}
.ls1e{letter-spacing:22.300435px;}
.ls1f{letter-spacing:22.304241px;}
.ls4{letter-spacing:57.415200px;}
.lsf{letter-spacing:64.552800px;}
.lsc{letter-spacing:70.236600px;}
.lse{letter-spacing:72.353510px;}
.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;}
}
.ws0{word-spacing:-99.545599px;}
.ws48{word-spacing:-60.120000px;}
.ws80{word-spacing:-54.551578px;}
.ws1d{word-spacing:-17.394700px;}
.ws14{word-spacing:-15.655334px;}
.ws47{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.943900px;}
.ws7{word-spacing:-14.355754px;}
.ws2e{word-spacing:-13.915795px;}
.ws88{word-spacing:-13.537800px;}
.ws13{word-spacing:-13.449600px;}
.ws46{word-spacing:-12.161520px;}
.ws2c{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws120{word-spacing:-4.895654px;}
.ws43{word-spacing:-4.542946px;}
.ws50{word-spacing:-4.363619px;}
.ws1c{word-spacing:-4.124516px;}
.wsfa{word-spacing:-4.004965px;}
.wse2{word-spacing:-3.945190px;}
.ws14c{word-spacing:-3.550694px;}
.ws14a{word-spacing:-3.496896px;}
.ws12e{word-spacing:-3.389299px;}
.ws65{word-spacing:-3.210408px;}
.ws1a{word-spacing:-3.168107px;}
.ws131{word-spacing:-3.066509px;}
.wsf2{word-spacing:-3.048556px;}
.ws11c{word-spacing:-3.012710px;}
.ws3f{word-spacing:-2.929004px;}
.ws12d{word-spacing:-2.851315px;}
.wse1{word-spacing:-2.809453px;}
.ws64{word-spacing:-2.795580px;}
.wse8{word-spacing:-2.749678px;}
.ws123{word-spacing:-2.743718px;}
.wsc8{word-spacing:-2.689902px;}
.wsc7{word-spacing:-2.630126px;}
.ws3d{word-spacing:-2.510575px;}
.ws124{word-spacing:-2.151936px;}
.ws5b{word-spacing:-1.929852px;}
.ws17{word-spacing:-1.908367px;}
.wsd5{word-spacing:-1.853044px;}
.ws14e{word-spacing:-1.829146px;}
.wsd4{word-spacing:-1.793268px;}
.wsf0{word-spacing:-1.733492px;}
.wsbc{word-spacing:-1.719432px;}
.ws12f{word-spacing:-1.667750px;}
.ws147{word-spacing:-1.560154px;}
.wsbb{word-spacing:-1.539072px;}
.ws16{word-spacing:-1.322630px;}
.ws28{word-spacing:-1.315063px;}
.ws145{word-spacing:-1.291162px;}
.ws1f{word-spacing:-1.255288px;}
.ws1e{word-spacing:-1.195512px;}
.ws29{word-spacing:-1.135736px;}
.wsea{word-spacing:-1.075961px;}
.ws116{word-spacing:-1.022170px;}
.ws19{word-spacing:-1.016185px;}
.ws18{word-spacing:-0.896634px;}
.wsb7{word-spacing:-0.865728px;}
.ws114{word-spacing:-0.860774px;}
.ws13d{word-spacing:-0.806976px;}
.wsb8{word-spacing:-0.781560px;}
.ws4f{word-spacing:-0.777083px;}
.ws111{word-spacing:-0.753178px;}
.wsf{word-spacing:-0.657532px;}
.wsd{word-spacing:-0.624917px;}
.ws10{word-spacing:-0.623975px;}
.wsb{word-spacing:-0.597756px;}
.ws112{word-spacing:-0.537984px;}
.wse{word-spacing:-0.478205px;}
.ws6c{word-spacing:-0.456912px;}
.ws137{word-spacing:-0.430387px;}
.ws125{word-spacing:-0.376589px;}
.wsd7{word-spacing:-0.358654px;}
.wsa3{word-spacing:-0.330660px;}
.ws11d{word-spacing:-0.322790px;}
.wsc5{word-spacing:-0.298878px;}
.wsb5{word-spacing:-0.282564px;}
.ws10e{word-spacing:-0.268992px;}
.ws55{word-spacing:-0.268128px;}
.ws9b{word-spacing:-0.246492px;}
.ws35{word-spacing:-0.239102px;}
.ws9a{word-spacing:-0.222444px;}
.ws91{word-spacing:-0.221400px;}
.ws10a{word-spacing:-0.215194px;}
.ws5a{word-spacing:-0.198396px;}
.ws92{word-spacing:-0.194400px;}
.ws31{word-spacing:-0.179327px;}
.ws11a{word-spacing:-0.161395px;}
.wsa{word-spacing:-0.119849px;}
.ws9{word-spacing:-0.119551px;}
.ws104{word-spacing:-0.107597px;}
.ws54{word-spacing:-0.081396px;}
.wsbe{word-spacing:-0.072144px;}
.ws6{word-spacing:-0.059776px;}
.ws87{word-spacing:-0.054000px;}
.ws4d{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.wsf6{word-spacing:-0.044587px;}
.ws7e{word-spacing:-0.024518px;}
.wsce{word-spacing:-0.023578px;}
.wsd1{word-spacing:-0.022358px;}
.ws84{word-spacing:-0.020918px;}
.ws15{word-spacing:-0.009917px;}
.ws8{word-spacing:-0.003625px;}
.ws4{word-spacing:-0.002383px;}
.ws5{word-spacing:-0.000757px;}
.wsd3{word-spacing:-0.000743px;}
.ws11{word-spacing:-0.000499px;}
.wscf{word-spacing:-0.000240px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.001483px;}
.wsca{word-spacing:0.004009px;}
.ws7d{word-spacing:0.007162px;}
.ws6b{word-spacing:0.030060px;}
.ws7c{word-spacing:0.048096px;}
.ws107{word-spacing:0.049425px;}
.ws106{word-spacing:0.053798px;}
.ws61{word-spacing:0.054108px;}
.wsc6{word-spacing:0.059776px;}
.ws8a{word-spacing:0.107597px;}
.ws74{word-spacing:0.108000px;}
.wsb6{word-spacing:0.114228px;}
.ws37{word-spacing:0.119551px;}
.ws99{word-spacing:0.124200px;}
.ws96{word-spacing:0.145800px;}
.ws4e{word-spacing:0.161395px;}
.wsb1{word-spacing:0.167400px;}
.ws93{word-spacing:0.172800px;}
.wsa2{word-spacing:0.174348px;}
.ws3c{word-spacing:0.179327px;}
.ws59{word-spacing:0.183600px;}
.ws95{word-spacing:0.189000px;}
.wsb4{word-spacing:0.210420px;}
.ws94{word-spacing:0.210600px;}
.ws108{word-spacing:0.215194px;}
.ws3e{word-spacing:0.239102px;}
.ws113{word-spacing:0.268992px;}
.ws51{word-spacing:0.298878px;}
.ws142{word-spacing:0.322790px;}
.ws44{word-spacing:0.358654px;}
.ws89{word-spacing:0.376589px;}
.ws9c{word-spacing:0.444888px;}
.ws60{word-spacing:0.450900px;}
.wsbf{word-spacing:0.456912px;}
.ws9d{word-spacing:0.480960px;}
.ws5f{word-spacing:0.505008px;}
.ws10b{word-spacing:0.537984px;}
.ws8c{word-spacing:0.591782px;}
.ws90{word-spacing:0.657532px;}
.ws110{word-spacing:0.699379px;}
.ws105{word-spacing:0.753178px;}
.ws1b{word-spacing:0.777083px;}
.wsbd{word-spacing:0.799596px;}
.ws52{word-spacing:0.836858px;}
.ws70{word-spacing:0.880200px;}
.wse5{word-spacing:0.890265px;}
.wsdc{word-spacing:0.896634px;}
.wsd2{word-spacing:0.908591px;}
.wsd6{word-spacing:0.956410px;}
.ws53{word-spacing:1.075961px;}
.ws129{word-spacing:1.129766px;}
.ws25{word-spacing:1.206231px;}
.ws102{word-spacing:1.237363px;}
.ws24{word-spacing:1.255288px;}
.wsda{word-spacing:1.315063px;}
.ws69{word-spacing:1.412820px;}
.ws3a{word-spacing:1.434614px;}
.ws8d{word-spacing:1.494390px;}
.ws6a{word-spacing:1.551096px;}
.wse9{word-spacing:1.554166px;}
.ws101{word-spacing:1.560154px;}
.ws5d{word-spacing:1.563120px;}
.wsd9{word-spacing:1.673717px;}
.ws68{word-spacing:1.845684px;}
.ws34{word-spacing:1.853044px;}
.ws26{word-spacing:1.912819px;}
.ws5c{word-spacing:1.953900px;}
.ws5e{word-spacing:1.965924px;}
.ws8b{word-spacing:1.990541px;}
.wsf3{word-spacing:2.032370px;}
.ws135{word-spacing:2.098138px;}
.ws121{word-spacing:2.151936px;}
.ws146{word-spacing:2.205734px;}
.wsc4{word-spacing:2.211697px;}
.wsfc{word-spacing:2.271473px;}
.ws27{word-spacing:2.331248px;}
.ws71{word-spacing:2.332800px;}
.wse7{word-spacing:2.391024px;}
.ws32{word-spacing:2.510575px;}
.ws8f{word-spacing:2.630126px;}
.wse3{word-spacing:2.689902px;}
.wsde{word-spacing:2.749678px;}
.wse0{word-spacing:2.988780px;}
.wsc3{word-spacing:3.222432px;}
.wsff{word-spacing:3.227882px;}
.ws4c{word-spacing:3.227904px;}
.ws9f{word-spacing:3.270528px;}
.ws33{word-spacing:3.347434px;}
.ws12b{word-spacing:3.389299px;}
.wsa4{word-spacing:3.412800px;}
.wsa6{word-spacing:3.423600px;}
.wsa5{word-spacing:3.472200px;}
.ws9e{word-spacing:3.492972px;}
.ws12a{word-spacing:3.496896px;}
.ws4b{word-spacing:3.550694px;}
.wsc9{word-spacing:3.586536px;}
.wsef{word-spacing:3.646312px;}
.ws126{word-spacing:3.712090px;}
.wsd8{word-spacing:3.765863px;}
.wsc1{word-spacing:3.775536px;}
.wsc2{word-spacing:3.829644px;}
.wsba{word-spacing:3.841668px;}
.wsb9{word-spacing:3.865716px;}
.wsdb{word-spacing:4.004965px;}
.wsee{word-spacing:4.064741px;}
.wsac{word-spacing:4.087800px;}
.wsad{word-spacing:4.125600px;}
.ws109{word-spacing:4.142477px;}
.ws3b{word-spacing:4.184292px;}
.ws10c{word-spacing:4.250074px;}
.wsa0{word-spacing:4.352688px;}
.wsb0{word-spacing:4.417200px;}
.wsb2{word-spacing:4.424832px;}
.wsa1{word-spacing:4.448880px;}
.ws115{word-spacing:4.465267px;}
.wsdf{word-spacing:4.483170px;}
.wsc0{word-spacing:4.527036px;}
.wsf9{word-spacing:4.542946px;}
.wsec{word-spacing:4.602721px;}
.wsb3{word-spacing:4.605192px;}
.ws100{word-spacing:4.782048px;}
.wsaf{word-spacing:4.838400px;}
.wsae{word-spacing:4.865400px;}
.ws21{word-spacing:4.901599px;}
.ws10d{word-spacing:4.949453px;}
.ws20{word-spacing:4.961375px;}
.wscc{word-spacing:5.218445px;}
.ws41{word-spacing:5.260253px;}
.ws42{word-spacing:5.320028px;}
.ws128{word-spacing:5.372832px;}
.ws13e{word-spacing:5.378342px;}
.ws13c{word-spacing:5.379840px;}
.ws4a{word-spacing:5.541235px;}
.wsab{word-spacing:5.567400px;}
.wsaa{word-spacing:5.589000px;}
.wscb{word-spacing:5.595034px;}
.wseb{word-spacing:5.917784px;}
.ws49{word-spacing:5.917824px;}
.wsa7{word-spacing:5.950800px;}
.wsa8{word-spacing:5.967000px;}
.ws2a{word-spacing:5.971475px;}
.wsa9{word-spacing:5.972400px;}
.ws30{word-spacing:5.977560px;}
.ws141{word-spacing:6.133018px;}
.wsf1{word-spacing:6.216662px;}
.ws8e{word-spacing:6.336214px;}
.ws13f{word-spacing:6.455808px;}
.ws133{word-spacing:6.509606px;}
.ws134{word-spacing:6.563405px;}
.ws127{word-spacing:6.671002px;}
.ws10f{word-spacing:6.939994px;}
.ws6d{word-spacing:6.993000px;}
.ws6f{word-spacing:7.014600px;}
.ws6e{word-spacing:7.057800px;}
.ws66{word-spacing:7.280532px;}
.wsfb{word-spacing:7.292623px;}
.ws45{word-spacing:7.352399px;}
.wsdd{word-spacing:7.471950px;}
.ws22{word-spacing:7.651277px;}
.ws98{word-spacing:7.700400px;}
.ws67{word-spacing:7.707384px;}
.ws97{word-spacing:7.711200px;}
.ws103{word-spacing:7.746970px;}
.ws38{word-spacing:8.009930px;}
.ws77{word-spacing:8.362692px;}
.wsf8{word-spacing:8.667462px;}
.ws23{word-spacing:8.906564px;}
.ws57{word-spacing:9.142200px;}
.wscd{word-spacing:9.145728px;}
.ws56{word-spacing:9.153000px;}
.ws58{word-spacing:9.163800px;}
.ws39{word-spacing:9.205442px;}
.ws143{word-spacing:9.360922px;}
.ws144{word-spacing:9.414720px;}
.wse4{word-spacing:10.042301px;}
.ws138{word-spacing:10.114099px;}
.ws36{word-spacing:11.656242px;}
.ws130{word-spacing:11.729232px;}
.ws2b{word-spacing:11.904071px;}
.ws14d{word-spacing:12.050842px;}
.wsfe{word-spacing:12.253998px;}
.wsfd{word-spacing:12.313774px;}
.ws11e{word-spacing:13.073011px;}
.ws11b{word-spacing:13.180608px;}
.ws140{word-spacing:13.234406px;}
.ws149{word-spacing:13.342003px;}
.ws13a{word-spacing:13.388832px;}
.ws118{word-spacing:13.393498px;}
.ws119{word-spacing:13.394755px;}
.ws117{word-spacing:13.395802px;}
.ws12c{word-spacing:13.449600px;}
.ws122{word-spacing:13.557197px;}
.ws132{word-spacing:13.718592px;}
.wsf4{word-spacing:14.645022px;}
.ws13b{word-spacing:14.789693px;}
.wsf7{word-spacing:14.833877px;}
.ws79{word-spacing:14.849640px;}
.wsf5{word-spacing:14.850046px;}
.ws40{word-spacing:14.884124px;}
.ws7a{word-spacing:15.246432px;}
.ws7b{word-spacing:15.330600px;}
.ws78{word-spacing:15.559056px;}
.wse6{word-spacing:15.783442px;}
.ws14b{word-spacing:17.753472px;}
.ws148{word-spacing:18.774960px;}
.ws11f{word-spacing:18.775642px;}
.wsed{word-spacing:20.861684px;}
.ws72{word-spacing:21.060000px;}
.ws73{word-spacing:21.065400px;}
.ws139{word-spacing:23.509901px;}
.ws75{word-spacing:23.867640px;}
.ws76{word-spacing:23.915736px;}
.ws63{word-spacing:25.304508px;}
.ws62{word-spacing:25.316532px;}
.ws136{word-spacing:25.500442px;}
.ws2{word-spacing:40.042186px;}
.ws83{word-spacing:174.608333px;}
.ws86{word-spacing:179.151533px;}
.ws81{word-spacing:192.604733px;}
.wsd0{word-spacing:247.741632px;}
.ws82{word-spacing:365.779200px;}
.ws85{word-spacing:382.428000px;}
.ws7f{word-spacing:382.429200px;}
.ws2f{word-spacing:777.610777px;}
._36{margin-left:-9.384832px;}
._6{margin-left:-7.854566px;}
._1{margin-left:-6.635092px;}
._5{margin-left:-4.949453px;}
._2{margin-left:-3.281837px;}
._9{margin-left:-2.245438px;}
._0{margin-left:-1.076154px;}
._a{width:1.091170px;}
._3{width:2.998544px;}
._15{width:12.373632px;}
._34{width:13.449600px;}
._b{width:14.710568px;}
._35{width:15.727021px;}
._17{width:16.785215px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._10{width:20.921460px;}
._13{width:21.959464px;}
._29{width:23.372260px;}
._16{width:24.606846px;}
._11{width:26.873178px;}
._f{width:28.991166px;}
._32{width:30.425974px;}
._2a{width:32.159466px;}
._12{width:34.012316px;}
._33{width:36.164238px;}
._c{width:38.407870px;}
._38{width:39.474065px;}
._d{width:47.019429px;}
._1f{width:51.143400px;}
._20{width:64.038600px;}
._4{width:69.331247px;}
._18{width:127.179686px;}
._1b{width:134.259754px;}
._19{width:138.638477px;}
._1a{width:158.935478px;}
._30{width:182.284522px;}
._2c{width:188.617190px;}
._31{width:192.974045px;}
._22{width:202.046400px;}
._27{width:206.911800px;}
._25{width:220.563000px;}
._21{width:230.655600px;}
._28{width:238.723200px;}
._23{width:252.406800px;}
._2e{width:260.922240px;}
._1c{width:267.700838px;}
._1e{width:312.084518px;}
._1d{width:325.534118px;}
._2b{width:348.344640px;}
._2d{width:350.520154px;}
._2f{width:361.202458px;}
._26{width:386.872200px;}
._24{width:400.561200px;}
._14{width:1643.155910px;}
._37{width:2028.027300px;}
._e{width:2051.937300px;}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(8,117,183);}
.fc0{color:rgb(72,21,23);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:127.950641px;}
.y7a{bottom:-793.190046px;}
.y79{bottom:-773.030307px;}
.y78{bottom:-752.780388px;}
.y77{bottom:-732.530469px;}
.y76{bottom:-712.280550px;}
.y75{bottom:-674.481900px;}
.y74{bottom:-655.041900px;}
.y73{bottom:-635.511450px;}
.y72{bottom:-615.981000px;}
.y71{bottom:-596.450550px;}
.y70{bottom:-571.970280px;}
.yd9{bottom:-402.457221px;}
.yd8{bottom:-382.207302px;}
.yd7{bottom:-361.957383px;}
.yd6{bottom:-341.707464px;}
.yd5{bottom:-321.457545px;}
.yd4{bottom:-301.297806px;}
.yd3{bottom:-281.047887px;}
.y6f{bottom:-274.789605px;}
.yd2{bottom:-260.797968px;}
.y6e{bottom:-254.539686px;}
.yd1{bottom:-240.548049px;}
.y6d{bottom:-234.289767px;}
.y96{bottom:-226.125546px;}
.y6c{bottom:-214.039848px;}
.yd0{bottom:-211.298166px;}
.y95{bottom:-205.965807px;}
.y6b{bottom:-193.789929px;}
.y94{bottom:-185.715888px;}
.y6a{bottom:-173.540010px;}
.ycf{bottom:-173.048319px;}
.y93{bottom:-165.465969px;}
.y69{bottom:-153.290091px;}
.yce{bottom:-152.798400px;}
.y92{bottom:-145.216050px;}
.y68{bottom:-133.130352px;}
.ycd{bottom:-115.089450px;}
.y67{bottom:-112.880433px;}
.y91{bottom:-107.417400px;}
.ycc{bottom:-95.559000px;}
.y90{bottom:-87.977400px;}
.y66{bottom:-83.630550px;}
.ycb{bottom:-76.028550px;}
.y8f{bottom:-68.446950px;}
.yca{bottom:-56.588550px;}
.y8e{bottom:-48.916500px;}
.y65{bottom:-45.831000px;}
.yc9{bottom:-37.058100px;}
.y8d{bottom:-29.386050px;}
.y64{bottom:-26.300550px;}
.yc8{bottom:-17.438550px;}
.y8c{bottom:-4.905780px;}
.y63{bottom:-1.820550px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.425340px;}
.yc7{bottom:6.951621px;}
.y22{bottom:14.151273px;}
.y2{bottom:16.055722px;}
.y33{bottom:63.780000px;}
.y11e{bottom:108.612000px;}
.y170{bottom:110.091000px;}
.y146{bottom:111.018000px;}
.yee{bottom:114.217500px;}
.y19a{bottom:122.038500px;}
.y11d{bottom:128.875500px;}
.y16f{bottom:130.354500px;}
.y145{bottom:131.281500px;}
.yed{bottom:134.482500px;}
.y199{bottom:137.236500px;}
.y32{bottom:137.341500px;}
.y11c{bottom:149.139000px;}
.y16e{bottom:150.619500px;}
.y144{bottom:151.545000px;}
.y1cc{bottom:157.974000px;}
.ya7{bottom:161.331000px;}
.y198{bottom:161.401500px;}
.yec{bottom:163.713000px;}
.y11b{bottom:169.404000px;}
.y16d{bottom:170.883000px;}
.y31{bottom:175.537500px;}
.y197{bottom:176.599500px;}
.y1cb{bottom:177.340500px;}
.y143{bottom:180.775500px;}
.ya6{bottom:181.596000px;}
.y60{bottom:188.697000px;}
.y11a{bottom:189.667500px;}
.y16c{bottom:191.148000px;}
.y196{bottom:191.797500px;}
.y30{bottom:195.802500px;}
.y1ca{bottom:196.708500px;}
.yeb{bottom:198.532500px;}
.ya5{bottom:201.859500px;}
.y142{bottom:206.629500px;}
.y195{bottom:208.557000px;}
.y5f{bottom:208.960500px;}
.y119{bottom:209.932500px;}
.y16b{bottom:211.411500px;}
.y2f{bottom:216.066000px;}
.y1c9{bottom:216.076500px;}
.yea{bottom:218.796000px;}
.ya4{bottom:222.124500px;}
.y194{bottom:223.755000px;}
.y141{bottom:226.893000px;}
.y5e{bottom:229.224000px;}
.y118{bottom:230.196000px;}
.y16a{bottom:231.675000px;}
.y1c8{bottom:235.443000px;}
.y2e{bottom:236.329500px;}
.y193{bottom:238.953000px;}
.ye9{bottom:239.059500px;}
.ya3{bottom:242.388000px;}
.y1f9{bottom:244.528500px;}
.y140{bottom:247.158000px;}
.y5d{bottom:249.489000px;}
.y117{bottom:250.459500px;}
.y192{bottom:254.151000px;}
.y1c7{bottom:254.811000px;}
.y2d{bottom:256.594500px;}
.ye8{bottom:259.324500px;}
.y169{bottom:260.905500px;}
.ya2{bottom:262.651500px;}
.y1f8{bottom:263.896500px;}
.y62{bottom:265.209450px;}
.y13f{bottom:267.421500px;}
.y191{bottom:269.349000px;}
.y5c{bottom:269.752500px;}
.y116{bottom:270.724500px;}
.y1c6{bottom:274.177500px;}
.y2c{bottom:276.858000px;}
.ye7{bottom:279.588000px;}
.ya1{bottom:282.916500px;}
.y1f7{bottom:283.264500px;}
.y5b{bottom:290.017500px;}
.y115{bottom:290.988000px;}
.y8b{bottom:292.274895px;}
.y190{bottom:293.514000px;}
.y1c5{bottom:293.545500px;}
.y168{bottom:295.725000px;}
.y13e{bottom:296.652000px;}
.y2b{bottom:297.123000px;}
.yc6{bottom:299.361774px;}
.ye6{bottom:299.853000px;}
.y1f6{bottom:302.631000px;}
.ya0{bottom:303.180000px;}
.y18f{bottom:308.712000px;}
.y5a{bottom:310.281000px;}
.y114{bottom:311.253000px;}
.y8a{bottom:312.524814px;}
.y1c4{bottom:312.913500px;}
.y167{bottom:315.990000px;}
.y2a{bottom:317.386500px;}
.yc5{bottom:319.611693px;}
.ye5{bottom:320.116500px;}
.y1f5{bottom:321.999000px;}
.y9f{bottom:323.445000px;}
.y59{bottom:330.544500px;}
.y13d{bottom:331.471500px;}
.y113{bottom:331.516500px;}
.y1c3{bottom:332.280000px;}
.y89{bottom:332.774733px;}
.y18e{bottom:332.877000px;}
.y166{bottom:336.253500px;}
.y29{bottom:337.650000px;}
.yc4{bottom:339.861612px;}
.ye4{bottom:340.380000px;}
.y1f4{bottom:341.367000px;}
.y9e{bottom:343.708500px;}
.y18d{bottom:348.075000px;}
.y58{bottom:350.809500px;}
.y1c2{bottom:351.648000px;}
.y112{bottom:351.780000px;}
.y88{bottom:353.024652px;}
.y165{bottom:356.518500px;}
.y28{bottom:357.915000px;}
.yc3{bottom:360.111531px;}
.ye3{bottom:360.645000px;}
.y1f3{bottom:360.733500px;}
.y18c{bottom:363.273000px;}
.y9d{bottom:363.972000px;}
.y13c{bottom:366.291000px;}
.y1c1{bottom:371.014500px;}
.y111{bottom:372.045000px;}
.y87{bottom:373.274571px;}
.y27{bottom:378.178500px;}
.y18b{bottom:378.471000px;}
.y57{bottom:380.040000px;}
.y1f2{bottom:380.101500px;}
.yc2{bottom:380.361450px;}
.ye2{bottom:380.908500px;}
.y9c{bottom:384.237000px;}
.y164{bottom:385.749000px;}
.y13b{bottom:386.554500px;}
.y1c0{bottom:390.382500px;}
.y110{bottom:392.308500px;}
.y86{bottom:393.524490px;}
.y18a{bottom:393.669000px;}
.y26{bottom:398.443500px;}
.y1f1{bottom:399.468000px;}
.ye1{bottom:401.172000px;}
.y13a{bottom:406.819500px;}
.y1bf{bottom:409.750500px;}
.y10f{bottom:412.573500px;}
.y85{bottom:413.774409px;}
.y56{bottom:414.859500px;}
.y189{bottom:417.832500px;}
.yc1{bottom:418.161450px;}
.y25{bottom:418.707000px;}
.y1f0{bottom:418.836000px;}
.y9b{bottom:419.236500px;}
.y163{bottom:420.568500px;}
.y139{bottom:427.083000px;}
.y1be{bottom:429.117000px;}
.ye0{bottom:430.402500px;}
.y10e{bottom:432.837000px;}
.y188{bottom:433.030500px;}
.y84{bottom:433.934148px;}
.y55{bottom:435.123000px;}
.yc0{bottom:437.601450px;}
.y1ef{bottom:438.204000px;}
.y9a{bottom:438.469500px;}
.y24{bottom:438.970500px;}
.y162{bottom:440.832000px;}
.y138{bottom:447.348000px;}
.y187{bottom:448.230000px;}
.y1bd{bottom:448.485000px;}
.y10d{bottom:453.100500px;}
.y83{bottom:454.184067px;}
.y54{bottom:455.388000px;}
.y1ee{bottom:457.570500px;}
.y99{bottom:457.702500px;}
.ybf{bottom:458.570550px;}
.y161{bottom:461.095500px;}
.ydf{bottom:462.025500px;}
.y186{bottom:463.428000px;}
.y137{bottom:467.611500px;}
.ybe{bottom:467.660100px;}
.y1bc{bottom:467.851500px;}
.y10c{bottom:473.365500px;}
.y21{bottom:473.749555px;}
.y53{bottom:475.651500px;}
.y98{bottom:476.935500px;}
.y1ed{bottom:476.938500px;}
.y185{bottom:478.626000px;}
.yde{bottom:481.258500px;}
.y160{bottom:481.360500px;}
.y20{bottom:481.695000px;}
.y82{bottom:483.433950px;}
.y1bb{bottom:487.219500px;}
.y136{bottom:487.875000px;}
.y10b{bottom:493.629000px;}
.y184{bottom:493.824000px;}
.ybd{bottom:495.020550px;}
.y52{bottom:495.915000px;}
.y97{bottom:496.168500px;}
.y1ec{bottom:496.305000px;}
.ydd{bottom:500.491500px;}
.y15f{bottom:501.624000px;}
.ybc{bottom:504.111450px;}
.y1ba{bottom:506.587500px;}
.y135{bottom:508.140000px;}
.y183{bottom:509.022000px;}
.y1f{bottom:513.522000px;}
.y10a{bottom:513.894000px;}
.y1eb{bottom:515.673000px;}
.y51{bottom:516.180000px;}
.y7d{bottom:518.598000px;}
.ydc{bottom:519.724500px;}
.y81{bottom:521.233500px;}
.y15e{bottom:521.889000px;}
.y182{bottom:524.220000px;}
.y1b9{bottom:525.954000px;}
.y134{bottom:528.403500px;}
.ybb{bottom:531.470550px;}
.y1e{bottom:531.679500px;}
.y109{bottom:534.157500px;}
.y1ea{bottom:535.041000px;}
.y50{bottom:536.443500px;}
.ydb{bottom:538.957500px;}
.y181{bottom:539.418000px;}
.yba{bottom:540.561450px;}
.y80{bottom:540.763950px;}
.y15d{bottom:542.152500px;}
.y1b8{bottom:545.322000px;}
.y133{bottom:548.667000px;}
.y1d{bottom:549.837000px;}
.y1e9{bottom:554.407500px;}
.y108{bottom:554.421000px;}
.y180{bottom:554.616000px;}
.yda{bottom:558.190500px;}
.y15c{bottom:562.416000px;}
.y1b7{bottom:564.688500px;}
.y7f{bottom:565.243950px;}
.y4f{bottom:565.674000px;}
.yb9{bottom:568.731450px;}
.y132{bottom:568.932000px;}
.y17f{bottom:569.814000px;}
.y1c{bottom:572.875500px;}
.y1e8{bottom:573.775500px;}
.y107{bottom:574.686000px;}
.yb8{bottom:577.822350px;}
.yb4{bottom:580.620000px;}
.y15b{bottom:582.681000px;}
.y1b6{bottom:584.056500px;}
.y17e{bottom:585.012000px;}
.y131{bottom:589.195500px;}
.y1b{bottom:591.033000px;}
.y1e7{bottom:593.142000px;}
.y106{bottom:594.949500px;}
.y17d{bottom:600.210000px;}
.y4e{bottom:600.493500px;}
.y15a{bottom:602.944500px;}
.y1b5{bottom:603.424500px;}
.y1a{bottom:604.308000px;}
.y130{bottom:609.460500px;}
.y1e6{bottom:612.510000px;}
.y105{bottom:615.214500px;}
.y17c{bottom:615.408000px;}
.yb7{bottom:615.531900px;}
.y4d{bottom:620.758500px;}
.y1b4{bottom:622.791000px;}
.y159{bottom:623.209500px;}
.y19{bottom:627.346500px;}
.y12f{bottom:629.724000px;}
.y17b{bottom:630.606000px;}
.y1e5{bottom:631.878000px;}
.yb6{bottom:635.151450px;}
.y104{bottom:635.478000px;}
.y4c{bottom:641.022000px;}
.y1b3{bottom:642.159000px;}
.y158{bottom:643.473000px;}
.y18{bottom:645.504000px;}
.y12e{bottom:649.987500px;}
.y1e4{bottom:651.244500px;}
.y103{bottom:655.741500px;}
.y17{bottom:658.779000px;}
.y4b{bottom:661.285500px;}
.y1b2{bottom:661.527000px;}
.y17a{bottom:663.736500px;}
.y12d{bottom:670.252500px;}
.y1e3{bottom:670.612500px;}
.yb5{bottom:672.231450px;}
.y157{bottom:672.703500px;}
.y1b1{bottom:680.893500px;}
.y4a{bottom:681.550500px;}
.y16{bottom:681.817500px;}
.y179{bottom:684.001500px;}
.y102{bottom:684.972000px;}
.y1e2{bottom:689.979000px;}
.y12c{bottom:690.516000px;}
.y15{bottom:695.092500px;}
.y1b0{bottom:700.261500px;}
.y49{bottom:701.814000px;}
.y178{bottom:704.265000px;}
.y156{bottom:707.523000px;}
.y1e1{bottom:709.347000px;}
.y12b{bottom:710.781000px;}
.y14{bottom:713.250000px;}
.y1af{bottom:719.628000px;}
.y48{bottom:722.077500px;}
.y101{bottom:723.754500px;}
.y177{bottom:724.530000px;}
.y155{bottom:727.786500px;}
.y1e0{bottom:728.715000px;}
.y12a{bottom:731.044500px;}
.y13{bottom:731.406000px;}
.y100{bottom:737.952000px;}
.y1ae{bottom:738.996000px;}
.y47{bottom:742.342500px;}
.y176{bottom:744.793500px;}
.y154{bottom:748.051500px;}
.y1df{bottom:748.081500px;}
.y12{bottom:749.563500px;}
.y129{bottom:751.308000px;}
.y1ad{bottom:758.364000px;}
.yff{bottom:760.009500px;}
.y46{bottom:762.606000px;}
.y175{bottom:765.057000px;}
.y1de{bottom:767.449500px;}
.y11{bottom:767.721000px;}
.y153{bottom:768.315000px;}
.y128{bottom:771.573000px;}
.yfe{bottom:776.805000px;}
.y1ac{bottom:777.730500px;}
.y45{bottom:782.871000px;}
.y174{bottom:785.322000px;}
.y10{bottom:785.877000px;}
.y1dd{bottom:786.816000px;}
.y152{bottom:788.578500px;}
.y127{bottom:791.836500px;}
.yfd{bottom:793.600500px;}
.y1ab{bottom:797.098500px;}
.y44{bottom:803.134500px;}
.yf{bottom:804.034500px;}
.y173{bottom:805.585500px;}
.y1dc{bottom:806.184000px;}
.y151{bottom:808.843500px;}
.yfc{bottom:810.396000px;}
.y126{bottom:812.101500px;}
.y1aa{bottom:816.465000px;}
.ye{bottom:822.192000px;}
.y43{bottom:823.398000px;}
.y1db{bottom:825.552000px;}
.yfb{bottom:827.191500px;}
.y150{bottom:829.107000px;}
.y7e{bottom:832.273950px;}
.y125{bottom:832.365000px;}
.y7c{bottom:834.454500px;}
.y172{bottom:834.816000px;}
.y1a9{bottom:835.833000px;}
.y42{bottom:843.663000px;}
.yfa{bottom:843.987000px;}
.y1da{bottom:844.918500px;}
.yd{bottom:845.230500px;}
.y14f{bottom:849.372000px;}
.y124{bottom:852.628500px;}
.y7b{bottom:853.687500px;}
.y1a8{bottom:855.201000px;}
.y41{bottom:863.926500px;}
.y1d9{bottom:864.286500px;}
.yc{bottom:864.594000px;}
.yf9{bottom:867.985500px;}
.y14e{bottom:869.635500px;}
.y123{bottom:872.893500px;}
.y1a7{bottom:874.567500px;}
.y61{bottom:876.117000px;}
.y1d8{bottom:883.653000px;}
.y40{bottom:884.191500px;}
.yb{bottom:884.859000px;}
.y14d{bottom:889.899000px;}
.y122{bottom:893.157000px;}
.y1a6{bottom:893.935500px;}
.yf8{bottom:899.605500px;}
.y1d7{bottom:903.021000px;}
.y3f{bottom:904.455000px;}
.ya{bottom:905.122500px;}
.yb3{bottom:908.523000px;}
.y14c{bottom:910.164000px;}
.y1a5{bottom:913.302000px;}
.y121{bottom:913.422000px;}
.yf7{bottom:918.838500px;}
.y1d6{bottom:922.389000px;}
.yb2{bottom:922.719000px;}
.y3e{bottom:924.718500px;}
.y9{bottom:925.386000px;}
.y14b{bottom:930.427500px;}
.y1a4{bottom:932.670000px;}
.y120{bottom:933.685500px;}
.yf6{bottom:938.071500px;}
.y171{bottom:939.394500px;}
.y1fe{bottom:941.550000px;}
.y1d5{bottom:941.755500px;}
.yb1{bottom:944.421000px;}
.y3d{bottom:944.983500px;}
.y8{bottom:945.651000px;}
.y14a{bottom:950.692500px;}
.y1a3{bottom:952.038000px;}
.yb0{bottom:952.639500px;}
.y11f{bottom:953.949000px;}
.y1fd{bottom:960.918000px;}
.y1d4{bottom:961.123500px;}
.y3c{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.y149{bottom:970.956000px;}
.y1a2{bottom:971.404500px;}
.yf5{bottom:974.214000px;}
.yaf{bottom:977.296500px;}
.y1fc{bottom:980.284500px;}
.y1d3{bottom:980.490000px;}
.y3b{bottom:985.512000px;}
.yae{bottom:985.516500px;}
.y1a1{bottom:990.772500px;}
.y148{bottom:991.219500px;}
.yf4{bottom:994.477500px;}
.y1d2{bottom:999.858000px;}
.y3a{bottom:1005.775500px;}
.y1fb{bottom:1009.632000px;}
.y1a0{bottom:1010.139000px;}
.yad{bottom:1010.173500px;}
.y6{bottom:1010.451000px;}
.yf3{bottom:1014.742500px;}
.yac{bottom:1018.393500px;}
.y1d1{bottom:1019.226000px;}
.y147{bottom:1020.450000px;}
.y1fa{bottom:1024.830000px;}
.y39{bottom:1026.039000px;}
.y19f{bottom:1029.507000px;}
.yf2{bottom:1035.006000px;}
.y1d0{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y38{bottom:1046.304000px;}
.y19e{bottom:1048.875000px;}
.yab{bottom:1050.253500px;}
.yf1{bottom:1055.269500px;}
.y1cf{bottom:1057.960500px;}
.yaa{bottom:1058.472000px;}
.y37{bottom:1066.567500px;}
.y19d{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.yf0{bottom:1075.534500px;}
.y1ce{bottom:1077.327000px;}
.y36{bottom:1086.832500px;}
.y19c{bottom:1087.609500px;}
.yef{bottom:1095.798000px;}
.y1cd{bottom:1096.695000px;}
.ya9{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y19b{bottom:1115.943000px;}
.y35{bottom:1116.063000px;}
.ya8{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h8{height:30.461558px;}
.hc{height:33.112997px;}
.h1c{height:33.187496px;}
.hb{height:34.199443px;}
.h1b{height:34.813397px;}
.h10{height:35.052500px;}
.h24{height:37.927872px;}
.h16{height:38.896243px;}
.h9{height:39.165235px;}
.h23{height:39.434227px;}
.hf{height:41.484266px;}
.hd{height:43.217759px;}
.h15{height:43.269961px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h12{height:44.279648px;}
.h22{height:49.117939px;}
.h14{height:49.939453px;}
.h2{height:50.930649px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h13{height:55.599258px;}
.h18{height:71.770243px;}
.h19{height:72.039235px;}
.h1a{height:72.045235px;}
.h1e{height:75.961716px;}
.h5{height:77.792486px;}
.h1f{height:78.255661px;}
.h20{height:86.297653px;}
.h21{height:86.659453px;}
.h3{height:86.750535px;}
.h11{height:254.890500px;}
.h17{height:281.694000px;}
.h1d{height:285.612000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:194.747841px;}
.w5{width:396.261000px;}
.w4{width:412.029000px;}
.w6{width:469.726500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x21{left:-136.897500px;}
.x1c{left:-123.757500px;}
.x23{left:-105.037500px;}
.x33{left:-99.370500px;}
.x1e{left:-91.897500px;}
.x34{left:-67.510500px;}
.x35{left:-57.342432px;}
.x37{left:-34.120500px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.894163px;}
.x19{left:112.308000px;}
.x1{left:114.802500px;}
.x9{left:120.819000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x6e{left:139.422000px;}
.x4{left:146.170500px;}
.x17{left:147.715500px;}
.x28{left:152.271000px;}
.x48{left:160.054500px;}
.x18{left:162.660000px;}
.x29{left:166.011000px;}
.x4f{left:167.635500px;}
.x2c{left:169.722000px;}
.x50{left:175.107000px;}
.x51{left:178.854000px;}
.xc{left:180.198000px;}
.x8{left:187.311000px;}
.x11{left:193.141500px;}
.x88{left:196.681500px;}
.x2a{left:198.027000px;}
.x12{left:200.613000px;}
.x6f{left:201.940500px;}
.x3f{left:203.643000px;}
.x3b{left:204.838500px;}
.x41{left:206.049000px;}
.x25{left:207.996000px;}
.xa{left:209.707500px;}
.x32{left:211.594500px;}
.x4c{left:212.905500px;}
.x13{left:214.516500px;}
.x49{left:216.453000px;}
.xb{left:219.481500px;}
.x14{left:221.989500px;}
.x15{left:225.684000px;}
.x3d{left:227.674500px;}
.x4a{left:229.845000px;}
.x70{left:233.458500px;}
.x5f{left:238.141500px;}
.x16{left:240.628500px;}
.x3e{left:243.100500px;}
.x4b{left:244.789500px;}
.x1a{left:246.297000px;}
.x20{left:248.326500px;}
.x40{left:250.788000px;}
.x8b{left:254.101500px;}
.x1b{left:256.294500px;}
.x5e{left:259.650000px;}
.x44{left:263.250000px;}
.x5c{left:266.250000px;}
.x62{left:274.950000px;}
.x45{left:278.193000px;}
.x5d{left:281.193000px;}
.x63{left:289.350000px;}
.x30{left:293.230500px;}
.x42{left:299.449500px;}
.x31{left:304.228500px;}
.x43{left:310.726500px;}
.x80{left:316.617000px;}
.x52{left:322.069500px;}
.x86{left:325.309500px;}
.x87{left:331.750500px;}
.x53{left:337.014000px;}
.x39{left:339.199411px;}
.x38{left:342.531191px;}
.x5a{left:347.208000px;}
.x36{left:354.408323px;}
.x5b{left:362.151000px;}
.x64{left:364.209000px;}
.x65{left:368.070000px;}
.x24{left:393.829807px;}
.x22{left:396.082500px;}
.x1f{left:406.969807px;}
.x1d{left:409.222500px;}
.x71{left:413.137500px;}
.x60{left:426.315000px;}
.x61{left:430.174500px;}
.x58{left:450.417000px;}
.x3a{left:459.528415px;}
.x59{left:465.361500px;}
.x7c{left:470.536500px;}
.x66{left:471.550500px;}
.x85{left:474.972000px;}
.x3c{left:481.779000px;}
.x46{left:486.885000px;}
.xf{left:489.117000px;}
.x10{left:496.590000px;}
.x47{left:501.829500px;}
.x67{left:518.382000px;}
.x81{left:519.609000px;}
.x68{left:522.241500px;}
.x82{left:526.050000px;}
.x2b{left:562.957500px;}
.x2e{left:567.558000px;}
.x2f{left:568.695000px;}
.x2d{left:572.056500px;}
.x69{left:576.462000px;}
.xd{left:584.985000px;}
.xe{left:592.456500px;}
.x78{left:609.019500px;}
.x7a{left:612.576000px;}
.x6a{left:622.765500px;}
.x6b{left:626.625000px;}
.x79{left:635.919000px;}
.x89{left:637.596000px;}
.x7b{left:639.475500px;}
.x7d{left:651.483000px;}
.x7e{left:655.006500px;}
.x83{left:659.440500px;}
.x8a{left:664.494000px;}
.x84{left:666.165000px;}
.x75{left:671.623500px;}
.x6c{left:689.350500px;}
.x6d{left:696.075000px;}
.x6{left:701.339982px;}
.x72{left:703.492500px;}
.x56{left:707.035500px;}
.x26{left:711.454500px;}
.x7f{left:714.766500px;}
.x57{left:720.546000px;}
.x27{left:725.202000px;}
.x54{left:738.141000px;}
.x76{left:749.466000px;}
.x55{left:753.084000px;}
.x4d{left:757.243500px;}
.x73{left:761.224500px;}
.x74{left:768.568500px;}
.x4e{left:772.188000px;}
.x77{left:776.365500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.v4{vertical-align:32.318400pt;}
.ls62{letter-spacing:-0.181696pt;}
.ls65{letter-spacing:-0.171008pt;}
.ls5f{letter-spacing:-0.165664pt;}
.ls63{letter-spacing:-0.149632pt;}
.ls59{letter-spacing:-0.138944pt;}
.ls64{letter-spacing:-0.128256pt;}
.ls40{letter-spacing:-0.117568pt;}
.ls61{letter-spacing:-0.106880pt;}
.ls60{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.096192pt;}
.ls3d{letter-spacing:-0.076608pt;}
.ls5b{letter-spacing:-0.069472pt;}
.ls3f{letter-spacing:-0.058784pt;}
.ls41{letter-spacing:-0.053440pt;}
.ls43{letter-spacing:-0.042752pt;}
.ls5c{letter-spacing:-0.038400pt;}
.ls57{letter-spacing:-0.037408pt;}
.ls5a{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.024000pt;}
.ls42{letter-spacing:-0.021376pt;}
.ls5d{letter-spacing:-0.019200pt;}
.ls58{letter-spacing:-0.016032pt;}
.ls44{letter-spacing:-0.010688pt;}
.ls5e{letter-spacing:-0.005344pt;}
.ls56{letter-spacing:-0.004800pt;}
.ls3e{letter-spacing:-0.004256pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000110pt;}
.ls69{letter-spacing:0.000136pt;}
.ls71{letter-spacing:0.000163pt;}
.ls6b{letter-spacing:0.000189pt;}
.ls72{letter-spacing:0.000387pt;}
.ls80{letter-spacing:0.000503pt;}
.ls37{letter-spacing:0.000752pt;}
.ls49{letter-spacing:0.001007pt;}
.ls67{letter-spacing:0.001743pt;}
.ls78{letter-spacing:0.001843pt;}
.ls6e{letter-spacing:0.002165pt;}
.ls81{letter-spacing:0.002287pt;}
.ls1{letter-spacing:0.002422pt;}
.ls4a{letter-spacing:0.002551pt;}
.ls36{letter-spacing:0.002826pt;}
.ls1b{letter-spacing:0.003100pt;}
.ls73{letter-spacing:0.003239pt;}
.lsd{letter-spacing:0.003430pt;}
.ls47{letter-spacing:0.003635pt;}
.ls3{letter-spacing:0.003733pt;}
.ls55{letter-spacing:0.003770pt;}
.ls9{letter-spacing:0.004237pt;}
.ls24{letter-spacing:0.004256pt;}
.ls87{letter-spacing:0.004267pt;}
.ls51{letter-spacing:0.004800pt;}
.ls6d{letter-spacing:0.004813pt;}
.ls2a{letter-spacing:0.005344pt;}
.ls34{letter-spacing:0.009600pt;}
.ls2c{letter-spacing:0.010688pt;}
.ls32{letter-spacing:0.014400pt;}
.ls2d{letter-spacing:0.016032pt;}
.ls4c{letter-spacing:0.019200pt;}
.ls29{letter-spacing:0.024000pt;}
.ls33{letter-spacing:0.028800pt;}
.ls27{letter-spacing:0.033600pt;}
.ls2b{letter-spacing:0.037408pt;}
.ls4e{letter-spacing:0.038400pt;}
.ls2e{letter-spacing:0.042752pt;}
.ls28{letter-spacing:0.043200pt;}
.ls4d{letter-spacing:0.048000pt;}
.ls50{letter-spacing:0.052800pt;}
.ls31{letter-spacing:0.058784pt;}
.ls4f{letter-spacing:0.062400pt;}
.ls35{letter-spacing:0.067200pt;}
.ls52{letter-spacing:0.081600pt;}
.ls66{letter-spacing:0.101536pt;}
.ls2f{letter-spacing:0.112224pt;}
.ls26{letter-spacing:0.161728pt;}
.ls25{letter-spacing:0.170240pt;}
.ls30{letter-spacing:0.171008pt;}
.ls77{letter-spacing:0.466280pt;}
.ls76{letter-spacing:0.471509pt;}
.ls7b{letter-spacing:0.478097pt;}
.ls7a{letter-spacing:0.483301pt;}
.ls6f{letter-spacing:0.530815pt;}
.ls6c{letter-spacing:0.531914pt;}
.ls1d{letter-spacing:1.133683pt;}
.ls10{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls7f{letter-spacing:10.063848pt;}
.ls83{letter-spacing:10.460800pt;}
.ls4b{letter-spacing:10.624017pt;}
.ls1a{letter-spacing:10.626533pt;}
.ls6a{letter-spacing:10.629350pt;}
.ls68{letter-spacing:10.892443pt;}
.ls86{letter-spacing:11.058133pt;}
.ls85{letter-spacing:11.534097pt;}
.ls7d{letter-spacing:11.780597pt;}
.ls79{letter-spacing:11.952503pt;}
.ls7c{letter-spacing:11.954133pt;}
.ls48{letter-spacing:11.954551pt;}
.ls82{letter-spacing:11.959467pt;}
.ls7e{letter-spacing:12.112345pt;}
.ls11{letter-spacing:12.190732pt;}
.ls12{letter-spacing:12.194953pt;}
.ls21{letter-spacing:12.203103pt;}
.ls20{letter-spacing:12.203135pt;}
.ls15{letter-spacing:12.286400pt;}
.ls16{letter-spacing:12.288110pt;}
.ls84{letter-spacing:12.435430pt;}
.ls8{letter-spacing:12.729067pt;}
.lsa{letter-spacing:12.729874pt;}
.ls70{letter-spacing:13.105258pt;}
.ls7{letter-spacing:13.177067pt;}
.ls5{letter-spacing:13.177570pt;}
.ls6{letter-spacing:13.177874pt;}
.ls3a{letter-spacing:13.230333pt;}
.ls39{letter-spacing:13.267003pt;}
.ls38{letter-spacing:13.270887pt;}
.lsb{letter-spacing:13.283733pt;}
.ls23{letter-spacing:13.285443pt;}
.ls74{letter-spacing:13.403287pt;}
.ls75{letter-spacing:13.411819pt;}
.ls3b{letter-spacing:14.055289pt;}
.ls3c{letter-spacing:14.058672pt;}
.ls19{letter-spacing:14.377626pt;}
.ls17{letter-spacing:14.379472pt;}
.ls18{letter-spacing:14.382855pt;}
.ls13{letter-spacing:17.652675pt;}
.ls14{letter-spacing:17.656058pt;}
.ls54{letter-spacing:18.921417pt;}
.ls53{letter-spacing:18.923263pt;}
.ls1e{letter-spacing:19.822609pt;}
.ls1f{letter-spacing:19.825992pt;}
.ls4{letter-spacing:51.035733pt;}
.lsf{letter-spacing:57.380267pt;}
.lsc{letter-spacing:62.432533pt;}
.lse{letter-spacing:64.314231pt;}
.ws0{word-spacing:-88.484977pt;}
.ws48{word-spacing:-53.440000pt;}
.ws80{word-spacing:-48.490291pt;}
.ws1d{word-spacing:-15.461955pt;}
.ws14{word-spacing:-13.915853pt;}
.ws47{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.283467pt;}
.ws7{word-spacing:-12.760670pt;}
.ws2e{word-spacing:-12.369595pt;}
.ws88{word-spacing:-12.033600pt;}
.ws13{word-spacing:-11.955200pt;}
.ws46{word-spacing:-10.810240pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws120{word-spacing:-4.351693pt;}
.ws43{word-spacing:-4.038174pt;}
.ws50{word-spacing:-3.878772pt;}
.ws1c{word-spacing:-3.666237pt;}
.wsfa{word-spacing:-3.559969pt;}
.wse2{word-spacing:-3.506835pt;}
.ws14c{word-spacing:-3.156173pt;}
.ws14a{word-spacing:-3.108352pt;}
.ws12e{word-spacing:-3.012710pt;}
.ws65{word-spacing:-2.853696pt;}
.ws1a{word-spacing:-2.816095pt;}
.ws131{word-spacing:-2.725786pt;}
.wsf2{word-spacing:-2.709827pt;}
.ws11c{word-spacing:-2.677965pt;}
.ws3f{word-spacing:-2.603559pt;}
.ws12d{word-spacing:-2.534502pt;}
.wse1{word-spacing:-2.497292pt;}
.ws64{word-spacing:-2.484960pt;}
.wse8{word-spacing:-2.444158pt;}
.ws123{word-spacing:-2.438861pt;}
.wsc8{word-spacing:-2.391024pt;}
.wsc7{word-spacing:-2.337890pt;}
.ws3d{word-spacing:-2.231622pt;}
.ws124{word-spacing:-1.912832pt;}
.ws5b{word-spacing:-1.715424pt;}
.ws17{word-spacing:-1.696326pt;}
.wsd5{word-spacing:-1.647150pt;}
.ws14e{word-spacing:-1.625907pt;}
.wsd4{word-spacing:-1.594016pt;}
.wsf0{word-spacing:-1.540882pt;}
.wsbc{word-spacing:-1.528384pt;}
.ws12f{word-spacing:-1.482445pt;}
.ws147{word-spacing:-1.386803pt;}
.wsbb{word-spacing:-1.368064pt;}
.ws16{word-spacing:-1.175671pt;}
.ws28{word-spacing:-1.168945pt;}
.ws145{word-spacing:-1.147699pt;}
.ws1f{word-spacing:-1.115811pt;}
.ws1e{word-spacing:-1.062677pt;}
.ws29{word-spacing:-1.009543pt;}
.wsea{word-spacing:-0.956410pt;}
.ws116{word-spacing:-0.908595pt;}
.ws19{word-spacing:-0.903276pt;}
.ws18{word-spacing:-0.797008pt;}
.wsb7{word-spacing:-0.769536pt;}
.ws114{word-spacing:-0.765133pt;}
.ws13d{word-spacing:-0.717312pt;}
.wsb8{word-spacing:-0.694720pt;}
.ws4f{word-spacing:-0.690740pt;}
.ws111{word-spacing:-0.669491pt;}
.wsf{word-spacing:-0.584473pt;}
.wsd{word-spacing:-0.555482pt;}
.ws10{word-spacing:-0.554644pt;}
.wsb{word-spacing:-0.531339pt;}
.ws112{word-spacing:-0.478208pt;}
.wse{word-spacing:-0.425071pt;}
.ws6c{word-spacing:-0.406144pt;}
.ws137{word-spacing:-0.382566pt;}
.ws125{word-spacing:-0.334746pt;}
.wsd7{word-spacing:-0.318803pt;}
.wsa3{word-spacing:-0.293920pt;}
.ws11d{word-spacing:-0.286925pt;}
.wsc5{word-spacing:-0.265669pt;}
.wsb5{word-spacing:-0.251168pt;}
.ws10e{word-spacing:-0.239104pt;}
.ws55{word-spacing:-0.238336pt;}
.ws9b{word-spacing:-0.219104pt;}
.ws35{word-spacing:-0.212535pt;}
.ws9a{word-spacing:-0.197728pt;}
.ws91{word-spacing:-0.196800pt;}
.ws10a{word-spacing:-0.191283pt;}
.ws5a{word-spacing:-0.176352pt;}
.ws92{word-spacing:-0.172800pt;}
.ws31{word-spacing:-0.159402pt;}
.ws11a{word-spacing:-0.143462pt;}
.wsa{word-spacing:-0.106532pt;}
.ws9{word-spacing:-0.106268pt;}
.ws104{word-spacing:-0.095642pt;}
.ws54{word-spacing:-0.072352pt;}
.wsbe{word-spacing:-0.064128pt;}
.ws6{word-spacing:-0.053134pt;}
.ws87{word-spacing:-0.048000pt;}
.ws4d{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.wsf6{word-spacing:-0.039633pt;}
.ws7e{word-spacing:-0.021794pt;}
.wsce{word-spacing:-0.020958pt;}
.wsd1{word-spacing:-0.019874pt;}
.ws84{word-spacing:-0.018594pt;}
.ws15{word-spacing:-0.008815pt;}
.ws8{word-spacing:-0.003222pt;}
.ws4{word-spacing:-0.002118pt;}
.ws5{word-spacing:-0.000673pt;}
.wsd3{word-spacing:-0.000660pt;}
.ws11{word-spacing:-0.000444pt;}
.wscf{word-spacing:-0.000213pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.001318pt;}
.wsca{word-spacing:0.003564pt;}
.ws7d{word-spacing:0.006366pt;}
.ws6b{word-spacing:0.026720pt;}
.ws7c{word-spacing:0.042752pt;}
.ws107{word-spacing:0.043934pt;}
.ws106{word-spacing:0.047821pt;}
.ws61{word-spacing:0.048096pt;}
.wsc6{word-spacing:0.053134pt;}
.ws8a{word-spacing:0.095642pt;}
.ws74{word-spacing:0.096000pt;}
.wsb6{word-spacing:0.101536pt;}
.ws37{word-spacing:0.106268pt;}
.ws99{word-spacing:0.110400pt;}
.ws96{word-spacing:0.129600pt;}
.ws4e{word-spacing:0.143462pt;}
.wsb1{word-spacing:0.148800pt;}
.ws93{word-spacing:0.153600pt;}
.wsa2{word-spacing:0.154976pt;}
.ws3c{word-spacing:0.159402pt;}
.ws59{word-spacing:0.163200pt;}
.ws95{word-spacing:0.168000pt;}
.wsb4{word-spacing:0.187040pt;}
.ws94{word-spacing:0.187200pt;}
.ws108{word-spacing:0.191283pt;}
.ws3e{word-spacing:0.212535pt;}
.ws113{word-spacing:0.239104pt;}
.ws51{word-spacing:0.265669pt;}
.ws142{word-spacing:0.286925pt;}
.ws44{word-spacing:0.318803pt;}
.ws89{word-spacing:0.334746pt;}
.ws9c{word-spacing:0.395456pt;}
.ws60{word-spacing:0.400800pt;}
.wsbf{word-spacing:0.406144pt;}
.ws9d{word-spacing:0.427520pt;}
.ws5f{word-spacing:0.448896pt;}
.ws10b{word-spacing:0.478208pt;}
.ws8c{word-spacing:0.526029pt;}
.ws90{word-spacing:0.584473pt;}
.ws110{word-spacing:0.621670pt;}
.ws105{word-spacing:0.669491pt;}
.ws1b{word-spacing:0.690740pt;}
.wsbd{word-spacing:0.710752pt;}
.ws52{word-spacing:0.743874pt;}
.ws70{word-spacing:0.782400pt;}
.wse5{word-spacing:0.791347pt;}
.wsdc{word-spacing:0.797008pt;}
.wsd2{word-spacing:0.807637pt;}
.wsd6{word-spacing:0.850142pt;}
.ws53{word-spacing:0.956410pt;}
.ws129{word-spacing:1.004237pt;}
.ws25{word-spacing:1.072206pt;}
.ws102{word-spacing:1.099878pt;}
.ws24{word-spacing:1.115811pt;}
.wsda{word-spacing:1.168945pt;}
.ws69{word-spacing:1.255840pt;}
.ws3a{word-spacing:1.275213pt;}
.ws8d{word-spacing:1.328347pt;}
.ws6a{word-spacing:1.378752pt;}
.wse9{word-spacing:1.381481pt;}
.ws101{word-spacing:1.386803pt;}
.ws5d{word-spacing:1.389440pt;}
.wsd9{word-spacing:1.487748pt;}
.ws68{word-spacing:1.640608pt;}
.ws34{word-spacing:1.647150pt;}
.ws26{word-spacing:1.700284pt;}
.ws5c{word-spacing:1.736800pt;}
.ws5e{word-spacing:1.747488pt;}
.ws8b{word-spacing:1.769370pt;}
.wsf3{word-spacing:1.806551pt;}
.ws135{word-spacing:1.865011pt;}
.ws121{word-spacing:1.912832pt;}
.ws146{word-spacing:1.960653pt;}
.wsc4{word-spacing:1.965953pt;}
.wsfc{word-spacing:2.019087pt;}
.ws27{word-spacing:2.072221pt;}
.ws71{word-spacing:2.073600pt;}
.wse7{word-spacing:2.125355pt;}
.ws32{word-spacing:2.231622pt;}
.ws8f{word-spacing:2.337890pt;}
.wse3{word-spacing:2.391024pt;}
.wsde{word-spacing:2.444158pt;}
.wse0{word-spacing:2.656693pt;}
.wsc3{word-spacing:2.864384pt;}
.wsff{word-spacing:2.869229pt;}
.ws4c{word-spacing:2.869248pt;}
.ws9f{word-spacing:2.907136pt;}
.ws33{word-spacing:2.975497pt;}
.ws12b{word-spacing:3.012710pt;}
.wsa4{word-spacing:3.033600pt;}
.wsa6{word-spacing:3.043200pt;}
.wsa5{word-spacing:3.086400pt;}
.ws9e{word-spacing:3.104864pt;}
.ws12a{word-spacing:3.108352pt;}
.ws4b{word-spacing:3.156173pt;}
.wsc9{word-spacing:3.188032pt;}
.wsef{word-spacing:3.241166pt;}
.ws126{word-spacing:3.299635pt;}
.wsd8{word-spacing:3.347434pt;}
.wsc1{word-spacing:3.356032pt;}
.wsc2{word-spacing:3.404128pt;}
.wsba{word-spacing:3.414816pt;}
.wsb9{word-spacing:3.436192pt;}
.wsdb{word-spacing:3.559969pt;}
.wsee{word-spacing:3.613103pt;}
.wsac{word-spacing:3.633600pt;}
.wsad{word-spacing:3.667200pt;}
.ws109{word-spacing:3.682202pt;}
.ws3b{word-spacing:3.719371pt;}
.ws10c{word-spacing:3.777843pt;}
.wsa0{word-spacing:3.869056pt;}
.wsb0{word-spacing:3.926400pt;}
.wsb2{word-spacing:3.933184pt;}
.wsa1{word-spacing:3.954560pt;}
.ws115{word-spacing:3.969126pt;}
.wsdf{word-spacing:3.985040pt;}
.wsc0{word-spacing:4.024032pt;}
.wsf9{word-spacing:4.038174pt;}
.wsec{word-spacing:4.091308pt;}
.wsb3{word-spacing:4.093504pt;}
.ws100{word-spacing:4.250709pt;}
.wsaf{word-spacing:4.300800pt;}
.wsae{word-spacing:4.324800pt;}
.ws21{word-spacing:4.356977pt;}
.ws10d{word-spacing:4.399514pt;}
.ws20{word-spacing:4.410111pt;}
.wscc{word-spacing:4.638618pt;}
.ws41{word-spacing:4.675780pt;}
.ws42{word-spacing:4.728914pt;}
.ws128{word-spacing:4.775851pt;}
.ws13e{word-spacing:4.780749pt;}
.ws13c{word-spacing:4.782080pt;}
.ws4a{word-spacing:4.925542pt;}
.wsab{word-spacing:4.948800pt;}
.wsaa{word-spacing:4.968000pt;}
.wscb{word-spacing:4.973363pt;}
.wseb{word-spacing:5.260253pt;}
.ws49{word-spacing:5.260288pt;}
.wsa7{word-spacing:5.289600pt;}
.wsa8{word-spacing:5.304000pt;}
.ws2a{word-spacing:5.307978pt;}
.wsa9{word-spacing:5.308800pt;}
.ws30{word-spacing:5.313387pt;}
.ws141{word-spacing:5.451571pt;}
.wsf1{word-spacing:5.525922pt;}
.ws8e{word-spacing:5.632190pt;}
.ws13f{word-spacing:5.738496pt;}
.ws133{word-spacing:5.786317pt;}
.ws134{word-spacing:5.834138pt;}
.ws127{word-spacing:5.929779pt;}
.ws10f{word-spacing:6.168883pt;}
.ws6d{word-spacing:6.216000pt;}
.ws6f{word-spacing:6.235200pt;}
.ws6e{word-spacing:6.273600pt;}
.ws66{word-spacing:6.471584pt;}
.wsfb{word-spacing:6.482332pt;}
.ws45{word-spacing:6.535466pt;}
.wsdd{word-spacing:6.641733pt;}
.ws22{word-spacing:6.801135pt;}
.ws98{word-spacing:6.844800pt;}
.ws67{word-spacing:6.851008pt;}
.ws97{word-spacing:6.854400pt;}
.ws103{word-spacing:6.886195pt;}
.ws38{word-spacing:7.119938pt;}
.ws77{word-spacing:7.433504pt;}
.wsf8{word-spacing:7.704411pt;}
.ws23{word-spacing:7.916946pt;}
.ws57{word-spacing:8.126400pt;}
.wscd{word-spacing:8.129536pt;}
.ws56{word-spacing:8.136000pt;}
.ws58{word-spacing:8.145600pt;}
.ws39{word-spacing:8.182615pt;}
.ws143{word-spacing:8.320819pt;}
.ws144{word-spacing:8.368640pt;}
.wse4{word-spacing:8.926490pt;}
.ws138{word-spacing:8.990310pt;}
.ws36{word-spacing:10.361104pt;}
.ws130{word-spacing:10.425984pt;}
.ws2b{word-spacing:10.581396pt;}
.ws14d{word-spacing:10.711859pt;}
.wsfe{word-spacing:10.892443pt;}
.wsfd{word-spacing:10.945577pt;}
.ws11e{word-spacing:11.620454pt;}
.ws11b{word-spacing:11.716096pt;}
.ws140{word-spacing:11.763917pt;}
.ws149{word-spacing:11.859558pt;}
.ws13a{word-spacing:11.901184pt;}
.ws118{word-spacing:11.905331pt;}
.ws119{word-spacing:11.906449pt;}
.ws117{word-spacing:11.907379pt;}
.ws12c{word-spacing:11.955200pt;}
.ws122{word-spacing:12.050842pt;}
.ws132{word-spacing:12.194304pt;}
.wsf4{word-spacing:13.017797pt;}
.ws13b{word-spacing:13.146394pt;}
.wsf7{word-spacing:13.185668pt;}
.ws79{word-spacing:13.199680pt;}
.wsf5{word-spacing:13.200041pt;}
.ws40{word-spacing:13.230333pt;}
.ws7a{word-spacing:13.552384pt;}
.ws7b{word-spacing:13.627200pt;}
.ws78{word-spacing:13.830272pt;}
.wse6{word-spacing:14.029726pt;}
.ws14b{word-spacing:15.780864pt;}
.ws148{word-spacing:16.688853pt;}
.ws11f{word-spacing:16.689459pt;}
.wsed{word-spacing:18.543719pt;}
.ws72{word-spacing:18.720000pt;}
.ws73{word-spacing:18.724800pt;}
.ws139{word-spacing:20.897690pt;}
.ws75{word-spacing:21.215680pt;}
.ws76{word-spacing:21.258432pt;}
.ws63{word-spacing:22.492896pt;}
.ws62{word-spacing:22.503584pt;}
.ws136{word-spacing:22.667059pt;}
.ws2{word-spacing:35.593054pt;}
.ws83{word-spacing:155.207407pt;}
.ws86{word-spacing:159.245807pt;}
.ws81{word-spacing:171.204207pt;}
.wsd0{word-spacing:220.214784pt;}
.ws82{word-spacing:325.137067pt;}
.ws85{word-spacing:339.936000pt;}
.ws7f{word-spacing:339.937067pt;}
.ws2f{word-spacing:691.209579pt;}
._36{margin-left:-8.342073pt;}
._6{margin-left:-6.981837pt;}
._1{margin-left:-5.897859pt;}
._5{margin-left:-4.399514pt;}
._2{margin-left:-2.917188pt;}
._9{margin-left:-1.995945pt;}
._0{margin-left:-0.956581pt;}
._a{width:0.969929pt;}
._3{width:2.665373pt;}
._15{width:10.998784pt;}
._34{width:11.955200pt;}
._b{width:13.076061pt;}
._35{width:13.979574pt;}
._17{width:14.920191pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._10{width:18.596853pt;}
._13{width:19.519524pt;}
._29{width:20.775342pt;}
._16{width:21.872752pt;}
._11{width:23.887270pt;}
._f{width:25.769925pt;}
._32{width:27.045310pt;}
._2a{width:28.586192pt;}
._12{width:30.233170pt;}
._33{width:32.145989pt;}
._c{width:34.140329pt;}
._38{width:35.088058pt;}
._d{width:41.795048pt;}
._1f{width:45.460800pt;}
._20{width:56.923200pt;}
._4{width:61.627775pt;}
._18{width:113.048610pt;}
._1b{width:119.342003pt;}
._19{width:123.234202pt;}
._1a{width:141.275981pt;}
._30{width:162.030686pt;}
._2c{width:167.659725pt;}
._31{width:171.532484pt;}
._22{width:179.596800pt;}
._27{width:183.921600pt;}
._25{width:196.056000pt;}
._21{width:205.027200pt;}
._28{width:212.198400pt;}
._23{width:224.361600pt;}
._2e{width:231.930880pt;}
._1c{width:237.956301pt;}
._1e{width:277.408461pt;}
._1d{width:289.363661pt;}
._2b{width:309.639680pt;}
._2d{width:311.573470pt;}
._2f{width:321.068851pt;}
._26{width:343.886400pt;}
._24{width:356.054400pt;}
._14{width:1460.583031pt;}
._37{width:1802.690933pt;}
._e{width:1823.944267pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:113.733903pt;}
.y7a{bottom:-705.057819pt;}
.y79{bottom:-687.138051pt;}
.y78{bottom:-669.138123pt;}
.y77{bottom:-651.138195pt;}
.y76{bottom:-633.138267pt;}
.y75{bottom:-599.539467pt;}
.y74{bottom:-582.259467pt;}
.y73{bottom:-564.899067pt;}
.y72{bottom:-547.538667pt;}
.y71{bottom:-530.178267pt;}
.y70{bottom:-508.418027pt;}
.yd9{bottom:-357.739752pt;}
.yd8{bottom:-339.739824pt;}
.yd7{bottom:-321.739896pt;}
.yd6{bottom:-303.739968pt;}
.yd5{bottom:-285.740040pt;}
.yd4{bottom:-267.820272pt;}
.yd3{bottom:-249.820344pt;}
.y6f{bottom:-244.257427pt;}
.yd2{bottom:-231.820416pt;}
.y6e{bottom:-226.257499pt;}
.yd1{bottom:-213.820488pt;}
.y6d{bottom:-208.257571pt;}
.y96{bottom:-201.000485pt;}
.y6c{bottom:-190.257643pt;}
.yd0{bottom:-187.820592pt;}
.y95{bottom:-183.080717pt;}
.y6b{bottom:-172.257715pt;}
.y94{bottom:-165.080789pt;}
.y6a{bottom:-154.257787pt;}
.ycf{bottom:-153.820728pt;}
.y93{bottom:-147.080861pt;}
.y69{bottom:-136.257859pt;}
.yce{bottom:-135.820800pt;}
.y92{bottom:-129.080933pt;}
.y68{bottom:-118.338091pt;}
.ycd{bottom:-102.301733pt;}
.y67{bottom:-100.338163pt;}
.y91{bottom:-95.482133pt;}
.ycc{bottom:-84.941333pt;}
.y90{bottom:-78.202133pt;}
.y66{bottom:-74.338267pt;}
.ycb{bottom:-67.580933pt;}
.y8f{bottom:-60.841733pt;}
.yca{bottom:-50.300933pt;}
.y8e{bottom:-43.481333pt;}
.y65{bottom:-40.738667pt;}
.yc9{bottom:-32.940533pt;}
.y8d{bottom:-26.120933pt;}
.y64{bottom:-23.378267pt;}
.yc8{bottom:-15.500933pt;}
.y8c{bottom:-4.360693pt;}
.y63{bottom:-1.618267pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:3.044747pt;}
.yc7{bottom:6.179219pt;}
.y22{bottom:12.578910pt;}
.y2{bottom:14.271753pt;}
.y33{bottom:56.693333pt;}
.y11e{bottom:96.544000pt;}
.y170{bottom:97.858667pt;}
.y146{bottom:98.682667pt;}
.yee{bottom:101.526667pt;}
.y19a{bottom:108.478667pt;}
.y11d{bottom:114.556000pt;}
.y16f{bottom:115.870667pt;}
.y145{bottom:116.694667pt;}
.yed{bottom:119.540000pt;}
.y199{bottom:121.988000pt;}
.y32{bottom:122.081333pt;}
.y11c{bottom:132.568000pt;}
.y16e{bottom:133.884000pt;}
.y144{bottom:134.706667pt;}
.y1cc{bottom:140.421333pt;}
.ya7{bottom:143.405333pt;}
.y198{bottom:143.468000pt;}
.yec{bottom:145.522667pt;}
.y11b{bottom:150.581333pt;}
.y16d{bottom:151.896000pt;}
.y31{bottom:156.033333pt;}
.y197{bottom:156.977333pt;}
.y1cb{bottom:157.636000pt;}
.y143{bottom:160.689333pt;}
.ya6{bottom:161.418667pt;}
.y60{bottom:167.730667pt;}
.y11a{bottom:168.593333pt;}
.y16c{bottom:169.909333pt;}
.y196{bottom:170.486667pt;}
.y30{bottom:174.046667pt;}
.y1ca{bottom:174.852000pt;}
.yeb{bottom:176.473333pt;}
.ya5{bottom:179.430667pt;}
.y142{bottom:183.670667pt;}
.y195{bottom:185.384000pt;}
.y5f{bottom:185.742667pt;}
.y119{bottom:186.606667pt;}
.y16b{bottom:187.921333pt;}
.y2f{bottom:192.058667pt;}
.y1c9{bottom:192.068000pt;}
.yea{bottom:194.485333pt;}
.ya4{bottom:197.444000pt;}
.y194{bottom:198.893333pt;}
.y141{bottom:201.682667pt;}
.y5e{bottom:203.754667pt;}
.y118{bottom:204.618667pt;}
.y16a{bottom:205.933333pt;}
.y1c8{bottom:209.282667pt;}
.y2e{bottom:210.070667pt;}
.y193{bottom:212.402667pt;}
.ye9{bottom:212.497333pt;}
.ya3{bottom:215.456000pt;}
.y1f9{bottom:217.358667pt;}
.y140{bottom:219.696000pt;}
.y5d{bottom:221.768000pt;}
.y117{bottom:222.630667pt;}
.y192{bottom:225.912000pt;}
.y1c7{bottom:226.498667pt;}
.y2d{bottom:228.084000pt;}
.ye8{bottom:230.510667pt;}
.y169{bottom:231.916000pt;}
.ya2{bottom:233.468000pt;}
.y1f8{bottom:234.574667pt;}
.y62{bottom:235.741733pt;}
.y13f{bottom:237.708000pt;}
.y191{bottom:239.421333pt;}
.y5c{bottom:239.780000pt;}
.y116{bottom:240.644000pt;}
.y1c6{bottom:243.713333pt;}
.y2c{bottom:246.096000pt;}
.ye7{bottom:248.522667pt;}
.ya1{bottom:251.481333pt;}
.y1f7{bottom:251.790667pt;}
.y5b{bottom:257.793333pt;}
.y115{bottom:258.656000pt;}
.y8b{bottom:259.799907pt;}
.y190{bottom:260.901333pt;}
.y1c5{bottom:260.929333pt;}
.y168{bottom:262.866667pt;}
.y13e{bottom:263.690667pt;}
.y2b{bottom:264.109333pt;}
.yc6{bottom:266.099355pt;}
.ye6{bottom:266.536000pt;}
.y1f6{bottom:269.005333pt;}
.ya0{bottom:269.493333pt;}
.y18f{bottom:274.410667pt;}
.y5a{bottom:275.805333pt;}
.y114{bottom:276.669333pt;}
.y8a{bottom:277.799835pt;}
.y1c4{bottom:278.145333pt;}
.y167{bottom:280.880000pt;}
.y2a{bottom:282.121333pt;}
.yc5{bottom:284.099283pt;}
.ye5{bottom:284.548000pt;}
.y1f5{bottom:286.221333pt;}
.y9f{bottom:287.506667pt;}
.y59{bottom:293.817333pt;}
.y13d{bottom:294.641333pt;}
.y113{bottom:294.681333pt;}
.y1c3{bottom:295.360000pt;}
.y89{bottom:295.799763pt;}
.y18e{bottom:295.890667pt;}
.y166{bottom:298.892000pt;}
.y29{bottom:300.133333pt;}
.yc4{bottom:302.099211pt;}
.ye4{bottom:302.560000pt;}
.y1f4{bottom:303.437333pt;}
.y9e{bottom:305.518667pt;}
.y18d{bottom:309.400000pt;}
.y58{bottom:311.830667pt;}
.y1c2{bottom:312.576000pt;}
.y112{bottom:312.693333pt;}
.y88{bottom:313.799691pt;}
.y165{bottom:316.905333pt;}
.y28{bottom:318.146667pt;}
.yc3{bottom:320.099139pt;}
.ye3{bottom:320.573333pt;}
.y1f3{bottom:320.652000pt;}
.y18c{bottom:322.909333pt;}
.y9d{bottom:323.530667pt;}
.y13c{bottom:325.592000pt;}
.y1c1{bottom:329.790667pt;}
.y111{bottom:330.706667pt;}
.y87{bottom:331.799619pt;}
.y27{bottom:336.158667pt;}
.y18b{bottom:336.418667pt;}
.y57{bottom:337.813333pt;}
.y1f2{bottom:337.868000pt;}
.yc2{bottom:338.099067pt;}
.ye2{bottom:338.585333pt;}
.y9c{bottom:341.544000pt;}
.y164{bottom:342.888000pt;}
.y13b{bottom:343.604000pt;}
.y1c0{bottom:347.006667pt;}
.y110{bottom:348.718667pt;}
.y86{bottom:349.799547pt;}
.y18a{bottom:349.928000pt;}
.y26{bottom:354.172000pt;}
.y1f1{bottom:355.082667pt;}
.ye1{bottom:356.597333pt;}
.y13a{bottom:361.617333pt;}
.y1bf{bottom:364.222667pt;}
.y10f{bottom:366.732000pt;}
.y85{bottom:367.799475pt;}
.y56{bottom:368.764000pt;}
.y189{bottom:371.406667pt;}
.yc1{bottom:371.699067pt;}
.y25{bottom:372.184000pt;}
.y1f0{bottom:372.298667pt;}
.y9b{bottom:372.654667pt;}
.y163{bottom:373.838667pt;}
.y139{bottom:379.629333pt;}
.y1be{bottom:381.437333pt;}
.ye0{bottom:382.580000pt;}
.y10e{bottom:384.744000pt;}
.y188{bottom:384.916000pt;}
.y84{bottom:385.719243pt;}
.y55{bottom:386.776000pt;}
.yc0{bottom:388.979067pt;}
.y1ef{bottom:389.514667pt;}
.y9a{bottom:389.750667pt;}
.y24{bottom:390.196000pt;}
.y162{bottom:391.850667pt;}
.y138{bottom:397.642667pt;}
.y187{bottom:398.426667pt;}
.y1bd{bottom:398.653333pt;}
.y10d{bottom:402.756000pt;}
.y83{bottom:403.719171pt;}
.y54{bottom:404.789333pt;}
.y1ee{bottom:406.729333pt;}
.y99{bottom:406.846667pt;}
.ybf{bottom:407.618267pt;}
.y161{bottom:409.862667pt;}
.ydf{bottom:410.689333pt;}
.y186{bottom:411.936000pt;}
.y137{bottom:415.654667pt;}
.ybe{bottom:415.697867pt;}
.y1bc{bottom:415.868000pt;}
.y10c{bottom:420.769333pt;}
.y21{bottom:421.110715pt;}
.y53{bottom:422.801333pt;}
.y98{bottom:423.942667pt;}
.y1ed{bottom:423.945333pt;}
.y185{bottom:425.445333pt;}
.yde{bottom:427.785333pt;}
.y160{bottom:427.876000pt;}
.y20{bottom:428.173333pt;}
.y82{bottom:429.719067pt;}
.y1bb{bottom:433.084000pt;}
.y136{bottom:433.666667pt;}
.y10b{bottom:438.781333pt;}
.y184{bottom:438.954667pt;}
.ybd{bottom:440.018267pt;}
.y52{bottom:440.813333pt;}
.y97{bottom:441.038667pt;}
.y1ec{bottom:441.160000pt;}
.ydd{bottom:444.881333pt;}
.y15f{bottom:445.888000pt;}
.ybc{bottom:448.099067pt;}
.y1ba{bottom:450.300000pt;}
.y135{bottom:451.680000pt;}
.y183{bottom:452.464000pt;}
.y1f{bottom:456.464000pt;}
.y10a{bottom:456.794667pt;}
.y1eb{bottom:458.376000pt;}
.y51{bottom:458.826667pt;}
.y7d{bottom:460.976000pt;}
.ydc{bottom:461.977333pt;}
.y81{bottom:463.318667pt;}
.y15e{bottom:463.901333pt;}
.y182{bottom:465.973333pt;}
.y1b9{bottom:467.514667pt;}
.y134{bottom:469.692000pt;}
.ybb{bottom:472.418267pt;}
.y1e{bottom:472.604000pt;}
.y109{bottom:474.806667pt;}
.y1ea{bottom:475.592000pt;}
.y50{bottom:476.838667pt;}
.ydb{bottom:479.073333pt;}
.y181{bottom:479.482667pt;}
.yba{bottom:480.499067pt;}
.y80{bottom:480.679067pt;}
.y15d{bottom:481.913333pt;}
.y1b8{bottom:484.730667pt;}
.y133{bottom:487.704000pt;}
.y1d{bottom:488.744000pt;}
.y1e9{bottom:492.806667pt;}
.y108{bottom:492.818667pt;}
.y180{bottom:492.992000pt;}
.yda{bottom:496.169333pt;}
.y15c{bottom:499.925333pt;}
.y1b7{bottom:501.945333pt;}
.y7f{bottom:502.439067pt;}
.y4f{bottom:502.821333pt;}
.yb9{bottom:505.539067pt;}
.y132{bottom:505.717333pt;}
.y17f{bottom:506.501333pt;}
.y1c{bottom:509.222667pt;}
.y1e8{bottom:510.022667pt;}
.y107{bottom:510.832000pt;}
.yb8{bottom:513.619867pt;}
.yb4{bottom:516.106667pt;}
.y15b{bottom:517.938667pt;}
.y1b6{bottom:519.161333pt;}
.y17e{bottom:520.010667pt;}
.y131{bottom:523.729333pt;}
.y1b{bottom:525.362667pt;}
.y1e7{bottom:527.237333pt;}
.y106{bottom:528.844000pt;}
.y17d{bottom:533.520000pt;}
.y4e{bottom:533.772000pt;}
.y15a{bottom:535.950667pt;}
.y1b5{bottom:536.377333pt;}
.y1a{bottom:537.162667pt;}
.y130{bottom:541.742667pt;}
.y1e6{bottom:544.453333pt;}
.y105{bottom:546.857333pt;}
.y17c{bottom:547.029333pt;}
.yb7{bottom:547.139467pt;}
.y4d{bottom:551.785333pt;}
.y1b4{bottom:553.592000pt;}
.y159{bottom:553.964000pt;}
.y19{bottom:557.641333pt;}
.y12f{bottom:559.754667pt;}
.y17b{bottom:560.538667pt;}
.y1e5{bottom:561.669333pt;}
.yb6{bottom:564.579067pt;}
.y104{bottom:564.869333pt;}
.y4c{bottom:569.797333pt;}
.y1b3{bottom:570.808000pt;}
.y158{bottom:571.976000pt;}
.y18{bottom:573.781333pt;}
.y12e{bottom:577.766667pt;}
.y1e4{bottom:578.884000pt;}
.y103{bottom:582.881333pt;}
.y17{bottom:585.581333pt;}
.y4b{bottom:587.809333pt;}
.y1b2{bottom:588.024000pt;}
.y17a{bottom:589.988000pt;}
.y12d{bottom:595.780000pt;}
.y1e3{bottom:596.100000pt;}
.yb5{bottom:597.539067pt;}
.y157{bottom:597.958667pt;}
.y1b1{bottom:605.238667pt;}
.y4a{bottom:605.822667pt;}
.y16{bottom:606.060000pt;}
.y179{bottom:608.001333pt;}
.y102{bottom:608.864000pt;}
.y1e2{bottom:613.314667pt;}
.y12c{bottom:613.792000pt;}
.y15{bottom:617.860000pt;}
.y1b0{bottom:622.454667pt;}
.y49{bottom:623.834667pt;}
.y178{bottom:626.013333pt;}
.y156{bottom:628.909333pt;}
.y1e1{bottom:630.530667pt;}
.y12b{bottom:631.805333pt;}
.y14{bottom:634.000000pt;}
.y1af{bottom:639.669333pt;}
.y48{bottom:641.846667pt;}
.y101{bottom:643.337333pt;}
.y177{bottom:644.026667pt;}
.y155{bottom:646.921333pt;}
.y1e0{bottom:647.746667pt;}
.y12a{bottom:649.817333pt;}
.y13{bottom:650.138667pt;}
.y100{bottom:655.957333pt;}
.y1ae{bottom:656.885333pt;}
.y47{bottom:659.860000pt;}
.y176{bottom:662.038667pt;}
.y154{bottom:664.934667pt;}
.y1df{bottom:664.961333pt;}
.y12{bottom:666.278667pt;}
.y129{bottom:667.829333pt;}
.y1ad{bottom:674.101333pt;}
.yff{bottom:675.564000pt;}
.y46{bottom:677.872000pt;}
.y175{bottom:680.050667pt;}
.y1de{bottom:682.177333pt;}
.y11{bottom:682.418667pt;}
.y153{bottom:682.946667pt;}
.y128{bottom:685.842667pt;}
.yfe{bottom:690.493333pt;}
.y1ac{bottom:691.316000pt;}
.y45{bottom:695.885333pt;}
.y174{bottom:698.064000pt;}
.y10{bottom:698.557333pt;}
.y1dd{bottom:699.392000pt;}
.y152{bottom:700.958667pt;}
.y127{bottom:703.854667pt;}
.yfd{bottom:705.422667pt;}
.y1ab{bottom:708.532000pt;}
.y44{bottom:713.897333pt;}
.yf{bottom:714.697333pt;}
.y173{bottom:716.076000pt;}
.y1dc{bottom:716.608000pt;}
.y151{bottom:718.972000pt;}
.yfc{bottom:720.352000pt;}
.y126{bottom:721.868000pt;}
.y1aa{bottom:725.746667pt;}
.ye{bottom:730.837333pt;}
.y43{bottom:731.909333pt;}
.y1db{bottom:733.824000pt;}
.yfb{bottom:735.281333pt;}
.y150{bottom:736.984000pt;}
.y7e{bottom:739.799067pt;}
.y125{bottom:739.880000pt;}
.y7c{bottom:741.737333pt;}
.y172{bottom:742.058667pt;}
.y1a9{bottom:742.962667pt;}
.y42{bottom:749.922667pt;}
.yfa{bottom:750.210667pt;}
.y1da{bottom:751.038667pt;}
.yd{bottom:751.316000pt;}
.y14f{bottom:754.997333pt;}
.y124{bottom:757.892000pt;}
.y7b{bottom:758.833333pt;}
.y1a8{bottom:760.178667pt;}
.y41{bottom:767.934667pt;}
.y1d9{bottom:768.254667pt;}
.yc{bottom:768.528000pt;}
.yf9{bottom:771.542667pt;}
.y14e{bottom:773.009333pt;}
.y123{bottom:775.905333pt;}
.y1a7{bottom:777.393333pt;}
.y61{bottom:778.770667pt;}
.y1d8{bottom:785.469333pt;}
.y40{bottom:785.948000pt;}
.yb{bottom:786.541333pt;}
.y14d{bottom:791.021333pt;}
.y122{bottom:793.917333pt;}
.y1a6{bottom:794.609333pt;}
.yf8{bottom:799.649333pt;}
.y1d7{bottom:802.685333pt;}
.y3f{bottom:803.960000pt;}
.ya{bottom:804.553333pt;}
.yb3{bottom:807.576000pt;}
.y14c{bottom:809.034667pt;}
.y1a5{bottom:811.824000pt;}
.y121{bottom:811.930667pt;}
.yf7{bottom:816.745333pt;}
.y1d6{bottom:819.901333pt;}
.yb2{bottom:820.194667pt;}
.y3e{bottom:821.972000pt;}
.y9{bottom:822.565333pt;}
.y14b{bottom:827.046667pt;}
.y1a4{bottom:829.040000pt;}
.y120{bottom:829.942667pt;}
.yf6{bottom:833.841333pt;}
.y171{bottom:835.017333pt;}
.y1fe{bottom:836.933333pt;}
.y1d5{bottom:837.116000pt;}
.yb1{bottom:839.485333pt;}
.y3d{bottom:839.985333pt;}
.y8{bottom:840.578667pt;}
.y14a{bottom:845.060000pt;}
.y1a3{bottom:846.256000pt;}
.yb0{bottom:846.790667pt;}
.y11f{bottom:847.954667pt;}
.y1fd{bottom:854.149333pt;}
.y1d4{bottom:854.332000pt;}
.y3c{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.y149{bottom:863.072000pt;}
.y1a2{bottom:863.470667pt;}
.yf5{bottom:865.968000pt;}
.yaf{bottom:868.708000pt;}
.y1fc{bottom:871.364000pt;}
.y1d3{bottom:871.546667pt;}
.y3b{bottom:876.010667pt;}
.yae{bottom:876.014667pt;}
.y1a1{bottom:880.686667pt;}
.y148{bottom:881.084000pt;}
.yf4{bottom:883.980000pt;}
.y1d2{bottom:888.762667pt;}
.y3a{bottom:894.022667pt;}
.y1fb{bottom:897.450667pt;}
.y1a0{bottom:897.901333pt;}
.yad{bottom:897.932000pt;}
.y6{bottom:898.178667pt;}
.yf3{bottom:901.993333pt;}
.yac{bottom:905.238667pt;}
.y1d1{bottom:905.978667pt;}
.y147{bottom:907.066667pt;}
.y1fa{bottom:910.960000pt;}
.y39{bottom:912.034667pt;}
.y19f{bottom:915.117333pt;}
.yf2{bottom:920.005333pt;}
.y1d0{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y38{bottom:930.048000pt;}
.y19e{bottom:932.333333pt;}
.yab{bottom:933.558667pt;}
.yf1{bottom:938.017333pt;}
.y1cf{bottom:940.409333pt;}
.yaa{bottom:940.864000pt;}
.y37{bottom:948.060000pt;}
.y19d{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.yf0{bottom:956.030667pt;}
.y1ce{bottom:957.624000pt;}
.y36{bottom:966.073333pt;}
.y19c{bottom:966.764000pt;}
.yef{bottom:974.042667pt;}
.y1cd{bottom:974.840000pt;}
.ya9{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y19b{bottom:991.949333pt;}
.y35{bottom:992.056000pt;}
.ya8{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h8{height:27.076941pt;}
.hc{height:29.433775pt;}
.h1c{height:29.499997pt;}
.hb{height:30.399505pt;}
.h1b{height:30.945242pt;}
.h10{height:31.157778pt;}
.h24{height:33.713664pt;}
.h16{height:34.574438pt;}
.h9{height:34.813542pt;}
.h23{height:35.052646pt;}
.hf{height:36.874903pt;}
.hd{height:38.415786pt;}
.h15{height:38.462187pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h12{height:39.359687pt;}
.h22{height:43.660390pt;}
.h14{height:44.390625pt;}
.h2{height:45.271688pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h13{height:49.421563pt;}
.h18{height:63.795772pt;}
.h19{height:64.034876pt;}
.h1a{height:64.040209pt;}
.h1e{height:67.521525pt;}
.h5{height:69.148877pt;}
.h1f{height:69.560588pt;}
.h20{height:76.709025pt;}
.h21{height:77.030625pt;}
.h3{height:77.111586pt;}
.h11{height:226.569333pt;}
.h17{height:250.394667pt;}
.h1d{height:253.877333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:173.109192pt;}
.w5{width:352.232000pt;}
.w4{width:366.248000pt;}
.w6{width:417.534667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x21{left:-121.686667pt;}
.x1c{left:-110.006667pt;}
.x23{left:-93.366667pt;}
.x33{left:-88.329333pt;}
.x1e{left:-81.686667pt;}
.x34{left:-60.009333pt;}
.x35{left:-50.971051pt;}
.x37{left:-30.329333pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.461478pt;}
.x19{left:99.829333pt;}
.x1{left:102.046667pt;}
.x9{left:107.394667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x6e{left:123.930667pt;}
.x4{left:129.929333pt;}
.x17{left:131.302667pt;}
.x28{left:135.352000pt;}
.x48{left:142.270667pt;}
.x18{left:144.586667pt;}
.x29{left:147.565333pt;}
.x4f{left:149.009333pt;}
.x2c{left:150.864000pt;}
.x50{left:155.650667pt;}
.x51{left:158.981333pt;}
.xc{left:160.176000pt;}
.x8{left:166.498667pt;}
.x11{left:171.681333pt;}
.x88{left:174.828000pt;}
.x2a{left:176.024000pt;}
.x12{left:178.322667pt;}
.x6f{left:179.502667pt;}
.x3f{left:181.016000pt;}
.x3b{left:182.078667pt;}
.x41{left:183.154667pt;}
.x25{left:184.885333pt;}
.xa{left:186.406667pt;}
.x32{left:188.084000pt;}
.x4c{left:189.249333pt;}
.x13{left:190.681333pt;}
.x49{left:192.402667pt;}
.xb{left:195.094667pt;}
.x14{left:197.324000pt;}
.x15{left:200.608000pt;}
.x3d{left:202.377333pt;}
.x4a{left:204.306667pt;}
.x70{left:207.518667pt;}
.x5f{left:211.681333pt;}
.x16{left:213.892000pt;}
.x3e{left:216.089333pt;}
.x4b{left:217.590667pt;}
.x1a{left:218.930667pt;}
.x20{left:220.734667pt;}
.x40{left:222.922667pt;}
.x8b{left:225.868000pt;}
.x1b{left:227.817333pt;}
.x5e{left:230.800000pt;}
.x44{left:234.000000pt;}
.x5c{left:236.666667pt;}
.x62{left:244.400000pt;}
.x45{left:247.282667pt;}
.x5d{left:249.949333pt;}
.x63{left:257.200000pt;}
.x30{left:260.649333pt;}
.x42{left:266.177333pt;}
.x31{left:270.425333pt;}
.x43{left:276.201333pt;}
.x80{left:281.437333pt;}
.x52{left:286.284000pt;}
.x86{left:289.164000pt;}
.x87{left:294.889333pt;}
.x53{left:299.568000pt;}
.x39{left:301.510587pt;}
.x38{left:304.472169pt;}
.x5a{left:308.629333pt;}
.x36{left:315.029621pt;}
.x5b{left:321.912000pt;}
.x64{left:323.741333pt;}
.x65{left:327.173333pt;}
.x24{left:350.070940pt;}
.x22{left:352.073333pt;}
.x1f{left:361.750940pt;}
.x1d{left:363.753333pt;}
.x71{left:367.233333pt;}
.x60{left:378.946667pt;}
.x61{left:382.377333pt;}
.x58{left:400.370667pt;}
.x3a{left:408.469702pt;}
.x59{left:413.654667pt;}
.x7c{left:418.254667pt;}
.x66{left:419.156000pt;}
.x85{left:422.197333pt;}
.x3c{left:428.248000pt;}
.x46{left:432.786667pt;}
.xf{left:434.770667pt;}
.x10{left:441.413333pt;}
.x47{left:446.070667pt;}
.x67{left:460.784000pt;}
.x81{left:461.874667pt;}
.x68{left:464.214667pt;}
.x82{left:467.600000pt;}
.x2b{left:500.406667pt;}
.x2e{left:504.496000pt;}
.x2f{left:505.506667pt;}
.x2d{left:508.494667pt;}
.x69{left:512.410667pt;}
.xd{left:519.986667pt;}
.xe{left:526.628000pt;}
.x78{left:541.350667pt;}
.x7a{left:544.512000pt;}
.x6a{left:553.569333pt;}
.x6b{left:557.000000pt;}
.x79{left:565.261333pt;}
.x89{left:566.752000pt;}
.x7b{left:568.422667pt;}
.x7d{left:579.096000pt;}
.x7e{left:582.228000pt;}
.x83{left:586.169333pt;}
.x8a{left:590.661333pt;}
.x84{left:592.146667pt;}
.x75{left:596.998667pt;}
.x6c{left:612.756000pt;}
.x6d{left:618.733333pt;}
.x6{left:623.413317pt;}
.x72{left:625.326667pt;}
.x56{left:628.476000pt;}
.x26{left:632.404000pt;}
.x7f{left:635.348000pt;}
.x57{left:640.485333pt;}
.x27{left:644.624000pt;}
.x54{left:656.125333pt;}
.x76{left:666.192000pt;}
.x55{left:669.408000pt;}
.x4d{left:673.105333pt;}
.x73{left:676.644000pt;}
.x74{left:683.172000pt;}
.x4e{left:686.389333pt;}
.x77{left:690.102667pt;}
}




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