
    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_8c74d6e0a5a8611f8e84e60b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_9b92077deafe185f7a756801.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2665397691feb53285e9b33f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_de5507a7d33010df37b450e6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9627dd56d3ec906edb597719.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d9a5f341f3f40988bc69e582.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ec09a783793a81d427a0ae48.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_68d025bae4bc0260020a6a94.woff')format("woff");}.ff8{font-family:ff8;line-height:0.664000;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_c9514b8edfb227dd595c406d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_ecefb07e92205cead0b86dac.woff')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_3648e305f0c5b38de8d13e70.woff')format("woff");}.ffb{font-family:ffb;line-height:0.651000;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_926c892e2ae3b58ca7555973.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0cea8044888b316c819af74a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_04c504a264373d32b9be7725.woff')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_b87b4cf58bf404d5e4b4a1ca.woff')format("woff");}.fff{font-family:fff;line-height:0.665000;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_8434715525d4c7782ff1dce9.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3978b95668ca70c138e2b5b1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_75cd118e58940dba32e0be17.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a950ef502da72cf08daf8edd.woff')format("woff");}.ff13{font-family:ff13;line-height:3.293000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3a2e0be85dab0a0380c86173.woff')format("woff");}.ff14{font-family:ff14;line-height:0.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_23176dc567647cc03bd649fe.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a52a2c257f1a59adc32bf95d.woff')format("woff");}.ff16{font-family:ff16;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f6fce8cb0109ae85e7689aa9.woff')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_db619c92efd16081a41a57ec.woff')format("woff");}.ff18{font-family:ff18;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e879e598a28173c24c77a259.woff')format("woff");}.ff19{font-family:ff19;line-height:0.838000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_6ef37e15d32480fed362edce.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a128a7be7f288f52cde1121e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.880000;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;}
.m1{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);}
.m8{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);}
.m4{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);}
.m2{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);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m14{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);}
.mc{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m3{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);}
.m9{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);}
.m11{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);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m13{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);}
.m19{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);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.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);}
.m1a{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);}
.m1b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m18{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);}
.mb{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.v17{vertical-align:-67.770000px;}
.v14{vertical-align:-59.658000px;}
.v13{vertical-align:-49.842000px;}
.ve{vertical-align:-23.754000px;}
.va{vertical-align:-10.668000px;}
.v2{vertical-align:-8.964000px;}
.v8{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:9.816000px;}
.v6{vertical-align:12.354000px;}
.v16{vertical-align:17.928000px;}
.v5{vertical-align:18.996000px;}
.v1{vertical-align:21.690000px;}
.v9{vertical-align:23.754000px;}
.v11{vertical-align:25.770000px;}
.v3{vertical-align:27.030000px;}
.vd{vertical-align:35.814000px;}
.v1d{vertical-align:42.906000px;}
.v4{vertical-align:44.280000px;}
.vc{vertical-align:45.630000px;}
.v7{vertical-align:46.866000px;}
.vf{vertical-align:49.836000px;}
.v1b{vertical-align:62.418000px;}
.v1c{vertical-align:65.574000px;}
.v18{vertical-align:67.770000px;}
.v1a{vertical-align:72.240000px;}
.vb{vertical-align:103.638000px;}
.v1e{vertical-align:122.076000px;}
.v12{vertical-align:123.960000px;}
.v10{vertical-align:126.690000px;}
.v19{vertical-align:140.010000px;}
.ls10{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000360px;}
.ls3{letter-spacing:0.000767px;}
.lsab{letter-spacing:0.000777px;}
.ls4b{letter-spacing:0.000843px;}
.ls32{letter-spacing:0.001510px;}
.lsb5{letter-spacing:0.001599px;}
.lsb{letter-spacing:0.001622px;}
.lse{letter-spacing:0.002155px;}
.lsce{letter-spacing:0.002322px;}
.ls93{letter-spacing:0.002700px;}
.ls8e{letter-spacing:0.002706px;}
.ls81{letter-spacing:0.003178px;}
.ls90{letter-spacing:0.003229px;}
.lscd{letter-spacing:0.003740px;}
.ls7d{letter-spacing:0.003962px;}
.ls85{letter-spacing:0.004332px;}
.ls94{letter-spacing:0.004338px;}
.ls9d{letter-spacing:0.006843px;}
.lsb3{letter-spacing:0.006910px;}
.ls98{letter-spacing:0.008877px;}
.lsaf{letter-spacing:0.010760px;}
.ls5e{letter-spacing:0.013461px;}
.lsad{letter-spacing:0.013489px;}
.lsb8{letter-spacing:0.014646px;}
.ls96{letter-spacing:0.015191px;}
.lsdb{letter-spacing:0.016231px;}
.lsa8{letter-spacing:0.019785px;}
.lsb0{letter-spacing:0.019999px;}
.ls45{letter-spacing:0.020459px;}
.lsba{letter-spacing:0.020629px;}
.ls4f{letter-spacing:0.021179px;}
.lsd4{letter-spacing:0.022661px;}
.lsa5{letter-spacing:0.026078px;}
.lsd7{letter-spacing:0.026099px;}
.lsdc{letter-spacing:0.032073px;}
.ls3c{letter-spacing:0.032495px;}
.lsd0{letter-spacing:0.047821px;}
.ls49{letter-spacing:1.291156px;}
.ls1{letter-spacing:1.655249px;}
.ls2{letter-spacing:1.661249px;}
.ls30{letter-spacing:1.722853px;}
.ls28{letter-spacing:1.745808px;}
.ls5c{letter-spacing:1.767274px;}
.ls6c{letter-spacing:1.773324px;}
.lsb2{letter-spacing:1.785099px;}
.ls4d{letter-spacing:1.786216px;}
.ls39{letter-spacing:1.787093px;}
.ls26{letter-spacing:1.791591px;}
.lsc5{letter-spacing:1.791641px;}
.ls61{letter-spacing:1.804236px;}
.ls35{letter-spacing:1.805707px;}
.lsac{letter-spacing:1.806617px;}
.ls2b{letter-spacing:1.810884px;}
.ls5f{letter-spacing:1.812617px;}
.ls38{letter-spacing:1.812829px;}
.ls33{letter-spacing:1.813591px;}
.ls68{letter-spacing:1.816291px;}
.ls24{letter-spacing:1.816884px;}
.ls37{letter-spacing:1.828652px;}
.ls21{letter-spacing:1.832729px;}
.ls66{letter-spacing:1.963638px;}
.ls50{letter-spacing:2.029093px;}
.ls4e{letter-spacing:2.094547px;}
.lscb{letter-spacing:2.968459px;}
.ls4a{letter-spacing:2.970780px;}
.ls34{letter-spacing:2.984915px;}
.ls48{letter-spacing:2.987236px;}
.lsc{letter-spacing:2.988532px;}
.ls36{letter-spacing:2.990915px;}
.ls8{letter-spacing:2.992528px;}
.ls88{letter-spacing:2.993236px;}
.ls73{letter-spacing:3.730912px;}
.ls2f{letter-spacing:3.796367px;}
.ls13{letter-spacing:4.259644px;}
.ls20{letter-spacing:4.265644px;}
.ls8d{letter-spacing:4.495136px;}
.lse0{letter-spacing:4.706056px;}
.lsd{letter-spacing:5.068984px;}
.ls9c{letter-spacing:6.297168px;}
.ls9{letter-spacing:7.134551px;}
.ls97{letter-spacing:7.176843px;}
.ls58{letter-spacing:7.527279px;}
.ls47{letter-spacing:8.181825px;}
.lsd3{letter-spacing:9.071889px;}
.ls56{letter-spacing:9.075183px;}
.ls7{letter-spacing:9.086147px;}
.lsbd{letter-spacing:9.092147px;}
.ls15{letter-spacing:10.865464px;}
.ls17{letter-spacing:10.930918px;}
.lsb9{letter-spacing:11.454532px;}
.lsa2{letter-spacing:11.454555px;}
.lsa1{letter-spacing:11.520010px;}
.lsc7{letter-spacing:11.621644px;}
.ls5b{letter-spacing:12.265803px;}
.ls60{letter-spacing:12.960011px;}
.ls18{letter-spacing:14.530921px;}
.ls7c{letter-spacing:14.596376px;}
.lsd5{letter-spacing:14.661830px;}
.lsd6{letter-spacing:14.727285px;}
.ls22{letter-spacing:16.363650px;}
.lse4{letter-spacing:16.429105px;}
.ls69{letter-spacing:16.560014px;}
.ls6a{letter-spacing:16.625468px;}
.ls7b{letter-spacing:17.018196px;}
.lsaa{letter-spacing:17.083651px;}
.ls9e{letter-spacing:17.528915px;}
.lsda{letter-spacing:17.531236px;}
.ls29{letter-spacing:17.534915px;}
.lscf{letter-spacing:17.738197px;}
.ls5{letter-spacing:18.130924px;}
.ls12{letter-spacing:18.196379px;}
.ls7e{letter-spacing:18.327288px;}
.ls1c{letter-spacing:18.809644px;}
.lsbe{letter-spacing:18.815644px;}
.ls46{letter-spacing:18.916379px;}
.ls3e{letter-spacing:19.505471px;}
.ls2d{letter-spacing:19.963653px;}
.ls0{letter-spacing:20.024826px;}
.ls16{letter-spacing:20.029108px;}
.lsd2{letter-spacing:20.094562px;}
.ls11{letter-spacing:20.225471px;}
.lsa7{letter-spacing:20.290926px;}
.ls95{letter-spacing:20.519468px;}
.lsdf{letter-spacing:20.618199px;}
.ls82{letter-spacing:20.683654px;}
.lsa4{letter-spacing:20.814563px;}
.ls25{letter-spacing:21.164915px;}
.ls9a{letter-spacing:21.167236px;}
.ls9f{letter-spacing:21.170915px;}
.ls84{letter-spacing:21.173236px;}
.lsb6{letter-spacing:21.194915px;}
.lsb7{letter-spacing:21.200812px;}
.lsb4{letter-spacing:21.200915px;}
.lse6{letter-spacing:21.272745px;}
.ls51{letter-spacing:21.469109px;}
.ls6e{letter-spacing:21.600018px;}
.lsa{letter-spacing:21.665473px;}
.ls5a{letter-spacing:21.730927px;}
.ls53{letter-spacing:21.796382px;}
.ls6{letter-spacing:21.861836px;}
.ls1e{letter-spacing:21.927291px;}
.ls23{letter-spacing:21.992746px;}
.ls2e{letter-spacing:22.189109px;}
.ls2c{letter-spacing:22.254564px;}
.ls1d{letter-spacing:22.445644px;}
.ls3d{letter-spacing:22.481236px;}
.lsf{letter-spacing:22.581837px;}
.lse3{letter-spacing:22.778201px;}
.lse5{letter-spacing:22.843655px;}
.ls3b{letter-spacing:23.105474px;}
.ls44{letter-spacing:23.432747px;}
.ls6d{letter-spacing:23.498201px;}
.ls63{letter-spacing:23.563656px;}
.ls19{letter-spacing:23.629111px;}
.lsc6{letter-spacing:23.825474px;}
.lsa3{letter-spacing:23.831236px;}
.lsca{letter-spacing:23.890929px;}
.lse2{letter-spacing:23.948056px;}
.ls8a{letter-spacing:24.480020px;}
.ls83{letter-spacing:24.545475px;}
.ls27{letter-spacing:24.806915px;}
.ls42{letter-spacing:25.200021px;}
.ls54{letter-spacing:25.265476px;}
.ls4{letter-spacing:25.330930px;}
.ls52{letter-spacing:25.396385px;}
.ls65{letter-spacing:25.461839px;}
.ls1f{letter-spacing:25.592749px;}
.ls99{letter-spacing:26.402915px;}
.ls9b{letter-spacing:26.408915px;}
.ls41{letter-spacing:27.032750px;}
.lscc{letter-spacing:27.163659px;}
.ls40{letter-spacing:27.229114px;}
.ls80{letter-spacing:27.621841px;}
.ls76{letter-spacing:27.683644px;}
.ls59{letter-spacing:28.930933px;}
.ls74{letter-spacing:28.996388px;}
.lsae{letter-spacing:29.061842px;}
.lsa0{letter-spacing:29.258206px;}
.lsc8{letter-spacing:29.323661px;}
.ls3a{letter-spacing:29.520025px;}
.ls2a{letter-spacing:29.585479px;}
.ls8f{letter-spacing:29.716388px;}
.ls89{letter-spacing:29.847298px;}
.ls55{letter-spacing:29.912752px;}
.ls4c{letter-spacing:30.043661px;}
.ls62{letter-spacing:30.109116px;}
.ls67{letter-spacing:30.174571px;}
.lsde{letter-spacing:30.305480px;}
.lsa9{letter-spacing:30.370934px;}
.ls75{letter-spacing:30.501844px;}
.lsd1{letter-spacing:30.567298px;}
.lsd8{letter-spacing:30.632753px;}
.lsd9{letter-spacing:30.698207px;}
.ls43{letter-spacing:30.894571px;}
.lsc4{letter-spacing:31.287299px;}
.ls3f{letter-spacing:31.549117px;}
.lsa6{letter-spacing:32.727300px;}
.ls7f{letter-spacing:34.821847px;}
.ls6f{letter-spacing:36.327303px;}
.ls71{letter-spacing:36.366843px;}
.ls70{letter-spacing:36.392758px;}
.ls87{letter-spacing:37.961412px;}
.ls77{letter-spacing:37.963668px;}
.ls7a{letter-spacing:37.966992px;}
.lsbb{letter-spacing:39.350812px;}
.ls1a{letter-spacing:39.992761px;}
.ls8c{letter-spacing:40.946915px;}
.ls86{letter-spacing:40.949236px;}
.lsdd{letter-spacing:40.952915px;}
.lse1{letter-spacing:40.955236px;}
.ls64{letter-spacing:41.563671px;}
.ls78{letter-spacing:41.604843px;}
.ls6b{letter-spacing:41.629126px;}
.ls72{letter-spacing:42.480035px;}
.ls31{letter-spacing:42.986915px;}
.ls14{letter-spacing:43.789127px;}
.lsc9{letter-spacing:44.050946px;}
.ls91{letter-spacing:44.582915px;}
.ls79{letter-spacing:45.098219px;}
.lsb1{letter-spacing:46.622915px;}
.ls57{letter-spacing:48.763677px;}
.ls8b{letter-spacing:49.080924px;}
.lsbc{letter-spacing:64.145508px;}
.lsc1{letter-spacing:64.800054px;}
.lsbf{letter-spacing:65.258236px;}
.ls5d{letter-spacing:65.454600px;}
.lsc0{letter-spacing:66.763692px;}
.lsc3{letter-spacing:76.320064px;}
.lsc2{letter-spacing:76.385518px;}
.ls92{letter-spacing:131.782438px;}
.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;}
}
.ws49{word-spacing:-60.833505px;}
.wsba{word-spacing:-56.146956px;}
.ws26{word-spacing:-53.568045px;}
.ws8{word-spacing:-49.912626px;}
.ws89{word-spacing:-49.313496px;}
.ws14{word-spacing:-48.418425px;}
.ws3d{word-spacing:-47.324343px;}
.ws37{word-spacing:-47.323676px;}
.ws23{word-spacing:-47.258221px;}
.ws24{word-spacing:-42.833490px;}
.ws27{word-spacing:-42.637126px;}
.ws95{word-spacing:-40.348800px;}
.wsd{word-spacing:-38.937826px;}
.ws34{word-spacing:-33.453846px;}
.ws88{word-spacing:-33.211407px;}
.ws28{word-spacing:-32.727300px;}
.ws5e{word-spacing:-32.714209px;}
.ws7b{word-spacing:-31.771663px;}
.ws6d{word-spacing:-31.706208px;}
.ws4c{word-spacing:-26.365113px;}
.ws86{word-spacing:-24.506202px;}
.ws6c{word-spacing:-24.440748px;}
.wsc3{word-spacing:-23.825474px;}
.wsb4{word-spacing:-23.432747px;}
.ws3e{word-spacing:-22.673473px;}
.wsb9{word-spacing:-21.953473px;}
.ws25{word-spacing:-21.796382px;}
.ws36{word-spacing:-21.665473px;}
.wse2{word-spacing:-21.600018px;}
.wsb3{word-spacing:-20.317108px;}
.ws8e{word-spacing:-19.466198px;}
.ws0{word-spacing:-19.367325px;}
.ws1c{word-spacing:-18.183288px;}
.wsbc{word-spacing:-17.934560px;}
.wsbd{word-spacing:-17.869106px;}
.ws64{word-spacing:-16.887287px;}
.wse{word-spacing:-16.605662px;}
.wsd7{word-spacing:-16.167286px;}
.ws18{word-spacing:-16.139475px;}
.ws65{word-spacing:-15.578195px;}
.wsc0{word-spacing:-14.989103px;}
.wsaa{word-spacing:-14.792740px;}
.wse4{word-spacing:-14.661830px;}
.wsa7{word-spacing:-14.530921px;}
.wsdc{word-spacing:-14.334557px;}
.ws8a{word-spacing:-14.269103px;}
.wsa0{word-spacing:-14.138194px;}
.ws5d{word-spacing:-14.072739px;}
.ws8b{word-spacing:-13.876375px;}
.ws4b{word-spacing:-13.810921px;}
.wsaf{word-spacing:-13.549102px;}
.ws92{word-spacing:-13.483648px;}
.ws96{word-spacing:-13.449600px;}
.ws3{word-spacing:-13.449510px;}
.wse3{word-spacing:-13.424738px;}
.ws2f{word-spacing:-13.287284px;}
.wsd8{word-spacing:-13.221829px;}
.wsde{word-spacing:-13.162920px;}
.ws81{word-spacing:-13.156375px;}
.ws56{word-spacing:-13.025465px;}
.ws40{word-spacing:-12.829102px;}
.wsce{word-spacing:-12.698192px;}
.ws15{word-spacing:-12.567283px;}
.ws6b{word-spacing:-12.501829px;}
.ws29{word-spacing:-12.436374px;}
.ws75{word-spacing:-12.370919px;}
.wsb{word-spacing:-12.313774px;}
.ws70{word-spacing:-12.305465px;}
.ws9{word-spacing:-12.253998px;}
.ws71{word-spacing:-12.240010px;}
.ws90{word-spacing:-12.174556px;}
.wsc9{word-spacing:-12.109101px;}
.ws8c{word-spacing:-12.043646px;}
.ws1{word-spacing:-11.735224px;}
.ws94{word-spacing:-11.716373px;}
.ws4d{word-spacing:-11.650919px;}
.ws30{word-spacing:-11.585464px;}
.ws82{word-spacing:-11.454555px;}
.wsa1{word-spacing:-11.389100px;}
.ws59{word-spacing:-11.323646px;}
.wsd6{word-spacing:-11.264737px;}
.ws74{word-spacing:-11.258191px;}
.ws41{word-spacing:-11.192737px;}
.ws72{word-spacing:-11.127282px;}
.wsb8{word-spacing:-11.061827px;}
.ws8d{word-spacing:-11.002918px;}
.ws52{word-spacing:-10.996373px;}
.ws19{word-spacing:-10.930918px;}
.ws2e{word-spacing:-10.865464px;}
.ws2b{word-spacing:-10.800009px;}
.ws76{word-spacing:-10.734554px;}
.wsa9{word-spacing:-10.669100px;}
.ws31{word-spacing:-10.610191px;}
.ws43{word-spacing:-10.603645px;}
.ws35{word-spacing:-10.538191px;}
.ws85{word-spacing:-10.479281px;}
.wsa6{word-spacing:-10.472736px;}
.wsad{word-spacing:-10.413827px;}
.ws2{word-spacing:-10.400954px;}
.ws11{word-spacing:-10.341179px;}
.ws42{word-spacing:-10.282918px;}
.wscf{word-spacing:-10.217463px;}
.ws1e{word-spacing:-10.210918px;}
.ws1f{word-spacing:-10.145463px;}
.ws39{word-spacing:-10.086554px;}
.ws3f{word-spacing:-10.021099px;}
.ws13{word-spacing:-9.982525px;}
.ws53{word-spacing:-9.955645px;}
.wsa3{word-spacing:-9.949099px;}
.ws61{word-spacing:-9.890190px;}
.ws6{word-spacing:-9.862974px;}
.wsa8{word-spacing:-9.824735px;}
.wsd0{word-spacing:-9.759281px;}
.ws66{word-spacing:-9.752735px;}
.wsca{word-spacing:-9.693826px;}
.wsae{word-spacing:-9.687281px;}
.wsc{word-spacing:-9.683647px;}
.wscb{word-spacing:-9.628372px;}
.ws4{word-spacing:-9.623872px;}
.ws73{word-spacing:-9.562917px;}
.wsb7{word-spacing:-9.556372px;}
.ws9d{word-spacing:-9.301099px;}
.ws69{word-spacing:-9.229099px;}
.wse1{word-spacing:-9.170189px;}
.ws97{word-spacing:-9.104735px;}
.ws67{word-spacing:-9.039280px;}
.wsb2{word-spacing:-8.901826px;}
.ws5{word-spacing:-8.792991px;}
.ws8f{word-spacing:-8.712007px;}
.wscd{word-spacing:-8.640007px;}
.ws44{word-spacing:-8.312734px;}
.wsc8{word-spacing:-8.253825px;}
.wsc5{word-spacing:-8.247280px;}
.wsc7{word-spacing:-8.188370px;}
.ws7c{word-spacing:-8.181825px;}
.ws62{word-spacing:-8.116370px;}
.wsb1{word-spacing:-7.618915px;}
.ws7d{word-spacing:-7.599279px;}
.wsb6{word-spacing:-7.461824px;}
.wsd3{word-spacing:-7.396370px;}
.wsd5{word-spacing:-7.330915px;}
.ws60{word-spacing:-7.252370px;}
.ws45{word-spacing:-7.200006px;}
.ws91{word-spacing:-7.141097px;}
.ws12{word-spacing:-7.113296px;}
.ws5b{word-spacing:-6.794187px;}
.ws47{word-spacing:-6.682915px;}
.wsdb{word-spacing:-6.283642px;}
.ws38{word-spacing:-6.224732px;}
.wsd9{word-spacing:-6.218187px;}
.wsda{word-spacing:-5.766550px;}
.ws79{word-spacing:-5.760005px;}
.ws4e{word-spacing:-5.746914px;}
.ws32{word-spacing:-5.616005px;}
.ws9e{word-spacing:-5.439277px;}
.ws10{word-spacing:-5.379804px;}
.wsbb{word-spacing:-5.373823px;}
.ws83{word-spacing:-5.288732px;}
.wsac{word-spacing:-5.236368px;}
.wsa4{word-spacing:-5.170913px;}
.wsdf{word-spacing:-4.320004px;}
.ws54{word-spacing:-4.306913px;}
.ws55{word-spacing:-4.241458px;}
.wscc{word-spacing:-4.130185px;}
.wsa{word-spacing:-4.124516px;}
.wse0{word-spacing:-4.064731px;}
.ws5a{word-spacing:-4.058185px;}
.ws58{word-spacing:-3.914185px;}
.wsc4{word-spacing:-3.783276px;}
.ws9f{word-spacing:-3.730912px;}
.ws93{word-spacing:-3.665458px;}
.ws1b{word-spacing:-3.652367px;}
.ws68{word-spacing:-3.586912px;}
.wsa5{word-spacing:-3.541094px;}
.wsd1{word-spacing:-3.456003px;}
.ws4f{word-spacing:-3.403639px;}
.ws78{word-spacing:-3.344730px;}
.wsf{word-spacing:-3.156152px;}
.ws7f{word-spacing:-3.148366px;}
.ws2c{word-spacing:-3.141821px;}
.ws77{word-spacing:-3.017457px;}
.wsb5{word-spacing:-2.277820px;}
.wsc6{word-spacing:-1.885092px;}
.ws63{word-spacing:-1.754183px;}
.wsb0{word-spacing:-1.440001px;}
.wsd4{word-spacing:-1.296001px;}
.ws6a{word-spacing:-0.726546px;}
.ws57{word-spacing:-0.314182px;}
.wsab{word-spacing:-0.248727px;}
.ws7a{word-spacing:-0.183273px;}
.ws22{word-spacing:-0.052364px;}
.ws3b{word-spacing:-0.047821px;}
.ws21{word-spacing:0.000000px;}
.ws48{word-spacing:0.013091px;}
.wsc2{word-spacing:0.078546px;}
.ws7{word-spacing:0.131506px;}
.wsdd{word-spacing:0.209455px;}
.ws2a{word-spacing:0.340364px;}
.ws20{word-spacing:1.584001px;}
.ws2d{word-spacing:3.613094px;}
.ws4a{word-spacing:3.678549px;}
.ws84{word-spacing:4.791277px;}
.ws46{word-spacing:7.455279px;}
.ws9b{word-spacing:8.416426px;}
.ws9a{word-spacing:8.464246px;}
.wsd2{word-spacing:11.205828px;}
.ws33{word-spacing:11.533101px;}
.ws99{word-spacing:16.880672px;}
.wsa2{word-spacing:17.484010px;}
.ws80{word-spacing:17.807387px;}
.ws6e{word-spacing:18.144015px;}
.ws5c{word-spacing:19.780380px;}
.ws3a{word-spacing:21.124310px;}
.wsbe{word-spacing:21.129461px;}
.wsc1{word-spacing:21.784095px;}
.ws5f{word-spacing:21.804342px;}
.ws3c{word-spacing:21.807644px;}
.ws1a{word-spacing:21.809473px;}
.wsbf{word-spacing:23.380383px;}
.ws87{word-spacing:23.416836px;}
.ws50{word-spacing:28.268637px;}
.ws16{word-spacing:29.061842px;}
.ws9c{word-spacing:37.529659px;}
.ws7e{word-spacing:44.537387px;}
.ws1d{word-spacing:50.130027px;}
.ws51{word-spacing:90.837692px;}
.ws6f{word-spacing:112.725912px;}
.ws98{word-spacing:161.258637px;}
.ws17{word-spacing:1968.416186px;}
._37{margin-left:-37.984276px;}
._8{margin-left:-20.024826px;}
._2a{margin-left:-18.196379px;}
._2e{margin-left:-14.007284px;}
._34{margin-left:-10.996373px;}
._1{margin-left:-9.606193px;}
._29{margin-left:-8.181825px;}
._4{margin-left:-5.810227px;}
._24{margin-left:-4.412519px;}
._a{margin-left:-3.347434px;}
._5{margin-left:-1.936742px;}
._3{width:1.936742px;}
._0{width:3.202064px;}
._38{width:4.346254px;}
._32{width:5.385775px;}
._26{width:6.957992px;}
._28{width:8.181825px;}
._3a{width:10.865464px;}
._2d{width:12.055464px;}
._27{width:14.386859px;}
._31{width:17.187664px;}
._21{width:18.223274px;}
._9{width:20.024826px;}
._1e{width:21.519047px;}
._19{width:22.909110px;}
._c{width:23.946092px;}
._6{width:25.619809px;}
._7{width:26.875097px;}
._20{width:28.960930px;}
._22{width:30.386451px;}
._25{width:31.572444px;}
._13{width:33.447301px;}
._36{width:34.544797px;}
._b{width:36.654437px;}
._39{width:40.385488px;}
._2c{width:41.563671px;}
._33{width:43.038600px;}
._2f{width:44.157253px;}
._35{width:47.477912px;}
._2{width:51.646200px;}
._17{width:56.618229px;}
._15{width:57.665503px;}
._d{width:60.545505px;}
._2b{width:64.341872px;}
._1c{width:65.520055px;}
._1f{width:66.829147px;}
._1d{width:74.899453px;}
._1b{width:96.836850px;}
._23{width:142.212526px;}
._30{width:317.337054px;}
._14{width:581.706694px;}
._16{width:653.170681px;}
._1a{width:700.414442px;}
._18{width:897.656048px;}
._10{width:909.480004px;}
._f{width:967.392092px;}
._11{width:1176.638785px;}
._e{width:1333.991644px;}
._12{width:1348.206955px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y23{bottom:108.000000px;}
.ydc{bottom:116.713500px;}
.y21{bottom:128.323500px;}
.y104{bottom:130.810500px;}
.y22{bottom:134.262000px;}
.y102{bottom:136.453500px;}
.ydb{bottom:137.037000px;}
.y12c{bottom:140.418000px;}
.y99{bottom:141.268500px;}
.yb6{bottom:142.614000px;}
.y103{bottom:148.912500px;}
.y51{bottom:150.013500px;}
.y20{bottom:159.976500px;}
.y12b{bottom:160.741500px;}
.y98{bottom:161.593500px;}
.yb5{bottom:162.939000px;}
.y101{bottom:166.491000px;}
.y4f{bottom:170.337000px;}
.y1f{bottom:171.693000px;}
.yda{bottom:173.799000px;}
.y50{bottom:176.275500px;}
.y97{bottom:181.917000px;}
.y100{bottom:186.814500px;}
.y12a{bottom:194.515500px;}
.yb4{bottom:199.467000px;}
.y4e{bottom:204.111000px;}
.yff{bottom:207.138000px;}
.yd9{bottom:210.561000px;}
.y1e{bottom:213.874500px;}
.y129{bottom:214.839000px;}
.y96{bottom:215.589000px;}
.y4c{bottom:224.434500px;}
.y4d{bottom:230.373000px;}
.yd8{bottom:230.884500px;}
.y95{bottom:235.912500px;}
.y76{bottom:239.691000px;}
.yfe{bottom:240.912000px;}
.y128{bottom:248.611500px;}
.y1d{bottom:250.402500px;}
.yb3{bottom:251.025000px;}
.yd7{bottom:251.208000px;}
.y4b{bottom:258.208500px;}
.y75{bottom:260.014500px;}
.yfd{bottom:261.235500px;}
.y127{bottom:268.936500px;}
.y94{bottom:269.182500px;}
.yd6{bottom:271.533000px;}
.y74{bottom:280.339500px;}
.y4a{bottom:283.183500px;}
.yb2{bottom:284.797500px;}
.yd5{bottom:291.856500px;}
.yfc{bottom:294.178500px;}
.y49{bottom:295.672500px;}
.y72{bottom:300.663000px;}
.y1c{bottom:301.774500px;}
.y48{bottom:302.397000px;}
.y126{bottom:302.709000px;}
.yfb{bottom:304.905000px;}
.y93{bottom:305.338500px;}
.y73{bottom:306.601500px;}
.yb1{bottom:318.571500px;}
.y47{bottom:322.720500px;}
.y125{bottom:323.032500px;}
.yd4{bottom:335.077500px;}
.y1b{bottom:338.461500px;}
.y71{bottom:340.057500px;}
.y92{bottom:341.496000px;}
.yfa{bottom:341.667000px;}
.y45{bottom:343.044000px;}
.y46{bottom:348.982500px;}
.yb0{bottom:352.344000px;}
.yd3{bottom:355.401000px;}
.y124{bottom:359.560500px;}
.yf9{bottom:361.992000px;}
.y43{bottom:363.369000px;}
.y70{bottom:364.632000px;}
.y44{bottom:369.306000px;}
.y1a{bottom:375.148500px;}
.yd2{bottom:375.724500px;}
.y91{bottom:376.824000px;}
.y6f{bottom:384.957000px;}
.yaf{bottom:386.118000px;}
.y90{bottom:388.734000px;}
.yf8{bottom:395.764500px;}
.yd1{bottom:396.048000px;}
.y42{bottom:397.141500px;}
.y123{bottom:411.118500px;}
.y19{bottom:411.837000px;}
.yf7{bottom:416.088000px;}
.yd0{bottom:416.373000px;}
.y41{bottom:417.465000px;}
.y6e{bottom:418.729500px;}
.yae{bottom:422.646000px;}
.y122{bottom:431.443500px;}
.y8f{bottom:431.527500px;}
.ycf{bottom:436.696500px;}
.y18{bottom:448.524000px;}
.yf6{bottom:449.862000px;}
.y40{bottom:451.239000px;}
.y121{bottom:451.767000px;}
.y6d{bottom:455.257500px;}
.y8e{bottom:465.199500px;}
.y3e{bottom:471.562500px;}
.y120{bottom:472.090500px;}
.yad{bottom:474.204000px;}
.y3f{bottom:477.501000px;}
.yce{bottom:479.917500px;}
.y17{bottom:485.211000px;}
.yf5{bottom:486.624000px;}
.y11f{bottom:492.414000px;}
.y8d{bottom:498.468000px;}
.ycd{bottom:500.241000px;}
.y3d{bottom:505.336500px;}
.y6c{bottom:506.815500px;}
.yac{bottom:508.228500px;}
.y11e{bottom:512.737500px;}
.y8c{bottom:513.150000px;}
.y8a{bottom:518.793000px;}
.ycc{bottom:520.564500px;}
.y16{bottom:521.898000px;}
.yab{bottom:522.477000px;}
.yf4{bottom:523.386000px;}
.y8b{bottom:525.235500px;}
.y3b{bottom:525.660000px;}
.y3c{bottom:531.598500px;}
.y11d{bottom:533.061000px;}
.yaa{bottom:533.293500px;}
.y6b{bottom:540.589500px;}
.ycb{bottom:540.889500px;}
.y89{bottom:555.321000px;}
.yf3{bottom:557.160000px;}
.y15{bottom:558.586500px;}
.y6a{bottom:560.913000px;}
.yca{bottom:561.213000px;}
.y3a{bottom:562.188000px;}
.ya9{bottom:570.055500px;}
.y11c{bottom:575.802000px;}
.yf2{bottom:577.483500px;}
.ya8{bottom:590.379000px;}
.y14{bottom:595.273500px;}
.y11b{bottom:596.125500px;}
.y69{bottom:597.675000px;}
.yc9{bottom:604.434000px;}
.y88{bottom:606.783000px;}
.yf1{bottom:611.256000px;}
.y39{bottom:613.746000px;}
.y11a{bottom:616.449000px;}
.ya7{bottom:621.270000px;}
.yc8{bottom:624.757500px;}
.yf0{bottom:631.581000px;}
.y13{bottom:631.960500px;}
.y38{bottom:634.069500px;}
.y68{bottom:634.437000px;}
.y119{bottom:636.772500px;}
.y87{bottom:636.877500px;}
.yc7{bottom:645.081000px;}
.y67{bottom:654.760500px;}
.y84{bottom:654.937500px;}
.ya6{bottom:665.089500px;}
.yef{bottom:665.353500px;}
.y12{bottom:668.649000px;}
.y86{bottom:669.489000px;}
.y118{bottom:670.546500px;}
.y37{bottom:670.591500px;}
.y85{bottom:673.972500px;}
.yc6{bottom:681.843000px;}
.y36{bottom:683.572500px;}
.yee{bottom:685.677000px;}
.y66{bottom:688.534500px;}
.y117{bottom:690.870000px;}
.ya5{bottom:698.863500px;}
.y83{bottom:705.054000px;}
.yed{bottom:706.002000px;}
.y65{bottom:708.858000px;}
.y115{bottom:711.193500px;}
.y116{bottom:717.132000px;}
.yc5{bottom:718.605000px;}
.y11{bottom:720.019500px;}
.yec{bottom:726.325500px;}
.y64{bottom:729.181500px;}
.ya4{bottom:729.660000px;}
.y114{bottom:731.517000px;}
.y35{bottom:733.167000px;}
.y10{bottom:737.952000px;}
.y82{bottom:738.727500px;}
.yc4{bottom:738.930000px;}
.ya3{bottom:742.641000px;}
.yf{bottom:755.886000px;}
.yeb{bottom:760.098000px;}
.y113{bottom:765.291000px;}
.y63{bottom:765.943500px;}
.y34{bottom:769.929000px;}
.ye{bottom:773.818500px;}
.ya2{bottom:776.706000px;}
.y81{bottom:778.963500px;}
.yea{bottom:780.423000px;}
.yc3{bottom:782.151000px;}
.y112{bottom:785.614500px;}
.yc{bottom:791.751000px;}
.yd{bottom:797.173500px;}
.ye9{bottom:800.746500px;}
.yc2{bottom:802.474500px;}
.y61{bottom:802.705500px;}
.y33{bottom:806.691000px;}
.y62{bottom:808.644000px;}
.yb{bottom:809.683500px;}
.ya1{bottom:810.478500px;}
.y80{bottom:819.201000px;}
.y111{bottom:819.388500px;}
.yc1{bottom:822.798000px;}
.y9{bottom:827.616000px;}
.ya{bottom:833.040000px;}
.ye8{bottom:834.519000px;}
.y110{bottom:839.712000px;}
.ya0{bottom:841.371000px;}
.y60{bottom:843.213000px;}
.y8{bottom:845.548500px;}
.y5e{bottom:848.329500px;}
.y32{bottom:849.912000px;}
.y7f{bottom:852.469500px;}
.yc0{bottom:852.835500px;}
.ye6{bottom:854.844000px;}
.y5c{bottom:857.688000px;}
.ye7{bottom:860.781000px;}
.y7{bottom:863.482500px;}
.y10f{bottom:869.749500px;}
.y30{bottom:870.235500px;}
.y5f{bottom:870.589500px;}
.y7e{bottom:872.793000px;}
.ybf{bottom:873.159000px;}
.y5d{bottom:875.229000px;}
.y31{bottom:876.174000px;}
.y6{bottom:881.415000px;}
.y9f{bottom:885.190500px;}
.y10e{bottom:890.073000px;}
.y2e{bottom:890.559000px;}
.ye5{bottom:891.606000px;}
.ybe{bottom:893.482500px;}
.y2f{bottom:896.497500px;}
.y9e{bottom:905.514000px;}
.y5{bottom:907.501500px;}
.y7d{bottom:908.950500px;}
.y10d{bottom:910.396500px;}
.y5b{bottom:910.702500px;}
.y2c{bottom:924.333000px;}
.ye4{bottom:928.368000px;}
.y2d{bottom:930.271500px;}
.ybd{bottom:936.705000px;}
.y9d{bottom:939.286500px;}
.y10c{bottom:944.170500px;}
.y7b{bottom:945.106500px;}
.y5a{bottom:948.280500px;}
.ye3{bottom:948.691500px;}
.y7c{bottom:951.045000px;}
.y59{bottom:953.923500px;}
.ybc{bottom:957.028500px;}
.y2b{bottom:958.105500px;}
.y4{bottom:966.727500px;}
.ye2{bottom:969.015000px;}
.y9c{bottom:973.060500px;}
.y58{bottom:974.247000px;}
.y10b{bottom:974.869500px;}
.ybb{bottom:977.352000px;}
.y29{bottom:978.429000px;}
.y7a{bottom:978.780000px;}
.y2a{bottom:984.367500px;}
.ye1{bottom:989.338500px;}
.y108{bottom:992.929500px;}
.yb9{bottom:997.675500px;}
.y79{bottom:999.103500px;}
.y3{bottom:1003.414500px;}
.yba{bottom:1003.614000px;}
.y9b{bottom:1006.833000px;}
.y10a{bottom:1007.481000px;}
.ye0{bottom:1009.663500px;}
.y57{bottom:1011.009000px;}
.y109{bottom:1011.964500px;}
.yb8{bottom:1017.999000px;}
.y28{bottom:1021.651500px;}
.y9a{bottom:1037.725500px;}
.yb7{bottom:1038.324000px;}
.y77{bottom:1041.307500px;}
.y107{bottom:1043.652000px;}
.ydf{bottom:1046.191500px;}
.y56{bottom:1047.771000px;}
.y2{bottom:1048.882500px;}
.y78{bottom:1053.768000px;}
.y27{bottom:1058.413500px;}
.y106{bottom:1061.521500px;}
.y105{bottom:1063.975500px;}
.y1{bottom:1072.792500px;}
.y55{bottom:1081.545000px;}
.y12d{bottom:1084.299000px;}
.y54{bottom:1096.225500px;}
.yde{bottom:1097.748000px;}
.y26{bottom:1101.634500px;}
.y52{bottom:1101.868500px;}
.y53{bottom:1108.311000px;}
.ydd{bottom:1118.073000px;}
.y25{bottom:1138.396500px;}
.h13{height:19.965050px;}
.h5{height:27.783619px;}
.h6{height:29.038903px;}
.he{height:34.239550px;}
.hb{height:35.865450px;}
.h1b{height:37.893050px;}
.h21{height:40.712761px;}
.h20{height:43.592764px;}
.h4{height:44.831700px;}
.h23{height:46.865494px;}
.h8{height:49.090950px;}
.h3{height:53.798400px;}
.h10{height:57.413702px;}
.hf{height:57.419702px;}
.h1a{height:57.987550px;}
.hc{height:57.993550px;}
.h24{height:59.619450px;}
.h19{height:60.689702px;}
.hd{height:61.263550px;}
.h18{height:61.269550px;}
.h15{height:61.635450px;}
.h22{height:62.889450px;}
.h7{height:64.557900px;}
.h12{height:69.801050px;}
.h1f{height:69.807050px;}
.h16{height:71.662950px;}
.h2{height:77.469300px;}
.h1c{height:87.735050px;}
.h25{height:91.996950px;}
.h26{height:92.379050px;}
.h9{height:93.370950px;}
.ha{height:95.956950px;}
.h11{height:123.603050px;}
.h1e{height:135.375050px;}
.h27{height:142.041050px;}
.h17{height:143.925050px;}
.h14{height:146.655050px;}
.h1d{height:159.975050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:104.973000px;}
.x37{left:106.086000px;}
.x1d{left:108.000000px;}
.x120{left:111.390000px;}
.x114{left:113.331000px;}
.xf8{left:127.999500px;}
.x10c{left:130.501500px;}
.x159{left:132.384000px;}
.x157{left:133.455000px;}
.x100{left:134.818500px;}
.x101{left:141.175500px;}
.x12c{left:143.148000px;}
.x102{left:145.720500px;}
.x10d{left:146.949000px;}
.x7{left:148.909500px;}
.x45{left:151.792500px;}
.x10e{left:153.223500px;}
.x1f{left:155.866500px;}
.x41{left:159.273000px;}
.x50{left:162.190500px;}
.x152{left:164.229000px;}
.x11c{left:167.703000px;}
.x6{left:171.325500px;}
.x11d{left:173.938500px;}
.x12d{left:175.689000px;}
.x20{left:177.387000px;}
.x11e{left:178.485000px;}
.xfa{left:180.775500px;}
.xf4{left:182.317500px;}
.x122{left:184.708500px;}
.x1{left:187.294500px;}
.x150{left:188.968500px;}
.xb5{left:190.428000px;}
.x21{left:191.755500px;}
.x46{left:194.175000px;}
.xfb{left:197.257500px;}
.x12e{left:199.162500px;}
.x154{left:201.136500px;}
.x90{left:202.996500px;}
.x51{left:204.505500px;}
.x12f{left:207.180000px;}
.xb6{left:209.325000px;}
.x5f{left:211.054500px;}
.xf5{left:214.177500px;}
.x113{left:217.323000px;}
.xba{left:219.961500px;}
.x13d{left:221.265000px;}
.x91{left:222.472500px;}
.x83{left:223.563000px;}
.x60{left:226.086000px;}
.xfc{left:229.144500px;}
.x2b{left:230.689500px;}
.x61{left:232.576500px;}
.x128{left:233.667000px;}
.x151{left:235.732500px;}
.x13a{left:236.764500px;}
.x92{left:239.491500px;}
.x62{left:242.398500px;}
.x84{left:243.424500px;}
.x14d{left:244.738500px;}
.xc9{left:246.144000px;}
.xbb{left:249.363000px;}
.x110{left:251.082000px;}
.x137{left:253.143000px;}
.x13b{left:256.563000px;}
.x93{left:257.835000px;}
.xa1{left:259.984500px;}
.x2{left:263.026500px;}
.xbc{left:264.298500px;}
.x12b{left:266.214000px;}
.xca{left:267.406500px;}
.xf6{left:271.314000px;}
.xce{left:272.433000px;}
.x116{left:274.015500px;}
.x130{left:275.647500px;}
.x85{left:279.765000px;}
.xc8{left:281.358000px;}
.x72{left:282.364500px;}
.x117{left:283.765500px;}
.x158{left:285.444000px;}
.xe8{left:287.842500px;}
.x140{left:289.060500px;}
.x4c{left:290.182500px;}
.xd2{left:291.805500px;}
.x10a{left:293.197500px;}
.x86{left:294.292500px;}
.x10b{left:297.000000px;}
.xab{left:298.645500px;}
.x123{left:299.793000px;}
.xcb{left:301.888500px;}
.x1e{left:304.047000px;}
.x133{left:305.280000px;}
.x107{left:307.605000px;}
.x2d{left:308.986500px;}
.x11f{left:310.462500px;}
.xa2{left:311.472000px;}
.xe9{left:312.561000px;}
.x138{left:314.703000px;}
.x14e{left:316.683000px;}
.x73{left:318.183000px;}
.xe0{left:319.540500px;}
.xd1{left:320.917500px;}
.xbd{left:323.038500px;}
.x2c{left:325.678500px;}
.xd3{left:326.770500px;}
.xb4{left:328.149000px;}
.x118{left:330.151500px;}
.xfd{left:332.403000px;}
.x2e{left:333.531000px;}
.x141{left:335.818500px;}
.x4d{left:337.456500px;}
.xe7{left:340.225500px;}
.x10{left:341.661000px;}
.x14f{left:343.806000px;}
.xcf{left:344.821500px;}
.x115{left:346.236000px;}
.x8{left:348.763500px;}
.x9a{left:351.283500px;}
.xbe{left:352.713000px;}
.x2f{left:355.059000px;}
.x153{left:356.091000px;}
.x63{left:357.961500px;}
.x11{left:359.760000px;}
.x9{left:361.182000px;}
.x30{left:363.076500px;}
.x94{left:365.355000px;}
.x74{left:367.407000px;}
.x64{left:369.520500px;}
.x31{left:370.756500px;}
.xcc{left:371.844000px;}
.x75{left:373.644000px;}
.x3{left:375.274500px;}
.x47{left:377.193000px;}
.xac{left:378.417000px;}
.x9b{left:380.331000px;}
.x119{left:381.696000px;}
.x38{left:382.741500px;}
.xbf{left:384.472500px;}
.xdd{left:385.507500px;}
.xcd{left:386.832000px;}
.x12{left:388.572000px;}
.x142{left:389.623500px;}
.xfe{left:390.741000px;}
.xea{left:393.408000px;}
.x4{left:395.218500px;}
.x39{left:397.678500px;}
.xa3{left:399.256500px;}
.xb7{left:401.689500px;}
.xde{left:403.989000px;}
.x139{left:406.900500px;}
.x76{left:409.644000px;}
.xeb{left:411.327000px;}
.x5{left:413.812500px;}
.x156{left:415.182000px;}
.x77{left:417.663000px;}
.x48{left:419.575500px;}
.xe1{left:421.128000px;}
.x147{left:422.341500px;}
.x10f{left:423.771000px;}
.x78{left:425.341500px;}
.x108{left:426.574500px;}
.x42{left:427.939500px;}
.xb8{left:431.556000px;}
.x155{left:433.462500px;}
.xad{left:434.637000px;}
.x43{left:436.120500px;}
.xe6{left:438.099000px;}
.x109{left:441.061500px;}
.x2a{left:442.366500px;}
.x95{left:443.412000px;}
.x4e{left:444.850500px;}
.x143{left:447.555000px;}
.x49{left:450.024000px;}
.x65{left:451.860000px;}
.x144{left:454.045500px;}
.x79{left:455.197500px;}
.x52{left:457.206000px;}
.xa{left:461.136000px;}
.x6c{left:463.197000px;}
.xae{left:465.489000px;}
.x132{left:467.775000px;}
.xe2{left:469.335000px;}
.x8b{left:470.743500px;}
.xa4{left:473.617500px;}
.x7a{left:474.673500px;}
.xb{left:477.963000px;}
.x66{left:481.306500px;}
.x9c{left:483.654000px;}
.xd4{left:486.169500px;}
.x134{left:487.732500px;}
.x53{left:488.847000px;}
.x129{left:489.847500px;}
.x7b{left:491.692500px;}
.xd5{left:493.800000px;}
.x148{left:498.204000px;}
.xd6{left:500.290500px;}
.x7c{left:501.531000px;}
.x135{left:504.565500px;}
.xd0{left:506.023500px;}
.xb9{left:507.486000px;}
.xaf{left:511.102500px;}
.x124{left:514.626000px;}
.x4a{left:515.673000px;}
.xd7{left:521.713500px;}
.x4b{left:523.353000px;}
.xe3{left:525.822000px;}
.xdb{left:527.062500px;}
.x6d{left:528.583500px;}
.x67{left:529.797000px;}
.x125{left:531.108000px;}
.x22{left:532.696500px;}
.xf0{left:533.959500px;}
.x136{left:535.830000px;}
.xa5{left:537.540000px;}
.x96{left:538.576500px;}
.xf1{left:540.196500px;}
.x149{left:541.300500px;}
.x87{left:542.808000px;}
.x3a{left:544.596000px;}
.x23{left:547.063500px;}
.x126{left:548.209500px;}
.xb0{left:549.916500px;}
.xa6{left:551.794500px;}
.x9d{left:553.807500px;}
.xf2{left:555.127500px;}
.x68{left:556.146000px;}
.x111{left:557.392500px;}
.x8c{left:558.982500px;}
.xe4{left:560.659500px;}
.x12a{left:562.504500px;}
.x54{left:563.628000px;}
.xc{left:565.162500px;}
.x69{left:567.132000px;}
.xa7{left:568.602000px;}
.x13{left:570.505500px;}
.x13e{left:572.716500px;}
.xc0{left:574.095000px;}
.x14a{left:576.304500px;}
.x55{left:577.995000px;}
.xd{left:579.189000px;}
.xec{left:582.873000px;}
.x14b{left:584.764500px;}
.x13c{left:589.101000px;}
.x9e{left:590.583000px;}
.x14{left:592.873500px;}
.xf3{left:593.949000px;}
.x3b{left:596.107500px;}
.x103{left:597.336000px;}
.xa8{left:599.082000px;}
.xed{left:600.582000px;}
.xc1{left:602.338500px;}
.x11a{left:604.078500px;}
.x97{left:605.158500px;}
.xe{left:606.898500px;}
.x15{left:608.461500px;}
.x14c{left:611.265000px;}
.x104{left:612.859500px;}
.x6e{left:616.512000px;}
.x24{left:618.772500px;}
.xe5{left:620.650500px;}
.x56{left:622.213500px;}
.x7d{left:623.643000px;}
.xf{left:625.240500px;}
.x98{left:626.473500px;}
.x57{left:628.641000px;}
.x105{left:630.120000px;}
.x16{left:632.953500px;}
.x131{left:635.673000px;}
.x58{left:638.463000px;}
.x25{left:639.631500px;}
.x99{left:640.729500px;}
.x32{left:642.633000px;}
.x17{left:646.024500px;}
.x127{left:647.460000px;}
.x59{left:648.499500px;}
.x33{left:650.313000px;}
.x88{left:654.204000px;}
.xf7{left:655.806000px;}
.x3c{left:656.836500px;}
.x6f{left:658.831500px;}
.xc2{left:661.954500px;}
.x18{left:663.355500px;}
.x5a{left:664.915500px;}
.x8d{left:667.764000px;}
.xdf{left:669.915000px;}
.x70{left:671.014500px;}
.x26{left:673.833000px;}
.x8e{left:675.442500px;}
.xf9{left:676.803000px;}
.xc3{left:678.435000px;}
.x89{left:680.796000px;}
.x7e{left:681.954000px;}
.xee{left:683.731500px;}
.x3d{left:684.952500px;}
.x112{left:687.637500px;}
.x44{left:689.373000px;}
.xd8{left:690.736500px;}
.x7f{left:691.794000px;}
.xef{left:693.403500px;}
.x19{left:695.320500px;}
.x27{left:696.381000px;}
.xd9{left:698.574000px;}
.x3e{left:702.225000px;}
.x28{left:704.727000px;}
.x8a{left:705.832500px;}
.xa9{left:707.590500px;}
.xda{left:710.442000px;}
.x34{left:711.706500px;}
.x121{left:713.344500px;}
.xaa{left:715.609500px;}
.x11b{left:716.761500px;}
.x71{left:719.365500px;}
.x9f{left:721.429500px;}
.xb1{left:722.604000px;}
.x3f{left:723.753000px;}
.xc4{left:724.753500px;}
.x1a{left:728.113500px;}
.xdc{left:730.968000px;}
.xc5{left:733.258500px;}
.x1b{left:735.466500px;}
.x5b{left:737.332500px;}
.xff{left:739.479000px;}
.x1c{left:742.818000px;}
.x29{left:744.756000px;}
.x13f{left:746.020500px;}
.x80{left:747.021000px;}
.x146{left:748.984500px;}
.x106{left:750.495000px;}
.xc6{left:751.806000px;}
.x81{left:753.568500px;}
.x145{left:755.538000px;}
.x8f{left:757.299000px;}
.xb2{left:759.822000px;}
.x35{left:761.187000px;}
.x5c{left:764.151000px;}
.xa0{left:765.459000px;}
.xb3{left:767.953500px;}
.x36{left:769.206000px;}
.x5d{left:770.578500px;}
.xc7{left:772.969500px;}
.x6a{left:774.370500px;}
.x40{left:776.268000px;}
.x5e{left:780.400500px;}
.x6b{left:782.551500px;}
.x82{left:783.633000px;}
@media print{
.v17{vertical-align:-60.240000pt;}
.v14{vertical-align:-53.029333pt;}
.v13{vertical-align:-44.304000pt;}
.ve{vertical-align:-21.114667pt;}
.va{vertical-align:-9.482667pt;}
.v2{vertical-align:-7.968000pt;}
.v8{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:8.725333pt;}
.v6{vertical-align:10.981333pt;}
.v16{vertical-align:15.936000pt;}
.v5{vertical-align:16.885333pt;}
.v1{vertical-align:19.280000pt;}
.v9{vertical-align:21.114667pt;}
.v11{vertical-align:22.906667pt;}
.v3{vertical-align:24.026667pt;}
.vd{vertical-align:31.834667pt;}
.v1d{vertical-align:38.138667pt;}
.v4{vertical-align:39.360000pt;}
.vc{vertical-align:40.560000pt;}
.v7{vertical-align:41.658667pt;}
.vf{vertical-align:44.298667pt;}
.v1b{vertical-align:55.482667pt;}
.v1c{vertical-align:58.288000pt;}
.v18{vertical-align:60.240000pt;}
.v1a{vertical-align:64.213333pt;}
.vb{vertical-align:92.122667pt;}
.v1e{vertical-align:108.512000pt;}
.v12{vertical-align:110.186667pt;}
.v10{vertical-align:112.613333pt;}
.v19{vertical-align:124.453333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000320pt;}
.ls3{letter-spacing:0.000681pt;}
.lsab{letter-spacing:0.000690pt;}
.ls4b{letter-spacing:0.000749pt;}
.ls32{letter-spacing:0.001343pt;}
.lsb5{letter-spacing:0.001422pt;}
.lsb{letter-spacing:0.001441pt;}
.lse{letter-spacing:0.001916pt;}
.lsce{letter-spacing:0.002064pt;}
.ls93{letter-spacing:0.002400pt;}
.ls8e{letter-spacing:0.002405pt;}
.ls81{letter-spacing:0.002825pt;}
.ls90{letter-spacing:0.002870pt;}
.lscd{letter-spacing:0.003324pt;}
.ls7d{letter-spacing:0.003521pt;}
.ls85{letter-spacing:0.003851pt;}
.ls94{letter-spacing:0.003856pt;}
.ls9d{letter-spacing:0.006082pt;}
.lsb3{letter-spacing:0.006142pt;}
.ls98{letter-spacing:0.007891pt;}
.lsaf{letter-spacing:0.009564pt;}
.ls5e{letter-spacing:0.011965pt;}
.lsad{letter-spacing:0.011990pt;}
.lsb8{letter-spacing:0.013019pt;}
.ls96{letter-spacing:0.013503pt;}
.lsdb{letter-spacing:0.014427pt;}
.lsa8{letter-spacing:0.017586pt;}
.lsb0{letter-spacing:0.017777pt;}
.ls45{letter-spacing:0.018186pt;}
.lsba{letter-spacing:0.018337pt;}
.ls4f{letter-spacing:0.018825pt;}
.lsd4{letter-spacing:0.020144pt;}
.lsa5{letter-spacing:0.023181pt;}
.lsd7{letter-spacing:0.023199pt;}
.lsdc{letter-spacing:0.028509pt;}
.ls3c{letter-spacing:0.028884pt;}
.lsd0{letter-spacing:0.042507pt;}
.ls49{letter-spacing:1.147694pt;}
.ls1{letter-spacing:1.471333pt;}
.ls2{letter-spacing:1.476666pt;}
.ls30{letter-spacing:1.531425pt;}
.ls28{letter-spacing:1.551829pt;}
.ls5c{letter-spacing:1.570910pt;}
.ls6c{letter-spacing:1.576288pt;}
.lsb2{letter-spacing:1.586755pt;}
.ls4d{letter-spacing:1.587748pt;}
.ls39{letter-spacing:1.588527pt;}
.ls26{letter-spacing:1.592525pt;}
.lsc5{letter-spacing:1.592570pt;}
.ls61{letter-spacing:1.603765pt;}
.ls35{letter-spacing:1.605073pt;}
.lsac{letter-spacing:1.605881pt;}
.ls2b{letter-spacing:1.609675pt;}
.ls5f{letter-spacing:1.611215pt;}
.ls38{letter-spacing:1.611404pt;}
.ls33{letter-spacing:1.612080pt;}
.ls68{letter-spacing:1.614480pt;}
.ls24{letter-spacing:1.615008pt;}
.ls37{letter-spacing:1.625468pt;}
.ls21{letter-spacing:1.629092pt;}
.ls66{letter-spacing:1.745456pt;}
.ls50{letter-spacing:1.803638pt;}
.ls4e{letter-spacing:1.861820pt;}
.lscb{letter-spacing:2.638630pt;}
.ls4a{letter-spacing:2.640693pt;}
.ls34{letter-spacing:2.653258pt;}
.ls48{letter-spacing:2.655321pt;}
.lsc{letter-spacing:2.656473pt;}
.ls36{letter-spacing:2.658591pt;}
.ls8{letter-spacing:2.660025pt;}
.ls88{letter-spacing:2.660654pt;}
.ls73{letter-spacing:3.316366pt;}
.ls2f{letter-spacing:3.374548pt;}
.ls13{letter-spacing:3.786350pt;}
.ls20{letter-spacing:3.791684pt;}
.ls8d{letter-spacing:3.995677pt;}
.lse0{letter-spacing:4.183161pt;}
.lsd{letter-spacing:4.505763pt;}
.ls9c{letter-spacing:5.597483pt;}
.ls9{letter-spacing:6.341823pt;}
.ls97{letter-spacing:6.379416pt;}
.ls58{letter-spacing:6.690915pt;}
.ls47{letter-spacing:7.272733pt;}
.lsd3{letter-spacing:8.063901pt;}
.ls56{letter-spacing:8.066829pt;}
.ls7{letter-spacing:8.076575pt;}
.lsbd{letter-spacing:8.081908pt;}
.ls15{letter-spacing:9.658190pt;}
.ls17{letter-spacing:9.716372pt;}
.lsb9{letter-spacing:10.181806pt;}
.lsa2{letter-spacing:10.181827pt;}
.lsa1{letter-spacing:10.240009pt;}
.lsc7{letter-spacing:10.330350pt;}
.ls5b{letter-spacing:10.902936pt;}
.ls60{letter-spacing:11.520010pt;}
.ls18{letter-spacing:12.916374pt;}
.ls7c{letter-spacing:12.974556pt;}
.lsd5{letter-spacing:13.032738pt;}
.lsd6{letter-spacing:13.090920pt;}
.ls22{letter-spacing:14.545467pt;}
.lse4{letter-spacing:14.603649pt;}
.ls69{letter-spacing:14.720012pt;}
.ls6a{letter-spacing:14.778194pt;}
.ls7b{letter-spacing:15.127285pt;}
.lsaa{letter-spacing:15.185467pt;}
.ls9e{letter-spacing:15.581258pt;}
.lsda{letter-spacing:15.583321pt;}
.ls29{letter-spacing:15.586591pt;}
.lscf{letter-spacing:15.767286pt;}
.ls5{letter-spacing:16.116377pt;}
.ls12{letter-spacing:16.174559pt;}
.ls7e{letter-spacing:16.290923pt;}
.ls1c{letter-spacing:16.719684pt;}
.lsbe{letter-spacing:16.725017pt;}
.ls46{letter-spacing:16.814559pt;}
.ls3e{letter-spacing:17.338196pt;}
.ls2d{letter-spacing:17.745469pt;}
.ls0{letter-spacing:17.799845pt;}
.ls16{letter-spacing:17.803651pt;}
.lsd2{letter-spacing:17.861833pt;}
.ls11{letter-spacing:17.978197pt;}
.lsa7{letter-spacing:18.036379pt;}
.ls95{letter-spacing:18.239527pt;}
.lsdf{letter-spacing:18.327288pt;}
.ls82{letter-spacing:18.385470pt;}
.lsa4{letter-spacing:18.501834pt;}
.ls25{letter-spacing:18.813258pt;}
.ls9a{letter-spacing:18.815321pt;}
.ls9f{letter-spacing:18.818591pt;}
.ls84{letter-spacing:18.820654pt;}
.lsb6{letter-spacing:18.839925pt;}
.lsb7{letter-spacing:18.845166pt;}
.lsb4{letter-spacing:18.845258pt;}
.lse6{letter-spacing:18.909107pt;}
.ls51{letter-spacing:19.083652pt;}
.ls6e{letter-spacing:19.200016pt;}
.lsa{letter-spacing:19.258198pt;}
.ls5a{letter-spacing:19.316380pt;}
.ls53{letter-spacing:19.374562pt;}
.ls6{letter-spacing:19.432743pt;}
.ls1e{letter-spacing:19.490925pt;}
.ls23{letter-spacing:19.549107pt;}
.ls2e{letter-spacing:19.723653pt;}
.ls2c{letter-spacing:19.781835pt;}
.ls1d{letter-spacing:19.951684pt;}
.ls3d{letter-spacing:19.983321pt;}
.lsf{letter-spacing:20.072744pt;}
.lse3{letter-spacing:20.247290pt;}
.lse5{letter-spacing:20.305471pt;}
.ls3b{letter-spacing:20.538199pt;}
.ls44{letter-spacing:20.829108pt;}
.ls6d{letter-spacing:20.887290pt;}
.ls63{letter-spacing:20.945472pt;}
.ls19{letter-spacing:21.003654pt;}
.lsc6{letter-spacing:21.178199pt;}
.lsa3{letter-spacing:21.183321pt;}
.lsca{letter-spacing:21.236381pt;}
.lse2{letter-spacing:21.287161pt;}
.ls8a{letter-spacing:21.760018pt;}
.ls83{letter-spacing:21.818200pt;}
.ls27{letter-spacing:22.050591pt;}
.ls42{letter-spacing:22.400019pt;}
.ls54{letter-spacing:22.458201pt;}
.ls4{letter-spacing:22.516382pt;}
.ls52{letter-spacing:22.574564pt;}
.ls65{letter-spacing:22.632746pt;}
.ls1f{letter-spacing:22.749110pt;}
.ls99{letter-spacing:23.469258pt;}
.ls9b{letter-spacing:23.474591pt;}
.ls41{letter-spacing:24.029111pt;}
.lscc{letter-spacing:24.145475pt;}
.ls40{letter-spacing:24.203657pt;}
.ls80{letter-spacing:24.552748pt;}
.ls76{letter-spacing:24.607684pt;}
.ls59{letter-spacing:25.716385pt;}
.ls74{letter-spacing:25.774567pt;}
.lsae{letter-spacing:25.832749pt;}
.lsa0{letter-spacing:26.007294pt;}
.lsc8{letter-spacing:26.065476pt;}
.ls3a{letter-spacing:26.240022pt;}
.ls2a{letter-spacing:26.298204pt;}
.ls8f{letter-spacing:26.414567pt;}
.ls89{letter-spacing:26.530931pt;}
.ls55{letter-spacing:26.589113pt;}
.ls4c{letter-spacing:26.705477pt;}
.ls62{letter-spacing:26.763659pt;}
.ls67{letter-spacing:26.821841pt;}
.lsde{letter-spacing:26.938204pt;}
.lsa9{letter-spacing:26.996386pt;}
.ls75{letter-spacing:27.112750pt;}
.lsd1{letter-spacing:27.170932pt;}
.lsd8{letter-spacing:27.229114pt;}
.lsd9{letter-spacing:27.287295pt;}
.ls43{letter-spacing:27.461841pt;}
.lsc4{letter-spacing:27.810932pt;}
.ls3f{letter-spacing:28.043660pt;}
.lsa6{letter-spacing:29.090933pt;}
.ls7f{letter-spacing:30.952753pt;}
.ls6f{letter-spacing:32.290936pt;}
.ls71{letter-spacing:32.326082pt;}
.ls70{letter-spacing:32.349118pt;}
.ls87{letter-spacing:33.743477pt;}
.ls77{letter-spacing:33.745483pt;}
.ls7a{letter-spacing:33.748437pt;}
.lsbb{letter-spacing:34.978499pt;}
.ls1a{letter-spacing:35.549121pt;}
.ls8c{letter-spacing:36.397258pt;}
.ls86{letter-spacing:36.399321pt;}
.lsdd{letter-spacing:36.402591pt;}
.lse1{letter-spacing:36.404654pt;}
.ls64{letter-spacing:36.945485pt;}
.ls78{letter-spacing:36.982082pt;}
.ls6b{letter-spacing:37.003667pt;}
.ls72{letter-spacing:37.760031pt;}
.ls31{letter-spacing:38.210591pt;}
.ls14{letter-spacing:38.923669pt;}
.lsc9{letter-spacing:39.156396pt;}
.ls91{letter-spacing:39.629258pt;}
.ls79{letter-spacing:40.087306pt;}
.lsb1{letter-spacing:41.442591pt;}
.ls57{letter-spacing:43.345491pt;}
.ls8b{letter-spacing:43.627488pt;}
.lsbc{letter-spacing:57.018229pt;}
.lsc1{letter-spacing:57.600048pt;}
.lsbf{letter-spacing:58.007321pt;}
.ls5d{letter-spacing:58.181867pt;}
.lsc0{letter-spacing:59.345504pt;}
.lsc3{letter-spacing:67.840057pt;}
.lsc2{letter-spacing:67.898238pt;}
.ls92{letter-spacing:117.139945pt;}
.ws49{word-spacing:-54.074227pt;}
.wsba{word-spacing:-49.908405pt;}
.ws26{word-spacing:-47.616040pt;}
.ws8{word-spacing:-44.366779pt;}
.ws89{word-spacing:-43.834218pt;}
.ws14{word-spacing:-43.038600pt;}
.ws3d{word-spacing:-42.066082pt;}
.ws37{word-spacing:-42.065490pt;}
.ws23{word-spacing:-42.007308pt;}
.ws24{word-spacing:-38.074214pt;}
.ws27{word-spacing:-37.899668pt;}
.ws95{word-spacing:-35.865600pt;}
.wsd{word-spacing:-34.611401pt;}
.ws34{word-spacing:-29.736752pt;}
.ws88{word-spacing:-29.521250pt;}
.ws28{word-spacing:-29.090933pt;}
.ws5e{word-spacing:-29.079297pt;}
.ws7b{word-spacing:-28.241478pt;}
.ws6d{word-spacing:-28.183296pt;}
.ws4c{word-spacing:-23.435656pt;}
.ws86{word-spacing:-21.783291pt;}
.ws6c{word-spacing:-21.725109pt;}
.wsc3{word-spacing:-21.178199pt;}
.wsb4{word-spacing:-20.829108pt;}
.ws3e{word-spacing:-20.154199pt;}
.wsb9{word-spacing:-19.514198pt;}
.ws25{word-spacing:-19.374562pt;}
.ws36{word-spacing:-19.258198pt;}
.wse2{word-spacing:-19.200016pt;}
.wsb3{word-spacing:-18.059651pt;}
.ws8e{word-spacing:-17.303287pt;}
.ws0{word-spacing:-17.215400pt;}
.ws1c{word-spacing:-16.162923pt;}
.wsbc{word-spacing:-15.941831pt;}
.wsbd{word-spacing:-15.883650pt;}
.ws64{word-spacing:-15.010922pt;}
.wse{word-spacing:-14.760588pt;}
.wsd7{word-spacing:-14.370921pt;}
.ws18{word-spacing:-14.346200pt;}
.ws65{word-spacing:-13.847284pt;}
.wsc0{word-spacing:-13.323647pt;}
.wsaa{word-spacing:-13.149102pt;}
.wse4{word-spacing:-13.032738pt;}
.wsa7{word-spacing:-12.916374pt;}
.wsdc{word-spacing:-12.741829pt;}
.ws8a{word-spacing:-12.683647pt;}
.wsa0{word-spacing:-12.567283pt;}
.ws5d{word-spacing:-12.509101pt;}
.ws8b{word-spacing:-12.334556pt;}
.ws4b{word-spacing:-12.276374pt;}
.wsaf{word-spacing:-12.043646pt;}
.ws92{word-spacing:-11.985465pt;}
.ws96{word-spacing:-11.955200pt;}
.ws3{word-spacing:-11.955120pt;}
.wse3{word-spacing:-11.933101pt;}
.ws2f{word-spacing:-11.810919pt;}
.wsd8{word-spacing:-11.752737pt;}
.wsde{word-spacing:-11.700373pt;}
.ws81{word-spacing:-11.694555pt;}
.ws56{word-spacing:-11.578191pt;}
.ws40{word-spacing:-11.403646pt;}
.wsce{word-spacing:-11.287282pt;}
.ws15{word-spacing:-11.170918pt;}
.ws6b{word-spacing:-11.112737pt;}
.ws29{word-spacing:-11.054555pt;}
.ws75{word-spacing:-10.996373pt;}
.wsb{word-spacing:-10.945577pt;}
.ws70{word-spacing:-10.938191pt;}
.ws9{word-spacing:-10.892443pt;}
.ws71{word-spacing:-10.880009pt;}
.ws90{word-spacing:-10.821827pt;}
.wsc9{word-spacing:-10.763645pt;}
.ws8c{word-spacing:-10.705463pt;}
.ws1{word-spacing:-10.431311pt;}
.ws94{word-spacing:-10.414554pt;}
.ws4d{word-spacing:-10.356372pt;}
.ws30{word-spacing:-10.298190pt;}
.ws82{word-spacing:-10.181827pt;}
.wsa1{word-spacing:-10.123645pt;}
.ws59{word-spacing:-10.065463pt;}
.wsd6{word-spacing:-10.013099pt;}
.ws74{word-spacing:-10.007281pt;}
.ws41{word-spacing:-9.949099pt;}
.ws72{word-spacing:-9.890917pt;}
.wsb8{word-spacing:-9.832735pt;}
.ws8d{word-spacing:-9.780372pt;}
.ws52{word-spacing:-9.774554pt;}
.ws19{word-spacing:-9.716372pt;}
.ws2e{word-spacing:-9.658190pt;}
.ws2b{word-spacing:-9.600008pt;}
.ws76{word-spacing:-9.541826pt;}
.wsa9{word-spacing:-9.483644pt;}
.ws31{word-spacing:-9.431281pt;}
.ws43{word-spacing:-9.425462pt;}
.ws35{word-spacing:-9.367281pt;}
.ws85{word-spacing:-9.314917pt;}
.wsa6{word-spacing:-9.309099pt;}
.wsad{word-spacing:-9.256735pt;}
.ws2{word-spacing:-9.245293pt;}
.ws11{word-spacing:-9.192159pt;}
.ws42{word-spacing:-9.140371pt;}
.wscf{word-spacing:-9.082189pt;}
.ws1e{word-spacing:-9.076371pt;}
.ws1f{word-spacing:-9.018189pt;}
.ws39{word-spacing:-8.965826pt;}
.ws3f{word-spacing:-8.907644pt;}
.ws13{word-spacing:-8.873356pt;}
.ws53{word-spacing:-8.849462pt;}
.wsa3{word-spacing:-8.843644pt;}
.ws61{word-spacing:-8.791280pt;}
.ws6{word-spacing:-8.767088pt;}
.wsa8{word-spacing:-8.733098pt;}
.wsd0{word-spacing:-8.674916pt;}
.ws66{word-spacing:-8.669098pt;}
.wsca{word-spacing:-8.616734pt;}
.wsae{word-spacing:-8.610916pt;}
.wsc{word-spacing:-8.607686pt;}
.wscb{word-spacing:-8.558553pt;}
.ws4{word-spacing:-8.554553pt;}
.ws73{word-spacing:-8.500371pt;}
.wsb7{word-spacing:-8.494553pt;}
.ws9d{word-spacing:-8.267643pt;}
.ws69{word-spacing:-8.203643pt;}
.wse1{word-spacing:-8.151280pt;}
.ws97{word-spacing:-8.093098pt;}
.ws67{word-spacing:-8.034916pt;}
.wsb2{word-spacing:-7.912734pt;}
.ws5{word-spacing:-7.815992pt;}
.ws8f{word-spacing:-7.744006pt;}
.wscd{word-spacing:-7.680006pt;}
.ws44{word-spacing:-7.389097pt;}
.wsc8{word-spacing:-7.336733pt;}
.wsc5{word-spacing:-7.330915pt;}
.wsc7{word-spacing:-7.278552pt;}
.ws7c{word-spacing:-7.272733pt;}
.ws62{word-spacing:-7.214551pt;}
.wsb1{word-spacing:-6.772369pt;}
.ws7d{word-spacing:-6.754915pt;}
.wsb6{word-spacing:-6.632733pt;}
.wsd3{word-spacing:-6.574551pt;}
.wsd5{word-spacing:-6.516369pt;}
.ws60{word-spacing:-6.446551pt;}
.ws45{word-spacing:-6.400005pt;}
.ws91{word-spacing:-6.347642pt;}
.ws12{word-spacing:-6.322930pt;}
.ws5b{word-spacing:-6.039278pt;}
.ws47{word-spacing:-5.940369pt;}
.wsdb{word-spacing:-5.585459pt;}
.ws38{word-spacing:-5.533096pt;}
.wsd9{word-spacing:-5.527277pt;}
.wsda{word-spacing:-5.125822pt;}
.ws79{word-spacing:-5.120004pt;}
.ws4e{word-spacing:-5.108368pt;}
.ws32{word-spacing:-4.992004pt;}
.ws9e{word-spacing:-4.834913pt;}
.ws10{word-spacing:-4.782048pt;}
.wsbb{word-spacing:-4.776731pt;}
.ws83{word-spacing:-4.701095pt;}
.wsac{word-spacing:-4.654549pt;}
.wsa4{word-spacing:-4.596367pt;}
.wsdf{word-spacing:-3.840003pt;}
.ws54{word-spacing:-3.828367pt;}
.ws55{word-spacing:-3.770185pt;}
.wscc{word-spacing:-3.671276pt;}
.wsa{word-spacing:-3.666237pt;}
.wse0{word-spacing:-3.613094pt;}
.ws5a{word-spacing:-3.607276pt;}
.ws58{word-spacing:-3.479276pt;}
.wsc4{word-spacing:-3.362912pt;}
.ws9f{word-spacing:-3.316366pt;}
.ws93{word-spacing:-3.258185pt;}
.ws1b{word-spacing:-3.246548pt;}
.ws68{word-spacing:-3.188366pt;}
.wsa5{word-spacing:-3.147639pt;}
.wsd1{word-spacing:-3.072003pt;}
.ws4f{word-spacing:-3.025457pt;}
.ws78{word-spacing:-2.973093pt;}
.wsf{word-spacing:-2.805468pt;}
.ws7f{word-spacing:-2.798548pt;}
.ws2c{word-spacing:-2.792730pt;}
.ws77{word-spacing:-2.682184pt;}
.wsb5{word-spacing:-2.024729pt;}
.wsc6{word-spacing:-1.675638pt;}
.ws63{word-spacing:-1.559274pt;}
.wsb0{word-spacing:-1.280001pt;}
.wsd4{word-spacing:-1.152001pt;}
.ws6a{word-spacing:-0.645819pt;}
.ws57{word-spacing:-0.279273pt;}
.wsab{word-spacing:-0.221091pt;}
.ws7a{word-spacing:-0.162909pt;}
.ws22{word-spacing:-0.046545pt;}
.ws3b{word-spacing:-0.042507pt;}
.ws21{word-spacing:0.000000pt;}
.ws48{word-spacing:0.011636pt;}
.wsc2{word-spacing:0.069818pt;}
.ws7{word-spacing:0.116895pt;}
.wsdd{word-spacing:0.186182pt;}
.ws2a{word-spacing:0.302546pt;}
.ws20{word-spacing:1.408001pt;}
.ws2d{word-spacing:3.211639pt;}
.ws4a{word-spacing:3.269821pt;}
.ws84{word-spacing:4.258913pt;}
.ws46{word-spacing:6.626915pt;}
.ws9b{word-spacing:7.481267pt;}
.ws9a{word-spacing:7.523774pt;}
.wsd2{word-spacing:9.960736pt;}
.ws33{word-spacing:10.251645pt;}
.ws99{word-spacing:15.005042pt;}
.wsa2{word-spacing:15.541342pt;}
.ws80{word-spacing:15.828788pt;}
.ws6e{word-spacing:16.128013pt;}
.ws5c{word-spacing:17.582560pt;}
.ws3a{word-spacing:18.777164pt;}
.wsbe{word-spacing:18.781743pt;}
.wsc1{word-spacing:19.363640pt;}
.ws5f{word-spacing:19.381637pt;}
.ws3c{word-spacing:19.384572pt;}
.ws1a{word-spacing:19.386198pt;}
.wsbf{word-spacing:20.782563pt;}
.ws87{word-spacing:20.814966pt;}
.ws50{word-spacing:25.127678pt;}
.ws16{word-spacing:25.832749pt;}
.ws9c{word-spacing:33.359697pt;}
.ws7e{word-spacing:39.588788pt;}
.ws1d{word-spacing:44.560024pt;}
.ws51{word-spacing:80.744615pt;}
.ws6f{word-spacing:100.200811pt;}
.ws98{word-spacing:143.341011pt;}
.ws17{word-spacing:1749.703276pt;}
._37{margin-left:-33.763801pt;}
._8{margin-left:-17.799845pt;}
._2a{margin-left:-16.174559pt;}
._2e{margin-left:-12.450919pt;}
._34{margin-left:-9.774554pt;}
._1{margin-left:-8.538838pt;}
._29{margin-left:-7.272733pt;}
._4{margin-left:-5.164646pt;}
._24{margin-left:-3.922239pt;}
._a{margin-left:-2.975497pt;}
._5{margin-left:-1.721549pt;}
._3{width:1.721549pt;}
._0{width:2.846279pt;}
._38{width:3.863337pt;}
._32{width:4.787356pt;}
._26{width:6.184881pt;}
._28{width:7.272733pt;}
._3a{width:9.658190pt;}
._2d{width:10.715968pt;}
._27{width:12.788319pt;}
._31{width:15.277924pt;}
._21{width:16.198466pt;}
._9{width:17.799845pt;}
._1e{width:19.128042pt;}
._19{width:20.363653pt;}
._c{width:21.285415pt;}
._6{width:22.773164pt;}
._7{width:23.888975pt;}
._20{width:25.743049pt;}
._22{width:27.010179pt;}
._25{width:28.064395pt;}
._13{width:29.730934pt;}
._36{width:30.706486pt;}
._b{width:32.581722pt;}
._39{width:35.898212pt;}
._2c{width:36.945485pt;}
._33{width:38.256533pt;}
._2f{width:39.250892pt;}
._35{width:42.202588pt;}
._2{width:45.907733pt;}
._17{width:50.327315pt;}
._15{width:51.258225pt;}
._d{width:53.818227pt;}
._2b{width:57.192775pt;}
._1c{width:58.240049pt;}
._1f{width:59.403686pt;}
._1d{width:66.577292pt;}
._1b{width:86.077200pt;}
._23{width:126.411134pt;}
._30{width:282.077381pt;}
._14{width:517.072617pt;}
._16{width:580.596161pt;}
._1a{width:622.590615pt;}
._18{width:797.916487pt;}
._10{width:808.426670pt;}
._f{width:859.904082pt;}
._11{width:1045.901142pt;}
._e{width:1185.770350pt;}
._12{width:1198.406182pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y23{bottom:96.000000pt;}
.ydc{bottom:103.745333pt;}
.y21{bottom:114.065333pt;}
.y104{bottom:116.276000pt;}
.y22{bottom:119.344000pt;}
.y102{bottom:121.292000pt;}
.ydb{bottom:121.810667pt;}
.y12c{bottom:124.816000pt;}
.y99{bottom:125.572000pt;}
.yb6{bottom:126.768000pt;}
.y103{bottom:132.366667pt;}
.y51{bottom:133.345333pt;}
.y20{bottom:142.201333pt;}
.y12b{bottom:142.881333pt;}
.y98{bottom:143.638667pt;}
.yb5{bottom:144.834667pt;}
.y101{bottom:147.992000pt;}
.y4f{bottom:151.410667pt;}
.y1f{bottom:152.616000pt;}
.yda{bottom:154.488000pt;}
.y50{bottom:156.689333pt;}
.y97{bottom:161.704000pt;}
.y100{bottom:166.057333pt;}
.y12a{bottom:172.902667pt;}
.yb4{bottom:177.304000pt;}
.y4e{bottom:181.432000pt;}
.yff{bottom:184.122667pt;}
.yd9{bottom:187.165333pt;}
.y1e{bottom:190.110667pt;}
.y129{bottom:190.968000pt;}
.y96{bottom:191.634667pt;}
.y4c{bottom:199.497333pt;}
.y4d{bottom:204.776000pt;}
.yd8{bottom:205.230667pt;}
.y95{bottom:209.700000pt;}
.y76{bottom:213.058667pt;}
.yfe{bottom:214.144000pt;}
.y128{bottom:220.988000pt;}
.y1d{bottom:222.580000pt;}
.yb3{bottom:223.133333pt;}
.yd7{bottom:223.296000pt;}
.y4b{bottom:229.518667pt;}
.y75{bottom:231.124000pt;}
.yfd{bottom:232.209333pt;}
.y127{bottom:239.054667pt;}
.y94{bottom:239.273333pt;}
.yd6{bottom:241.362667pt;}
.y74{bottom:249.190667pt;}
.y4a{bottom:251.718667pt;}
.yb2{bottom:253.153333pt;}
.yd5{bottom:259.428000pt;}
.yfc{bottom:261.492000pt;}
.y49{bottom:262.820000pt;}
.y72{bottom:267.256000pt;}
.y1c{bottom:268.244000pt;}
.y48{bottom:268.797333pt;}
.y126{bottom:269.074667pt;}
.yfb{bottom:271.026667pt;}
.y93{bottom:271.412000pt;}
.y73{bottom:272.534667pt;}
.yb1{bottom:283.174667pt;}
.y47{bottom:286.862667pt;}
.y125{bottom:287.140000pt;}
.yd4{bottom:297.846667pt;}
.y1b{bottom:300.854667pt;}
.y71{bottom:302.273333pt;}
.y92{bottom:303.552000pt;}
.yfa{bottom:303.704000pt;}
.y45{bottom:304.928000pt;}
.y46{bottom:310.206667pt;}
.yb0{bottom:313.194667pt;}
.yd3{bottom:315.912000pt;}
.y124{bottom:319.609333pt;}
.yf9{bottom:321.770667pt;}
.y43{bottom:322.994667pt;}
.y70{bottom:324.117333pt;}
.y44{bottom:328.272000pt;}
.y1a{bottom:333.465333pt;}
.yd2{bottom:333.977333pt;}
.y91{bottom:334.954667pt;}
.y6f{bottom:342.184000pt;}
.yaf{bottom:343.216000pt;}
.y90{bottom:345.541333pt;}
.yf8{bottom:351.790667pt;}
.yd1{bottom:352.042667pt;}
.y42{bottom:353.014667pt;}
.y123{bottom:365.438667pt;}
.y19{bottom:366.077333pt;}
.yf7{bottom:369.856000pt;}
.yd0{bottom:370.109333pt;}
.y41{bottom:371.080000pt;}
.y6e{bottom:372.204000pt;}
.yae{bottom:375.685333pt;}
.y122{bottom:383.505333pt;}
.y8f{bottom:383.580000pt;}
.ycf{bottom:388.174667pt;}
.y18{bottom:398.688000pt;}
.yf6{bottom:399.877333pt;}
.y40{bottom:401.101333pt;}
.y121{bottom:401.570667pt;}
.y6d{bottom:404.673333pt;}
.y8e{bottom:413.510667pt;}
.y3e{bottom:419.166667pt;}
.y120{bottom:419.636000pt;}
.yad{bottom:421.514667pt;}
.y3f{bottom:424.445333pt;}
.yce{bottom:426.593333pt;}
.y17{bottom:431.298667pt;}
.yf5{bottom:432.554667pt;}
.y11f{bottom:437.701333pt;}
.y8d{bottom:443.082667pt;}
.ycd{bottom:444.658667pt;}
.y3d{bottom:449.188000pt;}
.y6c{bottom:450.502667pt;}
.yac{bottom:451.758667pt;}
.y11e{bottom:455.766667pt;}
.y8c{bottom:456.133333pt;}
.y8a{bottom:461.149333pt;}
.ycc{bottom:462.724000pt;}
.y16{bottom:463.909333pt;}
.yab{bottom:464.424000pt;}
.yf4{bottom:465.232000pt;}
.y8b{bottom:466.876000pt;}
.y3b{bottom:467.253333pt;}
.y3c{bottom:472.532000pt;}
.y11d{bottom:473.832000pt;}
.yaa{bottom:474.038667pt;}
.y6b{bottom:480.524000pt;}
.ycb{bottom:480.790667pt;}
.y89{bottom:493.618667pt;}
.yf3{bottom:495.253333pt;}
.y15{bottom:496.521333pt;}
.y6a{bottom:498.589333pt;}
.yca{bottom:498.856000pt;}
.y3a{bottom:499.722667pt;}
.ya9{bottom:506.716000pt;}
.y11c{bottom:511.824000pt;}
.yf2{bottom:513.318667pt;}
.ya8{bottom:524.781333pt;}
.y14{bottom:529.132000pt;}
.y11b{bottom:529.889333pt;}
.y69{bottom:531.266667pt;}
.yc9{bottom:537.274667pt;}
.y88{bottom:539.362667pt;}
.yf1{bottom:543.338667pt;}
.y39{bottom:545.552000pt;}
.y11a{bottom:547.954667pt;}
.ya7{bottom:552.240000pt;}
.yc8{bottom:555.340000pt;}
.yf0{bottom:561.405333pt;}
.y13{bottom:561.742667pt;}
.y38{bottom:563.617333pt;}
.y68{bottom:563.944000pt;}
.y119{bottom:566.020000pt;}
.y87{bottom:566.113333pt;}
.yc7{bottom:573.405333pt;}
.y67{bottom:582.009333pt;}
.y84{bottom:582.166667pt;}
.ya6{bottom:591.190667pt;}
.yef{bottom:591.425333pt;}
.y12{bottom:594.354667pt;}
.y86{bottom:595.101333pt;}
.y118{bottom:596.041333pt;}
.y37{bottom:596.081333pt;}
.y85{bottom:599.086667pt;}
.yc6{bottom:606.082667pt;}
.y36{bottom:607.620000pt;}
.yee{bottom:609.490667pt;}
.y66{bottom:612.030667pt;}
.y117{bottom:614.106667pt;}
.ya5{bottom:621.212000pt;}
.y83{bottom:626.714667pt;}
.yed{bottom:627.557333pt;}
.y65{bottom:630.096000pt;}
.y115{bottom:632.172000pt;}
.y116{bottom:637.450667pt;}
.yc5{bottom:638.760000pt;}
.y11{bottom:640.017333pt;}
.yec{bottom:645.622667pt;}
.y64{bottom:648.161333pt;}
.ya4{bottom:648.586667pt;}
.y114{bottom:650.237333pt;}
.y35{bottom:651.704000pt;}
.y10{bottom:655.957333pt;}
.y82{bottom:656.646667pt;}
.yc4{bottom:656.826667pt;}
.ya3{bottom:660.125333pt;}
.yf{bottom:671.898667pt;}
.yeb{bottom:675.642667pt;}
.y113{bottom:680.258667pt;}
.y63{bottom:680.838667pt;}
.y34{bottom:684.381333pt;}
.ye{bottom:687.838667pt;}
.ya2{bottom:690.405333pt;}
.y81{bottom:692.412000pt;}
.yea{bottom:693.709333pt;}
.yc3{bottom:695.245333pt;}
.y112{bottom:698.324000pt;}
.yc{bottom:703.778667pt;}
.yd{bottom:708.598667pt;}
.ye9{bottom:711.774667pt;}
.yc2{bottom:713.310667pt;}
.y61{bottom:713.516000pt;}
.y33{bottom:717.058667pt;}
.y62{bottom:718.794667pt;}
.yb{bottom:719.718667pt;}
.ya1{bottom:720.425333pt;}
.y80{bottom:728.178667pt;}
.y111{bottom:728.345333pt;}
.yc1{bottom:731.376000pt;}
.y9{bottom:735.658667pt;}
.ya{bottom:740.480000pt;}
.ye8{bottom:741.794667pt;}
.y110{bottom:746.410667pt;}
.ya0{bottom:747.885333pt;}
.y60{bottom:749.522667pt;}
.y8{bottom:751.598667pt;}
.y5e{bottom:754.070667pt;}
.y32{bottom:755.477333pt;}
.y7f{bottom:757.750667pt;}
.yc0{bottom:758.076000pt;}
.ye6{bottom:759.861333pt;}
.y5c{bottom:762.389333pt;}
.ye7{bottom:765.138667pt;}
.y7{bottom:767.540000pt;}
.y10f{bottom:773.110667pt;}
.y30{bottom:773.542667pt;}
.y5f{bottom:773.857333pt;}
.y7e{bottom:775.816000pt;}
.ybf{bottom:776.141333pt;}
.y5d{bottom:777.981333pt;}
.y31{bottom:778.821333pt;}
.y6{bottom:783.480000pt;}
.y9f{bottom:786.836000pt;}
.y10e{bottom:791.176000pt;}
.y2e{bottom:791.608000pt;}
.ye5{bottom:792.538667pt;}
.ybe{bottom:794.206667pt;}
.y2f{bottom:796.886667pt;}
.y9e{bottom:804.901333pt;}
.y5{bottom:806.668000pt;}
.y7d{bottom:807.956000pt;}
.y10d{bottom:809.241333pt;}
.y5b{bottom:809.513333pt;}
.y2c{bottom:821.629333pt;}
.ye4{bottom:825.216000pt;}
.y2d{bottom:826.908000pt;}
.ybd{bottom:832.626667pt;}
.y9d{bottom:834.921333pt;}
.y10c{bottom:839.262667pt;}
.y7b{bottom:840.094667pt;}
.y5a{bottom:842.916000pt;}
.ye3{bottom:843.281333pt;}
.y7c{bottom:845.373333pt;}
.y59{bottom:847.932000pt;}
.ybc{bottom:850.692000pt;}
.y2b{bottom:851.649333pt;}
.y4{bottom:859.313333pt;}
.ye2{bottom:861.346667pt;}
.y9c{bottom:864.942667pt;}
.y58{bottom:865.997333pt;}
.y10b{bottom:866.550667pt;}
.ybb{bottom:868.757333pt;}
.y29{bottom:869.714667pt;}
.y7a{bottom:870.026667pt;}
.y2a{bottom:874.993333pt;}
.ye1{bottom:879.412000pt;}
.y108{bottom:882.604000pt;}
.yb9{bottom:886.822667pt;}
.y79{bottom:888.092000pt;}
.y3{bottom:891.924000pt;}
.yba{bottom:892.101333pt;}
.y9b{bottom:894.962667pt;}
.y10a{bottom:895.538667pt;}
.ye0{bottom:897.478667pt;}
.y57{bottom:898.674667pt;}
.y109{bottom:899.524000pt;}
.yb8{bottom:904.888000pt;}
.y28{bottom:908.134667pt;}
.y9a{bottom:922.422667pt;}
.yb7{bottom:922.954667pt;}
.y77{bottom:925.606667pt;}
.y107{bottom:927.690667pt;}
.ydf{bottom:929.948000pt;}
.y56{bottom:931.352000pt;}
.y2{bottom:932.340000pt;}
.y78{bottom:936.682667pt;}
.y27{bottom:940.812000pt;}
.y106{bottom:943.574667pt;}
.y105{bottom:945.756000pt;}
.y1{bottom:953.593333pt;}
.y55{bottom:961.373333pt;}
.y12d{bottom:963.821333pt;}
.y54{bottom:974.422667pt;}
.yde{bottom:975.776000pt;}
.y26{bottom:979.230667pt;}
.y52{bottom:979.438667pt;}
.y53{bottom:985.165333pt;}
.ydd{bottom:993.842667pt;}
.y25{bottom:1011.908000pt;}
.h13{height:17.746711pt;}
.h5{height:24.696550pt;}
.h6{height:25.812358pt;}
.he{height:30.435155pt;}
.hb{height:31.880400pt;}
.h1b{height:33.682711pt;}
.h21{height:36.189121pt;}
.h20{height:38.749123pt;}
.h4{height:39.850400pt;}
.h23{height:41.658217pt;}
.h8{height:43.636400pt;}
.h3{height:47.820800pt;}
.h10{height:51.034402pt;}
.hf{height:51.039735pt;}
.h1a{height:51.544489pt;}
.hc{height:51.549822pt;}
.h24{height:52.995067pt;}
.h19{height:53.946402pt;}
.hd{height:54.456489pt;}
.h18{height:54.461822pt;}
.h15{height:54.787067pt;}
.h22{height:55.901733pt;}
.h7{height:57.384800pt;}
.h12{height:62.045378pt;}
.h1f{height:62.050711pt;}
.h16{height:63.700400pt;}
.h2{height:68.861600pt;}
.h1c{height:77.986711pt;}
.h25{height:81.775067pt;}
.h26{height:82.114711pt;}
.h9{height:82.996400pt;}
.ha{height:85.295067pt;}
.h11{height:109.869378pt;}
.h1e{height:120.333378pt;}
.h27{height:126.258711pt;}
.h17{height:127.933378pt;}
.h14{height:130.360045pt;}
.h1d{height:142.200045pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:93.309333pt;}
.x37{left:94.298667pt;}
.x1d{left:96.000000pt;}
.x120{left:99.013333pt;}
.x114{left:100.738667pt;}
.xf8{left:113.777333pt;}
.x10c{left:116.001333pt;}
.x159{left:117.674667pt;}
.x157{left:118.626667pt;}
.x100{left:119.838667pt;}
.x101{left:125.489333pt;}
.x12c{left:127.242667pt;}
.x102{left:129.529333pt;}
.x10d{left:130.621333pt;}
.x7{left:132.364000pt;}
.x45{left:134.926667pt;}
.x10e{left:136.198667pt;}
.x1f{left:138.548000pt;}
.x41{left:141.576000pt;}
.x50{left:144.169333pt;}
.x152{left:145.981333pt;}
.x11c{left:149.069333pt;}
.x6{left:152.289333pt;}
.x11d{left:154.612000pt;}
.x12d{left:156.168000pt;}
.x20{left:157.677333pt;}
.x11e{left:158.653333pt;}
.xfa{left:160.689333pt;}
.xf4{left:162.060000pt;}
.x122{left:164.185333pt;}
.x1{left:166.484000pt;}
.x150{left:167.972000pt;}
.xb5{left:169.269333pt;}
.x21{left:170.449333pt;}
.x46{left:172.600000pt;}
.xfb{left:175.340000pt;}
.x12e{left:177.033333pt;}
.x154{left:178.788000pt;}
.x90{left:180.441333pt;}
.x51{left:181.782667pt;}
.x12f{left:184.160000pt;}
.xb6{left:186.066667pt;}
.x5f{left:187.604000pt;}
.xf5{left:190.380000pt;}
.x113{left:193.176000pt;}
.xba{left:195.521333pt;}
.x13d{left:196.680000pt;}
.x91{left:197.753333pt;}
.x83{left:198.722667pt;}
.x60{left:200.965333pt;}
.xfc{left:203.684000pt;}
.x2b{left:205.057333pt;}
.x61{left:206.734667pt;}
.x128{left:207.704000pt;}
.x151{left:209.540000pt;}
.x13a{left:210.457333pt;}
.x92{left:212.881333pt;}
.x62{left:215.465333pt;}
.x84{left:216.377333pt;}
.x14d{left:217.545333pt;}
.xc9{left:218.794667pt;}
.xbb{left:221.656000pt;}
.x110{left:223.184000pt;}
.x137{left:225.016000pt;}
.x13b{left:228.056000pt;}
.x93{left:229.186667pt;}
.xa1{left:231.097333pt;}
.x2{left:233.801333pt;}
.xbc{left:234.932000pt;}
.x12b{left:236.634667pt;}
.xca{left:237.694667pt;}
.xf6{left:241.168000pt;}
.xce{left:242.162667pt;}
.x116{left:243.569333pt;}
.x130{left:245.020000pt;}
.x85{left:248.680000pt;}
.xc8{left:250.096000pt;}
.x72{left:250.990667pt;}
.x117{left:252.236000pt;}
.x158{left:253.728000pt;}
.xe8{left:255.860000pt;}
.x140{left:256.942667pt;}
.x4c{left:257.940000pt;}
.xd2{left:259.382667pt;}
.x10a{left:260.620000pt;}
.x86{left:261.593333pt;}
.x10b{left:264.000000pt;}
.xab{left:265.462667pt;}
.x123{left:266.482667pt;}
.xcb{left:268.345333pt;}
.x1e{left:270.264000pt;}
.x133{left:271.360000pt;}
.x107{left:273.426667pt;}
.x2d{left:274.654667pt;}
.x11f{left:275.966667pt;}
.xa2{left:276.864000pt;}
.xe9{left:277.832000pt;}
.x138{left:279.736000pt;}
.x14e{left:281.496000pt;}
.x73{left:282.829333pt;}
.xe0{left:284.036000pt;}
.xd1{left:285.260000pt;}
.xbd{left:287.145333pt;}
.x2c{left:289.492000pt;}
.xd3{left:290.462667pt;}
.xb4{left:291.688000pt;}
.x118{left:293.468000pt;}
.xfd{left:295.469333pt;}
.x2e{left:296.472000pt;}
.x141{left:298.505333pt;}
.x4d{left:299.961333pt;}
.xe7{left:302.422667pt;}
.x10{left:303.698667pt;}
.x14f{left:305.605333pt;}
.xcf{left:306.508000pt;}
.x115{left:307.765333pt;}
.x8{left:310.012000pt;}
.x9a{left:312.252000pt;}
.xbe{left:313.522667pt;}
.x2f{left:315.608000pt;}
.x153{left:316.525333pt;}
.x63{left:318.188000pt;}
.x11{left:319.786667pt;}
.x9{left:321.050667pt;}
.x30{left:322.734667pt;}
.x94{left:324.760000pt;}
.x74{left:326.584000pt;}
.x64{left:328.462667pt;}
.x31{left:329.561333pt;}
.xcc{left:330.528000pt;}
.x75{left:332.128000pt;}
.x3{left:333.577333pt;}
.x47{left:335.282667pt;}
.xac{left:336.370667pt;}
.x9b{left:338.072000pt;}
.x119{left:339.285333pt;}
.x38{left:340.214667pt;}
.xbf{left:341.753333pt;}
.xdd{left:342.673333pt;}
.xcd{left:343.850667pt;}
.x12{left:345.397333pt;}
.x142{left:346.332000pt;}
.xfe{left:347.325333pt;}
.xea{left:349.696000pt;}
.x4{left:351.305333pt;}
.x39{left:353.492000pt;}
.xa3{left:354.894667pt;}
.xb7{left:357.057333pt;}
.xde{left:359.101333pt;}
.x139{left:361.689333pt;}
.x76{left:364.128000pt;}
.xeb{left:365.624000pt;}
.x5{left:367.833333pt;}
.x156{left:369.050667pt;}
.x77{left:371.256000pt;}
.x48{left:372.956000pt;}
.xe1{left:374.336000pt;}
.x147{left:375.414667pt;}
.x10f{left:376.685333pt;}
.x78{left:378.081333pt;}
.x108{left:379.177333pt;}
.x42{left:380.390667pt;}
.xb8{left:383.605333pt;}
.x155{left:385.300000pt;}
.xad{left:386.344000pt;}
.x43{left:387.662667pt;}
.xe6{left:389.421333pt;}
.x109{left:392.054667pt;}
.x2a{left:393.214667pt;}
.x95{left:394.144000pt;}
.x4e{left:395.422667pt;}
.x143{left:397.826667pt;}
.x49{left:400.021333pt;}
.x65{left:401.653333pt;}
.x144{left:403.596000pt;}
.x79{left:404.620000pt;}
.x52{left:406.405333pt;}
.xa{left:409.898667pt;}
.x6c{left:411.730667pt;}
.xae{left:413.768000pt;}
.x132{left:415.800000pt;}
.xe2{left:417.186667pt;}
.x8b{left:418.438667pt;}
.xa4{left:420.993333pt;}
.x7a{left:421.932000pt;}
.xb{left:424.856000pt;}
.x66{left:427.828000pt;}
.x9c{left:429.914667pt;}
.xd4{left:432.150667pt;}
.x134{left:433.540000pt;}
.x53{left:434.530667pt;}
.x129{left:435.420000pt;}
.x7b{left:437.060000pt;}
.xd5{left:438.933333pt;}
.x148{left:442.848000pt;}
.xd6{left:444.702667pt;}
.x7c{left:445.805333pt;}
.x135{left:448.502667pt;}
.xd0{left:449.798667pt;}
.xb9{left:451.098667pt;}
.xaf{left:454.313333pt;}
.x124{left:457.445333pt;}
.x4a{left:458.376000pt;}
.xd7{left:463.745333pt;}
.x4b{left:465.202667pt;}
.xe3{left:467.397333pt;}
.xdb{left:468.500000pt;}
.x6d{left:469.852000pt;}
.x67{left:470.930667pt;}
.x125{left:472.096000pt;}
.x22{left:473.508000pt;}
.xf0{left:474.630667pt;}
.x136{left:476.293333pt;}
.xa5{left:477.813333pt;}
.x96{left:478.734667pt;}
.xf1{left:480.174667pt;}
.x149{left:481.156000pt;}
.x87{left:482.496000pt;}
.x3a{left:484.085333pt;}
.x23{left:486.278667pt;}
.x126{left:487.297333pt;}
.xb0{left:488.814667pt;}
.xa6{left:490.484000pt;}
.x9d{left:492.273333pt;}
.xf2{left:493.446667pt;}
.x68{left:494.352000pt;}
.x111{left:495.460000pt;}
.x8c{left:496.873333pt;}
.xe4{left:498.364000pt;}
.x12a{left:500.004000pt;}
.x54{left:501.002667pt;}
.xc{left:502.366667pt;}
.x69{left:504.117333pt;}
.xa7{left:505.424000pt;}
.x13{left:507.116000pt;}
.x13e{left:509.081333pt;}
.xc0{left:510.306667pt;}
.x14a{left:512.270667pt;}
.x55{left:513.773333pt;}
.xd{left:514.834667pt;}
.xec{left:518.109333pt;}
.x14b{left:519.790667pt;}
.x13c{left:523.645333pt;}
.x9e{left:524.962667pt;}
.x14{left:526.998667pt;}
.xf3{left:527.954667pt;}
.x3b{left:529.873333pt;}
.x103{left:530.965333pt;}
.xa8{left:532.517333pt;}
.xed{left:533.850667pt;}
.xc1{left:535.412000pt;}
.x11a{left:536.958667pt;}
.x97{left:537.918667pt;}
.xe{left:539.465333pt;}
.x15{left:540.854667pt;}
.x14c{left:543.346667pt;}
.x104{left:544.764000pt;}
.x6e{left:548.010667pt;}
.x24{left:550.020000pt;}
.xe5{left:551.689333pt;}
.x56{left:553.078667pt;}
.x7d{left:554.349333pt;}
.xf{left:555.769333pt;}
.x98{left:556.865333pt;}
.x57{left:558.792000pt;}
.x105{left:560.106667pt;}
.x16{left:562.625333pt;}
.x131{left:565.042667pt;}
.x58{left:567.522667pt;}
.x25{left:568.561333pt;}
.x99{left:569.537333pt;}
.x32{left:571.229333pt;}
.x17{left:574.244000pt;}
.x127{left:575.520000pt;}
.x59{left:576.444000pt;}
.x33{left:578.056000pt;}
.x88{left:581.514667pt;}
.xf7{left:582.938667pt;}
.x3c{left:583.854667pt;}
.x6f{left:585.628000pt;}
.xc2{left:588.404000pt;}
.x18{left:589.649333pt;}
.x5a{left:591.036000pt;}
.x8d{left:593.568000pt;}
.xdf{left:595.480000pt;}
.x70{left:596.457333pt;}
.x26{left:598.962667pt;}
.x8e{left:600.393333pt;}
.xf9{left:601.602667pt;}
.xc3{left:603.053333pt;}
.x89{left:605.152000pt;}
.x7e{left:606.181333pt;}
.xee{left:607.761333pt;}
.x3d{left:608.846667pt;}
.x112{left:611.233333pt;}
.x44{left:612.776000pt;}
.xd8{left:613.988000pt;}
.x7f{left:614.928000pt;}
.xef{left:616.358667pt;}
.x19{left:618.062667pt;}
.x27{left:619.005333pt;}
.xd9{left:620.954667pt;}
.x3e{left:624.200000pt;}
.x28{left:626.424000pt;}
.x8a{left:627.406667pt;}
.xa9{left:628.969333pt;}
.xda{left:631.504000pt;}
.x34{left:632.628000pt;}
.x121{left:634.084000pt;}
.xaa{left:636.097333pt;}
.x11b{left:637.121333pt;}
.x71{left:639.436000pt;}
.x9f{left:641.270667pt;}
.xb1{left:642.314667pt;}
.x3f{left:643.336000pt;}
.xc4{left:644.225333pt;}
.x1a{left:647.212000pt;}
.xdc{left:649.749333pt;}
.xc5{left:651.785333pt;}
.x1b{left:653.748000pt;}
.x5b{left:655.406667pt;}
.xff{left:657.314667pt;}
.x1c{left:660.282667pt;}
.x29{left:662.005333pt;}
.x13f{left:663.129333pt;}
.x80{left:664.018667pt;}
.x146{left:665.764000pt;}
.x106{left:667.106667pt;}
.xc6{left:668.272000pt;}
.x81{left:669.838667pt;}
.x145{left:671.589333pt;}
.x8f{left:673.154667pt;}
.xb2{left:675.397333pt;}
.x35{left:676.610667pt;}
.x5c{left:679.245333pt;}
.xa0{left:680.408000pt;}
.xb3{left:682.625333pt;}
.x36{left:683.738667pt;}
.x5d{left:684.958667pt;}
.xc7{left:687.084000pt;}
.x6a{left:688.329333pt;}
.x40{left:690.016000pt;}
.x5e{left:693.689333pt;}
.x6b{left:695.601333pt;}
.x82{left:696.562667pt;}
}




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