
    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_c5c97d13a4df50e4e46e8713.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d74dd4d59722bc77e6ea089c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_782c33fea76821a134837735.woff')format("woff");}.ff3{font-family:ff3;line-height:1.701000;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_8f5f4a166a79dacfed9375fb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7959fffcbf6ec5a4120ea436.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_327a14097deb43dfc3f8d01a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_82f5f1b86750a1bfb905591c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89c1c13b116029ba1a22ebb2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_529f08883d92c1df27176ace.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_be61c42ebb4dc677a1a8b157.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_de3f93833e318cfd688a0863.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb7c690b5a5f1e421245ea09.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899000;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_8a87a1918e385aba90ae3c22.woff')format("woff");}.ffd{font-family:ffd;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5845f8a96c6c2e2cee396bc2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3e2380412ee0606550019035.woff')format("woff");}.fff{font-family:fff;line-height:0.898474;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_ace78b31e302b112b20dfff0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.043000;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_d5ed05e79fc48dbad214402a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.922000;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_b745a8818b76a5bd7f224a0f.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a77b53a20103f230842596c4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.256000;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_06d42961cd20d857cb0bf6a7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.908000;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_ede8e9f238e2624025f41ea7.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_36a57a81a181cdc2f31ad361.woff')format("woff");}.ff16{font-family:ff16;line-height:0.704200;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_d9b43cafeecfc143dcdd2dc2.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b253f2a38566a796bab33cba.woff')format("woff");}.ff18{font-family:ff18;line-height:0.685000;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_479b13dd7360cfb2453cd84a.woff')format("woff");}.ff19{font-family:ff19;line-height:0.672000;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_a7959efeb0a73b2b57b09413.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m14{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m18{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);}
.ma{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);}
.mf{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);}
.m3{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);}
.m1c{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);}
.m25{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);}
.m15{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);}
.m23{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1a{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);}
.m27{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);}
.m24{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);}
.m8{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);}
.m12{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.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);}
.m22{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);}
.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);}
.m17{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);}
.mb{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);}
.m10{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);}
.m1d{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);}
.m26{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);}
.m5{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);}
.m16{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);}
.m11{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);}
.m29{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);}
.m1{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);}
.m20{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);}
.me{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);}
.m1b{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);}
.m19{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.md{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);}
.m28{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);}
.m6{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);}
.m7{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);}
.m4{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);}
.m9{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:-22.854000px;}
.v13{vertical-align:-21.696000px;}
.v6{vertical-align:-8.964000px;}
.v9{vertical-align:-6.342000px;}
.v16{vertical-align:-1.494000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:1.494000px;}
.vb{vertical-align:3.348000px;}
.vf{vertical-align:6.024000px;}
.v7{vertical-align:8.964000px;}
.v11{vertical-align:14.838000px;}
.va{vertical-align:17.934000px;}
.ve{vertical-align:20.610000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:26.304000px;}
.v5{vertical-align:27.402000px;}
.v14{vertical-align:31.386000px;}
.vc{vertical-align:32.502000px;}
.v10{vertical-align:35.472000px;}
.v12{vertical-align:36.528000px;}
.v8{vertical-align:44.832000px;}
.v3{vertical-align:47.490000px;}
.vd{vertical-align:65.442000px;}
.lse{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000209px;}
.ls23{letter-spacing:0.000251px;}
.ls30{letter-spacing:0.000296px;}
.ls5{letter-spacing:0.000352px;}
.ls22{letter-spacing:0.000539px;}
.lsb{letter-spacing:0.000591px;}
.ls17{letter-spacing:0.000838px;}
.lsa{letter-spacing:0.001064px;}
.ls66{letter-spacing:0.001641px;}
.ls3e{letter-spacing:0.001697px;}
.ls21{letter-spacing:0.001868px;}
.ls25{letter-spacing:0.002085px;}
.ls1{letter-spacing:0.002272px;}
.ls1c{letter-spacing:0.002623px;}
.ls33{letter-spacing:0.002944px;}
.ls24{letter-spacing:0.003056px;}
.ls3d{letter-spacing:0.003176px;}
.ls16{letter-spacing:0.003182px;}
.ls47{letter-spacing:0.003684px;}
.ls51{letter-spacing:0.004080px;}
.ls28{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.005783px;}
.ls2d{letter-spacing:0.006539px;}
.ls12{letter-spacing:1.661141px;}
.ls3c{letter-spacing:2.144085px;}
.ls1a{letter-spacing:2.983906px;}
.ls45{letter-spacing:2.988539px;}
.ls7{letter-spacing:2.989628px;}
.ls34{letter-spacing:2.989831px;}
.ls1f{letter-spacing:2.989906px;}
.ls14{letter-spacing:2.991908px;}
.ls8{letter-spacing:2.992192px;}
.ls6{letter-spacing:2.993545px;}
.ls41{letter-spacing:2.994539px;}
.ls2a{letter-spacing:3.441475px;}
.ls3b{letter-spacing:4.691717px;}
.ls3a{letter-spacing:6.433749px;}
.ls2e{letter-spacing:8.297911px;}
.ls43{letter-spacing:13.296352px;}
.ls40{letter-spacing:13.298272px;}
.ls62{letter-spacing:15.355467px;}
.ls64{letter-spacing:15.355655px;}
.ls65{letter-spacing:15.361467px;}
.ls61{letter-spacing:15.361655px;}
.ls57{letter-spacing:15.362416px;}
.ls54{letter-spacing:15.363458px;}
.ls18{letter-spacing:15.937906px;}
.ls3f{letter-spacing:16.290539px;}
.ls50{letter-spacing:16.598944px;}
.ls36{letter-spacing:16.601447px;}
.ls32{letter-spacing:16.602352px;}
.ls39{letter-spacing:16.604272px;}
.ls0{letter-spacing:16.604675px;}
.ls1d{letter-spacing:16.604944px;}
.ls15{letter-spacing:16.608352px;}
.ls5e{letter-spacing:16.620352px;}
.ls5f{letter-spacing:16.624775px;}
.ls4{letter-spacing:16.650352px;}
.ls5b{letter-spacing:16.668352px;}
.ls5c{letter-spacing:16.672775px;}
.ls49{letter-spacing:16.711555px;}
.ls1b{letter-spacing:17.134636px;}
.ls42{letter-spacing:17.987717px;}
.ls60{letter-spacing:18.160036px;}
.ls63{letter-spacing:18.166036px;}
.ls2{letter-spacing:18.305141px;}
.ls56{letter-spacing:18.447692px;}
.ls9{letter-spacing:18.452416px;}
.ls55{letter-spacing:18.453692px;}
.ls4f{letter-spacing:18.926675px;}
.ls4e{letter-spacing:18.926944px;}
.ls38{letter-spacing:19.594883px;}
.ls5d{letter-spacing:19.776785px;}
.ls3{letter-spacing:19.800785px;}
.ls5a{letter-spacing:19.824785px;}
.ls52{letter-spacing:19.904316px;}
.ls13{letter-spacing:19.904675px;}
.ls11{letter-spacing:19.906491px;}
.ls4d{letter-spacing:20.000944px;}
.ls35{letter-spacing:20.049475px;}
.ls37{letter-spacing:21.293717px;}
.ls10{letter-spacing:21.563141px;}
.lsd{letter-spacing:23.473655px;}
.ls2c{letter-spacing:24.059447px;}
.ls31{letter-spacing:24.904999px;}
.ls59{letter-spacing:24.967738px;}
.ls27{letter-spacing:25.716352px;}
.lsf{letter-spacing:26.209695px;}
.lsc{letter-spacing:26.284036px;}
.ls4a{letter-spacing:26.419555px;}
.ls4c{letter-spacing:26.420675px;}
.ls4b{letter-spacing:26.420944px;}
.ls26{letter-spacing:26.540316px;}
.ls2f{letter-spacing:27.052883px;}
.ls29{letter-spacing:28.205911px;}
.ls53{letter-spacing:28.900020px;}
.ls58{letter-spacing:29.767738px;}
.ls46{letter-spacing:31.377684px;}
.ls48{letter-spacing:31.383684px;}
.ls2b{letter-spacing:32.363911px;}
.ls1e{letter-spacing:35.244352px;}
.ls19{letter-spacing:49.200352px;}
.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;}
}
.wsed{word-spacing:-71.731020px;}
.ws0{word-spacing:-64.557900px;}
.ws3{word-spacing:-59.775840px;}
.ws20{word-spacing:-53.798280px;}
.ws48{word-spacing:-47.820660px;}
.wse9{word-spacing:-45.608966px;}
.wsf5{word-spacing:-45.070983px;}
.wse{word-spacing:-44.951432px;}
.ws65{word-spacing:-44.831888px;}
.wsc{word-spacing:-44.712328px;}
.ws137{word-spacing:-44.533001px;}
.ws13e{word-spacing:-44.473225px;}
.ws130{word-spacing:-44.234122px;}
.ws11b{word-spacing:-43.995018px;}
.wsb{word-spacing:-43.875467px;}
.ws15{word-spacing:-43.129231px;}
.ws10c{word-spacing:-43.098381px;}
.wsa{word-spacing:-42.679950px;}
.ws90{word-spacing:-42.620174px;}
.wsdf{word-spacing:-42.585384px;}
.wsdd{word-spacing:-42.584942px;}
.ws10f{word-spacing:-42.560398px;}
.ws11e{word-spacing:-42.500622px;}
.wsf2{word-spacing:-42.321295px;}
.wsf{word-spacing:-42.261519px;}
.wse5{word-spacing:-42.082191px;}
.ws138{word-spacing:-41.962640px;}
.ws5f{word-spacing:-41.484433px;}
.ws136{word-spacing:-41.305105px;}
.ws6{word-spacing:-41.185554px;}
.ws12e{word-spacing:-41.125778px;}
.ws2f{word-spacing:-41.006226px;}
.ws9{word-spacing:-40.826899px;}
.ws108{word-spacing:-40.647571px;}
.ws116{word-spacing:-40.528020px;}
.wsec{word-spacing:-40.468244px;}
.ws37{word-spacing:-40.408468px;}
.ws38{word-spacing:-40.348692px;}
.ws16{word-spacing:-40.288916px;}
.ws8b{word-spacing:-40.229140px;}
.ws18{word-spacing:-40.169364px;}
.wse0{word-spacing:-40.133517px;}
.ws32{word-spacing:-40.109589px;}
.ws5{word-spacing:-40.049813px;}
.wsda{word-spacing:-40.025920px;}
.ws17{word-spacing:-39.990037px;}
.ws8{word-spacing:-39.930261px;}
.ws77{word-spacing:-39.873028px;}
.ws6c{word-spacing:-39.872627px;}
.ws69{word-spacing:-39.871999px;}
.ws6b{word-spacing:-39.871117px;}
.ws111{word-spacing:-39.870699px;}
.ws2{word-spacing:-39.870485px;}
.ws118{word-spacing:-39.868638px;}
.ws76{word-spacing:-39.868488px;}
.ws7d{word-spacing:-39.866562px;}
.ws134{word-spacing:-39.866286px;}
.ws11{word-spacing:-39.810709px;}
.ws66{word-spacing:-39.750934px;}
.ws31{word-spacing:-39.691158px;}
.ws2c{word-spacing:-39.631382px;}
.wsd{word-spacing:-39.571606px;}
.ws39{word-spacing:-39.511830px;}
.ws2b{word-spacing:-39.452054px;}
.wsfe{word-spacing:-39.392279px;}
.ws11c{word-spacing:-39.332503px;}
.wseb{word-spacing:-39.272727px;}
.ws2e{word-spacing:-39.212951px;}
.ws30{word-spacing:-39.093399px;}
.ws97{word-spacing:-38.914072px;}
.wsf4{word-spacing:-38.854296px;}
.ws119{word-spacing:-38.794520px;}
.ws126{word-spacing:-38.690285px;}
.ws7a{word-spacing:-38.674968px;}
.ws91{word-spacing:-38.555417px;}
.ws92{word-spacing:-38.495641px;}
.ws110{word-spacing:-38.435865px;}
.ws107{word-spacing:-38.376089px;}
.ws100{word-spacing:-38.316313px;}
.ws93{word-spacing:-38.256538px;}
.ws135{word-spacing:-38.196762px;}
.ws11a{word-spacing:-38.136986px;}
.wsef{word-spacing:-38.077210px;}
.ws10e{word-spacing:-38.017434px;}
.ws34{word-spacing:-37.957658px;}
.ws11d{word-spacing:-37.838107px;}
.ws61{word-spacing:-37.778331px;}
.ws60{word-spacing:-37.718555px;}
.ws3c{word-spacing:-37.658779px;}
.ws115{word-spacing:-37.599003px;}
.wsf3{word-spacing:-37.539228px;}
.wsfa{word-spacing:-37.359900px;}
.ws63{word-spacing:-37.300124px;}
.wsea{word-spacing:-37.240348px;}
.ws5c{word-spacing:-37.120797px;}
.ws5e{word-spacing:-37.061021px;}
.ws7{word-spacing:-36.941469px;}
.ws1{word-spacing:-36.881693px;}
.ws5b{word-spacing:-36.821917px;}
.ws62{word-spacing:-36.762142px;}
.ws43{word-spacing:-36.529032px;}
.ws10d{word-spacing:-36.523038px;}
.ws64{word-spacing:-36.403487px;}
.wsff{word-spacing:-36.283935px;}
.ws112{word-spacing:-36.224159px;}
.ws2a{word-spacing:-36.164383px;}
.ws89{word-spacing:-36.044832px;}
.wsa7{word-spacing:-35.940583px;}
.wsa6{word-spacing:-35.937251px;}
.ws7b{word-spacing:-35.925280px;}
.ws1a{word-spacing:-35.865504px;}
.ws75{word-spacing:-35.865480px;}
.ws13f{word-spacing:-35.742877px;}
.ws70{word-spacing:-35.722058px;}
.wsfb{word-spacing:-35.686176px;}
.ws72{word-spacing:-35.682349px;}
.ws73{word-spacing:-35.668260px;}
.ws45{word-spacing:-35.614461px;}
.ws1e{word-spacing:-35.560663px;}
.ws1f{word-spacing:-35.532969px;}
.wse3{word-spacing:-35.453067px;}
.ws1c{word-spacing:-35.399268px;}
.ws78{word-spacing:-35.387297px;}
.wsaa{word-spacing:-35.348369px;}
.ws1d{word-spacing:-35.345470px;}
.wsa4{word-spacing:-35.291672px;}
.ws68{word-spacing:-35.267746px;}
.wsa5{word-spacing:-35.260036px;}
.ws22{word-spacing:-35.237873px;}
.ws23{word-spacing:-35.208177px;}
.ws67{word-spacing:-35.207970px;}
.wsd5{word-spacing:-35.184075px;}
.ws129{word-spacing:-35.088418px;}
.ws106{word-spacing:-34.909091px;}
.wsf9{word-spacing:-34.789539px;}
.wse6{word-spacing:-34.550436px;}
.ws8f{word-spacing:-34.490660px;}
.ws10{word-spacing:-34.430884px;}
.ws21{word-spacing:-34.429615px;}
.wsa0{word-spacing:-34.429376px;}
.ws35{word-spacing:-34.371108px;}
.ws19{word-spacing:-34.311332px;}
.wsd4{word-spacing:-34.251556px;}
.ws11f{word-spacing:-34.132005px;}
.ws8a{word-spacing:-34.072229px;}
.ws3a{word-spacing:-34.012453px;}
.wse4{word-spacing:-33.952677px;}
.wsd6{word-spacing:-33.946715px;}
.ws103{word-spacing:-33.773350px;}
.ws41{word-spacing:-33.677723px;}
.ws36{word-spacing:-33.594022px;}
.ws105{word-spacing:-33.414695px;}
.ws8d{word-spacing:-33.355949px;}
.wsdb{word-spacing:-33.354919px;}
.ws12b{word-spacing:-33.291157px;}
.ws7f{word-spacing:-33.239196px;}
.ws3e{word-spacing:-33.235367px;}
.ws6f{word-spacing:-33.234708px;}
.wse8{word-spacing:-33.115815px;}
.ws40{word-spacing:-33.085942px;}
.ws71{word-spacing:-33.041075px;}
.ws12f{word-spacing:-33.024150px;}
.ws79{word-spacing:-32.697384px;}
.ws3b{word-spacing:-32.458281px;}
.ws113{word-spacing:-32.338729px;}
.wsf6{word-spacing:-32.159402px;}
.wsf1{word-spacing:-32.099626px;}
.wsf0{word-spacing:-31.920299px;}
.ws42{word-spacing:-31.796694px;}
.ws104{word-spacing:-31.706327px;}
.ws44{word-spacing:-31.690841px;}
.ws123{word-spacing:-31.621419px;}
.wsee{word-spacing:-31.561644px;}
.wsd1{word-spacing:-31.442092px;}
.ws128{word-spacing:-31.083437px;}
.wsa1{word-spacing:-30.987809px;}
.ws10b{word-spacing:-30.963885px;}
.ws51{word-spacing:-30.939967px;}
.ws24{word-spacing:-30.934011px;}
.ws26{word-spacing:-30.924582px;}
.ws4b{word-spacing:-30.892146px;}
.ws46{word-spacing:-30.880213px;}
.ws5d{word-spacing:-30.724782px;}
.ws2d{word-spacing:-30.605230px;}
.ws114{word-spacing:-30.366127px;}
.wsf8{word-spacing:-30.127023px;}
.wsf7{word-spacing:-30.067248px;}
.ws27{word-spacing:-30.029880px;}
.ws122{word-spacing:-29.947696px;}
.ws3d{word-spacing:-29.883444px;}
.ws74{word-spacing:-29.804247px;}
.ws124{word-spacing:-29.529265px;}
.wsfc{word-spacing:-29.409713px;}
.wsfd{word-spacing:-29.349937px;}
.ws1b{word-spacing:-29.212466px;}
.wse1{word-spacing:-29.192168px;}
.ws12d{word-spacing:-28.931507px;}
.ws12a{word-spacing:-28.871731px;}
.wsa3{word-spacing:-28.620685px;}
.ws88{word-spacing:-28.397736px;}
.ws85{word-spacing:-28.396788px;}
.ws84{word-spacing:-28.395420px;}
.ws86{word-spacing:-28.394472px;}
.ws83{word-spacing:-28.394052px;}
.ws82{word-spacing:-28.393524px;}
.ws87{word-spacing:-28.393104px;}
.ws81{word-spacing:-28.390788px;}
.ws9d{word-spacing:-28.136500px;}
.ws9b{word-spacing:-27.759912px;}
.ws99{word-spacing:-27.706114px;}
.ws28{word-spacing:-27.490921px;}
.ws127{word-spacing:-27.138231px;}
.ws120{word-spacing:-26.958904px;}
.ws33{word-spacing:-26.839352px;}
.ws121{word-spacing:-24.866749px;}
.ws9f{word-spacing:-24.370621px;}
.ws125{word-spacing:-24.268991px;}
.ws12c{word-spacing:-23.970112px;}
.ws131{word-spacing:-23.731008px;}
.ws133{word-spacing:-23.671233px;}
.wsd2{word-spacing:-22.250725px;}
.wsd3{word-spacing:-22.248532px;}
.ws132{word-spacing:-21.041096px;}
.wsdc{word-spacing:-18.954548px;}
.ws3f{word-spacing:-18.948548px;}
.ws117{word-spacing:-18.769614px;}
.ws98{word-spacing:-17.550548px;}
.wsd7{word-spacing:-17.518314px;}
.wsd9{word-spacing:-17.517354px;}
.ws94{word-spacing:-16.908548px;}
.wse7{word-spacing:-16.617684px;}
.wsd0{word-spacing:-16.139477px;}
.ws4{word-spacing:-3.365424px;}
.ws13{word-spacing:-0.059776px;}
.ws25{word-spacing:-0.053798px;}
.ws4d{word-spacing:-0.047821px;}
.ws6e{word-spacing:-0.041843px;}
.ws29{word-spacing:0.000000px;}
.ws101{word-spacing:11.716065px;}
.ws80{word-spacing:13.210461px;}
.ws9c{word-spacing:15.278712px;}
.ws109{word-spacing:15.481943px;}
.ws12{word-spacing:16.498132px;}
.ws14{word-spacing:16.557908px;}
.ws8c{word-spacing:16.617684px;}
.wsde{word-spacing:17.095890px;}
.wsc7{word-spacing:17.914827px;}
.wsc2{word-spacing:17.928543px;}
.wsba{word-spacing:17.935059px;}
.wsd8{word-spacing:18.392330px;}
.wse2{word-spacing:18.398330px;}
.ws96{word-spacing:18.829390px;}
.ws6d{word-spacing:19.516881px;}
.ws95{word-spacing:19.905355px;}
.ws6a{word-spacing:22.822881px;}
.ws7c{word-spacing:22.854297px;}
.ws7e{word-spacing:22.855773px;}
.wsa2{word-spacing:23.348454px;}
.ws57{word-spacing:23.911116px;}
.ws52{word-spacing:23.958937px;}
.wsc9{word-spacing:26.058140px;}
.ws8e{word-spacing:26.301370px;}
.ws9e{word-spacing:28.136500px;}
.ws9a{word-spacing:28.835878px;}
.ws55{word-spacing:29.506133px;}
.ws59{word-spacing:30.510367px;}
.ws56{word-spacing:41.461298px;}
.ws4c{word-spacing:44.952206px;}
.ws10a{word-spacing:49.853051px;}
.ws50{word-spacing:55.568393px;}
.wsc1{word-spacing:64.224543px;}
.wsb8{word-spacing:64.225899px;}
.ws13b{word-spacing:64.880726px;}
.wsad{word-spacing:70.925671px;}
.ws13c{word-spacing:70.959931px;}
.wsab{word-spacing:71.659309px;}
.ws13d{word-spacing:72.089695px;}
.wsb4{word-spacing:75.737563px;}
.wsbf{word-spacing:75.738543px;}
.wsb1{word-spacing:77.625241px;}
.ws54{word-spacing:78.066595px;}
.wscd{word-spacing:78.727172px;}
.wsb6{word-spacing:80.072884px;}
.wsc0{word-spacing:80.118543px;}
.wsc3{word-spacing:84.264543px;}
.ws139{word-spacing:87.744995px;}
.wscf{word-spacing:93.657016px;}
.wsbc{word-spacing:94.270578px;}
.wsa8{word-spacing:95.061561px;}
.ws13a{word-spacing:99.473020px;}
.wsc4{word-spacing:100.243796px;}
.wscb{word-spacing:104.037354px;}
.ws5a{word-spacing:108.887643px;}
.ws47{word-spacing:110.662470px;}
.ws4e{word-spacing:123.023892px;}
.wsc5{word-spacing:125.820543px;}
.wsc6{word-spacing:125.827960px;}
.wsbd{word-spacing:125.904543px;}
.ws102{word-spacing:127.262763px;}
.wsbe{word-spacing:132.200153px;}
.wsa9{word-spacing:142.277610px;}
.ws58{word-spacing:148.387508px;}
.ws53{word-spacing:196.594123px;}
.ws4f{word-spacing:204.897799px;}
.wsb9{word-spacing:221.393638px;}
.wsce{word-spacing:224.033882px;}
.wsaf{word-spacing:241.193451px;}
.wsac{word-spacing:267.635451px;}
.wsb7{word-spacing:267.689638px;}
.wsc8{word-spacing:270.242936px;}
.wsae{word-spacing:277.667451px;}
.wsb5{word-spacing:283.583638px;}
.ws49{word-spacing:311.144406px;}
.wsb2{word-spacing:316.540269px;}
.wscc{word-spacing:322.910936px;}
.wsb3{word-spacing:331.037638px;}
.wsca{word-spacing:348.224936px;}
.wsb0{word-spacing:355.648269px;}
.wsbb{word-spacing:361.757638px;}
.ws4a{word-spacing:461.491311px;}
._1d{margin-left:-32.275920px;}
._1c{margin-left:-25.763461px;}
._1{margin-left:-9.709508px;}
._13{margin-left:-8.249066px;}
._3{margin-left:-6.507436px;}
._4{margin-left:-4.961395px;}
._0{margin-left:-3.202072px;}
._6{margin-left:-1.673724px;}
._5{width:1.673724px;}
._2{width:3.202072px;}
._3f{width:4.909748px;}
._30{width:14.988348px;}
._9{width:16.139477px;}
._8{width:17.394769px;}
._20{width:18.564463px;}
._3b{width:20.861768px;}
._14{width:22.332248px;}
._12{width:23.579401px;}
._c{width:24.585814px;}
._7{width:26.485416px;}
._1e{width:27.546847px;}
._11{width:28.606804px;}
._1f{width:29.892396px;}
._10{width:31.262764px;}
._17{width:32.334071px;}
._d{width:33.677723px;}
._18{width:35.865504px;}
._1b{width:37.718555px;}
._b{width:39.272727px;}
._1a{width:41.125778px;}
._39{width:42.468060px;}
._a{width:43.810972px;}
._38{width:45.354644px;}
._e{width:48.902637px;}
._32{width:50.274492px;}
._31{width:52.124532px;}
._3e{width:53.439601px;}
._3a{width:54.933997px;}
._3c{width:56.727272px;}
._f{width:59.775840px;}
._3d{width:64.199252px;}
._19{width:71.731020px;}
._25{width:74.349223px;}
._40{width:75.400136px;}
._26{width:80.912613px;}
._34{width:84.343710px;}
._23{width:90.112119px;}
._2d{width:99.532795px;}
._28{width:102.001539px;}
._29{width:110.681249px;}
._2a{width:117.764435px;}
._24{width:122.337289px;}
._2c{width:129.653855px;}
._36{width:132.104606px;}
._41{width:137.831193px;}
._2b{width:149.989605px;}
._27{width:155.620511px;}
._2f{width:157.419744px;}
._2e{width:174.073321px;}
._22{width:177.637728px;}
._33{width:180.881692px;}
._35{width:192.179326px;}
._16{width:228.375384px;}
._15{width:292.229060px;}
._37{width:294.575340px;}
._21{width:311.908554px;}
.fc5{color:rgb(171,33,255);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887920px;}
.fs4{font-size:35.865480px;}
.fs2{font-size:41.843100px;}
.fs6{font-size:47.820660px;}
.fs5{font-size:53.798280px;}
.fs1{font-size:59.775840px;}
.fs3{font-size:71.731020px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y66{bottom:63.168000px;}
.y2c{bottom:78.339000px;}
.y2b{bottom:93.283500px;}
.y65{bottom:108.000000px;}
.y2a{bottom:108.226500px;}
.yf8{bottom:113.713500px;}
.y75{bottom:116.967000px;}
.y64{bottom:122.944500px;}
.yf7{bottom:124.159500px;}
.y124{bottom:124.363500px;}
.y63{bottom:128.658000px;}
.y148{bottom:129.873000px;}
.y257{bottom:136.987500px;}
.y69{bottom:138.652500px;}
.y62{bottom:139.104000px;}
.y175{bottom:139.201500px;}
.y1d3{bottom:140.727000px;}
.y68{bottom:141.379500px;}
.yf6{bottom:144.817500px;}
.y147{bottom:146.122500px;}
.y123{bottom:148.947000px;}
.y256{bottom:153.351000px;}
.y61{bottom:154.047000px;}
.y174{bottom:154.146000px;}
.yf5{bottom:155.262000px;}
.y146{bottom:156.568500px;}
.y1ff{bottom:157.090500px;}
.y60{bottom:159.760500px;}
.y122{bottom:165.310500px;}
.y173{bottom:169.090500px;}
.y255{bottom:169.714500px;}
.y5f{bottom:170.206500px;}
.y1d2{bottom:170.703000px;}
.y22a{bottom:171.204000px;}
.y145{bottom:171.511500px;}
.y1a4{bottom:172.357500px;}
.y1fe{bottom:173.454000px;}
.y29{bottom:175.024500px;}
.y144{bottom:177.225000px;}
.y121{bottom:181.674000px;}
.y172{bottom:184.033500px;}
.y5e{bottom:185.151000px;}
.y1d1{bottom:187.066500px;}
.y229{bottom:187.567500px;}
.y1a3{bottom:188.721000px;}
.y171{bottom:189.747000px;}
.y28{bottom:189.969000px;}
.y5d{bottom:190.864500px;}
.y143{bottom:193.384500px;}
.y27{bottom:195.682500px;}
.yf4{bottom:198.678000px;}
.y181{bottom:200.094000px;}
.y5c{bottom:201.310500px;}
.y1fd{bottom:203.019000px;}
.y1d0{bottom:203.430000px;}
.yf3{bottom:203.830500px;}
.y1a2{bottom:205.086000px;}
.y180{bottom:205.807500px;}
.y26{bottom:206.128500px;}
.y120{bottom:206.256000px;}
.y254{bottom:210.189000px;}
.y5b{bottom:216.253500px;}
.y228{bottom:218.043000px;}
.y142{bottom:218.775000px;}
.y1fc{bottom:219.382500px;}
.y25{bottom:221.071500px;}
.y5a{bottom:221.967000px;}
.y11f{bottom:222.619500px;}
.y141{bottom:224.488500px;}
.y253{bottom:225.133500px;}
.y24{bottom:226.785000px;}
.yf2{bottom:232.239000px;}
.y59{bottom:232.413000px;}
.y1a1{bottom:232.530000px;}
.y1cf{bottom:233.406000px;}
.y227{bottom:234.406500px;}
.y140{bottom:234.934500px;}
.y1fb{bottom:235.746000px;}
.y23{bottom:237.231000px;}
.y11e{bottom:238.984500px;}
.y252{bottom:240.078000px;}
.y17f{bottom:246.076500px;}
.y58{bottom:247.357500px;}
.y13f{bottom:249.877500px;}
.y226{bottom:250.770000px;}
.y22{bottom:252.175500px;}
.y57{bottom:253.071000px;}
.y251{bottom:255.021000px;}
.y11d{bottom:255.348000px;}
.y13e{bottom:255.591000px;}
.yf1{bottom:256.821000px;}
.y21{bottom:257.889000px;}
.y17d{bottom:262.440000px;}
.y1ce{bottom:263.382000px;}
.y1fa{bottom:265.309500px;}
.y13d{bottom:266.037000px;}
.y17e{bottom:267.862500px;}
.y250{bottom:269.965500px;}
.y11c{bottom:271.711500px;}
.y20{bottom:274.137000px;}
.y56{bottom:276.291000px;}
.y1a0{bottom:276.919500px;}
.y1cd{bottom:279.745500px;}
.y13c{bottom:280.981500px;}
.y225{bottom:281.247000px;}
.y1f9{bottom:281.673000px;}
.y24f{bottom:284.908500px;}
.y13b{bottom:286.695000px;}
.yf0{bottom:287.089500px;}
.y1f{bottom:290.296500px;}
.y6a{bottom:292.038000px;}
.y19f{bottom:293.283000px;}
.y1cc{bottom:296.109000px;}
.y13a{bottom:297.141000px;}
.y224{bottom:297.610500px;}
.y1f8{bottom:298.036500px;}
.y24e{bottom:299.853000px;}
.y8e{bottom:300.909000px;}
.y1e{bottom:306.720000px;}
.y11b{bottom:307.923000px;}
.y6c{bottom:308.010000px;}
.y55{bottom:308.313000px;}
.y6b{bottom:310.341000px;}
.y139{bottom:312.084000px;}
.y1cb{bottom:312.474000px;}
.y223{bottom:313.974000px;}
.y1f7{bottom:314.400000px;}
.y17c{bottom:315.751500px;}
.y138{bottom:317.797500px;}
.y19e{bottom:317.865000px;}
.yef{bottom:322.131000px;}
.y24d{bottom:322.605000px;}
.y11a{bottom:323.913000px;}
.y1ca{bottom:328.837500px;}
.y54{bottom:330.642000px;}
.y137{bottom:334.056000px;}
.y19d{bottom:334.230000px;}
.y119{bottom:339.903000px;}
.y1f6{bottom:343.963500px;}
.y222{bottom:344.449500px;}
.y136{bottom:344.502000px;}
.y1c9{bottom:345.201000px;}
.y53{bottom:347.005500px;}
.y19c{bottom:350.593500px;}
.y24c{bottom:354.324000px;}
.y118{bottom:355.893000px;}
.y135{bottom:359.446500px;}
.y1f5{bottom:360.327000px;}
.y221{bottom:360.814500px;}
.y134{bottom:365.160000px;}
.yee{bottom:365.482500px;}
.y19b{bottom:366.957000px;}
.y52{bottom:369.333000px;}
.y117{bottom:371.884500px;}
.y1c8{bottom:375.177000px;}
.y220{bottom:377.178000px;}
.y6d{bottom:377.793000px;}
.y170{bottom:379.768500px;}
.y133{bottom:381.319500px;}
.yed{bottom:381.846000px;}
.y19a{bottom:383.320500px;}
.y8f{bottom:384.231000px;}
.y116{bottom:387.874500px;}
.y24b{bottom:388.428000px;}
.y1f4{bottom:389.892000px;}
.y1c7{bottom:391.540500px;}
.y51{bottom:391.662000px;}
.y21f{bottom:393.541500px;}
.y1d{bottom:395.776500px;}
.y16e{bottom:396.132000px;}
.y6e{bottom:397.369500px;}
.yec{bottom:398.209500px;}
.y199{bottom:399.684000px;}
.y16f{bottom:401.554500px;}
.y115{bottom:403.864500px;}
.y24a{bottom:404.793000px;}
.y198{bottom:405.106500px;}
.y1f3{bottom:406.255500px;}
.y1c6{bottom:407.904000px;}
.y4f{bottom:408.025500px;}
.y1c{bottom:412.140000px;}
.y50{bottom:413.448000px;}
.yeb{bottom:414.574500px;}
.y114{bottom:419.854500px;}
.y249{bottom:421.156500px;}
.y1f2{bottom:422.619000px;}
.y16d{bottom:422.725500px;}
.y21e{bottom:424.017000px;}
.y1b{bottom:428.503500px;}
.y4e{bottom:430.353000px;}
.y67{bottom:430.588500px;}
.yea{bottom:430.938000px;}
.y197{bottom:435.348000px;}
.y113{bottom:435.471000px;}
.y248{bottom:437.520000px;}
.y1c5{bottom:437.880000px;}
.y16b{bottom:439.090500px;}
.y21d{bottom:440.380500px;}
.y16c{bottom:444.513000px;}
.y1a{bottom:444.867000px;}
.ye9{bottom:447.301500px;}
.y1f1{bottom:452.182500px;}
.y4d{bottom:452.682000px;}
.y247{bottom:453.883500px;}
.y1c4{bottom:454.243500px;}
.y196{bottom:456.270000px;}
.y21c{bottom:456.744000px;}
.y90{bottom:458.680500px;}
.yaa{bottom:458.716500px;}
.y19{bottom:461.230500px;}
.y82{bottom:465.907500px;}
.ybf{bottom:466.470000px;}
.y1f0{bottom:468.546000px;}
.y4c{bottom:469.045500px;}
.yc0{bottom:469.764000px;}
.y246{bottom:470.247000px;}
.y1c3{bottom:470.607000px;}
.y91{bottom:470.983500px;}
.y83{bottom:471.586500px;}
.y112{bottom:471.682500px;}
.ye8{bottom:471.883500px;}
.y21b{bottom:473.107500px;}
.y76{bottom:474.790500px;}
.y9d{bottom:475.825500px;}
.yb5{bottom:475.998000px;}
.y18{bottom:477.594000px;}
.yac{bottom:478.963500px;}
.y9e{bottom:481.987500px;}
.y1ef{bottom:484.909500px;}
.y78{bottom:485.652000px;}
.y245{bottom:486.610500px;}
.y84{bottom:486.763500px;}
.y1c2{bottom:486.970500px;}
.y77{bottom:487.965000px;}
.ye7{bottom:488.247000px;}
.y21a{bottom:489.472500px;}
.yab{bottom:493.860000px;}
.y17{bottom:493.957500px;}
.y111{bottom:496.266000px;}
.y195{bottom:500.658000px;}
.y4b{bottom:501.067500px;}
.y1ee{bottom:501.273000px;}
.y1c1{bottom:503.334000px;}
.ye6{bottom:504.610500px;}
.y219{bottom:505.836000px;}
.y92{bottom:509.862000px;}
.y16{bottom:510.322500px;}
.y244{bottom:511.194000px;}
.yc1{bottom:515.325000px;}
.y194{bottom:517.023000px;}
.y4a{bottom:517.431000px;}
.y1c0{bottom:519.697500px;}
.ye4{bottom:520.975500px;}
.y218{bottom:522.199500px;}
.y6f{bottom:524.196000px;}
.ye5{bottom:526.398000px;}
.y15{bottom:526.686000px;}
.y9f{bottom:527.142000px;}
.y243{bottom:527.557500px;}
.y1ed{bottom:530.836500px;}
.y110{bottom:532.479000px;}
.y193{bottom:533.386500px;}
.y49{bottom:533.794500px;}
.y1bf{bottom:536.061000px;}
.y48{bottom:539.218500px;}
.y14{bottom:543.049500px;}
.y242{bottom:543.921000px;}
.y1ec{bottom:547.200000px;}
.y10f{bottom:548.842500px;}
.y241{bottom:549.343500px;}
.y192{bottom:549.750000px;}
.y1be{bottom:552.424500px;}
.y217{bottom:552.675000px;}
.ye3{bottom:556.017000px;}
.y13{bottom:559.413000px;}
.y16a{bottom:563.028000px;}
.y47{bottom:563.530500px;}
.y1eb{bottom:563.565000px;}
.y10e{bottom:565.206000px;}
.y191{bottom:566.113500px;}
.y1bd{bottom:568.788000px;}
.y216{bottom:569.038500px;}
.y169{bottom:570.126000px;}
.y12{bottom:575.776500px;}
.y240{bottom:578.418000px;}
.y1ea{bottom:579.928500px;}
.y190{bottom:582.477000px;}
.y1bc{bottom:585.153000px;}
.y215{bottom:585.402000px;}
.y11{bottom:592.140000px;}
.y168{bottom:592.915500px;}
.y10d{bottom:593.091000px;}
.ye2{bottom:599.368500px;}
.y46{bottom:599.695500px;}
.y214{bottom:601.765500px;}
.y167{bottom:608.233500px;}
.y10{bottom:608.503500px;}
.y1e9{bottom:609.492000px;}
.y1bb{bottom:615.129000px;}
.y45{bottom:616.059000px;}
.y10c{bottom:617.266500px;}
.y18f{bottom:618.141000px;}
.y10b{bottom:620.976000px;}
.ye1{bottom:622.944000px;}
.y166{bottom:623.551500px;}
.yf{bottom:624.867000px;}
.y1e8{bottom:625.855500px;}
.y23f{bottom:628.627500px;}
.y1ba{bottom:631.492500px;}
.y213{bottom:632.242500px;}
.y44{bottom:632.422500px;}
.y43{bottom:637.845000px;}
.y165{bottom:638.869500px;}
.ye0{bottom:639.307500px;}
.ye{bottom:641.230500px;}
.y1e7{bottom:642.219000px;}
.y23e{bottom:644.991000px;}
.y1b9{bottom:647.856000px;}
.y212{bottom:648.606000px;}
.y10a{bottom:648.861000px;}
.y164{bottom:654.186000px;}
.y86{bottom:654.447000px;}
.yc3{bottom:655.356000px;}
.y7a{bottom:655.828500px;}
.y79{bottom:656.443500px;}
.ya2{bottom:656.671500px;}
.ya0{bottom:656.748000px;}
.ya1{bottom:658.942500px;}
.yaf{bottom:658.972500px;}
.yb6{bottom:659.952000px;}
.yc2{bottom:660.891000px;}
.y93{bottom:660.957000px;}
.y163{bottom:661.285500px;}
.y23d{bottom:661.354500px;}
.y42{bottom:662.158500px;}
.y18e{bottom:662.530500px;}
.ydf{bottom:662.883000px;}
.y85{bottom:663.204000px;}
.yae{bottom:663.616500px;}
.y1b8{bottom:664.219500px;}
.y211{bottom:664.969500px;}
.y109{bottom:665.224500px;}
.y17b{bottom:665.353500px;}
.yad{bottom:668.220000px;}
.y95{bottom:671.734500px;}
.y1e6{bottom:671.782500px;}
.yc4{bottom:674.197500px;}
.y23c{bottom:677.718000px;}
.y18d{bottom:678.894000px;}
.yde{bottom:679.246500px;}
.yb7{bottom:679.864500px;}
.yb8{bottom:680.449500px;}
.y210{bottom:681.333000px;}
.y94{bottom:681.340500px;}
.y162{bottom:684.075000px;}
.y7b{bottom:688.107000px;}
.y1e5{bottom:688.146000px;}
.y17a{bottom:689.935500px;}
.yd{bottom:693.936000px;}
.y1b7{bottom:694.195500px;}
.y18c{bottom:695.257500px;}
.y20f{bottom:697.696500px;}
.y41{bottom:698.323500px;}
.y161{bottom:699.391500px;}
.y108{bottom:701.436000px;}
.ydd{bottom:702.822000px;}
.y1e4{bottom:704.509500px;}
.y70{bottom:705.955500px;}
.y179{bottom:706.300500px;}
.y23b{bottom:706.819500px;}
.y1b6{bottom:710.559000px;}
.y18b{bottom:711.621000px;}
.y20e{bottom:714.060000px;}
.y40{bottom:714.687000px;}
.y160{bottom:714.709500px;}
.y71{bottom:715.747500px;}
.yc{bottom:718.399500px;}
.ydc{bottom:719.185500px;}
.y177{bottom:722.664000px;}
.y23a{bottom:723.184500px;}
.y107{bottom:726.019500px;}
.y1b5{bottom:726.922500px;}
.y18a{bottom:727.984500px;}
.y178{bottom:728.086500px;}
.y15f{bottom:730.027500px;}
.y3f{bottom:731.050500px;}
.y1e3{bottom:734.074500px;}
.y239{bottom:739.548000px;}
.y1b4{bottom:743.286000px;}
.ydb{bottom:743.769000px;}
.y20d{bottom:744.537000px;}
.yb{bottom:745.026000px;}
.y15e{bottom:745.345500px;}
.y3e{bottom:747.414000px;}
.y1e2{bottom:750.438000px;}
.y15d{bottom:752.443500px;}
.y189{bottom:752.568000px;}
.y106{bottom:758.143500px;}
.y1b3{bottom:759.649500px;}
.y20c{bottom:760.900500px;}
.ya{bottom:761.389500px;}
.y3d{bottom:763.777500px;}
.y1e1{bottom:766.801500px;}
.y238{bottom:768.649500px;}
.y188{bottom:768.931500px;}
.y15c{bottom:775.233000px;}
.y176{bottom:775.975500px;}
.y20b{bottom:777.264000px;}
.y9{bottom:777.753000px;}
.y3c{bottom:780.141000px;}
.yda{bottom:781.275000px;}
.y15b{bottom:782.331000px;}
.y1e0{bottom:783.165000px;}
.y237{bottom:785.013000px;}
.y132{bottom:785.052000px;}
.y186{bottom:785.295000px;}
.y1b2{bottom:789.625500px;}
.y187{bottom:790.717500px;}
.y20a{bottom:793.627500px;}
.y8{bottom:794.116500px;}
.y3b{bottom:796.504500px;}
.yd8{bottom:797.638500px;}
.y105{bottom:800.293500px;}
.y236{bottom:801.376500px;}
.y130{bottom:801.415500px;}
.y185{bottom:801.658500px;}
.yd9{bottom:803.061000px;}
.y15a{bottom:805.120500px;}
.y1b1{bottom:805.989000px;}
.y131{bottom:806.839500px;}
.y209{bottom:809.991000px;}
.y1df{bottom:812.728500px;}
.y3a{bottom:812.868000px;}
.yd7{bottom:814.002000px;}
.y104{bottom:816.657000px;}
.y235{bottom:817.740000px;}
.y12e{bottom:817.779000px;}
.y184{bottom:818.022000px;}
.y159{bottom:820.438500px;}
.yb9{bottom:822.309000px;}
.y1b0{bottom:822.352500px;}
.yc6{bottom:822.787500px;}
.y12f{bottom:823.203000px;}
.y87{bottom:824.958000px;}
.yb1{bottom:825.274500px;}
.yb0{bottom:825.400500px;}
.y208{bottom:826.354500px;}
.yba{bottom:828.126000px;}
.y96{bottom:828.156000px;}
.ya3{bottom:828.795000px;}
.y7d{bottom:829.053000px;}
.y1de{bottom:829.092000px;}
.y39{bottom:829.231500px;}
.y98{bottom:831.712500px;}
.y103{bottom:833.020500px;}
.y88{bottom:833.977500px;}
.yc5{bottom:835.323000px;}
.y158{bottom:835.756500px;}
.ya5{bottom:836.196000px;}
.ya4{bottom:837.283500px;}
.y97{bottom:837.457500px;}
.yd6{bottom:838.585500px;}
.y1af{bottom:838.716000px;}
.y89{bottom:840.966000px;}
.y7c{bottom:841.623000px;}
.y12d{bottom:842.362500px;}
.y207{bottom:842.718000px;}
.y38{bottom:845.596500px;}
.y234{bottom:846.841500px;}
.y102{bottom:849.385500px;}
.y157{bottom:851.073000px;}
.y183{bottom:853.686000px;}
.yd5{bottom:854.949000px;}
.y1ae{bottom:855.079500px;}
.y7{bottom:856.009500px;}
.yb2{bottom:857.619000px;}
.y156{bottom:858.172500px;}
.y1dd{bottom:858.655500px;}
.y12b{bottom:858.726000px;}
.yc7{bottom:858.988500px;}
.y206{bottom:859.081500px;}
.y233{bottom:863.205000px;}
.y12c{bottom:864.148500px;}
.ya6{bottom:865.827000px;}
.y37{bottom:870.178500px;}
.y72{bottom:870.190500px;}
.yd4{bottom:871.312500px;}
.y1ad{bottom:871.444500px;}
.y6{bottom:872.373000px;}
.y101{bottom:873.967500px;}
.y1dc{bottom:875.019000px;}
.y129{bottom:875.089500px;}
.y205{bottom:875.445000px;}
.y232{bottom:879.568500px;}
.y12a{bottom:880.512000px;}
.y155{bottom:880.962000px;}
.ybb{bottom:885.481500px;}
.y36{bottom:886.542000px;}
.y154{bottom:888.060000px;}
.y5{bottom:888.736500px;}
.y7e{bottom:889.671000px;}
.y127{bottom:891.453000px;}
.y231{bottom:895.932000px;}
.y128{bottom:896.877000px;}
.y100{bottom:898.551000px;}
.y1ac{bottom:901.419000px;}
.y35{bottom:902.905500px;}
.yd3{bottom:904.293000px;}
.y1db{bottom:904.582500px;}
.y4{bottom:905.100000px;}
.y182{bottom:905.191500px;}
.y204{bottom:905.922000px;}
.y125{bottom:907.816500px;}
.y153{bottom:910.849500px;}
.y126{bottom:913.240500px;}
.y1ab{bottom:917.784000px;}
.y152{bottom:917.947500px;}
.y34{bottom:919.269000px;}
.yff{bottom:920.385000px;}
.yd2{bottom:920.656500px;}
.y1da{bottom:920.947500px;}
.y3{bottom:921.463500px;}
.y203{bottom:922.285500px;}
.y230{bottom:925.035000px;}
.yfe{bottom:925.539000px;}
.y1aa{bottom:934.147500px;}
.y33{bottom:935.632500px;}
.y1d9{bottom:937.311000px;}
.y202{bottom:938.649000px;}
.y151{bottom:940.737000px;}
.y22f{bottom:941.398500px;}
.yd1{bottom:944.232000px;}
.y1a9{bottom:950.511000px;}
.yfd{bottom:951.009000px;}
.y32{bottom:951.997500px;}
.y1d8{bottom:953.674500px;}
.y150{bottom:956.055000px;}
.y22e{bottom:957.762000px;}
.yfc{bottom:958.054500px;}
.yd0{bottom:960.595500px;}
.y14f{bottom:963.153000px;}
.y1a8{bottom:966.874500px;}
.y31{bottom:968.361000px;}
.y201{bottom:969.126000px;}
.y1d7{bottom:970.038000px;}
.y259{bottom:975.018000px;}
.y1a7{bottom:983.238000px;}
.ycf{bottom:984.171000px;}
.y30{bottom:984.724500px;}
.y200{bottom:985.489500px;}
.y14e{bottom:985.942500px;}
.y1d6{bottom:986.401500px;}
.y22d{bottom:986.863500px;}
.yfb{bottom:990.178500px;}
.y258{bottom:991.383000px;}
.y14d{bottom:993.040500px;}
.y2{bottom:996.801000px;}
.y1a6{bottom:999.601500px;}
.yce{bottom:1000.534500px;}
.y2f{bottom:1001.088000px;}
.y1d5{bottom:1002.765000px;}
.y22c{bottom:1003.227000px;}
.yb4{bottom:1011.727500px;}
.y9a{bottom:1014.351000px;}
.y1a5{bottom:1015.965000px;}
.ybe{bottom:1018.440000px;}
.y1d4{bottom:1019.128500px;}
.ybd{bottom:1019.151000px;}
.yc8{bottom:1019.181000px;}
.y22b{bottom:1019.590500px;}
.yca{bottom:1020.801000px;}
.ya8{bottom:1021.764000px;}
.y14b{bottom:1023.639000px;}
.ycd{bottom:1024.110000px;}
.y8c{bottom:1025.577000px;}
.y1{bottom:1026.690000px;}
.yc9{bottom:1026.730500px;}
.y8a{bottom:1026.856500px;}
.y80{bottom:1028.142000px;}
.y8b{bottom:1029.271500px;}
.y9b{bottom:1029.684000px;}
.y14a{bottom:1030.737000px;}
.y2e{bottom:1030.822500px;}
.y99{bottom:1031.704500px;}
.ya9{bottom:1031.854500px;}
.y9c{bottom:1031.890500px;}
.yfa{bottom:1032.328500px;}
.ya7{bottom:1035.930000px;}
.ybc{bottom:1037.007000px;}
.y14c{bottom:1038.583500px;}
.y7f{bottom:1040.043000px;}
.ycc{bottom:1040.473500px;}
.yb3{bottom:1044.228000px;}
.yf9{bottom:1048.692000px;}
.y73{bottom:1051.054500px;}
.ycb{bottom:1052.680500px;}
.y74{bottom:1056.798000px;}
.y81{bottom:1059.781500px;}
.y2d{bottom:1065.055500px;}
.y149{bottom:1069.464000px;}
.y8d{bottom:1069.626000px;}
.h9{height:24.890643px;}
.h8{height:25.249298px;}
.hc{height:29.039111px;}
.hd{height:35.865495px;}
.hb{height:37.981586px;}
.ha{height:40.348710px;}
.h4{height:41.484433px;}
.h1e{height:41.842710px;}
.h21{height:41.848710px;}
.h1a{height:42.201743px;}
.h3{height:44.831880px;}
.h15{height:44.832000px;}
.h5{height:50.211714px;}
.h6{height:50.729111px;}
.h7{height:50.735111px;}
.h2{height:53.072325px;}
.h16{height:54.920325px;}
.he{height:57.723495px;}
.h18{height:58.046325px;}
.h13{height:62.163495px;}
.h11{height:62.169495px;}
.h14{height:63.267495px;}
.h17{height:65.442000px;}
.h19{height:66.854325px;}
.h1b{height:67.910325px;}
.h1d{height:68.740710px;}
.h20{height:68.746710px;}
.h1f{height:71.728710px;}
.h1c{height:71.734710px;}
.h1{height:72.304848px;}
.h10{height:82.491495px;}
.hf{height:83.355495px;}
.h12{height:83.685495px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd2{left:159.877500px;}
.xd{left:161.461500px;}
.x26{left:166.228500px;}
.x32{left:168.406500px;}
.x1{left:170.425500px;}
.x36{left:174.505500px;}
.xc{left:180.607500px;}
.x1b{left:186.210000px;}
.x27{left:190.389000px;}
.xca{left:192.142500px;}
.x8b{left:193.383000px;}
.x34{left:196.699500px;}
.x28{left:197.860500px;}
.xbb{left:202.228500px;}
.xb7{left:205.030500px;}
.x6e{left:213.006000px;}
.xf{left:215.799000px;}
.x29{left:220.465500px;}
.x5{left:221.554500px;}
.xba{left:222.721500px;}
.x8c{left:224.764500px;}
.x2a{left:227.937000px;}
.xb6{left:230.821500px;}
.x98{left:233.125500px;}
.x6{left:235.362000px;}
.xc3{left:240.154500px;}
.x2b{left:242.946000px;}
.xb8{left:244.447500px;}
.x3{left:254.797500px;}
.x9f{left:265.164000px;}
.x8a{left:271.938000px;}
.xbc{left:273.073500px;}
.x12{left:276.169500px;}
.x81{left:277.395000px;}
.xb1{left:279.157500px;}
.x72{left:281.007000px;}
.xbd{left:282.396000px;}
.x2{left:284.577000px;}
.x76{left:286.738500px;}
.xb4{left:288.345000px;}
.x4{left:289.803000px;}
.xb5{left:294.183000px;}
.x3a{left:295.473000px;}
.x82{left:299.713500px;}
.x3c{left:301.558500px;}
.x24{left:303.492000px;}
.xce{left:306.456000px;}
.x3b{left:307.596000px;}
.xd3{left:309.694500px;}
.x77{left:311.892000px;}
.x3d{left:313.513500px;}
.x83{left:314.656500px;}
.x25{left:318.435000px;}
.x6a{left:320.325000px;}
.x64{left:323.929500px;}
.x78{left:326.835000px;}
.xa5{left:328.455000px;}
.x70{left:329.656500px;}
.x65{left:331.402500px;}
.x3f{left:333.324000px;}
.x6b{left:335.269500px;}
.x71{left:337.128000px;}
.xa6{left:341.106000px;}
.x73{left:345.141000px;}
.x3e{left:346.152000px;}
.x79{left:351.988500px;}
.x7d{left:355.107000px;}
.x40{left:357.832500px;}
.x74{left:360.084000px;}
.x7a{left:362.197500px;}
.x13{left:365.580000px;}
.x7b{left:369.670500px;}
.x6f{left:372.133500px;}
.xcc{left:373.135500px;}
.x46{left:377.595000px;}
.x37{left:379.315500px;}
.x23{left:381.303000px;}
.x42{left:383.596500px;}
.x38{left:386.227500px;}
.x44{left:389.575500px;}
.x84{left:390.783000px;}
.x7c{left:394.822500px;}
.x41{left:396.150000px;}
.x88{left:400.455000px;}
.x45{left:401.578500px;}
.x85{left:403.542000px;}
.x43{left:407.556000px;}
.xa0{left:408.730500px;}
.x87{left:410.262000px;}
.x16{left:412.369500px;}
.x47{left:413.509500px;}
.xe{left:420.426000px;}
.x99{left:422.305500px;}
.x7e{left:425.151000px;}
.x17{left:427.314000px;}
.x4b{left:433.272000px;}
.x18{left:437.653500px;}
.x49{left:439.297500px;}
.x10{left:443.751000px;}
.x4c{left:445.227000px;}
.x9{left:451.066500px;}
.x19{left:452.598000px;}
.x21{left:454.033500px;}
.x39{left:455.263500px;}
.x48{left:457.230000px;}
.xb2{left:459.870000px;}
.xa{left:461.245500px;}
.x2c{left:462.496500px;}
.x4a{left:463.806000px;}
.x30{left:466.212000px;}
.x2d{left:469.968000px;}
.xab{left:471.489000px;}
.xc6{left:476.212500px;}
.x89{left:478.962000px;}
.x31{left:481.155000px;}
.x51{left:489.069000px;}
.x9a{left:490.155000px;}
.x33{left:491.235000px;}
.xbe{left:493.000500px;}
.x4f{left:495.369000px;}
.x52{left:501.024000px;}
.x11{left:504.721500px;}
.xcd{left:505.764000px;}
.x4d{left:507.622500px;}
.xbf{left:510.715500px;}
.x4e{left:513.003000px;}
.xb{left:514.914000px;}
.xb3{left:516.585000px;}
.x50{left:519.279000px;}
.xd0{left:521.454000px;}
.x66{left:523.470000px;}
.x8{left:524.523000px;}
.x22{left:526.171500px;}
.xac{left:533.934000px;}
.xc7{left:535.114500px;}
.x7{left:536.350500px;}
.x67{left:538.414500px;}
.xa1{left:542.388000px;}
.x1f{left:545.920500px;}
.x68{left:548.461500px;}
.x56{left:551.416500px;}
.x7f{left:556.965000px;}
.x53{left:557.968500px;}
.xa2{left:560.466000px;}
.x54{left:563.347500px;}
.x69{left:566.292000px;}
.x9b{left:567.597000px;}
.x94{left:568.830000px;}
.x55{left:569.923500px;}
.xb0{left:571.477500px;}
.xb9{left:572.739000px;}
.x20{left:575.119500px;}
.x80{left:577.774500px;}
.x95{left:583.774500px;}
.x1c{left:585.427500px;}
.x59{left:589.734000px;}
.x1d{left:592.048500px;}
.xc4{left:594.990000px;}
.x57{left:602.287500px;}
.x91{left:605.641500px;}
.x58{left:607.990500px;}
.xc5{left:609.934500px;}
.xa7{left:611.800500px;}
.x5a{left:613.644000px;}
.x8d{left:615.936000px;}
.x9d{left:617.104500px;}
.x14{left:620.871000px;}
.xc0{left:623.175000px;}
.x9c{left:626.775000px;}
.x86{left:628.407000px;}
.x9e{left:629.755500px;}
.x8e{left:630.879000px;}
.xc8{left:632.202000px;}
.x5c{left:633.504000px;}
.x75{left:635.865000px;}
.x60{left:639.457500px;}
.x5d{left:645.459000px;}
.x5b{left:652.011000px;}
.x5e{left:657.414000px;}
.x1a{left:659.058000px;}
.xa3{left:660.402000px;}
.x61{left:663.367500px;}
.x1e{left:665.316000px;}
.xcf{left:667.353000px;}
.x5f{left:669.369000px;}
.xad{left:670.405500px;}
.x8f{left:673.380000px;}
.xa4{left:678.478500px;}
.x2e{left:681.808500px;}
.xa8{left:682.828500px;}
.xc1{left:685.422000px;}
.x90{left:688.323000px;}
.x6c{left:689.943000px;}
.xa9{left:692.478000px;}
.x96{left:693.658500px;}
.x15{left:694.948500px;}
.x2f{left:696.751500px;}
.x6d{left:704.887500px;}
.xc9{left:709.791000px;}
.xcb{left:712.857000px;}
.xae{left:726.468000px;}
.xaf{left:727.551000px;}
.x92{left:729.735000px;}
.x62{left:736.818000px;}
.x35{left:743.349000px;}
.x93{left:744.679500px;}
.xaa{left:747.910500px;}
.xc2{left:749.647500px;}
.x63{left:751.762500px;}
.x97{left:753.906000px;}
.xd1{left:892.849500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v13{vertical-align:-19.285333pt;}
.v6{vertical-align:-7.968000pt;}
.v9{vertical-align:-5.637333pt;}
.v16{vertical-align:-1.328000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:1.328000pt;}
.vb{vertical-align:2.976000pt;}
.vf{vertical-align:5.354667pt;}
.v7{vertical-align:7.968000pt;}
.v11{vertical-align:13.189333pt;}
.va{vertical-align:15.941333pt;}
.ve{vertical-align:18.320000pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:23.381333pt;}
.v5{vertical-align:24.357333pt;}
.v14{vertical-align:27.898667pt;}
.vc{vertical-align:28.890667pt;}
.v10{vertical-align:31.530667pt;}
.v12{vertical-align:32.469333pt;}
.v8{vertical-align:39.850667pt;}
.v3{vertical-align:42.213333pt;}
.vd{vertical-align:58.170667pt;}
.lse{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000186pt;}
.ls23{letter-spacing:0.000223pt;}
.ls30{letter-spacing:0.000263pt;}
.ls5{letter-spacing:0.000313pt;}
.ls22{letter-spacing:0.000479pt;}
.lsb{letter-spacing:0.000525pt;}
.ls17{letter-spacing:0.000745pt;}
.lsa{letter-spacing:0.000946pt;}
.ls66{letter-spacing:0.001459pt;}
.ls3e{letter-spacing:0.001508pt;}
.ls21{letter-spacing:0.001660pt;}
.ls25{letter-spacing:0.001853pt;}
.ls1{letter-spacing:0.002019pt;}
.ls1c{letter-spacing:0.002332pt;}
.ls33{letter-spacing:0.002617pt;}
.ls24{letter-spacing:0.002717pt;}
.ls3d{letter-spacing:0.002823pt;}
.ls16{letter-spacing:0.002828pt;}
.ls47{letter-spacing:0.003275pt;}
.ls51{letter-spacing:0.003627pt;}
.ls28{letter-spacing:0.003734pt;}
.ls20{letter-spacing:0.005140pt;}
.ls2d{letter-spacing:0.005812pt;}
.ls12{letter-spacing:1.476570pt;}
.ls3c{letter-spacing:1.905853pt;}
.ls1a{letter-spacing:2.652361pt;}
.ls45{letter-spacing:2.656479pt;}
.ls7{letter-spacing:2.657447pt;}
.ls34{letter-spacing:2.657627pt;}
.ls1f{letter-spacing:2.657694pt;}
.ls14{letter-spacing:2.659474pt;}
.ls8{letter-spacing:2.659726pt;}
.ls6{letter-spacing:2.660929pt;}
.ls41{letter-spacing:2.661812pt;}
.ls2a{letter-spacing:3.059089pt;}
.ls3b{letter-spacing:4.170415pt;}
.ls3a{letter-spacing:5.718888pt;}
.ls2e{letter-spacing:7.375921pt;}
.ls43{letter-spacing:11.818979pt;}
.ls40{letter-spacing:11.820686pt;}
.ls62{letter-spacing:13.649304pt;}
.ls64{letter-spacing:13.649471pt;}
.ls65{letter-spacing:13.654638pt;}
.ls61{letter-spacing:13.654804pt;}
.ls57{letter-spacing:13.655481pt;}
.ls54{letter-spacing:13.656407pt;}
.ls18{letter-spacing:14.167027pt;}
.ls3f{letter-spacing:14.480479pt;}
.ls50{letter-spacing:14.754617pt;}
.ls36{letter-spacing:14.756842pt;}
.ls32{letter-spacing:14.757646pt;}
.ls39{letter-spacing:14.759353pt;}
.ls0{letter-spacing:14.759711pt;}
.ls1d{letter-spacing:14.759950pt;}
.ls15{letter-spacing:14.762979pt;}
.ls5e{letter-spacing:14.773646pt;}
.ls5f{letter-spacing:14.777578pt;}
.ls4{letter-spacing:14.800313pt;}
.ls5b{letter-spacing:14.816313pt;}
.ls5c{letter-spacing:14.820244pt;}
.ls49{letter-spacing:14.854715pt;}
.ls1b{letter-spacing:15.230788pt;}
.ls42{letter-spacing:15.989081pt;}
.ls60{letter-spacing:16.142254pt;}
.ls63{letter-spacing:16.147588pt;}
.ls2{letter-spacing:16.271236pt;}
.ls56{letter-spacing:16.397948pt;}
.ls9{letter-spacing:16.402147pt;}
.ls55{letter-spacing:16.403282pt;}
.ls4f{letter-spacing:16.823711pt;}
.ls4e{letter-spacing:16.823950pt;}
.ls38{letter-spacing:17.417674pt;}
.ls5d{letter-spacing:17.579364pt;}
.ls3{letter-spacing:17.600698pt;}
.ls5a{letter-spacing:17.622031pt;}
.ls52{letter-spacing:17.692726pt;}
.ls13{letter-spacing:17.693045pt;}
.ls11{letter-spacing:17.694659pt;}
.ls4d{letter-spacing:17.778617pt;}
.ls35{letter-spacing:17.821755pt;}
.ls37{letter-spacing:18.927748pt;}
.ls10{letter-spacing:19.167236pt;}
.lsd{letter-spacing:20.865471pt;}
.ls2c{letter-spacing:21.386176pt;}
.ls31{letter-spacing:22.137777pt;}
.ls59{letter-spacing:22.193545pt;}
.ls27{letter-spacing:22.858979pt;}
.lsf{letter-spacing:23.297507pt;}
.lsc{letter-spacing:23.363588pt;}
.ls4a{letter-spacing:23.484049pt;}
.ls4c{letter-spacing:23.485045pt;}
.ls4b{letter-spacing:23.485284pt;}
.ls26{letter-spacing:23.591392pt;}
.ls2f{letter-spacing:24.047007pt;}
.ls29{letter-spacing:25.071921pt;}
.ls53{letter-spacing:25.688907pt;}
.ls58{letter-spacing:26.460211pt;}
.ls46{letter-spacing:27.891275pt;}
.ls48{letter-spacing:27.896608pt;}
.ls2b{letter-spacing:28.767921pt;}
.ls1e{letter-spacing:31.328313pt;}
.ls19{letter-spacing:43.733646pt;}
.wsed{word-spacing:-63.760907pt;}
.ws0{word-spacing:-57.384800pt;}
.ws3{word-spacing:-53.134080pt;}
.ws20{word-spacing:-47.820693pt;}
.ws48{word-spacing:-42.507253pt;}
.wse9{word-spacing:-40.541303pt;}
.wsf5{word-spacing:-40.063096pt;}
.wse{word-spacing:-39.956828pt;}
.ws65{word-spacing:-39.850567pt;}
.wsc{word-spacing:-39.744292pt;}
.ws137{word-spacing:-39.584890pt;}
.ws13e{word-spacing:-39.531756pt;}
.ws130{word-spacing:-39.319219pt;}
.ws11b{word-spacing:-39.106683pt;}
.wsb{word-spacing:-39.000415pt;}
.ws15{word-spacing:-38.337094pt;}
.ws10c{word-spacing:-38.309672pt;}
.wsa{word-spacing:-37.937733pt;}
.ws90{word-spacing:-37.884599pt;}
.wsdf{word-spacing:-37.853674pt;}
.wsdd{word-spacing:-37.853282pt;}
.ws10f{word-spacing:-37.831465pt;}
.ws11e{word-spacing:-37.778331pt;}
.wsf2{word-spacing:-37.618929pt;}
.wsf{word-spacing:-37.565795pt;}
.wse5{word-spacing:-37.406392pt;}
.ws138{word-spacing:-37.300124pt;}
.ws5f{word-spacing:-36.875052pt;}
.ws136{word-spacing:-36.715649pt;}
.ws6{word-spacing:-36.609381pt;}
.ws12e{word-spacing:-36.556247pt;}
.ws2f{word-spacing:-36.449979pt;}
.ws9{word-spacing:-36.290577pt;}
.ws108{word-spacing:-36.131174pt;}
.ws116{word-spacing:-36.024906pt;}
.wsec{word-spacing:-35.971772pt;}
.ws37{word-spacing:-35.918638pt;}
.ws38{word-spacing:-35.865504pt;}
.ws16{word-spacing:-35.812370pt;}
.ws8b{word-spacing:-35.759236pt;}
.ws18{word-spacing:-35.706102pt;}
.wse0{word-spacing:-35.674237pt;}
.ws32{word-spacing:-35.652968pt;}
.ws5{word-spacing:-35.599834pt;}
.wsda{word-spacing:-35.578596pt;}
.ws17{word-spacing:-35.546700pt;}
.ws8{word-spacing:-35.493565pt;}
.ws77{word-spacing:-35.442691pt;}
.ws6c{word-spacing:-35.442335pt;}
.ws69{word-spacing:-35.441777pt;}
.ws6b{word-spacing:-35.440993pt;}
.ws111{word-spacing:-35.440621pt;}
.ws2{word-spacing:-35.440431pt;}
.ws118{word-spacing:-35.438790pt;}
.ws76{word-spacing:-35.438656pt;}
.ws7d{word-spacing:-35.436944pt;}
.ws134{word-spacing:-35.436698pt;}
.ws11{word-spacing:-35.387297pt;}
.ws66{word-spacing:-35.334163pt;}
.ws31{word-spacing:-35.281029pt;}
.ws2c{word-spacing:-35.227895pt;}
.wsd{word-spacing:-35.174761pt;}
.ws39{word-spacing:-35.121627pt;}
.ws2b{word-spacing:-35.068493pt;}
.wsfe{word-spacing:-35.015359pt;}
.ws11c{word-spacing:-34.962225pt;}
.wseb{word-spacing:-34.909091pt;}
.ws2e{word-spacing:-34.855956pt;}
.ws30{word-spacing:-34.749688pt;}
.ws97{word-spacing:-34.590286pt;}
.wsf4{word-spacing:-34.537152pt;}
.ws119{word-spacing:-34.484018pt;}
.ws126{word-spacing:-34.391365pt;}
.ws7a{word-spacing:-34.377750pt;}
.ws91{word-spacing:-34.271482pt;}
.ws92{word-spacing:-34.218348pt;}
.ws110{word-spacing:-34.165213pt;}
.ws107{word-spacing:-34.112079pt;}
.ws100{word-spacing:-34.058945pt;}
.ws93{word-spacing:-34.005811pt;}
.ws135{word-spacing:-33.952677pt;}
.ws11a{word-spacing:-33.899543pt;}
.wsef{word-spacing:-33.846409pt;}
.ws10e{word-spacing:-33.793275pt;}
.ws34{word-spacing:-33.740141pt;}
.ws11d{word-spacing:-33.633873pt;}
.ws61{word-spacing:-33.580739pt;}
.ws60{word-spacing:-33.527604pt;}
.ws3c{word-spacing:-33.474470pt;}
.ws115{word-spacing:-33.421336pt;}
.wsf3{word-spacing:-33.368202pt;}
.wsfa{word-spacing:-33.208800pt;}
.ws63{word-spacing:-33.155666pt;}
.wsea{word-spacing:-33.102532pt;}
.ws5c{word-spacing:-32.996264pt;}
.ws5e{word-spacing:-32.943130pt;}
.ws7{word-spacing:-32.836861pt;}
.ws1{word-spacing:-32.783727pt;}
.ws5b{word-spacing:-32.730593pt;}
.ws62{word-spacing:-32.677459pt;}
.ws43{word-spacing:-32.470251pt;}
.ws10d{word-spacing:-32.464923pt;}
.ws64{word-spacing:-32.358655pt;}
.wsff{word-spacing:-32.252387pt;}
.ws112{word-spacing:-32.199252pt;}
.ws2a{word-spacing:-32.146118pt;}
.ws89{word-spacing:-32.039850pt;}
.wsa7{word-spacing:-31.947185pt;}
.wsa6{word-spacing:-31.944223pt;}
.ws7b{word-spacing:-31.933582pt;}
.ws1a{word-spacing:-31.880448pt;}
.ws75{word-spacing:-31.880427pt;}
.ws13f{word-spacing:-31.771447pt;}
.ws70{word-spacing:-31.752940pt;}
.wsfb{word-spacing:-31.721046pt;}
.ws72{word-spacing:-31.717644pt;}
.ws73{word-spacing:-31.705120pt;}
.ws45{word-spacing:-31.657299pt;}
.ws1e{word-spacing:-31.609478pt;}
.ws1f{word-spacing:-31.584861pt;}
.wse3{word-spacing:-31.513837pt;}
.ws1c{word-spacing:-31.466016pt;}
.ws78{word-spacing:-31.455375pt;}
.wsaa{word-spacing:-31.420773pt;}
.ws1d{word-spacing:-31.418196pt;}
.wsa4{word-spacing:-31.370375pt;}
.ws68{word-spacing:-31.349107pt;}
.wsa5{word-spacing:-31.342254pt;}
.ws22{word-spacing:-31.322554pt;}
.ws23{word-spacing:-31.296157pt;}
.ws67{word-spacing:-31.295973pt;}
.wsd5{word-spacing:-31.274733pt;}
.ws129{word-spacing:-31.189705pt;}
.ws106{word-spacing:-31.030303pt;}
.wsf9{word-spacing:-30.924035pt;}
.wse6{word-spacing:-30.711498pt;}
.ws8f{word-spacing:-30.658364pt;}
.ws10{word-spacing:-30.605230pt;}
.ws21{word-spacing:-30.604102pt;}
.wsa0{word-spacing:-30.603889pt;}
.ws35{word-spacing:-30.552096pt;}
.ws19{word-spacing:-30.498962pt;}
.wsd4{word-spacing:-30.445828pt;}
.ws11f{word-spacing:-30.339560pt;}
.ws8a{word-spacing:-30.286426pt;}
.ws3a{word-spacing:-30.233292pt;}
.wse4{word-spacing:-30.180157pt;}
.wsd6{word-spacing:-30.174857pt;}
.ws103{word-spacing:-30.020755pt;}
.ws41{word-spacing:-29.935754pt;}
.ws36{word-spacing:-29.861353pt;}
.ws105{word-spacing:-29.701951pt;}
.ws8d{word-spacing:-29.649732pt;}
.wsdb{word-spacing:-29.648817pt;}
.ws12b{word-spacing:-29.592140pt;}
.ws7f{word-spacing:-29.545952pt;}
.ws3e{word-spacing:-29.542548pt;}
.ws6f{word-spacing:-29.541963pt;}
.wse8{word-spacing:-29.436280pt;}
.ws40{word-spacing:-29.409726pt;}
.ws71{word-spacing:-29.369845pt;}
.ws12f{word-spacing:-29.354800pt;}
.ws79{word-spacing:-29.064342pt;}
.ws3b{word-spacing:-28.851805pt;}
.ws113{word-spacing:-28.745537pt;}
.wsf6{word-spacing:-28.586135pt;}
.wsf1{word-spacing:-28.533001pt;}
.wsf0{word-spacing:-28.373599pt;}
.ws42{word-spacing:-28.263728pt;}
.ws104{word-spacing:-28.183402pt;}
.ws44{word-spacing:-28.169637pt;}
.ws123{word-spacing:-28.107928pt;}
.wsee{word-spacing:-28.054794pt;}
.wsd1{word-spacing:-27.948526pt;}
.ws128{word-spacing:-27.629722pt;}
.wsa1{word-spacing:-27.544719pt;}
.ws10b{word-spacing:-27.523453pt;}
.ws51{word-spacing:-27.502193pt;}
.ws24{word-spacing:-27.496899pt;}
.ws26{word-spacing:-27.488517pt;}
.ws4b{word-spacing:-27.459686pt;}
.ws46{word-spacing:-27.449078pt;}
.ws5d{word-spacing:-27.310917pt;}
.ws2d{word-spacing:-27.204649pt;}
.ws114{word-spacing:-26.992113pt;}
.wsf8{word-spacing:-26.779576pt;}
.wsf7{word-spacing:-26.726442pt;}
.ws27{word-spacing:-26.693227pt;}
.ws122{word-spacing:-26.620174pt;}
.ws3d{word-spacing:-26.563061pt;}
.ws74{word-spacing:-26.492664pt;}
.ws124{word-spacing:-26.248236pt;}
.wsfc{word-spacing:-26.141967pt;}
.wsfd{word-spacing:-26.088833pt;}
.ws1b{word-spacing:-25.966636pt;}
.wse1{word-spacing:-25.948594pt;}
.ws12d{word-spacing:-25.716895pt;}
.ws12a{word-spacing:-25.663761pt;}
.wsa3{word-spacing:-25.440609pt;}
.ws88{word-spacing:-25.242432pt;}
.ws85{word-spacing:-25.241589pt;}
.ws84{word-spacing:-25.240373pt;}
.ws86{word-spacing:-25.239531pt;}
.ws83{word-spacing:-25.239157pt;}
.ws82{word-spacing:-25.238688pt;}
.ws87{word-spacing:-25.238315pt;}
.ws81{word-spacing:-25.236256pt;}
.ws9d{word-spacing:-25.010223pt;}
.ws9b{word-spacing:-24.675478pt;}
.ws99{word-spacing:-24.627657pt;}
.ws28{word-spacing:-24.436374pt;}
.ws127{word-spacing:-24.122872pt;}
.ws120{word-spacing:-23.963470pt;}
.ws33{word-spacing:-23.857202pt;}
.ws121{word-spacing:-22.103777pt;}
.ws9f{word-spacing:-21.662774pt;}
.ws125{word-spacing:-21.572436pt;}
.ws12c{word-spacing:-21.306766pt;}
.ws131{word-spacing:-21.094230pt;}
.ws133{word-spacing:-21.041096pt;}
.wsd2{word-spacing:-19.778422pt;}
.wsd3{word-spacing:-19.776473pt;}
.ws132{word-spacing:-18.703196pt;}
.wsdc{word-spacing:-16.848487pt;}
.ws3f{word-spacing:-16.843154pt;}
.ws117{word-spacing:-16.684101pt;}
.ws98{word-spacing:-15.600487pt;}
.wsd7{word-spacing:-15.571834pt;}
.wsd9{word-spacing:-15.570982pt;}
.ws94{word-spacing:-15.029820pt;}
.wse7{word-spacing:-14.771274pt;}
.wsd0{word-spacing:-14.346202pt;}
.ws4{word-spacing:-2.991488pt;}
.ws13{word-spacing:-0.053134pt;}
.ws25{word-spacing:-0.047821pt;}
.ws4d{word-spacing:-0.042507pt;}
.ws6e{word-spacing:-0.037194pt;}
.ws29{word-spacing:0.000000pt;}
.ws101{word-spacing:10.414280pt;}
.ws80{word-spacing:11.742632pt;}
.ws9c{word-spacing:13.581077pt;}
.ws109{word-spacing:13.761727pt;}
.ws12{word-spacing:14.665006pt;}
.ws14{word-spacing:14.718140pt;}
.ws8c{word-spacing:14.771274pt;}
.wsde{word-spacing:15.196347pt;}
.wsc7{word-spacing:15.924291pt;}
.wsc2{word-spacing:15.936483pt;}
.wsba{word-spacing:15.942275pt;}
.wsd8{word-spacing:16.348737pt;}
.wse2{word-spacing:16.354071pt;}
.ws96{word-spacing:16.737235pt;}
.ws6d{word-spacing:17.348339pt;}
.ws95{word-spacing:17.693649pt;}
.ws6a{word-spacing:20.287006pt;}
.ws7c{word-spacing:20.314931pt;}
.ws7e{word-spacing:20.316243pt;}
.wsa2{word-spacing:20.754181pt;}
.ws57{word-spacing:21.254325pt;}
.ws52{word-spacing:21.296833pt;}
.wsc9{word-spacing:23.162791pt;}
.ws8e{word-spacing:23.378995pt;}
.ws9e{word-spacing:25.010223pt;}
.ws9a{word-spacing:25.631892pt;}
.ws55{word-spacing:26.227674pt;}
.ws59{word-spacing:27.120326pt;}
.ws56{word-spacing:36.854487pt;}
.ws4c{word-spacing:39.957517pt;}
.ws10a{word-spacing:44.313823pt;}
.ws50{word-spacing:49.394127pt;}
.wsc1{word-spacing:57.088483pt;}
.wsb8{word-spacing:57.089688pt;}
.ws13b{word-spacing:57.671756pt;}
.wsad{word-spacing:63.045041pt;}
.ws13c{word-spacing:63.075495pt;}
.wsab{word-spacing:63.697164pt;}
.ws13d{word-spacing:64.079729pt;}
.wsb4{word-spacing:67.322278pt;}
.wsbf{word-spacing:67.323150pt;}
.wsb1{word-spacing:69.000214pt;}
.ws54{word-spacing:69.392529pt;}
.wscd{word-spacing:69.979709pt;}
.wsb6{word-spacing:71.175897pt;}
.wsc0{word-spacing:71.216483pt;}
.wsc3{word-spacing:74.901816pt;}
.ws139{word-spacing:77.995551pt;}
.wscf{word-spacing:83.250681pt;}
.wsbc{word-spacing:83.796069pt;}
.wsa8{word-spacing:84.499165pt;}
.ws13a{word-spacing:88.420462pt;}
.wsc4{word-spacing:89.105597pt;}
.wscb{word-spacing:92.477648pt;}
.ws5a{word-spacing:96.789016pt;}
.ws47{word-spacing:98.366640pt;}
.ws4e{word-spacing:109.354571pt;}
.wsc5{word-spacing:111.840483pt;}
.wsc6{word-spacing:111.847076pt;}
.wsbd{word-spacing:111.915150pt;}
.ws102{word-spacing:113.122456pt;}
.wsbe{word-spacing:117.511247pt;}
.wsa9{word-spacing:126.468987pt;}
.ws58{word-spacing:131.900007pt;}
.ws53{word-spacing:174.750332pt;}
.ws4f{word-spacing:182.131377pt;}
.wsb9{word-spacing:196.794345pt;}
.wsce{word-spacing:199.141229pt;}
.wsaf{word-spacing:214.394178pt;}
.wsac{word-spacing:237.898178pt;}
.wsb7{word-spacing:237.946345pt;}
.wsc8{word-spacing:240.215943pt;}
.wsae{word-spacing:246.815512pt;}
.wsb5{word-spacing:252.074345pt;}
.ws49{word-spacing:276.572805pt;}
.wsb2{word-spacing:281.369128pt;}
.wscc{word-spacing:287.031943pt;}
.wsb3{word-spacing:294.255679pt;}
.wsca{word-spacing:309.533277pt;}
.wsb0{word-spacing:316.131794pt;}
.wsbb{word-spacing:321.562345pt;}
.ws4a{word-spacing:410.214499pt;}
._1d{margin-left:-28.689707pt;}
._1c{margin-left:-22.900854pt;}
._1{margin-left:-8.630674pt;}
._13{margin-left:-7.332503pt;}
._3{margin-left:-5.784388pt;}
._4{margin-left:-4.410129pt;}
._0{margin-left:-2.846286pt;}
._6{margin-left:-1.487754pt;}
._5{width:1.487754pt;}
._2{width:2.846286pt;}
._3f{width:4.364220pt;}
._30{width:13.322976pt;}
._9{width:14.346202pt;}
._8{width:15.462017pt;}
._20{width:16.501745pt;}
._3b{width:18.543794pt;}
._14{width:19.850887pt;}
._12{width:20.959468pt;}
._c{width:21.854057pt;}
._7{width:23.542592pt;}
._1e{width:24.486087pt;}
._11{width:25.428270pt;}
._1f{width:26.571019pt;}
._10{width:27.789124pt;}
._17{width:28.741397pt;}
._d{width:29.935754pt;}
._18{width:31.880448pt;}
._1b{width:33.527604pt;}
._b{width:34.909091pt;}
._1a{width:36.556247pt;}
._39{width:37.749387pt;}
._a{width:38.943086pt;}
._38{width:40.315239pt;}
._e{width:43.469010pt;}
._32{width:44.688437pt;}
._31{width:46.332918pt;}
._3e{width:47.501868pt;}
._3a{width:48.830220pt;}
._3c{width:50.424242pt;}
._f{width:53.134080pt;}
._3d{width:57.066002pt;}
._19{width:63.760907pt;}
._25{width:66.088198pt;}
._40{width:67.022343pt;}
._26{width:71.922323pt;}
._34{width:74.972187pt;}
._23{width:80.099661pt;}
._2d{width:88.473595pt;}
._28{width:90.668035pt;}
._29{width:98.383332pt;}
._2a{width:104.679498pt;}
._24{width:108.744257pt;}
._2c{width:115.247871pt;}
._36{width:117.426317pt;}
._41{width:122.516616pt;}
._2b{width:133.324093pt;}
._27{width:138.329343pt;}
._2f{width:139.928661pt;}
._2e{width:154.731841pt;}
._22{width:157.900203pt;}
._33{width:160.783726pt;}
._35{width:170.826067pt;}
._16{width:203.000341pt;}
._15{width:259.759164pt;}
._37{width:261.844746pt;}
._21{width:277.252048pt;}
.fs7{font-size:26.567040pt;}
.fs4{font-size:31.880427pt;}
.fs2{font-size:37.193867pt;}
.fs6{font-size:42.507253pt;}
.fs5{font-size:47.820693pt;}
.fs1{font-size:53.134080pt;}
.fs3{font-size:63.760907pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:56.149333pt;}
.y2c{bottom:69.634667pt;}
.y2b{bottom:82.918667pt;}
.y65{bottom:96.000000pt;}
.y2a{bottom:96.201333pt;}
.yf8{bottom:101.078667pt;}
.y75{bottom:103.970667pt;}
.y64{bottom:109.284000pt;}
.yf7{bottom:110.364000pt;}
.y124{bottom:110.545333pt;}
.y63{bottom:114.362667pt;}
.y148{bottom:115.442667pt;}
.y257{bottom:121.766667pt;}
.y69{bottom:123.246667pt;}
.y62{bottom:123.648000pt;}
.y175{bottom:123.734667pt;}
.y1d3{bottom:125.090667pt;}
.y68{bottom:125.670667pt;}
.yf6{bottom:128.726667pt;}
.y147{bottom:129.886667pt;}
.y123{bottom:132.397333pt;}
.y256{bottom:136.312000pt;}
.y61{bottom:136.930667pt;}
.y174{bottom:137.018667pt;}
.yf5{bottom:138.010667pt;}
.y146{bottom:139.172000pt;}
.y1ff{bottom:139.636000pt;}
.y60{bottom:142.009333pt;}
.y122{bottom:146.942667pt;}
.y173{bottom:150.302667pt;}
.y255{bottom:150.857333pt;}
.y5f{bottom:151.294667pt;}
.y1d2{bottom:151.736000pt;}
.y22a{bottom:152.181333pt;}
.y145{bottom:152.454667pt;}
.y1a4{bottom:153.206667pt;}
.y1fe{bottom:154.181333pt;}
.y29{bottom:155.577333pt;}
.y144{bottom:157.533333pt;}
.y121{bottom:161.488000pt;}
.y172{bottom:163.585333pt;}
.y5e{bottom:164.578667pt;}
.y1d1{bottom:166.281333pt;}
.y229{bottom:166.726667pt;}
.y1a3{bottom:167.752000pt;}
.y171{bottom:168.664000pt;}
.y28{bottom:168.861333pt;}
.y5d{bottom:169.657333pt;}
.y143{bottom:171.897333pt;}
.y27{bottom:173.940000pt;}
.yf4{bottom:176.602667pt;}
.y181{bottom:177.861333pt;}
.y5c{bottom:178.942667pt;}
.y1fd{bottom:180.461333pt;}
.y1d0{bottom:180.826667pt;}
.yf3{bottom:181.182667pt;}
.y1a2{bottom:182.298667pt;}
.y180{bottom:182.940000pt;}
.y26{bottom:183.225333pt;}
.y120{bottom:183.338667pt;}
.y254{bottom:186.834667pt;}
.y5b{bottom:192.225333pt;}
.y228{bottom:193.816000pt;}
.y142{bottom:194.466667pt;}
.y1fc{bottom:195.006667pt;}
.y25{bottom:196.508000pt;}
.y5a{bottom:197.304000pt;}
.y11f{bottom:197.884000pt;}
.y141{bottom:199.545333pt;}
.y253{bottom:200.118667pt;}
.y24{bottom:201.586667pt;}
.yf2{bottom:206.434667pt;}
.y59{bottom:206.589333pt;}
.y1a1{bottom:206.693333pt;}
.y1cf{bottom:207.472000pt;}
.y227{bottom:208.361333pt;}
.y140{bottom:208.830667pt;}
.y1fb{bottom:209.552000pt;}
.y23{bottom:210.872000pt;}
.y11e{bottom:212.430667pt;}
.y252{bottom:213.402667pt;}
.y17f{bottom:218.734667pt;}
.y58{bottom:219.873333pt;}
.y13f{bottom:222.113333pt;}
.y226{bottom:222.906667pt;}
.y22{bottom:224.156000pt;}
.y57{bottom:224.952000pt;}
.y251{bottom:226.685333pt;}
.y11d{bottom:226.976000pt;}
.y13e{bottom:227.192000pt;}
.yf1{bottom:228.285333pt;}
.y21{bottom:229.234667pt;}
.y17d{bottom:233.280000pt;}
.y1ce{bottom:234.117333pt;}
.y1fa{bottom:235.830667pt;}
.y13d{bottom:236.477333pt;}
.y17e{bottom:238.100000pt;}
.y250{bottom:239.969333pt;}
.y11c{bottom:241.521333pt;}
.y20{bottom:243.677333pt;}
.y56{bottom:245.592000pt;}
.y1a0{bottom:246.150667pt;}
.y1cd{bottom:248.662667pt;}
.y13c{bottom:249.761333pt;}
.y225{bottom:249.997333pt;}
.y1f9{bottom:250.376000pt;}
.y24f{bottom:253.252000pt;}
.y13b{bottom:254.840000pt;}
.yf0{bottom:255.190667pt;}
.y1f{bottom:258.041333pt;}
.y6a{bottom:259.589333pt;}
.y19f{bottom:260.696000pt;}
.y1cc{bottom:263.208000pt;}
.y13a{bottom:264.125333pt;}
.y224{bottom:264.542667pt;}
.y1f8{bottom:264.921333pt;}
.y24e{bottom:266.536000pt;}
.y8e{bottom:267.474667pt;}
.y1e{bottom:272.640000pt;}
.y11b{bottom:273.709333pt;}
.y6c{bottom:273.786667pt;}
.y55{bottom:274.056000pt;}
.y6b{bottom:275.858667pt;}
.y139{bottom:277.408000pt;}
.y1cb{bottom:277.754667pt;}
.y223{bottom:279.088000pt;}
.y1f7{bottom:279.466667pt;}
.y17c{bottom:280.668000pt;}
.y138{bottom:282.486667pt;}
.y19e{bottom:282.546667pt;}
.yef{bottom:286.338667pt;}
.y24d{bottom:286.760000pt;}
.y11a{bottom:287.922667pt;}
.y1ca{bottom:292.300000pt;}
.y54{bottom:293.904000pt;}
.y137{bottom:296.938667pt;}
.y19d{bottom:297.093333pt;}
.y119{bottom:302.136000pt;}
.y1f6{bottom:305.745333pt;}
.y222{bottom:306.177333pt;}
.y136{bottom:306.224000pt;}
.y1c9{bottom:306.845333pt;}
.y53{bottom:308.449333pt;}
.y19c{bottom:311.638667pt;}
.y24c{bottom:314.954667pt;}
.y118{bottom:316.349333pt;}
.y135{bottom:319.508000pt;}
.y1f5{bottom:320.290667pt;}
.y221{bottom:320.724000pt;}
.y134{bottom:324.586667pt;}
.yee{bottom:324.873333pt;}
.y19b{bottom:326.184000pt;}
.y52{bottom:328.296000pt;}
.y117{bottom:330.564000pt;}
.y1c8{bottom:333.490667pt;}
.y220{bottom:335.269333pt;}
.y6d{bottom:335.816000pt;}
.y170{bottom:337.572000pt;}
.y133{bottom:338.950667pt;}
.yed{bottom:339.418667pt;}
.y19a{bottom:340.729333pt;}
.y8f{bottom:341.538667pt;}
.y116{bottom:344.777333pt;}
.y24b{bottom:345.269333pt;}
.y1f4{bottom:346.570667pt;}
.y1c7{bottom:348.036000pt;}
.y51{bottom:348.144000pt;}
.y21f{bottom:349.814667pt;}
.y1d{bottom:351.801333pt;}
.y16e{bottom:352.117333pt;}
.y6e{bottom:353.217333pt;}
.yec{bottom:353.964000pt;}
.y199{bottom:355.274667pt;}
.y16f{bottom:356.937333pt;}
.y115{bottom:358.990667pt;}
.y24a{bottom:359.816000pt;}
.y198{bottom:360.094667pt;}
.y1f3{bottom:361.116000pt;}
.y1c6{bottom:362.581333pt;}
.y4f{bottom:362.689333pt;}
.y1c{bottom:366.346667pt;}
.y50{bottom:367.509333pt;}
.yeb{bottom:368.510667pt;}
.y114{bottom:373.204000pt;}
.y249{bottom:374.361333pt;}
.y1f2{bottom:375.661333pt;}
.y16d{bottom:375.756000pt;}
.y21e{bottom:376.904000pt;}
.y1b{bottom:380.892000pt;}
.y4e{bottom:382.536000pt;}
.y67{bottom:382.745333pt;}
.yea{bottom:383.056000pt;}
.y197{bottom:386.976000pt;}
.y113{bottom:387.085333pt;}
.y248{bottom:388.906667pt;}
.y1c5{bottom:389.226667pt;}
.y16b{bottom:390.302667pt;}
.y21d{bottom:391.449333pt;}
.y16c{bottom:395.122667pt;}
.y1a{bottom:395.437333pt;}
.ye9{bottom:397.601333pt;}
.y1f1{bottom:401.940000pt;}
.y4d{bottom:402.384000pt;}
.y247{bottom:403.452000pt;}
.y1c4{bottom:403.772000pt;}
.y196{bottom:405.573333pt;}
.y21c{bottom:405.994667pt;}
.y90{bottom:407.716000pt;}
.yaa{bottom:407.748000pt;}
.y19{bottom:409.982667pt;}
.y82{bottom:414.140000pt;}
.ybf{bottom:414.640000pt;}
.y1f0{bottom:416.485333pt;}
.y4c{bottom:416.929333pt;}
.yc0{bottom:417.568000pt;}
.y246{bottom:417.997333pt;}
.y1c3{bottom:418.317333pt;}
.y91{bottom:418.652000pt;}
.y83{bottom:419.188000pt;}
.y112{bottom:419.273333pt;}
.ye8{bottom:419.452000pt;}
.y21b{bottom:420.540000pt;}
.y76{bottom:422.036000pt;}
.y9d{bottom:422.956000pt;}
.yb5{bottom:423.109333pt;}
.y18{bottom:424.528000pt;}
.yac{bottom:425.745333pt;}
.y9e{bottom:428.433333pt;}
.y1ef{bottom:431.030667pt;}
.y78{bottom:431.690667pt;}
.y245{bottom:432.542667pt;}
.y84{bottom:432.678667pt;}
.y1c2{bottom:432.862667pt;}
.y77{bottom:433.746667pt;}
.ye7{bottom:433.997333pt;}
.y21a{bottom:435.086667pt;}
.yab{bottom:438.986667pt;}
.y17{bottom:439.073333pt;}
.y111{bottom:441.125333pt;}
.y195{bottom:445.029333pt;}
.y4b{bottom:445.393333pt;}
.y1ee{bottom:445.576000pt;}
.y1c1{bottom:447.408000pt;}
.ye6{bottom:448.542667pt;}
.y219{bottom:449.632000pt;}
.y92{bottom:453.210667pt;}
.y16{bottom:453.620000pt;}
.y244{bottom:454.394667pt;}
.yc1{bottom:458.066667pt;}
.y194{bottom:459.576000pt;}
.y4a{bottom:459.938667pt;}
.y1c0{bottom:461.953333pt;}
.ye4{bottom:463.089333pt;}
.y218{bottom:464.177333pt;}
.y6f{bottom:465.952000pt;}
.ye5{bottom:467.909333pt;}
.y15{bottom:468.165333pt;}
.y9f{bottom:468.570667pt;}
.y243{bottom:468.940000pt;}
.y1ed{bottom:471.854667pt;}
.y110{bottom:473.314667pt;}
.y193{bottom:474.121333pt;}
.y49{bottom:474.484000pt;}
.y1bf{bottom:476.498667pt;}
.y48{bottom:479.305333pt;}
.y14{bottom:482.710667pt;}
.y242{bottom:483.485333pt;}
.y1ec{bottom:486.400000pt;}
.y10f{bottom:487.860000pt;}
.y241{bottom:488.305333pt;}
.y192{bottom:488.666667pt;}
.y1be{bottom:491.044000pt;}
.y217{bottom:491.266667pt;}
.ye3{bottom:494.237333pt;}
.y13{bottom:497.256000pt;}
.y16a{bottom:500.469333pt;}
.y47{bottom:500.916000pt;}
.y1eb{bottom:500.946667pt;}
.y10e{bottom:502.405333pt;}
.y191{bottom:503.212000pt;}
.y1bd{bottom:505.589333pt;}
.y216{bottom:505.812000pt;}
.y169{bottom:506.778667pt;}
.y12{bottom:511.801333pt;}
.y240{bottom:514.149333pt;}
.y1ea{bottom:515.492000pt;}
.y190{bottom:517.757333pt;}
.y1bc{bottom:520.136000pt;}
.y215{bottom:520.357333pt;}
.y11{bottom:526.346667pt;}
.y168{bottom:527.036000pt;}
.y10d{bottom:527.192000pt;}
.ye2{bottom:532.772000pt;}
.y46{bottom:533.062667pt;}
.y214{bottom:534.902667pt;}
.y167{bottom:540.652000pt;}
.y10{bottom:540.892000pt;}
.y1e9{bottom:541.770667pt;}
.y1bb{bottom:546.781333pt;}
.y45{bottom:547.608000pt;}
.y10c{bottom:548.681333pt;}
.y18f{bottom:549.458667pt;}
.y10b{bottom:551.978667pt;}
.ye1{bottom:553.728000pt;}
.y166{bottom:554.268000pt;}
.yf{bottom:555.437333pt;}
.y1e8{bottom:556.316000pt;}
.y23f{bottom:558.780000pt;}
.y1ba{bottom:561.326667pt;}
.y213{bottom:561.993333pt;}
.y44{bottom:562.153333pt;}
.y43{bottom:566.973333pt;}
.y165{bottom:567.884000pt;}
.ye0{bottom:568.273333pt;}
.ye{bottom:569.982667pt;}
.y1e7{bottom:570.861333pt;}
.y23e{bottom:573.325333pt;}
.y1b9{bottom:575.872000pt;}
.y212{bottom:576.538667pt;}
.y10a{bottom:576.765333pt;}
.y164{bottom:581.498667pt;}
.y86{bottom:581.730667pt;}
.yc3{bottom:582.538667pt;}
.y7a{bottom:582.958667pt;}
.y79{bottom:583.505333pt;}
.ya2{bottom:583.708000pt;}
.ya0{bottom:583.776000pt;}
.ya1{bottom:585.726667pt;}
.yaf{bottom:585.753333pt;}
.yb6{bottom:586.624000pt;}
.yc2{bottom:587.458667pt;}
.y93{bottom:587.517333pt;}
.y163{bottom:587.809333pt;}
.y23d{bottom:587.870667pt;}
.y42{bottom:588.585333pt;}
.y18e{bottom:588.916000pt;}
.ydf{bottom:589.229333pt;}
.y85{bottom:589.514667pt;}
.yae{bottom:589.881333pt;}
.y1b8{bottom:590.417333pt;}
.y211{bottom:591.084000pt;}
.y109{bottom:591.310667pt;}
.y17b{bottom:591.425333pt;}
.yad{bottom:593.973333pt;}
.y95{bottom:597.097333pt;}
.y1e6{bottom:597.140000pt;}
.yc4{bottom:599.286667pt;}
.y23c{bottom:602.416000pt;}
.y18d{bottom:603.461333pt;}
.yde{bottom:603.774667pt;}
.yb7{bottom:604.324000pt;}
.yb8{bottom:604.844000pt;}
.y210{bottom:605.629333pt;}
.y94{bottom:605.636000pt;}
.y162{bottom:608.066667pt;}
.y7b{bottom:611.650667pt;}
.y1e5{bottom:611.685333pt;}
.y17a{bottom:613.276000pt;}
.yd{bottom:616.832000pt;}
.y1b7{bottom:617.062667pt;}
.y18c{bottom:618.006667pt;}
.y20f{bottom:620.174667pt;}
.y41{bottom:620.732000pt;}
.y161{bottom:621.681333pt;}
.y108{bottom:623.498667pt;}
.ydd{bottom:624.730667pt;}
.y1e4{bottom:626.230667pt;}
.y70{bottom:627.516000pt;}
.y179{bottom:627.822667pt;}
.y23b{bottom:628.284000pt;}
.y1b6{bottom:631.608000pt;}
.y18b{bottom:632.552000pt;}
.y20e{bottom:634.720000pt;}
.y40{bottom:635.277333pt;}
.y160{bottom:635.297333pt;}
.y71{bottom:636.220000pt;}
.yc{bottom:638.577333pt;}
.ydc{bottom:639.276000pt;}
.y177{bottom:642.368000pt;}
.y23a{bottom:642.830667pt;}
.y107{bottom:645.350667pt;}
.y1b5{bottom:646.153333pt;}
.y18a{bottom:647.097333pt;}
.y178{bottom:647.188000pt;}
.y15f{bottom:648.913333pt;}
.y3f{bottom:649.822667pt;}
.y1e3{bottom:652.510667pt;}
.y239{bottom:657.376000pt;}
.y1b4{bottom:660.698667pt;}
.ydb{bottom:661.128000pt;}
.y20d{bottom:661.810667pt;}
.yb{bottom:662.245333pt;}
.y15e{bottom:662.529333pt;}
.y3e{bottom:664.368000pt;}
.y1e2{bottom:667.056000pt;}
.y15d{bottom:668.838667pt;}
.y189{bottom:668.949333pt;}
.y106{bottom:673.905333pt;}
.y1b3{bottom:675.244000pt;}
.y20c{bottom:676.356000pt;}
.ya{bottom:676.790667pt;}
.y3d{bottom:678.913333pt;}
.y1e1{bottom:681.601333pt;}
.y238{bottom:683.244000pt;}
.y188{bottom:683.494667pt;}
.y15c{bottom:689.096000pt;}
.y176{bottom:689.756000pt;}
.y20b{bottom:690.901333pt;}
.y9{bottom:691.336000pt;}
.y3c{bottom:693.458667pt;}
.yda{bottom:694.466667pt;}
.y15b{bottom:695.405333pt;}
.y1e0{bottom:696.146667pt;}
.y237{bottom:697.789333pt;}
.y132{bottom:697.824000pt;}
.y186{bottom:698.040000pt;}
.y1b2{bottom:701.889333pt;}
.y187{bottom:702.860000pt;}
.y20a{bottom:705.446667pt;}
.y8{bottom:705.881333pt;}
.y3b{bottom:708.004000pt;}
.yd8{bottom:709.012000pt;}
.y105{bottom:711.372000pt;}
.y236{bottom:712.334667pt;}
.y130{bottom:712.369333pt;}
.y185{bottom:712.585333pt;}
.yd9{bottom:713.832000pt;}
.y15a{bottom:715.662667pt;}
.y1b1{bottom:716.434667pt;}
.y131{bottom:717.190667pt;}
.y209{bottom:719.992000pt;}
.y1df{bottom:722.425333pt;}
.y3a{bottom:722.549333pt;}
.yd7{bottom:723.557333pt;}
.y104{bottom:725.917333pt;}
.y235{bottom:726.880000pt;}
.y12e{bottom:726.914667pt;}
.y184{bottom:727.130667pt;}
.y159{bottom:729.278667pt;}
.yb9{bottom:730.941333pt;}
.y1b0{bottom:730.980000pt;}
.yc6{bottom:731.366667pt;}
.y12f{bottom:731.736000pt;}
.y87{bottom:733.296000pt;}
.yb1{bottom:733.577333pt;}
.yb0{bottom:733.689333pt;}
.y208{bottom:734.537333pt;}
.yba{bottom:736.112000pt;}
.y96{bottom:736.138667pt;}
.ya3{bottom:736.706667pt;}
.y7d{bottom:736.936000pt;}
.y1de{bottom:736.970667pt;}
.y39{bottom:737.094667pt;}
.y98{bottom:739.300000pt;}
.y103{bottom:740.462667pt;}
.y88{bottom:741.313333pt;}
.yc5{bottom:742.509333pt;}
.y158{bottom:742.894667pt;}
.ya5{bottom:743.285333pt;}
.ya4{bottom:744.252000pt;}
.y97{bottom:744.406667pt;}
.yd6{bottom:745.409333pt;}
.y1af{bottom:745.525333pt;}
.y89{bottom:747.525333pt;}
.y7c{bottom:748.109333pt;}
.y12d{bottom:748.766667pt;}
.y207{bottom:749.082667pt;}
.y38{bottom:751.641333pt;}
.y234{bottom:752.748000pt;}
.y102{bottom:755.009333pt;}
.y157{bottom:756.509333pt;}
.y183{bottom:758.832000pt;}
.yd5{bottom:759.954667pt;}
.y1ae{bottom:760.070667pt;}
.y7{bottom:760.897333pt;}
.yb2{bottom:762.328000pt;}
.y156{bottom:762.820000pt;}
.y1dd{bottom:763.249333pt;}
.y12b{bottom:763.312000pt;}
.yc7{bottom:763.545333pt;}
.y206{bottom:763.628000pt;}
.y233{bottom:767.293333pt;}
.y12c{bottom:768.132000pt;}
.ya6{bottom:769.624000pt;}
.y37{bottom:773.492000pt;}
.y72{bottom:773.502667pt;}
.yd4{bottom:774.500000pt;}
.y1ad{bottom:774.617333pt;}
.y6{bottom:775.442667pt;}
.y101{bottom:776.860000pt;}
.y1dc{bottom:777.794667pt;}
.y129{bottom:777.857333pt;}
.y205{bottom:778.173333pt;}
.y232{bottom:781.838667pt;}
.y12a{bottom:782.677333pt;}
.y155{bottom:783.077333pt;}
.ybb{bottom:787.094667pt;}
.y36{bottom:788.037333pt;}
.y154{bottom:789.386667pt;}
.y5{bottom:789.988000pt;}
.y7e{bottom:790.818667pt;}
.y127{bottom:792.402667pt;}
.y231{bottom:796.384000pt;}
.y128{bottom:797.224000pt;}
.y100{bottom:798.712000pt;}
.y1ac{bottom:801.261333pt;}
.y35{bottom:802.582667pt;}
.yd3{bottom:803.816000pt;}
.y1db{bottom:804.073333pt;}
.y4{bottom:804.533333pt;}
.y182{bottom:804.614667pt;}
.y204{bottom:805.264000pt;}
.y125{bottom:806.948000pt;}
.y153{bottom:809.644000pt;}
.y126{bottom:811.769333pt;}
.y1ab{bottom:815.808000pt;}
.y152{bottom:815.953333pt;}
.y34{bottom:817.128000pt;}
.yff{bottom:818.120000pt;}
.yd2{bottom:818.361333pt;}
.y1da{bottom:818.620000pt;}
.y3{bottom:819.078667pt;}
.y203{bottom:819.809333pt;}
.y230{bottom:822.253333pt;}
.yfe{bottom:822.701333pt;}
.y1aa{bottom:830.353333pt;}
.y33{bottom:831.673333pt;}
.y1d9{bottom:833.165333pt;}
.y202{bottom:834.354667pt;}
.y151{bottom:836.210667pt;}
.y22f{bottom:836.798667pt;}
.yd1{bottom:839.317333pt;}
.y1a9{bottom:844.898667pt;}
.yfd{bottom:845.341333pt;}
.y32{bottom:846.220000pt;}
.y1d8{bottom:847.710667pt;}
.y150{bottom:849.826667pt;}
.y22e{bottom:851.344000pt;}
.yfc{bottom:851.604000pt;}
.yd0{bottom:853.862667pt;}
.y14f{bottom:856.136000pt;}
.y1a8{bottom:859.444000pt;}
.y31{bottom:860.765333pt;}
.y201{bottom:861.445333pt;}
.y1d7{bottom:862.256000pt;}
.y259{bottom:866.682667pt;}
.y1a7{bottom:873.989333pt;}
.ycf{bottom:874.818667pt;}
.y30{bottom:875.310667pt;}
.y200{bottom:875.990667pt;}
.y14e{bottom:876.393333pt;}
.y1d6{bottom:876.801333pt;}
.y22d{bottom:877.212000pt;}
.yfb{bottom:880.158667pt;}
.y258{bottom:881.229333pt;}
.y14d{bottom:882.702667pt;}
.y2{bottom:886.045333pt;}
.y1a6{bottom:888.534667pt;}
.yce{bottom:889.364000pt;}
.y2f{bottom:889.856000pt;}
.y1d5{bottom:891.346667pt;}
.y22c{bottom:891.757333pt;}
.yb4{bottom:899.313333pt;}
.y9a{bottom:901.645333pt;}
.y1a5{bottom:903.080000pt;}
.ybe{bottom:905.280000pt;}
.y1d4{bottom:905.892000pt;}
.ybd{bottom:905.912000pt;}
.yc8{bottom:905.938667pt;}
.y22b{bottom:906.302667pt;}
.yca{bottom:907.378667pt;}
.ya8{bottom:908.234667pt;}
.y14b{bottom:909.901333pt;}
.ycd{bottom:910.320000pt;}
.y8c{bottom:911.624000pt;}
.y1{bottom:912.613333pt;}
.yc9{bottom:912.649333pt;}
.y8a{bottom:912.761333pt;}
.y80{bottom:913.904000pt;}
.y8b{bottom:914.908000pt;}
.y9b{bottom:915.274667pt;}
.y14a{bottom:916.210667pt;}
.y2e{bottom:916.286667pt;}
.y99{bottom:917.070667pt;}
.ya9{bottom:917.204000pt;}
.y9c{bottom:917.236000pt;}
.yfa{bottom:917.625333pt;}
.ya7{bottom:920.826667pt;}
.ybc{bottom:921.784000pt;}
.y14c{bottom:923.185333pt;}
.y7f{bottom:924.482667pt;}
.ycc{bottom:924.865333pt;}
.yb3{bottom:928.202667pt;}
.yf9{bottom:932.170667pt;}
.y73{bottom:934.270667pt;}
.ycb{bottom:935.716000pt;}
.y74{bottom:939.376000pt;}
.y81{bottom:942.028000pt;}
.y2d{bottom:946.716000pt;}
.y149{bottom:950.634667pt;}
.y8d{bottom:950.778667pt;}
.h9{height:22.125016pt;}
.h8{height:22.443820pt;}
.hc{height:25.812543pt;}
.hd{height:31.880440pt;}
.hb{height:33.761409pt;}
.ha{height:35.865520pt;}
.h4{height:36.875052pt;}
.h1e{height:37.193520pt;}
.h21{height:37.198853pt;}
.h1a{height:37.512660pt;}
.h3{height:39.850560pt;}
.h15{height:39.850667pt;}
.h5{height:44.632635pt;}
.h6{height:45.092543pt;}
.h7{height:45.097877pt;}
.h2{height:47.175400pt;}
.h16{height:48.818067pt;}
.he{height:51.309773pt;}
.h18{height:51.596733pt;}
.h13{height:55.256440pt;}
.h11{height:55.261773pt;}
.h14{height:56.237773pt;}
.h17{height:58.170667pt;}
.h19{height:59.426067pt;}
.h1b{height:60.364733pt;}
.h1d{height:61.102853pt;}
.h20{height:61.108187pt;}
.h1f{height:63.758853pt;}
.h1c{height:63.764187pt;}
.h1{height:64.270976pt;}
.h10{height:73.325773pt;}
.hf{height:74.093773pt;}
.h12{height:74.387107pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd2{left:142.113333pt;}
.xd{left:143.521333pt;}
.x26{left:147.758667pt;}
.x32{left:149.694667pt;}
.x1{left:151.489333pt;}
.x36{left:155.116000pt;}
.xc{left:160.540000pt;}
.x1b{left:165.520000pt;}
.x27{left:169.234667pt;}
.xca{left:170.793333pt;}
.x8b{left:171.896000pt;}
.x34{left:174.844000pt;}
.x28{left:175.876000pt;}
.xbb{left:179.758667pt;}
.xb7{left:182.249333pt;}
.x6e{left:189.338667pt;}
.xf{left:191.821333pt;}
.x29{left:195.969333pt;}
.x5{left:196.937333pt;}
.xba{left:197.974667pt;}
.x8c{left:199.790667pt;}
.x2a{left:202.610667pt;}
.xb6{left:205.174667pt;}
.x98{left:207.222667pt;}
.x6{left:209.210667pt;}
.xc3{left:213.470667pt;}
.x2b{left:215.952000pt;}
.xb8{left:217.286667pt;}
.x3{left:226.486667pt;}
.x9f{left:235.701333pt;}
.x8a{left:241.722667pt;}
.xbc{left:242.732000pt;}
.x12{left:245.484000pt;}
.x81{left:246.573333pt;}
.xb1{left:248.140000pt;}
.x72{left:249.784000pt;}
.xbd{left:251.018667pt;}
.x2{left:252.957333pt;}
.x76{left:254.878667pt;}
.xb4{left:256.306667pt;}
.x4{left:257.602667pt;}
.xb5{left:261.496000pt;}
.x3a{left:262.642667pt;}
.x82{left:266.412000pt;}
.x3c{left:268.052000pt;}
.x24{left:269.770667pt;}
.xce{left:272.405333pt;}
.x3b{left:273.418667pt;}
.xd3{left:275.284000pt;}
.x77{left:277.237333pt;}
.x3d{left:278.678667pt;}
.x83{left:279.694667pt;}
.x25{left:283.053333pt;}
.x6a{left:284.733333pt;}
.x64{left:287.937333pt;}
.x78{left:290.520000pt;}
.xa5{left:291.960000pt;}
.x70{left:293.028000pt;}
.x65{left:294.580000pt;}
.x3f{left:296.288000pt;}
.x6b{left:298.017333pt;}
.x71{left:299.669333pt;}
.xa6{left:303.205333pt;}
.x73{left:306.792000pt;}
.x3e{left:307.690667pt;}
.x79{left:312.878667pt;}
.x7d{left:315.650667pt;}
.x40{left:318.073333pt;}
.x74{left:320.074667pt;}
.x7a{left:321.953333pt;}
.x13{left:324.960000pt;}
.x7b{left:328.596000pt;}
.x6f{left:330.785333pt;}
.xcc{left:331.676000pt;}
.x46{left:335.640000pt;}
.x37{left:337.169333pt;}
.x23{left:338.936000pt;}
.x42{left:340.974667pt;}
.x38{left:343.313333pt;}
.x44{left:346.289333pt;}
.x84{left:347.362667pt;}
.x7c{left:350.953333pt;}
.x41{left:352.133333pt;}
.x88{left:355.960000pt;}
.x45{left:356.958667pt;}
.x85{left:358.704000pt;}
.x43{left:362.272000pt;}
.xa0{left:363.316000pt;}
.x87{left:364.677333pt;}
.x16{left:366.550667pt;}
.x47{left:367.564000pt;}
.xe{left:373.712000pt;}
.x99{left:375.382667pt;}
.x7e{left:377.912000pt;}
.x17{left:379.834667pt;}
.x4b{left:385.130667pt;}
.x18{left:389.025333pt;}
.x49{left:390.486667pt;}
.x10{left:394.445333pt;}
.x4c{left:395.757333pt;}
.x9{left:400.948000pt;}
.x19{left:402.309333pt;}
.x21{left:403.585333pt;}
.x39{left:404.678667pt;}
.x48{left:406.426667pt;}
.xb2{left:408.773333pt;}
.xa{left:409.996000pt;}
.x2c{left:411.108000pt;}
.x4a{left:412.272000pt;}
.x30{left:414.410667pt;}
.x2d{left:417.749333pt;}
.xab{left:419.101333pt;}
.xc6{left:423.300000pt;}
.x89{left:425.744000pt;}
.x31{left:427.693333pt;}
.x51{left:434.728000pt;}
.x9a{left:435.693333pt;}
.x33{left:436.653333pt;}
.xbe{left:438.222667pt;}
.x4f{left:440.328000pt;}
.x52{left:445.354667pt;}
.x11{left:448.641333pt;}
.xcd{left:449.568000pt;}
.x4d{left:451.220000pt;}
.xbf{left:453.969333pt;}
.x4e{left:456.002667pt;}
.xb{left:457.701333pt;}
.xb3{left:459.186667pt;}
.x50{left:461.581333pt;}
.xd0{left:463.514667pt;}
.x66{left:465.306667pt;}
.x8{left:466.242667pt;}
.x22{left:467.708000pt;}
.xac{left:474.608000pt;}
.xc7{left:475.657333pt;}
.x7{left:476.756000pt;}
.x67{left:478.590667pt;}
.xa1{left:482.122667pt;}
.x1f{left:485.262667pt;}
.x68{left:487.521333pt;}
.x56{left:490.148000pt;}
.x7f{left:495.080000pt;}
.x53{left:495.972000pt;}
.xa2{left:498.192000pt;}
.x54{left:500.753333pt;}
.x69{left:503.370667pt;}
.x9b{left:504.530667pt;}
.x94{left:505.626667pt;}
.x55{left:506.598667pt;}
.xb0{left:507.980000pt;}
.xb9{left:509.101333pt;}
.x20{left:511.217333pt;}
.x80{left:513.577333pt;}
.x95{left:518.910667pt;}
.x1c{left:520.380000pt;}
.x59{left:524.208000pt;}
.x1d{left:526.265333pt;}
.xc4{left:528.880000pt;}
.x57{left:535.366667pt;}
.x91{left:538.348000pt;}
.x58{left:540.436000pt;}
.xc5{left:542.164000pt;}
.xa7{left:543.822667pt;}
.x5a{left:545.461333pt;}
.x8d{left:547.498667pt;}
.x9d{left:548.537333pt;}
.x14{left:551.885333pt;}
.xc0{left:553.933333pt;}
.x9c{left:557.133333pt;}
.x86{left:558.584000pt;}
.x9e{left:559.782667pt;}
.x8e{left:560.781333pt;}
.xc8{left:561.957333pt;}
.x5c{left:563.114667pt;}
.x75{left:565.213333pt;}
.x60{left:568.406667pt;}
.x5d{left:573.741333pt;}
.x5b{left:579.565333pt;}
.x5e{left:584.368000pt;}
.x1a{left:585.829333pt;}
.xa3{left:587.024000pt;}
.x61{left:589.660000pt;}
.x1e{left:591.392000pt;}
.xcf{left:593.202667pt;}
.x5f{left:594.994667pt;}
.xad{left:595.916000pt;}
.x8f{left:598.560000pt;}
.xa4{left:603.092000pt;}
.x2e{left:606.052000pt;}
.xa8{left:606.958667pt;}
.xc1{left:609.264000pt;}
.x90{left:611.842667pt;}
.x6c{left:613.282667pt;}
.xa9{left:615.536000pt;}
.x96{left:616.585333pt;}
.x15{left:617.732000pt;}
.x2f{left:619.334667pt;}
.x6d{left:626.566667pt;}
.xc9{left:630.925333pt;}
.xcb{left:633.650667pt;}
.xae{left:645.749333pt;}
.xaf{left:646.712000pt;}
.x92{left:648.653333pt;}
.x62{left:654.949333pt;}
.x35{left:660.754667pt;}
.x93{left:661.937333pt;}
.xaa{left:664.809333pt;}
.xc2{left:666.353333pt;}
.x63{left:668.233333pt;}
.x97{left:670.138667pt;}
.xd1{left:793.644000pt;}
}




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