
    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_fe7c5ed89912f9659c2db1be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_ac4d5709d72d71a919bff5d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9efaa04fc2e227bb0d679ae2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ad3ff36667ba867f030d091d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c1793f5bccdc614f07944085.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_09b056282d6053d7bfeaf115.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_10d91d2d1aebd2d4b363acaa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4bc48f0bad7ab55522db8713.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0a87f9ad5dae7d9cc0850311.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926758;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_56cc67539b2131613d05b9de.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.917480;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_c4ad4736de63e045cceeaed6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.580000;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_b5049ce4b3b59f088f8c8404.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;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_8932738e7b67ea6bc31e4c85.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.852000;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_f138eeed77d046fb64766484.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.917000;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_62a31df7a1b5e9a36771fff3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.873535;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_951679c3ddf4ecb3627e1534.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675781;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;}
.m29{transform:matrix(0.213301,0.104443,-0.222960,0.113088,0,0);-ms-transform:matrix(0.213301,0.104443,-0.222960,0.113088,0,0);-webkit-transform:matrix(0.213301,0.104443,-0.222960,0.113088,0,0);}
.m2a{transform:matrix(0.214320,-0.102339,0.224985,0.109003,0,0);-ms-transform:matrix(0.214320,-0.102339,0.224985,0.109003,0,0);-webkit-transform:matrix(0.214320,-0.102339,0.224985,0.109003,0,0);}
.m8{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);}
.m23{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);}
.m1b{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);}
.m13{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);}
.m1c{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);}
.m20{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);}
.m21{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);}
.m22{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);}
.m10{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);}
.m18{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);}
.m17{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);}
.m28{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);}
.m11{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);}
.m14{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);}
.mf{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);}
.m9{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);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m12{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);}
.m5{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);}
.m1e{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);}
.m1d{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);}
.m16{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);}
.m19{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);}
.m2{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);}
.m2b{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);}
.m24{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);}
.ma{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);}
.md{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);}
.m7{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);}
.m15{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);}
.m26{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.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);}
.m3{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);}
.m27{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);}
.m1f{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);}
.me{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);}
.m6{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-11.760000px;}
.v6{vertical-align:-10.473087px;}
.v7{vertical-align:-8.442000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:7.443489px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:26.655801px;}
.ls40{letter-spacing:-0.181690px;}
.ls6{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.181690px;}
.ls20{letter-spacing:0.226975px;}
.ls41{letter-spacing:0.242253px;}
.ls3a{letter-spacing:0.673932px;}
.ls30{letter-spacing:0.747000px;}
.ls3c{letter-spacing:0.989182px;}
.ls25{letter-spacing:0.992358px;}
.ls38{letter-spacing:0.995182px;}
.ls3b{letter-spacing:1.002802px;}
.ls39{letter-spacing:1.024364px;}
.ls36{letter-spacing:1.077474px;}
.ls37{letter-spacing:1.110948px;}
.ls7{letter-spacing:1.275394px;}
.ls2c{letter-spacing:1.420975px;}
.ls31{letter-spacing:1.461949px;}
.ls34{letter-spacing:1.466220px;}
.ls1f{letter-spacing:1.491642px;}
.ls2b{letter-spacing:1.492716px;}
.ls33{letter-spacing:1.675679px;}
.ls13{letter-spacing:1.810617px;}
.ls15{letter-spacing:1.831418px;}
.ls4{letter-spacing:1.861130px;}
.ls17{letter-spacing:1.946063px;}
.ls49{letter-spacing:2.006226px;}
.lsc{letter-spacing:2.119239px;}
.ls14{letter-spacing:2.164227px;}
.ls1b{letter-spacing:2.201958px;}
.ls18{letter-spacing:2.240898px;}
.ls1c{letter-spacing:2.267746px;}
.ls11{letter-spacing:2.333534px;}
.ls16{letter-spacing:2.349255px;}
.ls10{letter-spacing:2.351432px;}
.ls22{letter-spacing:2.364949px;}
.ls21{letter-spacing:2.566074px;}
.ls8{letter-spacing:2.636351px;}
.ls12{letter-spacing:2.684725px;}
.ls1e{letter-spacing:2.708911px;}
.ls23{letter-spacing:2.806284px;}
.lsb{letter-spacing:2.829845px;}
.lsf{letter-spacing:2.854032px;}
.ls9{letter-spacing:2.926592px;}
.ls2a{letter-spacing:3.024937px;}
.ls47{letter-spacing:3.086226px;}
.ls1d{letter-spacing:3.168459px;}
.lsa{letter-spacing:3.192645px;}
.ls1a{letter-spacing:3.458699px;}
.ls19{letter-spacing:3.966620px;}
.ls45{letter-spacing:4.160340px;}
.ls42{letter-spacing:4.638540px;}
.ls44{letter-spacing:5.068920px;}
.ls48{letter-spacing:5.212380px;}
.ls43{letter-spacing:5.451480px;}
.ls46{letter-spacing:5.594940px;}
.ls5{letter-spacing:11.955000px;}
.ls2e{letter-spacing:12.639949px;}
.ls2d{letter-spacing:12.663432px;}
.ls4e{letter-spacing:12.987000px;}
.ls4a{letter-spacing:13.455000px;}
.ls4d{letter-spacing:13.653000px;}
.lsd{letter-spacing:14.103000px;}
.ls35{letter-spacing:14.883000px;}
.lse{letter-spacing:15.063000px;}
.ls32{letter-spacing:15.303000px;}
.ls24{letter-spacing:15.687000px;}
.ls27{letter-spacing:15.692358px;}
.ls4b{letter-spacing:17.265000px;}
.ls4c{letter-spacing:17.709000px;}
.ls26{letter-spacing:18.821904px;}
.ls2f{letter-spacing:20.145000px;}
.ls29{letter-spacing:37.786078px;}
.ls2{letter-spacing:70.236000px;}
.ls0{letter-spacing:72.354000px;}
.ls3{letter-spacing:72.354576px;}
.ls1{letter-spacing:72.360000px;}
.ls3e{letter-spacing:75.191182px;}
.ls3d{letter-spacing:112.109182px;}
.ls28{letter-spacing:856.686418px;}
.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;}
}
.ws81{word-spacing:-41.948280px;}
.ws7e{word-spacing:-26.404112px;}
.ws80{word-spacing:-26.399451px;}
.ws7f{word-spacing:-26.380807px;}
.ws128{word-spacing:-17.406480px;}
.ws145{word-spacing:-17.167380px;}
.ws12a{word-spacing:-17.023920px;}
.ws125{word-spacing:-16.593540px;}
.ws12c{word-spacing:-16.115340px;}
.ws5d{word-spacing:-14.944500px;}
.ws40{word-spacing:-13.684839px;}
.ws8{word-spacing:-13.449000px;}
.ws3f{word-spacing:-13.394599px;}
.ws41{word-spacing:-12.606112px;}
.ws44{word-spacing:-12.340058px;}
.ws42{word-spacing:-12.243312px;}
.ws135{word-spacing:-11.955000px;}
.ws43{word-spacing:-11.532706px;}
.ws2{word-spacing:-11.358000px;}
.ws138{word-spacing:-4.590672px;}
.ws134{word-spacing:-4.543283px;}
.ws133{word-spacing:-4.542709px;}
.ws13f{word-spacing:-4.351668px;}
.ws126{word-spacing:-4.208112px;}
.ws123{word-spacing:-4.064509px;}
.ws146{word-spacing:-3.490908px;}
.ws129{word-spacing:-3.442897px;}
.ws124{word-spacing:-3.299580px;}
.wsa9{word-spacing:-3.287850px;}
.ws139{word-spacing:-3.156120px;}
.ws12d{word-spacing:-3.108300px;}
.ws144{word-spacing:-3.060097px;}
.ws143{word-spacing:-2.773321px;}
.ws130{word-spacing:-2.725883px;}
.ws13c{word-spacing:-2.725740px;}
.ws5e{word-spacing:-2.630232px;}
.ws5f{word-spacing:-2.391419px;}
.ws60{word-spacing:-2.331402px;}
.ws77{word-spacing:-2.271385px;}
.ws158{word-spacing:-2.205528px;}
.ws157{word-spacing:-2.152109px;}
.ws78{word-spacing:-2.152008px;}
.ws12f{word-spacing:-2.056308px;}
.wsb{word-spacing:-1.908367px;}
.ws137{word-spacing:-1.864932px;}
.ws13e{word-spacing:-1.817495px;}
.ws142{word-spacing:-1.816921px;}
.ws97{word-spacing:-1.733741px;}
.ws14b{word-spacing:-1.721311px;}
.wsc5{word-spacing:-1.717571px;}
.wsf1{word-spacing:-1.675679px;}
.wsaa{word-spacing:-1.673784px;}
.wsc7{word-spacing:-1.502876px;}
.wsad{word-spacing:-1.494988px;}
.ws7a{word-spacing:-1.494390px;}
.wsf2{word-spacing:-1.466220px;}
.ws68{word-spacing:-1.434971px;}
.ws67{word-spacing:-1.434373px;}
.ws115{word-spacing:-1.374954px;}
.wsa{word-spacing:-1.322630px;}
.ws2b{word-spacing:-1.314937px;}
.ws127{word-spacing:-1.290710px;}
.ws9a{word-spacing:-1.278204px;}
.ws9b{word-spacing:-1.255577px;}
.ws163{word-spacing:-1.129770px;}
.ws132{word-spacing:-1.052040px;}
.wseb{word-spacing:-1.046404px;}
.ws45{word-spacing:-1.016166px;}
.ws7c{word-spacing:-0.956149px;}
.ws48{word-spacing:-0.896730px;}
.ws49{word-spacing:-0.836713px;}
.ws131{word-spacing:-0.765120px;}
.ws50{word-spacing:-0.717336px;}
.ws1b{word-spacing:-0.657319px;}
.ws2c{word-spacing:-0.537942px;}
.ws16b{word-spacing:-0.484164px;}
.wsc4{word-spacing:-0.477925px;}
.ws7b{word-spacing:-0.418506px;}
.wsa0{word-spacing:-0.365311px;}
.ws1d{word-spacing:-0.358489px;}
.wsa1{word-spacing:-0.357828px;}
.wsa2{word-spacing:-0.306457px;}
.wsa3{word-spacing:-0.303691px;}
.ws13{word-spacing:-0.299129px;}
.ws178{word-spacing:-0.269410px;}
.ws177{word-spacing:-0.268765px;}
.wsbc{word-spacing:-0.248376px;}
.ws8a{word-spacing:-0.246150px;}
.ws10f{word-spacing:-0.242253px;}
.wsf{word-spacing:-0.239112px;}
.wsbd{word-spacing:-0.236016px;}
.ws8b{word-spacing:-0.227885px;}
.wsbb{word-spacing:-0.220668px;}
.ws54{word-spacing:-0.218573px;}
.ws8c{word-spacing:-0.216919px;}
.ws179{word-spacing:-0.215399px;}
.ws98{word-spacing:-0.210222px;}
.wsc2{word-spacing:-0.187866px;}
.wsc1{word-spacing:-0.182322px;}
.ws110{word-spacing:-0.181690px;}
.ws85{word-spacing:-0.179693px;}
.ws1f{word-spacing:-0.179095px;}
.wsda{word-spacing:-0.161388px;}
.wsfb{word-spacing:-0.124500px;}
.ws19{word-spacing:-0.119735px;}
.ws15f{word-spacing:-0.107377px;}
.ws10c{word-spacing:-0.100457px;}
.ws6b{word-spacing:-0.082872px;}
.wsa6{word-spacing:-0.060316px;}
.wsba{word-spacing:-0.059778px;}
.wsd{word-spacing:-0.059718px;}
.ws162{word-spacing:-0.054011px;}
.wscf{word-spacing:-0.047340px;}
.wsdb{word-spacing:-0.043602px;}
.wsc6{word-spacing:-0.031419px;}
.ws3{word-spacing:-0.024997px;}
.ws7{word-spacing:-0.022595px;}
.ws1{word-spacing:-0.018299px;}
.ws5{word-spacing:-0.015024px;}
.ws4{word-spacing:-0.013849px;}
.ws5b{word-spacing:-0.012827px;}
.ws6{word-spacing:-0.012216px;}
.ws63{word-spacing:-0.010573px;}
.wsd6{word-spacing:-0.006654px;}
.ws75{word-spacing:-0.005993px;}
.ws22{word-spacing:-0.000840px;}
.ws2d{word-spacing:-0.000299px;}
.ws23{word-spacing:-0.000143px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.000299px;}
.ws155{word-spacing:0.005766px;}
.ws16e{word-spacing:0.010614px;}
.ws169{word-spacing:0.016614px;}
.ws172{word-spacing:0.028146px;}
.ws17a{word-spacing:0.043925px;}
.wsa7{word-spacing:0.047196px;}
.ws160{word-spacing:0.053419px;}
.ws170{word-spacing:0.054011px;}
.ws11{word-spacing:0.059718px;}
.ws92{word-spacing:0.101503px;}
.ws17d{word-spacing:0.107377px;}
.ws93{word-spacing:0.114037px;}
.ws29{word-spacing:0.119676px;}
.ws4a{word-spacing:0.148398px;}
.ws147{word-spacing:0.161388px;}
.ws34{word-spacing:0.172908px;}
.ws33{word-spacing:0.174685px;}
.ws2a{word-spacing:0.179095px;}
.ws6a{word-spacing:0.179693px;}
.ws10e{word-spacing:0.181690px;}
.wsc0{word-spacing:0.183414px;}
.ws152{word-spacing:0.215399px;}
.ws8d{word-spacing:0.224634px;}
.ws13a{word-spacing:0.238670px;}
.ws140{word-spacing:0.239100px;}
.ws30{word-spacing:0.239112px;}
.ws14c{word-spacing:0.268765px;}
.ws173{word-spacing:0.269410px;}
.ws8e{word-spacing:0.270229px;}
.ws10d{word-spacing:0.277753px;}
.ws46{word-spacing:0.286735px;}
.ws47{word-spacing:0.298531px;}
.ws3c{word-spacing:0.299129px;}
.ws12{word-spacing:0.358489px;}
.ws11e{word-spacing:0.359086px;}
.ws164{word-spacing:0.376787px;}
.ws141{word-spacing:0.382560px;}
.ws11b{word-spacing:0.418506px;}
.ws16a{word-spacing:0.430207px;}
.ws174{word-spacing:0.537583px;}
.ws1a{word-spacing:0.537942px;}
.wsb4{word-spacing:0.597900px;}
.ws117{word-spacing:0.657319px;}
.wsb8{word-spacing:0.717336px;}
.wsd1{word-spacing:0.734784px;}
.ws31{word-spacing:0.777353px;}
.wsb6{word-spacing:0.836713px;}
.ws150{word-spacing:0.860951px;}
.ws69{word-spacing:0.896730px;}
.wsf9{word-spacing:0.956149px;}
.ws4e{word-spacing:1.016166px;}
.ws86{word-spacing:1.016226px;}
.ws4d{word-spacing:1.076124px;}
.ws5c{word-spacing:1.135543px;}
.ws76{word-spacing:1.195560px;}
.ws156{word-spacing:1.237147px;}
.ws6d{word-spacing:1.246422px;}
.ws6c{word-spacing:1.255577px;}
.wsd0{word-spacing:1.314937px;}
.ws13b{word-spacing:1.338434px;}
.ws136{word-spacing:1.339056px;}
.ws89{word-spacing:1.374954px;}
.ws13d{word-spacing:1.386828px;}
.ws16f{word-spacing:1.398535px;}
.wsd4{word-spacing:1.434971px;}
.ws3d{word-spacing:1.494330px;}
.ws11c{word-spacing:1.554348px;}
.ws73{word-spacing:1.613767px;}
.ws74{word-spacing:1.614365px;}
.wsa5{word-spacing:1.673784px;}
.ws15a{word-spacing:1.721311px;}
.ws35{word-spacing:1.733741px;}
.ws168{word-spacing:1.828741px;}
.ws14{word-spacing:1.853178px;}
.wscc{word-spacing:1.889796px;}
.ws62{word-spacing:1.912597px;}
.ws96{word-spacing:1.913195px;}
.ws119{word-spacing:1.972554px;}
.ws18{word-spacing:2.032572px;}
.ws11d{word-spacing:2.091991px;}
.ws25{word-spacing:2.152008px;}
.ws4f{word-spacing:2.211368px;}
.ws66{word-spacing:2.211965px;}
.wsb7{word-spacing:2.271385px;}
.ws113{word-spacing:2.331402px;}
.ws7d{word-spacing:2.390821px;}
.ws116{word-spacing:2.391419px;}
.ws14d{word-spacing:2.420874px;}
.ws161{word-spacing:2.474293px;}
.ws26{word-spacing:2.570215px;}
.ws52{word-spacing:2.749609px;}
.ws9d{word-spacing:2.809626px;}
.wsa4{word-spacing:2.837117px;}
.ws16c{word-spacing:2.851080px;}
.ws14e{word-spacing:2.958457px;}
.ws14f{word-spacing:2.959049px;}
.ws149{word-spacing:3.012468px;}
.wsfa{word-spacing:3.048439px;}
.ws51{word-spacing:3.108396px;}
.ws64{word-spacing:3.158232px;}
.wsac{word-spacing:3.168413px;}
.ws151{word-spacing:3.227760px;}
.ws112{word-spacing:3.227833px;}
.ws9{word-spacing:3.227868px;}
.ws61{word-spacing:3.228430px;}
.ws121{word-spacing:3.235356px;}
.ws17c{word-spacing:3.281233px;}
.ws17e{word-spacing:3.281879px;}
.wsa8{word-spacing:3.287850px;}
.ws15b{word-spacing:3.335244px;}
.ws6e{word-spacing:3.347209px;}
.ws118{word-spacing:3.407226px;}
.wsf4{word-spacing:3.457854px;}
.wsf3{word-spacing:3.467244px;}
.ws148{word-spacing:3.496632px;}
.ws53{word-spacing:3.499207px;}
.ws32{word-spacing:3.526663px;}
.ws16{word-spacing:3.571074px;}
.ws72{word-spacing:3.574542px;}
.ws17{word-spacing:3.582000px;}
.ws1c{word-spacing:3.586620px;}
.ws111{word-spacing:3.586680px;}
.ws3b{word-spacing:3.646637px;}
.ws1e{word-spacing:3.766074px;}
.ws28{word-spacing:3.826031px;}
.wse{word-spacing:3.885450px;}
.ws79{word-spacing:4.005126px;}
.wsbe{word-spacing:4.064844px;}
.ws10a{word-spacing:4.124264px;}
.ws10b{word-spacing:4.124861px;}
.wsb3{word-spacing:4.195604px;}
.wsb2{word-spacing:4.196196px;}
.wsb1{word-spacing:4.250207px;}
.ws12e{word-spacing:4.351620px;}
.ws176{word-spacing:4.518972px;}
.ws6f{word-spacing:4.543068px;}
.wsb0{word-spacing:4.572660px;}
.ws27{word-spacing:4.603085px;}
.ws21{word-spacing:4.722462px;}
.wsb9{word-spacing:4.782479px;}
.ws165{word-spacing:4.787790px;}
.ws24{word-spacing:4.901916px;}
.ws94{word-spacing:4.932504px;}
.ws109{word-spacing:4.949178px;}
.ws39{word-spacing:4.949682px;}
.ws38{word-spacing:4.954561px;}
.ws3a{word-spacing:4.961275px;}
.ws36{word-spacing:4.961873px;}
.ws37{word-spacing:4.983648px;}
.ws95{word-spacing:4.991893px;}
.wsb5{word-spacing:5.021292px;}
.ws11a{word-spacing:5.081309px;}
.wsaf{word-spacing:5.164577px;}
.ws9e{word-spacing:5.200686px;}
.wsab{word-spacing:5.260703px;}
.ws108{word-spacing:5.272008px;}
.ws9f{word-spacing:5.320122px;}
.ws166{word-spacing:5.379977px;}
.ws171{word-spacing:5.433342px;}
.wsf8{word-spacing:5.439499px;}
.wsae{word-spacing:5.540988px;}
.ws9c{word-spacing:5.618953px;}
.ws58{word-spacing:5.666791px;}
.ws56{word-spacing:5.674409px;}
.ws55{word-spacing:5.678312px;}
.ws5a{word-spacing:5.678910px;}
.ws59{word-spacing:5.683313px;}
.ws120{word-spacing:5.702161px;}
.wsce{word-spacing:5.798346px;}
.ws3e{word-spacing:5.918321px;}
.ws15e{word-spacing:6.024937px;}
.wsbf{word-spacing:6.037757px;}
.ws11f{word-spacing:6.078948px;}
.wsc3{word-spacing:6.097117px;}
.ws20{word-spacing:6.455964px;}
.ws65{word-spacing:6.515981px;}
.ws12b{word-spacing:6.646980px;}
.ws87{word-spacing:6.874171px;}
.ws88{word-spacing:6.874769px;}
.ws153{word-spacing:6.993265px;}
.ws4b{word-spacing:7.173001px;}
.ws4c{word-spacing:7.173599px;}
.ws57{word-spacing:7.210926px;}
.wsd2{word-spacing:7.232959px;}
.wsd3{word-spacing:7.233616px;}
.wsf7{word-spacing:7.352395px;}
.wsf5{word-spacing:7.352993px;}
.wsf6{word-spacing:7.358496px;}
.ws17b{word-spacing:7.477483px;}
.ws10{word-spacing:7.591806px;}
.ws2f{word-spacing:7.950594px;}
.ws114{word-spacing:8.010013px;}
.ws91{word-spacing:8.069142px;}
.ws90{word-spacing:8.070030px;}
.ws99{word-spacing:8.189407px;}
.ws70{word-spacing:8.368860px;}
.wsc{word-spacing:8.488835px;}
.ws8f{word-spacing:8.548254px;}
.ws167{word-spacing:9.153570px;}
.ws154{word-spacing:9.158844px;}
.ws71{word-spacing:9.684096px;}
.ws159{word-spacing:9.736968px;}
.ws2e{word-spacing:9.863490px;}
.wsca{word-spacing:10.520510px;}
.wscb{word-spacing:10.521107px;}
.wsc8{word-spacing:10.531085px;}
.wsc9{word-spacing:10.541796px;}
.ws14a{word-spacing:12.695426px;}
.ws15c{word-spacing:13.771776px;}
.ws16d{word-spacing:13.825787px;}
.ws83{word-spacing:13.893830px;}
.wsd9{word-spacing:14.578770px;}
.wsd5{word-spacing:14.850556px;}
.wsd7{word-spacing:14.858444px;}
.wsd8{word-spacing:15.170418px;}
.ws175{word-spacing:16.138692px;}
.ws15d{word-spacing:16.461468px;}
.ws82{word-spacing:17.869594px;}
.wscd{word-spacing:31.323851px;}
.wse2{word-spacing:92.221440px;}
.wse8{word-spacing:95.165124px;}
.wse0{word-spacing:95.204796px;}
.wsec{word-spacing:95.218920px;}
.wsea{word-spacing:108.667920px;}
.wse9{word-spacing:110.067917px;}
.wsf0{word-spacing:110.073917px;}
.wsed{word-spacing:123.519917px;}
.wsdc{word-spacing:127.657908px;}
.wse6{word-spacing:132.122976px;}
.wse5{word-spacing:137.001780px;}
.wsde{word-spacing:137.430000px;}
.wsdd{word-spacing:137.436000px;}
.wsef{word-spacing:143.446932px;}
.wsdf{word-spacing:143.880000px;}
.wsee{word-spacing:145.571976px;}
.wse1{word-spacing:159.020976px;}
.ws122{word-spacing:159.720324px;}
.wse3{word-spacing:172.469976px;}
.wse7{word-spacing:180.358932px;}
.wse4{word-spacing:183.348288px;}
.wsfc{word-spacing:203.525484px;}
.ws103{word-spacing:203.749634px;}
.ws105{word-spacing:203.864726px;}
.ws107{word-spacing:203.867469px;}
.ws106{word-spacing:203.974442px;}
.ws104{word-spacing:204.033140px;}
.wsfe{word-spacing:218.664537px;}
.ws102{word-spacing:218.703815px;}
.wsfd{word-spacing:218.720711px;}
.ws100{word-spacing:218.826039px;}
.ws101{word-spacing:218.893953px;}
.wsff{word-spacing:219.057430px;}
.ws84{word-spacing:820.755013px;}
._47{margin-left:-20.943133px;}
._48{margin-left:-19.005830px;}
._18{margin-left:-16.896834px;}
._17{margin-left:-12.320709px;}
._0{margin-left:-9.683497px;}
._1{margin-left:-7.962682px;}
._5{margin-left:-5.971517px;}
._6{margin-left:-4.411003px;}
._1d{margin-left:-3.208024px;}
._4{margin-left:-1.936764px;}
._8{width:1.091170px;}
._2{width:3.006598px;}
._43{width:4.016880px;}
._41{width:5.308020px;}
._21{width:6.543759px;}
._46{width:7.618591px;}
._44{width:8.777473px;}
._45{width:9.803100px;}
._42{width:10.820363px;}
._1f{width:12.473685px;}
._d{width:13.665534px;}
._1b{width:15.625029px;}
._7{width:16.676868px;}
._c{width:17.837472px;}
._30{width:18.840293px;}
._b{width:19.846416px;}
._e{width:21.424870px;}
._16{width:22.716776px;}
._10{width:23.756630px;}
._a{width:25.166179px;}
._9{width:26.236080px;}
._1a{width:27.378503px;}
._19{width:28.394311px;}
._1e{width:30.007779px;}
._f{width:31.228163px;}
._11{width:33.738839px;}
._15{width:34.971825px;}
._22{width:37.301711px;}
._1c{width:39.417271px;}
._25{width:41.161142px;}
._14{width:43.721287px;}
._4d{width:46.966975px;}
._4b{width:48.362658px;}
._24{width:50.801262px;}
._4a{width:54.095556px;}
._4e{width:55.747845px;}
._4c{width:61.865400px;}
._3{width:69.368568px;}
._32{width:71.959312px;}
._49{width:73.338844px;}
._31{width:89.516544px;}
._3a{width:91.775976px;}
._20{width:93.551244px;}
._2a{width:132.122976px;}
._39{width:142.720788px;}
._29{width:145.571976px;}
._36{width:152.619252px;}
._28{width:154.098576px;}
._26{width:157.192073px;}
._27{width:159.020976px;}
._2b{width:165.691680px;}
._40{width:167.197968px;}
._33{width:168.704256px;}
._34{width:173.223120px;}
._37{width:185.596200px;}
._3c{width:189.361920px;}
._3b{width:193.719396px;}
._3d{width:198.345852px;}
._3f{width:199.475568px;}
._35{width:203.241288px;}
._38{width:218.465556px;}
._2c{width:219.973404px;}
._3e{width:234.873444px;}
._2d{width:249.714933px;}
._2f{width:250.847092px;}
._2e{width:281.205091px;}
._12{width:997.790327px;}
._23{width:2045.292000px;}
._13{width:2069.202000px;}
.fc6{color:rgb(0,21,33);}
.fc5{color:rgb(0,39,66);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fsf{font-size:29.233290px;}
.fs12{font-size:31.418949px;}
.fsa{font-size:33.861391px;}
.fs11{font-size:36.655507px;}
.fs9{font-size:38.698733px;}
.fsb{font-size:41.117404px;}
.fs4{font-size:41.844000px;}
.fs10{font-size:41.891981px;}
.fs7{font-size:41.936104px;}
.fs14{font-size:43.602000px;}
.fs16{font-size:43.886400px;}
.fs3{font-size:45.432000px;}
.fs6{font-size:47.236800px;}
.fs13{font-size:47.340000px;}
.fs8{font-size:47.820000px;}
.fs17{font-size:49.830000px;}
.fs5{font-size:53.796000px;}
.fse{font-size:55.931040px;}
.fs1{font-size:59.778000px;}
.fs15{font-size:60.563232px;}
.fsd{font-size:62.286000px;}
.fsc{font-size:70.141453px;}
.fs2{font-size:107.598000px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y63{bottom:2.418671px;}
.y180{bottom:2.509205px;}
.y165{bottom:2.509616px;}
.y13{bottom:3.425340px;}
.y67{bottom:3.628006px;}
.y73{bottom:4.232674px;}
.y16b{bottom:4.606838px;}
.y17e{bottom:4.607249px;}
.y16d{bottom:4.608072px;}
.y163{bottom:4.608209px;}
.y173{bottom:4.608346px;}
.y169{bottom:4.609581px;}
.y17a{bottom:5.268014px;}
.y87{bottom:7.256012px;}
.y6e{bottom:8.465348px;}
.y71{bottom:9.674683px;}
.yc7{bottom:9.941742px;}
.y78{bottom:10.279351px;}
.y12{bottom:14.151273px;}
.y66{bottom:15.116692px;}
.y2{bottom:16.016224px;}
.y7f{bottom:16.930696px;}
.yc9{bottom:17.304831px;}
.ycb{bottom:17.305996px;}
.y7d{bottom:18.140031px;}
.y6d{bottom:19.954034px;}
.yc6{bottom:24.382438px;}
.y84{bottom:25.396043px;}
.y7c{bottom:28.419382px;}
.y6b{bottom:35.070727px;}
.y83{bottom:35.675394px;}
.y7b{bottom:38.698733px;}
.y82{bottom:45.954745px;}
.y6a{bottom:46.559413px;}
.y7a{bottom:48.978084px;}
.y126{bottom:53.110128px;}
.yc3{bottom:56.873711px;}
.yc8{bottom:57.403891px;}
.y30{bottom:63.780000px;}
.y125{bottom:72.823550px;}
.y127{bottom:87.910100px;}
.yca{bottom:93.828981px;}
.y2f{bottom:108.612000px;}
.y232{bottom:108.957000px;}
.yee{bottom:109.315500px;}
.ya2{bottom:109.674000px;}
.yc4{bottom:110.608293px;}
.y101{bottom:113.007000px;}
.y1a4{bottom:113.349000px;}
.y120{bottom:115.710836px;}
.y1fd{bottom:116.622000px;}
.yaf{bottom:119.863500px;}
.y1c5{bottom:120.231000px;}
.y161{bottom:124.590000px;}
.y123{bottom:125.542574px;}
.y231{bottom:128.325000px;}
.y2e{bottom:128.875500px;}
.yed{bottom:129.580500px;}
.ya1{bottom:129.939000px;}
.y100{bottom:133.272000px;}
.y1a3{bottom:133.612500px;}
.y14c{bottom:134.767500px;}
.y1fc{bottom:135.990000px;}
.y1c4{bottom:136.273500px;}
.yae{bottom:140.128500px;}
.y124{bottom:141.962327px;}
.y160{bottom:144.853500px;}
.y230{bottom:147.691500px;}
.y2d{bottom:149.139000px;}
.yec{bottom:149.844000px;}
.ya0{bottom:150.202500px;}
.yc5{bottom:151.798008px;}
.y1c3{bottom:152.316000px;}
.y14b{bottom:152.761500px;}
.yff{bottom:153.535500px;}
.y1a2{bottom:153.877500px;}
.y1fb{bottom:155.356500px;}
.y122{bottom:158.460941px;}
.yad{bottom:160.392000px;}
.y15f{bottom:165.117000px;}
.y22f{bottom:167.059500px;}
.y1c2{bottom:168.358500px;}
.y18c{bottom:168.727500px;}
.y14a{bottom:169.200000px;}
.y2c{bottom:169.404000px;}
.yeb{bottom:170.109000px;}
.y9f{bottom:170.466000px;}
.y1a1{bottom:174.141000px;}
.y1fa{bottom:174.724500px;}
.y121{bottom:182.733715px;}
.y1c1{bottom:184.401000px;}
.y15e{bottom:185.382000px;}
.y22e{bottom:186.427500px;}
.y149{bottom:187.194000px;}
.yfe{bottom:188.536500px;}
.y18b{bottom:188.991000px;}
.yac{bottom:189.622500px;}
.y2b{bottom:189.667500px;}
.yea{bottom:190.372500px;}
.y9e{bottom:190.731000px;}
.y1f9{bottom:194.091000px;}
.y1a0{bottom:194.404500px;}
.y1c0{bottom:200.443500px;}
.y148{bottom:203.632500px;}
.y15d{bottom:205.645500px;}
.y22d{bottom:205.794000px;}
.yfd{bottom:207.769500px;}
.y18a{bottom:209.256000px;}
.y2a{bottom:209.932500px;}
.ye9{bottom:210.636000px;}
.y9d{bottom:210.994500px;}
.y1f8{bottom:213.459000px;}
.y1bf{bottom:216.486000px;}
.y147{bottom:220.071000px;}
.y19f{bottom:223.635000px;}
.yab{bottom:224.442000px;}
.y22c{bottom:225.162000px;}
.y15c{bottom:225.910500px;}
.y189{bottom:229.519500px;}
.y29{bottom:230.196000px;}
.ye8{bottom:230.901000px;}
.y9c{bottom:231.259500px;}
.y1f7{bottom:232.827000px;}
.y146{bottom:238.065000px;}
.y11e{bottom:241.449000px;}
.y22b{bottom:244.528500px;}
.yaa{bottom:244.707000px;}
.y15b{bottom:246.174000px;}
.y188{bottom:249.783000px;}
.y28{bottom:250.459500px;}
.ye7{bottom:251.164500px;}
.y9b{bottom:251.523000px;}
.y5c{bottom:251.955000px;}
.y1f6{bottom:252.193500px;}
.y1be{bottom:252.208500px;}
.y145{bottom:254.503500px;}
.y19e{bottom:258.454500px;}
.y11d{bottom:261.712500px;}
.y22a{bottom:263.896500px;}
.ya9{bottom:264.970500px;}
.y15a{bottom:266.437500px;}
.y187{bottom:270.048000px;}
.y27{bottom:270.724500px;}
.ye6{bottom:271.429500px;}
.y1f5{bottom:271.561500px;}
.y9a{bottom:271.786500px;}
.y5b{bottom:272.218500px;}
.y144{bottom:272.497500px;}
.y19d{bottom:278.719500px;}
.y11c{bottom:281.977500px;}
.y229{bottom:283.264500px;}
.ya8{bottom:285.234000px;}
.y159{bottom:286.702500px;}
.y1bd{bottom:289.029000px;}
.y186{bottom:290.311500px;}
.y1f4{bottom:290.928000px;}
.y26{bottom:290.988000px;}
.ye5{bottom:291.693000px;}
.y99{bottom:292.051500px;}
.y5a{bottom:292.482000px;}
.y143{bottom:297.993000px;}
.y19c{bottom:298.983000px;}
.y11b{bottom:302.241000px;}
.y228{bottom:302.631000px;}
.ya7{bottom:305.499000px;}
.y158{bottom:306.966000px;}
.y1bc{bottom:307.605000px;}
.y1f3{bottom:310.296000px;}
.y185{bottom:310.576500px;}
.y25{bottom:311.253000px;}
.ye4{bottom:311.956500px;}
.y98{bottom:312.315000px;}
.y59{bottom:312.747000px;}
.y142{bottom:314.431500px;}
.y19b{bottom:319.248000px;}
.y227{bottom:321.999000px;}
.y11a{bottom:322.504500px;}
.ya6{bottom:325.762500px;}
.y1bb{bottom:326.181000px;}
.y157{bottom:327.231000px;}
.y1f1{bottom:329.662500px;}
.y1f2{bottom:329.664000px;}
.y184{bottom:330.840000px;}
.y141{bottom:330.870000px;}
.y24{bottom:331.516500px;}
.y97{bottom:332.580000px;}
.y58{bottom:333.010500px;}
.y17c{bottom:334.167781px;}
.y19a{bottom:339.511500px;}
.y226{bottom:341.367000px;}
.y119{bottom:342.769500px;}
.yc1{bottom:343.377000px;}
.y1ba{bottom:344.755500px;}
.ya5{bottom:346.027500px;}
.ye3{bottom:346.957500px;}
.y140{bottom:347.308500px;}
.y156{bottom:347.494500px;}
.y183{bottom:351.103500px;}
.y23{bottom:351.780000px;}
.y96{bottom:352.843500px;}
.y57{bottom:353.275500px;}
.y1f0{bottom:357.997500px;}
.y199{bottom:359.775000px;}
.y225{bottom:360.733500px;}
.y118{bottom:363.033000px;}
.y1b9{bottom:363.331500px;}
.yc0{bottom:363.447000px;}
.ya4{bottom:366.291000px;}
.y155{bottom:367.758000px;}
.y13f{bottom:371.247000px;}
.y22{bottom:372.045000px;}
.y95{bottom:373.107000px;}
.y56{bottom:373.539000px;}
.y198{bottom:380.040000px;}
.y224{bottom:380.101500px;}
.y1b8{bottom:381.906000px;}
.y117{bottom:383.298000px;}
.ybf{bottom:383.517000px;}
.y182{bottom:386.104500px;}
.ya3{bottom:386.554500px;}
.y154{bottom:388.023000px;}
.yfa{bottom:392.308500px;}
.y94{bottom:393.372000px;}
.y223{bottom:399.468000px;}
.y197{bottom:400.303500px;}
.y1b7{bottom:400.482000px;}
.y21{bottom:401.275500px;}
.y13e{bottom:402.867000px;}
.y116{bottom:403.561500px;}
.ybe{bottom:403.587000px;}
.y181{bottom:405.337500px;}
.y1ef{bottom:406.416000px;}
.y55{bottom:406.819500px;}
.y153{bottom:408.286500px;}
.yf9{bottom:412.573500px;}
.y93{bottom:413.635500px;}
.y222{bottom:418.836000px;}
.y1b6{bottom:419.058000px;}
.y18f{bottom:421.539000px;}
.y13c{bottom:422.100000px;}
.y1ee{bottom:422.458500px;}
.y115{bottom:423.825000px;}
.y13d{bottom:426.982500px;}
.y54{bottom:427.083000px;}
.y17b{bottom:427.767000px;}
.y152{bottom:428.551500px;}
.y196{bottom:429.534000px;}
.yf8{bottom:432.837000px;}
.y92{bottom:433.899000px;}
.ybd{bottom:434.022000px;}
.y1b5{bottom:437.632500px;}
.y221{bottom:438.204000px;}
.y1ed{bottom:438.499500px;}
.y178{bottom:438.671399px;}
.y13b{bottom:441.333000px;}
.y235{bottom:443.988000px;}
.y114{bottom:444.090000px;}
.y53{bottom:447.348000px;}
.y151{bottom:448.815000px;}
.y18e{bottom:450.942000px;}
.yf7{bottom:453.100500px;}
.y91{bottom:454.164000px;}
.ybc{bottom:454.287000px;}
.y1ec{bottom:454.542000px;}
.y1b4{bottom:456.208500px;}
.y220{bottom:457.570500px;}
.y177{bottom:458.583482px;}
.y234{bottom:463.354500px;}
.y113{bottom:464.353500px;}
.y52{bottom:467.611500px;}
.y150{bottom:469.078500px;}
.y1eb{bottom:470.584500px;}
.yf6{bottom:473.365500px;}
.y90{bottom:474.427500px;}
.ybb{bottom:474.550500px;}
.y1b3{bottom:474.783000px;}
.y21f{bottom:476.938500px;}
.y13a{bottom:477.543000px;}
.y20{bottom:477.684000px;}
.y176{bottom:478.496936px;}
.y233{bottom:482.722500px;}
.y112{bottom:484.618500px;}
.y1ea{bottom:486.627000px;}
.ye2{bottom:486.957000px;}
.y51{bottom:487.875000px;}
.y14f{bottom:489.343500px;}
.y1b2{bottom:493.359000px;}
.yf5{bottom:493.629000px;}
.y8f{bottom:494.692500px;}
.yba{bottom:494.814000px;}
.y21e{bottom:496.305000px;}
.y139{bottom:497.806500px;}
.y175{bottom:498.410390px;}
.y1e9{bottom:502.669500px;}
.y111{bottom:504.882000px;}
.ye1{bottom:507.220500px;}
.y50{bottom:508.140000px;}
.y14e{bottom:509.607000px;}
.y1b1{bottom:511.935000px;}
.yf4{bottom:513.894000px;}
.yb9{bottom:515.079000px;}
.y21d{bottom:515.673000px;}
.y1f{bottom:515.880000px;}
.y138{bottom:518.071500px;}
.y174{bottom:518.323843px;}
.y1e8{bottom:518.712000px;}
.y8e{bottom:523.923000px;}
.y110{bottom:525.145500px;}
.ye0{bottom:527.485500px;}
.y4f{bottom:528.403500px;}
.y1b0{bottom:530.509500px;}
.yf3{bottom:534.157500px;}
.y1e7{bottom:534.754500px;}
.y21c{bottom:535.041000px;}
.yb8{bottom:535.342500px;}
.y1e{bottom:536.145000px;}
.y172{bottom:538.237297px;}
.y137{bottom:538.335000px;}
.y14d{bottom:544.608000px;}
.y10f{bottom:545.410500px;}
.ydf{bottom:547.749000px;}
.y4e{bottom:548.667000px;}
.y1af{bottom:549.085500px;}
.y1e6{bottom:550.797000px;}
.yfc{bottom:553.359000px;}
.y21b{bottom:554.407500px;}
.yf2{bottom:554.421000px;}
.yb7{bottom:555.607500px;}
.y1d{bottom:556.408500px;}
.y171{bottom:558.191895px;}
.y136{bottom:558.600000px;}
.y8d{bottom:558.742500px;}
.y10e{bottom:565.674000px;}
.y1e5{bottom:566.839500px;}
.y1ae{bottom:567.660000px;}
.yde{bottom:568.014000px;}
.y4d{bottom:568.932000px;}
.yfb{bottom:572.592000px;}
.y21a{bottom:573.775500px;}
.yf1{bottom:574.686000px;}
.yb6{bottom:575.871000px;}
.y1c{bottom:576.672000px;}
.y170{bottom:578.105349px;}
.y134{bottom:578.863500px;}
.y8c{bottom:579.006000px;}
.y1e4{bottom:582.882000px;}
.y135{bottom:584.287500px;}
.y10d{bottom:585.939000px;}
.y1ad{bottom:586.236000px;}
.ydd{bottom:588.277500px;}
.y4c{bottom:589.195500px;}
.y219{bottom:593.142000px;}
.yf0{bottom:594.949500px;}
.yb5{bottom:596.134500px;}
.y1b{bottom:596.937000px;}
.y16f{bottom:598.018803px;}
.y1e3{bottom:598.924500px;}
.y133{bottom:599.127000px;}
.y8b{bottom:599.269500px;}
.y1ac{bottom:604.812000px;}
.y10c{bottom:606.202500px;}
.ydc{bottom:608.541000px;}
.y4b{bottom:609.460500px;}
.y218{bottom:612.510000px;}
.y1e2{bottom:614.967000px;}
.yb4{bottom:616.399500px;}
.y1a{bottom:617.200500px;}
.y16e{bottom:617.932257px;}
.y132{bottom:619.392000px;}
.y8a{bottom:619.534500px;}
.y1ab{bottom:623.386500px;}
.y10b{bottom:626.466000px;}
.ydb{bottom:628.806000px;}
.y4a{bottom:629.724000px;}
.y1e1{bottom:631.009500px;}
.y217{bottom:631.878000px;}
.yb3{bottom:636.663000px;}
.y19{bottom:637.465500px;}
.y16c{bottom:637.845711px;}
.y131{bottom:639.655500px;}
.y89{bottom:639.798000px;}
.yef{bottom:643.750500px;}
.y10a{bottom:646.731000px;}
.y1e0{bottom:647.052000px;}
.yda{bottom:649.069500px;}
.y49{bottom:649.987500px;}
.y216{bottom:651.244500px;}
.y1aa{bottom:653.082000px;}
.yb2{bottom:656.926500px;}
.y18{bottom:657.729000px;}
.y16a{bottom:657.760536px;}
.y130{bottom:659.920500px;}
.y109{bottom:666.994500px;}
.yd9{bottom:669.333000px;}
.y48{bottom:670.252500px;}
.y215{bottom:670.612500px;}
.y88{bottom:674.799000px;}
.yb1{bottom:677.191500px;}
.y1a9{bottom:677.247000px;}
.y168{bottom:677.671248px;}
.y17{bottom:677.992500px;}
.y12f{bottom:680.184000px;}
.y1df{bottom:681.027000px;}
.y108{bottom:687.258000px;}
.yd8{bottom:689.598000px;}
.y214{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y1de{bottom:697.069500px;}
.y167{bottom:697.586073px;}
.y16{bottom:698.257500px;}
.y12e{bottom:700.447500px;}
.y77{bottom:701.912275px;}
.y107{bottom:707.523000px;}
.y213{bottom:709.347000px;}
.yd7{bottom:709.861500px;}
.y46{bottom:710.781000px;}
.y1dd{bottom:713.112000px;}
.y1a8{bottom:715.443000px;}
.y166{bottom:717.499527px;}
.y15{bottom:718.521000px;}
.y12d{bottom:720.712500px;}
.yb0{bottom:727.089000px;}
.y106{bottom:727.786500px;}
.y212{bottom:728.715000px;}
.y1dc{bottom:729.154500px;}
.yd6{bottom:730.126500px;}
.y45{bottom:731.044500px;}
.y6c{bottom:731.540993px;}
.y164{bottom:736.415937px;}
.y17d{bottom:736.915145px;}
.y162{bottom:737.412981px;}
.y17f{bottom:737.912189px;}
.y14{bottom:738.786000px;}
.y1a7{bottom:739.608000px;}
.y85{bottom:740.611008px;}
.y12c{bottom:740.976000px;}
.y1db{bottom:745.197000px;}
.y105{bottom:748.051500px;}
.y211{bottom:748.081500px;}
.yd5{bottom:750.390000px;}
.y44{bottom:751.308000px;}
.y179{bottom:756.666768px;}
.y1da{bottom:761.239500px;}
.y12b{bottom:761.241000px;}
.y1a6{bottom:763.771500px;}
.y69{bottom:767.216387px;}
.y210{bottom:767.449500px;}
.y104{bottom:768.315000px;}
.yd4{bottom:770.653500px;}
.y7e{bottom:771.449061px;}
.y43{bottom:771.573000px;}
.y11{bottom:772.085964px;}
.y10{bottom:772.479000px;}
.y18d{bottom:775.168500px;}
.y1d9{bottom:777.282000px;}
.y76{bottom:778.100405px;}
.y74{bottom:778.705073px;}
.y1a5{bottom:778.969500px;}
.y79{bottom:779.309741px;}
.y12a{bottom:781.504500px;}
.y20f{bottom:786.816000px;}
.y103{bottom:788.578500px;}
.yd3{bottom:790.918500px;}
.y42{bottom:791.836500px;}
.y1d8{bottom:793.324500px;}
.y65{bottom:799.263775px;}
.y129{bottom:801.768000px;}
.y62{bottom:805.915120px;}
.y20e{bottom:806.184000px;}
.y195{bottom:808.843500px;}
.y1d7{bottom:809.365500px;}
.yd2{bottom:811.182000px;}
.yf{bottom:811.851000px;}
.y41{bottom:812.101500px;}
.y80{bottom:813.775800px;}
.y102{bottom:817.809000px;}
.y1d6{bottom:825.408000px;}
.y20d{bottom:825.552000px;}
.y194{bottom:829.107000px;}
.yd1{bottom:831.447000px;}
.y40{bottom:832.365000px;}
.ye{bottom:834.891000px;}
.y128{bottom:836.769000px;}
.y1d5{bottom:841.450500px;}
.y20c{bottom:844.918500px;}
.y193{bottom:849.372000px;}
.yd0{bottom:851.710500px;}
.y86{bottom:852.474533px;}
.y3f{bottom:852.628500px;}
.yd{bottom:853.048500px;}
.y70{bottom:854.288536px;}
.y1d4{bottom:857.493000px;}
.y11f{bottom:859.198500px;}
.y20b{bottom:864.286500px;}
.yc{bottom:866.322000px;}
.y192{bottom:869.635500px;}
.ycf{bottom:871.974000px;}
.y3e{bottom:872.893500px;}
.y1d3{bottom:873.535500px;}
.y81{bottom:877.870576px;}
.y20a{bottom:883.653000px;}
.yb{bottom:889.362000px;}
.y1d2{bottom:889.578000px;}
.y191{bottom:889.899000px;}
.yce{bottom:892.239000px;}
.y3d{bottom:893.157000px;}
.y6f{bottom:895.405939px;}
.y64{bottom:901.452616px;}
.ya{bottom:902.637000px;}
.y209{bottom:903.021000px;}
.y1d1{bottom:905.620500px;}
.y68{bottom:909.313296px;}
.ycd{bottom:912.502500px;}
.y3c{bottom:913.422000px;}
.y190{bottom:919.129500px;}
.y1d0{bottom:921.663000px;}
.y208{bottom:922.389000px;}
.y72{bottom:925.639324px;}
.y9{bottom:925.675500px;}
.y75{bottom:926.848660px;}
.y3b{bottom:933.685500px;}
.y1cf{bottom:937.705500px;}
.y207{bottom:941.755500px;}
.y8{bottom:945.786000px;}
.ycc{bottom:947.503500px;}
.y1ce{bottom:953.748000px;}
.y3a{bottom:953.949000px;}
.y206{bottom:961.123500px;}
.y7{bottom:966.049500px;}
.y1cd{bottom:969.790500px;}
.yc2{bottom:969.933000px;}
.y39{bottom:974.214000px;}
.y205{bottom:980.490000px;}
.y1cc{bottom:985.833000px;}
.y61{bottom:992.983500px;}
.y38{bottom:994.477500px;}
.y204{bottom:999.858000px;}
.y1cb{bottom:1001.875500px;}
.y6{bottom:1010.451000px;}
.y60{bottom:1013.247000px;}
.y37{bottom:1014.742500px;}
.y1ca{bottom:1017.918000px;}
.y203{bottom:1019.226000px;}
.y5f{bottom:1033.512000px;}
.y36{bottom:1035.006000px;}
.y202{bottom:1038.270000px;}
.y201{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y1c9{bottom:1051.893000px;}
.y5e{bottom:1053.775500px;}
.y35{bottom:1055.269500px;}
.y200{bottom:1057.960500px;}
.y1c8{bottom:1067.935500px;}
.y4{bottom:1071.244500px;}
.y5d{bottom:1074.040500px;}
.y34{bottom:1075.534500px;}
.y1ff{bottom:1077.327000px;}
.y1c7{bottom:1083.978000px;}
.y33{bottom:1095.798000px;}
.y1fe{bottom:1096.695000px;}
.y1c6{bottom:1100.020500px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h12{height:10.279351px;}
.hf{height:11.488686px;}
.h1d{height:16.326028px;}
.h2e{height:18.595491px;}
.h30{height:18.596862px;}
.h32{height:18.629777px;}
.h16{height:19.349366px;}
.h33{height:19.914825px;}
.h18{height:20.558702px;}
.h11{height:24.186708px;}
.h1b{height:24.791376px;}
.h9{height:25.508090px;}
.h15{height:29.024050px;}
.h35{height:30.514762px;}
.h7{height:30.587964px;}
.h2c{height:32.701500px;}
.h29{height:32.989896px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h36{height:34.956420px;}
.he{height:35.099880px;}
.h13{height:35.316373px;}
.h2b{height:35.505000px;}
.h2a{height:37.301472px;}
.h37{height:37.372500px;}
.h28{height:38.488283px;}
.h25{height:38.733120px;}
.h8{height:39.324876px;}
.h1f{height:39.486264px;}
.h24{height:40.200435px;}
.h10{height:40.361569px;}
.h31{height:40.365631px;}
.h21{height:40.719326px;}
.h2f{height:42.110372px;}
.h17{height:42.884167px;}
.hc{height:43.040160px;}
.hd{height:43.697718px;}
.h4{height:43.877052px;}
.h27{height:43.986580px;}
.h1e{height:46.714500px;}
.h22{height:47.643924px;}
.h2{height:50.930649px;}
.h2d{height:52.231500px;}
.h1c{height:53.815425px;}
.h6{height:54.407040px;}
.h14{height:55.629428px;}
.h1a{height:56.838764px;}
.h23{height:67.375128px;}
.h19{height:73.155344px;}
.h5{height:77.470560px;}
.h3{height:148.306577px;}
.h20{height:161.073239px;}
.h26{height:271.814933px;}
.h34{height:360.691350px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:37.489397px;}
.w5{width:40.512736px;}
.w6{width:42.931407px;}
.w10{width:44.140742px;}
.wf{width:45.954745px;}
.wd{width:62.280773px;}
.we{width:63.490108px;}
.w3{width:75.364879px;}
.w7{width:82.839475px;}
.w8{width:101.584174px;}
.w11{width:133.631562px;}
.wa{width:140.282906px;}
.wc{width:159.027605px;}
.wb{width:168.702288px;}
.w4{width:172.934962px;}
.w2{width:174.085494px;}
.w18{width:268.118475px;}
.w16{width:268.159618px;}
.w19{width:370.657677px;}
.w13{width:398.002539px;}
.w1a{width:401.040780px;}
.w12{width:497.476305px;}
.w14{width:635.831649px;}
.w15{width:637.019325px;}
.w17{width:650.067300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:2.418671px;}
.x16{left:4.837342px;}
.x89{left:15.146969px;}
.x1c{left:16.326028px;}
.x5e{left:20.368220px;}
.x8{left:29.274117px;}
.xb0{left:46.354736px;}
.x2{left:58.555128px;}
.xab{left:61.852532px;}
.xaf{left:65.308586px;}
.xb5{left:68.956780px;}
.xae{left:73.043153px;}
.xb2{left:78.831083px;}
.xad{left:80.778268px;}
.x5f{left:87.488964px;}
.x8a{left:110.589015px;}
.xaa{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x5a{left:115.924500px;}
.x90{left:119.385000px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x52{left:133.678500px;}
.xa4{left:135.007500px;}
.x91{left:140.127000px;}
.x5{left:146.170500px;}
.x12{left:147.244500px;}
.x8e{left:148.972500px;}
.xa1{left:150.216000px;}
.x88{left:154.042720px;}
.x25{left:155.831180px;}
.x8b{left:157.803498px;}
.x7c{left:160.021500px;}
.x18{left:161.273189px;}
.x61{left:165.612000px;}
.x8f{left:168.805500px;}
.x55{left:170.824500px;}
.x49{left:172.387500px;}
.x9e{left:176.197500px;}
.x9f{left:178.813500px;}
.x62{left:180.555000px;}
.x50{left:183.108000px;}
.x4a{left:187.332000px;}
.x7d{left:188.415000px;}
.x53{left:190.185000px;}
.x9{left:192.844500px;}
.xa0{left:194.872500px;}
.x51{left:198.052500px;}
.x17{left:199.971922px;}
.x77{left:203.809500px;}
.x54{left:205.128000px;}
.x7f{left:207.507000px;}
.x81{left:209.445000px;}
.x9a{left:212.668500px;}
.xa9{left:214.869000px;}
.xb9{left:215.932500px;}
.x45{left:217.432500px;}
.xb1{left:220.318545px;}
.x85{left:221.935500px;}
.x3d{left:229.539000px;}
.xbf{left:230.734500px;}
.xc0{left:231.789000px;}
.x68{left:233.898000px;}
.xac{left:239.799541px;}
.xe{left:243.420000px;}
.x4e{left:245.089500px;}
.x1f{left:246.531335px;}
.x2d{left:249.543000px;}
.xf{left:250.893000px;}
.xca{left:252.097500px;}
.x5b{left:253.548000px;}
.x1d{left:256.206018px;}
.x4f{left:260.034000px;}
.x95{left:261.345000px;}
.x15{left:262.857363px;}
.xcb{left:265.518000px;}
.xba{left:268.656000px;}
.x69{left:275.721000px;}
.x2c{left:278.110500px;}
.x72{left:279.616500px;}
.x78{left:282.592500px;}
.x38{left:283.708500px;}
.x35{left:287.062500px;}
.x6a{left:289.993500px;}
.x14{left:291.276745px;}
.xb3{left:292.485850px;}
.x36{left:294.534000px;}
.x73{left:301.186500px;}
.x56{left:305.163000px;}
.x92{left:309.376500px;}
.x96{left:311.256000px;}
.x8c{left:314.452500px;}
.x57{left:319.527000px;}
.x4b{left:321.228000px;}
.x6f{left:322.975500px;}
.x31{left:333.972000px;}
.x8d{left:335.658000px;}
.x32{left:341.445000px;}
.x82{left:348.982500px;}
.x93{left:352.743000px;}
.x97{left:356.134500px;}
.x20{left:358.999527px;}
.x3a{left:363.030000px;}
.x7a{left:365.719500px;}
.xb8{left:370.463520px;}
.x23{left:374.720888px;}
.x3b{left:377.973000px;}
.x7b{left:380.664000px;}
.x28{left:381.976900px;}
.x9b{left:385.455000px;}
.x79{left:386.551500px;}
.x98{left:387.601500px;}
.x29{left:389.837580px;}
.x27{left:393.465586px;}
.xa{left:394.795500px;}
.xb7{left:400.846623px;}
.xb{left:402.267000px;}
.x2a{left:404.954273px;}
.x9c{left:407.146500px;}
.x5d{left:412.535699px;}
.x60{left:414.603982px;}
.x65{left:422.526000px;}
.x4d{left:423.628500px;}
.x41{left:434.370000px;}
.x2e{left:435.625500px;}
.x94{left:437.086500px;}
.x46{left:439.189500px;}
.x3e{left:444.289500px;}
.xa6{left:447.540000px;}
.x42{left:449.313000px;}
.x2b{left:456.351027px;}
.x9d{left:460.389000px;}
.x33{left:466.842000px;}
.x7e{left:468.420000px;}
.x1b{left:469.653716px;}
.x34{left:474.313500px;}
.xc{left:476.173500px;}
.x43{left:481.833000px;}
.xd{left:483.645000px;}
.x6b{left:485.128500px;}
.xb4{left:488.478163px;}
.x39{left:491.769000px;}
.xa5{left:498.058500px;}
.x13{left:500.491769px;}
.x86{left:505.603500px;}
.x58{left:509.443500px;}
.x87{left:520.548000px;}
.x59{left:524.388000px;}
.xa2{left:526.774500px;}
.x24{left:537.376499px;}
.xbd{left:541.582500px;}
.x4c{left:552.073500px;}
.xbe{left:556.527000px;}
.x1e{left:567.609884px;}
.x21{left:568.819219px;}
.xb6{left:570.594241px;}
.x66{left:571.870500px;}
.x67{left:587.622000px;}
.x26{left:593.610595px;}
.x2f{left:595.774500px;}
.x63{left:601.764000px;}
.x30{left:603.247500px;}
.xa3{left:613.054500px;}
.xa7{left:615.667500px;}
.x3c{left:617.701500px;}
.xa8{left:633.369000px;}
.x70{left:640.972500px;}
.xbc{left:643.672500px;}
.x37{left:651.139500px;}
.x99{left:653.571000px;}
.x71{left:655.917000px;}
.x1a{left:658.914706px;}
.x6c{left:661.726500px;}
.xc3{left:664.999500px;}
.x83{left:666.048000px;}
.x6d{left:669.616500px;}
.xc5{left:672.742500px;}
.x84{left:674.266500px;}
.xbb{left:677.563500px;}
.xc1{left:679.806000px;}
.x6e{left:684.561000px;}
.x64{left:685.750500px;}
.x47{left:687.163500px;}
.x80{left:690.510000px;}
.x22{left:692.776098px;}
.x3f{left:696.537000px;}
.xc6{left:699.640500px;}
.x7{left:701.339982px;}
.x40{left:704.008500px;}
.xc2{left:706.705500px;}
.x74{left:708.306000px;}
.xc7{left:711.931500px;}
.x48{left:716.209500px;}
.x44{left:718.435500px;}
.x75{left:725.949000px;}
.xc8{left:738.292500px;}
.x76{left:742.717500px;}
.xc9{left:749.463000px;}
.x5c{left:756.895500px;}
.x10{left:764.367000px;}
.x11{left:771.838500px;}
.xc4{left:776.496000px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-10.453333pt;}
.v6{vertical-align:-9.309411pt;}
.v7{vertical-align:-7.504000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:6.616435pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:23.694046pt;}
.ls40{letter-spacing:-0.161502pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.161502pt;}
.ls20{letter-spacing:0.201755pt;}
.ls41{letter-spacing:0.215336pt;}
.ls3a{letter-spacing:0.599051pt;}
.ls30{letter-spacing:0.664000pt;}
.ls3c{letter-spacing:0.879273pt;}
.ls25{letter-spacing:0.882096pt;}
.ls38{letter-spacing:0.884606pt;}
.ls3b{letter-spacing:0.891380pt;}
.ls39{letter-spacing:0.910546pt;}
.ls36{letter-spacing:0.957755pt;}
.ls37{letter-spacing:0.987509pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2c{letter-spacing:1.263089pt;}
.ls31{letter-spacing:1.299510pt;}
.ls34{letter-spacing:1.303307pt;}
.ls1f{letter-spacing:1.325904pt;}
.ls2b{letter-spacing:1.326859pt;}
.ls33{letter-spacing:1.489493pt;}
.ls13{letter-spacing:1.609437pt;}
.ls15{letter-spacing:1.627927pt;}
.ls4{letter-spacing:1.654338pt;}
.ls17{letter-spacing:1.729833pt;}
.ls49{letter-spacing:1.783312pt;}
.lsc{letter-spacing:1.883768pt;}
.ls14{letter-spacing:1.923757pt;}
.ls1b{letter-spacing:1.957296pt;}
.ls18{letter-spacing:1.991910pt;}
.ls1c{letter-spacing:2.015774pt;}
.ls11{letter-spacing:2.074252pt;}
.ls16{letter-spacing:2.088227pt;}
.ls10{letter-spacing:2.090162pt;}
.ls22{letter-spacing:2.102177pt;}
.ls21{letter-spacing:2.280955pt;}
.ls8{letter-spacing:2.343423pt;}
.ls12{letter-spacing:2.386422pt;}
.ls1e{letter-spacing:2.407921pt;}
.ls23{letter-spacing:2.494475pt;}
.lsb{letter-spacing:2.515418pt;}
.lsf{letter-spacing:2.536917pt;}
.ls9{letter-spacing:2.601415pt;}
.ls2a{letter-spacing:2.688833pt;}
.ls47{letter-spacing:2.743312pt;}
.ls1d{letter-spacing:2.816408pt;}
.lsa{letter-spacing:2.837907pt;}
.ls1a{letter-spacing:3.074399pt;}
.ls19{letter-spacing:3.525885pt;}
.ls45{letter-spacing:3.698080pt;}
.ls42{letter-spacing:4.123147pt;}
.ls44{letter-spacing:4.505707pt;}
.ls48{letter-spacing:4.633227pt;}
.ls43{letter-spacing:4.845760pt;}
.ls46{letter-spacing:4.973280pt;}
.ls5{letter-spacing:10.626667pt;}
.ls2e{letter-spacing:11.235510pt;}
.ls2d{letter-spacing:11.256384pt;}
.ls4e{letter-spacing:11.544000pt;}
.ls4a{letter-spacing:11.960000pt;}
.ls4d{letter-spacing:12.136000pt;}
.lsd{letter-spacing:12.536000pt;}
.ls35{letter-spacing:13.229333pt;}
.lse{letter-spacing:13.389333pt;}
.ls32{letter-spacing:13.602667pt;}
.ls24{letter-spacing:13.944000pt;}
.ls27{letter-spacing:13.948763pt;}
.ls4b{letter-spacing:15.346667pt;}
.ls4c{letter-spacing:15.741333pt;}
.ls26{letter-spacing:16.730581pt;}
.ls2f{letter-spacing:17.906667pt;}
.ls29{letter-spacing:33.587625pt;}
.ls2{letter-spacing:62.432000pt;}
.ls0{letter-spacing:64.314667pt;}
.ls3{letter-spacing:64.315179pt;}
.ls1{letter-spacing:64.320000pt;}
.ls3e{letter-spacing:66.836606pt;}
.ls3d{letter-spacing:99.652606pt;}
.ls28{letter-spacing:761.499038pt;}
.ws81{word-spacing:-37.287360pt;}
.ws7e{word-spacing:-23.470322pt;}
.ws80{word-spacing:-23.466179pt;}
.ws7f{word-spacing:-23.449606pt;}
.ws128{word-spacing:-15.472427pt;}
.ws145{word-spacing:-15.259893pt;}
.ws12a{word-spacing:-15.132373pt;}
.ws125{word-spacing:-14.749813pt;}
.ws12c{word-spacing:-14.324747pt;}
.ws5d{word-spacing:-13.284000pt;}
.ws40{word-spacing:-12.164302pt;}
.ws8{word-spacing:-11.954667pt;}
.ws3f{word-spacing:-11.906310pt;}
.ws41{word-spacing:-11.205433pt;}
.ws44{word-spacing:-10.968941pt;}
.ws42{word-spacing:-10.882944pt;}
.ws135{word-spacing:-10.626667pt;}
.ws43{word-spacing:-10.251294pt;}
.ws2{word-spacing:-10.096000pt;}
.ws138{word-spacing:-4.080597pt;}
.ws134{word-spacing:-4.038473pt;}
.ws133{word-spacing:-4.037963pt;}
.ws13f{word-spacing:-3.868149pt;}
.ws126{word-spacing:-3.740544pt;}
.ws123{word-spacing:-3.612897pt;}
.ws146{word-spacing:-3.103029pt;}
.ws129{word-spacing:-3.060352pt;}
.ws124{word-spacing:-2.932960pt;}
.wsa9{word-spacing:-2.922533pt;}
.ws139{word-spacing:-2.805440pt;}
.ws12d{word-spacing:-2.762933pt;}
.ws144{word-spacing:-2.720087pt;}
.ws143{word-spacing:-2.465174pt;}
.ws130{word-spacing:-2.423008pt;}
.ws13c{word-spacing:-2.422880pt;}
.ws5e{word-spacing:-2.337984pt;}
.ws5f{word-spacing:-2.125706pt;}
.ws60{word-spacing:-2.072357pt;}
.ws77{word-spacing:-2.019009pt;}
.ws158{word-spacing:-1.960470pt;}
.ws157{word-spacing:-1.912986pt;}
.ws78{word-spacing:-1.912896pt;}
.ws12f{word-spacing:-1.827829pt;}
.wsb{word-spacing:-1.696326pt;}
.ws137{word-spacing:-1.657717pt;}
.ws13e{word-spacing:-1.615551pt;}
.ws142{word-spacing:-1.615041pt;}
.ws97{word-spacing:-1.541103pt;}
.ws14b{word-spacing:-1.530054pt;}
.wsc5{word-spacing:-1.526730pt;}
.wsf1{word-spacing:-1.489493pt;}
.wsaa{word-spacing:-1.487808pt;}
.wsc7{word-spacing:-1.335890pt;}
.wsad{word-spacing:-1.328878pt;}
.ws7a{word-spacing:-1.328347pt;}
.wsf2{word-spacing:-1.303307pt;}
.ws68{word-spacing:-1.275530pt;}
.ws67{word-spacing:-1.274998pt;}
.ws115{word-spacing:-1.222181pt;}
.wsa{word-spacing:-1.175671pt;}
.ws2b{word-spacing:-1.168833pt;}
.ws127{word-spacing:-1.147297pt;}
.ws9a{word-spacing:-1.136181pt;}
.ws9b{word-spacing:-1.116069pt;}
.ws163{word-spacing:-1.004240pt;}
.ws132{word-spacing:-0.935147pt;}
.wseb{word-spacing:-0.930137pt;}
.ws45{word-spacing:-0.903259pt;}
.ws7c{word-spacing:-0.849910pt;}
.ws48{word-spacing:-0.797093pt;}
.ws49{word-spacing:-0.743745pt;}
.ws131{word-spacing:-0.680107pt;}
.ws50{word-spacing:-0.637632pt;}
.ws1b{word-spacing:-0.584283pt;}
.ws2c{word-spacing:-0.478171pt;}
.ws16b{word-spacing:-0.430368pt;}
.wsc4{word-spacing:-0.424822pt;}
.ws7b{word-spacing:-0.372005pt;}
.wsa0{word-spacing:-0.324721pt;}
.ws1d{word-spacing:-0.318657pt;}
.wsa1{word-spacing:-0.318070pt;}
.wsa2{word-spacing:-0.272406pt;}
.wsa3{word-spacing:-0.269947pt;}
.ws13{word-spacing:-0.265893pt;}
.ws178{word-spacing:-0.239476pt;}
.ws177{word-spacing:-0.238902pt;}
.wsbc{word-spacing:-0.220779pt;}
.ws8a{word-spacing:-0.218800pt;}
.ws10f{word-spacing:-0.215336pt;}
.wsf{word-spacing:-0.212544pt;}
.wsbd{word-spacing:-0.209792pt;}
.ws8b{word-spacing:-0.202565pt;}
.wsbb{word-spacing:-0.196149pt;}
.ws54{word-spacing:-0.194287pt;}
.ws8c{word-spacing:-0.192817pt;}
.ws179{word-spacing:-0.191466pt;}
.ws98{word-spacing:-0.186864pt;}
.wsc2{word-spacing:-0.166992pt;}
.wsc1{word-spacing:-0.162064pt;}
.ws110{word-spacing:-0.161502pt;}
.ws85{word-spacing:-0.159727pt;}
.ws1f{word-spacing:-0.159195pt;}
.wsda{word-spacing:-0.143456pt;}
.wsfb{word-spacing:-0.110667pt;}
.ws19{word-spacing:-0.106431pt;}
.ws15f{word-spacing:-0.095446pt;}
.ws10c{word-spacing:-0.089295pt;}
.ws6b{word-spacing:-0.073664pt;}
.wsa6{word-spacing:-0.053614pt;}
.wsba{word-spacing:-0.053136pt;}
.wsd{word-spacing:-0.053083pt;}
.ws162{word-spacing:-0.048010pt;}
.wscf{word-spacing:-0.042080pt;}
.wsdb{word-spacing:-0.038757pt;}
.wsc6{word-spacing:-0.027928pt;}
.ws3{word-spacing:-0.022220pt;}
.ws7{word-spacing:-0.020084pt;}
.ws1{word-spacing:-0.016266pt;}
.ws5{word-spacing:-0.013355pt;}
.ws4{word-spacing:-0.012310pt;}
.ws5b{word-spacing:-0.011402pt;}
.ws6{word-spacing:-0.010859pt;}
.ws63{word-spacing:-0.009398pt;}
.wsd6{word-spacing:-0.005915pt;}
.ws75{word-spacing:-0.005327pt;}
.ws22{word-spacing:-0.000747pt;}
.ws2d{word-spacing:-0.000266pt;}
.ws23{word-spacing:-0.000128pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.000266pt;}
.ws155{word-spacing:0.005125pt;}
.ws16e{word-spacing:0.009434pt;}
.ws169{word-spacing:0.014768pt;}
.ws172{word-spacing:0.025018pt;}
.ws17a{word-spacing:0.039044pt;}
.wsa7{word-spacing:0.041952pt;}
.ws160{word-spacing:0.047484pt;}
.ws170{word-spacing:0.048010pt;}
.ws11{word-spacing:0.053083pt;}
.ws92{word-spacing:0.090225pt;}
.ws17d{word-spacing:0.095446pt;}
.ws93{word-spacing:0.101366pt;}
.ws29{word-spacing:0.106378pt;}
.ws4a{word-spacing:0.131909pt;}
.ws147{word-spacing:0.143456pt;}
.ws34{word-spacing:0.153696pt;}
.ws33{word-spacing:0.155275pt;}
.ws2a{word-spacing:0.159195pt;}
.ws6a{word-spacing:0.159727pt;}
.ws10e{word-spacing:0.161502pt;}
.wsc0{word-spacing:0.163035pt;}
.ws152{word-spacing:0.191466pt;}
.ws8d{word-spacing:0.199674pt;}
.ws13a{word-spacing:0.212151pt;}
.ws140{word-spacing:0.212533pt;}
.ws30{word-spacing:0.212544pt;}
.ws14c{word-spacing:0.238902pt;}
.ws173{word-spacing:0.239476pt;}
.ws8e{word-spacing:0.240203pt;}
.ws10d{word-spacing:0.246891pt;}
.ws46{word-spacing:0.254875pt;}
.ws47{word-spacing:0.265361pt;}
.ws3c{word-spacing:0.265893pt;}
.ws12{word-spacing:0.318657pt;}
.ws11e{word-spacing:0.319188pt;}
.ws164{word-spacing:0.334922pt;}
.ws141{word-spacing:0.340053pt;}
.ws11b{word-spacing:0.372005pt;}
.ws16a{word-spacing:0.382406pt;}
.ws174{word-spacing:0.477852pt;}
.ws1a{word-spacing:0.478171pt;}
.wsb4{word-spacing:0.531466pt;}
.ws117{word-spacing:0.584283pt;}
.wsb8{word-spacing:0.637632pt;}
.wsd1{word-spacing:0.653141pt;}
.ws31{word-spacing:0.690981pt;}
.wsb6{word-spacing:0.743745pt;}
.ws150{word-spacing:0.765290pt;}
.ws69{word-spacing:0.797093pt;}
.wsf9{word-spacing:0.849910pt;}
.ws4e{word-spacing:0.903259pt;}
.ws86{word-spacing:0.903312pt;}
.ws4d{word-spacing:0.956554pt;}
.ws5c{word-spacing:1.009371pt;}
.ws76{word-spacing:1.062720pt;}
.ws156{word-spacing:1.099686pt;}
.ws6d{word-spacing:1.107931pt;}
.ws6c{word-spacing:1.116069pt;}
.wsd0{word-spacing:1.168833pt;}
.ws13b{word-spacing:1.189719pt;}
.ws136{word-spacing:1.190272pt;}
.ws89{word-spacing:1.222181pt;}
.ws13d{word-spacing:1.232736pt;}
.ws16f{word-spacing:1.243142pt;}
.wsd4{word-spacing:1.275530pt;}
.ws3d{word-spacing:1.328294pt;}
.ws11c{word-spacing:1.381642pt;}
.ws73{word-spacing:1.434459pt;}
.ws74{word-spacing:1.434991pt;}
.wsa5{word-spacing:1.487808pt;}
.ws15a{word-spacing:1.530054pt;}
.ws35{word-spacing:1.541103pt;}
.ws168{word-spacing:1.625548pt;}
.ws14{word-spacing:1.647269pt;}
.wscc{word-spacing:1.679819pt;}
.ws62{word-spacing:1.700086pt;}
.ws96{word-spacing:1.700618pt;}
.ws119{word-spacing:1.753382pt;}
.ws18{word-spacing:1.806730pt;}
.ws11d{word-spacing:1.859547pt;}
.ws25{word-spacing:1.912896pt;}
.ws4f{word-spacing:1.965660pt;}
.ws66{word-spacing:1.966191pt;}
.wsb7{word-spacing:2.019009pt;}
.ws113{word-spacing:2.072357pt;}
.ws7d{word-spacing:2.125174pt;}
.ws116{word-spacing:2.125706pt;}
.ws14d{word-spacing:2.151888pt;}
.ws161{word-spacing:2.199372pt;}
.ws26{word-spacing:2.284635pt;}
.ws52{word-spacing:2.444097pt;}
.ws9d{word-spacing:2.497445pt;}
.wsa4{word-spacing:2.521882pt;}
.ws16c{word-spacing:2.534294pt;}
.ws14e{word-spacing:2.629740pt;}
.ws14f{word-spacing:2.630266pt;}
.ws149{word-spacing:2.677750pt;}
.wsfa{word-spacing:2.709723pt;}
.ws51{word-spacing:2.763019pt;}
.ws64{word-spacing:2.807318pt;}
.wsac{word-spacing:2.816367pt;}
.ws151{word-spacing:2.869120pt;}
.ws112{word-spacing:2.869185pt;}
.ws9{word-spacing:2.869216pt;}
.ws61{word-spacing:2.869716pt;}
.ws121{word-spacing:2.875872pt;}
.ws17c{word-spacing:2.916652pt;}
.ws17e{word-spacing:2.917226pt;}
.wsa8{word-spacing:2.922533pt;}
.ws15b{word-spacing:2.964662pt;}
.ws6e{word-spacing:2.975297pt;}
.ws118{word-spacing:3.028646pt;}
.wsf4{word-spacing:3.073648pt;}
.wsf3{word-spacing:3.081994pt;}
.ws148{word-spacing:3.108118pt;}
.ws53{word-spacing:3.110406pt;}
.ws32{word-spacing:3.134811pt;}
.ws16{word-spacing:3.174288pt;}
.ws72{word-spacing:3.177371pt;}
.ws17{word-spacing:3.184000pt;}
.ws1c{word-spacing:3.188107pt;}
.ws111{word-spacing:3.188160pt;}
.ws3b{word-spacing:3.241455pt;}
.ws1e{word-spacing:3.347621pt;}
.ws28{word-spacing:3.400917pt;}
.wse{word-spacing:3.453734pt;}
.ws79{word-spacing:3.560112pt;}
.wsbe{word-spacing:3.613195pt;}
.ws10a{word-spacing:3.666012pt;}
.ws10b{word-spacing:3.666543pt;}
.wsb3{word-spacing:3.729426pt;}
.wsb2{word-spacing:3.729952pt;}
.wsb1{word-spacing:3.777962pt;}
.ws12e{word-spacing:3.868107pt;}
.ws176{word-spacing:4.016864pt;}
.ws6f{word-spacing:4.038283pt;}
.wsb0{word-spacing:4.064587pt;}
.ws27{word-spacing:4.091631pt;}
.ws21{word-spacing:4.197744pt;}
.wsb9{word-spacing:4.251093pt;}
.ws165{word-spacing:4.255814pt;}
.ws24{word-spacing:4.357258pt;}
.ws94{word-spacing:4.384448pt;}
.ws109{word-spacing:4.399270pt;}
.ws39{word-spacing:4.399718pt;}
.ws38{word-spacing:4.404054pt;}
.ws3a{word-spacing:4.410022pt;}
.ws36{word-spacing:4.410554pt;}
.ws37{word-spacing:4.429909pt;}
.ws95{word-spacing:4.437238pt;}
.wsb5{word-spacing:4.463371pt;}
.ws11a{word-spacing:4.516719pt;}
.wsaf{word-spacing:4.590735pt;}
.ws9e{word-spacing:4.622832pt;}
.wsab{word-spacing:4.676181pt;}
.ws108{word-spacing:4.686229pt;}
.ws9f{word-spacing:4.728998pt;}
.ws166{word-spacing:4.782201pt;}
.ws171{word-spacing:4.829638pt;}
.wsf8{word-spacing:4.835110pt;}
.wsae{word-spacing:4.925323pt;}
.ws9c{word-spacing:4.994625pt;}
.ws58{word-spacing:5.037147pt;}
.ws56{word-spacing:5.043919pt;}
.ws55{word-spacing:5.047389pt;}
.ws5a{word-spacing:5.047920pt;}
.ws59{word-spacing:5.051834pt;}
.ws120{word-spacing:5.068587pt;}
.wsce{word-spacing:5.154086pt;}
.ws3e{word-spacing:5.260730pt;}
.ws15e{word-spacing:5.355499pt;}
.wsbf{word-spacing:5.366895pt;}
.ws11f{word-spacing:5.403509pt;}
.wsc3{word-spacing:5.419659pt;}
.ws20{word-spacing:5.738635pt;}
.ws65{word-spacing:5.791983pt;}
.ws12b{word-spacing:5.908427pt;}
.ws87{word-spacing:6.110374pt;}
.ws88{word-spacing:6.110906pt;}
.ws153{word-spacing:6.216235pt;}
.ws4b{word-spacing:6.376001pt;}
.ws4c{word-spacing:6.376533pt;}
.ws57{word-spacing:6.409712pt;}
.wsd2{word-spacing:6.429297pt;}
.wsd3{word-spacing:6.429881pt;}
.wsf7{word-spacing:6.535462pt;}
.wsf5{word-spacing:6.535994pt;}
.wsf6{word-spacing:6.540885pt;}
.ws17b{word-spacing:6.646651pt;}
.ws10{word-spacing:6.748272pt;}
.ws2f{word-spacing:7.067194pt;}
.ws114{word-spacing:7.120011pt;}
.ws91{word-spacing:7.172571pt;}
.ws90{word-spacing:7.173360pt;}
.ws99{word-spacing:7.279473pt;}
.ws70{word-spacing:7.438987pt;}
.wsc{word-spacing:7.545631pt;}
.ws8f{word-spacing:7.598448pt;}
.ws167{word-spacing:8.136506pt;}
.ws154{word-spacing:8.141195pt;}
.ws71{word-spacing:8.608085pt;}
.ws159{word-spacing:8.655083pt;}
.ws2e{word-spacing:8.767546pt;}
.wsca{word-spacing:9.351564pt;}
.wscb{word-spacing:9.352095pt;}
.wsc8{word-spacing:9.360965pt;}
.wsc9{word-spacing:9.370485pt;}
.ws14a{word-spacing:11.284823pt;}
.ws15c{word-spacing:12.241579pt;}
.ws16d{word-spacing:12.289589pt;}
.ws83{word-spacing:12.350071pt;}
.wsd9{word-spacing:12.958906pt;}
.wsd5{word-spacing:13.200494pt;}
.wsd7{word-spacing:13.207506pt;}
.wsd8{word-spacing:13.484816pt;}
.ws175{word-spacing:14.345504pt;}
.ws15d{word-spacing:14.632416pt;}
.ws82{word-spacing:15.884084pt;}
.wscd{word-spacing:27.843423pt;}
.wse2{word-spacing:81.974613pt;}
.wse8{word-spacing:84.591221pt;}
.wse0{word-spacing:84.626485pt;}
.wsec{word-spacing:84.639040pt;}
.wsea{word-spacing:96.593707pt;}
.wse9{word-spacing:97.838149pt;}
.wsf0{word-spacing:97.843482pt;}
.wsed{word-spacing:109.795482pt;}
.wsdc{word-spacing:113.473696pt;}
.wse6{word-spacing:117.442645pt;}
.wse5{word-spacing:121.779360pt;}
.wsde{word-spacing:122.160000pt;}
.wsdd{word-spacing:122.165333pt;}
.wsef{word-spacing:127.508384pt;}
.wsdf{word-spacing:127.893333pt;}
.wsee{word-spacing:129.397312pt;}
.wse1{word-spacing:141.351979pt;}
.ws122{word-spacing:141.973621pt;}
.wse3{word-spacing:153.306645pt;}
.wse7{word-spacing:160.319051pt;}
.wse4{word-spacing:162.976256pt;}
.wsfc{word-spacing:180.911541pt;}
.ws103{word-spacing:181.110786pt;}
.ws105{word-spacing:181.213090pt;}
.ws107{word-spacing:181.215528pt;}
.ws106{word-spacing:181.310615pt;}
.ws104{word-spacing:181.362791pt;}
.wsfe{word-spacing:194.368477pt;}
.ws102{word-spacing:194.403391pt;}
.wsfd{word-spacing:194.418410pt;}
.ws100{word-spacing:194.512034pt;}
.ws101{word-spacing:194.572402pt;}
.wsff{word-spacing:194.717715pt;}
.ws84{word-spacing:729.560011pt;}
._47{margin-left:-18.616118pt;}
._48{margin-left:-16.894071pt;}
._18{margin-left:-15.019408pt;}
._17{margin-left:-10.951741pt;}
._0{margin-left:-8.607553pt;}
._1{margin-left:-7.077940pt;}
._5{margin-left:-5.308015pt;}
._6{margin-left:-3.920892pt;}
._1d{margin-left:-2.851577pt;}
._4{margin-left:-1.721568pt;}
._8{width:0.969929pt;}
._2{width:2.672531pt;}
._43{width:3.570560pt;}
._41{width:4.718240pt;}
._21{width:5.816674pt;}
._46{width:6.772081pt;}
._44{width:7.802198pt;}
._45{width:8.713867pt;}
._42{width:9.618101pt;}
._1f{width:11.087720pt;}
._d{width:12.147141pt;}
._1b{width:13.888915pt;}
._7{width:14.823882pt;}
._c{width:15.855531pt;}
._30{width:16.746927pt;}
._b{width:17.641258pt;}
._e{width:19.044329pt;}
._16{width:20.192690pt;}
._10{width:21.117005pt;}
._a{width:22.369937pt;}
._9{width:23.320960pt;}
._1a{width:24.336447pt;}
._19{width:25.239387pt;}
._1e{width:26.673581pt;}
._f{width:27.758367pt;}
._11{width:29.990079pt;}
._15{width:31.086067pt;}
._22{width:33.157077pt;}
._1c{width:35.037574pt;}
._25{width:36.587682pt;}
._14{width:38.863366pt;}
._4d{width:41.748422pt;}
._4b{width:42.989029pt;}
._24{width:45.156678pt;}
._4a{width:48.084938pt;}
._4e{width:49.553640pt;}
._4c{width:54.991467pt;}
._3{width:61.660949pt;}
._32{width:63.963833pt;}
._49{width:65.190084pt;}
._31{width:79.570261pt;}
._3a{width:81.578645pt;}
._20{width:83.156661pt;}
._2a{width:117.442645pt;}
._39{width:126.862923pt;}
._29{width:129.397312pt;}
._36{width:135.661557pt;}
._28{width:136.976512pt;}
._26{width:139.726287pt;}
._27{width:141.351979pt;}
._2b{width:147.281493pt;}
._40{width:148.620416pt;}
._33{width:149.959339pt;}
._34{width:153.976107pt;}
._37{width:164.974400pt;}
._3c{width:168.321707pt;}
._3b{width:172.195019pt;}
._3d{width:176.307424pt;}
._3f{width:177.311616pt;}
._35{width:180.658923pt;}
._38{width:194.191605pt;}
._2c{width:195.531915pt;}
._3e{width:208.776394pt;}
._2d{width:221.968829pt;}
._2f{width:222.975193pt;}
._2e{width:249.960081pt;}
._12{width:886.924735pt;}
._23{width:1818.037333pt;}
._13{width:1839.290667pt;}
.fsf{font-size:25.985147pt;}
.fs12{font-size:27.927954pt;}
.fsa{font-size:30.099014pt;}
.fs11{font-size:32.582673pt;}
.fs9{font-size:34.398874pt;}
.fsb{font-size:36.548803pt;}
.fs4{font-size:37.194667pt;}
.fs10{font-size:37.237317pt;}
.fs7{font-size:37.276537pt;}
.fs14{font-size:38.757333pt;}
.fs16{font-size:39.010133pt;}
.fs3{font-size:40.384000pt;}
.fs6{font-size:41.988267pt;}
.fs13{font-size:42.080000pt;}
.fs8{font-size:42.506667pt;}
.fs17{font-size:44.293333pt;}
.fs5{font-size:47.818667pt;}
.fse{font-size:49.716480pt;}
.fs1{font-size:53.136000pt;}
.fs15{font-size:53.833984pt;}
.fsd{font-size:55.365333pt;}
.fsc{font-size:62.347958pt;}
.fs2{font-size:95.642667pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:2.149930pt;}
.y180{bottom:2.230404pt;}
.y165{bottom:2.230770pt;}
.y13{bottom:3.044747pt;}
.y67{bottom:3.224894pt;}
.y73{bottom:3.762377pt;}
.y16b{bottom:4.094967pt;}
.y17e{bottom:4.095333pt;}
.y16d{bottom:4.096064pt;}
.y163{bottom:4.096186pt;}
.y173{bottom:4.096308pt;}
.y169{bottom:4.097405pt;}
.y17a{bottom:4.682679pt;}
.y87{bottom:6.449789pt;}
.y6e{bottom:7.524754pt;}
.y71{bottom:8.599718pt;}
.yc7{bottom:8.837104pt;}
.y78{bottom:9.137201pt;}
.y12{bottom:12.578910pt;}
.y66{bottom:13.437060pt;}
.y2{bottom:14.236644pt;}
.y7f{bottom:15.049507pt;}
.yc9{bottom:15.382072pt;}
.ycb{bottom:15.383108pt;}
.y7d{bottom:16.124472pt;}
.y6d{bottom:17.736919pt;}
.yc6{bottom:21.673278pt;}
.y84{bottom:22.574261pt;}
.y7c{bottom:25.261673pt;}
.y6b{bottom:31.173979pt;}
.y83{bottom:31.711462pt;}
.y7b{bottom:34.398874pt;}
.y82{bottom:40.848662pt;}
.y6a{bottom:41.386145pt;}
.y7a{bottom:43.536074pt;}
.y126{bottom:47.209002pt;}
.yc3{bottom:50.554410pt;}
.yc8{bottom:51.025681pt;}
.y30{bottom:56.693333pt;}
.y125{bottom:64.732044pt;}
.y127{bottom:78.142311pt;}
.yca{bottom:83.403538pt;}
.y2f{bottom:96.544000pt;}
.y232{bottom:96.850667pt;}
.yee{bottom:97.169333pt;}
.ya2{bottom:97.488000pt;}
.yc4{bottom:98.318482pt;}
.y101{bottom:100.450667pt;}
.y1a4{bottom:100.754667pt;}
.y120{bottom:102.854076pt;}
.y1fd{bottom:103.664000pt;}
.yaf{bottom:106.545333pt;}
.y1c5{bottom:106.872000pt;}
.y161{bottom:110.746667pt;}
.y123{bottom:111.593399pt;}
.y231{bottom:114.066667pt;}
.y2e{bottom:114.556000pt;}
.yed{bottom:115.182667pt;}
.ya1{bottom:115.501333pt;}
.y100{bottom:118.464000pt;}
.y1a3{bottom:118.766667pt;}
.y14c{bottom:119.793333pt;}
.y1fc{bottom:120.880000pt;}
.y1c4{bottom:121.132000pt;}
.yae{bottom:124.558667pt;}
.y124{bottom:126.188735pt;}
.y160{bottom:128.758667pt;}
.y230{bottom:131.281333pt;}
.y2d{bottom:132.568000pt;}
.yec{bottom:133.194667pt;}
.ya0{bottom:133.513333pt;}
.yc5{bottom:134.931562pt;}
.y1c3{bottom:135.392000pt;}
.y14b{bottom:135.788000pt;}
.yff{bottom:136.476000pt;}
.y1a2{bottom:136.780000pt;}
.y1fb{bottom:138.094667pt;}
.y122{bottom:140.854170pt;}
.yad{bottom:142.570667pt;}
.y15f{bottom:146.770667pt;}
.y22f{bottom:148.497333pt;}
.y1c2{bottom:149.652000pt;}
.y18c{bottom:149.980000pt;}
.y14a{bottom:150.400000pt;}
.y2c{bottom:150.581333pt;}
.yeb{bottom:151.208000pt;}
.y9f{bottom:151.525333pt;}
.y1a1{bottom:154.792000pt;}
.y1fa{bottom:155.310667pt;}
.y121{bottom:162.429968pt;}
.y1c1{bottom:163.912000pt;}
.y15e{bottom:164.784000pt;}
.y22e{bottom:165.713333pt;}
.y149{bottom:166.394667pt;}
.yfe{bottom:167.588000pt;}
.y18b{bottom:167.992000pt;}
.yac{bottom:168.553333pt;}
.y2b{bottom:168.593333pt;}
.yea{bottom:169.220000pt;}
.y9e{bottom:169.538667pt;}
.y1f9{bottom:172.525333pt;}
.y1a0{bottom:172.804000pt;}
.y1c0{bottom:178.172000pt;}
.y148{bottom:181.006667pt;}
.y15d{bottom:182.796000pt;}
.y22d{bottom:182.928000pt;}
.yfd{bottom:184.684000pt;}
.y18a{bottom:186.005333pt;}
.y2a{bottom:186.606667pt;}
.ye9{bottom:187.232000pt;}
.y9d{bottom:187.550667pt;}
.y1f8{bottom:189.741333pt;}
.y1bf{bottom:192.432000pt;}
.y147{bottom:195.618667pt;}
.y19f{bottom:198.786667pt;}
.yab{bottom:199.504000pt;}
.y22c{bottom:200.144000pt;}
.y15c{bottom:200.809333pt;}
.y189{bottom:204.017333pt;}
.y29{bottom:204.618667pt;}
.ye8{bottom:205.245333pt;}
.y9c{bottom:205.564000pt;}
.y1f7{bottom:206.957333pt;}
.y146{bottom:211.613333pt;}
.y11e{bottom:214.621333pt;}
.y22b{bottom:217.358667pt;}
.yaa{bottom:217.517333pt;}
.y15b{bottom:218.821333pt;}
.y188{bottom:222.029333pt;}
.y28{bottom:222.630667pt;}
.ye7{bottom:223.257333pt;}
.y9b{bottom:223.576000pt;}
.y5c{bottom:223.960000pt;}
.y1f6{bottom:224.172000pt;}
.y1be{bottom:224.185333pt;}
.y145{bottom:226.225333pt;}
.y19e{bottom:229.737333pt;}
.y11d{bottom:232.633333pt;}
.y22a{bottom:234.574667pt;}
.ya9{bottom:235.529333pt;}
.y15a{bottom:236.833333pt;}
.y187{bottom:240.042667pt;}
.y27{bottom:240.644000pt;}
.ye6{bottom:241.270667pt;}
.y1f5{bottom:241.388000pt;}
.y9a{bottom:241.588000pt;}
.y5b{bottom:241.972000pt;}
.y144{bottom:242.220000pt;}
.y19d{bottom:247.750667pt;}
.y11c{bottom:250.646667pt;}
.y229{bottom:251.790667pt;}
.ya8{bottom:253.541333pt;}
.y159{bottom:254.846667pt;}
.y1bd{bottom:256.914667pt;}
.y186{bottom:258.054667pt;}
.y1f4{bottom:258.602667pt;}
.y26{bottom:258.656000pt;}
.ye5{bottom:259.282667pt;}
.y99{bottom:259.601333pt;}
.y5a{bottom:259.984000pt;}
.y143{bottom:264.882667pt;}
.y19c{bottom:265.762667pt;}
.y11b{bottom:268.658667pt;}
.y228{bottom:269.005333pt;}
.ya7{bottom:271.554667pt;}
.y158{bottom:272.858667pt;}
.y1bc{bottom:273.426667pt;}
.y1f3{bottom:275.818667pt;}
.y185{bottom:276.068000pt;}
.y25{bottom:276.669333pt;}
.ye4{bottom:277.294667pt;}
.y98{bottom:277.613333pt;}
.y59{bottom:277.997333pt;}
.y142{bottom:279.494667pt;}
.y19b{bottom:283.776000pt;}
.y227{bottom:286.221333pt;}
.y11a{bottom:286.670667pt;}
.ya6{bottom:289.566667pt;}
.y1bb{bottom:289.938667pt;}
.y157{bottom:290.872000pt;}
.y1f1{bottom:293.033333pt;}
.y1f2{bottom:293.034667pt;}
.y184{bottom:294.080000pt;}
.y141{bottom:294.106667pt;}
.y24{bottom:294.681333pt;}
.y97{bottom:295.626667pt;}
.y58{bottom:296.009333pt;}
.y17c{bottom:297.038028pt;}
.y19a{bottom:301.788000pt;}
.y226{bottom:303.437333pt;}
.y119{bottom:304.684000pt;}
.yc1{bottom:305.224000pt;}
.y1ba{bottom:306.449333pt;}
.ya5{bottom:307.580000pt;}
.ye3{bottom:308.406667pt;}
.y140{bottom:308.718667pt;}
.y156{bottom:308.884000pt;}
.y183{bottom:312.092000pt;}
.y23{bottom:312.693333pt;}
.y96{bottom:313.638667pt;}
.y57{bottom:314.022667pt;}
.y1f0{bottom:318.220000pt;}
.y199{bottom:319.800000pt;}
.y225{bottom:320.652000pt;}
.y118{bottom:322.696000pt;}
.y1b9{bottom:322.961333pt;}
.yc0{bottom:323.064000pt;}
.ya4{bottom:325.592000pt;}
.y155{bottom:326.896000pt;}
.y13f{bottom:329.997333pt;}
.y22{bottom:330.706667pt;}
.y95{bottom:331.650667pt;}
.y56{bottom:332.034667pt;}
.y198{bottom:337.813333pt;}
.y224{bottom:337.868000pt;}
.y1b8{bottom:339.472000pt;}
.y117{bottom:340.709333pt;}
.ybf{bottom:340.904000pt;}
.y182{bottom:343.204000pt;}
.ya3{bottom:343.604000pt;}
.y154{bottom:344.909333pt;}
.yfa{bottom:348.718667pt;}
.y94{bottom:349.664000pt;}
.y223{bottom:355.082667pt;}
.y197{bottom:355.825333pt;}
.y1b7{bottom:355.984000pt;}
.y21{bottom:356.689333pt;}
.y13e{bottom:358.104000pt;}
.y116{bottom:358.721333pt;}
.ybe{bottom:358.744000pt;}
.y181{bottom:360.300000pt;}
.y1ef{bottom:361.258667pt;}
.y55{bottom:361.617333pt;}
.y153{bottom:362.921333pt;}
.yf9{bottom:366.732000pt;}
.y93{bottom:367.676000pt;}
.y222{bottom:372.298667pt;}
.y1b6{bottom:372.496000pt;}
.y18f{bottom:374.701333pt;}
.y13c{bottom:375.200000pt;}
.y1ee{bottom:375.518667pt;}
.y115{bottom:376.733333pt;}
.y13d{bottom:379.540000pt;}
.y54{bottom:379.629333pt;}
.y17b{bottom:380.237333pt;}
.y152{bottom:380.934667pt;}
.y196{bottom:381.808000pt;}
.yf8{bottom:384.744000pt;}
.y92{bottom:385.688000pt;}
.ybd{bottom:385.797333pt;}
.y1b5{bottom:389.006667pt;}
.y221{bottom:389.514667pt;}
.y1ed{bottom:389.777333pt;}
.y178{bottom:389.930132pt;}
.y13b{bottom:392.296000pt;}
.y235{bottom:394.656000pt;}
.y114{bottom:394.746667pt;}
.y53{bottom:397.642667pt;}
.y151{bottom:398.946667pt;}
.y18e{bottom:400.837333pt;}
.yf7{bottom:402.756000pt;}
.y91{bottom:403.701333pt;}
.ybc{bottom:403.810667pt;}
.y1ec{bottom:404.037333pt;}
.y1b4{bottom:405.518667pt;}
.y220{bottom:406.729333pt;}
.y177{bottom:407.629761pt;}
.y234{bottom:411.870667pt;}
.y113{bottom:412.758667pt;}
.y52{bottom:415.654667pt;}
.y150{bottom:416.958667pt;}
.y1eb{bottom:418.297333pt;}
.yf6{bottom:420.769333pt;}
.y90{bottom:421.713333pt;}
.ybb{bottom:421.822667pt;}
.y1b3{bottom:422.029333pt;}
.y21f{bottom:423.945333pt;}
.y13a{bottom:424.482667pt;}
.y20{bottom:424.608000pt;}
.y176{bottom:425.330609pt;}
.y233{bottom:429.086667pt;}
.y112{bottom:430.772000pt;}
.y1ea{bottom:432.557333pt;}
.ye2{bottom:432.850667pt;}
.y51{bottom:433.666667pt;}
.y14f{bottom:434.972000pt;}
.y1b2{bottom:438.541333pt;}
.yf5{bottom:438.781333pt;}
.y8f{bottom:439.726667pt;}
.yba{bottom:439.834667pt;}
.y21e{bottom:441.160000pt;}
.y139{bottom:442.494667pt;}
.y175{bottom:443.031457pt;}
.y1e9{bottom:446.817333pt;}
.y111{bottom:448.784000pt;}
.ye1{bottom:450.862667pt;}
.y50{bottom:451.680000pt;}
.y14e{bottom:452.984000pt;}
.y1b1{bottom:455.053333pt;}
.yf4{bottom:456.794667pt;}
.yb9{bottom:457.848000pt;}
.y21d{bottom:458.376000pt;}
.y1f{bottom:458.560000pt;}
.y138{bottom:460.508000pt;}
.y174{bottom:460.732305pt;}
.y1e8{bottom:461.077333pt;}
.y8e{bottom:465.709333pt;}
.y110{bottom:466.796000pt;}
.ye0{bottom:468.876000pt;}
.y4f{bottom:469.692000pt;}
.y1b0{bottom:471.564000pt;}
.yf3{bottom:474.806667pt;}
.y1e7{bottom:475.337333pt;}
.y21c{bottom:475.592000pt;}
.yb8{bottom:475.860000pt;}
.y1e{bottom:476.573333pt;}
.y172{bottom:478.433153pt;}
.y137{bottom:478.520000pt;}
.y14d{bottom:484.096000pt;}
.y10f{bottom:484.809333pt;}
.ydf{bottom:486.888000pt;}
.y4e{bottom:487.704000pt;}
.y1af{bottom:488.076000pt;}
.y1e6{bottom:489.597333pt;}
.yfc{bottom:491.874667pt;}
.y21b{bottom:492.806667pt;}
.yf2{bottom:492.818667pt;}
.yb7{bottom:493.873333pt;}
.y1d{bottom:494.585333pt;}
.y171{bottom:496.170573pt;}
.y136{bottom:496.533333pt;}
.y8d{bottom:496.660000pt;}
.y10e{bottom:502.821333pt;}
.y1e5{bottom:503.857333pt;}
.y1ae{bottom:504.586667pt;}
.yde{bottom:504.901333pt;}
.y4d{bottom:505.717333pt;}
.yfb{bottom:508.970667pt;}
.y21a{bottom:510.022667pt;}
.yf1{bottom:510.832000pt;}
.yb6{bottom:511.885333pt;}
.y1c{bottom:512.597333pt;}
.y170{bottom:513.871421pt;}
.y134{bottom:514.545333pt;}
.y8c{bottom:514.672000pt;}
.y1e4{bottom:518.117333pt;}
.y135{bottom:519.366667pt;}
.y10d{bottom:520.834667pt;}
.y1ad{bottom:521.098667pt;}
.ydd{bottom:522.913333pt;}
.y4c{bottom:523.729333pt;}
.y219{bottom:527.237333pt;}
.yf0{bottom:528.844000pt;}
.yb5{bottom:529.897333pt;}
.y1b{bottom:530.610667pt;}
.y16f{bottom:531.572269pt;}
.y1e3{bottom:532.377333pt;}
.y133{bottom:532.557333pt;}
.y8b{bottom:532.684000pt;}
.y1ac{bottom:537.610667pt;}
.y10c{bottom:538.846667pt;}
.ydc{bottom:540.925333pt;}
.y4b{bottom:541.742667pt;}
.y218{bottom:544.453333pt;}
.y1e2{bottom:546.637333pt;}
.yb4{bottom:547.910667pt;}
.y1a{bottom:548.622667pt;}
.y16e{bottom:549.273117pt;}
.y132{bottom:550.570667pt;}
.y8a{bottom:550.697333pt;}
.y1ab{bottom:554.121333pt;}
.y10b{bottom:556.858667pt;}
.ydb{bottom:558.938667pt;}
.y4a{bottom:559.754667pt;}
.y1e1{bottom:560.897333pt;}
.y217{bottom:561.669333pt;}
.yb3{bottom:565.922667pt;}
.y19{bottom:566.636000pt;}
.y16c{bottom:566.973965pt;}
.y131{bottom:568.582667pt;}
.y89{bottom:568.709333pt;}
.yef{bottom:572.222667pt;}
.y10a{bottom:574.872000pt;}
.y1e0{bottom:575.157333pt;}
.yda{bottom:576.950667pt;}
.y49{bottom:577.766667pt;}
.y216{bottom:578.884000pt;}
.y1aa{bottom:580.517333pt;}
.yb2{bottom:583.934667pt;}
.y18{bottom:584.648000pt;}
.y16a{bottom:584.676032pt;}
.y130{bottom:586.596000pt;}
.y109{bottom:592.884000pt;}
.yd9{bottom:594.962667pt;}
.y48{bottom:595.780000pt;}
.y215{bottom:596.100000pt;}
.y88{bottom:599.821333pt;}
.yb1{bottom:601.948000pt;}
.y1a9{bottom:601.997333pt;}
.y168{bottom:602.374442pt;}
.y17{bottom:602.660000pt;}
.y12f{bottom:604.608000pt;}
.y1df{bottom:605.357333pt;}
.y108{bottom:610.896000pt;}
.yd8{bottom:612.976000pt;}
.y214{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y1de{bottom:619.617333pt;}
.y167{bottom:620.076509pt;}
.y16{bottom:620.673333pt;}
.y12e{bottom:622.620000pt;}
.y77{bottom:623.922022pt;}
.y107{bottom:628.909333pt;}
.y213{bottom:630.530667pt;}
.yd7{bottom:630.988000pt;}
.y46{bottom:631.805333pt;}
.y1dd{bottom:633.877333pt;}
.y1a8{bottom:635.949333pt;}
.y166{bottom:637.777357pt;}
.y15{bottom:638.685333pt;}
.y12d{bottom:640.633333pt;}
.yb0{bottom:646.301333pt;}
.y106{bottom:646.921333pt;}
.y212{bottom:647.746667pt;}
.y1dc{bottom:648.137333pt;}
.yd6{bottom:649.001333pt;}
.y45{bottom:649.817333pt;}
.y6c{bottom:650.258660pt;}
.y164{bottom:654.591944pt;}
.y17d{bottom:655.035684pt;}
.y162{bottom:655.478205pt;}
.y17f{bottom:655.921946pt;}
.y14{bottom:656.698667pt;}
.y1a7{bottom:657.429333pt;}
.y85{bottom:658.320896pt;}
.y12c{bottom:658.645333pt;}
.y1db{bottom:662.397333pt;}
.y105{bottom:664.934667pt;}
.y211{bottom:664.961333pt;}
.yd5{bottom:667.013333pt;}
.y44{bottom:667.829333pt;}
.y179{bottom:672.592682pt;}
.y1da{bottom:676.657333pt;}
.y12b{bottom:676.658667pt;}
.y1a6{bottom:678.908000pt;}
.y69{bottom:681.970122pt;}
.y210{bottom:682.177333pt;}
.y104{bottom:682.946667pt;}
.yd4{bottom:685.025333pt;}
.y7e{bottom:685.732498pt;}
.y43{bottom:685.842667pt;}
.y11{bottom:686.298634pt;}
.y10{bottom:686.648000pt;}
.y18d{bottom:689.038667pt;}
.y1d9{bottom:690.917333pt;}
.y76{bottom:691.644805pt;}
.y74{bottom:692.182287pt;}
.y1a5{bottom:692.417333pt;}
.y79{bottom:692.719770pt;}
.y12a{bottom:694.670667pt;}
.y20f{bottom:699.392000pt;}
.y103{bottom:700.958667pt;}
.yd3{bottom:703.038667pt;}
.y42{bottom:703.854667pt;}
.y1d8{bottom:705.177333pt;}
.y65{bottom:710.456689pt;}
.y129{bottom:712.682667pt;}
.y62{bottom:716.368995pt;}
.y20e{bottom:716.608000pt;}
.y195{bottom:718.972000pt;}
.y1d7{bottom:719.436000pt;}
.yd2{bottom:721.050667pt;}
.yf{bottom:721.645333pt;}
.y41{bottom:721.868000pt;}
.y80{bottom:723.356266pt;}
.y102{bottom:726.941333pt;}
.y1d6{bottom:733.696000pt;}
.y20d{bottom:733.824000pt;}
.y194{bottom:736.984000pt;}
.yd1{bottom:739.064000pt;}
.y40{bottom:739.880000pt;}
.ye{bottom:742.125333pt;}
.y128{bottom:743.794667pt;}
.y1d5{bottom:747.956000pt;}
.y20c{bottom:751.038667pt;}
.y193{bottom:754.997333pt;}
.yd0{bottom:757.076000pt;}
.y86{bottom:757.755140pt;}
.y3f{bottom:757.892000pt;}
.yd{bottom:758.265333pt;}
.y70{bottom:759.367587pt;}
.y1d4{bottom:762.216000pt;}
.y11f{bottom:763.732000pt;}
.y20b{bottom:768.254667pt;}
.yc{bottom:770.064000pt;}
.y192{bottom:773.009333pt;}
.ycf{bottom:775.088000pt;}
.y3e{bottom:775.905333pt;}
.y1d3{bottom:776.476000pt;}
.y81{bottom:780.329401pt;}
.y20a{bottom:785.469333pt;}
.yb{bottom:790.544000pt;}
.y1d2{bottom:790.736000pt;}
.y191{bottom:791.021333pt;}
.yce{bottom:793.101333pt;}
.y3d{bottom:793.917333pt;}
.y6f{bottom:795.916390pt;}
.y64{bottom:801.291214pt;}
.ya{bottom:802.344000pt;}
.y209{bottom:802.685333pt;}
.y1d1{bottom:804.996000pt;}
.y68{bottom:808.278486pt;}
.ycd{bottom:811.113333pt;}
.y3c{bottom:811.930667pt;}
.y190{bottom:817.004000pt;}
.y1d0{bottom:819.256000pt;}
.y208{bottom:819.901333pt;}
.y72{bottom:822.790510pt;}
.y9{bottom:822.822667pt;}
.y75{bottom:823.865475pt;}
.y3b{bottom:829.942667pt;}
.y1cf{bottom:833.516000pt;}
.y207{bottom:837.116000pt;}
.y8{bottom:840.698667pt;}
.ycc{bottom:842.225333pt;}
.y1ce{bottom:847.776000pt;}
.y3a{bottom:847.954667pt;}
.y206{bottom:854.332000pt;}
.y7{bottom:858.710667pt;}
.y1cd{bottom:862.036000pt;}
.yc2{bottom:862.162667pt;}
.y39{bottom:865.968000pt;}
.y205{bottom:871.546667pt;}
.y1cc{bottom:876.296000pt;}
.y61{bottom:882.652000pt;}
.y38{bottom:883.980000pt;}
.y204{bottom:888.762667pt;}
.y1cb{bottom:890.556000pt;}
.y6{bottom:898.178667pt;}
.y60{bottom:900.664000pt;}
.y37{bottom:901.993333pt;}
.y1ca{bottom:904.816000pt;}
.y203{bottom:905.978667pt;}
.y5f{bottom:918.677333pt;}
.y36{bottom:920.005333pt;}
.y202{bottom:922.906667pt;}
.y201{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y1c9{bottom:935.016000pt;}
.y5e{bottom:936.689333pt;}
.y35{bottom:938.017333pt;}
.y200{bottom:940.409333pt;}
.y1c8{bottom:949.276000pt;}
.y4{bottom:952.217333pt;}
.y5d{bottom:954.702667pt;}
.y34{bottom:956.030667pt;}
.y1ff{bottom:957.624000pt;}
.y1c7{bottom:963.536000pt;}
.y33{bottom:974.042667pt;}
.y1fe{bottom:974.840000pt;}
.y1c6{bottom:977.796000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h12{height:9.137201pt;}
.hf{height:10.212166pt;}
.h1d{height:14.512025pt;}
.h2e{height:16.529325pt;}
.h30{height:16.530544pt;}
.h32{height:16.559802pt;}
.h16{height:17.199437pt;}
.h33{height:17.702067pt;}
.h18{height:18.274402pt;}
.h11{height:21.499296pt;}
.h1b{height:22.036778pt;}
.h9{height:22.673858pt;}
.h15{height:25.799155pt;}
.h35{height:27.124233pt;}
.h7{height:27.189301pt;}
.h2c{height:29.068000pt;}
.h29{height:29.324352pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h36{height:31.072373pt;}
.he{height:31.199893pt;}
.h13{height:31.392331pt;}
.h2b{height:31.560000pt;}
.h2a{height:33.156864pt;}
.h37{height:33.220000pt;}
.h28{height:34.211807pt;}
.h25{height:34.429440pt;}
.h8{height:34.955445pt;}
.h1f{height:35.098901pt;}
.h24{height:35.733720pt;}
.h10{height:35.876950pt;}
.h31{height:35.880561pt;}
.h21{height:36.194957pt;}
.h2f{height:37.431442pt;}
.h17{height:38.119260pt;}
.hc{height:38.257920pt;}
.hd{height:38.842416pt;}
.h4{height:39.001824pt;}
.h27{height:39.099183pt;}
.h1e{height:41.524000pt;}
.h22{height:42.350155pt;}
.h2{height:45.271688pt;}
.h2d{height:46.428000pt;}
.h1c{height:47.835934pt;}
.h6{height:48.361813pt;}
.h14{height:49.448381pt;}
.h1a{height:50.523346pt;}
.h23{height:59.889003pt;}
.h19{height:65.026972pt;}
.h5{height:68.862720pt;}
.h3{height:131.828069pt;}
.h20{height:143.176212pt;}
.h26{height:241.613274pt;}
.h34{height:320.614533pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:33.323909pt;}
.w5{width:36.011321pt;}
.w6{width:38.161250pt;}
.w10{width:39.236215pt;}
.wf{width:40.848662pt;}
.wd{width:55.360687pt;}
.we{width:56.435652pt;}
.w3{width:66.991004pt;}
.w7{width:73.635089pt;}
.w8{width:90.297043pt;}
.w11{width:118.783610pt;}
.wa{width:124.695917pt;}
.wc{width:141.357871pt;}
.wb{width:149.957590pt;}
.w4{width:153.719966pt;}
.w2{width:154.742661pt;}
.w18{width:238.327533pt;}
.w16{width:238.364105pt;}
.w19{width:329.473491pt;}
.w13{width:353.780035pt;}
.w1a{width:356.480694pt;}
.w12{width:442.201160pt;}
.w14{width:565.183688pt;}
.w15{width:566.239400pt;}
.w17{width:577.837600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.149930pt;}
.x16{left:4.299859pt;}
.x89{left:13.463972pt;}
.x1c{left:14.512025pt;}
.x5e{left:18.105085pt;}
.x8{left:26.021437pt;}
.xb0{left:41.204210pt;}
.x2{left:52.049002pt;}
.xab{left:54.980029pt;}
.xaf{left:58.052077pt;}
.xb5{left:61.294916pt;}
.xae{left:64.927247pt;}
.xb2{left:70.072074pt;}
.xad{left:71.802905pt;}
.x5f{left:77.767968pt;}
.x8a{left:98.301347pt;}
.xaa{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x5a{left:103.044000pt;}
.x90{left:106.120000pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x52{left:118.825333pt;}
.xa4{left:120.006667pt;}
.x91{left:124.557333pt;}
.x5{left:129.929333pt;}
.x12{left:130.884000pt;}
.x8e{left:132.420000pt;}
.xa1{left:133.525333pt;}
.x88{left:136.926862pt;}
.x25{left:138.516605pt;}
.x8b{left:140.269776pt;}
.x7c{left:142.241333pt;}
.x18{left:143.353946pt;}
.x61{left:147.210667pt;}
.x8f{left:150.049333pt;}
.x55{left:151.844000pt;}
.x49{left:153.233333pt;}
.x9e{left:156.620000pt;}
.x9f{left:158.945333pt;}
.x62{left:160.493333pt;}
.x50{left:162.762667pt;}
.x4a{left:166.517333pt;}
.x7d{left:167.480000pt;}
.x53{left:169.053333pt;}
.x9{left:171.417333pt;}
.xa0{left:173.220000pt;}
.x51{left:176.046667pt;}
.x17{left:177.752820pt;}
.x77{left:181.164000pt;}
.x54{left:182.336000pt;}
.x7f{left:184.450667pt;}
.x81{left:186.173333pt;}
.x9a{left:189.038667pt;}
.xa9{left:190.994667pt;}
.xb9{left:191.940000pt;}
.x45{left:193.273333pt;}
.xb1{left:195.838707pt;}
.x85{left:197.276000pt;}
.x3d{left:204.034667pt;}
.xbf{left:205.097333pt;}
.xc0{left:206.034667pt;}
.x68{left:207.909333pt;}
.xac{left:213.155148pt;}
.xe{left:216.373333pt;}
.x4e{left:217.857333pt;}
.x1f{left:219.138965pt;}
.x2d{left:221.816000pt;}
.xf{left:223.016000pt;}
.xca{left:224.086667pt;}
.x5b{left:225.376000pt;}
.x1d{left:227.738683pt;}
.x4f{left:231.141333pt;}
.x95{left:232.306667pt;}
.x15{left:233.650989pt;}
.xcb{left:236.016000pt;}
.xba{left:238.805333pt;}
.x69{left:245.085333pt;}
.x2c{left:247.209333pt;}
.x72{left:248.548000pt;}
.x78{left:251.193333pt;}
.x38{left:252.185333pt;}
.x35{left:255.166667pt;}
.x6a{left:257.772000pt;}
.x14{left:258.912662pt;}
.xb3{left:259.987422pt;}
.x36{left:261.808000pt;}
.x73{left:267.721333pt;}
.x56{left:271.256000pt;}
.x92{left:275.001333pt;}
.x96{left:276.672000pt;}
.x8c{left:279.513333pt;}
.x57{left:284.024000pt;}
.x4b{left:285.536000pt;}
.x6f{left:287.089333pt;}
.x31{left:296.864000pt;}
.x8d{left:298.362667pt;}
.x32{left:303.506667pt;}
.x82{left:310.206667pt;}
.x93{left:313.549333pt;}
.x97{left:316.564000pt;}
.x20{left:319.110691pt;}
.x3a{left:322.693333pt;}
.x7a{left:325.084000pt;}
.xb8{left:329.300906pt;}
.x23{left:333.085233pt;}
.x3b{left:335.976000pt;}
.x7b{left:338.368000pt;}
.x28{left:339.535022pt;}
.x9b{left:342.626667pt;}
.x79{left:343.601333pt;}
.x98{left:344.534667pt;}
.x29{left:346.522293pt;}
.x27{left:349.747188pt;}
.xa{left:350.929333pt;}
.xb7{left:356.308109pt;}
.xb{left:357.570667pt;}
.x2a{left:359.959353pt;}
.x9c{left:361.908000pt;}
.x5d{left:366.698399pt;}
.x60{left:368.536873pt;}
.x65{left:375.578667pt;}
.x4d{left:376.558667pt;}
.x41{left:386.106667pt;}
.x2e{left:387.222667pt;}
.x94{left:388.521333pt;}
.x46{left:390.390667pt;}
.x3e{left:394.924000pt;}
.xa6{left:397.813333pt;}
.x42{left:399.389333pt;}
.x2b{left:405.645357pt;}
.x9d{left:409.234667pt;}
.x33{left:414.970667pt;}
.x7e{left:416.373333pt;}
.x1b{left:417.469970pt;}
.x34{left:421.612000pt;}
.xc{left:423.265333pt;}
.x43{left:428.296000pt;}
.xd{left:429.906667pt;}
.x6b{left:431.225333pt;}
.xb4{left:434.202812pt;}
.x39{left:437.128000pt;}
.xa5{left:442.718667pt;}
.x13{left:444.881573pt;}
.x86{left:449.425333pt;}
.x58{left:452.838667pt;}
.x87{left:462.709333pt;}
.x59{left:466.122667pt;}
.xa2{left:468.244000pt;}
.x24{left:477.667999pt;}
.xbd{left:481.406667pt;}
.x4c{left:490.732000pt;}
.xbe{left:494.690667pt;}
.x1e{left:504.542119pt;}
.x21{left:505.617084pt;}
.xb6{left:507.194881pt;}
.x66{left:508.329333pt;}
.x67{left:522.330667pt;}
.x26{left:527.653862pt;}
.x2f{left:529.577333pt;}
.x63{left:534.901333pt;}
.x30{left:536.220000pt;}
.xa3{left:544.937333pt;}
.xa7{left:547.260000pt;}
.x3c{left:549.068000pt;}
.xa8{left:562.994667pt;}
.x70{left:569.753333pt;}
.xbc{left:572.153333pt;}
.x37{left:578.790667pt;}
.x99{left:580.952000pt;}
.x71{left:583.037333pt;}
.x1a{left:585.701961pt;}
.x6c{left:588.201333pt;}
.xc3{left:591.110667pt;}
.x83{left:592.042667pt;}
.x6d{left:595.214667pt;}
.xc5{left:597.993333pt;}
.x84{left:599.348000pt;}
.xbb{left:602.278667pt;}
.xc1{left:604.272000pt;}
.x6e{left:608.498667pt;}
.x64{left:609.556000pt;}
.x47{left:610.812000pt;}
.x80{left:613.786667pt;}
.x22{left:615.800976pt;}
.x3f{left:619.144000pt;}
.xc6{left:621.902667pt;}
.x7{left:623.413317pt;}
.x40{left:625.785333pt;}
.xc2{left:628.182667pt;}
.x74{left:629.605333pt;}
.xc7{left:632.828000pt;}
.x48{left:636.630667pt;}
.x44{left:638.609333pt;}
.x75{left:645.288000pt;}
.xc8{left:656.260000pt;}
.x76{left:660.193333pt;}
.xc9{left:666.189333pt;}
.x5c{left:672.796000pt;}
.x10{left:679.437333pt;}
.x11{left:686.078667pt;}
.xc4{left:690.218667pt;}
}




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