
    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_55adca31a74c35376b1e72e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2f846f020183f519203f0d39.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5d851f6624519554133240d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4819a6269e29bc48a072beb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_2b8824caf9f5300e61bb2cf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cd63dbe909849f785c748ac5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_c9d87d17f6584b39be3a21b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.013672;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_eb8681ff58a42f77977e296f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_8a205f65dfc177338f6c11f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_5ee5a39c48562a866eb194db.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995117;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_976416c9eb86c1e1dd7086ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.803000;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_be0c118d6ad87691189b9ca5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a80bdd4dfd09fb46cd6223c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_985be063c42a388ca409345e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f4fe8037ae18d6bbb8a3bc39.woff2')format("woff");}.fff{font-family:fff;line-height:1.013672;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_a82eae8631c1eaf7c04ba331.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_e6953c57f54ac3d9263313fb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;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_a5065b12cf3b24a3035d4c3e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.995117;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_e894b748a278a43922c1a1be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.726000;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;}
.md{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);}
.m29{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);}
.m6{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);}
.m4{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);}
.m15{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);}
.m24{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);}
.m12{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);}
.m1{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);}
.ma{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);}
.mf{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);}
.m8{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);}
.m23{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);}
.m10{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);}
.m26{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);}
.m1c{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);}
.m13{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);}
.me{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);}
.m25{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);}
.m7{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);}
.m9{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);}
.m14{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);}
.m22{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);}
.m1b{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);}
.m1a{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);}
.m17{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m21{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);}
.m3{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);}
.m1d{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);}
.m1f{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);}
.m5{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);}
.mb{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);}
.mc{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);}
.m18{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);}
.m20{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);}
.m16{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);}
.m1e{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);}
.m28{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);}
.m2{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);}
.m11{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);}
.v5{vertical-align:-39.450000px;}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.212000px;}
.v3{vertical-align:15.123600px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.910000px;}
.ls2e{letter-spacing:-0.361800px;}
.ls2f{letter-spacing:-0.259200px;}
.ls6b{letter-spacing:-0.234468px;}
.ls67{letter-spacing:-0.180360px;}
.ls68{letter-spacing:-0.168336px;}
.ls32{letter-spacing:-0.132264px;}
.ls3a{letter-spacing:-0.120240px;}
.ls39{letter-spacing:-0.114228px;}
.ls37{letter-spacing:-0.102204px;}
.ls6d{letter-spacing:-0.096192px;}
.ls34{letter-spacing:-0.090180px;}
.ls36{letter-spacing:-0.084168px;}
.ls35{letter-spacing:-0.072144px;}
.ls38{letter-spacing:-0.060120px;}
.ls6a{letter-spacing:-0.054108px;}
.ls66{letter-spacing:-0.048096px;}
.ls6c{letter-spacing:-0.042084px;}
.ls31{letter-spacing:-0.036072px;}
.ls30{letter-spacing:-0.030060px;}
.ls2d{letter-spacing:-0.027000px;}
.ls3b{letter-spacing:-0.024048px;}
.ls2b{letter-spacing:-0.023940px;}
.ls33{letter-spacing:-0.018036px;}
.ls64{letter-spacing:-0.012024px;}
.ls63{letter-spacing:-0.010800px;}
.ls2c{letter-spacing:-0.005400px;}
.ls10{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000069px;}
.ls78{letter-spacing:0.000422px;}
.ls11{letter-spacing:0.000435px;}
.ls40{letter-spacing:0.000612px;}
.ls7b{letter-spacing:0.001155px;}
.ls7c{letter-spacing:0.002488px;}
.ls29{letter-spacing:0.002667px;}
.ls2{letter-spacing:0.002725px;}
.ls6e{letter-spacing:0.002841px;}
.ls47{letter-spacing:0.003403px;}
.ls6{letter-spacing:0.004766px;}
.ls73{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.005400px;}
.ls5c{letter-spacing:0.006012px;}
.ls1d{letter-spacing:0.010800px;}
.ls62{letter-spacing:0.012024px;}
.ls1c{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.021600px;}
.ls5a{letter-spacing:0.024048px;}
.ls59{letter-spacing:0.027000px;}
.ls61{letter-spacing:0.030060px;}
.ls13{letter-spacing:0.033516px;}
.ls22{letter-spacing:0.036072px;}
.ls19{letter-spacing:0.037800px;}
.ls26{letter-spacing:0.042084px;}
.ls5b{letter-spacing:0.048096px;}
.ls1b{letter-spacing:0.048600px;}
.ls1a{letter-spacing:0.054000px;}
.ls5e{letter-spacing:0.054108px;}
.ls23{letter-spacing:0.060120px;}
.ls18{letter-spacing:0.070200px;}
.ls21{letter-spacing:0.078156px;}
.ls1f{letter-spacing:0.081000px;}
.ls69{letter-spacing:0.084168px;}
.ls20{letter-spacing:0.099360px;}
.ls25{letter-spacing:0.102204px;}
.ls17{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.124200px;}
.ls14{letter-spacing:0.172368px;}
.ls5f{letter-spacing:0.180360px;}
.ls12{letter-spacing:0.181944px;}
.ls50{letter-spacing:0.497764px;}
.ls48{letter-spacing:0.503764px;}
.ls3e{letter-spacing:0.717483px;}
.ls5d{letter-spacing:1.533060px;}
.ls60{letter-spacing:2.248488px;}
.ls41{letter-spacing:2.988089px;}
.ls3{letter-spacing:2.989200px;}
.ls49{letter-spacing:2.990100px;}
.ls1{letter-spacing:2.998354px;}
.ls3f{letter-spacing:3.559200px;}
.ls65{letter-spacing:8.007984px;}
.ls0{letter-spacing:10.461300px;}
.ls4d{letter-spacing:10.763764px;}
.ls46{letter-spacing:10.961764px;}
.ls4e{letter-spacing:10.967764px;}
.ls9{letter-spacing:11.953933px;}
.lsf{letter-spacing:11.954850px;}
.ls7e{letter-spacing:13.278746px;}
.lsd{letter-spacing:13.417433px;}
.ls77{letter-spacing:13.446566px;}
.ls71{letter-spacing:13.448400px;}
.ls6f{letter-spacing:13.454400px;}
.ls7a{letter-spacing:13.481331px;}
.ls7d{letter-spacing:13.574545px;}
.lse{letter-spacing:13.585648px;}
.lsc{letter-spacing:13.623689px;}
.ls44{letter-spacing:13.997914px;}
.ls28{letter-spacing:14.094088px;}
.ls75{letter-spacing:14.120988px;}
.ls27{letter-spacing:14.122800px;}
.ls72{letter-spacing:14.626871px;}
.ls55{letter-spacing:14.879596px;}
.ls5{letter-spacing:14.944200px;}
.ls56{letter-spacing:14.944665px;}
.ls58{letter-spacing:14.964461px;}
.ls53{letter-spacing:15.039619px;}
.ls57{letter-spacing:15.145771px;}
.ls3d{letter-spacing:15.194434px;}
.ls70{letter-spacing:15.509224px;}
.ls43{letter-spacing:15.663483px;}
.ls42{letter-spacing:15.688200px;}
.ls51{letter-spacing:16.019861px;}
.ls7f{letter-spacing:16.615106px;}
.ls76{letter-spacing:17.168047px;}
.lsb{letter-spacing:17.489035px;}
.ls74{letter-spacing:18.503341px;}
.ls79{letter-spacing:21.991576px;}
.ls52{letter-spacing:23.073382px;}
.ls2a{letter-spacing:23.265141px;}
.ls4{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsa{letter-spacing:64.321654px;}
.ls7{letter-spacing:72.361200px;}
.ls4a{letter-spacing:120.730348px;}
.ls4f{letter-spacing:121.623403px;}
.ls45{letter-spacing:143.223403px;}
.ls4b{letter-spacing:152.846100px;}
.ls4c{letter-spacing:157.634100px;}
.ls3c{letter-spacing:848.972556px;}
.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;}
}
.wsb{word-spacing:-93.519509px;}
.ws55{word-spacing:-60.120000px;}
.ws53{word-spacing:-54.000000px;}
.ws54{word-spacing:-15.030000px;}
.wse{word-spacing:-14.943900px;}
.ws10{word-spacing:-14.355754px;}
.ws52{word-spacing:-13.500000px;}
.ws20{word-spacing:-13.449600px;}
.ws50{word-spacing:-12.151944px;}
.ws51{word-spacing:-11.970000px;}
.ws13{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.wsf4{word-spacing:-9.000000px;}
.ws8d{word-spacing:-5.559131px;}
.ws8c{word-spacing:-4.782048px;}
.wsdd{word-spacing:-4.363619px;}
.ws89{word-spacing:-4.244068px;}
.wsb4{word-spacing:-3.287658px;}
.wse4{word-spacing:-2.749678px;}
.ws2d{word-spacing:-2.510575px;}
.ws49{word-spacing:-2.271473px;}
.ws8e{word-spacing:-2.211697px;}
.ws87{word-spacing:-2.151922px;}
.wsd2{word-spacing:-2.092146px;}
.ws132{word-spacing:-2.044339px;}
.ws8b{word-spacing:-2.032370px;}
.ws33{word-spacing:-1.972595px;}
.ws59{word-spacing:-1.912819px;}
.ws8a{word-spacing:-1.853044px;}
.ws133{word-spacing:-1.829146px;}
.wse3{word-spacing:-1.673717px;}
.wse5{word-spacing:-1.613941px;}
.wsb5{word-spacing:-1.554166px;}
.wsdf{word-spacing:-1.494390px;}
.ws58{word-spacing:-1.452557px;}
.wsfa{word-spacing:-1.434614px;}
.wsef{word-spacing:-1.374839px;}
.wsde{word-spacing:-1.315063px;}
.ws14c{word-spacing:-1.237363px;}
.ws43{word-spacing:-1.195512px;}
.ws13c{word-spacing:-1.075968px;}
.ws35{word-spacing:-1.075961px;}
.ws24{word-spacing:-1.022170px;}
.ws12a{word-spacing:-1.022040px;}
.ws135{word-spacing:-0.968371px;}
.ws42{word-spacing:-0.956410px;}
.ws131{word-spacing:-0.914573px;}
.wsc9{word-spacing:-0.860774px;}
.ws85{word-spacing:-0.836858px;}
.wse7{word-spacing:-0.717307px;}
.ws136{word-spacing:-0.699379px;}
.ws2e{word-spacing:-0.657532px;}
.ws12d{word-spacing:-0.649296px;}
.wsf1{word-spacing:-0.597756px;}
.ws12e{word-spacing:-0.529056px;}
.ws2{word-spacing:-0.418428px;}
.ws3a{word-spacing:-0.358654px;}
.ws6e{word-spacing:-0.348696px;}
.ws137{word-spacing:-0.322790px;}
.ws4c{word-spacing:-0.298878px;}
.ws5c{word-spacing:-0.272916px;}
.wsfb{word-spacing:-0.268992px;}
.ws5e{word-spacing:-0.263340px;}
.ws3b{word-spacing:-0.239102px;}
.ws125{word-spacing:-0.216432px;}
.ws57{word-spacing:-0.215194px;}
.wsa7{word-spacing:-0.209214px;}
.ws79{word-spacing:-0.186372px;}
.ws140{word-spacing:-0.185629px;}
.ws74{word-spacing:-0.180360px;}
.ws2a{word-spacing:-0.179327px;}
.ws18{word-spacing:-0.161395px;}
.wsdc{word-spacing:-0.143462px;}
.ws5d{word-spacing:-0.124488px;}
.ws44{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.wsc5{word-spacing:-0.095641px;}
.wsf{word-spacing:-0.059776px;}
.ws21{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.ws9b{word-spacing:-0.041843px;}
.ws124{word-spacing:-0.036072px;}
.ws32{word-spacing:-0.006748px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.003883px;}
.ws11b{word-spacing:0.006012px;}
.ws73{word-spacing:0.030060px;}
.ws82{word-spacing:0.048096px;}
.ws56{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws22{word-spacing:0.107597px;}
.ws72{word-spacing:0.108216px;}
.ws2b{word-spacing:0.119551px;}
.ws6f{word-spacing:0.120240px;}
.ws11d{word-spacing:0.126252px;}
.ws104{word-spacing:0.129600px;}
.ws6d{word-spacing:0.140400px;}
.ws1c{word-spacing:0.161395px;}
.ws105{word-spacing:0.172800px;}
.ws28{word-spacing:0.179327px;}
.ws108{word-spacing:0.183600px;}
.ws130{word-spacing:0.186372px;}
.ws15{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws1e{word-spacing:0.268992px;}
.ws48{word-spacing:0.298878px;}
.wsf6{word-spacing:0.322790px;}
.wsea{word-spacing:0.358654px;}
.ws145{word-spacing:0.376589px;}
.ws90{word-spacing:0.418429px;}
.ws126{word-spacing:0.438876px;}
.ws6a{word-spacing:0.459000px;}
.ws4e{word-spacing:0.478205px;}
.ws148{word-spacing:0.484186px;}
.wsd7{word-spacing:0.500956px;}
.wsae{word-spacing:0.503604px;}
.wsab{word-spacing:0.503783px;}
.wsa9{word-spacing:0.504179px;}
.wsb0{word-spacing:0.512806px;}
.wsbf{word-spacing:0.513145px;}
.wsb1{word-spacing:0.513515px;}
.wsce{word-spacing:0.514114px;}
.wscd{word-spacing:0.515845px;}
.wsc2{word-spacing:0.517800px;}
.wsdb{word-spacing:0.518506px;}
.ws9c{word-spacing:0.521749px;}
.wsa4{word-spacing:0.521969px;}
.ws9f{word-spacing:0.523800px;}
.wsaa{word-spacing:0.524400px;}
.ws9a{word-spacing:0.527749px;}
.wsb2{word-spacing:0.530460px;}
.wscb{word-spacing:0.534504px;}
.ws69{word-spacing:0.534600px;}
.wsa1{word-spacing:0.534978px;}
.wsbe{word-spacing:0.537804px;}
.wse2{word-spacing:0.537980px;}
.wsd8{word-spacing:0.539048px;}
.wsa6{word-spacing:0.540978px;}
.wsa3{word-spacing:0.543816px;}
.wsac{word-spacing:0.545051px;}
.ws86{word-spacing:0.568500px;}
.ws127{word-spacing:0.571140px;}
.wsec{word-spacing:0.657532px;}
.ws46{word-spacing:0.717307px;}
.ws38{word-spacing:0.777083px;}
.ws27{word-spacing:0.836858px;}
.ws157{word-spacing:0.860774px;}
.ws2c{word-spacing:0.896634px;}
.ws147{word-spacing:0.914573px;}
.ws7c{word-spacing:0.925848px;}
.wsf0{word-spacing:0.956410px;}
.wsb7{word-spacing:1.016185px;}
.ws156{word-spacing:1.022170px;}
.ws7f{word-spacing:1.070136px;}
.wsc7{word-spacing:1.075961px;}
.ws23{word-spacing:1.129766px;}
.ws13d{word-spacing:1.183565px;}
.wsf9{word-spacing:1.195512px;}
.ws7e{word-spacing:1.202400px;}
.ws123{word-spacing:1.208412px;}
.ws113{word-spacing:1.220436px;}
.ws7d{word-spacing:1.292580px;}
.ws47{word-spacing:1.315063px;}
.ws114{word-spacing:1.352700px;}
.ws31{word-spacing:1.374839px;}
.wsfc{word-spacing:1.398758px;}
.wse9{word-spacing:1.434614px;}
.ws117{word-spacing:1.472940px;}
.ws3d{word-spacing:1.554166px;}
.ws13a{word-spacing:1.560154px;}
.ws64{word-spacing:1.566000px;}
.ws118{word-spacing:1.581156px;}
.ws7b{word-spacing:1.587168px;}
.ws139{word-spacing:1.613952px;}
.ws7a{word-spacing:1.629252px;}
.ws122{word-spacing:1.641276px;}
.ws116{word-spacing:1.647288px;}
.ws115{word-spacing:1.695384px;}
.wsb8{word-spacing:1.733492px;}
.ws13f{word-spacing:1.775347px;}
.wse1{word-spacing:1.793268px;}
.wsfe{word-spacing:1.829146px;}
.ws77{word-spacing:1.923840px;}
.ws6b{word-spacing:1.927800px;}
.ws62{word-spacing:1.944000px;}
.ws76{word-spacing:1.959912px;}
.ws6c{word-spacing:1.960200px;}
.ws3c{word-spacing:1.972595px;}
.ws63{word-spacing:1.987200px;}
.ws41{word-spacing:2.032370px;}
.ws13b{word-spacing:2.044339px;}
.ws11a{word-spacing:2.068128px;}
.wsf8{word-spacing:2.092146px;}
.ws88{word-spacing:2.151922px;}
.ws16{word-spacing:2.151936px;}
.ws91{word-spacing:2.211697px;}
.ws121{word-spacing:2.212416px;}
.wsee{word-spacing:2.391024px;}
.wsed{word-spacing:2.450800px;}
.ws15c{word-spacing:2.474726px;}
.ws30{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws36{word-spacing:2.570351px;}
.ws11c{word-spacing:2.579148px;}
.wsc6{word-spacing:2.582312px;}
.ws14e{word-spacing:2.582323px;}
.ws78{word-spacing:2.591172px;}
.ws39{word-spacing:2.630126px;}
.ws119{word-spacing:2.645280px;}
.ws68{word-spacing:2.646000px;}
.ws67{word-spacing:2.651400px;}
.ws8f{word-spacing:2.689902px;}
.ws1b{word-spacing:2.689920px;}
.ws4b{word-spacing:2.749678px;}
.wsc8{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.ws17{word-spacing:2.905114px;}
.ws96{word-spacing:2.929004px;}
.ws97{word-spacing:2.988780px;}
.ws61{word-spacing:2.991600px;}
.ws26{word-spacing:3.048556px;}
.ws15a{word-spacing:3.066509px;}
.ws146{word-spacing:3.218246px;}
.ws159{word-spacing:3.219859px;}
.ws142{word-spacing:3.220032px;}
.ws141{word-spacing:3.222010px;}
.ws150{word-spacing:3.223555px;}
.ws155{word-spacing:3.224285px;}
.ws3e{word-spacing:3.227882px;}
.ws138{word-spacing:3.227904px;}
.ws14b{word-spacing:3.228096px;}
.ws19{word-spacing:3.281702px;}
.ws4f{word-spacing:3.287658px;}
.wse6{word-spacing:3.347434px;}
.ws14a{word-spacing:3.389299px;}
.ws60{word-spacing:3.396600px;}
.wse8{word-spacing:3.407209px;}
.ws14f{word-spacing:3.443098px;}
.ws4d{word-spacing:3.466985px;}
.ws4a{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.ws75{word-spacing:3.631248px;}
.wsf2{word-spacing:3.646312px;}
.wsf7{word-spacing:3.706087px;}
.ws12b{word-spacing:3.727440px;}
.ws12c{word-spacing:3.745476px;}
.ws83{word-spacing:3.765863px;}
.ws154{word-spacing:3.765888px;}
.ws45{word-spacing:3.825638px;}
.wsb9{word-spacing:3.885414px;}
.ws2f{word-spacing:3.945190px;}
.ws143{word-spacing:3.981082px;}
.ws1a{word-spacing:4.034880px;}
.wsb3{word-spacing:4.064741px;}
.ws5f{word-spacing:4.136400px;}
.wsf5{word-spacing:4.142477px;}
.wsd0{word-spacing:4.160392px;}
.ws15f{word-spacing:4.250074px;}
.ws40{word-spacing:4.363619px;}
.wsfd{word-spacing:4.411469px;}
.wseb{word-spacing:4.423394px;}
.ws101{word-spacing:4.449600px;}
.ws15e{word-spacing:4.626662px;}
.ws9{word-spacing:4.770079px;}
.wse0{word-spacing:4.782048px;}
.ws80{word-spacing:4.791564px;}
.ws11e{word-spacing:4.821624px;}
.wsa{word-spacing:4.853765px;}
.ws81{word-spacing:4.887756px;}
.ws15b{word-spacing:4.895654px;}
.ws95{word-spacing:4.901599px;}
.ws93{word-spacing:4.961375px;}
.wsf3{word-spacing:5.080926px;}
.ws134{word-spacing:5.110848px;}
.ws149{word-spacing:5.164646px;}
.ws66{word-spacing:5.184000px;}
.ws84{word-spacing:5.379804px;}
.ws3f{word-spacing:5.439580px;}
.ws29{word-spacing:5.499355px;}
.ws65{word-spacing:5.605200px;}
.ws94{word-spacing:5.678682px;}
.ws110{word-spacing:5.873724px;}
.ws10f{word-spacing:5.933844px;}
.ws92{word-spacing:5.977560px;}
.ws109{word-spacing:6.186348px;}
.ws10a{word-spacing:6.222420px;}
.ws120{word-spacing:6.228432px;}
.ws11f{word-spacing:6.258492px;}
.wsb6{word-spacing:6.395989px;}
.ws151{word-spacing:6.402010px;}
.ws12f{word-spacing:6.547068px;}
.ws152{word-spacing:6.778598px;}
.ws1f{word-spacing:6.993792px;}
.wsbb{word-spacing:7.370381px;}
.ws5a{word-spacing:7.531726px;}
.ws7{word-spacing:7.782761px;}
.wsba{word-spacing:7.800768px;}
.ws111{word-spacing:8.020008px;}
.wsd1{word-spacing:8.189257px;}
.ws5b{word-spacing:8.308808px;}
.ws100{word-spacing:8.413200px;}
.ws153{word-spacing:8.553946px;}
.ws10e{word-spacing:8.723412px;}
.wsff{word-spacing:9.153000px;}
.ws13e{word-spacing:9.253325px;}
.ws158{word-spacing:9.360922px;}
.ws128{word-spacing:10.214388px;}
.ws129{word-spacing:10.268496px;}
.ws112{word-spacing:10.857672px;}
.ws15d{word-spacing:11.136269px;}
.ws70{word-spacing:11.212380px;}
.ws71{word-spacing:11.380716px;}
.ws10d{word-spacing:11.969892px;}
.ws106{word-spacing:12.009600px;}
.ws102{word-spacing:12.031200px;}
.ws103{word-spacing:12.042000px;}
.ws107{word-spacing:12.069000px;}
.ws5{word-spacing:12.176255px;}
.ws14d{word-spacing:12.427430px;}
.ws144{word-spacing:15.655334px;}
.ws6{word-spacing:16.109478px;}
.ws10b{word-spacing:19.472868px;}
.ws10c{word-spacing:19.478880px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.wsc{word-spacing:40.042186px;}
.wsbc{word-spacing:79.120060px;}
.ws98{word-spacing:100.704944px;}
.wsc1{word-spacing:107.883000px;}
.wsc3{word-spacing:108.405000px;}
.ws9e{word-spacing:108.927000px;}
.wscc{word-spacing:109.599000px;}
.ws99{word-spacing:116.507700px;}
.wsa2{word-spacing:119.541000px;}
.wsc4{word-spacing:120.063000px;}
.wsbd{word-spacing:120.069000px;}
.wsa0{word-spacing:130.521000px;}
.wsc0{word-spacing:132.427204px;}
.wsa5{word-spacing:147.583756px;}
.wsad{word-spacing:160.565848px;}
.wsda{word-spacing:162.303000px;}
.wsd6{word-spacing:172.239000px;}
.wsd9{word-spacing:172.761000px;}
.wsa8{word-spacing:185.185267px;}
.wscf{word-spacing:191.382714px;}
.wsca{word-spacing:195.021361px;}
.wsaf{word-spacing:215.950691px;}
.wsd4{word-spacing:221.649503px;}
.wsd3{word-spacing:268.571848px;}
.ws9d{word-spacing:304.238999px;}
.wsd5{word-spacing:368.049269px;}
._1a{margin-left:-8.404484px;}
._e{margin-left:-7.220897px;}
._5{margin-left:-5.917824px;}
._8{margin-left:-4.399495px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.506341px;}
._16{width:1.182636px;}
._6{width:2.938031px;}
._42{width:9.833058px;}
._7{width:11.094379px;}
._1{width:12.969583px;}
._10{width:14.828586px;}
._19{width:16.115861px;}
._b{width:17.472506px;}
._15{width:18.530436px;}
._c{width:19.558612px;}
._f{width:20.646332px;}
._9{width:22.595328px;}
._14{width:24.926425px;}
._2{width:25.946136px;}
._13{width:27.018571px;}
._a{width:29.323106px;}
._3{width:30.587087px;}
._63{width:32.278824px;}
._1c{width:33.773214px;}
._d{width:35.327419px;}
._1b{width:37.216300px;}
._47{width:38.435711px;}
._18{width:43.994842px;}
._67{width:61.868160px;}
._3e{width:69.333520px;}
._53{width:73.308586px;}
._52{width:86.740124px;}
._66{width:88.767360px;}
._4b{width:94.397357px;}
._3c{width:100.207505px;}
._4a{width:102.473017px;}
._51{width:107.033882px;}
._48{width:109.042337px;}
._21{width:110.130250px;}
._49{width:112.264232px;}
._28{width:116.281141px;}
._4e{width:118.415708px;}
._29{width:119.913030px;}
._37{width:121.302277px;}
._1d{width:128.756297px;}
._58{width:132.516148px;}
._1e{width:135.941220px;}
._32{width:138.093200px;}
._20{width:139.754952px;}
._55{width:142.288466px;}
._5c{width:147.008494px;}
._3d{width:148.081669px;}
._1f{width:149.504324px;}
._2e{width:151.560983px;}
._4f{width:153.095082px;}
._2d{width:160.006244px;}
._2a{width:162.589160px;}
._2b{width:163.981933px;}
._5b{width:165.900341px;}
._25{width:168.793855px;}
._26{width:171.137052px;}
._30{width:172.978135px;}
._39{width:174.735533px;}
._4c{width:177.539000px;}
._34{width:181.556532px;}
._61{width:182.603291px;}
._57{width:184.096318px;}
._27{width:185.112547px;}
._3a{width:187.664958px;}
._46{width:195.029291px;}
._33{width:196.200889px;}
._38{width:199.339099px;}
._44{width:201.222025px;}
._43{width:206.123670px;}
._3f{width:209.381371px;}
._41{width:215.950691px;}
._40{width:225.684846px;}
._45{width:226.946167px;}
._59{width:236.621034px;}
._4d{width:240.052144px;}
._22{width:241.809541px;}
._50{width:244.864066px;}
._54{width:250.512844px;}
._56{width:255.324766px;}
._62{width:265.701780px;}
._31{width:272.324903px;}
._60{width:276.162480px;}
._36{width:323.991422px;}
._35{width:332.148146px;}
._2c{width:333.442910px;}
._5f{width:335.244838px;}
._23{width:336.290584px;}
._2f{width:344.082970px;}
._24{width:357.881468px;}
._5a{width:399.222155px;}
._3b{width:437.636165px;}
._5e{width:440.188495px;}
._5d{width:460.904803px;}
._11{width:669.631862px;}
._65{width:2065.169736px;}
._17{width:2089.291680px;}
._64{width:2477.325000px;}
._12{width:2501.235000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(65,127,142);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.887800px;}
.fsb{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fs11{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fsf{font-size:43.600200px;}
.fs4{font-size:45.429600px;}
.fse{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:120.205025px;}
.y1cd{bottom:-645.544050px;}
.y1eb{bottom:-563.094600px;}
.y91{bottom:-546.671550px;}
.y1ea{bottom:-543.925338px;}
.y1e9{bottom:-524.665896px;}
.y1e8{bottom:-505.406454px;}
.y1e7{bottom:-486.237192px;}
.ya8{bottom:-482.225574px;}
.y1e6{bottom:-466.977750px;}
.ya7{bottom:-459.996204px;}
.y1e5{bottom:-447.718308px;}
.ya6{bottom:-440.826942px;}
.y1e4{bottom:-428.549046px;}
.ya5{bottom:-421.567500px;}
.y1e3{bottom:-409.289604px;}
.ya4{bottom:-402.308058px;}
.y1e2{bottom:-390.120342px;}
.ya3{bottom:-378.637311px;}
.y1e1{bottom:-370.860900px;}
.y1e0{bottom:-351.601458px;}
.ya2{bottom:-341.377941px;}
.y1df{bottom:-332.432196px;}
.ya1{bottom:-322.208679px;}
.y1de{bottom:-313.172754px;}
.ya0{bottom:-302.949237px;}
.y1dd{bottom:-294.003492px;}
.y9f{bottom:-283.689795px;}
.y1dc{bottom:-274.742610px;}
.y9e{bottom:-260.019048px;}
.y1db{bottom:-255.483168px;}
.y1da{bottom:-236.312403px;}
.y9d{bottom:-222.759678px;}
.y1d9{bottom:-217.052961px;}
.y9c{bottom:-203.590416px;}
.y1d8{bottom:-197.882196px;}
.y9b{bottom:-184.330974px;}
.y1d7{bottom:-178.622754px;}
.y9a{bottom:-160.571550px;}
.y1d6{bottom:-159.363312px;}
.y1d5{bottom:-140.194050px;}
.y99{bottom:-123.760950px;}
.y98{bottom:-106.572450px;}
.y1d4{bottom:-103.384950px;}
.y97{bottom:-89.202000px;}
.y1d3{bottom:-86.104950px;}
.y96{bottom:-71.922000px;}
.y1d2{bottom:-68.824950px;}
.y95{bottom:-54.551550px;}
.y1d1{bottom:-51.544950px;}
.y94{bottom:-37.362000px;}
.y1d0{bottom:-34.174500px;}
.y93{bottom:-19.991550px;}
.y1cf{bottom:-16.804050px;}
.y0{bottom:0.000000px;}
.y92{bottom:2.508117px;}
.y1ce{bottom:5.606652px;}
.y18{bottom:17.541026px;}
.y46{bottom:31.890000px;}
.y162{bottom:100.971000px;}
.yf9{bottom:101.812500px;}
.y16{bottom:104.646000px;}
.y204{bottom:104.776500px;}
.y45{bottom:105.294000px;}
.y1c8{bottom:107.193000px;}
.y7d{bottom:107.641500px;}
.y239{bottom:112.080000px;}
.y12a{bottom:113.065500px;}
.y195{bottom:115.384500px;}
.ybf{bottom:119.428500px;}
.y161{bottom:119.800500px;}
.yf8{bottom:120.642000px;}
.y203{bottom:122.350500px;}
.y15{bottom:122.535000px;}
.y44{bottom:124.123500px;}
.y1c7{bottom:126.022500px;}
.y7c{bottom:126.471000px;}
.y238{bottom:129.340500px;}
.y129{bottom:131.895000px;}
.y194{bottom:134.214000px;}
.ybd{bottom:138.258000px;}
.y160{bottom:138.630000px;}
.yf6{bottom:139.471500px;}
.y202{bottom:139.924500px;}
.y14{bottom:140.422500px;}
.y43{bottom:142.953000px;}
.ybe{bottom:143.683500px;}
.y1c6{bottom:144.852000px;}
.yf7{bottom:144.897000px;}
.y7b{bottom:145.300500px;}
.y237{bottom:146.601000px;}
.y128{bottom:150.724500px;}
.y26c{bottom:151.726500px;}
.y193{bottom:153.043500px;}
.ybc{bottom:157.087500px;}
.y15f{bottom:157.459500px;}
.y201{bottom:157.498500px;}
.yf5{bottom:158.301000px;}
.y13{bottom:158.310000px;}
.y42{bottom:161.782500px;}
.y1c5{bottom:163.681500px;}
.y236{bottom:163.861500px;}
.y7a{bottom:164.130000px;}
.y26b{bottom:168.987000px;}
.y127{bottom:169.554000px;}
.y200{bottom:175.072500px;}
.ybb{bottom:175.917000px;}
.y12{bottom:176.199000px;}
.y15e{bottom:176.289000px;}
.yf4{bottom:177.130500px;}
.y41{bottom:180.612000px;}
.y235{bottom:181.120500px;}
.y1c4{bottom:182.511000px;}
.y79{bottom:182.959500px;}
.y26a{bottom:186.246000px;}
.y126{bottom:188.383500px;}
.y192{bottom:193.177500px;}
.y11{bottom:194.086500px;}
.yf3{bottom:195.960000px;}
.y234{bottom:198.381000px;}
.yba{bottom:199.230000px;}
.y40{bottom:199.441500px;}
.y1c3{bottom:201.340500px;}
.y78{bottom:201.789000px;}
.y125{bottom:207.213000px;}
.y191{bottom:207.373500px;}
.y1ff{bottom:210.580500px;}
.y10{bottom:211.974000px;}
.yf2{bottom:214.789500px;}
.y233{bottom:215.641500px;}
.y15d{bottom:216.423000px;}
.y3f{bottom:218.269500px;}
.y1c2{bottom:220.170000px;}
.y77{bottom:220.618500px;}
.y269{bottom:225.325500px;}
.y124{bottom:226.042500px;}
.y190{bottom:227.862000px;}
.y1fe{bottom:229.410000px;}
.yf{bottom:229.863000px;}
.y15c{bottom:230.619000px;}
.yb9{bottom:232.854000px;}
.y232{bottom:232.902000px;}
.yf1{bottom:233.619000px;}
.y3e{bottom:237.099000px;}
.y1c1{bottom:238.999500px;}
.y76{bottom:239.446500px;}
.y268{bottom:242.586000px;}
.y15b{bottom:244.816500px;}
.y123{bottom:244.870500px;}
.y18f{bottom:247.018500px;}
.y1fd{bottom:248.239500px;}
.y231{bottom:250.162500px;}
.yb8{bottom:251.683500px;}
.yf0{bottom:252.448500px;}
.y3d{bottom:255.928500px;}
.y1c0{bottom:257.829000px;}
.y75{bottom:258.276000px;}
.y267{bottom:259.846500px;}
.y15a{bottom:265.303500px;}
.y18e{bottom:266.176500px;}
.y1fc{bottom:267.069000px;}
.y230{bottom:267.423000px;}
.yb7{bottom:270.513000px;}
.yef{bottom:271.278000px;}
.y3c{bottom:274.758000px;}
.y1bf{bottom:276.658500px;}
.y74{bottom:277.105500px;}
.y159{bottom:284.461500px;}
.y22f{bottom:284.683500px;}
.y122{bottom:285.004500px;}
.y18d{bottom:285.334500px;}
.y1fb{bottom:285.898500px;}
.yb6{bottom:289.342500px;}
.yee{bottom:290.107500px;}
.y3b{bottom:293.587500px;}
.y266{bottom:294.366000px;}
.y1be{bottom:295.488000px;}
.y73{bottom:295.935000px;}
.ye{bottom:299.892000px;}
.y22e{bottom:301.944000px;}
.y158{bottom:303.618000px;}
.y18c{bottom:304.491000px;}
.y1fa{bottom:304.728000px;}
.y121{bottom:305.491500px;}
.yed{bottom:308.937000px;}
.y265{bottom:311.626500px;}
.y3a{bottom:312.417000px;}
.yb5{bottom:312.654000px;}
.y1bd{bottom:314.317500px;}
.y72{bottom:314.764500px;}
.y157{bottom:315.573000px;}
.yd{bottom:317.779500px;}
.y22d{bottom:319.204500px;}
.y1f9{bottom:323.557500px;}
.y18b{bottom:323.649000px;}
.y120{bottom:324.649500px;}
.y11f{bottom:324.978000px;}
.y156{bottom:327.529500px;}
.yec{bottom:327.766500px;}
.y264{bottom:328.887000px;}
.y39{bottom:331.246500px;}
.y1bc{bottom:333.145500px;}
.y71{bottom:333.594000px;}
.y18a{bottom:335.604000px;}
.yc{bottom:335.667000px;}
.y22c{bottom:336.463500px;}
.y1f8{bottom:342.385500px;}
.y11e{bottom:343.807500px;}
.y263{bottom:346.147500px;}
.yb4{bottom:346.278000px;}
.yea{bottom:346.596000px;}
.y155{bottom:346.686000px;}
.y38{bottom:350.076000px;}
.y1bb{bottom:351.975000px;}
.yeb{bottom:352.020000px;}
.y70{bottom:352.423500px;}
.yb{bottom:353.556000px;}
.y22b{bottom:353.724000px;}
.y187{bottom:354.762000px;}
.y189{bottom:360.739500px;}
.y1f7{bottom:361.215000px;}
.y11d{bottom:362.965500px;}
.y262{bottom:363.408000px;}
.yb3{bottom:365.107500px;}
.ye8{bottom:365.425500px;}
.y154{bottom:365.844000px;}
.y185{bottom:366.717000px;}
.y37{bottom:368.905500px;}
.y1ba{bottom:370.804500px;}
.ye9{bottom:370.849500px;}
.y22a{bottom:370.984500px;}
.y6f{bottom:371.253000px;}
.y188{bottom:372.694500px;}
.y11c{bottom:374.920500px;}
.y186{bottom:378.672000px;}
.y1f6{bottom:380.044500px;}
.y261{bottom:380.668500px;}
.ya{bottom:381.904500px;}
.yb2{bottom:383.937000px;}
.ye7{bottom:384.255000px;}
.y153{bottom:385.002000px;}
.y11b{bottom:386.875500px;}
.y229{bottom:388.245000px;}
.y8d{bottom:388.290000px;}
.y1b9{bottom:389.634000px;}
.y6e{bottom:390.082500px;}
.y36{bottom:392.218500px;}
.y1c9{bottom:395.508000px;}
.y152{bottom:396.957000px;}
.y260{bottom:397.929000px;}
.y1f5{bottom:398.874000px;}
.ye6{bottom:403.084500px;}
.y228{bottom:405.505500px;}
.y11a{bottom:406.032000px;}
.y8c{bottom:407.119500px;}
.yb1{bottom:407.250000px;}
.y1b8{bottom:408.463500px;}
.y9{bottom:408.759000px;}
.y6d{bottom:408.912000px;}
.y184{bottom:410.142000px;}
.y119{bottom:412.009500px;}
.y25f{bottom:415.188000px;}
.y151{bottom:416.113500px;}
.y1f4{bottom:417.703500px;}
.y227{bottom:422.766000px;}
.y8b{bottom:425.949000px;}
.ye5{bottom:426.397500px;}
.y8{bottom:426.646500px;}
.y1b7{bottom:427.293000px;}
.y6c{bottom:427.741500px;}
.y117{bottom:432.243000px;}
.y25e{bottom:432.448500px;}
.y150{bottom:435.271500px;}
.y1f3{bottom:436.533000px;}
.y118{bottom:437.145000px;}
.yb0{bottom:437.677500px;}
.y226{bottom:440.026500px;}
.y7{bottom:444.534000px;}
.y8a{bottom:444.778500px;}
.y1b6{bottom:446.122500px;}
.y6b{bottom:446.571000px;}
.y183{bottom:447.246000px;}
.y25d{bottom:449.709000px;}
.y14f{bottom:454.429500px;}
.y1f2{bottom:455.362500px;}
.y116{bottom:456.303000px;}
.yae{bottom:456.910500px;}
.y225{bottom:457.287000px;}
.ye4{bottom:460.021500px;}
.yaf{bottom:461.793000px;}
.y6{bottom:462.423000px;}
.y89{bottom:463.608000px;}
.y1b5{bottom:464.952000px;}
.y6a{bottom:465.400500px;}
.y182{bottom:466.075500px;}
.y25c{bottom:466.969500px;}
.y35{bottom:467.368500px;}
.y14e{bottom:473.586000px;}
.y224{bottom:474.546000px;}
.y115{bottom:475.461000px;}
.yad{bottom:476.143500px;}
.ye3{bottom:478.851000px;}
.y5{bottom:480.310500px;}
.y88{bottom:482.437500px;}
.y1b4{bottom:483.781500px;}
.y69{bottom:484.230000px;}
.y181{bottom:484.905000px;}
.y114{bottom:487.416000px;}
.y1cc{bottom:488.456535px;}
.y1f1{bottom:488.928000px;}
.y223{bottom:491.806500px;}
.y14d{bottom:492.744000px;}
.yac{bottom:495.376500px;}
.ye2{bottom:497.680500px;}
.y4{bottom:498.198000px;}
.y1cb{bottom:498.265950px;}
.y87{bottom:501.267000px;}
.y25b{bottom:501.490500px;}
.y1b3{bottom:502.611000px;}
.y68{bottom:503.059500px;}
.y180{bottom:503.734500px;}
.y34{bottom:504.759000px;}
.y113{bottom:506.572500px;}
.y1f0{bottom:508.161000px;}
.y222{bottom:509.067000px;}
.y14c{bottom:511.902000px;}
.yab{bottom:514.609500px;}
.y3{bottom:516.087000px;}
.ye1{bottom:516.508500px;}
.y25a{bottom:518.751000px;}
.y86{bottom:520.095000px;}
.y1b2{bottom:521.440500px;}
.y67{bottom:521.889000px;}
.y17f{bottom:522.564000px;}
.y33{bottom:524.215500px;}
.y112{bottom:525.730500px;}
.y111{bottom:526.059000px;}
.y221{bottom:526.327500px;}
.y1ef{bottom:527.394000px;}
.y14b{bottom:531.060000px;}
.yaa{bottom:533.842500px;}
.y2{bottom:533.974500px;}
.ye0{bottom:535.338000px;}
.y259{bottom:536.011500px;}
.y85{bottom:538.924500px;}
.y1b1{bottom:540.270000px;}
.y66{bottom:540.718500px;}
.y17e{bottom:541.393500px;}
.y148{bottom:543.015000px;}
.y220{bottom:543.588000px;}
.y32{bottom:543.672000px;}
.y110{bottom:544.888500px;}
.y1ee{bottom:546.627000px;}
.y147{bottom:548.992500px;}
.y1{bottom:551.862000px;}
.ya9{bottom:553.074000px;}
.y258{bottom:553.272000px;}
.ydf{bottom:554.167500px;}
.y14a{bottom:554.970000px;}
.y84{bottom:557.754000px;}
.y1b0{bottom:559.099500px;}
.y65{bottom:559.548000px;}
.y17d{bottom:560.223000px;}
.y21f{bottom:560.848500px;}
.y31{bottom:563.130000px;}
.y10f{bottom:564.045000px;}
.y1ed{bottom:565.860000px;}
.y149{bottom:566.925000px;}
.y257{bottom:570.531000px;}
.yde{bottom:572.997000px;}
.y8e{bottom:575.503500px;}
.y10e{bottom:576.001500px;}
.y83{bottom:576.583500px;}
.y1af{bottom:577.929000px;}
.y21e{bottom:578.109000px;}
.y64{bottom:578.377500px;}
.y17c{bottom:579.052500px;}
.y30{bottom:582.586500px;}
.y1ec{bottom:585.093000px;}
.y90{bottom:587.329035px;}
.y256{bottom:587.791500px;}
.y10d{bottom:587.956500px;}
.ydd{bottom:591.826500px;}
.y21d{bottom:595.369500px;}
.y82{bottom:595.413000px;}
.y1ae{bottom:596.758500px;}
.y8f{bottom:597.138450px;}
.y63{bottom:597.207000px;}
.y17b{bottom:597.882000px;}
.y146{bottom:598.395000px;}
.y2f{bottom:602.043000px;}
.y255{bottom:605.052000px;}
.y10c{bottom:607.113000px;}
.y1ca{bottom:607.522500px;}
.y21c{bottom:612.630000px;}
.y81{bottom:614.242500px;}
.ydc{bottom:615.139500px;}
.y1ad{bottom:615.588000px;}
.y62{bottom:616.036500px;}
.y17a{bottom:616.711500px;}
.y145{bottom:617.628000px;}
.y10b{bottom:619.068000px;}
.y2e{bottom:621.501000px;}
.y254{bottom:622.312500px;}
.y21b{bottom:629.889000px;}
.y80{bottom:633.072000px;}
.y109{bottom:633.324000px;}
.y1ac{bottom:634.417500px;}
.y61{bottom:634.866000px;}
.y179{bottom:635.541000px;}
.y10a{bottom:638.226000px;}
.y253{bottom:639.573000px;}
.y2d{bottom:640.957500px;}
.y21a{bottom:647.149500px;}
.ydb{bottom:648.763500px;}
.y144{bottom:650.839500px;}
.y1ab{bottom:653.247000px;}
.y60{bottom:653.695500px;}
.y7f{bottom:656.385000px;}
.y252{bottom:656.833500px;}
.y108{bottom:657.384000px;}
.y2c{bottom:660.415500px;}
.y219{bottom:664.410000px;}
.yda{bottom:667.593000px;}
.y143{bottom:669.669000px;}
.y1aa{bottom:672.076500px;}
.y5f{bottom:672.525000px;}
.y251{bottom:674.094000px;}
.y178{bottom:675.675000px;}
.y107{bottom:676.542000px;}
.y7e{bottom:676.560000px;}
.y2b{bottom:679.872000px;}
.y218{bottom:681.670500px;}
.yd9{bottom:686.422500px;}
.y142{bottom:688.498500px;}
.y177{bottom:689.871000px;}
.y1a9{bottom:690.906000px;}
.y5e{bottom:691.354500px;}
.y106{bottom:695.698500px;}
.y217{bottom:698.931000px;}
.y2a{bottom:699.328500px;}
.yd8{bottom:705.252000px;}
.y141{bottom:707.328000px;}
.y250{bottom:708.613500px;}
.y1a8{bottom:709.735500px;}
.y5d{bottom:710.184000px;}
.y176{bottom:710.358000px;}
.y105{bottom:715.462500px;}
.y216{bottom:716.191500px;}
.y29{bottom:718.786500px;}
.yd7{bottom:724.081500px;}
.y24f{bottom:725.874000px;}
.y140{bottom:726.157500px;}
.y1a7{bottom:728.565000px;}
.y5c{bottom:729.013500px;}
.y175{bottom:729.516000px;}
.y215{bottom:733.452000px;}
.y104{bottom:735.228000px;}
.y28{bottom:738.243000px;}
.yd6{bottom:742.911000px;}
.y24e{bottom:743.134500px;}
.y13f{bottom:744.985500px;}
.y1a6{bottom:747.394500px;}
.y5b{bottom:747.843000px;}
.y174{bottom:748.674000px;}
.y214{bottom:750.712500px;}
.y103{bottom:754.992000px;}
.y27{bottom:757.699500px;}
.y24d{bottom:760.395000px;}
.y173{bottom:760.629000px;}
.yd5{bottom:761.740500px;}
.y13e{bottom:763.815000px;}
.y1a5{bottom:766.224000px;}
.y5a{bottom:766.671000px;}
.y213{bottom:767.971500px;}
.y102{bottom:774.148500px;}
.y26{bottom:777.157500px;}
.y24c{bottom:777.655500px;}
.y172{bottom:779.787000px;}
.yd3{bottom:780.570000px;}
.y13d{bottom:782.644500px;}
.y1a4{bottom:785.053500px;}
.y59{bottom:785.500500px;}
.yd4{bottom:785.994000px;}
.y212{bottom:789.715500px;}
.y101{bottom:793.306500px;}
.y24b{bottom:794.916000px;}
.y171{bottom:798.943500px;}
.yd1{bottom:799.399500px;}
.y170{bottom:800.766000px;}
.y13c{bottom:801.474000px;}
.y1a3{bottom:803.883000px;}
.y58{bottom:804.330000px;}
.yd2{bottom:804.823500px;}
.y24a{bottom:812.176500px;}
.y100{bottom:812.464500px;}
.y25{bottom:815.742000px;}
.y16f{bottom:818.101500px;}
.ycf{bottom:818.229000px;}
.y13b{bottom:820.303500px;}
.y1a2{bottom:822.712500px;}
.y57{bottom:823.159500px;}
.y211{bottom:823.339500px;}
.yd0{bottom:823.653000px;}
.yfd{bottom:824.419500px;}
.y249{bottom:829.437000px;}
.yfc{bottom:830.397000px;}
.y24{bottom:831.882000px;}
.yff{bottom:836.374500px;}
.yce{bottom:837.058500px;}
.y16e{bottom:837.259500px;}
.y13a{bottom:839.133000px;}
.y1a1{bottom:841.540500px;}
.y56{bottom:841.989000px;}
.y248{bottom:846.697500px;}
.yfe{bottom:848.329500px;}
.y210{bottom:849.880500px;}
.y23{bottom:852.361500px;}
.ycd{bottom:855.888000px;}
.y16d{bottom:856.416000px;}
.y139{bottom:857.962500px;}
.y1a0{bottom:860.370000px;}
.y55{bottom:860.818500px;}
.y247{bottom:863.956500px;}
.y20f{bottom:867.454500px;}
.y22{bottom:868.501500px;}
.ycc{bottom:874.717500px;}
.y16c{bottom:875.574000px;}
.y138{bottom:876.792000px;}
.y19f{bottom:879.199500px;}
.y54{bottom:879.648000px;}
.yfb{bottom:879.799500px;}
.y21{bottom:880.300500px;}
.y246{bottom:881.217000px;}
.y20e{bottom:885.028500px;}
.ycb{bottom:893.547000px;}
.y16b{bottom:894.732000px;}
.y137{bottom:895.621500px;}
.y19e{bottom:898.029000px;}
.y53{bottom:898.477500px;}
.yfa{bottom:899.032500px;}
.y20{bottom:900.780000px;}
.y16a{bottom:906.687000px;}
.y20d{bottom:911.569500px;}
.yca{bottom:912.376500px;}
.y1f{bottom:912.580500px;}
.y136{bottom:914.451000px;}
.y245{bottom:915.738000px;}
.y19d{bottom:916.858500px;}
.y52{bottom:917.307000px;}
.y168{bottom:925.843500px;}
.y169{bottom:925.845000px;}
.yc9{bottom:931.206000px;}
.y244{bottom:932.998500px;}
.y1e{bottom:933.058500px;}
.y19c{bottom:935.688000px;}
.y51{bottom:936.136500px;}
.y165{bottom:937.800000px;}
.y20c{bottom:938.109000px;}
.y164{bottom:943.777500px;}
.y167{bottom:949.755000px;}
.y243{bottom:950.259000px;}
.yc8{bottom:954.517500px;}
.y135{bottom:954.585000px;}
.y50{bottom:954.966000px;}
.y166{bottom:961.710000px;}
.y20b{bottom:964.650000px;}
.y242{bottom:967.519500px;}
.y19b{bottom:973.347000px;}
.y4f{bottom:973.795500px;}
.y134{bottom:975.072000px;}
.y1d{bottom:977.736000px;}
.y20a{bottom:982.224000px;}
.y241{bottom:984.780000px;}
.yc7{bottom:988.141500px;}
.y19a{bottom:992.176500px;}
.y4e{bottom:992.625000px;}
.y163{bottom:993.180000px;}
.y133{bottom:994.230000px;}
.y1c{bottom:996.565500px;}
.y209{bottom:999.798000px;}
.y23f{bottom:1002.039000px;}
.y240{bottom:1002.040500px;}
.yc5{bottom:1006.971000px;}
.y199{bottom:1011.006000px;}
.y4d{bottom:1011.454500px;}
.yc6{bottom:1012.396500px;}
.y132{bottom:1013.388000px;}
.y23e{bottom:1019.299500px;}
.yc3{bottom:1025.800500px;}
.y208{bottom:1026.339000px;}
.y198{bottom:1029.835500px;}
.y4c{bottom:1030.284000px;}
.yc4{bottom:1031.226000px;}
.y131{bottom:1032.544500px;}
.y1b{bottom:1036.485000px;}
.y23d{bottom:1036.560000px;}
.y207{bottom:1043.913000px;}
.yc2{bottom:1044.630000px;}
.y4b{bottom:1049.113500px;}
.y12e{bottom:1051.702500px;}
.y197{bottom:1053.148500px;}
.y23c{bottom:1053.820500px;}
.y130{bottom:1057.680000px;}
.y206{bottom:1061.487000px;}
.yc1{bottom:1063.459500px;}
.y12c{bottom:1063.657500px;}
.y1a{bottom:1064.728500px;}
.y4a{bottom:1067.943000px;}
.y12f{bottom:1069.635000px;}
.y23b{bottom:1071.081000px;}
.y12d{bottom:1075.612500px;}
.yc0{bottom:1082.289000px;}
.y49{bottom:1086.772500px;}
.y205{bottom:1088.028000px;}
.y23a{bottom:1088.341500px;}
.y19{bottom:1092.972000px;}
.y48{bottom:1105.602000px;}
.y12b{bottom:1107.082500px;}
.y196{bottom:1111.026000px;}
.y17{bottom:1136.460000px;}
.y47{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h20{height:30.252344px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h1b{height:31.526842px;}
.h1e{height:33.072749px;}
.h25{height:33.378779px;}
.ha{height:34.813397px;}
.h13{height:34.951465px;}
.h10{height:35.052500px;}
.h12{height:35.255391px;}
.h21{height:36.944318px;}
.h22{height:36.950318px;}
.h27{height:37.334628px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.h16{height:39.418945px;}
.h17{height:39.423145px;}
.hd{height:39.434227px;}
.h15{height:39.761719px;}
.h19{height:41.482876px;}
.h1a{height:41.723369px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h6{height:43.815515px;}
.h14{height:43.886426px;}
.h18{height:44.062559px;}
.h4{height:50.617695px;}
.h1c{height:53.228842px;}
.h1f{height:54.162344px;}
.h23{height:54.371558px;}
.h24{height:54.377558px;}
.h8{height:54.541601px;}
.h1d{height:54.768749px;}
.h7{height:77.792486px;}
.h5{height:81.499007px;}
.h26{height:455.610000px;}
.h11{height:545.043000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:196.289934px;}
.w3{width:279.229500px;}
.w4{width:474.987000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3a{left:-196.908000px;}
.xc9{left:-188.959500px;}
.x3b{left:-1.338000px;}
.x0{left:0.000000px;}
.xcb{left:6.610500px;}
.x3c{left:30.522594px;}
.xcc{left:38.470500px;}
.x1{left:53.574000px;}
.x2{left:57.699701px;}
.x8b{left:62.784000px;}
.x80{left:64.110000px;}
.x8c{left:66.384000px;}
.x7d{left:68.067000px;}
.x81{left:69.099000px;}
.x7f{left:71.566500px;}
.x7e{left:72.633000px;}
.x6c{left:74.605500px;}
.x98{left:76.252500px;}
.x89{left:77.544000px;}
.x85{left:79.485000px;}
.xa6{left:81.772500px;}
.x86{left:83.140500px;}
.xa1{left:85.632000px;}
.x9e{left:89.367000px;}
.x9f{left:90.585000px;}
.xa0{left:91.653000px;}
.xa4{left:93.201000px;}
.xa5{left:94.267500px;}
.xad{left:95.284500px;}
.xaf{left:97.770000px;}
.xa9{left:98.784000px;}
.xae{left:100.390500px;}
.x87{left:155.379000px;}
.xa2{left:160.947000px;}
.x8e{left:201.585000px;}
.x8d{left:207.684000px;}
.x8f{left:235.561500px;}
.xd8{left:238.488000px;}
.x6d{left:244.258500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5b{left:257.052000px;}
.xb0{left:259.773000px;}
.x5c{left:264.631500px;}
.x68{left:268.785000px;}
.x4{left:269.914500px;}
.xb1{left:271.225500px;}
.x8{left:281.479500px;}
.x4f{left:284.095500px;}
.x27{left:285.337500px;}
.x50{left:290.902500px;}
.x56{left:294.757500px;}
.x57{left:298.689000px;}
.x28{left:300.280500px;}
.x9{left:302.514000px;}
.x3d{left:306.849000px;}
.x6{left:308.154000px;}
.xa{left:309.987000px;}
.xb2{left:313.480500px;}
.x4b{left:315.340500px;}
.x7{left:318.933000px;}
.xb3{left:328.425000px;}
.x6e{left:333.256500px;}
.x90{left:340.867500px;}
.x91{left:344.476500px;}
.x6f{left:347.638500px;}
.x5d{left:352.026000px;}
.x5e{left:355.957500px;}
.xc2{left:358.866000px;}
.xbf{left:360.009000px;}
.x70{left:361.134000px;}
.x9c{left:362.746500px;}
.x2d{left:368.625000px;}
.xc6{left:369.955500px;}
.xce{left:372.276000px;}
.xc3{left:373.809000px;}
.x9d{left:375.037500px;}
.x65{left:378.763500px;}
.x46{left:382.438500px;}
.x2e{left:383.569500px;}
.x2f{left:387.309000px;}
.xcd{left:390.730500px;}
.x66{left:394.942500px;}
.x47{left:400.660500px;}
.x30{left:402.253500px;}
.xa7{left:404.428500px;}
.xd{left:408.433500px;}
.xe{left:415.905000px;}
.x93{left:419.413500px;}
.x1d{left:422.398500px;}
.x92{left:425.512500px;}
.x1e{left:429.871500px;}
.x1f{left:433.681500px;}
.x71{left:439.680000px;}
.xb4{left:441.426000px;}
.x72{left:443.289000px;}
.x82{left:446.218500px;}
.x20{left:448.626000px;}
.x94{left:453.390000px;}
.xb5{left:455.887500px;}
.xb6{left:459.637500px;}
.x37{left:464.793000px;}
.xc1{left:466.311000px;}
.xca{left:470.110509px;}
.x4e{left:474.079500px;}
.xb7{left:478.333500px;}
.xaa{left:480.391500px;}
.x21{left:483.714000px;}
.x4a{left:487.194000px;}
.xb8{left:493.276500px;}
.x61{left:496.041000px;}
.x73{left:497.566500px;}
.x22{left:498.658500px;}
.x23{left:502.468500px;}
.x62{left:505.272000px;}
.xc5{left:507.730500px;}
.x74{left:511.950000px;}
.x58{left:514.876500px;}
.x24{left:517.413000px;}
.x59{left:518.809500px;}
.x75{left:520.968000px;}
.x38{left:524.676000px;}
.x6a{left:534.646500px;}
.xbc{left:535.728000px;}
.x39{left:539.619000px;}
.x99{left:541.018500px;}
.x6b{left:544.714500px;}
.xa3{left:546.567000px;}
.x9a{left:553.309500px;}
.x44{left:557.203500px;}
.x95{left:558.694500px;}
.x51{left:562.986000px;}
.x45{left:565.764000px;}
.x54{left:567.381000px;}
.x1b{left:570.897000px;}
.xab{left:574.897500px;}
.x33{left:577.533000px;}
.x4c{left:579.645000px;}
.x1c{left:585.841500px;}
.x3f{left:587.104500px;}
.x4d{left:588.876000px;}
.x34{left:592.476000px;}
.x76{left:603.991500px;}
.x77{left:607.600500px;}
.x83{left:610.528500px;}
.xf{left:626.400000px;}
.x42{left:628.221000px;}
.x25{left:629.983500px;}
.x10{left:633.873000px;}
.x11{left:637.683000px;}
.x43{left:639.424500px;}
.x5a{left:642.049500px;}
.x96{left:643.339500px;}
.x12{left:645.156000px;}
.xac{left:648.742500px;}
.xc4{left:652.974000px;}
.x97{left:658.629000px;}
.x88{left:664.081500px;}
.x78{left:667.278000px;}
.x9b{left:678.609000px;}
.x79{left:681.661500px;}
.x8a{left:688.063500px;}
.x7a{left:690.678000px;}
.x2b{left:698.416500px;}
.xb9{left:701.097000px;}
.xbd{left:704.496000px;}
.x69{left:709.389000px;}
.x2c{left:713.361000px;}
.xba{left:716.040000px;}
.xb{left:718.270500px;}
.xbe{left:719.439000px;}
.x52{left:723.163500px;}
.xd6{left:724.557000px;}
.xc{left:725.743500px;}
.xc7{left:728.830500px;}
.x17{left:731.775000px;}
.xcf{left:734.436000px;}
.x53{left:737.241000px;}
.xc8{left:738.979500px;}
.x31{left:742.522500px;}
.x18{left:746.718000px;}
.x19{left:750.379500px;}
.xd7{left:751.456500px;}
.x48{left:752.658000px;}
.x32{left:757.467000px;}
.x49{left:761.887500px;}
.x1a{left:765.324000px;}
.x13{left:766.543500px;}
.x35{left:768.457500px;}
.x14{left:774.015000px;}
.x7c{left:775.752000px;}
.x40{left:777.135000px;}
.x3e{left:778.884000px;}
.x15{left:781.494000px;}
.x36{left:783.400500px;}
.x7b{left:784.501500px;}
.x41{left:786.844500px;}
.x16{left:788.967000px;}
.x84{left:791.040000px;}
.xd5{left:795.130500px;}
.x55{left:797.262000px;}
.xa8{left:798.564000px;}
.xbb{left:799.870500px;}
.x26{left:803.401500px;}
.x67{left:807.757500px;}
.xd3{left:810.376500px;}
.xc0{left:813.886500px;}
.xd1{left:815.298000px;}
.xd2{left:816.415500px;}
.x29{left:818.371500px;}
.x5f{left:820.942500px;}
.x63{left:823.041000px;}
.xd0{left:825.571500px;}
.x60{left:830.172000px;}
.x2a{left:832.867500px;}
.x64{left:835.332000px;}
.xd4{left:837.276000px;}
@media print{
.v5{vertical-align:-35.066667pt;}
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.077333pt;}
.v3{vertical-align:13.443200pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.253333pt;}
.ls2e{letter-spacing:-0.321600pt;}
.ls2f{letter-spacing:-0.230400pt;}
.ls6b{letter-spacing:-0.208416pt;}
.ls67{letter-spacing:-0.160320pt;}
.ls68{letter-spacing:-0.149632pt;}
.ls32{letter-spacing:-0.117568pt;}
.ls3a{letter-spacing:-0.106880pt;}
.ls39{letter-spacing:-0.101536pt;}
.ls37{letter-spacing:-0.090848pt;}
.ls6d{letter-spacing:-0.085504pt;}
.ls34{letter-spacing:-0.080160pt;}
.ls36{letter-spacing:-0.074816pt;}
.ls35{letter-spacing:-0.064128pt;}
.ls38{letter-spacing:-0.053440pt;}
.ls6a{letter-spacing:-0.048096pt;}
.ls66{letter-spacing:-0.042752pt;}
.ls6c{letter-spacing:-0.037408pt;}
.ls31{letter-spacing:-0.032064pt;}
.ls30{letter-spacing:-0.026720pt;}
.ls2d{letter-spacing:-0.024000pt;}
.ls3b{letter-spacing:-0.021376pt;}
.ls2b{letter-spacing:-0.021280pt;}
.ls33{letter-spacing:-0.016032pt;}
.ls64{letter-spacing:-0.010688pt;}
.ls63{letter-spacing:-0.009600pt;}
.ls2c{letter-spacing:-0.004800pt;}
.ls10{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000061pt;}
.ls78{letter-spacing:0.000375pt;}
.ls11{letter-spacing:0.000387pt;}
.ls40{letter-spacing:0.000544pt;}
.ls7b{letter-spacing:0.001026pt;}
.ls7c{letter-spacing:0.002212pt;}
.ls29{letter-spacing:0.002370pt;}
.ls2{letter-spacing:0.002422pt;}
.ls6e{letter-spacing:0.002525pt;}
.ls47{letter-spacing:0.003025pt;}
.ls6{letter-spacing:0.004237pt;}
.ls73{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.004800pt;}
.ls5c{letter-spacing:0.005344pt;}
.ls1d{letter-spacing:0.009600pt;}
.ls62{letter-spacing:0.010688pt;}
.ls1c{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.019200pt;}
.ls5a{letter-spacing:0.021376pt;}
.ls59{letter-spacing:0.024000pt;}
.ls61{letter-spacing:0.026720pt;}
.ls13{letter-spacing:0.029792pt;}
.ls22{letter-spacing:0.032064pt;}
.ls19{letter-spacing:0.033600pt;}
.ls26{letter-spacing:0.037408pt;}
.ls5b{letter-spacing:0.042752pt;}
.ls1b{letter-spacing:0.043200pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls5e{letter-spacing:0.048096pt;}
.ls23{letter-spacing:0.053440pt;}
.ls18{letter-spacing:0.062400pt;}
.ls21{letter-spacing:0.069472pt;}
.ls1f{letter-spacing:0.072000pt;}
.ls69{letter-spacing:0.074816pt;}
.ls20{letter-spacing:0.088320pt;}
.ls25{letter-spacing:0.090848pt;}
.ls17{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.110400pt;}
.ls14{letter-spacing:0.153216pt;}
.ls5f{letter-spacing:0.160320pt;}
.ls12{letter-spacing:0.161728pt;}
.ls50{letter-spacing:0.442457pt;}
.ls48{letter-spacing:0.447791pt;}
.ls3e{letter-spacing:0.637762pt;}
.ls5d{letter-spacing:1.362720pt;}
.ls60{letter-spacing:1.998656pt;}
.ls41{letter-spacing:2.656079pt;}
.ls3{letter-spacing:2.657067pt;}
.ls49{letter-spacing:2.657867pt;}
.ls1{letter-spacing:2.665203pt;}
.ls3f{letter-spacing:3.163733pt;}
.ls65{letter-spacing:7.118208pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4d{letter-spacing:9.567791pt;}
.ls46{letter-spacing:9.743791pt;}
.ls4e{letter-spacing:9.749124pt;}
.ls9{letter-spacing:10.625718pt;}
.lsf{letter-spacing:10.626533pt;}
.ls7e{letter-spacing:11.803330pt;}
.lsd{letter-spacing:11.926607pt;}
.ls77{letter-spacing:11.952503pt;}
.ls71{letter-spacing:11.954133pt;}
.ls6f{letter-spacing:11.959467pt;}
.ls7a{letter-spacing:11.983405pt;}
.ls7d{letter-spacing:12.066262pt;}
.lse{letter-spacing:12.076132pt;}
.lsc{letter-spacing:12.109946pt;}
.ls44{letter-spacing:12.442590pt;}
.ls28{letter-spacing:12.528078pt;}
.ls75{letter-spacing:12.551990pt;}
.ls27{letter-spacing:12.553600pt;}
.ls72{letter-spacing:13.001663pt;}
.ls55{letter-spacing:13.226307pt;}
.ls5{letter-spacing:13.283733pt;}
.ls56{letter-spacing:13.284147pt;}
.ls58{letter-spacing:13.301743pt;}
.ls53{letter-spacing:13.368551pt;}
.ls57{letter-spacing:13.462907pt;}
.ls3d{letter-spacing:13.506163pt;}
.ls70{letter-spacing:13.785976pt;}
.ls43{letter-spacing:13.923096pt;}
.ls42{letter-spacing:13.945067pt;}
.ls51{letter-spacing:14.239876pt;}
.ls7f{letter-spacing:14.768983pt;}
.ls76{letter-spacing:15.260486pt;}
.lsb{letter-spacing:15.545809pt;}
.ls74{letter-spacing:16.447414pt;}
.ls79{letter-spacing:19.548068pt;}
.ls52{letter-spacing:20.509673pt;}
.ls2a{letter-spacing:20.680125pt;}
.ls4{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsa{letter-spacing:57.174803pt;}
.ls7{letter-spacing:64.321067pt;}
.ls4a{letter-spacing:107.315865pt;}
.ls4f{letter-spacing:108.109692pt;}
.ls45{letter-spacing:127.309692pt;}
.ls4b{letter-spacing:135.863200pt;}
.ls4c{letter-spacing:140.119200pt;}
.ls3c{letter-spacing:754.642272pt;}
.wsb{word-spacing:-83.128453pt;}
.ws55{word-spacing:-53.440000pt;}
.ws53{word-spacing:-48.000000pt;}
.ws54{word-spacing:-13.360000pt;}
.wse{word-spacing:-13.283467pt;}
.ws10{word-spacing:-12.760670pt;}
.ws52{word-spacing:-12.000000pt;}
.ws20{word-spacing:-11.955200pt;}
.ws50{word-spacing:-10.801728pt;}
.ws51{word-spacing:-10.640000pt;}
.ws13{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.wsf4{word-spacing:-8.000000pt;}
.ws8d{word-spacing:-4.941450pt;}
.ws8c{word-spacing:-4.250709pt;}
.wsdd{word-spacing:-3.878772pt;}
.ws89{word-spacing:-3.772505pt;}
.wsb4{word-spacing:-2.922363pt;}
.wse4{word-spacing:-2.444158pt;}
.ws2d{word-spacing:-2.231622pt;}
.ws49{word-spacing:-2.019087pt;}
.ws8e{word-spacing:-1.965953pt;}
.ws87{word-spacing:-1.912819pt;}
.wsd2{word-spacing:-1.859685pt;}
.ws132{word-spacing:-1.817190pt;}
.ws8b{word-spacing:-1.806551pt;}
.ws33{word-spacing:-1.753418pt;}
.ws59{word-spacing:-1.700284pt;}
.ws8a{word-spacing:-1.647150pt;}
.ws133{word-spacing:-1.625907pt;}
.wse3{word-spacing:-1.487748pt;}
.wse5{word-spacing:-1.434614pt;}
.wsb5{word-spacing:-1.381481pt;}
.wsdf{word-spacing:-1.328347pt;}
.ws58{word-spacing:-1.291162pt;}
.wsfa{word-spacing:-1.275213pt;}
.wsef{word-spacing:-1.222079pt;}
.wsde{word-spacing:-1.168945pt;}
.ws14c{word-spacing:-1.099878pt;}
.ws43{word-spacing:-1.062677pt;}
.ws13c{word-spacing:-0.956416pt;}
.ws35{word-spacing:-0.956410pt;}
.ws24{word-spacing:-0.908595pt;}
.ws12a{word-spacing:-0.908480pt;}
.ws135{word-spacing:-0.860774pt;}
.ws42{word-spacing:-0.850142pt;}
.ws131{word-spacing:-0.812954pt;}
.wsc9{word-spacing:-0.765133pt;}
.ws85{word-spacing:-0.743874pt;}
.wse7{word-spacing:-0.637606pt;}
.ws136{word-spacing:-0.621670pt;}
.ws2e{word-spacing:-0.584473pt;}
.ws12d{word-spacing:-0.577152pt;}
.wsf1{word-spacing:-0.531339pt;}
.ws12e{word-spacing:-0.470272pt;}
.ws2{word-spacing:-0.371936pt;}
.ws3a{word-spacing:-0.318803pt;}
.ws6e{word-spacing:-0.309952pt;}
.ws137{word-spacing:-0.286925pt;}
.ws4c{word-spacing:-0.265669pt;}
.ws5c{word-spacing:-0.242592pt;}
.wsfb{word-spacing:-0.239104pt;}
.ws5e{word-spacing:-0.234080pt;}
.ws3b{word-spacing:-0.212535pt;}
.ws125{word-spacing:-0.192384pt;}
.ws57{word-spacing:-0.191283pt;}
.wsa7{word-spacing:-0.185968pt;}
.ws79{word-spacing:-0.165664pt;}
.ws140{word-spacing:-0.165003pt;}
.ws74{word-spacing:-0.160320pt;}
.ws2a{word-spacing:-0.159402pt;}
.ws18{word-spacing:-0.143462pt;}
.wsdc{word-spacing:-0.127522pt;}
.ws5d{word-spacing:-0.110656pt;}
.ws44{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.wsc5{word-spacing:-0.085014pt;}
.wsf{word-spacing:-0.053134pt;}
.ws21{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.ws9b{word-spacing:-0.037194pt;}
.ws124{word-spacing:-0.032064pt;}
.ws32{word-spacing:-0.005998pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.003452pt;}
.ws11b{word-spacing:0.005344pt;}
.ws73{word-spacing:0.026720pt;}
.ws82{word-spacing:0.042752pt;}
.ws56{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws22{word-spacing:0.095642pt;}
.ws72{word-spacing:0.096192pt;}
.ws2b{word-spacing:0.106268pt;}
.ws6f{word-spacing:0.106880pt;}
.ws11d{word-spacing:0.112224pt;}
.ws104{word-spacing:0.115200pt;}
.ws6d{word-spacing:0.124800pt;}
.ws1c{word-spacing:0.143462pt;}
.ws105{word-spacing:0.153600pt;}
.ws28{word-spacing:0.159402pt;}
.ws108{word-spacing:0.163200pt;}
.ws130{word-spacing:0.165664pt;}
.ws15{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws1e{word-spacing:0.239104pt;}
.ws48{word-spacing:0.265669pt;}
.wsf6{word-spacing:0.286925pt;}
.wsea{word-spacing:0.318803pt;}
.ws145{word-spacing:0.334746pt;}
.ws90{word-spacing:0.371937pt;}
.ws126{word-spacing:0.390112pt;}
.ws6a{word-spacing:0.408000pt;}
.ws4e{word-spacing:0.425071pt;}
.ws148{word-spacing:0.430387pt;}
.wsd7{word-spacing:0.445294pt;}
.wsae{word-spacing:0.447648pt;}
.wsab{word-spacing:0.447807pt;}
.wsa9{word-spacing:0.448159pt;}
.wsb0{word-spacing:0.455827pt;}
.wsbf{word-spacing:0.456129pt;}
.wsb1{word-spacing:0.456458pt;}
.wsce{word-spacing:0.456990pt;}
.wscd{word-spacing:0.458529pt;}
.wsc2{word-spacing:0.460267pt;}
.wsdb{word-spacing:0.460894pt;}
.ws9c{word-spacing:0.463777pt;}
.wsa4{word-spacing:0.463972pt;}
.ws9f{word-spacing:0.465600pt;}
.wsaa{word-spacing:0.466133pt;}
.ws9a{word-spacing:0.469110pt;}
.wsb2{word-spacing:0.471520pt;}
.wscb{word-spacing:0.475115pt;}
.ws69{word-spacing:0.475200pt;}
.wsa1{word-spacing:0.475536pt;}
.wsbe{word-spacing:0.478048pt;}
.wse2{word-spacing:0.478205pt;}
.wsd8{word-spacing:0.479154pt;}
.wsa6{word-spacing:0.480869pt;}
.wsa3{word-spacing:0.483392pt;}
.wsac{word-spacing:0.484490pt;}
.ws86{word-spacing:0.505333pt;}
.ws127{word-spacing:0.507680pt;}
.wsec{word-spacing:0.584473pt;}
.ws46{word-spacing:0.637606pt;}
.ws38{word-spacing:0.690740pt;}
.ws27{word-spacing:0.743874pt;}
.ws157{word-spacing:0.765133pt;}
.ws2c{word-spacing:0.797008pt;}
.ws147{word-spacing:0.812954pt;}
.ws7c{word-spacing:0.822976pt;}
.wsf0{word-spacing:0.850142pt;}
.wsb7{word-spacing:0.903276pt;}
.ws156{word-spacing:0.908595pt;}
.ws7f{word-spacing:0.951232pt;}
.wsc7{word-spacing:0.956410pt;}
.ws23{word-spacing:1.004237pt;}
.ws13d{word-spacing:1.052058pt;}
.wsf9{word-spacing:1.062677pt;}
.ws7e{word-spacing:1.068800pt;}
.ws123{word-spacing:1.074144pt;}
.ws113{word-spacing:1.084832pt;}
.ws7d{word-spacing:1.148960pt;}
.ws47{word-spacing:1.168945pt;}
.ws114{word-spacing:1.202400pt;}
.ws31{word-spacing:1.222079pt;}
.wsfc{word-spacing:1.243341pt;}
.wse9{word-spacing:1.275213pt;}
.ws117{word-spacing:1.309280pt;}
.ws3d{word-spacing:1.381481pt;}
.ws13a{word-spacing:1.386803pt;}
.ws64{word-spacing:1.392000pt;}
.ws118{word-spacing:1.405472pt;}
.ws7b{word-spacing:1.410816pt;}
.ws139{word-spacing:1.434624pt;}
.ws7a{word-spacing:1.448224pt;}
.ws122{word-spacing:1.458912pt;}
.ws116{word-spacing:1.464256pt;}
.ws115{word-spacing:1.507008pt;}
.wsb8{word-spacing:1.540882pt;}
.ws13f{word-spacing:1.578086pt;}
.wse1{word-spacing:1.594016pt;}
.wsfe{word-spacing:1.625907pt;}
.ws77{word-spacing:1.710080pt;}
.ws6b{word-spacing:1.713600pt;}
.ws62{word-spacing:1.728000pt;}
.ws76{word-spacing:1.742144pt;}
.ws6c{word-spacing:1.742400pt;}
.ws3c{word-spacing:1.753418pt;}
.ws63{word-spacing:1.766400pt;}
.ws41{word-spacing:1.806551pt;}
.ws13b{word-spacing:1.817190pt;}
.ws11a{word-spacing:1.838336pt;}
.wsf8{word-spacing:1.859685pt;}
.ws88{word-spacing:1.912819pt;}
.ws16{word-spacing:1.912832pt;}
.ws91{word-spacing:1.965953pt;}
.ws121{word-spacing:1.966592pt;}
.wsee{word-spacing:2.125355pt;}
.wsed{word-spacing:2.178489pt;}
.ws15c{word-spacing:2.199757pt;}
.ws30{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws36{word-spacing:2.284756pt;}
.ws11c{word-spacing:2.292576pt;}
.wsc6{word-spacing:2.295389pt;}
.ws14e{word-spacing:2.295398pt;}
.ws78{word-spacing:2.303264pt;}
.ws39{word-spacing:2.337890pt;}
.ws119{word-spacing:2.351360pt;}
.ws68{word-spacing:2.352000pt;}
.ws67{word-spacing:2.356800pt;}
.ws8f{word-spacing:2.391024pt;}
.ws1b{word-spacing:2.391040pt;}
.ws4b{word-spacing:2.444158pt;}
.wsc8{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.ws17{word-spacing:2.582323pt;}
.ws96{word-spacing:2.603559pt;}
.ws97{word-spacing:2.656693pt;}
.ws61{word-spacing:2.659200pt;}
.ws26{word-spacing:2.709827pt;}
.ws15a{word-spacing:2.725786pt;}
.ws146{word-spacing:2.860663pt;}
.ws159{word-spacing:2.862097pt;}
.ws142{word-spacing:2.862251pt;}
.ws141{word-spacing:2.864009pt;}
.ws150{word-spacing:2.865382pt;}
.ws155{word-spacing:2.866031pt;}
.ws3e{word-spacing:2.869229pt;}
.ws138{word-spacing:2.869248pt;}
.ws14b{word-spacing:2.869419pt;}
.ws19{word-spacing:2.917069pt;}
.ws4f{word-spacing:2.922363pt;}
.wse6{word-spacing:2.975497pt;}
.ws14a{word-spacing:3.012710pt;}
.ws60{word-spacing:3.019200pt;}
.wse8{word-spacing:3.028630pt;}
.ws14f{word-spacing:3.060531pt;}
.ws4d{word-spacing:3.081764pt;}
.ws4a{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.ws75{word-spacing:3.227776pt;}
.wsf2{word-spacing:3.241166pt;}
.wsf7{word-spacing:3.294300pt;}
.ws12b{word-spacing:3.313280pt;}
.ws12c{word-spacing:3.329312pt;}
.ws83{word-spacing:3.347434pt;}
.ws154{word-spacing:3.347456pt;}
.ws45{word-spacing:3.400567pt;}
.wsb9{word-spacing:3.453701pt;}
.ws2f{word-spacing:3.506835pt;}
.ws143{word-spacing:3.538739pt;}
.ws1a{word-spacing:3.586560pt;}
.wsb3{word-spacing:3.613103pt;}
.ws5f{word-spacing:3.676800pt;}
.wsf5{word-spacing:3.682202pt;}
.wsd0{word-spacing:3.698126pt;}
.ws15f{word-spacing:3.777843pt;}
.ws40{word-spacing:3.878772pt;}
.wsfd{word-spacing:3.921306pt;}
.wseb{word-spacing:3.931906pt;}
.ws101{word-spacing:3.955200pt;}
.ws15e{word-spacing:4.112589pt;}
.ws9{word-spacing:4.240070pt;}
.wse0{word-spacing:4.250709pt;}
.ws80{word-spacing:4.259168pt;}
.ws11e{word-spacing:4.285888pt;}
.wsa{word-spacing:4.314458pt;}
.ws81{word-spacing:4.344672pt;}
.ws15b{word-spacing:4.351693pt;}
.ws95{word-spacing:4.356977pt;}
.ws93{word-spacing:4.410111pt;}
.wsf3{word-spacing:4.516379pt;}
.ws134{word-spacing:4.542976pt;}
.ws149{word-spacing:4.590797pt;}
.ws66{word-spacing:4.608000pt;}
.ws84{word-spacing:4.782048pt;}
.ws3f{word-spacing:4.835182pt;}
.ws29{word-spacing:4.888316pt;}
.ws65{word-spacing:4.982400pt;}
.ws94{word-spacing:5.047717pt;}
.ws110{word-spacing:5.221088pt;}
.ws10f{word-spacing:5.274528pt;}
.ws92{word-spacing:5.313387pt;}
.ws109{word-spacing:5.498976pt;}
.ws10a{word-spacing:5.531040pt;}
.ws120{word-spacing:5.536384pt;}
.ws11f{word-spacing:5.563104pt;}
.wsb6{word-spacing:5.685324pt;}
.ws151{word-spacing:5.690675pt;}
.ws12f{word-spacing:5.819616pt;}
.ws152{word-spacing:6.025421pt;}
.ws1f{word-spacing:6.216704pt;}
.wsbb{word-spacing:6.551450pt;}
.ws5a{word-spacing:6.694867pt;}
.ws7{word-spacing:6.918010pt;}
.wsba{word-spacing:6.934016pt;}
.ws111{word-spacing:7.128896pt;}
.wsd1{word-spacing:7.279340pt;}
.ws5b{word-spacing:7.385607pt;}
.ws100{word-spacing:7.478400pt;}
.ws153{word-spacing:7.603507pt;}
.ws10e{word-spacing:7.754144pt;}
.wsff{word-spacing:8.136000pt;}
.ws13e{word-spacing:8.225178pt;}
.ws158{word-spacing:8.320819pt;}
.ws128{word-spacing:9.079456pt;}
.ws129{word-spacing:9.127552pt;}
.ws112{word-spacing:9.651264pt;}
.ws15d{word-spacing:9.898906pt;}
.ws70{word-spacing:9.966560pt;}
.ws71{word-spacing:10.116192pt;}
.ws10d{word-spacing:10.639904pt;}
.ws106{word-spacing:10.675200pt;}
.ws102{word-spacing:10.694400pt;}
.ws103{word-spacing:10.704000pt;}
.ws107{word-spacing:10.728000pt;}
.ws5{word-spacing:10.823338pt;}
.ws14d{word-spacing:11.046605pt;}
.ws144{word-spacing:13.915853pt;}
.ws6{word-spacing:14.319536pt;}
.ws10b{word-spacing:17.309216pt;}
.ws10c{word-spacing:17.314560pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.wsc{word-spacing:35.593054pt;}
.wsbc{word-spacing:70.328942pt;}
.ws98{word-spacing:89.515506pt;}
.wsc1{word-spacing:95.896000pt;}
.wsc3{word-spacing:96.360000pt;}
.ws9e{word-spacing:96.824000pt;}
.wscc{word-spacing:97.421333pt;}
.ws99{word-spacing:103.562400pt;}
.wsa2{word-spacing:106.258667pt;}
.wsc4{word-spacing:106.722667pt;}
.wsbd{word-spacing:106.728000pt;}
.wsa0{word-spacing:116.018667pt;}
.wsc0{word-spacing:117.713070pt;}
.wsa5{word-spacing:131.185561pt;}
.wsad{word-spacing:142.725198pt;}
.wsda{word-spacing:144.269333pt;}
.wsd6{word-spacing:153.101333pt;}
.wsd9{word-spacing:153.565333pt;}
.wsa8{word-spacing:164.609126pt;}
.wscf{word-spacing:170.117968pt;}
.wsca{word-spacing:173.352321pt;}
.wsaf{word-spacing:191.956170pt;}
.wsd4{word-spacing:197.021780pt;}
.wsd3{word-spacing:238.730531pt;}
.ws9d{word-spacing:270.434666pt;}
.wsd5{word-spacing:327.154906pt;}
._1a{margin-left:-7.470653pt;}
._e{margin-left:-6.418575pt;}
._5{margin-left:-5.260288pt;}
._8{margin-left:-3.910662pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.338970pt;}
._16{width:1.051232pt;}
._6{width:2.611583pt;}
._42{width:8.740496pt;}
._7{width:9.861670pt;}
._1{width:11.528518pt;}
._10{width:13.180965pt;}
._19{width:14.325210pt;}
._b{width:15.531117pt;}
._15{width:16.471499pt;}
._c{width:17.385433pt;}
._f{width:18.352295pt;}
._9{width:20.084736pt;}
._14{width:22.156822pt;}
._2{width:23.063232pt;}
._13{width:24.016508pt;}
._a{width:26.064983pt;}
._3{width:27.188522pt;}
._63{width:28.692288pt;}
._1c{width:30.020635pt;}
._d{width:31.402150pt;}
._1b{width:33.081155pt;}
._47{width:34.165076pt;}
._18{width:39.106526pt;}
._67{width:54.993920pt;}
._3e{width:61.629795pt;}
._53{width:65.163187pt;}
._52{width:77.102333pt;}
._66{width:78.904320pt;}
._4b{width:83.908762pt;}
._3c{width:89.073338pt;}
._4a{width:91.087126pt;}
._51{width:95.141229pt;}
._48{width:96.926522pt;}
._21{width:97.893555pt;}
._49{width:99.790429pt;}
._28{width:103.361014pt;}
._4e{width:105.258407pt;}
._29{width:106.589360pt;}
._37{width:107.824246pt;}
._1d{width:114.450042pt;}
._58{width:117.792131pt;}
._1e{width:120.836640pt;}
._32{width:122.749511pt;}
._20{width:124.226624pt;}
._55{width:126.478637pt;}
._5c{width:130.674217pt;}
._3d{width:131.628150pt;}
._1f{width:132.892733pt;}
._2e{width:134.720874pt;}
._4f{width:136.084517pt;}
._2d{width:142.227773pt;}
._2a{width:144.523698pt;}
._2b{width:145.761718pt;}
._5b{width:147.466970pt;}
._25{width:150.038982pt;}
._26{width:152.121824pt;}
._30{width:153.758342pt;}
._39{width:155.320474pt;}
._4c{width:157.812445pt;}
._34{width:161.383584pt;}
._61{width:162.314036pt;}
._57{width:163.641171pt;}
._27{width:164.544486pt;}
._3a{width:166.813296pt;}
._46{width:173.359370pt;}
._33{width:174.400790pt;}
._38{width:177.190310pt;}
._44{width:178.864022pt;}
._43{width:183.221040pt;}
._3f{width:186.116774pt;}
._41{width:191.956170pt;}
._40{width:200.608752pt;}
._45{width:201.729926pt;}
._59{width:210.329808pt;}
._4d{width:213.379683pt;}
._22{width:214.941814pt;}
._50{width:217.656947pt;}
._54{width:222.678083pt;}
._56{width:226.955347pt;}
._62{width:236.179360pt;}
._31{width:242.066580pt;}
._60{width:245.477760pt;}
._36{width:287.992375pt;}
._35{width:295.242797pt;}
._2c{width:296.393698pt;}
._5f{width:297.995411pt;}
._23{width:298.924963pt;}
._2f{width:305.851529pt;}
._24{width:318.116861pt;}
._5a{width:354.864138pt;}
._3b{width:389.009924pt;}
._5e{width:391.278662pt;}
._5d{width:409.693158pt;}
._11{width:595.228322pt;}
._65{width:1835.706432pt;}
._17{width:1857.148160pt;}
._64{width:2202.066667pt;}
._12{width:2223.320000pt;}
.fs10{font-size:26.566933pt;}
.fsb{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fs11{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fsf{font-size:38.755733pt;}
.fs4{font-size:40.381867pt;}
.fse{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:106.848911pt;}
.y1cd{bottom:-573.816933pt;}
.y1eb{bottom:-500.528533pt;}
.y91{bottom:-485.930267pt;}
.y1ea{bottom:-483.489189pt;}
.y1e9{bottom:-466.369685pt;}
.y1e8{bottom:-449.250181pt;}
.y1e7{bottom:-432.210837pt;}
.ya8{bottom:-428.644955pt;}
.y1e6{bottom:-415.091333pt;}
.ya7{bottom:-408.885515pt;}
.y1e5{bottom:-397.971829pt;}
.ya6{bottom:-391.846171pt;}
.y1e4{bottom:-380.932485pt;}
.ya5{bottom:-374.726667pt;}
.y1e3{bottom:-363.812981pt;}
.ya4{bottom:-357.607163pt;}
.y1e2{bottom:-346.773637pt;}
.ya3{bottom:-336.566499pt;}
.y1e1{bottom:-329.654133pt;}
.y1e0{bottom:-312.534629pt;}
.ya2{bottom:-303.447059pt;}
.y1df{bottom:-295.495285pt;}
.ya1{bottom:-286.407715pt;}
.y1de{bottom:-278.375781pt;}
.ya0{bottom:-269.288211pt;}
.y1dd{bottom:-261.336437pt;}
.y9f{bottom:-252.168707pt;}
.y1dc{bottom:-244.215653pt;}
.y9e{bottom:-231.128043pt;}
.y1db{bottom:-227.096149pt;}
.y1da{bottom:-210.055469pt;}
.y9d{bottom:-198.008603pt;}
.y1d9{bottom:-192.935965pt;}
.y9c{bottom:-180.969259pt;}
.y1d8{bottom:-175.895285pt;}
.y9b{bottom:-163.849755pt;}
.y1d7{bottom:-158.775781pt;}
.y9a{bottom:-142.730267pt;}
.y1d6{bottom:-141.656277pt;}
.y1d5{bottom:-124.616933pt;}
.y99{bottom:-110.009733pt;}
.y98{bottom:-94.731067pt;}
.y1d4{bottom:-91.897733pt;}
.y97{bottom:-79.290667pt;}
.y1d3{bottom:-76.537733pt;}
.y96{bottom:-63.930667pt;}
.y1d2{bottom:-61.177733pt;}
.y95{bottom:-48.490267pt;}
.y1d1{bottom:-45.817733pt;}
.y94{bottom:-33.210667pt;}
.y1d0{bottom:-30.377333pt;}
.y93{bottom:-17.770267pt;}
.y1cf{bottom:-14.936933pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:2.229437pt;}
.y1ce{bottom:4.983691pt;}
.y18{bottom:15.592023pt;}
.y46{bottom:28.346667pt;}
.y162{bottom:89.752000pt;}
.yf9{bottom:90.500000pt;}
.y16{bottom:93.018667pt;}
.y204{bottom:93.134667pt;}
.y45{bottom:93.594667pt;}
.y1c8{bottom:95.282667pt;}
.y7d{bottom:95.681333pt;}
.y239{bottom:99.626667pt;}
.y12a{bottom:100.502667pt;}
.y195{bottom:102.564000pt;}
.ybf{bottom:106.158667pt;}
.y161{bottom:106.489333pt;}
.yf8{bottom:107.237333pt;}
.y203{bottom:108.756000pt;}
.y15{bottom:108.920000pt;}
.y44{bottom:110.332000pt;}
.y1c7{bottom:112.020000pt;}
.y7c{bottom:112.418667pt;}
.y238{bottom:114.969333pt;}
.y129{bottom:117.240000pt;}
.y194{bottom:119.301333pt;}
.ybd{bottom:122.896000pt;}
.y160{bottom:123.226667pt;}
.yf6{bottom:123.974667pt;}
.y202{bottom:124.377333pt;}
.y14{bottom:124.820000pt;}
.y43{bottom:127.069333pt;}
.ybe{bottom:127.718667pt;}
.y1c6{bottom:128.757333pt;}
.yf7{bottom:128.797333pt;}
.y7b{bottom:129.156000pt;}
.y237{bottom:130.312000pt;}
.y128{bottom:133.977333pt;}
.y26c{bottom:134.868000pt;}
.y193{bottom:136.038667pt;}
.ybc{bottom:139.633333pt;}
.y15f{bottom:139.964000pt;}
.y201{bottom:139.998667pt;}
.yf5{bottom:140.712000pt;}
.y13{bottom:140.720000pt;}
.y42{bottom:143.806667pt;}
.y1c5{bottom:145.494667pt;}
.y236{bottom:145.654667pt;}
.y7a{bottom:145.893333pt;}
.y26b{bottom:150.210667pt;}
.y127{bottom:150.714667pt;}
.y200{bottom:155.620000pt;}
.ybb{bottom:156.370667pt;}
.y12{bottom:156.621333pt;}
.y15e{bottom:156.701333pt;}
.yf4{bottom:157.449333pt;}
.y41{bottom:160.544000pt;}
.y235{bottom:160.996000pt;}
.y1c4{bottom:162.232000pt;}
.y79{bottom:162.630667pt;}
.y26a{bottom:165.552000pt;}
.y126{bottom:167.452000pt;}
.y192{bottom:171.713333pt;}
.y11{bottom:172.521333pt;}
.yf3{bottom:174.186667pt;}
.y234{bottom:176.338667pt;}
.yba{bottom:177.093333pt;}
.y40{bottom:177.281333pt;}
.y1c3{bottom:178.969333pt;}
.y78{bottom:179.368000pt;}
.y125{bottom:184.189333pt;}
.y191{bottom:184.332000pt;}
.y1ff{bottom:187.182667pt;}
.y10{bottom:188.421333pt;}
.yf2{bottom:190.924000pt;}
.y233{bottom:191.681333pt;}
.y15d{bottom:192.376000pt;}
.y3f{bottom:194.017333pt;}
.y1c2{bottom:195.706667pt;}
.y77{bottom:196.105333pt;}
.y269{bottom:200.289333pt;}
.y124{bottom:200.926667pt;}
.y190{bottom:202.544000pt;}
.y1fe{bottom:203.920000pt;}
.yf{bottom:204.322667pt;}
.y15c{bottom:204.994667pt;}
.yb9{bottom:206.981333pt;}
.y232{bottom:207.024000pt;}
.yf1{bottom:207.661333pt;}
.y3e{bottom:210.754667pt;}
.y1c1{bottom:212.444000pt;}
.y76{bottom:212.841333pt;}
.y268{bottom:215.632000pt;}
.y15b{bottom:217.614667pt;}
.y123{bottom:217.662667pt;}
.y18f{bottom:219.572000pt;}
.y1fd{bottom:220.657333pt;}
.y231{bottom:222.366667pt;}
.yb8{bottom:223.718667pt;}
.yf0{bottom:224.398667pt;}
.y3d{bottom:227.492000pt;}
.y1c0{bottom:229.181333pt;}
.y75{bottom:229.578667pt;}
.y267{bottom:230.974667pt;}
.y15a{bottom:235.825333pt;}
.y18e{bottom:236.601333pt;}
.y1fc{bottom:237.394667pt;}
.y230{bottom:237.709333pt;}
.yb7{bottom:240.456000pt;}
.yef{bottom:241.136000pt;}
.y3c{bottom:244.229333pt;}
.y1bf{bottom:245.918667pt;}
.y74{bottom:246.316000pt;}
.y159{bottom:252.854667pt;}
.y22f{bottom:253.052000pt;}
.y122{bottom:253.337333pt;}
.y18d{bottom:253.630667pt;}
.y1fb{bottom:254.132000pt;}
.yb6{bottom:257.193333pt;}
.yee{bottom:257.873333pt;}
.y3b{bottom:260.966667pt;}
.y266{bottom:261.658667pt;}
.y1be{bottom:262.656000pt;}
.y73{bottom:263.053333pt;}
.ye{bottom:266.570667pt;}
.y22e{bottom:268.394667pt;}
.y158{bottom:269.882667pt;}
.y18c{bottom:270.658667pt;}
.y1fa{bottom:270.869333pt;}
.y121{bottom:271.548000pt;}
.yed{bottom:274.610667pt;}
.y265{bottom:277.001333pt;}
.y3a{bottom:277.704000pt;}
.yb5{bottom:277.914667pt;}
.y1bd{bottom:279.393333pt;}
.y72{bottom:279.790667pt;}
.y157{bottom:280.509333pt;}
.yd{bottom:282.470667pt;}
.y22d{bottom:283.737333pt;}
.y1f9{bottom:287.606667pt;}
.y18b{bottom:287.688000pt;}
.y120{bottom:288.577333pt;}
.y11f{bottom:288.869333pt;}
.y156{bottom:291.137333pt;}
.yec{bottom:291.348000pt;}
.y264{bottom:292.344000pt;}
.y39{bottom:294.441333pt;}
.y1bc{bottom:296.129333pt;}
.y71{bottom:296.528000pt;}
.y18a{bottom:298.314667pt;}
.yc{bottom:298.370667pt;}
.y22c{bottom:299.078667pt;}
.y1f8{bottom:304.342667pt;}
.y11e{bottom:305.606667pt;}
.y263{bottom:307.686667pt;}
.yb4{bottom:307.802667pt;}
.yea{bottom:308.085333pt;}
.y155{bottom:308.165333pt;}
.y38{bottom:311.178667pt;}
.y1bb{bottom:312.866667pt;}
.yeb{bottom:312.906667pt;}
.y70{bottom:313.265333pt;}
.yb{bottom:314.272000pt;}
.y22b{bottom:314.421333pt;}
.y187{bottom:315.344000pt;}
.y189{bottom:320.657333pt;}
.y1f7{bottom:321.080000pt;}
.y11d{bottom:322.636000pt;}
.y262{bottom:323.029333pt;}
.yb3{bottom:324.540000pt;}
.ye8{bottom:324.822667pt;}
.y154{bottom:325.194667pt;}
.y185{bottom:325.970667pt;}
.y37{bottom:327.916000pt;}
.y1ba{bottom:329.604000pt;}
.ye9{bottom:329.644000pt;}
.y22a{bottom:329.764000pt;}
.y6f{bottom:330.002667pt;}
.y188{bottom:331.284000pt;}
.y11c{bottom:333.262667pt;}
.y186{bottom:336.597333pt;}
.y1f6{bottom:337.817333pt;}
.y261{bottom:338.372000pt;}
.ya{bottom:339.470667pt;}
.yb2{bottom:341.277333pt;}
.ye7{bottom:341.560000pt;}
.y153{bottom:342.224000pt;}
.y11b{bottom:343.889333pt;}
.y229{bottom:345.106667pt;}
.y8d{bottom:345.146667pt;}
.y1b9{bottom:346.341333pt;}
.y6e{bottom:346.740000pt;}
.y36{bottom:348.638667pt;}
.y1c9{bottom:351.562667pt;}
.y152{bottom:352.850667pt;}
.y260{bottom:353.714667pt;}
.y1f5{bottom:354.554667pt;}
.ye6{bottom:358.297333pt;}
.y228{bottom:360.449333pt;}
.y11a{bottom:360.917333pt;}
.y8c{bottom:361.884000pt;}
.yb1{bottom:362.000000pt;}
.y1b8{bottom:363.078667pt;}
.y9{bottom:363.341333pt;}
.y6d{bottom:363.477333pt;}
.y184{bottom:364.570667pt;}
.y119{bottom:366.230667pt;}
.y25f{bottom:369.056000pt;}
.y151{bottom:369.878667pt;}
.y1f4{bottom:371.292000pt;}
.y227{bottom:375.792000pt;}
.y8b{bottom:378.621333pt;}
.ye5{bottom:379.020000pt;}
.y8{bottom:379.241333pt;}
.y1b7{bottom:379.816000pt;}
.y6c{bottom:380.214667pt;}
.y117{bottom:384.216000pt;}
.y25e{bottom:384.398667pt;}
.y150{bottom:386.908000pt;}
.y1f3{bottom:388.029333pt;}
.y118{bottom:388.573333pt;}
.yb0{bottom:389.046667pt;}
.y226{bottom:391.134667pt;}
.y7{bottom:395.141333pt;}
.y8a{bottom:395.358667pt;}
.y1b6{bottom:396.553333pt;}
.y6b{bottom:396.952000pt;}
.y183{bottom:397.552000pt;}
.y25d{bottom:399.741333pt;}
.y14f{bottom:403.937333pt;}
.y1f2{bottom:404.766667pt;}
.y116{bottom:405.602667pt;}
.yae{bottom:406.142667pt;}
.y225{bottom:406.477333pt;}
.ye4{bottom:408.908000pt;}
.yaf{bottom:410.482667pt;}
.y6{bottom:411.042667pt;}
.y89{bottom:412.096000pt;}
.y1b5{bottom:413.290667pt;}
.y6a{bottom:413.689333pt;}
.y182{bottom:414.289333pt;}
.y25c{bottom:415.084000pt;}
.y35{bottom:415.438667pt;}
.y14e{bottom:420.965333pt;}
.y224{bottom:421.818667pt;}
.y115{bottom:422.632000pt;}
.yad{bottom:423.238667pt;}
.ye3{bottom:425.645333pt;}
.y5{bottom:426.942667pt;}
.y88{bottom:428.833333pt;}
.y1b4{bottom:430.028000pt;}
.y69{bottom:430.426667pt;}
.y181{bottom:431.026667pt;}
.y114{bottom:433.258667pt;}
.y1cc{bottom:434.183587pt;}
.y1f1{bottom:434.602667pt;}
.y223{bottom:437.161333pt;}
.y14d{bottom:437.994667pt;}
.yac{bottom:440.334667pt;}
.ye2{bottom:442.382667pt;}
.y4{bottom:442.842667pt;}
.y1cb{bottom:442.903067pt;}
.y87{bottom:445.570667pt;}
.y25b{bottom:445.769333pt;}
.y1b3{bottom:446.765333pt;}
.y68{bottom:447.164000pt;}
.y180{bottom:447.764000pt;}
.y34{bottom:448.674667pt;}
.y113{bottom:450.286667pt;}
.y1f0{bottom:451.698667pt;}
.y222{bottom:452.504000pt;}
.y14c{bottom:455.024000pt;}
.yab{bottom:457.430667pt;}
.y3{bottom:458.744000pt;}
.ye1{bottom:459.118667pt;}
.y25a{bottom:461.112000pt;}
.y86{bottom:462.306667pt;}
.y1b2{bottom:463.502667pt;}
.y67{bottom:463.901333pt;}
.y17f{bottom:464.501333pt;}
.y33{bottom:465.969333pt;}
.y112{bottom:467.316000pt;}
.y111{bottom:467.608000pt;}
.y221{bottom:467.846667pt;}
.y1ef{bottom:468.794667pt;}
.y14b{bottom:472.053333pt;}
.yaa{bottom:474.526667pt;}
.y2{bottom:474.644000pt;}
.ye0{bottom:475.856000pt;}
.y259{bottom:476.454667pt;}
.y85{bottom:479.044000pt;}
.y1b1{bottom:480.240000pt;}
.y66{bottom:480.638667pt;}
.y17e{bottom:481.238667pt;}
.y148{bottom:482.680000pt;}
.y220{bottom:483.189333pt;}
.y32{bottom:483.264000pt;}
.y110{bottom:484.345333pt;}
.y1ee{bottom:485.890667pt;}
.y147{bottom:487.993333pt;}
.y1{bottom:490.544000pt;}
.ya9{bottom:491.621333pt;}
.y258{bottom:491.797333pt;}
.ydf{bottom:492.593333pt;}
.y14a{bottom:493.306667pt;}
.y84{bottom:495.781333pt;}
.y1b0{bottom:496.977333pt;}
.y65{bottom:497.376000pt;}
.y17d{bottom:497.976000pt;}
.y21f{bottom:498.532000pt;}
.y31{bottom:500.560000pt;}
.y10f{bottom:501.373333pt;}
.y1ed{bottom:502.986667pt;}
.y149{bottom:503.933333pt;}
.y257{bottom:507.138667pt;}
.yde{bottom:509.330667pt;}
.y8e{bottom:511.558667pt;}
.y10e{bottom:512.001333pt;}
.y83{bottom:512.518667pt;}
.y1af{bottom:513.714667pt;}
.y21e{bottom:513.874667pt;}
.y64{bottom:514.113333pt;}
.y17c{bottom:514.713333pt;}
.y30{bottom:517.854667pt;}
.y1ec{bottom:520.082667pt;}
.y90{bottom:522.070253pt;}
.y256{bottom:522.481333pt;}
.y10d{bottom:522.628000pt;}
.ydd{bottom:526.068000pt;}
.y21d{bottom:529.217333pt;}
.y82{bottom:529.256000pt;}
.y1ae{bottom:530.452000pt;}
.y8f{bottom:530.789733pt;}
.y63{bottom:530.850667pt;}
.y17b{bottom:531.450667pt;}
.y146{bottom:531.906667pt;}
.y2f{bottom:535.149333pt;}
.y255{bottom:537.824000pt;}
.y10c{bottom:539.656000pt;}
.y1ca{bottom:540.020000pt;}
.y21c{bottom:544.560000pt;}
.y81{bottom:545.993333pt;}
.ydc{bottom:546.790667pt;}
.y1ad{bottom:547.189333pt;}
.y62{bottom:547.588000pt;}
.y17a{bottom:548.188000pt;}
.y145{bottom:549.002667pt;}
.y10b{bottom:550.282667pt;}
.y2e{bottom:552.445333pt;}
.y254{bottom:553.166667pt;}
.y21b{bottom:559.901333pt;}
.y80{bottom:562.730667pt;}
.y109{bottom:562.954667pt;}
.y1ac{bottom:563.926667pt;}
.y61{bottom:564.325333pt;}
.y179{bottom:564.925333pt;}
.y10a{bottom:567.312000pt;}
.y253{bottom:568.509333pt;}
.y2d{bottom:569.740000pt;}
.y21a{bottom:575.244000pt;}
.ydb{bottom:576.678667pt;}
.y144{bottom:578.524000pt;}
.y1ab{bottom:580.664000pt;}
.y60{bottom:581.062667pt;}
.y7f{bottom:583.453333pt;}
.y252{bottom:583.852000pt;}
.y108{bottom:584.341333pt;}
.y2c{bottom:587.036000pt;}
.y219{bottom:590.586667pt;}
.yda{bottom:593.416000pt;}
.y143{bottom:595.261333pt;}
.y1aa{bottom:597.401333pt;}
.y5f{bottom:597.800000pt;}
.y251{bottom:599.194667pt;}
.y178{bottom:600.600000pt;}
.y107{bottom:601.370667pt;}
.y7e{bottom:601.386667pt;}
.y2b{bottom:604.330667pt;}
.y218{bottom:605.929333pt;}
.yd9{bottom:610.153333pt;}
.y142{bottom:611.998667pt;}
.y177{bottom:613.218667pt;}
.y1a9{bottom:614.138667pt;}
.y5e{bottom:614.537333pt;}
.y106{bottom:618.398667pt;}
.y217{bottom:621.272000pt;}
.y2a{bottom:621.625333pt;}
.yd8{bottom:626.890667pt;}
.y141{bottom:628.736000pt;}
.y250{bottom:629.878667pt;}
.y1a8{bottom:630.876000pt;}
.y5d{bottom:631.274667pt;}
.y176{bottom:631.429333pt;}
.y105{bottom:635.966667pt;}
.y216{bottom:636.614667pt;}
.y29{bottom:638.921333pt;}
.yd7{bottom:643.628000pt;}
.y24f{bottom:645.221333pt;}
.y140{bottom:645.473333pt;}
.y1a7{bottom:647.613333pt;}
.y5c{bottom:648.012000pt;}
.y175{bottom:648.458667pt;}
.y215{bottom:651.957333pt;}
.y104{bottom:653.536000pt;}
.y28{bottom:656.216000pt;}
.yd6{bottom:660.365333pt;}
.y24e{bottom:660.564000pt;}
.y13f{bottom:662.209333pt;}
.y1a6{bottom:664.350667pt;}
.y5b{bottom:664.749333pt;}
.y174{bottom:665.488000pt;}
.y214{bottom:667.300000pt;}
.y103{bottom:671.104000pt;}
.y27{bottom:673.510667pt;}
.y24d{bottom:675.906667pt;}
.y173{bottom:676.114667pt;}
.yd5{bottom:677.102667pt;}
.y13e{bottom:678.946667pt;}
.y1a5{bottom:681.088000pt;}
.y5a{bottom:681.485333pt;}
.y213{bottom:682.641333pt;}
.y102{bottom:688.132000pt;}
.y26{bottom:690.806667pt;}
.y24c{bottom:691.249333pt;}
.y172{bottom:693.144000pt;}
.yd3{bottom:693.840000pt;}
.y13d{bottom:695.684000pt;}
.y1a4{bottom:697.825333pt;}
.y59{bottom:698.222667pt;}
.yd4{bottom:698.661333pt;}
.y212{bottom:701.969333pt;}
.y101{bottom:705.161333pt;}
.y24b{bottom:706.592000pt;}
.y171{bottom:710.172000pt;}
.yd1{bottom:710.577333pt;}
.y170{bottom:711.792000pt;}
.y13c{bottom:712.421333pt;}
.y1a3{bottom:714.562667pt;}
.y58{bottom:714.960000pt;}
.yd2{bottom:715.398667pt;}
.y24a{bottom:721.934667pt;}
.y100{bottom:722.190667pt;}
.y25{bottom:725.104000pt;}
.y16f{bottom:727.201333pt;}
.ycf{bottom:727.314667pt;}
.y13b{bottom:729.158667pt;}
.y1a2{bottom:731.300000pt;}
.y57{bottom:731.697333pt;}
.y211{bottom:731.857333pt;}
.yd0{bottom:732.136000pt;}
.yfd{bottom:732.817333pt;}
.y249{bottom:737.277333pt;}
.yfc{bottom:738.130667pt;}
.y24{bottom:739.450667pt;}
.yff{bottom:743.444000pt;}
.yce{bottom:744.052000pt;}
.y16e{bottom:744.230667pt;}
.y13a{bottom:745.896000pt;}
.y1a1{bottom:748.036000pt;}
.y56{bottom:748.434667pt;}
.y248{bottom:752.620000pt;}
.yfe{bottom:754.070667pt;}
.y210{bottom:755.449333pt;}
.y23{bottom:757.654667pt;}
.ycd{bottom:760.789333pt;}
.y16d{bottom:761.258667pt;}
.y139{bottom:762.633333pt;}
.y1a0{bottom:764.773333pt;}
.y55{bottom:765.172000pt;}
.y247{bottom:767.961333pt;}
.y20f{bottom:771.070667pt;}
.y22{bottom:772.001333pt;}
.ycc{bottom:777.526667pt;}
.y16c{bottom:778.288000pt;}
.y138{bottom:779.370667pt;}
.y19f{bottom:781.510667pt;}
.y54{bottom:781.909333pt;}
.yfb{bottom:782.044000pt;}
.y21{bottom:782.489333pt;}
.y246{bottom:783.304000pt;}
.y20e{bottom:786.692000pt;}
.ycb{bottom:794.264000pt;}
.y16b{bottom:795.317333pt;}
.y137{bottom:796.108000pt;}
.y19e{bottom:798.248000pt;}
.y53{bottom:798.646667pt;}
.yfa{bottom:799.140000pt;}
.y20{bottom:800.693333pt;}
.y16a{bottom:805.944000pt;}
.y20d{bottom:810.284000pt;}
.yca{bottom:811.001333pt;}
.y1f{bottom:811.182667pt;}
.y136{bottom:812.845333pt;}
.y245{bottom:813.989333pt;}
.y19d{bottom:814.985333pt;}
.y52{bottom:815.384000pt;}
.y168{bottom:822.972000pt;}
.y169{bottom:822.973333pt;}
.yc9{bottom:827.738667pt;}
.y244{bottom:829.332000pt;}
.y1e{bottom:829.385333pt;}
.y19c{bottom:831.722667pt;}
.y51{bottom:832.121333pt;}
.y165{bottom:833.600000pt;}
.y20c{bottom:833.874667pt;}
.y164{bottom:838.913333pt;}
.y167{bottom:844.226667pt;}
.y243{bottom:844.674667pt;}
.yc8{bottom:848.460000pt;}
.y135{bottom:848.520000pt;}
.y50{bottom:848.858667pt;}
.y166{bottom:854.853333pt;}
.y20b{bottom:857.466667pt;}
.y242{bottom:860.017333pt;}
.y19b{bottom:865.197333pt;}
.y4f{bottom:865.596000pt;}
.y134{bottom:866.730667pt;}
.y1d{bottom:869.098667pt;}
.y20a{bottom:873.088000pt;}
.y241{bottom:875.360000pt;}
.yc7{bottom:878.348000pt;}
.y19a{bottom:881.934667pt;}
.y4e{bottom:882.333333pt;}
.y163{bottom:882.826667pt;}
.y133{bottom:883.760000pt;}
.y1c{bottom:885.836000pt;}
.y209{bottom:888.709333pt;}
.y23f{bottom:890.701333pt;}
.y240{bottom:890.702667pt;}
.yc5{bottom:895.085333pt;}
.y199{bottom:898.672000pt;}
.y4d{bottom:899.070667pt;}
.yc6{bottom:899.908000pt;}
.y132{bottom:900.789333pt;}
.y23e{bottom:906.044000pt;}
.yc3{bottom:911.822667pt;}
.y208{bottom:912.301333pt;}
.y198{bottom:915.409333pt;}
.y4c{bottom:915.808000pt;}
.yc4{bottom:916.645333pt;}
.y131{bottom:917.817333pt;}
.y1b{bottom:921.320000pt;}
.y23d{bottom:921.386667pt;}
.y207{bottom:927.922667pt;}
.yc2{bottom:928.560000pt;}
.y4b{bottom:932.545333pt;}
.y12e{bottom:934.846667pt;}
.y197{bottom:936.132000pt;}
.y23c{bottom:936.729333pt;}
.y130{bottom:940.160000pt;}
.y206{bottom:943.544000pt;}
.yc1{bottom:945.297333pt;}
.y12c{bottom:945.473333pt;}
.y1a{bottom:946.425333pt;}
.y4a{bottom:949.282667pt;}
.y12f{bottom:950.786667pt;}
.y23b{bottom:952.072000pt;}
.y12d{bottom:956.100000pt;}
.yc0{bottom:962.034667pt;}
.y49{bottom:966.020000pt;}
.y205{bottom:967.136000pt;}
.y23a{bottom:967.414667pt;}
.y19{bottom:971.530667pt;}
.y48{bottom:982.757333pt;}
.y12b{bottom:984.073333pt;}
.y196{bottom:987.578667pt;}
.y17{bottom:1010.186667pt;}
.y47{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h20{height:26.890973pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h1b{height:28.023859pt;}
.h1e{height:29.397999pt;}
.h25{height:29.670026pt;}
.ha{height:30.945242pt;}
.h13{height:31.067969pt;}
.h10{height:31.157778pt;}
.h12{height:31.338125pt;}
.h21{height:32.839394pt;}
.h22{height:32.844727pt;}
.h27{height:33.186336pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.h16{height:35.039062pt;}
.h17{height:35.042796pt;}
.hd{height:35.052646pt;}
.h15{height:35.343750pt;}
.h19{height:36.873667pt;}
.h1a{height:37.087439pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h6{height:38.947124pt;}
.h14{height:39.010156pt;}
.h18{height:39.166719pt;}
.h4{height:44.993506pt;}
.h1c{height:47.314526pt;}
.h1f{height:48.144306pt;}
.h23{height:48.330274pt;}
.h24{height:48.335607pt;}
.h8{height:48.481423pt;}
.h1d{height:48.683332pt;}
.h7{height:69.148877pt;}
.h5{height:72.443562pt;}
.h26{height:404.986667pt;}
.h11{height:484.482667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:174.479941pt;}
.w3{width:248.204000pt;}
.w4{width:422.210667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3a{left:-175.029333pt;}
.xc9{left:-167.964000pt;}
.x3b{left:-1.189333pt;}
.x0{left:0.000000pt;}
.xcb{left:5.876000pt;}
.x3c{left:27.131195pt;}
.xcc{left:34.196000pt;}
.x1{left:47.621333pt;}
.x2{left:51.288623pt;}
.x8b{left:55.808000pt;}
.x80{left:56.986667pt;}
.x8c{left:59.008000pt;}
.x7d{left:60.504000pt;}
.x81{left:61.421333pt;}
.x7f{left:63.614667pt;}
.x7e{left:64.562667pt;}
.x6c{left:66.316000pt;}
.x98{left:67.780000pt;}
.x89{left:68.928000pt;}
.x85{left:70.653333pt;}
.xa6{left:72.686667pt;}
.x86{left:73.902667pt;}
.xa1{left:76.117333pt;}
.x9e{left:79.437333pt;}
.x9f{left:80.520000pt;}
.xa0{left:81.469333pt;}
.xa4{left:82.845333pt;}
.xa5{left:83.793333pt;}
.xad{left:84.697333pt;}
.xaf{left:86.906667pt;}
.xa9{left:87.808000pt;}
.xae{left:89.236000pt;}
.x87{left:138.114667pt;}
.xa2{left:143.064000pt;}
.x8e{left:179.186667pt;}
.x8d{left:184.608000pt;}
.x8f{left:209.388000pt;}
.xd8{left:211.989333pt;}
.x6d{left:217.118667pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5b{left:228.490667pt;}
.xb0{left:230.909333pt;}
.x5c{left:235.228000pt;}
.x68{left:238.920000pt;}
.x4{left:239.924000pt;}
.xb1{left:241.089333pt;}
.x8{left:250.204000pt;}
.x4f{left:252.529333pt;}
.x27{left:253.633333pt;}
.x50{left:258.580000pt;}
.x56{left:262.006667pt;}
.x57{left:265.501333pt;}
.x28{left:266.916000pt;}
.x9{left:268.901333pt;}
.x3d{left:272.754667pt;}
.x6{left:273.914667pt;}
.xa{left:275.544000pt;}
.xb2{left:278.649333pt;}
.x4b{left:280.302667pt;}
.x7{left:283.496000pt;}
.xb3{left:291.933333pt;}
.x6e{left:296.228000pt;}
.x90{left:302.993333pt;}
.x91{left:306.201333pt;}
.x6f{left:309.012000pt;}
.x5d{left:312.912000pt;}
.x5e{left:316.406667pt;}
.xc2{left:318.992000pt;}
.xbf{left:320.008000pt;}
.x70{left:321.008000pt;}
.x9c{left:322.441333pt;}
.x2d{left:327.666667pt;}
.xc6{left:328.849333pt;}
.xce{left:330.912000pt;}
.xc3{left:332.274667pt;}
.x9d{left:333.366667pt;}
.x65{left:336.678667pt;}
.x46{left:339.945333pt;}
.x2e{left:340.950667pt;}
.x2f{left:344.274667pt;}
.xcd{left:347.316000pt;}
.x66{left:351.060000pt;}
.x47{left:356.142667pt;}
.x30{left:357.558667pt;}
.xa7{left:359.492000pt;}
.xd{left:363.052000pt;}
.xe{left:369.693333pt;}
.x93{left:372.812000pt;}
.x1d{left:375.465333pt;}
.x92{left:378.233333pt;}
.x1e{left:382.108000pt;}
.x1f{left:385.494667pt;}
.x71{left:390.826667pt;}
.xb4{left:392.378667pt;}
.x72{left:394.034667pt;}
.x82{left:396.638667pt;}
.x20{left:398.778667pt;}
.x94{left:403.013333pt;}
.xb5{left:405.233333pt;}
.xb6{left:408.566667pt;}
.x37{left:413.149333pt;}
.xc1{left:414.498667pt;}
.xca{left:417.876008pt;}
.x4e{left:421.404000pt;}
.xb7{left:425.185333pt;}
.xaa{left:427.014667pt;}
.x21{left:429.968000pt;}
.x4a{left:433.061333pt;}
.xb8{left:438.468000pt;}
.x61{left:440.925333pt;}
.x73{left:442.281333pt;}
.x22{left:443.252000pt;}
.x23{left:446.638667pt;}
.x62{left:449.130667pt;}
.xc5{left:451.316000pt;}
.x74{left:455.066667pt;}
.x58{left:457.668000pt;}
.x24{left:459.922667pt;}
.x59{left:461.164000pt;}
.x75{left:463.082667pt;}
.x38{left:466.378667pt;}
.x6a{left:475.241333pt;}
.xbc{left:476.202667pt;}
.x39{left:479.661333pt;}
.x99{left:480.905333pt;}
.x6b{left:484.190667pt;}
.xa3{left:485.837333pt;}
.x9a{left:491.830667pt;}
.x44{left:495.292000pt;}
.x95{left:496.617333pt;}
.x51{left:500.432000pt;}
.x45{left:502.901333pt;}
.x54{left:504.338667pt;}
.x1b{left:507.464000pt;}
.xab{left:511.020000pt;}
.x33{left:513.362667pt;}
.x4c{left:515.240000pt;}
.x1c{left:520.748000pt;}
.x3f{left:521.870667pt;}
.x4d{left:523.445333pt;}
.x34{left:526.645333pt;}
.x76{left:536.881333pt;}
.x77{left:540.089333pt;}
.x83{left:542.692000pt;}
.xf{left:556.800000pt;}
.x42{left:558.418667pt;}
.x25{left:559.985333pt;}
.x10{left:563.442667pt;}
.x11{left:566.829333pt;}
.x43{left:568.377333pt;}
.x5a{left:570.710667pt;}
.x96{left:571.857333pt;}
.x12{left:573.472000pt;}
.xac{left:576.660000pt;}
.xc4{left:580.421333pt;}
.x97{left:585.448000pt;}
.x88{left:590.294667pt;}
.x78{left:593.136000pt;}
.x9b{left:603.208000pt;}
.x79{left:605.921333pt;}
.x8a{left:611.612000pt;}
.x7a{left:613.936000pt;}
.x2b{left:620.814667pt;}
.xb9{left:623.197333pt;}
.xbd{left:626.218667pt;}
.x69{left:630.568000pt;}
.x2c{left:634.098667pt;}
.xba{left:636.480000pt;}
.xb{left:638.462667pt;}
.xbe{left:639.501333pt;}
.x52{left:642.812000pt;}
.xd6{left:644.050667pt;}
.xc{left:645.105333pt;}
.xc7{left:647.849333pt;}
.x17{left:650.466667pt;}
.xcf{left:652.832000pt;}
.x53{left:655.325333pt;}
.xc8{left:656.870667pt;}
.x31{left:660.020000pt;}
.x18{left:663.749333pt;}
.x19{left:667.004000pt;}
.xd7{left:667.961333pt;}
.x48{left:669.029333pt;}
.x32{left:673.304000pt;}
.x49{left:677.233333pt;}
.x1a{left:680.288000pt;}
.x13{left:681.372000pt;}
.x35{left:683.073333pt;}
.x14{left:688.013333pt;}
.x7c{left:689.557333pt;}
.x40{left:690.786667pt;}
.x3e{left:692.341333pt;}
.x15{left:694.661333pt;}
.x36{left:696.356000pt;}
.x7b{left:697.334667pt;}
.x41{left:699.417333pt;}
.x16{left:701.304000pt;}
.x84{left:703.146667pt;}
.xd5{left:706.782667pt;}
.x55{left:708.677333pt;}
.xa8{left:709.834667pt;}
.xbb{left:710.996000pt;}
.x26{left:714.134667pt;}
.x67{left:718.006667pt;}
.xd3{left:720.334667pt;}
.xc0{left:723.454667pt;}
.xd1{left:724.709333pt;}
.xd2{left:725.702667pt;}
.x29{left:727.441333pt;}
.x5f{left:729.726667pt;}
.x63{left:731.592000pt;}
.xd0{left:733.841333pt;}
.x60{left:737.930667pt;}
.x2a{left:740.326667pt;}
.x64{left:742.517333pt;}
.xd4{left:744.245333pt;}
}




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