
    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_dd8fe260fc2b64a451e6a3e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;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_1fbe1a0b6eba1a080729b662.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.799000;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_60597dfecfca161485e9e9d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_11663c7467adc8b11ffaaef8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1cd1b80b7af08b407f664a07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69ead2fbf539f9a01b7ebb7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3ac56b1bf5ab5bf82372a797.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.514000;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_e8fecd27c12aeded03d95775.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a67a93949236276788b555f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.703000;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_38db7d9956dac896ed9531e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689000;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_ac775a88a490113476e5baa3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf{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);}
.ma{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);}
.m1e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m29{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m25{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);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m1a{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);}
.m26{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);}
.m11{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);}
.me{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);}
.m16{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);}
.m17{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);}
.m13{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);}
.m24{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);}
.m18{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);}
.m20{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);}
.m21{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m12{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);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:43.260000px;}
.v3{vertical-align:50.268000px;}
.ls8{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000496px;}
.ls14{letter-spacing:0.000608px;}
.ls49{letter-spacing:0.000676px;}
.ls37{letter-spacing:0.000800px;}
.ls43{letter-spacing:0.001036px;}
.ls31{letter-spacing:0.001133px;}
.ls2a{letter-spacing:0.001155px;}
.ls5{letter-spacing:0.001933px;}
.ls4{letter-spacing:0.001952px;}
.ls48{letter-spacing:0.002841px;}
.ls44{letter-spacing:0.002973px;}
.ls24{letter-spacing:0.003262px;}
.ls25{letter-spacing:0.003263px;}
.ls12{letter-spacing:0.003546px;}
.ls42{letter-spacing:0.004800px;}
.lsa{letter-spacing:0.298878px;}
.ls19{letter-spacing:0.675878px;}
.ls9{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.998354px;}
.ls2{letter-spacing:9.837300px;}
.ls7{letter-spacing:11.954850px;}
.ls34{letter-spacing:12.117747px;}
.ls1b{letter-spacing:13.210408px;}
.ls3a{letter-spacing:13.276046px;}
.ls15{letter-spacing:13.329959px;}
.ls3d{letter-spacing:13.344430px;}
.ls2f{letter-spacing:13.355983px;}
.ls29{letter-spacing:13.400998px;}
.ls41{letter-spacing:13.442184px;}
.ls1e{letter-spacing:13.444800px;}
.ls26{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.450090px;}
.ls28{letter-spacing:13.454400px;}
.ls18{letter-spacing:13.477506px;}
.ls17{letter-spacing:13.489751px;}
.ls2c{letter-spacing:13.502207px;}
.ls3b{letter-spacing:13.517167px;}
.ls3f{letter-spacing:13.556473px;}
.ls46{letter-spacing:13.614230px;}
.ls3c{letter-spacing:13.626234px;}
.ls2e{letter-spacing:13.687735px;}
.ls2b{letter-spacing:13.820988px;}
.ls35{letter-spacing:14.120988px;}
.lsf{letter-spacing:14.286368px;}
.ls10{letter-spacing:14.585246px;}
.ls13{letter-spacing:14.740936px;}
.ls1d{letter-spacing:14.764573px;}
.ls16{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.884964px;}
.lsb{letter-spacing:14.890964px;}
.ls20{letter-spacing:14.918170px;}
.lse{letter-spacing:14.943900px;}
.lsd{letter-spacing:14.944964px;}
.ls1c{letter-spacing:15.003676px;}
.ls33{letter-spacing:15.109224px;}
.ls22{letter-spacing:15.183002px;}
.ls23{letter-spacing:15.257320px;}
.ls2d{letter-spacing:15.309224px;}
.ls45{letter-spacing:15.479812px;}
.ls1f{letter-spacing:16.617617px;}
.ls32{letter-spacing:16.676400px;}
.ls40{letter-spacing:16.826871px;}
.ls3e{letter-spacing:16.897459px;}
.ls27{letter-spacing:17.026871px;}
.ls11{letter-spacing:17.633802px;}
.ls39{letter-spacing:18.650400px;}
.ls21{letter-spacing:19.845499px;}
.ls30{letter-spacing:20.173929px;}
.ls36{letter-spacing:20.344518px;}
.ls38{letter-spacing:21.491576px;}
.ls3{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws65{word-spacing:-29.887800px;}
.ws4d{word-spacing:-15.242778px;}
.ws44{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws79{word-spacing:-13.449600px;}
.ws28{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.wse3{word-spacing:-3.287658px;}
.ws2f{word-spacing:-3.168107px;}
.ws87{word-spacing:-3.108331px;}
.ws35{word-spacing:-2.869229px;}
.ws42{word-spacing:-2.809453px;}
.ws2e{word-spacing:-2.510575px;}
.wsf0{word-spacing:-2.151936px;}
.wsc4{word-spacing:-2.151922px;}
.ws8c{word-spacing:-2.032370px;}
.ws5{word-spacing:-1.908367px;}
.ws8a{word-spacing:-1.853044px;}
.wsb1{word-spacing:-1.793268px;}
.wsb2{word-spacing:-1.733492px;}
.ws10b{word-spacing:-1.721549px;}
.ws8e{word-spacing:-1.673717px;}
.ws13a{word-spacing:-1.667750px;}
.ws92{word-spacing:-1.613941px;}
.wsd4{word-spacing:-1.560154px;}
.wsa5{word-spacing:-1.494390px;}
.wsa4{word-spacing:-1.434614px;}
.ws10c{word-spacing:-1.344960px;}
.wse1{word-spacing:-1.331158px;}
.ws4{word-spacing:-1.322630px;}
.ws33{word-spacing:-1.315063px;}
.ws41{word-spacing:-1.255288px;}
.wsd5{word-spacing:-1.206234px;}
.ws9e{word-spacing:-1.195512px;}
.ws5d{word-spacing:-1.075961px;}
.ws80{word-spacing:-1.022170px;}
.ws98{word-spacing:-1.016185px;}
.ws7f{word-spacing:-1.009054px;}
.ws7e{word-spacing:-0.968371px;}
.wsa6{word-spacing:-0.948130px;}
.wsa7{word-spacing:-0.896634px;}
.wsef{word-spacing:-0.806976px;}
.ws7{word-spacing:-0.782346px;}
.wsea{word-spacing:-0.753178px;}
.wseb{word-spacing:-0.729686px;}
.ws5f{word-spacing:-0.717307px;}
.ws11a{word-spacing:-0.699379px;}
.ws89{word-spacing:-0.657532px;}
.ws9{word-spacing:-0.627642px;}
.ws3f{word-spacing:-0.597756px;}
.ws5c{word-spacing:-0.537980px;}
.wsda{word-spacing:-0.439967px;}
.ws11d{word-spacing:-0.430387px;}
.wsdb{word-spacing:-0.421767px;}
.wsbb{word-spacing:-0.421599px;}
.ws20{word-spacing:-0.418429px;}
.wsdc{word-spacing:-0.417460px;}
.ws94{word-spacing:-0.393771px;}
.wse7{word-spacing:-0.376589px;}
.ws31{word-spacing:-0.358654px;}
.ws50{word-spacing:-0.337162px;}
.ws48{word-spacing:-0.298878px;}
.ws19{word-spacing:-0.268992px;}
.ws3c{word-spacing:-0.239102px;}
.ws99{word-spacing:-0.217331px;}
.ws1c{word-spacing:-0.215194px;}
.ws1d{word-spacing:-0.195143px;}
.ws24{word-spacing:-0.179327px;}
.wsd3{word-spacing:-0.161395px;}
.wsdd{word-spacing:-0.132121px;}
.ws4e{word-spacing:-0.119551px;}
.ws18{word-spacing:-0.107597px;}
.ws90{word-spacing:-0.083150px;}
.ws61{word-spacing:-0.065592px;}
.ws37{word-spacing:-0.059776px;}
.ws7a{word-spacing:-0.053798px;}
.ws14{word-spacing:-0.047821px;}
.ws9c{word-spacing:-0.044985px;}
.ws12d{word-spacing:-0.044174px;}
.ws9d{word-spacing:-0.039782px;}
.ws8d{word-spacing:-0.009004px;}
.ws134{word-spacing:-0.008218px;}
.ws121{word-spacing:-0.007459px;}
.ws112{word-spacing:-0.006749px;}
.ws13b{word-spacing:-0.006010px;}
.ws12f{word-spacing:-0.005770px;}
.wsfc{word-spacing:-0.005510px;}
.ws101{word-spacing:-0.004867px;}
.ws130{word-spacing:-0.004339px;}
.ws13c{word-spacing:-0.004291px;}
.ws135{word-spacing:-0.004272px;}
.ws104{word-spacing:-0.003888px;}
.ws27{word-spacing:-0.002517px;}
.ws102{word-spacing:-0.002429px;}
.ws100{word-spacing:-0.002266px;}
.wsfd{word-spacing:-0.002198px;}
.ws82{word-spacing:-0.001805px;}
.ws119{word-spacing:-0.001459px;}
.wsc2{word-spacing:-0.000917px;}
.ws10f{word-spacing:-0.000202px;}
.ws0{word-spacing:0.000000px;}
.wsaa{word-spacing:0.000845px;}
.ws136{word-spacing:0.001843px;}
.ws85{word-spacing:0.004922px;}
.ws86{word-spacing:0.004989px;}
.wsa9{word-spacing:0.053798px;}
.ws84{word-spacing:0.059573px;}
.ws25{word-spacing:0.059776px;}
.wsb6{word-spacing:0.107597px;}
.ws21{word-spacing:0.119551px;}
.ws17{word-spacing:0.161395px;}
.wsd6{word-spacing:0.163603px;}
.ws26{word-spacing:0.179327px;}
.wse9{word-spacing:0.206489px;}
.wsa{word-spacing:0.209214px;}
.ws49{word-spacing:0.211357px;}
.wse8{word-spacing:0.215194px;}
.ws23{word-spacing:0.239102px;}
.wsa3{word-spacing:0.256716px;}
.ws1b{word-spacing:0.268992px;}
.wsc{word-spacing:0.292900px;}
.ws32{word-spacing:0.298878px;}
.wsa8{word-spacing:0.322790px;}
.ws36{word-spacing:0.358654px;}
.wsfb{word-spacing:0.376589px;}
.wsf1{word-spacing:0.430387px;}
.ws5a{word-spacing:0.478205px;}
.ws10d{word-spacing:0.484186px;}
.ws51{word-spacing:0.537980px;}
.ws3{word-spacing:0.556186px;}
.wsc5{word-spacing:0.597756px;}
.wsb7{word-spacing:0.645581px;}
.ws5b{word-spacing:0.657532px;}
.ws10e{word-spacing:0.699379px;}
.wsc1{word-spacing:0.717307px;}
.ws3a{word-spacing:0.777083px;}
.ws3e{word-spacing:0.836858px;}
.ws9f{word-spacing:0.867709px;}
.wsa0{word-spacing:0.885421px;}
.ws57{word-spacing:0.896634px;}
.ws8f{word-spacing:0.912493px;}
.ws12b{word-spacing:0.914573px;}
.wsbf{word-spacing:0.956410px;}
.wsbd{word-spacing:1.016185px;}
.ws12c{word-spacing:1.129766px;}
.ws59{word-spacing:1.135736px;}
.ws34{word-spacing:1.195512px;}
.ws29{word-spacing:1.255288px;}
.ws10a{word-spacing:1.291162px;}
.ws2c{word-spacing:1.315063px;}
.ws81{word-spacing:1.344960px;}
.wsfe{word-spacing:1.452557px;}
.ws69{word-spacing:1.494390px;}
.ws137{word-spacing:1.560154px;}
.ws5e{word-spacing:1.613941px;}
.wsbe{word-spacing:1.673717px;}
.ws129{word-spacing:1.721549px;}
.wsb8{word-spacing:1.775347px;}
.ws4f{word-spacing:1.793268px;}
.wsb9{word-spacing:1.829146px;}
.ws58{word-spacing:1.853044px;}
.ws6a{word-spacing:1.912819px;}
.ws139{word-spacing:1.936742px;}
.wsb{word-spacing:2.008454px;}
.ws138{word-spacing:2.044339px;}
.wscc{word-spacing:2.092146px;}
.wsd9{word-spacing:2.151922px;}
.ws46{word-spacing:2.211697px;}
.ws47{word-spacing:2.247787px;}
.ws88{word-spacing:2.271473px;}
.ws53{word-spacing:2.304949px;}
.wsed{word-spacing:2.313331px;}
.ws54{word-spacing:2.314833px;}
.ws52{word-spacing:2.331248px;}
.ws2a{word-spacing:2.450800px;}
.ws77{word-spacing:2.474726px;}
.wse6{word-spacing:2.510575px;}
.ws78{word-spacing:2.528525px;}
.ws70{word-spacing:2.570351px;}
.ws2b{word-spacing:2.630126px;}
.ws124{word-spacing:2.636122px;}
.ws9a{word-spacing:2.670872px;}
.ws9b{word-spacing:2.689085px;}
.ws91{word-spacing:2.689902px;}
.ws74{word-spacing:2.689920px;}
.ws75{word-spacing:2.740698px;}
.ws76{word-spacing:2.743718px;}
.ws8b{word-spacing:2.749678px;}
.wsf2{word-spacing:2.797517px;}
.ws1a{word-spacing:2.851315px;}
.ws64{word-spacing:2.869229px;}
.ws15{word-spacing:2.869236px;}
.wsc3{word-spacing:2.929004px;}
.wsde{word-spacing:2.988780px;}
.wsdf{word-spacing:3.010659px;}
.wsf8{word-spacing:3.012710px;}
.wse0{word-spacing:3.032480px;}
.ws118{word-spacing:3.066509px;}
.ws11e{word-spacing:3.120307px;}
.ws62{word-spacing:3.168107px;}
.ws127{word-spacing:3.174106px;}
.wsf7{word-spacing:3.220416px;}
.ws11b{word-spacing:3.221040px;}
.ws108{word-spacing:3.222346px;}
.ws114{word-spacing:3.222586px;}
.wsb0{word-spacing:3.222701px;}
.wsf9{word-spacing:3.223075px;}
.ws131{word-spacing:3.223978px;}
.ws12a{word-spacing:3.224918px;}
.ws128{word-spacing:3.225379px;}
.ws11c{word-spacing:3.225475px;}
.wsf5{word-spacing:3.227117px;}
.ws103{word-spacing:3.227318px;}
.wsf6{word-spacing:3.227453px;}
.ws43{word-spacing:3.227882px;}
.wsad{word-spacing:3.227904px;}
.ws106{word-spacing:3.227933px;}
.ws109{word-spacing:3.228422px;}
.wsaf{word-spacing:3.228701px;}
.ws120{word-spacing:3.229354px;}
.ws12e{word-spacing:3.230333px;}
.ws123{word-spacing:3.335501px;}
.wscd{word-spacing:3.347434px;}
.ws122{word-spacing:3.389299px;}
.ws3b{word-spacing:3.407209px;}
.ws126{word-spacing:3.443098px;}
.ws11f{word-spacing:3.496896px;}
.ws68{word-spacing:3.526760px;}
.ws107{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws60{word-spacing:3.646312px;}
.ws56{word-spacing:3.765863px;}
.wsec{word-spacing:3.765888px;}
.ws132{word-spacing:3.873485px;}
.ws66{word-spacing:3.885414px;}
.ws133{word-spacing:3.895899px;}
.wsf4{word-spacing:3.927283px;}
.ws83{word-spacing:3.945190px;}
.ws6f{word-spacing:4.064741px;}
.ws115{word-spacing:4.088678px;}
.ws67{word-spacing:4.124516px;}
.wsd0{word-spacing:4.184292px;}
.ws72{word-spacing:4.232139px;}
.wsbc{word-spacing:4.244068px;}
.ws73{word-spacing:4.250074px;}
.ws38{word-spacing:4.303843px;}
.wsb4{word-spacing:4.357670px;}
.wsb5{word-spacing:4.385080px;}
.wsfa{word-spacing:4.411469px;}
.ws93{word-spacing:4.483170px;}
.ws55{word-spacing:4.542946px;}
.ws71{word-spacing:4.572864px;}
.ws6c{word-spacing:4.602721px;}
.wsee{word-spacing:4.626662px;}
.wsc0{word-spacing:4.722272px;}
.wsb3{word-spacing:4.734259px;}
.wsc8{word-spacing:4.763521px;}
.wsc7{word-spacing:4.782048px;}
.ws1e{word-spacing:4.788058px;}
.wscb{word-spacing:4.841824px;}
.ws6d{word-spacing:4.939789px;}
.ws7d{word-spacing:4.949453px;}
.ws7c{word-spacing:4.949786px;}
.ws6e{word-spacing:4.961375px;}
.ws105{word-spacing:5.003251px;}
.wsc9{word-spacing:5.021150px;}
.wsa2{word-spacing:5.080926px;}
.wsa1{word-spacing:5.082609px;}
.ws6b{word-spacing:5.140702px;}
.ws117{word-spacing:5.218445px;}
.ws7b{word-spacing:5.326042px;}
.ws16{word-spacing:5.379840px;}
.wsc6{word-spacing:5.439580px;}
.ws110{word-spacing:5.487437px;}
.wse4{word-spacing:5.738458px;}
.ws45{word-spacing:5.858009px;}
.wse5{word-spacing:5.977560px;}
.ws12{word-spacing:6.067206px;}
.ws13{word-spacing:6.150892px;}
.wsba{word-spacing:6.216662px;}
.ws40{word-spacing:6.276438px;}
.ws3d{word-spacing:6.395989px;}
.ws113{word-spacing:6.402010px;}
.wsce{word-spacing:6.515540px;}
.wscf{word-spacing:6.575316px;}
.wsd2{word-spacing:6.724800px;}
.wsd1{word-spacing:7.155187px;}
.wsd8{word-spacing:7.352399px;}
.ws30{word-spacing:7.711052px;}
.ws95{word-spacing:7.830604px;}
.ws97{word-spacing:7.861892px;}
.ws96{word-spacing:7.883082px;}
.ws2d{word-spacing:7.890379px;}
.wsca{word-spacing:8.009930px;}
.wsff{word-spacing:8.015962px;}
.ws22{word-spacing:8.189257px;}
.wse2{word-spacing:8.249033px;}
.wsd7{word-spacing:8.368584px;}
.ws10{word-spacing:8.661460px;}
.ws4a{word-spacing:9.743423px;}
.ws4b{word-spacing:9.773689px;}
.ws4c{word-spacing:9.803198px;}
.ws125{word-spacing:11.620454px;}
.wsf3{word-spacing:12.104640px;}
.ws63{word-spacing:13.628837px;}
.ws6{word-spacing:15.483541px;}
.ws116{word-spacing:16.031923px;}
.wsd{word-spacing:16.142252px;}
.wse{word-spacing:16.151321px;}
.ws39{word-spacing:17.095822px;}
.wsf{word-spacing:17.699504px;}
.ws111{word-spacing:20.066803px;}
.ws11{word-spacing:27.448877px;}
.ws2{word-spacing:40.042186px;}
.wsac{word-spacing:151.895558px;}
.wsae{word-spacing:210.190349px;}
.wsab{word-spacing:320.208077px;}
._1c{margin-left:-14.943900px;}
._0{margin-left:-11.943245px;}
._36{margin-left:-8.421370px;}
._18{margin-left:-7.198538px;}
._9{margin-left:-6.168857px;}
._c{margin-left:-5.003251px;}
._5{margin-left:-3.849538px;}
._1e{margin-left:-2.450800px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._8{width:2.301354px;}
._6{width:12.218098px;}
._15{width:13.459643px;}
._d{width:15.493939px;}
._b{width:16.901837px;}
._e{width:18.254260px;}
._20{width:19.255310px;}
._a{width:20.281997px;}
._1b{width:21.758318px;}
._13{width:22.953830px;}
._14{width:24.408828px;}
._7{width:25.444022px;}
._12{width:26.607709px;}
._1a{width:27.616327px;}
._1d{width:29.648698px;}
._1f{width:31.262639px;}
._1{width:33.355008px;}
._19{width:35.745809px;}
._17{width:38.256384px;}
._34{width:39.272569px;}
._16{width:42.261349px;}
._f{width:43.576412px;}
._35{width:44.600165px;}
._2{width:54.346555px;}
._38{width:61.868160px;}
._37{width:88.767360px;}
._31{width:141.101626px;}
._32{width:148.147411px;}
._2f{width:149.194944px;}
._2d{width:166.328525px;}
._2b{width:185.939558px;}
._2e{width:192.427738px;}
._24{width:196.740749px;}
._26{width:199.959514px;}
._2c{width:205.877338px;}
._25{width:207.339034px;}
._27{width:210.190349px;}
._30{width:211.489304px;}
._23{width:213.409114px;}
._22{width:216.527520px;}
._29{width:223.639949px;}
._28{width:226.858714px;}
._2a{width:240.298271px;}
._21{width:573.921331px;}
._10{width:981.696886px;}
._33{width:2563.994700px;}
._11{width:2587.904700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc5{color:transparent;}
.fc1{color:rgb(163,137,204);}
.fc0{color:rgb(89,70,125);}
.fs8{font-size:35.865600px;}
.fs1{font-size:41.576040px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.425340px;}
.y5{bottom:9.575340px;}
.yd{bottom:14.151273px;}
.y2{bottom:15.759303px;}
.y4{bottom:22.047018px;}
.y4f{bottom:31.890000px;}
.y3{bottom:34.521342px;}
.y169{bottom:88.993500px;}
.y1f7{bottom:90.063000px;}
.y19f{bottom:91.755000px;}
.y14e{bottom:96.028500px;}
.y115{bottom:100.054500px;}
.ybe{bottom:100.419000px;}
.y27{bottom:102.823500px;}
.y22a{bottom:103.557000px;}
.y11f{bottom:106.246500px;}
.y1be{bottom:106.539000px;}
.y1f6{bottom:107.323500px;}
.y168{bottom:107.823000px;}
.y19e{bottom:110.584500px;}
.y14d{bottom:114.858000px;}
.y114{bottom:118.884000px;}
.ybd{bottom:119.248500px;}
.y26{bottom:120.711000px;}
.y229{bottom:120.817500px;}
.y1bd{bottom:124.113000px;}
.y1f5{bottom:124.584000px;}
.y11e{bottom:125.076000px;}
.yf2{bottom:125.524500px;}
.y167{bottom:126.652500px;}
.y4e{bottom:127.245000px;}
.yf9{bottom:128.160000px;}
.y19d{bottom:129.414000px;}
.y14c{bottom:133.687500px;}
.y113{bottom:137.713500px;}
.ybc{bottom:138.078000px;}
.y25{bottom:138.600000px;}
.y1f4{bottom:141.843000px;}
.y11d{bottom:143.905500px;}
.yf1{bottom:144.354000px;}
.y166{bottom:145.482000px;}
.y4d{bottom:146.074500px;}
.y84{bottom:147.025500px;}
.yf8{bottom:147.393000px;}
.y19c{bottom:148.243500px;}
.y1bc{bottom:150.654000px;}
.y14b{bottom:152.517000px;}
.y228{bottom:155.338500px;}
.y24{bottom:156.487500px;}
.y112{bottom:156.543000px;}
.ybb{bottom:156.907500px;}
.y1f3{bottom:159.103500px;}
.y11c{bottom:162.735000px;}
.yf0{bottom:163.183500px;}
.y165{bottom:164.311500px;}
.y4c{bottom:164.904000px;}
.y83{bottom:165.855000px;}
.yf7{bottom:166.626000px;}
.y19b{bottom:167.071500px;}
.y1bb{bottom:168.228000px;}
.y227{bottom:172.599000px;}
.y23{bottom:174.375000px;}
.yba{bottom:175.737000px;}
.y1f2{bottom:176.364000px;}
.y111{bottom:179.856000px;}
.y11b{bottom:181.564500px;}
.yef{bottom:182.013000px;}
.y164{bottom:183.141000px;}
.y4b{bottom:183.733500px;}
.y82{bottom:184.684500px;}
.yf6{bottom:185.859000px;}
.y19a{bottom:185.901000px;}
.y226{bottom:189.858000px;}
.y22{bottom:192.264000px;}
.y1f1{bottom:193.624500px;}
.yb9{bottom:194.566500px;}
.y1ba{bottom:194.769000px;}
.y14a{bottom:197.979000px;}
.y11a{bottom:200.394000px;}
.yee{bottom:200.842500px;}
.y163{bottom:201.970500px;}
.y4a{bottom:202.563000px;}
.y81{bottom:203.514000px;}
.y199{bottom:204.730500px;}
.yf5{bottom:205.092000px;}
.y225{bottom:207.118500px;}
.y21{bottom:210.151500px;}
.y149{bottom:210.804000px;}
.y1f0{bottom:210.885000px;}
.yb8{bottom:213.396000px;}
.y110{bottom:213.480000px;}
.y119{bottom:219.223500px;}
.yed{bottom:219.672000px;}
.y162{bottom:220.800000px;}
.y1b9{bottom:221.308500px;}
.y49{bottom:221.392500px;}
.y80{bottom:222.343500px;}
.y198{bottom:223.560000px;}
.yf4{bottom:224.325000px;}
.y224{bottom:224.379000px;}
.y20{bottom:228.039000px;}
.y1ef{bottom:228.145500px;}
.yb7{bottom:232.225500px;}
.y10f{bottom:232.309500px;}
.y118{bottom:238.053000px;}
.yec{bottom:238.501500px;}
.y161{bottom:239.629500px;}
.y48{bottom:240.222000px;}
.y7f{bottom:241.173000px;}
.y223{bottom:241.639500px;}
.y197{bottom:242.389500px;}
.yf3{bottom:243.558000px;}
.y148{bottom:245.260500px;}
.y1ee{bottom:245.406000px;}
.y1b8{bottom:247.849500px;}
.yb6{bottom:251.055000px;}
.y10e{bottom:251.139000px;}
.y117{bottom:256.882500px;}
.yeb{bottom:257.331000px;}
.y146{bottom:258.085500px;}
.y160{bottom:258.459000px;}
.y222{bottom:258.900000px;}
.y47{bottom:259.051500px;}
.y7e{bottom:260.002500px;}
.y196{bottom:261.219000px;}
.y1ed{bottom:262.666500px;}
.y1b7{bottom:265.423500px;}
.y147{bottom:268.900500px;}
.yb5{bottom:269.884500px;}
.y10d{bottom:269.968500px;}
.y18e{bottom:275.712000px;}
.yea{bottom:276.160500px;}
.y15f{bottom:277.288500px;}
.y46{bottom:277.881000px;}
.y7d{bottom:278.832000px;}
.y1ec{bottom:279.927000px;}
.y195{bottom:280.048500px;}
.y116{bottom:280.195500px;}
.y1b6{bottom:282.997500px;}
.yb4{bottom:288.714000px;}
.y10c{bottom:288.798000px;}
.y145{bottom:292.540500px;}
.y221{bottom:293.421000px;}
.y18d{bottom:294.541500px;}
.ye9{bottom:294.990000px;}
.y15e{bottom:296.118000px;}
.y1eb{bottom:297.186000px;}
.y7c{bottom:297.661500px;}
.y1b5{bottom:300.571500px;}
.y45{bottom:301.194000px;}
.y144{bottom:303.615000px;}
.y1f{bottom:307.299000px;}
.yb3{bottom:307.543500px;}
.y10b{bottom:307.627500px;}
.y220{bottom:310.681500px;}
.y18c{bottom:313.371000px;}
.y194{bottom:313.614000px;}
.ye8{bottom:313.819500px;}
.y1ea{bottom:314.446500px;}
.y15d{bottom:314.947500px;}
.y7b{bottom:316.491000px;}
.y1b4{bottom:318.145500px;}
.y1e{bottom:325.186500px;}
.yb2{bottom:326.371500px;}
.y10a{bottom:326.457000px;}
.y21f{bottom:327.940500px;}
.y1e9{bottom:331.707000px;}
.y18b{bottom:332.200500px;}
.ye7{bottom:332.649000px;}
.y193{bottom:332.847000px;}
.y15c{bottom:333.777000px;}
.y7a{bottom:335.320500px;}
.y1b3{bottom:335.719500px;}
.y143{bottom:339.822000px;}
.y1d{bottom:343.074000px;}
.yb1{bottom:345.201000px;}
.y109{bottom:345.286500px;}
.y1e8{bottom:348.967500px;}
.y142{bottom:350.896500px;}
.y18a{bottom:351.030000px;}
.ye6{bottom:351.478500px;}
.y192{bottom:352.080000px;}
.y15b{bottom:352.606500px;}
.y1b2{bottom:353.293500px;}
.y79{bottom:354.150000px;}
.y1c{bottom:360.963000px;}
.y21e{bottom:362.461500px;}
.yb0{bottom:364.030500px;}
.y108{bottom:364.116000px;}
.y1e7{bottom:366.228000px;}
.y189{bottom:369.859500px;}
.ye5{bottom:370.308000px;}
.y1b1{bottom:370.869000px;}
.y191{bottom:371.313000px;}
.y15a{bottom:371.436000px;}
.y78{bottom:372.979500px;}
.y44{bottom:374.757000px;}
.y21d{bottom:379.722000px;}
.yaf{bottom:382.860000px;}
.y107{bottom:382.945500px;}
.y1e6{bottom:383.488500px;}
.y141{bottom:387.103500px;}
.y1b0{bottom:388.443000px;}
.y188{bottom:388.689000px;}
.ye4{bottom:389.137500px;}
.y159{bottom:390.265500px;}
.y190{bottom:390.546000px;}
.y77{bottom:391.809000px;}
.y43{bottom:394.213500px;}
.y21c{bottom:396.982500px;}
.y140{bottom:398.178000px;}
.y1b{bottom:399.024000px;}
.y1e5{bottom:400.749000px;}
.yae{bottom:401.689500px;}
.y106{bottom:401.775000px;}
.y1af{bottom:406.017000px;}
.y187{bottom:407.518500px;}
.ye3{bottom:407.967000px;}
.y158{bottom:409.095000px;}
.y18f{bottom:409.779000px;}
.y76{bottom:410.638500px;}
.y21b{bottom:414.243000px;}
.y1a{bottom:416.913000px;}
.y1e4{bottom:418.009500px;}
.yad{bottom:420.519000px;}
.y105{bottom:420.604500px;}
.y1ae{bottom:423.591000px;}
.y186{bottom:426.348000px;}
.ye2{bottom:426.796500px;}
.y75{bottom:429.468000px;}
.y21a{bottom:431.503500px;}
.y42{bottom:431.604000px;}
.y13f{bottom:434.385000px;}
.y19{bottom:434.800500px;}
.y1e3{bottom:435.268500px;}
.yac{bottom:439.348500px;}
.y104{bottom:439.434000px;}
.y157{bottom:442.444500px;}
.y185{bottom:445.177500px;}
.y13e{bottom:445.459500px;}
.ye1{bottom:445.626000px;}
.y74{bottom:448.297500px;}
.y219{bottom:448.764000px;}
.y1ad{bottom:450.130500px;}
.y41{bottom:451.060500px;}
.y1e2{bottom:452.529000px;}
.yab{bottom:458.178000px;}
.y103{bottom:458.262000px;}
.y156{bottom:461.677500px;}
.y184{bottom:464.007000px;}
.ye0{bottom:464.454000px;}
.y218{bottom:466.024500px;}
.y73{bottom:467.127000px;}
.y1ac{bottom:467.706000px;}
.y1e1{bottom:469.789500px;}
.y40{bottom:470.517000px;}
.y18{bottom:470.622000px;}
.yaa{bottom:477.007500px;}
.y102{bottom:477.091500px;}
.y155{bottom:480.910500px;}
.y13d{bottom:481.666500px;}
.y183{bottom:482.836500px;}
.ydf{bottom:483.283500px;}
.y1ab{bottom:485.280000px;}
.y72{bottom:485.956500px;}
.y1e0{bottom:487.050000px;}
.y3f{bottom:489.975000px;}
.y13c{bottom:492.741000px;}
.ya9{bottom:495.837000px;}
.y101{bottom:495.921000px;}
.y154{bottom:500.143500px;}
.y217{bottom:500.544000px;}
.y182{bottom:501.666000px;}
.yde{bottom:502.113000px;}
.y1aa{bottom:502.854000px;}
.y1df{bottom:504.310500px;}
.y71{bottom:504.786000px;}
.y17{bottom:506.442000px;}
.y3e{bottom:509.431500px;}
.ya8{bottom:514.666500px;}
.y100{bottom:514.750500px;}
.y216{bottom:517.804500px;}
.y153{bottom:519.376500px;}
.y1a9{bottom:520.428000px;}
.y181{bottom:520.495500px;}
.ydd{bottom:520.942500px;}
.y1de{bottom:521.571000px;}
.y70{bottom:523.615500px;}
.y16{bottom:524.329500px;}
.y3d{bottom:528.888000px;}
.y13b{bottom:528.948000px;}
.ya7{bottom:533.496000px;}
.yff{bottom:533.580000px;}
.y215{bottom:535.065000px;}
.y1a8{bottom:538.002000px;}
.y152{bottom:538.609500px;}
.y1dd{bottom:538.831500px;}
.y180{bottom:539.323500px;}
.ydc{bottom:539.772000px;}
.y15{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y3c{bottom:548.346000px;}
.ya6{bottom:552.325500px;}
.y13a{bottom:552.589500px;}
.y1dc{bottom:556.092000px;}
.y151{bottom:557.841000px;}
.y17f{bottom:558.153000px;}
.ydb{bottom:558.601500px;}
.y14{bottom:560.106000px;}
.y6e{bottom:561.274500px;}
.y1a7{bottom:564.543000px;}
.y137{bottom:566.599500px;}
.yfe{bottom:567.145500px;}
.y3b{bottom:567.802500px;}
.y214{bottom:569.586000px;}
.y1db{bottom:573.352500px;}
.ya5{bottom:575.638500px;}
.y139{bottom:576.229500px;}
.y17e{bottom:576.982500px;}
.y150{bottom:577.074000px;}
.yda{bottom:577.431000px;}
.y13{bottom:577.993500px;}
.y6d{bottom:580.104000px;}
.y1a6{bottom:582.586500px;}
.yfd{bottom:586.378500px;}
.y213{bottom:586.846500px;}
.y3a{bottom:587.260500px;}
.y1da{bottom:590.611500px;}
.y17d{bottom:595.812000px;}
.y12{bottom:595.882500px;}
.yd9{bottom:596.260500px;}
.y14f{bottom:596.307000px;}
.y6c{bottom:598.932000px;}
.y138{bottom:599.871000px;}
.y1a5{bottom:600.631500px;}
.y212{bottom:604.107000px;}
.yfc{bottom:605.611500px;}
.y39{bottom:606.717000px;}
.y1d9{bottom:607.872000px;}
.ya4{bottom:609.262500px;}
.y11{bottom:613.770000px;}
.y17c{bottom:614.641500px;}
.yd8{bottom:615.090000px;}
.y6b{bottom:617.761500px;}
.y1a4{bottom:618.676500px;}
.y211{bottom:621.366000px;}
.y136{bottom:623.511000px;}
.yfb{bottom:624.844500px;}
.y1d8{bottom:625.132500px;}
.y38{bottom:626.173500px;}
.ya3{bottom:628.092000px;}
.y10{bottom:631.657500px;}
.y17b{bottom:633.471000px;}
.yd7{bottom:633.919500px;}
.y6a{bottom:636.591000px;}
.y1a3{bottom:636.721500px;}
.y210{bottom:638.626500px;}
.y1d7{bottom:642.393000px;}
.yfa{bottom:644.077500px;}
.ya2{bottom:646.921500px;}
.y135{bottom:647.152500px;}
.yf{bottom:649.546500px;}
.y17a{bottom:652.300500px;}
.yd6{bottom:652.749000px;}
.y1a2{bottom:654.766500px;}
.y69{bottom:655.420500px;}
.y20f{bottom:655.887000px;}
.y132{bottom:659.451000px;}
.y1d6{bottom:659.653500px;}
.y37{bottom:664.759500px;}
.ya1{bottom:665.751000px;}
.y134{bottom:670.792500px;}
.y179{bottom:671.130000px;}
.yd5{bottom:671.578500px;}
.yc{bottom:671.917464px;}
.y1a1{bottom:672.811500px;}
.y20e{bottom:673.147500px;}
.y68{bottom:674.250000px;}
.y1d5{bottom:676.914000px;}
.ya0{bottom:684.580500px;}
.y36{bottom:685.239000px;}
.y178{bottom:689.959500px;}
.yd4{bottom:690.408000px;}
.y67{bottom:693.079500px;}
.y1d4{bottom:694.174500px;}
.y133{bottom:694.434000px;}
.y35{bottom:697.038000px;}
.y9f{bottom:703.410000px;}
.y20d{bottom:707.668500px;}
.y177{bottom:708.789000px;}
.yd3{bottom:709.237500px;}
.y1d3{bottom:711.435000px;}
.y66{bottom:711.909000px;}
.y34{bottom:717.517500px;}
.y131{bottom:718.074000px;}
.y9e{bottom:722.239500px;}
.y20c{bottom:724.929000px;}
.y176{bottom:727.618500px;}
.yd2{bottom:728.067000px;}
.y1d2{bottom:728.694000px;}
.y65{bottom:730.738500px;}
.y33{bottom:733.657500px;}
.y9c{bottom:741.067500px;}
.y130{bottom:741.715500px;}
.y20b{bottom:742.189500px;}
.y32{bottom:745.456500px;}
.y1d1{bottom:745.954500px;}
.y175{bottom:746.448000px;}
.y9d{bottom:746.493000px;}
.yd1{bottom:746.896500px;}
.y64{bottom:749.568000px;}
.y12d{bottom:754.014000px;}
.y20a{bottom:759.450000px;}
.y9a{bottom:759.897000px;}
.y31{bottom:761.596500px;}
.y1d0{bottom:763.215000px;}
.y174{bottom:765.277500px;}
.y9b{bottom:765.322500px;}
.y12f{bottom:765.355500px;}
.yd0{bottom:765.726000px;}
.y63{bottom:768.397500px;}
.y209{bottom:776.709000px;}
.y98{bottom:778.726500px;}
.y1cf{bottom:780.475500px;}
.y30{bottom:782.076000px;}
.y173{bottom:784.107000px;}
.y99{bottom:784.152000px;}
.ycf{bottom:784.555500px;}
.y62{bottom:787.227000px;}
.y12e{bottom:788.997000px;}
.y2f{bottom:793.876500px;}
.y208{bottom:793.969500px;}
.y97{bottom:797.556000px;}
.y1ce{bottom:797.736000px;}
.y172{bottom:802.936500px;}
.yce{bottom:803.385000px;}
.y61{bottom:806.056500px;}
.y207{bottom:811.230000px;}
.y12c{bottom:812.637000px;}
.y2e{bottom:814.354500px;}
.y1cd{bottom:814.996500px;}
.y96{bottom:816.385500px;}
.y171{bottom:821.766000px;}
.ycd{bottom:822.214500px;}
.y60{bottom:824.886000px;}
.y2d{bottom:826.155000px;}
.y206{bottom:828.490500px;}
.y1cc{bottom:832.257000px;}
.y95{bottom:835.215000px;}
.y12b{bottom:836.277000px;}
.y170{bottom:840.595500px;}
.ycc{bottom:841.044000px;}
.y5f{bottom:843.715500px;}
.y205{bottom:845.751000px;}
.y2c{bottom:846.634500px;}
.y128{bottom:848.577000px;}
.y1cb{bottom:849.517500px;}
.y94{bottom:854.044500px;}
.y2b{bottom:858.433500px;}
.y16f{bottom:859.425000px;}
.ycb{bottom:859.873500px;}
.y12a{bottom:859.918500px;}
.y5e{bottom:862.545000px;}
.y204{bottom:863.011500px;}
.y1ca{bottom:866.778000px;}
.y93{bottom:872.874000px;}
.y16e{bottom:878.254500px;}
.yca{bottom:878.703000px;}
.y2a{bottom:878.913000px;}
.y203{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.y1a0{bottom:882.738000px;}
.y129{bottom:883.558500px;}
.y1c9{bottom:884.037000px;}
.y29{bottom:890.713500px;}
.y91{bottom:891.703500px;}
.y16d{bottom:897.084000px;}
.y92{bottom:897.129000px;}
.yc9{bottom:897.532500px;}
.y5c{bottom:900.204000px;}
.y1c8{bottom:901.297500px;}
.y127{bottom:907.200000px;}
.y8f{bottom:910.533000px;}
.y28{bottom:911.193000px;}
.y202{bottom:914.791500px;}
.y22b{bottom:914.793000px;}
.y16c{bottom:915.913500px;}
.y90{bottom:915.958500px;}
.yc8{bottom:916.362000px;}
.y1c7{bottom:918.558000px;}
.y5b{bottom:919.033500px;}
.y8e{bottom:929.362500px;}
.y126{bottom:930.840000px;}
.y201{bottom:932.052000px;}
.y16b{bottom:934.743000px;}
.yc7{bottom:935.191500px;}
.y1c6{bottom:935.818500px;}
.y5a{bottom:937.863000px;}
.y123{bottom:943.140000px;}
.y8d{bottom:948.192000px;}
.y200{bottom:949.312500px;}
.yb{bottom:951.385500px;}
.y1c5{bottom:953.079000px;}
.yc6{bottom:954.021000px;}
.y125{bottom:954.481500px;}
.y59{bottom:956.692500px;}
.y16a{bottom:958.054500px;}
.y1ff{bottom:966.573000px;}
.y8c{bottom:967.021500px;}
.ya{bottom:970.215000px;}
.y1c4{bottom:970.339500px;}
.yc5{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.y124{bottom:978.121500px;}
.y1fe{bottom:983.833500px;}
.y8b{bottom:985.851000px;}
.y1c3{bottom:987.600000px;}
.yc4{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.y1fd{bottom:1001.094000px;}
.y122{bottom:1001.763000px;}
.y8a{bottom:1004.680500px;}
.y1c2{bottom:1009.342500px;}
.yc3{bottom:1010.508000px;}
.y9{bottom:1012.954500px;}
.y56{bottom:1013.181000px;}
.y1fc{bottom:1018.354500px;}
.y89{bottom:1023.510000px;}
.yc2{bottom:1029.337500px;}
.y55{bottom:1032.010500px;}
.y121{bottom:1033.381500px;}
.y1fb{bottom:1035.615000px;}
.y8{bottom:1041.199500px;}
.y88{bottom:1042.339500px;}
.y1c1{bottom:1042.966500px;}
.yc1{bottom:1048.167000px;}
.y54{bottom:1050.840000px;}
.y120{bottom:1052.614500px;}
.y1fa{bottom:1052.875500px;}
.y87{bottom:1061.169000px;}
.yc0{bottom:1066.996500px;}
.y7{bottom:1069.443000px;}
.y1c0{bottom:1069.507500px;}
.y53{bottom:1069.669500px;}
.y1f9{bottom:1070.134500px;}
.y86{bottom:1084.482000px;}
.ybf{bottom:1085.826000px;}
.y1bf{bottom:1087.081500px;}
.y1f8{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y6{bottom:1097.688000px;}
.y85{bottom:1104.655500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.h16{height:26.461718px;}
.hc{height:30.461558px;}
.hd{height:30.712615px;}
.h4{height:32.637191px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h15{height:35.100320px;}
.h10{height:38.734848px;}
.h11{height:39.165235px;}
.h12{height:39.488026px;}
.h17{height:41.723369px;}
.h18{height:41.842920px;}
.h13{height:43.038432px;}
.h14{height:43.516637px;}
.h5{height:43.875290px;}
.h2{height:50.930649px;}
.h7{height:54.405312px;}
.h8{height:54.411312px;}
.h6{height:77.469696px;}
.h1a{height:82.425235px;}
.h19{height:89.433235px;}
.h3{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:148.125981px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.362275px;}
.x5{left:29.274117px;}
.x4{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:59.946413px;}
.xef{left:86.272500px;}
.xbc{left:248.640000px;}
.x8{left:249.832500px;}
.x6{left:250.897500px;}
.x6d{left:255.480000px;}
.xce{left:259.864500px;}
.xc8{left:261.651000px;}
.x6e{left:264.580500px;}
.xcd{left:266.365500px;}
.x9d{left:268.341000px;}
.x59{left:269.457000px;}
.x7{left:270.754500px;}
.xcc{left:272.673000px;}
.xd7{left:274.239000px;}
.xcb{left:277.575000px;}
.x5a{left:278.688000px;}
.xb{left:282.786000px;}
.x87{left:284.076000px;}
.x61{left:285.453000px;}
.x66{left:288.642000px;}
.x62{left:292.258500px;}
.x48{left:293.995500px;}
.x6b{left:295.987500px;}
.xca{left:299.518500px;}
.xc7{left:302.005500px;}
.x67{left:303.586500px;}
.xde{left:304.983000px;}
.xd8{left:307.938000px;}
.x49{left:308.938500px;}
.x6c{left:310.930500px;}
.x9{left:312.331500px;}
.xb9{left:313.447500px;}
.xe2{left:315.268500px;}
.xd9{left:316.456500px;}
.x2b{left:318.937500px;}
.xa{left:323.782500px;}
.x97{left:326.109000px;}
.xda{left:331.399500px;}
.x2c{left:333.882000px;}
.xdb{left:335.211000px;}
.x2d{left:337.542000px;}
.x8e{left:339.159000px;}
.x98{left:341.052000px;}
.x31{left:346.018500px;}
.x40{left:347.289000px;}
.x99{left:348.673500px;}
.xdc{left:350.154000px;}
.x2e{left:352.486500px;}
.x41{left:354.760500px;}
.x42{left:358.422000px;}
.xb8{left:359.698500px;}
.x32{left:360.963000px;}
.xb4{left:362.473500px;}
.x9a{left:363.618000px;}
.x33{left:368.494500px;}
.x8b{left:369.814500px;}
.xdf{left:372.238500px;}
.x43{left:373.365000px;}
.x39{left:375.004500px;}
.x44{left:377.026500px;}
.x3a{left:378.816000px;}
.xe0{left:381.877500px;}
.x34{left:383.439000px;}
.xd3{left:385.873500px;}
.xa2{left:388.756500px;}
.x45{left:391.971000px;}
.x3b{left:393.759000px;}
.xed{left:394.842000px;}
.x46{left:399.294000px;}
.xd4{left:400.818000px;}
.x71{left:402.481500px;}
.xe1{left:404.293500px;}
.xa3{left:407.455500px;}
.x7b{left:408.538500px;}
.x47{left:414.237000px;}
.x4a{left:415.387500px;}
.x72{left:417.424500px;}
.x27{left:418.509000px;}
.xa4{left:421.524000px;}
.xee{left:429.316500px;}
.x4b{left:430.332000px;}
.x28{left:433.453500px;}
.xe8{left:435.490500px;}
.x29{left:437.263500px;}
.xa5{left:440.196000px;}
.x50{left:442.402500px;}
.xa0{left:445.539000px;}
.x51{left:446.616000px;}
.x2a{left:452.208000px;}
.x4e{left:455.326500px;}
.xa1{left:461.988000px;}
.xbd{left:467.035500px;}
.x4f{left:470.269500px;}
.x5d{left:472.257000px;}
.xe5{left:476.721000px;}
.x5e{left:479.062500px;}
.x88{left:480.552000px;}
.xbe{left:481.980000px;}
.xb7{left:485.605500px;}
.x84{left:487.822500px;}
.xbf{left:489.534000px;}
.xe6{left:491.665500px;}
.x89{left:493.269000px;}
.xb3{left:495.726000px;}
.xc9{left:497.031000px;}
.x55{left:500.467500px;}
.x1a{left:503.403000px;}
.x56{left:504.681000px;}
.xc6{left:507.513000px;}
.x1e{left:509.061000px;}
.x1b{left:510.874500px;}
.xc0{left:511.950000px;}
.x1c{left:514.599000px;}
.x1f{left:516.532500px;}
.xba{left:518.467500px;}
.x1d{left:522.070500px;}
.xdd{left:523.293000px;}
.xe7{left:529.174500px;}
.x24{left:530.205000px;}
.xbb{left:531.916500px;}
.xb5{left:533.391000px;}
.xb0{left:536.461500px;}
.xa6{left:541.512000px;}
.x25{left:545.149500px;}
.xb6{left:548.334000px;}
.xb1{left:551.404500px;}
.x26{left:552.771000px;}
.xa7{left:556.455000px;}
.xa8{left:560.239500px;}
.x8f{left:562.509000px;}
.xc{left:566.985000px;}
.xd{left:574.456500px;}
.x63{left:577.617000px;}
.x90{left:579.846000px;}
.xe{left:582.078000px;}
.x64{left:584.422500px;}
.x9e{left:586.683000px;}
.xf{left:589.549500px;}
.xa9{left:593.913000px;}
.x9b{left:600.003000px;}
.x3c{left:601.924500px;}
.x9f{left:604.126500px;}
.x80{left:605.400000px;}
.x16{left:614.925000px;}
.x3d{left:616.867500px;}
.x68{left:618.717000px;}
.x81{left:620.343000px;}
.x17{left:622.396500px;}
.x3e{left:624.190500px;}
.x18{left:626.088000px;}
.x95{left:630.463500px;}
.x19{left:633.561000px;}
.x69{left:637.420500px;}
.x3f{left:639.135000px;}
.xc2{left:640.921500px;}
.x96{left:646.914000px;}
.x7d{left:648.900000px;}
.xe9{left:650.190000px;}
.xf1{left:651.202500px;}
.x6a{left:652.363500px;}
.xd5{left:658.329000px;}
.x79{left:661.123500px;}
.x5f{left:663.255000px;}
.xea{left:665.133000px;}
.xc3{left:667.149000px;}
.xf2{left:668.622000px;}
.x60{left:670.060500px;}
.x7e{left:671.361000px;}
.xd6{left:673.273500px;}
.x82{left:675.006000px;}
.x7a{left:676.068000px;}
.xac{left:677.800500px;}
.x6f{left:684.430500px;}
.x7f{left:686.305500px;}
.x70{left:688.204500px;}
.x83{left:689.949000px;}
.x5b{left:692.068500px;}
.xad{left:696.465000px;}
.x5c{left:698.874000px;}
.xaf{left:701.190000px;}
.x52{left:702.199500px;}
.x20{left:704.547000px;}
.x53{left:706.414500px;}
.x85{left:707.814000px;}
.xc4{left:709.410000px;}
.xae{left:711.409500px;}
.xe3{left:716.268000px;}
.x21{left:719.491500px;}
.xf4{left:721.423500px;}
.x22{left:723.301500px;}
.x86{left:725.278500px;}
.xeb{left:730.276500px;}
.xc5{left:731.826000px;}
.x73{left:733.603500px;}
.xe4{left:734.902500px;}
.xf6{left:736.701000px;}
.x23{left:738.246000px;}
.xcf{left:741.069000px;}
.x91{left:742.384500px;}
.xd0{left:744.657000px;}
.x8c{left:746.539500px;}
.x74{left:748.548000px;}
.xec{left:752.692500px;}
.x57{left:756.130500px;}
.x92{left:757.329000px;}
.x8d{left:760.153500px;}
.x8a{left:761.328000px;}
.x9c{left:763.783500px;}
.x58{left:765.361500px;}
.xaa{left:769.441500px;}
.x4c{left:773.649000px;}
.xb2{left:776.271000px;}
.x35{left:778.050000px;}
.x93{left:779.895000px;}
.xd1{left:781.422000px;}
.xab{left:784.386000px;}
.x7c{left:785.916000px;}
.x4d{left:788.592000px;}
.xf0{left:790.075500px;}
.x36{left:792.994500px;}
.xf5{left:794.788500px;}
.x37{left:796.806000px;}
.x2f{left:798.694500px;}
.x75{left:800.139000px;}
.x10{left:802.605000px;}
.xd2{left:803.613000px;}
.xc1{left:805.804500px;}
.x11{left:810.076500px;}
.x38{left:811.749000px;}
.x12{left:813.886500px;}
.x76{left:815.082000px;}
.xf3{left:816.163500px;}
.x30{left:817.299000px;}
.x77{left:818.893500px;}
.x13{left:821.359500px;}
.x14{left:825.169500px;}
.x94{left:826.195500px;}
.x65{left:827.212500px;}
.x15{left:832.642500px;}
.x78{left:833.838000px;}
.x54{left:836.323500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:38.453333pt;}
.v3{vertical-align:44.682667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000441pt;}
.ls14{letter-spacing:0.000540pt;}
.ls49{letter-spacing:0.000600pt;}
.ls37{letter-spacing:0.000711pt;}
.ls43{letter-spacing:0.000921pt;}
.ls31{letter-spacing:0.001007pt;}
.ls2a{letter-spacing:0.001026pt;}
.ls5{letter-spacing:0.001718pt;}
.ls4{letter-spacing:0.001735pt;}
.ls48{letter-spacing:0.002525pt;}
.ls44{letter-spacing:0.002643pt;}
.ls24{letter-spacing:0.002899pt;}
.ls25{letter-spacing:0.002900pt;}
.ls12{letter-spacing:0.003152pt;}
.ls42{letter-spacing:0.004267pt;}
.lsa{letter-spacing:0.265669pt;}
.ls19{letter-spacing:0.600781pt;}
.ls9{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.665203pt;}
.ls2{letter-spacing:8.744267pt;}
.ls7{letter-spacing:10.626533pt;}
.ls34{letter-spacing:10.771331pt;}
.ls1b{letter-spacing:11.742585pt;}
.ls3a{letter-spacing:11.800930pt;}
.ls15{letter-spacing:11.848852pt;}
.ls3d{letter-spacing:11.861715pt;}
.ls2f{letter-spacing:11.871985pt;}
.ls29{letter-spacing:11.911998pt;}
.ls41{letter-spacing:11.948608pt;}
.ls1e{letter-spacing:11.950933pt;}
.ls26{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.955635pt;}
.ls28{letter-spacing:11.959467pt;}
.ls18{letter-spacing:11.980005pt;}
.ls17{letter-spacing:11.990890pt;}
.ls2c{letter-spacing:12.001962pt;}
.ls3b{letter-spacing:12.015260pt;}
.ls3f{letter-spacing:12.050198pt;}
.ls46{letter-spacing:12.101538pt;}
.ls3c{letter-spacing:12.112208pt;}
.ls2e{letter-spacing:12.166875pt;}
.ls2b{letter-spacing:12.285323pt;}
.ls35{letter-spacing:12.551990pt;}
.lsf{letter-spacing:12.698994pt;}
.ls10{letter-spacing:12.964663pt;}
.ls13{letter-spacing:13.103055pt;}
.ls1d{letter-spacing:13.124065pt;}
.ls16{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.231079pt;}
.lsb{letter-spacing:13.236413pt;}
.ls20{letter-spacing:13.260596pt;}
.lse{letter-spacing:13.283467pt;}
.lsd{letter-spacing:13.284413pt;}
.ls1c{letter-spacing:13.336601pt;}
.ls33{letter-spacing:13.430421pt;}
.ls22{letter-spacing:13.496002pt;}
.ls23{letter-spacing:13.562062pt;}
.ls2d{letter-spacing:13.608199pt;}
.ls45{letter-spacing:13.759833pt;}
.ls1f{letter-spacing:14.771215pt;}
.ls32{letter-spacing:14.823467pt;}
.ls40{letter-spacing:14.957218pt;}
.ls3e{letter-spacing:15.019963pt;}
.ls27{letter-spacing:15.134996pt;}
.ls11{letter-spacing:15.674491pt;}
.ls39{letter-spacing:16.578133pt;}
.ls21{letter-spacing:17.640444pt;}
.ls30{letter-spacing:17.932382pt;}
.ls36{letter-spacing:18.084016pt;}
.ls38{letter-spacing:19.103624pt;}
.ls3{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws65{word-spacing:-26.566933pt;}
.ws4d{word-spacing:-13.549136pt;}
.ws44{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws79{word-spacing:-11.955200pt;}
.ws28{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.wse3{word-spacing:-2.922363pt;}
.ws2f{word-spacing:-2.816095pt;}
.ws87{word-spacing:-2.762961pt;}
.ws35{word-spacing:-2.550426pt;}
.ws42{word-spacing:-2.497292pt;}
.ws2e{word-spacing:-2.231622pt;}
.wsf0{word-spacing:-1.912832pt;}
.wsc4{word-spacing:-1.912819pt;}
.ws8c{word-spacing:-1.806551pt;}
.ws5{word-spacing:-1.696326pt;}
.ws8a{word-spacing:-1.647150pt;}
.wsb1{word-spacing:-1.594016pt;}
.wsb2{word-spacing:-1.540882pt;}
.ws10b{word-spacing:-1.530266pt;}
.ws8e{word-spacing:-1.487748pt;}
.ws13a{word-spacing:-1.482445pt;}
.ws92{word-spacing:-1.434614pt;}
.wsd4{word-spacing:-1.386803pt;}
.wsa5{word-spacing:-1.328347pt;}
.wsa4{word-spacing:-1.275213pt;}
.ws10c{word-spacing:-1.195520pt;}
.wse1{word-spacing:-1.183252pt;}
.ws4{word-spacing:-1.175671pt;}
.ws33{word-spacing:-1.168945pt;}
.ws41{word-spacing:-1.115811pt;}
.wsd5{word-spacing:-1.072208pt;}
.ws9e{word-spacing:-1.062677pt;}
.ws5d{word-spacing:-0.956410pt;}
.ws80{word-spacing:-0.908595pt;}
.ws98{word-spacing:-0.903276pt;}
.ws7f{word-spacing:-0.896937pt;}
.ws7e{word-spacing:-0.860774pt;}
.wsa6{word-spacing:-0.842782pt;}
.wsa7{word-spacing:-0.797008pt;}
.wsef{word-spacing:-0.717312pt;}
.ws7{word-spacing:-0.695419pt;}
.wsea{word-spacing:-0.669491pt;}
.wseb{word-spacing:-0.648610pt;}
.ws5f{word-spacing:-0.637606pt;}
.ws11a{word-spacing:-0.621670pt;}
.ws89{word-spacing:-0.584473pt;}
.ws9{word-spacing:-0.557904pt;}
.ws3f{word-spacing:-0.531339pt;}
.ws5c{word-spacing:-0.478205pt;}
.wsda{word-spacing:-0.391082pt;}
.ws11d{word-spacing:-0.382566pt;}
.wsdb{word-spacing:-0.374904pt;}
.wsbb{word-spacing:-0.374755pt;}
.ws20{word-spacing:-0.371937pt;}
.wsdc{word-spacing:-0.371076pt;}
.ws94{word-spacing:-0.350019pt;}
.wse7{word-spacing:-0.334746pt;}
.ws31{word-spacing:-0.318803pt;}
.ws50{word-spacing:-0.299699pt;}
.ws48{word-spacing:-0.265669pt;}
.ws19{word-spacing:-0.239104pt;}
.ws3c{word-spacing:-0.212535pt;}
.ws99{word-spacing:-0.193183pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws1d{word-spacing:-0.173461pt;}
.ws24{word-spacing:-0.159402pt;}
.wsd3{word-spacing:-0.143462pt;}
.wsdd{word-spacing:-0.117441pt;}
.ws4e{word-spacing:-0.106268pt;}
.ws18{word-spacing:-0.095642pt;}
.ws90{word-spacing:-0.073911pt;}
.ws61{word-spacing:-0.058304pt;}
.ws37{word-spacing:-0.053134pt;}
.ws7a{word-spacing:-0.047821pt;}
.ws14{word-spacing:-0.042507pt;}
.ws9c{word-spacing:-0.039987pt;}
.ws12d{word-spacing:-0.039266pt;}
.ws9d{word-spacing:-0.035362pt;}
.ws8d{word-spacing:-0.008003pt;}
.ws134{word-spacing:-0.007305pt;}
.ws121{word-spacing:-0.006630pt;}
.ws112{word-spacing:-0.005999pt;}
.ws13b{word-spacing:-0.005342pt;}
.ws12f{word-spacing:-0.005129pt;}
.wsfc{word-spacing:-0.004898pt;}
.ws101{word-spacing:-0.004326pt;}
.ws130{word-spacing:-0.003857pt;}
.ws13c{word-spacing:-0.003814pt;}
.ws135{word-spacing:-0.003797pt;}
.ws104{word-spacing:-0.003456pt;}
.ws27{word-spacing:-0.002237pt;}
.ws102{word-spacing:-0.002159pt;}
.ws100{word-spacing:-0.002014pt;}
.wsfd{word-spacing:-0.001954pt;}
.ws82{word-spacing:-0.001604pt;}
.ws119{word-spacing:-0.001297pt;}
.wsc2{word-spacing:-0.000815pt;}
.ws10f{word-spacing:-0.000179pt;}
.ws0{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.000751pt;}
.ws136{word-spacing:0.001638pt;}
.ws85{word-spacing:0.004375pt;}
.ws86{word-spacing:0.004434pt;}
.wsa9{word-spacing:0.047821pt;}
.ws84{word-spacing:0.052953pt;}
.ws25{word-spacing:0.053134pt;}
.wsb6{word-spacing:0.095642pt;}
.ws21{word-spacing:0.106268pt;}
.ws17{word-spacing:0.143462pt;}
.wsd6{word-spacing:0.145425pt;}
.ws26{word-spacing:0.159402pt;}
.wse9{word-spacing:0.183546pt;}
.wsa{word-spacing:0.185968pt;}
.ws49{word-spacing:0.187873pt;}
.wse8{word-spacing:0.191283pt;}
.ws23{word-spacing:0.212535pt;}
.wsa3{word-spacing:0.228192pt;}
.ws1b{word-spacing:0.239104pt;}
.wsc{word-spacing:0.260355pt;}
.ws32{word-spacing:0.265669pt;}
.wsa8{word-spacing:0.286925pt;}
.ws36{word-spacing:0.318803pt;}
.wsfb{word-spacing:0.334746pt;}
.wsf1{word-spacing:0.382566pt;}
.ws5a{word-spacing:0.425071pt;}
.ws10d{word-spacing:0.430387pt;}
.ws51{word-spacing:0.478205pt;}
.ws3{word-spacing:0.494387pt;}
.wsc5{word-spacing:0.531339pt;}
.wsb7{word-spacing:0.573850pt;}
.ws5b{word-spacing:0.584473pt;}
.ws10e{word-spacing:0.621670pt;}
.wsc1{word-spacing:0.637606pt;}
.ws3a{word-spacing:0.690740pt;}
.ws3e{word-spacing:0.743874pt;}
.ws9f{word-spacing:0.771297pt;}
.wsa0{word-spacing:0.787041pt;}
.ws57{word-spacing:0.797008pt;}
.ws8f{word-spacing:0.811105pt;}
.ws12b{word-spacing:0.812954pt;}
.wsbf{word-spacing:0.850142pt;}
.wsbd{word-spacing:0.903276pt;}
.ws12c{word-spacing:1.004237pt;}
.ws59{word-spacing:1.009543pt;}
.ws34{word-spacing:1.062677pt;}
.ws29{word-spacing:1.115811pt;}
.ws10a{word-spacing:1.147699pt;}
.ws2c{word-spacing:1.168945pt;}
.ws81{word-spacing:1.195520pt;}
.wsfe{word-spacing:1.291162pt;}
.ws69{word-spacing:1.328347pt;}
.ws137{word-spacing:1.386803pt;}
.ws5e{word-spacing:1.434614pt;}
.wsbe{word-spacing:1.487748pt;}
.ws129{word-spacing:1.530266pt;}
.wsb8{word-spacing:1.578086pt;}
.ws4f{word-spacing:1.594016pt;}
.wsb9{word-spacing:1.625907pt;}
.ws58{word-spacing:1.647150pt;}
.ws6a{word-spacing:1.700284pt;}
.ws139{word-spacing:1.721549pt;}
.wsb{word-spacing:1.785293pt;}
.ws138{word-spacing:1.817190pt;}
.wscc{word-spacing:1.859685pt;}
.wsd9{word-spacing:1.912819pt;}
.ws46{word-spacing:1.965953pt;}
.ws47{word-spacing:1.998033pt;}
.ws88{word-spacing:2.019087pt;}
.ws53{word-spacing:2.048843pt;}
.wsed{word-spacing:2.056294pt;}
.ws54{word-spacing:2.057629pt;}
.ws52{word-spacing:2.072221pt;}
.ws2a{word-spacing:2.178489pt;}
.ws77{word-spacing:2.199757pt;}
.wse6{word-spacing:2.231622pt;}
.ws78{word-spacing:2.247578pt;}
.ws70{word-spacing:2.284756pt;}
.ws2b{word-spacing:2.337890pt;}
.ws124{word-spacing:2.343219pt;}
.ws9a{word-spacing:2.374109pt;}
.ws9b{word-spacing:2.390298pt;}
.ws91{word-spacing:2.391024pt;}
.ws74{word-spacing:2.391040pt;}
.ws75{word-spacing:2.436176pt;}
.ws76{word-spacing:2.438861pt;}
.ws8b{word-spacing:2.444158pt;}
.wsf2{word-spacing:2.486682pt;}
.ws1a{word-spacing:2.534502pt;}
.ws64{word-spacing:2.550426pt;}
.ws15{word-spacing:2.550432pt;}
.wsc3{word-spacing:2.603559pt;}
.wsde{word-spacing:2.656693pt;}
.wsdf{word-spacing:2.676141pt;}
.wsf8{word-spacing:2.677965pt;}
.wse0{word-spacing:2.695538pt;}
.ws118{word-spacing:2.725786pt;}
.ws11e{word-spacing:2.773606pt;}
.ws62{word-spacing:2.816095pt;}
.ws127{word-spacing:2.821427pt;}
.wsf7{word-spacing:2.862592pt;}
.ws11b{word-spacing:2.863147pt;}
.ws108{word-spacing:2.864307pt;}
.ws114{word-spacing:2.864521pt;}
.wsb0{word-spacing:2.864623pt;}
.wsf9{word-spacing:2.864956pt;}
.ws131{word-spacing:2.865758pt;}
.ws12a{word-spacing:2.866594pt;}
.ws128{word-spacing:2.867004pt;}
.ws11c{word-spacing:2.867089pt;}
.wsf5{word-spacing:2.868548pt;}
.ws103{word-spacing:2.868727pt;}
.wsf6{word-spacing:2.868847pt;}
.ws43{word-spacing:2.869229pt;}
.wsad{word-spacing:2.869248pt;}
.ws106{word-spacing:2.869274pt;}
.ws109{word-spacing:2.869709pt;}
.wsaf{word-spacing:2.869956pt;}
.ws120{word-spacing:2.870537pt;}
.ws12e{word-spacing:2.871407pt;}
.ws123{word-spacing:2.964890pt;}
.wscd{word-spacing:2.975497pt;}
.ws122{word-spacing:3.012710pt;}
.ws3b{word-spacing:3.028630pt;}
.ws126{word-spacing:3.060531pt;}
.ws11f{word-spacing:3.108352pt;}
.ws68{word-spacing:3.134898pt;}
.ws107{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws60{word-spacing:3.241166pt;}
.ws56{word-spacing:3.347434pt;}
.wsec{word-spacing:3.347456pt;}
.ws132{word-spacing:3.443098pt;}
.ws66{word-spacing:3.453701pt;}
.ws133{word-spacing:3.463021pt;}
.wsf4{word-spacing:3.490918pt;}
.ws83{word-spacing:3.506835pt;}
.ws6f{word-spacing:3.613103pt;}
.ws115{word-spacing:3.634381pt;}
.ws67{word-spacing:3.666237pt;}
.wsd0{word-spacing:3.719371pt;}
.ws72{word-spacing:3.761901pt;}
.wsbc{word-spacing:3.772505pt;}
.ws73{word-spacing:3.777843pt;}
.ws38{word-spacing:3.825638pt;}
.wsb4{word-spacing:3.873485pt;}
.wsb5{word-spacing:3.897849pt;}
.wsfa{word-spacing:3.921306pt;}
.ws93{word-spacing:3.985040pt;}
.ws55{word-spacing:4.038174pt;}
.ws71{word-spacing:4.064768pt;}
.ws6c{word-spacing:4.091308pt;}
.wsee{word-spacing:4.112589pt;}
.wsc0{word-spacing:4.197575pt;}
.wsb3{word-spacing:4.208230pt;}
.wsc8{word-spacing:4.234241pt;}
.wsc7{word-spacing:4.250709pt;}
.ws1e{word-spacing:4.256051pt;}
.wscb{word-spacing:4.303843pt;}
.ws6d{word-spacing:4.390924pt;}
.ws7d{word-spacing:4.399514pt;}
.ws7c{word-spacing:4.399810pt;}
.ws6e{word-spacing:4.410111pt;}
.ws105{word-spacing:4.447334pt;}
.wsc9{word-spacing:4.463245pt;}
.wsa2{word-spacing:4.516379pt;}
.wsa1{word-spacing:4.517875pt;}
.ws6b{word-spacing:4.569513pt;}
.ws117{word-spacing:4.638618pt;}
.ws7b{word-spacing:4.734259pt;}
.ws16{word-spacing:4.782080pt;}
.wsc6{word-spacing:4.835182pt;}
.ws110{word-spacing:4.877722pt;}
.wse4{word-spacing:5.100851pt;}
.ws45{word-spacing:5.207119pt;}
.wse5{word-spacing:5.313387pt;}
.ws12{word-spacing:5.393072pt;}
.ws13{word-spacing:5.467459pt;}
.wsba{word-spacing:5.525922pt;}
.ws40{word-spacing:5.579056pt;}
.ws3d{word-spacing:5.685324pt;}
.ws113{word-spacing:5.690675pt;}
.wsce{word-spacing:5.791591pt;}
.wscf{word-spacing:5.844725pt;}
.wsd2{word-spacing:5.977600pt;}
.wsd1{word-spacing:6.360166pt;}
.wsd8{word-spacing:6.535466pt;}
.ws30{word-spacing:6.854269pt;}
.ws95{word-spacing:6.960537pt;}
.ws97{word-spacing:6.988348pt;}
.ws96{word-spacing:7.007184pt;}
.ws2d{word-spacing:7.013670pt;}
.wsca{word-spacing:7.119938pt;}
.wsff{word-spacing:7.125299pt;}
.ws22{word-spacing:7.279340pt;}
.wse2{word-spacing:7.332474pt;}
.wsd7{word-spacing:7.438741pt;}
.ws10{word-spacing:7.699075pt;}
.ws4a{word-spacing:8.660820pt;}
.ws4b{word-spacing:8.687723pt;}
.ws4c{word-spacing:8.713954pt;}
.ws125{word-spacing:10.329293pt;}
.wsf3{word-spacing:10.759680pt;}
.ws63{word-spacing:12.114522pt;}
.ws6{word-spacing:13.763148pt;}
.ws116{word-spacing:14.250598pt;}
.wsd{word-spacing:14.348669pt;}
.wse{word-spacing:14.356730pt;}
.ws39{word-spacing:15.196286pt;}
.wsf{word-spacing:15.732893pt;}
.ws111{word-spacing:17.837158pt;}
.ws11{word-spacing:24.399002pt;}
.ws2{word-spacing:35.593054pt;}
.wsac{word-spacing:135.018274pt;}
.wsae{word-spacing:186.835866pt;}
.wsab{word-spacing:284.629402pt;}
._1c{margin-left:-13.283467pt;}
._0{margin-left:-10.616218pt;}
._36{margin-left:-7.485662pt;}
._18{margin-left:-6.398701pt;}
._9{margin-left:-5.483429pt;}
._c{margin-left:-4.447334pt;}
._5{margin-left:-3.421811pt;}
._1e{margin-left:-2.178489pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._8{width:2.045648pt;}
._6{width:10.860531pt;}
._15{width:11.964127pt;}
._d{width:13.772390pt;}
._b{width:15.023855pt;}
._e{width:16.226009pt;}
._20{width:17.115831pt;}
._a{width:18.028442pt;}
._1b{width:19.340727pt;}
._13{width:20.403405pt;}
._14{width:21.696736pt;}
._7{width:22.616909pt;}
._12{width:23.651297pt;}
._1a{width:24.547846pt;}
._1d{width:26.354398pt;}
._1f{width:27.789012pt;}
._1{width:29.648896pt;}
._19{width:31.774052pt;}
._17{width:34.005675pt;}
._34{width:34.908950pt;}
._16{width:37.565644pt;}
._f{width:38.734589pt;}
._35{width:39.644591pt;}
._2{width:48.308049pt;}
._38{width:54.993920pt;}
._37{width:78.904320pt;}
._31{width:125.423667pt;}
._32{width:131.686588pt;}
._2f{width:132.617728pt;}
._2d{width:147.847578pt;}
._2b{width:165.279607pt;}
._2e{width:171.046878pt;}
._24{width:174.880666pt;}
._26{width:177.741790pt;}
._2c{width:183.002078pt;}
._25{width:184.301363pt;}
._27{width:186.835866pt;}
._30{width:187.990493pt;}
._23{width:189.696990pt;}
._22{width:192.468906pt;}
._29{width:198.791066pt;}
._28{width:201.652190pt;}
._2a{width:213.598463pt;}
._21{width:510.152294pt;}
._10{width:872.619454pt;}
._33{width:2279.106400pt;}
._11{width:2300.359733pt;}
.fs8{font-size:31.880533pt;}
.fs1{font-size:36.956480pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.044747pt;}
.y5{bottom:8.511413pt;}
.yd{bottom:12.578910pt;}
.y2{bottom:14.008270pt;}
.y4{bottom:19.597349pt;}
.y4f{bottom:28.346667pt;}
.y3{bottom:30.685637pt;}
.y169{bottom:79.105333pt;}
.y1f7{bottom:80.056000pt;}
.y19f{bottom:81.560000pt;}
.y14e{bottom:85.358667pt;}
.y115{bottom:88.937333pt;}
.ybe{bottom:89.261333pt;}
.y27{bottom:91.398667pt;}
.y22a{bottom:92.050667pt;}
.y11f{bottom:94.441333pt;}
.y1be{bottom:94.701333pt;}
.y1f6{bottom:95.398667pt;}
.y168{bottom:95.842667pt;}
.y19e{bottom:98.297333pt;}
.y14d{bottom:102.096000pt;}
.y114{bottom:105.674667pt;}
.ybd{bottom:105.998667pt;}
.y26{bottom:107.298667pt;}
.y229{bottom:107.393333pt;}
.y1bd{bottom:110.322667pt;}
.y1f5{bottom:110.741333pt;}
.y11e{bottom:111.178667pt;}
.yf2{bottom:111.577333pt;}
.y167{bottom:112.580000pt;}
.y4e{bottom:113.106667pt;}
.yf9{bottom:113.920000pt;}
.y19d{bottom:115.034667pt;}
.y14c{bottom:118.833333pt;}
.y113{bottom:122.412000pt;}
.ybc{bottom:122.736000pt;}
.y25{bottom:123.200000pt;}
.y1f4{bottom:126.082667pt;}
.y11d{bottom:127.916000pt;}
.yf1{bottom:128.314667pt;}
.y166{bottom:129.317333pt;}
.y4d{bottom:129.844000pt;}
.y84{bottom:130.689333pt;}
.yf8{bottom:131.016000pt;}
.y19c{bottom:131.772000pt;}
.y1bc{bottom:133.914667pt;}
.y14b{bottom:135.570667pt;}
.y228{bottom:138.078667pt;}
.y24{bottom:139.100000pt;}
.y112{bottom:139.149333pt;}
.ybb{bottom:139.473333pt;}
.y1f3{bottom:141.425333pt;}
.y11c{bottom:144.653333pt;}
.yf0{bottom:145.052000pt;}
.y165{bottom:146.054667pt;}
.y4c{bottom:146.581333pt;}
.y83{bottom:147.426667pt;}
.yf7{bottom:148.112000pt;}
.y19b{bottom:148.508000pt;}
.y1bb{bottom:149.536000pt;}
.y227{bottom:153.421333pt;}
.y23{bottom:155.000000pt;}
.yba{bottom:156.210667pt;}
.y1f2{bottom:156.768000pt;}
.y111{bottom:159.872000pt;}
.y11b{bottom:161.390667pt;}
.yef{bottom:161.789333pt;}
.y164{bottom:162.792000pt;}
.y4b{bottom:163.318667pt;}
.y82{bottom:164.164000pt;}
.yf6{bottom:165.208000pt;}
.y19a{bottom:165.245333pt;}
.y226{bottom:168.762667pt;}
.y22{bottom:170.901333pt;}
.y1f1{bottom:172.110667pt;}
.yb9{bottom:172.948000pt;}
.y1ba{bottom:173.128000pt;}
.y14a{bottom:175.981333pt;}
.y11a{bottom:178.128000pt;}
.yee{bottom:178.526667pt;}
.y163{bottom:179.529333pt;}
.y4a{bottom:180.056000pt;}
.y81{bottom:180.901333pt;}
.y199{bottom:181.982667pt;}
.yf5{bottom:182.304000pt;}
.y225{bottom:184.105333pt;}
.y21{bottom:186.801333pt;}
.y149{bottom:187.381333pt;}
.y1f0{bottom:187.453333pt;}
.yb8{bottom:189.685333pt;}
.y110{bottom:189.760000pt;}
.y119{bottom:194.865333pt;}
.yed{bottom:195.264000pt;}
.y162{bottom:196.266667pt;}
.y1b9{bottom:196.718667pt;}
.y49{bottom:196.793333pt;}
.y80{bottom:197.638667pt;}
.y198{bottom:198.720000pt;}
.yf4{bottom:199.400000pt;}
.y224{bottom:199.448000pt;}
.y20{bottom:202.701333pt;}
.y1ef{bottom:202.796000pt;}
.yb7{bottom:206.422667pt;}
.y10f{bottom:206.497333pt;}
.y118{bottom:211.602667pt;}
.yec{bottom:212.001333pt;}
.y161{bottom:213.004000pt;}
.y48{bottom:213.530667pt;}
.y7f{bottom:214.376000pt;}
.y223{bottom:214.790667pt;}
.y197{bottom:215.457333pt;}
.yf3{bottom:216.496000pt;}
.y148{bottom:218.009333pt;}
.y1ee{bottom:218.138667pt;}
.y1b8{bottom:220.310667pt;}
.yb6{bottom:223.160000pt;}
.y10e{bottom:223.234667pt;}
.y117{bottom:228.340000pt;}
.yeb{bottom:228.738667pt;}
.y146{bottom:229.409333pt;}
.y160{bottom:229.741333pt;}
.y222{bottom:230.133333pt;}
.y47{bottom:230.268000pt;}
.y7e{bottom:231.113333pt;}
.y196{bottom:232.194667pt;}
.y1ed{bottom:233.481333pt;}
.y1b7{bottom:235.932000pt;}
.y147{bottom:239.022667pt;}
.yb5{bottom:239.897333pt;}
.y10d{bottom:239.972000pt;}
.y18e{bottom:245.077333pt;}
.yea{bottom:245.476000pt;}
.y15f{bottom:246.478667pt;}
.y46{bottom:247.005333pt;}
.y7d{bottom:247.850667pt;}
.y1ec{bottom:248.824000pt;}
.y195{bottom:248.932000pt;}
.y116{bottom:249.062667pt;}
.y1b6{bottom:251.553333pt;}
.yb4{bottom:256.634667pt;}
.y10c{bottom:256.709333pt;}
.y145{bottom:260.036000pt;}
.y221{bottom:260.818667pt;}
.y18d{bottom:261.814667pt;}
.ye9{bottom:262.213333pt;}
.y15e{bottom:263.216000pt;}
.y1eb{bottom:264.165333pt;}
.y7c{bottom:264.588000pt;}
.y1b5{bottom:267.174667pt;}
.y45{bottom:267.728000pt;}
.y144{bottom:269.880000pt;}
.y1f{bottom:273.154667pt;}
.yb3{bottom:273.372000pt;}
.y10b{bottom:273.446667pt;}
.y220{bottom:276.161333pt;}
.y18c{bottom:278.552000pt;}
.y194{bottom:278.768000pt;}
.ye8{bottom:278.950667pt;}
.y1ea{bottom:279.508000pt;}
.y15d{bottom:279.953333pt;}
.y7b{bottom:281.325333pt;}
.y1b4{bottom:282.796000pt;}
.y1e{bottom:289.054667pt;}
.yb2{bottom:290.108000pt;}
.y10a{bottom:290.184000pt;}
.y21f{bottom:291.502667pt;}
.y1e9{bottom:294.850667pt;}
.y18b{bottom:295.289333pt;}
.ye7{bottom:295.688000pt;}
.y193{bottom:295.864000pt;}
.y15c{bottom:296.690667pt;}
.y7a{bottom:298.062667pt;}
.y1b3{bottom:298.417333pt;}
.y143{bottom:302.064000pt;}
.y1d{bottom:304.954667pt;}
.yb1{bottom:306.845333pt;}
.y109{bottom:306.921333pt;}
.y1e8{bottom:310.193333pt;}
.y142{bottom:311.908000pt;}
.y18a{bottom:312.026667pt;}
.ye6{bottom:312.425333pt;}
.y192{bottom:312.960000pt;}
.y15b{bottom:313.428000pt;}
.y1b2{bottom:314.038667pt;}
.y79{bottom:314.800000pt;}
.y1c{bottom:320.856000pt;}
.y21e{bottom:322.188000pt;}
.yb0{bottom:323.582667pt;}
.y108{bottom:323.658667pt;}
.y1e7{bottom:325.536000pt;}
.y189{bottom:328.764000pt;}
.ye5{bottom:329.162667pt;}
.y1b1{bottom:329.661333pt;}
.y191{bottom:330.056000pt;}
.y15a{bottom:330.165333pt;}
.y78{bottom:331.537333pt;}
.y44{bottom:333.117333pt;}
.y21d{bottom:337.530667pt;}
.yaf{bottom:340.320000pt;}
.y107{bottom:340.396000pt;}
.y1e6{bottom:340.878667pt;}
.y141{bottom:344.092000pt;}
.y1b0{bottom:345.282667pt;}
.y188{bottom:345.501333pt;}
.ye4{bottom:345.900000pt;}
.y159{bottom:346.902667pt;}
.y190{bottom:347.152000pt;}
.y77{bottom:348.274667pt;}
.y43{bottom:350.412000pt;}
.y21c{bottom:352.873333pt;}
.y140{bottom:353.936000pt;}
.y1b{bottom:354.688000pt;}
.y1e5{bottom:356.221333pt;}
.yae{bottom:357.057333pt;}
.y106{bottom:357.133333pt;}
.y1af{bottom:360.904000pt;}
.y187{bottom:362.238667pt;}
.ye3{bottom:362.637333pt;}
.y158{bottom:363.640000pt;}
.y18f{bottom:364.248000pt;}
.y76{bottom:365.012000pt;}
.y21b{bottom:368.216000pt;}
.y1a{bottom:370.589333pt;}
.y1e4{bottom:371.564000pt;}
.yad{bottom:373.794667pt;}
.y105{bottom:373.870667pt;}
.y1ae{bottom:376.525333pt;}
.y186{bottom:378.976000pt;}
.ye2{bottom:379.374667pt;}
.y75{bottom:381.749333pt;}
.y21a{bottom:383.558667pt;}
.y42{bottom:383.648000pt;}
.y13f{bottom:386.120000pt;}
.y19{bottom:386.489333pt;}
.y1e3{bottom:386.905333pt;}
.yac{bottom:390.532000pt;}
.y104{bottom:390.608000pt;}
.y157{bottom:393.284000pt;}
.y185{bottom:395.713333pt;}
.y13e{bottom:395.964000pt;}
.ye1{bottom:396.112000pt;}
.y74{bottom:398.486667pt;}
.y219{bottom:398.901333pt;}
.y1ad{bottom:400.116000pt;}
.y41{bottom:400.942667pt;}
.y1e2{bottom:402.248000pt;}
.yab{bottom:407.269333pt;}
.y103{bottom:407.344000pt;}
.y156{bottom:410.380000pt;}
.y184{bottom:412.450667pt;}
.ye0{bottom:412.848000pt;}
.y218{bottom:414.244000pt;}
.y73{bottom:415.224000pt;}
.y1ac{bottom:415.738667pt;}
.y1e1{bottom:417.590667pt;}
.y40{bottom:418.237333pt;}
.y18{bottom:418.330667pt;}
.yaa{bottom:424.006667pt;}
.y102{bottom:424.081333pt;}
.y155{bottom:427.476000pt;}
.y13d{bottom:428.148000pt;}
.y183{bottom:429.188000pt;}
.ydf{bottom:429.585333pt;}
.y1ab{bottom:431.360000pt;}
.y72{bottom:431.961333pt;}
.y1e0{bottom:432.933333pt;}
.y3f{bottom:435.533333pt;}
.y13c{bottom:437.992000pt;}
.ya9{bottom:440.744000pt;}
.y101{bottom:440.818667pt;}
.y154{bottom:444.572000pt;}
.y217{bottom:444.928000pt;}
.y182{bottom:445.925333pt;}
.yde{bottom:446.322667pt;}
.y1aa{bottom:446.981333pt;}
.y1df{bottom:448.276000pt;}
.y71{bottom:448.698667pt;}
.y17{bottom:450.170667pt;}
.y3e{bottom:452.828000pt;}
.ya8{bottom:457.481333pt;}
.y100{bottom:457.556000pt;}
.y216{bottom:460.270667pt;}
.y153{bottom:461.668000pt;}
.y1a9{bottom:462.602667pt;}
.y181{bottom:462.662667pt;}
.ydd{bottom:463.060000pt;}
.y1de{bottom:463.618667pt;}
.y70{bottom:465.436000pt;}
.y16{bottom:466.070667pt;}
.y3d{bottom:470.122667pt;}
.y13b{bottom:470.176000pt;}
.ya7{bottom:474.218667pt;}
.yff{bottom:474.293333pt;}
.y215{bottom:475.613333pt;}
.y1a8{bottom:478.224000pt;}
.y152{bottom:478.764000pt;}
.y1dd{bottom:478.961333pt;}
.y180{bottom:479.398667pt;}
.ydc{bottom:479.797333pt;}
.y15{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y3c{bottom:487.418667pt;}
.ya6{bottom:490.956000pt;}
.y13a{bottom:491.190667pt;}
.y1dc{bottom:494.304000pt;}
.y151{bottom:495.858667pt;}
.y17f{bottom:496.136000pt;}
.ydb{bottom:496.534667pt;}
.y14{bottom:497.872000pt;}
.y6e{bottom:498.910667pt;}
.y1a7{bottom:501.816000pt;}
.y137{bottom:503.644000pt;}
.yfe{bottom:504.129333pt;}
.y3b{bottom:504.713333pt;}
.y214{bottom:506.298667pt;}
.y1db{bottom:509.646667pt;}
.ya5{bottom:511.678667pt;}
.y139{bottom:512.204000pt;}
.y17e{bottom:512.873333pt;}
.y150{bottom:512.954667pt;}
.yda{bottom:513.272000pt;}
.y13{bottom:513.772000pt;}
.y6d{bottom:515.648000pt;}
.y1a6{bottom:517.854667pt;}
.yfd{bottom:521.225333pt;}
.y213{bottom:521.641333pt;}
.y3a{bottom:522.009333pt;}
.y1da{bottom:524.988000pt;}
.y17d{bottom:529.610667pt;}
.y12{bottom:529.673333pt;}
.yd9{bottom:530.009333pt;}
.y14f{bottom:530.050667pt;}
.y6c{bottom:532.384000pt;}
.y138{bottom:533.218667pt;}
.y1a5{bottom:533.894667pt;}
.y212{bottom:536.984000pt;}
.yfc{bottom:538.321333pt;}
.y39{bottom:539.304000pt;}
.y1d9{bottom:540.330667pt;}
.ya4{bottom:541.566667pt;}
.y11{bottom:545.573333pt;}
.y17c{bottom:546.348000pt;}
.yd8{bottom:546.746667pt;}
.y6b{bottom:549.121333pt;}
.y1a4{bottom:549.934667pt;}
.y211{bottom:552.325333pt;}
.y136{bottom:554.232000pt;}
.yfb{bottom:555.417333pt;}
.y1d8{bottom:555.673333pt;}
.y38{bottom:556.598667pt;}
.ya3{bottom:558.304000pt;}
.y10{bottom:561.473333pt;}
.y17b{bottom:563.085333pt;}
.yd7{bottom:563.484000pt;}
.y6a{bottom:565.858667pt;}
.y1a3{bottom:565.974667pt;}
.y210{bottom:567.668000pt;}
.y1d7{bottom:571.016000pt;}
.yfa{bottom:572.513333pt;}
.ya2{bottom:575.041333pt;}
.y135{bottom:575.246667pt;}
.yf{bottom:577.374667pt;}
.y17a{bottom:579.822667pt;}
.yd6{bottom:580.221333pt;}
.y1a2{bottom:582.014667pt;}
.y69{bottom:582.596000pt;}
.y20f{bottom:583.010667pt;}
.y132{bottom:586.178667pt;}
.y1d6{bottom:586.358667pt;}
.y37{bottom:590.897333pt;}
.ya1{bottom:591.778667pt;}
.y134{bottom:596.260000pt;}
.y179{bottom:596.560000pt;}
.yd5{bottom:596.958667pt;}
.yc{bottom:597.259968pt;}
.y1a1{bottom:598.054667pt;}
.y20e{bottom:598.353333pt;}
.y68{bottom:599.333333pt;}
.y1d5{bottom:601.701333pt;}
.ya0{bottom:608.516000pt;}
.y36{bottom:609.101333pt;}
.y178{bottom:613.297333pt;}
.yd4{bottom:613.696000pt;}
.y67{bottom:616.070667pt;}
.y1d4{bottom:617.044000pt;}
.y133{bottom:617.274667pt;}
.y35{bottom:619.589333pt;}
.y9f{bottom:625.253333pt;}
.y20d{bottom:629.038667pt;}
.y177{bottom:630.034667pt;}
.yd3{bottom:630.433333pt;}
.y1d3{bottom:632.386667pt;}
.y66{bottom:632.808000pt;}
.y34{bottom:637.793333pt;}
.y131{bottom:638.288000pt;}
.y9e{bottom:641.990667pt;}
.y20c{bottom:644.381333pt;}
.y176{bottom:646.772000pt;}
.yd2{bottom:647.170667pt;}
.y1d2{bottom:647.728000pt;}
.y65{bottom:649.545333pt;}
.y33{bottom:652.140000pt;}
.y9c{bottom:658.726667pt;}
.y130{bottom:659.302667pt;}
.y20b{bottom:659.724000pt;}
.y32{bottom:662.628000pt;}
.y1d1{bottom:663.070667pt;}
.y175{bottom:663.509333pt;}
.y9d{bottom:663.549333pt;}
.yd1{bottom:663.908000pt;}
.y64{bottom:666.282667pt;}
.y12d{bottom:670.234667pt;}
.y20a{bottom:675.066667pt;}
.y9a{bottom:675.464000pt;}
.y31{bottom:676.974667pt;}
.y1d0{bottom:678.413333pt;}
.y174{bottom:680.246667pt;}
.y9b{bottom:680.286667pt;}
.y12f{bottom:680.316000pt;}
.yd0{bottom:680.645333pt;}
.y63{bottom:683.020000pt;}
.y209{bottom:690.408000pt;}
.y98{bottom:692.201333pt;}
.y1cf{bottom:693.756000pt;}
.y30{bottom:695.178667pt;}
.y173{bottom:696.984000pt;}
.y99{bottom:697.024000pt;}
.ycf{bottom:697.382667pt;}
.y62{bottom:699.757333pt;}
.y12e{bottom:701.330667pt;}
.y2f{bottom:705.668000pt;}
.y208{bottom:705.750667pt;}
.y97{bottom:708.938667pt;}
.y1ce{bottom:709.098667pt;}
.y172{bottom:713.721333pt;}
.yce{bottom:714.120000pt;}
.y61{bottom:716.494667pt;}
.y207{bottom:721.093333pt;}
.y12c{bottom:722.344000pt;}
.y2e{bottom:723.870667pt;}
.y1cd{bottom:724.441333pt;}
.y96{bottom:725.676000pt;}
.y171{bottom:730.458667pt;}
.ycd{bottom:730.857333pt;}
.y60{bottom:733.232000pt;}
.y2d{bottom:734.360000pt;}
.y206{bottom:736.436000pt;}
.y1cc{bottom:739.784000pt;}
.y95{bottom:742.413333pt;}
.y12b{bottom:743.357333pt;}
.y170{bottom:747.196000pt;}
.ycc{bottom:747.594667pt;}
.y5f{bottom:749.969333pt;}
.y205{bottom:751.778667pt;}
.y2c{bottom:752.564000pt;}
.y128{bottom:754.290667pt;}
.y1cb{bottom:755.126667pt;}
.y94{bottom:759.150667pt;}
.y2b{bottom:763.052000pt;}
.y16f{bottom:763.933333pt;}
.ycb{bottom:764.332000pt;}
.y12a{bottom:764.372000pt;}
.y5e{bottom:766.706667pt;}
.y204{bottom:767.121333pt;}
.y1ca{bottom:770.469333pt;}
.y93{bottom:775.888000pt;}
.y16e{bottom:780.670667pt;}
.yca{bottom:781.069333pt;}
.y2a{bottom:781.256000pt;}
.y203{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.y1a0{bottom:784.656000pt;}
.y129{bottom:785.385333pt;}
.y1c9{bottom:785.810667pt;}
.y29{bottom:791.745333pt;}
.y91{bottom:792.625333pt;}
.y16d{bottom:797.408000pt;}
.y92{bottom:797.448000pt;}
.yc9{bottom:797.806667pt;}
.y5c{bottom:800.181333pt;}
.y1c8{bottom:801.153333pt;}
.y127{bottom:806.400000pt;}
.y8f{bottom:809.362667pt;}
.y28{bottom:809.949333pt;}
.y202{bottom:813.148000pt;}
.y22b{bottom:813.149333pt;}
.y16c{bottom:814.145333pt;}
.y90{bottom:814.185333pt;}
.yc8{bottom:814.544000pt;}
.y1c7{bottom:816.496000pt;}
.y5b{bottom:816.918667pt;}
.y8e{bottom:826.100000pt;}
.y126{bottom:827.413333pt;}
.y201{bottom:828.490667pt;}
.y16b{bottom:830.882667pt;}
.yc7{bottom:831.281333pt;}
.y1c6{bottom:831.838667pt;}
.y5a{bottom:833.656000pt;}
.y123{bottom:838.346667pt;}
.y8d{bottom:842.837333pt;}
.y200{bottom:843.833333pt;}
.yb{bottom:845.676000pt;}
.y1c5{bottom:847.181333pt;}
.yc6{bottom:848.018667pt;}
.y125{bottom:848.428000pt;}
.y59{bottom:850.393333pt;}
.y16a{bottom:851.604000pt;}
.y1ff{bottom:859.176000pt;}
.y8c{bottom:859.574667pt;}
.ya{bottom:862.413333pt;}
.y1c4{bottom:862.524000pt;}
.yc5{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.y124{bottom:869.441333pt;}
.y1fe{bottom:874.518667pt;}
.y8b{bottom:876.312000pt;}
.y1c3{bottom:877.866667pt;}
.yc4{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.y1fd{bottom:889.861333pt;}
.y122{bottom:890.456000pt;}
.y8a{bottom:893.049333pt;}
.y1c2{bottom:897.193333pt;}
.yc3{bottom:898.229333pt;}
.y9{bottom:900.404000pt;}
.y56{bottom:900.605333pt;}
.y1fc{bottom:905.204000pt;}
.y89{bottom:909.786667pt;}
.yc2{bottom:914.966667pt;}
.y55{bottom:917.342667pt;}
.y121{bottom:918.561333pt;}
.y1fb{bottom:920.546667pt;}
.y8{bottom:925.510667pt;}
.y88{bottom:926.524000pt;}
.y1c1{bottom:927.081333pt;}
.yc1{bottom:931.704000pt;}
.y54{bottom:934.080000pt;}
.y120{bottom:935.657333pt;}
.y1fa{bottom:935.889333pt;}
.y87{bottom:943.261333pt;}
.yc0{bottom:948.441333pt;}
.y7{bottom:950.616000pt;}
.y1c0{bottom:950.673333pt;}
.y53{bottom:950.817333pt;}
.y1f9{bottom:951.230667pt;}
.y86{bottom:963.984000pt;}
.ybf{bottom:965.178667pt;}
.y1bf{bottom:966.294667pt;}
.y1f8{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y6{bottom:975.722667pt;}
.y85{bottom:981.916000pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.h16{height:23.521527pt;}
.hc{height:27.076941pt;}
.hd{height:27.300102pt;}
.h4{height:29.010837pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h15{height:31.200285pt;}
.h10{height:34.430976pt;}
.h11{height:34.813542pt;}
.h12{height:35.100467pt;}
.h17{height:37.087439pt;}
.h18{height:37.193707pt;}
.h13{height:38.256384pt;}
.h14{height:38.681455pt;}
.h5{height:39.000258pt;}
.h2{height:45.271688pt;}
.h7{height:48.360277pt;}
.h8{height:48.365611pt;}
.h6{height:68.861952pt;}
.h1a{height:73.266876pt;}
.h19{height:79.496209pt;}
.h3{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:131.667539pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.099800pt;}
.x5{left:26.021437pt;}
.x4{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:53.285701pt;}
.xef{left:76.686667pt;}
.xbc{left:221.013333pt;}
.x8{left:222.073333pt;}
.x6{left:223.020000pt;}
.x6d{left:227.093333pt;}
.xce{left:230.990667pt;}
.xc8{left:232.578667pt;}
.x6e{left:235.182667pt;}
.xcd{left:236.769333pt;}
.x9d{left:238.525333pt;}
.x59{left:239.517333pt;}
.x7{left:240.670667pt;}
.xcc{left:242.376000pt;}
.xd7{left:243.768000pt;}
.xcb{left:246.733333pt;}
.x5a{left:247.722667pt;}
.xb{left:251.365333pt;}
.x87{left:252.512000pt;}
.x61{left:253.736000pt;}
.x66{left:256.570667pt;}
.x62{left:259.785333pt;}
.x48{left:261.329333pt;}
.x6b{left:263.100000pt;}
.xca{left:266.238667pt;}
.xc7{left:268.449333pt;}
.x67{left:269.854667pt;}
.xde{left:271.096000pt;}
.xd8{left:273.722667pt;}
.x49{left:274.612000pt;}
.x6c{left:276.382667pt;}
.x9{left:277.628000pt;}
.xb9{left:278.620000pt;}
.xe2{left:280.238667pt;}
.xd9{left:281.294667pt;}
.x2b{left:283.500000pt;}
.xa{left:287.806667pt;}
.x97{left:289.874667pt;}
.xda{left:294.577333pt;}
.x2c{left:296.784000pt;}
.xdb{left:297.965333pt;}
.x2d{left:300.037333pt;}
.x8e{left:301.474667pt;}
.x98{left:303.157333pt;}
.x31{left:307.572000pt;}
.x40{left:308.701333pt;}
.x99{left:309.932000pt;}
.xdc{left:311.248000pt;}
.x2e{left:313.321333pt;}
.x41{left:315.342667pt;}
.x42{left:318.597333pt;}
.xb8{left:319.732000pt;}
.x32{left:320.856000pt;}
.xb4{left:322.198667pt;}
.x9a{left:323.216000pt;}
.x33{left:327.550667pt;}
.x8b{left:328.724000pt;}
.xdf{left:330.878667pt;}
.x43{left:331.880000pt;}
.x39{left:333.337333pt;}
.x44{left:335.134667pt;}
.x3a{left:336.725333pt;}
.xe0{left:339.446667pt;}
.x34{left:340.834667pt;}
.xd3{left:342.998667pt;}
.xa2{left:345.561333pt;}
.x45{left:348.418667pt;}
.x3b{left:350.008000pt;}
.xed{left:350.970667pt;}
.x46{left:354.928000pt;}
.xd4{left:356.282667pt;}
.x71{left:357.761333pt;}
.xe1{left:359.372000pt;}
.xa3{left:362.182667pt;}
.x7b{left:363.145333pt;}
.x47{left:368.210667pt;}
.x4a{left:369.233333pt;}
.x72{left:371.044000pt;}
.x27{left:372.008000pt;}
.xa4{left:374.688000pt;}
.xee{left:381.614667pt;}
.x4b{left:382.517333pt;}
.x28{left:385.292000pt;}
.xe8{left:387.102667pt;}
.x29{left:388.678667pt;}
.xa5{left:391.285333pt;}
.x50{left:393.246667pt;}
.xa0{left:396.034667pt;}
.x51{left:396.992000pt;}
.x2a{left:401.962667pt;}
.x4e{left:404.734667pt;}
.xa1{left:410.656000pt;}
.xbd{left:415.142667pt;}
.x4f{left:418.017333pt;}
.x5d{left:419.784000pt;}
.xe5{left:423.752000pt;}
.x5e{left:425.833333pt;}
.x88{left:427.157333pt;}
.xbe{left:428.426667pt;}
.xb7{left:431.649333pt;}
.x84{left:433.620000pt;}
.xbf{left:435.141333pt;}
.xe6{left:437.036000pt;}
.x89{left:438.461333pt;}
.xb3{left:440.645333pt;}
.xc9{left:441.805333pt;}
.x55{left:444.860000pt;}
.x1a{left:447.469333pt;}
.x56{left:448.605333pt;}
.xc6{left:451.122667pt;}
.x1e{left:452.498667pt;}
.x1b{left:454.110667pt;}
.xc0{left:455.066667pt;}
.x1c{left:457.421333pt;}
.x1f{left:459.140000pt;}
.xba{left:460.860000pt;}
.x1d{left:464.062667pt;}
.xdd{left:465.149333pt;}
.xe7{left:470.377333pt;}
.x24{left:471.293333pt;}
.xbb{left:472.814667pt;}
.xb5{left:474.125333pt;}
.xb0{left:476.854667pt;}
.xa6{left:481.344000pt;}
.x25{left:484.577333pt;}
.xb6{left:487.408000pt;}
.xb1{left:490.137333pt;}
.x26{left:491.352000pt;}
.xa7{left:494.626667pt;}
.xa8{left:497.990667pt;}
.x8f{left:500.008000pt;}
.xc{left:503.986667pt;}
.xd{left:510.628000pt;}
.x63{left:513.437333pt;}
.x90{left:515.418667pt;}
.xe{left:517.402667pt;}
.x64{left:519.486667pt;}
.x9e{left:521.496000pt;}
.xf{left:524.044000pt;}
.xa9{left:527.922667pt;}
.x9b{left:533.336000pt;}
.x3c{left:535.044000pt;}
.x9f{left:537.001333pt;}
.x80{left:538.133333pt;}
.x16{left:546.600000pt;}
.x3d{left:548.326667pt;}
.x68{left:549.970667pt;}
.x81{left:551.416000pt;}
.x17{left:553.241333pt;}
.x3e{left:554.836000pt;}
.x18{left:556.522667pt;}
.x95{left:560.412000pt;}
.x19{left:563.165333pt;}
.x69{left:566.596000pt;}
.x3f{left:568.120000pt;}
.xc2{left:569.708000pt;}
.x96{left:575.034667pt;}
.x7d{left:576.800000pt;}
.xe9{left:577.946667pt;}
.xf1{left:578.846667pt;}
.x6a{left:579.878667pt;}
.xd5{left:585.181333pt;}
.x79{left:587.665333pt;}
.x5f{left:589.560000pt;}
.xea{left:591.229333pt;}
.xc3{left:593.021333pt;}
.xf2{left:594.330667pt;}
.x60{left:595.609333pt;}
.x7e{left:596.765333pt;}
.xd6{left:598.465333pt;}
.x82{left:600.005333pt;}
.x7a{left:600.949333pt;}
.xac{left:602.489333pt;}
.x6f{left:608.382667pt;}
.x7f{left:610.049333pt;}
.x70{left:611.737333pt;}
.x83{left:613.288000pt;}
.x5b{left:615.172000pt;}
.xad{left:619.080000pt;}
.x5c{left:621.221333pt;}
.xaf{left:623.280000pt;}
.x52{left:624.177333pt;}
.x20{left:626.264000pt;}
.x53{left:627.924000pt;}
.x85{left:629.168000pt;}
.xc4{left:630.586667pt;}
.xae{left:632.364000pt;}
.xe3{left:636.682667pt;}
.x21{left:639.548000pt;}
.xf4{left:641.265333pt;}
.x22{left:642.934667pt;}
.x86{left:644.692000pt;}
.xeb{left:649.134667pt;}
.xc5{left:650.512000pt;}
.x73{left:652.092000pt;}
.xe4{left:653.246667pt;}
.xf6{left:654.845333pt;}
.x23{left:656.218667pt;}
.xcf{left:658.728000pt;}
.x91{left:659.897333pt;}
.xd0{left:661.917333pt;}
.x8c{left:663.590667pt;}
.x74{left:665.376000pt;}
.xec{left:669.060000pt;}
.x57{left:672.116000pt;}
.x92{left:673.181333pt;}
.x8d{left:675.692000pt;}
.x8a{left:676.736000pt;}
.x9c{left:678.918667pt;}
.x58{left:680.321333pt;}
.xaa{left:683.948000pt;}
.x4c{left:687.688000pt;}
.xb2{left:690.018667pt;}
.x35{left:691.600000pt;}
.x93{left:693.240000pt;}
.xd1{left:694.597333pt;}
.xab{left:697.232000pt;}
.x7c{left:698.592000pt;}
.x4d{left:700.970667pt;}
.xf0{left:702.289333pt;}
.x36{left:704.884000pt;}
.xf5{left:706.478667pt;}
.x37{left:708.272000pt;}
.x2f{left:709.950667pt;}
.x75{left:711.234667pt;}
.x10{left:713.426667pt;}
.xd2{left:714.322667pt;}
.xc1{left:716.270667pt;}
.x11{left:720.068000pt;}
.x38{left:721.554667pt;}
.x12{left:723.454667pt;}
.x76{left:724.517333pt;}
.xf3{left:725.478667pt;}
.x30{left:726.488000pt;}
.x77{left:727.905333pt;}
.x13{left:730.097333pt;}
.x14{left:733.484000pt;}
.x94{left:734.396000pt;}
.x65{left:735.300000pt;}
.x15{left:740.126667pt;}
.x78{left:741.189333pt;}
.x54{left:743.398667pt;}
}




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