
    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_76d83ce1d52f64983e139331.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d82d5b089e0c21a17c237e95.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_41d94ea7957d94d968d820cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_454c4df54ec94adaf3c57a76.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_99e2297566bf0be92db76b76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8383d15c3385f5e54ce3bb70.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_019a85c3a045d386af7abdb1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8e00a1ac48fba5312c3f50c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.670000;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_13a93a292e528f85985f4bc9.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_308b585a757b8a1b2d759200.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.803000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_443657023241aa1c842e38b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708000;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;}
.m4{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);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m27{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);}
.m1a{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);}
.m11{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);}
.m9{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);}
.m18{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);}
.ma{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);}
.m10{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);}
.m5{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);}
.m3{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);}
.mb{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);}
.me{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);}
.m17{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);}
.m1d{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.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);}
.m19{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m28{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);}
.m6{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);}
.m1f{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);}
.m7{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);}
.md{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);}
.m22{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);}
.m20{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);}
.m13{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);}
.m15{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);}
.m25{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);}
.m23{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);}
.m8{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);}
.m24{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);}
.m26{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);}
.m21{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);}
.m16{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);}
.m29{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.lsf{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000541px;}
.ls9{letter-spacing:0.000600px;}
.ls32{letter-spacing:0.000608px;}
.ls3d{letter-spacing:0.000676px;}
.ls3e{letter-spacing:0.001036px;}
.ls3c{letter-spacing:0.001039px;}
.lsb{letter-spacing:0.001952px;}
.ls0{letter-spacing:0.002725px;}
.ls11{letter-spacing:0.003226px;}
.ls44{letter-spacing:0.004800px;}
.ls12{letter-spacing:0.005242px;}
.lsd{letter-spacing:0.676282px;}
.ls17{letter-spacing:0.745694px;}
.ls7{letter-spacing:0.836856px;}
.ls37{letter-spacing:0.968371px;}
.ls10{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls13{letter-spacing:3.553200px;}
.ls8{letter-spacing:10.419300px;}
.lse{letter-spacing:11.954850px;}
.ls26{letter-spacing:13.073804px;}
.ls2a{letter-spacing:13.220997px;}
.ls2e{letter-spacing:13.330212px;}
.ls19{letter-spacing:13.380562px;}
.ls36{letter-spacing:13.396729px;}
.ls27{letter-spacing:13.400777px;}
.ls41{letter-spacing:13.448400px;}
.ls42{letter-spacing:13.454400px;}
.ls18{letter-spacing:13.472705px;}
.ls43{letter-spacing:13.547379px;}
.ls29{letter-spacing:13.572099px;}
.ls35{letter-spacing:13.610840px;}
.ls3b{letter-spacing:13.625190px;}
.ls48{letter-spacing:13.711494px;}
.ls25{letter-spacing:13.929266px;}
.ls1e{letter-spacing:14.628899px;}
.ls1d{letter-spacing:14.634793px;}
.ls3a{letter-spacing:14.662090px;}
.ls38{letter-spacing:14.820088px;}
.ls14{letter-spacing:14.854715px;}
.ls31{letter-spacing:14.865141px;}
.ls30{letter-spacing:14.871024px;}
.ls1f{letter-spacing:14.929383px;}
.ls20{letter-spacing:14.935377px;}
.ls2{letter-spacing:14.944200px;}
.ls16{letter-spacing:14.988333px;}
.ls33{letter-spacing:15.059259px;}
.ls1c{letter-spacing:15.078765px;}
.ls21{letter-spacing:15.115227px;}
.ls23{letter-spacing:15.160980px;}
.ls22{letter-spacing:15.167078px;}
.ls24{letter-spacing:15.182788px;}
.ls2c{letter-spacing:15.227819px;}
.ls1a{letter-spacing:15.623965px;}
.ls1b{letter-spacing:15.629847px;}
.ls2f{letter-spacing:15.689108px;}
.ls2d{letter-spacing:15.705737px;}
.ls46{letter-spacing:16.015106px;}
.ls40{letter-spacing:16.676400px;}
.ls47{letter-spacing:16.951616px;}
.ls2b{letter-spacing:17.306318px;}
.ls39{letter-spacing:17.544600px;}
.ls15{letter-spacing:18.029472px;}
.ls3f{letter-spacing:18.560448px;}
.ls34{letter-spacing:18.588671px;}
.ls45{letter-spacing:23.144518px;}
.ls4{letter-spacing:57.415200px;}
.lsa{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.355200px;}
.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;}
}
.ws7{word-spacing:-14.943900px;}
.ws2f{word-spacing:-13.449600px;}
.ws49{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.wsc{word-spacing:-11.297556px;}
.ws10{word-spacing:-10.460700px;}
.wsda{word-spacing:-3.227882px;}
.ws75{word-spacing:-3.108331px;}
.ws102{word-spacing:-2.988780px;}
.ws11d{word-spacing:-2.869229px;}
.ws2a{word-spacing:-2.765780px;}
.ws106{word-spacing:-2.749678px;}
.ws29{word-spacing:-2.743718px;}
.wsef{word-spacing:-2.689902px;}
.wsf0{word-spacing:-2.645801px;}
.wsf1{word-spacing:-2.630126px;}
.ws41{word-spacing:-2.593992px;}
.ws43{word-spacing:-2.592252px;}
.ws42{word-spacing:-2.578454px;}
.ws44{word-spacing:-2.570351px;}
.ws36{word-spacing:-2.474726px;}
.wsc3{word-spacing:-2.450800px;}
.wsfd{word-spacing:-2.415795px;}
.wsfc{word-spacing:-2.391024px;}
.ws12a{word-spacing:-2.259533px;}
.ws27{word-spacing:-2.168315px;}
.ws26{word-spacing:-2.151936px;}
.ws87{word-spacing:-2.151922px;}
.ws12b{word-spacing:-2.044339px;}
.ws5c{word-spacing:-1.912819px;}
.ws9{word-spacing:-1.908367px;}
.wse6{word-spacing:-1.900396px;}
.wsa5{word-spacing:-1.853044px;}
.wsc0{word-spacing:-1.793268px;}
.ws117{word-spacing:-1.733492px;}
.ws16b{word-spacing:-1.673582px;}
.ws16c{word-spacing:-1.673148px;}
.ws16a{word-spacing:-1.667750px;}
.ws176{word-spacing:-1.653912px;}
.wsb8{word-spacing:-1.613952px;}
.ws37{word-spacing:-1.560154px;}
.wse7{word-spacing:-1.494390px;}
.ws4c{word-spacing:-1.434614px;}
.wsb9{word-spacing:-1.398758px;}
.ws81{word-spacing:-1.374839px;}
.ws8{word-spacing:-1.322630px;}
.ws100{word-spacing:-1.315063px;}
.ws127{word-spacing:-1.291162px;}
.ws8d{word-spacing:-1.255288px;}
.ws12c{word-spacing:-1.237363px;}
.ws5e{word-spacing:-1.195512px;}
.ws13b{word-spacing:-1.183565px;}
.ws83{word-spacing:-1.135736px;}
.ws13a{word-spacing:-1.129766px;}
.ws7b{word-spacing:-1.075961px;}
.wsee{word-spacing:-0.902285px;}
.wsed{word-spacing:-0.900903px;}
.wsec{word-spacing:-0.897940px;}
.wseb{word-spacing:-0.896634px;}
.ws28{word-spacing:-0.860774px;}
.wse9{word-spacing:-0.836858px;}
.ws6a{word-spacing:-0.777083px;}
.wscf{word-spacing:-0.753178px;}
.wsd0{word-spacing:-0.729370px;}
.ws88{word-spacing:-0.717307px;}
.wse{word-spacing:-0.669485px;}
.wsd{word-spacing:-0.629809px;}
.wsb{word-spacing:-0.627642px;}
.ws7e{word-spacing:-0.597756px;}
.ws17e{word-spacing:-0.484186px;}
.ws96{word-spacing:-0.430387px;}
.wsc1{word-spacing:-0.418429px;}
.wsb4{word-spacing:-0.390563px;}
.wsb3{word-spacing:-0.376589px;}
.ws71{word-spacing:-0.365706px;}
.ws70{word-spacing:-0.363800px;}
.ws72{word-spacing:-0.358654px;}
.ws3c{word-spacing:-0.298878px;}
.ws14d{word-spacing:-0.284182px;}
.ws10d{word-spacing:-0.275081px;}
.wsbb{word-spacing:-0.268992px;}
.wsf4{word-spacing:-0.252785px;}
.wsf6{word-spacing:-0.250601px;}
.wsf5{word-spacing:-0.249823px;}
.wsd4{word-spacing:-0.248318px;}
.ws95{word-spacing:-0.239222px;}
.ws5f{word-spacing:-0.239102px;}
.wsb5{word-spacing:-0.238789px;}
.ws142{word-spacing:-0.238409px;}
.ws94{word-spacing:-0.228006px;}
.wsfa{word-spacing:-0.218880px;}
.ws82{word-spacing:-0.216269px;}
.ws21{word-spacing:-0.215194px;}
.ws39{word-spacing:-0.179327px;}
.ws7a{word-spacing:-0.178534px;}
.ws5d{word-spacing:-0.165905px;}
.ws9f{word-spacing:-0.162564px;}
.ws34{word-spacing:-0.161395px;}
.ws53{word-spacing:-0.145678px;}
.ws63{word-spacing:-0.143642px;}
.wsff{word-spacing:-0.133754px;}
.ws16d{word-spacing:-0.119860px;}
.ws52{word-spacing:-0.119551px;}
.wsbf{word-spacing:-0.110760px;}
.ws9a{word-spacing:-0.107597px;}
.ws17a{word-spacing:-0.085191px;}
.ws168{word-spacing:-0.084431px;}
.ws6{word-spacing:-0.059776px;}
.ws93{word-spacing:-0.053798px;}
.wsf{word-spacing:-0.052280px;}
.ws1c{word-spacing:-0.047821px;}
.ws14a{word-spacing:-0.038186px;}
.ws73{word-spacing:-0.027268px;}
.wsa6{word-spacing:-0.025783px;}
.ws74{word-spacing:-0.012543px;}
.ws164{word-spacing:-0.011165px;}
.ws133{word-spacing:-0.009821px;}
.ws150{word-spacing:-0.009043px;}
.ws158{word-spacing:-0.008371px;}
.ws6b{word-spacing:-0.008125px;}
.ws155{word-spacing:-0.007037px;}
.ws175{word-spacing:-0.006816px;}
.wsaa{word-spacing:-0.006025px;}
.ws154{word-spacing:-0.005808px;}
.ws145{word-spacing:-0.005222px;}
.ws149{word-spacing:-0.005165px;}
.wsfe{word-spacing:-0.005156px;}
.ws57{word-spacing:-0.005117px;}
.wsf9{word-spacing:-0.004926px;}
.ws13f{word-spacing:-0.004714px;}
.ws170{word-spacing:-0.004349px;}
.ws14f{word-spacing:-0.004291px;}
.ws14e{word-spacing:-0.004282px;}
.ws4{word-spacing:-0.004208px;}
.ws132{word-spacing:-0.003821px;}
.ws169{word-spacing:-0.003754px;}
.wsf8{word-spacing:-0.003119px;}
.ws148{word-spacing:-0.002794px;}
.ws167{word-spacing:-0.002371px;}
.ws48{word-spacing:-0.002366px;}
.ws0{word-spacing:0.000000px;}
.ws143{word-spacing:0.001286px;}
.ws134{word-spacing:0.001709px;}
.wsa9{word-spacing:0.002305px;}
.ws15e{word-spacing:0.013705px;}
.wsde{word-spacing:0.020898px;}
.ws91{word-spacing:0.024172px;}
.ws16f{word-spacing:0.029149px;}
.ws186{word-spacing:0.037666px;}
.ws98{word-spacing:0.053798px;}
.ws56{word-spacing:0.059776px;}
.ws141{word-spacing:0.087768px;}
.ws76{word-spacing:0.095446px;}
.ws108{word-spacing:0.101515px;}
.ws109{word-spacing:0.107265px;}
.ws1e{word-spacing:0.107597px;}
.ws3f{word-spacing:0.119551px;}
.ws40{word-spacing:0.136815px;}
.wsdb{word-spacing:0.150060px;}
.ws46{word-spacing:0.154728px;}
.ws20{word-spacing:0.158627px;}
.ws1f{word-spacing:0.161395px;}
.wsc9{word-spacing:0.163522px;}
.wsa7{word-spacing:0.168207px;}
.wsdc{word-spacing:0.178720px;}
.ws3e{word-spacing:0.179327px;}
.ws2b{word-spacing:0.183099px;}
.ws1d{word-spacing:0.191282px;}
.wsdf{word-spacing:0.198284px;}
.ws62{word-spacing:0.209092px;}
.ws12{word-spacing:0.209214px;}
.ws123{word-spacing:0.215194px;}
.ws122{word-spacing:0.221597px;}
.ws61{word-spacing:0.226743px;}
.ws188{word-spacing:0.237234px;}
.ws59{word-spacing:0.239102px;}
.ws135{word-spacing:0.245944px;}
.ws10a{word-spacing:0.249276px;}
.ws173{word-spacing:0.267733px;}
.ws124{word-spacing:0.268992px;}
.ws10f{word-spacing:0.274002px;}
.ws14{word-spacing:0.292900px;}
.ws11f{word-spacing:0.297877px;}
.ws5a{word-spacing:0.298878px;}
.ws120{word-spacing:0.300001px;}
.ws18c{word-spacing:0.322790px;}
.ws89{word-spacing:0.358654px;}
.ws18d{word-spacing:0.376589px;}
.ws4a{word-spacing:0.418429px;}
.ws126{word-spacing:0.430387px;}
.wsae{word-spacing:0.474146px;}
.wsb2{word-spacing:0.474480px;}
.ws105{word-spacing:0.478205px;}
.wsb0{word-spacing:0.484186px;}
.ws4f{word-spacing:0.537980px;}
.ws64{word-spacing:0.597756px;}
.ws66{word-spacing:0.657532px;}
.ws68{word-spacing:0.659061px;}
.ws67{word-spacing:0.683731px;}
.ws9c{word-spacing:0.684765px;}
.ws97{word-spacing:0.710327px;}
.ws69{word-spacing:0.717307px;}
.ws16e{word-spacing:0.753178px;}
.ws54{word-spacing:0.777083px;}
.ws138{word-spacing:0.806976px;}
.wsba{word-spacing:0.847387px;}
.wsb1{word-spacing:0.853511px;}
.wsf7{word-spacing:0.894454px;}
.wsd5{word-spacing:0.896634px;}
.wsd3{word-spacing:0.914573px;}
.ws3b{word-spacing:0.956410px;}
.ws121{word-spacing:0.970701px;}
.ws10e{word-spacing:0.982236px;}
.ws50{word-spacing:1.016185px;}
.ws11c{word-spacing:1.070137px;}
.wsa4{word-spacing:1.075961px;}
.ws163{word-spacing:1.075968px;}
.ws113{word-spacing:1.120885px;}
.ws35{word-spacing:1.127510px;}
.wsa0{word-spacing:1.135736px;}
.wsd1{word-spacing:1.183565px;}
.ws7f{word-spacing:1.195512px;}
.ws4d{word-spacing:1.255288px;}
.ws24{word-spacing:1.259174px;}
.ws25{word-spacing:1.267504px;}
.ws22{word-spacing:1.291162px;}
.ws101{word-spacing:1.301134px;}
.ws78{word-spacing:1.315063px;}
.ws130{word-spacing:1.344960px;}
.wse4{word-spacing:1.374839px;}
.wsc2{word-spacing:1.434614px;}
.ws92{word-spacing:1.459188px;}
.ws79{word-spacing:1.483689px;}
.ws6e{word-spacing:1.494390px;}
.wsea{word-spacing:1.550374px;}
.wsd7{word-spacing:1.554166px;}
.wsd2{word-spacing:1.560154px;}
.wsaf{word-spacing:1.581275px;}
.ws4b{word-spacing:1.613941px;}
.wsc7{word-spacing:1.616569px;}
.ws7d{word-spacing:1.622729px;}
.ws7c{word-spacing:1.673717px;}
.wsbd{word-spacing:1.721537px;}
.wsbe{word-spacing:1.721549px;}
.ws58{word-spacing:1.793268px;}
.ws185{word-spacing:1.829146px;}
.ws65{word-spacing:1.848192px;}
.ws11b{word-spacing:1.853044px;}
.ws13e{word-spacing:1.882944px;}
.wse3{word-spacing:1.912819px;}
.ws13d{word-spacing:1.936742px;}
.wsfb{word-spacing:1.972595px;}
.ws161{word-spacing:1.990541px;}
.ws13{word-spacing:2.008454px;}
.ws3d{word-spacing:2.032370px;}
.ws128{word-spacing:2.044339px;}
.ws8e{word-spacing:2.092146px;}
.ws165{word-spacing:2.098138px;}
.ws8b{word-spacing:2.151922px;}
.ws33{word-spacing:2.151936px;}
.ws157{word-spacing:2.205734px;}
.wsbc{word-spacing:2.259533px;}
.ws116{word-spacing:2.271473px;}
.wsb6{word-spacing:2.331248px;}
.ws23{word-spacing:2.387157px;}
.wsb7{word-spacing:2.391024px;}
.ws171{word-spacing:2.474726px;}
.ws9d{word-spacing:2.510575px;}
.ws9e{word-spacing:2.570351px;}
.ws14c{word-spacing:2.582323px;}
.ws99{word-spacing:2.743718px;}
.wsc8{word-spacing:2.797517px;}
.wsdd{word-spacing:2.809453px;}
.wsac{word-spacing:2.851315px;}
.wsad{word-spacing:2.867473px;}
.ws3a{word-spacing:2.869229px;}
.ws103{word-spacing:2.988780px;}
.ws11e{word-spacing:3.048192px;}
.ws8f{word-spacing:3.053560px;}
.ws189{word-spacing:3.066509px;}
.ws11a{word-spacing:3.082409px;}
.ws184{word-spacing:3.092767px;}
.ws90{word-spacing:3.108331px;}
.ws110{word-spacing:3.118092px;}
.ws183{word-spacing:3.120307px;}
.ws60{word-spacing:3.168107px;}
.wsab{word-spacing:3.174106px;}
.ws13c{word-spacing:3.218035px;}
.ws152{word-spacing:3.219466px;}
.ws147{word-spacing:3.219571px;}
.ws18b{word-spacing:3.219869px;}
.ws15f{word-spacing:3.220118px;}
.ws15d{word-spacing:3.220963px;}
.ws146{word-spacing:3.221030px;}
.ws18f{word-spacing:3.221232px;}
.ws144{word-spacing:3.221798px;}
.ws15c{word-spacing:3.222250px;}
.ws151{word-spacing:3.222326px;}
.ws17f{word-spacing:3.222576px;}
.ws136{word-spacing:3.223469px;}
.ws166{word-spacing:3.224774px;}
.ws159{word-spacing:3.225379px;}
.ws14b{word-spacing:3.225571px;}
.ws174{word-spacing:3.225619px;}
.ws137{word-spacing:3.225869px;}
.ws17b{word-spacing:3.227030px;}
.ws15b{word-spacing:3.227251px;}
.ws18a{word-spacing:3.227798px;}
.ws131{word-spacing:3.227904px;}
.ws177{word-spacing:3.228883px;}
.wsc6{word-spacing:3.335501px;}
.wse5{word-spacing:3.347434px;}
.ws45{word-spacing:3.466985px;}
.ws2c{word-spacing:3.550694px;}
.ws107{word-spacing:3.554075px;}
.ws2d{word-spacing:3.567473px;}
.ws38{word-spacing:3.586536px;}
.wsc5{word-spacing:3.646312px;}
.wse2{word-spacing:3.706087px;}
.ws12e{word-spacing:3.712090px;}
.ws18e{word-spacing:3.819686px;}
.ws8a{word-spacing:3.825638px;}
.wsd9{word-spacing:3.885414px;}
.ws47{word-spacing:3.913538px;}
.ws5b{word-spacing:3.945190px;}
.ws17c{word-spacing:4.034880px;}
.wsa1{word-spacing:4.064741px;}
.ws32{word-spacing:4.088678px;}
.ws172{word-spacing:4.142477px;}
.ws160{word-spacing:4.196275px;}
.wsa8{word-spacing:4.303843px;}
.ws30{word-spacing:4.465267px;}
.ws2e{word-spacing:4.519066px;}
.ws112{word-spacing:4.542946px;}
.ws114{word-spacing:4.635806px;}
.ws115{word-spacing:4.645713px;}
.wsc4{word-spacing:4.662497px;}
.ws153{word-spacing:4.680461px;}
.ws31{word-spacing:4.734259px;}
.ws111{word-spacing:4.841824px;}
.ws9b{word-spacing:4.901599px;}
.ws181{word-spacing:4.916563px;}
.ws182{word-spacing:4.921125px;}
.ws180{word-spacing:4.949453px;}
.wsca{word-spacing:5.110848px;}
.ws6f{word-spacing:5.140702px;}
.ws51{word-spacing:5.260253px;}
.ws104{word-spacing:5.320028px;}
.ws125{word-spacing:5.326042px;}
.ws8c{word-spacing:5.379804px;}
.ws12f{word-spacing:5.487437px;}
.ws129{word-spacing:5.541235px;}
.ws179{word-spacing:5.756429px;}
.wsa3{word-spacing:5.858009px;}
.wse8{word-spacing:5.963737px;}
.ws84{word-spacing:5.977560px;}
.ws15a{word-spacing:6.025421px;}
.ws86{word-spacing:6.037336px;}
.ws1a{word-spacing:6.067206px;}
.ws55{word-spacing:6.097111px;}
.ws140{word-spacing:6.133018px;}
.ws1b{word-spacing:6.150892px;}
.ws139{word-spacing:6.186816px;}
.ws77{word-spacing:6.216662px;}
.ws4e{word-spacing:6.575316px;}
.wsce{word-spacing:6.933970px;}
.wsf2{word-spacing:6.993745px;}
.ws12d{word-spacing:7.316582px;}
.ws10c{word-spacing:7.352399px;}
.ws10b{word-spacing:7.412174px;}
.wsf3{word-spacing:7.471950px;}
.ws6d{word-spacing:7.591501px;}
.wscc{word-spacing:7.713222px;}
.wscb{word-spacing:7.770828px;}
.wse1{word-spacing:8.129482px;}
.wse0{word-spacing:8.164990px;}
.ws80{word-spacing:8.189257px;}
.wsd6{word-spacing:8.249033px;}
.ws118{word-spacing:8.428360px;}
.ws156{word-spacing:8.446349px;}
.wsa2{word-spacing:8.547911px;}
.ws18{word-spacing:8.661460px;}
.ws6c{word-spacing:8.787013px;}
.wsd8{word-spacing:8.846789px;}
.ws85{word-spacing:8.906564px;}
.ws187{word-spacing:9.199526px;}
.ws119{word-spacing:9.671722px;}
.ws162{word-spacing:9.683712px;}
.ws17d{word-spacing:10.329293px;}
.wscd{word-spacing:10.400954px;}
.ws11{word-spacing:15.481836px;}
.wsa{word-spacing:15.483541px;}
.ws15{word-spacing:16.142252px;}
.ws16{word-spacing:16.151321px;}
.ws17{word-spacing:17.699504px;}
.ws178{word-spacing:17.968666px;}
.ws2{word-spacing:26.784048px;}
.ws1{word-spacing:26.791603px;}
.ws19{word-spacing:27.448877px;}
.ws5{word-spacing:40.042186px;}
._1{margin-left:-11.943245px;}
._18{margin-left:-7.112816px;}
._a{margin-left:-5.292959px;}
._5{margin-left:-3.849538px;}
._20{margin-left:-2.819846px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._2{width:3.001662px;}
._d{width:4.303872px;}
._f{width:9.986520px;}
._6{width:11.690874px;}
._7{width:12.971268px;}
._8{width:14.268498px;}
._c{width:15.601536px;}
._b{width:17.290002px;}
._10{width:18.769538px;}
._1c{width:19.785724px;}
._14{width:21.578992px;}
._17{width:22.595177px;}
._e{width:23.766971px;}
._19{width:24.959131px;}
._22{width:26.536236px;}
._1f{width:28.154308px;}
._0{width:29.342938px;}
._1b{width:30.732226px;}
._9{width:32.637384px;}
._15{width:34.729624px;}
._16{width:37.359750px;}
._13{width:38.854140px;}
._1d{width:41.073404px;}
._1a{width:43.695964px;}
._21{width:61.868160px;}
._11{width:413.436230px;}
._1e{width:2411.334389px;}
._12{width:2435.244389px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,61);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsd{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:109.609560px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.425340px;}
.ya{bottom:14.151273px;}
.y2{bottom:16.704213px;}
.y4f{bottom:31.890000px;}
.y175{bottom:86.973000px;}
.y15c{bottom:89.011500px;}
.yf9{bottom:91.005000px;}
.y1ef{bottom:92.236500px;}
.y141{bottom:92.982000px;}
.y225{bottom:96.361500px;}
.y1f0{bottom:97.119000px;}
.y25{bottom:102.823500px;}
.y25d{bottom:103.557000px;}
.y121{bottom:104.298000px;}
.y174{bottom:106.206000px;}
.y1d7{bottom:106.695000px;}
.y1ae{bottom:107.040000px;}
.y15b{bottom:107.841000px;}
.y4e{bottom:108.258000px;}
.ybc{bottom:108.489000px;}
.yf8{bottom:109.834500px;}
.y1ee{bottom:110.281500px;}
.y140{bottom:111.811500px;}
.y224{bottom:113.622000px;}
.y24{bottom:120.711000px;}
.y25c{bottom:120.817500px;}
.y120{bottom:123.127500px;}
.y172{bottom:125.439000px;}
.y1d6{bottom:125.524500px;}
.y1ad{bottom:125.869500px;}
.y85{bottom:126.403500px;}
.y15a{bottom:126.670500px;}
.y4d{bottom:127.087500px;}
.ybb{bottom:127.318500px;}
.y1ec{bottom:128.326500px;}
.yf7{bottom:128.662500px;}
.y173{bottom:130.321500px;}
.y13f{bottom:130.641000px;}
.y223{bottom:130.882500px;}
.y1ed{bottom:133.209000px;}
.y25b{bottom:138.078000px;}
.y23{bottom:138.600000px;}
.yba{bottom:143.418000px;}
.y1d5{bottom:144.354000px;}
.y171{bottom:144.672000px;}
.y1ac{bottom:144.699000px;}
.y84{bottom:145.233000px;}
.y159{bottom:145.500000px;}
.y4c{bottom:145.917000px;}
.yb8{bottom:146.148000px;}
.y1eb{bottom:146.371500px;}
.y11f{bottom:146.439000px;}
.yf6{bottom:147.492000px;}
.y222{bottom:148.143000px;}
.y13e{bottom:149.469000px;}
.yb9{bottom:151.572000px;}
.y25a{bottom:155.338500px;}
.y22{bottom:156.487500px;}
.y11e{bottom:162.130500px;}
.y1d4{bottom:163.183500px;}
.y1ab{bottom:163.528500px;}
.y83{bottom:164.062500px;}
.y158{bottom:164.329500px;}
.y1ea{bottom:164.416500px;}
.y4b{bottom:164.746500px;}
.yb7{bottom:164.977500px;}
.y221{bottom:165.403500px;}
.yf4{bottom:166.321500px;}
.y13d{bottom:168.298500px;}
.yf5{bottom:171.747000px;}
.y259{bottom:172.599000px;}
.y21{bottom:174.375000px;}
.y11d{bottom:177.822000px;}
.y1d3{bottom:182.013000px;}
.y1aa{bottom:182.358000px;}
.y220{bottom:182.664000px;}
.y82{bottom:182.892000px;}
.y157{bottom:183.159000px;}
.y4a{bottom:183.576000px;}
.yb6{bottom:183.807000px;}
.yf3{bottom:185.151000px;}
.y13c{bottom:187.128000px;}
.y258{bottom:189.858000px;}
.y20{bottom:192.264000px;}
.y21f{bottom:199.924500px;}
.y1e9{bottom:200.394000px;}
.y1d2{bottom:200.842500px;}
.y1a9{bottom:201.187500px;}
.y81{bottom:201.721500px;}
.y156{bottom:201.988500px;}
.y49{bottom:202.405500px;}
.yb5{bottom:202.636500px;}
.yf2{bottom:203.980500px;}
.y13b{bottom:205.957500px;}
.y257{bottom:207.118500px;}
.y11c{bottom:208.716000px;}
.y1f{bottom:210.151500px;}
.y11b{bottom:211.446000px;}
.y21e{bottom:217.185000px;}
.y1e8{bottom:219.223500px;}
.y1d1{bottom:219.672000px;}
.y1a8{bottom:220.017000px;}
.y80{bottom:220.551000px;}
.y155{bottom:220.818000px;}
.y48{bottom:221.235000px;}
.yb4{bottom:221.466000px;}
.y256{bottom:224.379000px;}
.y13a{bottom:224.787000px;}
.yf1{bottom:227.293500px;}
.y1e{bottom:228.039000px;}
.y11a{bottom:230.275500px;}
.y21d{bottom:234.444000px;}
.y1e7{bottom:238.053000px;}
.y1d0{bottom:238.501500px;}
.y1a7{bottom:238.846500px;}
.y7f{bottom:239.380500px;}
.y154{bottom:239.647500px;}
.y47{bottom:240.064500px;}
.y255{bottom:241.639500px;}
.yf0{bottom:242.985000px;}
.y139{bottom:243.616500px;}
.y119{bottom:249.105000px;}
.y21c{bottom:251.704500px;}
.y1e6{bottom:256.882500px;}
.y1cf{bottom:257.331000px;}
.y1a6{bottom:257.674500px;}
.y7e{bottom:258.210000px;}
.y153{bottom:258.477000px;}
.y46{bottom:258.894000px;}
.y254{bottom:258.900000px;}
.yb3{bottom:260.469000px;}
.y138{bottom:262.446000px;}
.yef{bottom:263.158500px;}
.y118{bottom:267.934500px;}
.y21b{bottom:268.965000px;}
.y1e5{bottom:275.712000px;}
.y1ce{bottom:276.160500px;}
.y1a5{bottom:276.504000px;}
.y7d{bottom:277.039500px;}
.y152{bottom:277.306500px;}
.y45{bottom:277.723500px;}
.y21a{bottom:286.225500px;}
.y117{bottom:286.764000px;}
.y253{bottom:293.421000px;}
.yb2{bottom:294.093000px;}
.y1e4{bottom:294.541500px;}
.y1cd{bottom:294.990000px;}
.y1a4{bottom:295.333500px;}
.y7c{bottom:295.869000px;}
.y137{bottom:296.011500px;}
.y151{bottom:296.136000px;}
.y44{bottom:296.553000px;}
.yee{bottom:296.782500px;}
.y219{bottom:303.486000px;}
.y116{bottom:305.593500px;}
.y1d{bottom:307.299000px;}
.y252{bottom:310.681500px;}
.yb1{bottom:312.922500px;}
.y1e3{bottom:313.371000px;}
.y1cc{bottom:313.819500px;}
.y1a3{bottom:314.163000px;}
.y7b{bottom:314.698500px;}
.y150{bottom:314.965500px;}
.y136{bottom:315.244500px;}
.yed{bottom:315.612000px;}
.y43{bottom:319.866000px;}
.y218{bottom:320.746500px;}
.y114{bottom:324.423000px;}
.y1c{bottom:325.186500px;}
.y251{bottom:327.940500px;}
.y115{bottom:329.847000px;}
.yb0{bottom:331.752000px;}
.y1e2{bottom:332.200500px;}
.y1cb{bottom:332.649000px;}
.y1a2{bottom:332.992500px;}
.y7a{bottom:333.528000px;}
.y14f{bottom:333.795000px;}
.yec{bottom:334.441500px;}
.y134{bottom:334.477500px;}
.y217{bottom:338.007000px;}
.y135{bottom:339.360000px;}
.y1b{bottom:343.074000px;}
.y113{bottom:343.252500px;}
.y250{bottom:345.201000px;}
.yaf{bottom:350.581500px;}
.y1e1{bottom:351.030000px;}
.y1ca{bottom:351.478500px;}
.y1a1{bottom:351.822000px;}
.y14e{bottom:352.624500px;}
.yeb{bottom:353.271000px;}
.y133{bottom:353.710500px;}
.y216{bottom:355.267500px;}
.y79{bottom:356.839500px;}
.y1a{bottom:360.963000px;}
.y112{bottom:362.082000px;}
.y24f{bottom:362.461500px;}
.yae{bottom:369.411000px;}
.y1e0{bottom:369.859500px;}
.y1c9{bottom:370.308000px;}
.y1a0{bottom:370.651500px;}
.ye9{bottom:372.100500px;}
.y215{bottom:372.528000px;}
.y131{bottom:372.943500px;}
.y14d{bottom:375.936000px;}
.y78{bottom:377.014500px;}
.yea{bottom:377.526000px;}
.y132{bottom:377.826000px;}
.y24e{bottom:379.722000px;}
.y111{bottom:380.911500px;}
.yad{bottom:388.240500px;}
.y1df{bottom:388.689000px;}
.y1c8{bottom:389.137500px;}
.y19e{bottom:389.481000px;}
.y214{bottom:389.787000px;}
.y14c{bottom:391.627500px;}
.y12f{bottom:392.176500px;}
.y42{bottom:393.765000px;}
.y19f{bottom:394.906500px;}
.ye8{bottom:395.413500px;}
.y24d{bottom:396.982500px;}
.y130{bottom:397.059000px;}
.y19{bottom:399.024000px;}
.y110{bottom:399.741000px;}
.y213{bottom:407.047500px;}
.yac{bottom:407.070000px;}
.y1de{bottom:407.518500px;}
.y1c7{bottom:407.967000px;}
.y19c{bottom:408.310500px;}
.y77{bottom:410.638500px;}
.y12e{bottom:411.409500px;}
.y41{bottom:413.223000px;}
.y19d{bottom:413.736000px;}
.y24c{bottom:414.243000px;}
.y18{bottom:416.913000px;}
.y10f{bottom:418.570500px;}
.y212{bottom:424.308000px;}
.yab{bottom:425.899500px;}
.y1dd{bottom:426.348000px;}
.y14b{bottom:426.538500px;}
.y1c6{bottom:426.796500px;}
.y19b{bottom:427.140000px;}
.ye7{bottom:429.037500px;}
.y76{bottom:429.468000px;}
.y12d{bottom:430.642500px;}
.y24a{bottom:431.503500px;}
.y17{bottom:434.800500px;}
.y24b{bottom:436.386000px;}
.y10e{bottom:437.400000px;}
.y211{bottom:441.568500px;}
.yaa{bottom:444.729000px;}
.y1dc{bottom:445.177500px;}
.y1c5{bottom:445.626000px;}
.y14a{bottom:445.771500px;}
.y19a{bottom:445.969500px;}
.ye6{bottom:447.867000px;}
.y75{bottom:448.297500px;}
.y249{bottom:448.764000px;}
.y12c{bottom:449.875500px;}
.y40{bottom:450.612000px;}
.y10d{bottom:453.499500px;}
.y10c{bottom:456.229500px;}
.y210{bottom:458.829000px;}
.ya9{bottom:463.558500px;}
.y1db{bottom:464.007000px;}
.y1c4{bottom:464.454000px;}
.y199{bottom:464.799000px;}
.y149{bottom:465.004500px;}
.y248{bottom:466.024500px;}
.ye5{bottom:466.696500px;}
.y74{bottom:467.127000px;}
.y3f{bottom:470.070000px;}
.y16{bottom:470.622000px;}
.y10b{bottom:472.329000px;}
.y10a{bottom:475.059000px;}
.y20f{bottom:476.089500px;}
.ya8{bottom:482.388000px;}
.y1c3{bottom:483.283500px;}
.y198{bottom:483.628500px;}
.y148{bottom:484.237500px;}
.ye4{bottom:485.526000px;}
.y73{bottom:485.956500px;}
.y1da{bottom:487.318500px;}
.y170{bottom:489.468000px;}
.y3e{bottom:489.526500px;}
.y20e{bottom:493.350000px;}
.y109{bottom:493.888500px;}
.y247{bottom:500.544000px;}
.y1c2{bottom:502.113000px;}
.y197{bottom:502.458000px;}
.y147{bottom:503.470500px;}
.ye3{bottom:504.355500px;}
.y72{bottom:504.786000px;}
.ya7{bottom:505.701000px;}
.y15{bottom:506.442000px;}
.y16f{bottom:508.297500px;}
.y3c{bottom:508.983000px;}
.y20d{bottom:510.610500px;}
.y108{bottom:512.716500px;}
.y3d{bottom:513.865500px;}
.y246{bottom:517.804500px;}
.y1c1{bottom:520.942500px;}
.y196{bottom:521.287500px;}
.y145{bottom:522.703500px;}
.ye1{bottom:523.185000px;}
.y71{bottom:523.615500px;}
.y14{bottom:524.329500px;}
.y16e{bottom:527.127000px;}
.y146{bottom:527.584500px;}
.y3b{bottom:528.441000px;}
.ye2{bottom:528.609000px;}
.y20c{bottom:532.353000px;}
.y245{bottom:535.065000px;}
.ya6{bottom:539.323500px;}
.y1c0{bottom:539.772000px;}
.y195{bottom:540.117000px;}
.y144{bottom:541.935000px;}
.ydf{bottom:542.014500px;}
.y13{bottom:542.218500px;}
.y70{bottom:542.445000px;}
.y16c{bottom:545.956500px;}
.y107{bottom:546.283500px;}
.ye0{bottom:547.438500px;}
.y3a{bottom:547.897500px;}
.y16d{bottom:551.380500px;}
.y244{bottom:552.325500px;}
.ya5{bottom:558.153000px;}
.y1be{bottom:558.601500px;}
.y193{bottom:558.946500px;}
.y12{bottom:560.106000px;}
.ydd{bottom:560.844000px;}
.y142{bottom:561.168000px;}
.y6f{bottom:561.274500px;}
.y1bf{bottom:564.027000px;}
.y194{bottom:564.370500px;}
.y16b{bottom:564.786000px;}
.y106{bottom:565.516500px;}
.y20b{bottom:565.977000px;}
.y143{bottom:566.050500px;}
.yde{bottom:566.268000px;}
.y39{bottom:567.354000px;}
.y243{bottom:569.586000px;}
.ya4{bottom:576.982500px;}
.y1bd{bottom:577.431000px;}
.y192{bottom:577.776000px;}
.y11{bottom:577.993500px;}
.ydc{bottom:579.673500px;}
.y6d{bottom:580.104000px;}
.y16a{bottom:583.615500px;}
.y104{bottom:584.748000px;}
.y6e{bottom:585.528000px;}
.y38{bottom:586.812000px;}
.y242{bottom:586.846500px;}
.y105{bottom:589.630500px;}
.y20a{bottom:592.518000px;}
.ya3{bottom:595.812000px;}
.y10{bottom:595.882500px;}
.y1bc{bottom:596.260500px;}
.y191{bottom:596.605500px;}
.ydb{bottom:598.503000px;}
.y6c{bottom:598.932000px;}
.y103{bottom:603.981000px;}
.y241{bottom:604.107000px;}
.y37{bottom:606.268500px;}
.y209{bottom:610.092000px;}
.yf{bottom:613.770000px;}
.ya2{bottom:614.641500px;}
.y1bb{bottom:615.090000px;}
.y190{bottom:615.435000px;}
.y169{bottom:617.181000px;}
.yda{bottom:617.332500px;}
.y6b{bottom:617.761500px;}
.y240{bottom:621.366000px;}
.y102{bottom:623.214000px;}
.y36{bottom:625.726500px;}
.ye{bottom:631.657500px;}
.ya1{bottom:633.471000px;}
.y1ba{bottom:633.919500px;}
.y18f{bottom:634.264500px;}
.yd9{bottom:636.162000px;}
.y168{bottom:636.414000px;}
.y6a{bottom:636.591000px;}
.y208{bottom:636.633000px;}
.y23e{bottom:638.626500px;}
.y101{bottom:642.447000px;}
.y23f{bottom:643.509000px;}
.y35{bottom:645.183000px;}
.yd{bottom:649.546500px;}
.ya0{bottom:652.300500px;}
.y1b9{bottom:652.749000px;}
.y18e{bottom:653.094000px;}
.y207{bottom:654.207000px;}
.yd8{bottom:654.991500px;}
.y69{bottom:655.420500px;}
.y166{bottom:655.647000px;}
.y23d{bottom:655.887000px;}
.y1d9{bottom:658.174500px;}
.y167{bottom:660.528000px;}
.y100{bottom:661.680000px;}
.y34{bottom:664.639500px;}
.yc{bottom:667.434000px;}
.y9f{bottom:671.130000px;}
.y1b8{bottom:671.578500px;}
.y18d{bottom:671.923500px;}
.y23c{bottom:673.147500px;}
.yd7{bottom:673.821000px;}
.y68{bottom:674.250000px;}
.y165{bottom:674.880000px;}
.y206{bottom:680.746500px;}
.yfe{bottom:680.913000px;}
.y33{bottom:684.097500px;}
.yff{bottom:685.795500px;}
.y9{bottom:689.805055px;}
.y9e{bottom:689.959500px;}
.y1b7{bottom:690.408000px;}
.y18c{bottom:690.753000px;}
.yd6{bottom:692.650500px;}
.y67{bottom:693.079500px;}
.y164{bottom:694.111500px;}
.yfd{bottom:700.146000px;}
.y32{bottom:703.554000px;}
.y205{bottom:707.287500px;}
.y23b{bottom:707.668500px;}
.y9d{bottom:708.789000px;}
.y1b6{bottom:709.237500px;}
.y18b{bottom:709.582500px;}
.y66{bottom:711.909000px;}
.y260{bottom:712.551000px;}
.y163{bottom:713.344500px;}
.yd5{bottom:715.962000px;}
.yfb{bottom:719.379000px;}
.y31{bottom:723.010500px;}
.yfc{bottom:724.260000px;}
.y204{bottom:724.861500px;}
.y23a{bottom:724.929000px;}
.y9c{bottom:727.618500px;}
.y1b5{bottom:728.067000px;}
.y18a{bottom:728.412000px;}
.y65{bottom:730.738500px;}
.y162{bottom:732.577500px;}
.yfa{bottom:738.612000px;}
.y239{bottom:742.189500px;}
.y203{bottom:742.435500px;}
.y9b{bottom:746.448000px;}
.y1b4{bottom:746.896500px;}
.y189{bottom:747.241500px;}
.y64{bottom:749.568000px;}
.yd4{bottom:749.586000px;}
.y160{bottom:751.810500px;}
.y1d8{bottom:752.320500px;}
.y161{bottom:756.693000px;}
.y238{bottom:759.450000px;}
.y202{bottom:760.009500px;}
.y30{bottom:761.596500px;}
.y9a{bottom:765.277500px;}
.y1b3{bottom:765.726000px;}
.y188{bottom:766.069500px;}
.y63{bottom:768.397500px;}
.yd3{bottom:768.415500px;}
.y15e{bottom:771.043500px;}
.y15f{bottom:775.926000px;}
.y237{bottom:776.709000px;}
.y201{bottom:777.583500px;}
.y2f{bottom:777.736500px;}
.y99{bottom:784.107000px;}
.y1b2{bottom:784.555500px;}
.y187{bottom:784.899000px;}
.y62{bottom:787.227000px;}
.yd2{bottom:787.245000px;}
.y15d{bottom:790.276500px;}
.y2e{bottom:793.875000px;}
.y236{bottom:793.969500px;}
.y98{bottom:802.936500px;}
.y12b{bottom:803.385000px;}
.y186{bottom:803.728500px;}
.y200{bottom:804.124500px;}
.y61{bottom:806.056500px;}
.yd1{bottom:806.074500px;}
.y2d{bottom:810.015000px;}
.y235{bottom:811.230000px;}
.y1ff{bottom:821.698500px;}
.y97{bottom:821.766000px;}
.y12a{bottom:822.214500px;}
.y185{bottom:822.558000px;}
.y60{bottom:824.886000px;}
.yd0{bottom:824.904000px;}
.y234{bottom:828.490500px;}
.y2c{bottom:830.494500px;}
.y1fe{bottom:839.272500px;}
.y96{bottom:840.595500px;}
.y129{bottom:841.044000px;}
.y184{bottom:841.387500px;}
.y2b{bottom:842.295000px;}
.y5f{bottom:843.715500px;}
.ycf{bottom:843.733500px;}
.y233{bottom:845.751000px;}
.y1fd{bottom:856.846500px;}
.y2a{bottom:858.433500px;}
.y94{bottom:859.425000px;}
.y128{bottom:859.873500px;}
.y183{bottom:860.217000px;}
.y5e{bottom:862.545000px;}
.ycd{bottom:862.563000px;}
.y29{bottom:862.773000px;}
.y232{bottom:863.011500px;}
.y95{bottom:864.849000px;}
.yce{bottom:867.987000px;}
.y1fc{bottom:874.420500px;}
.y28{bottom:874.573500px;}
.y93{bottom:878.254500px;}
.ycc{bottom:878.662500px;}
.y127{bottom:878.703000px;}
.y182{bottom:879.046500px;}
.y231{bottom:880.272000px;}
.y5d{bottom:881.374500px;}
.yca{bottom:881.392500px;}
.ycb{bottom:886.816500px;}
.y27{bottom:890.713500px;}
.y1fb{bottom:891.996000px;}
.y92{bottom:897.084000px;}
.y126{bottom:897.532500px;}
.y181{bottom:897.876000px;}
.y5c{bottom:900.204000px;}
.yc8{bottom:900.222000px;}
.y25f{bottom:902.413500px;}
.yc9{bottom:905.646000px;}
.y1fa{bottom:909.570000px;}
.y26{bottom:911.193000px;}
.y25e{bottom:914.791500px;}
.y230{bottom:914.793000px;}
.y91{bottom:915.913500px;}
.y125{bottom:916.362000px;}
.y180{bottom:916.705500px;}
.y5b{bottom:919.033500px;}
.yc7{bottom:919.051500px;}
.y22f{bottom:932.052000px;}
.y8f{bottom:934.743000px;}
.y124{bottom:935.191500px;}
.y17f{bottom:935.535000px;}
.y1f9{bottom:936.109500px;}
.y5a{bottom:937.863000px;}
.yc6{bottom:937.881000px;}
.y90{bottom:940.167000px;}
.y22e{bottom:949.312500px;}
.y8{bottom:951.385500px;}
.y1f8{bottom:953.683500px;}
.yc5{bottom:953.980500px;}
.y123{bottom:954.021000px;}
.y59{bottom:956.692500px;}
.yc3{bottom:956.710500px;}
.y8e{bottom:958.054500px;}
.y17e{bottom:958.848000px;}
.y1b1{bottom:959.445000px;}
.yc4{bottom:962.134500px;}
.y22d{bottom:966.573000px;}
.y7{bottom:970.215000px;}
.y1f7{bottom:971.259000px;}
.y122{bottom:972.849000px;}
.y58{bottom:975.522000px;}
.yc1{bottom:975.540000px;}
.yc2{bottom:980.964000px;}
.y22c{bottom:983.833500px;}
.y17d{bottom:986.062500px;}
.y1f6{bottom:988.833000px;}
.y8d{bottom:991.678500px;}
.y57{bottom:994.351500px;}
.yc0{bottom:994.369500px;}
.y1b0{bottom:997.104000px;}
.y22b{bottom:1001.094000px;}
.y17c{bottom:1005.295500px;}
.y1f5{bottom:1006.407000px;}
.y8c{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y56{bottom:1013.181000px;}
.ybf{bottom:1013.199000px;}
.y22a{bottom:1018.354500px;}
.y1f4{bottom:1023.981000px;}
.y17a{bottom:1024.528500px;}
.y8a{bottom:1029.337500px;}
.y17b{bottom:1029.409500px;}
.y55{bottom:1032.010500px;}
.y8b{bottom:1034.763000px;}
.y229{bottom:1035.615000px;}
.ybe{bottom:1036.510500px;}
.y5{bottom:1041.199500px;}
.y178{bottom:1043.761500px;}
.y89{bottom:1048.167000px;}
.y179{bottom:1048.642500px;}
.y1f3{bottom:1050.520500px;}
.y54{bottom:1050.840000px;}
.ybd{bottom:1052.202000px;}
.y228{bottom:1052.875500px;}
.y177{bottom:1062.993000px;}
.y88{bottom:1066.996500px;}
.y1f2{bottom:1068.565500px;}
.y4{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y227{bottom:1070.134500px;}
.y176{bottom:1082.226000px;}
.y87{bottom:1085.826000px;}
.y1f1{bottom:1086.610500px;}
.y226{bottom:1087.395000px;}
.y52{bottom:1088.499000px;}
.y1af{bottom:1091.251500px;}
.y3{bottom:1097.688000px;}
.y86{bottom:1104.655500px;}
.y51{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.h13{height:25.339046px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.h17{height:28.154308px;}
.h1f{height:29.037733px;}
.hc{height:30.461558px;}
.hd{height:30.670772px;}
.h1b{height:31.526842px;}
.h19{height:33.072749px;}
.hb{height:33.112997px;}
.h21{height:33.299897px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h18{height:35.052500px;}
.h1e{height:37.334628px;}
.h14{height:37.658880px;}
.h10{height:38.734848px;}
.h12{height:39.165235px;}
.h11{height:39.434227px;}
.h1c{height:41.482876px;}
.h1a{height:41.842920px;}
.h15{height:43.038432px;}
.h16{height:43.516637px;}
.h4{height:43.815515px;}
.h20{height:49.991558px;}
.h2{height:50.930649px;}
.h1d{height:53.228842px;}
.h7{height:54.405312px;}
.h8{height:54.411312px;}
.h3{height:74.315282px;}
.h6{height:77.469696px;}
.h5{height:78.115277px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:240.774407px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.056593px;}
.xab{left:85.890000px;}
.xaf{left:97.089000px;}
.xb0{left:106.348500px;}
.xac{left:142.572000px;}
.xb7{left:222.654000px;}
.xb8{left:230.961000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x103{left:261.055500px;}
.x51{left:262.954500px;}
.x55{left:264.795000px;}
.x97{left:266.256000px;}
.x7{left:269.415000px;}
.x5{left:271.221000px;}
.x52{left:273.243000px;}
.x56{left:274.936500px;}
.x47{left:277.161000px;}
.xa4{left:279.604500px;}
.x16{left:282.786000px;}
.x48{left:286.390500px;}
.x104{left:288.730500px;}
.xc2{left:290.965500px;}
.xa5{left:293.067000px;}
.xa7{left:297.474000px;}
.x37{left:300.625500px;}
.xa6{left:302.397000px;}
.xdd{left:305.679000px;}
.x24{left:306.691500px;}
.x89{left:308.112000px;}
.x8{left:309.646500px;}
.xa1{left:311.320500px;}
.x25{left:314.163000px;}
.x38{left:315.568500px;}
.x100{left:317.175000px;}
.x6a{left:319.083000px;}
.x15{left:320.859000px;}
.x22{left:325.141500px;}
.x81{left:330.790500px;}
.x23{left:332.613000px;}
.xff{left:335.211000px;}
.x26{left:336.727500px;}
.x39{left:341.199000px;}
.x82{left:343.684500px;}
.xf7{left:346.045500px;}
.xd3{left:347.941500px;}
.x3a{left:351.487500px;}
.x79{left:354.178500px;}
.xfb{left:355.509000px;}
.xf8{left:358.869000px;}
.xfc{left:360.387000px;}
.x87{left:362.857500px;}
.x7a{left:364.348500px;}
.xd4{left:366.696000px;}
.xfd{left:375.330000px;}
.x88{left:378.889500px;}
.xd5{left:381.640500px;}
.xf9{left:382.672500px;}
.xc9{left:389.479500px;}
.x8d{left:392.113500px;}
.xb{left:394.689000px;}
.xc1{left:397.060500px;}
.xb9{left:400.078500px;}
.xa8{left:401.763000px;}
.xc{left:403.948500px;}
.xf{left:405.171000px;}
.x8e{left:406.548000px;}
.x9e{left:408.774000px;}
.xba{left:409.789500px;}
.x84{left:410.863500px;}
.x9f{left:412.435500px;}
.x101{left:415.005000px;}
.xa9{left:416.706000px;}
.x36{left:417.837000px;}
.x8f{left:420.010500px;}
.xc3{left:421.906500px;}
.xb1{left:423.471000px;}
.x1e{left:424.894500px;}
.xa0{left:427.378500px;}
.x5f{left:429.304500px;}
.x32{left:432.921000px;}
.x61{left:434.113500px;}
.x29{left:437.206500px;}
.x60{left:438.535500px;}
.x6b{left:440.046000px;}
.xbc{left:441.468000px;}
.x9{left:444.171000px;}
.x108{left:446.416500px;}
.x33{left:447.865500px;}
.x62{left:450.142500px;}
.x1d{left:451.267500px;}
.xa{left:452.353500px;}
.xa2{left:454.435500px;}
.x2a{left:455.961000px;}
.xe5{left:457.141500px;}
.x71{left:458.263500px;}
.x7f{left:460.528500px;}
.x63{left:464.788500px;}
.x10{left:467.068500px;}
.x20{left:469.444500px;}
.x2b{left:470.904000px;}
.x64{left:474.952500px;}
.x21{left:476.916000px;}
.x53{left:480.864000px;}
.x5a{left:482.421000px;}
.x5b{left:486.231000px;}
.x102{left:487.345500px;}
.x1f{left:488.697000px;}
.xa3{left:491.064000px;}
.x41{left:496.548000px;}
.xdb{left:498.385500px;}
.x34{left:501.945000px;}
.x42{left:506.836500px;}
.x2c{left:511.513500px;}
.x4a{left:512.776500px;}
.x75{left:514.756500px;}
.x35{left:516.889500px;}
.xed{left:520.810500px;}
.x4b{left:522.006000px;}
.xf4{left:523.993500px;}
.x2d{left:526.458000px;}
.x27{left:527.770500px;}
.xef{left:529.662000px;}
.x76{left:530.865000px;}
.xf0{left:533.379000px;}
.xe4{left:535.950000px;}
.x8a{left:538.921500px;}
.x72{left:541.267500px;}
.x28{left:542.715000px;}
.x77{left:546.108000px;}
.x8b{left:548.086500px;}
.xbb{left:550.221000px;}
.x59{left:552.384000px;}
.x78{left:556.351500px;}
.x57{left:557.895000px;}
.x8c{left:559.248000px;}
.x19{left:561.928500px;}
.xcc{left:564.418500px;}
.x6c{left:566.424000px;}
.x58{left:568.036500px;}
.x1a{left:569.400000px;}
.x1b{left:573.087000px;}
.x6d{left:575.655000px;}
.xe2{left:577.617000px;}
.x1c{left:580.560000px;}
.x9d{left:582.637500px;}
.x11{left:586.032000px;}
.xe3{left:587.905500px;}
.x69{left:589.363500px;}
.x85{left:590.940000px;}
.xd1{left:593.316000px;}
.xe7{left:595.102500px;}
.x12{left:597.594000px;}
.xbe{left:599.664000px;}
.x43{left:601.456500px;}
.xd2{left:603.604500px;}
.xaa{left:604.630500px;}
.x96{left:605.650500px;}
.xda{left:607.206000px;}
.xe8{left:610.047000px;}
.x44{left:611.745000px;}
.x90{left:614.986500px;}
.x67{left:617.296500px;}
.xdf{left:618.678000px;}
.x5c{left:621.322500px;}
.xe0{left:622.458000px;}
.x3b{left:624.318000px;}
.x68{left:626.527500px;}
.x91{left:628.450500px;}
.x5d{left:630.553500px;}
.xc8{left:632.377500px;}
.x109{left:635.281500px;}
.x92{left:637.800000px;}
.x3c{left:639.262500px;}
.xbd{left:640.438500px;}
.x3d{left:643.072500px;}
.xdc{left:644.977500px;}
.x93{left:646.765500px;}
.xf6{left:648.298500px;}
.xec{left:649.305000px;}
.xb2{left:650.815500px;}
.x13{left:652.500000px;}
.x94{left:656.476500px;}
.x3e{left:658.017000px;}
.x95{left:659.842500px;}
.x14{left:664.062000px;}
.xe9{left:666.444000px;}
.x2e{left:670.827000px;}
.x98{left:675.096000px;}
.xee{left:676.903500px;}
.xb3{left:678.906000px;}
.x80{left:681.807000px;}
.x99{left:684.066000px;}
.x2f{left:685.771500px;}
.x7b{left:687.702000px;}
.x30{left:689.484000px;}
.x73{left:691.545000px;}
.x49{left:693.085500px;}
.x83{left:694.698000px;}
.x86{left:696.610500px;}
.x7d{left:698.044500px;}
.x74{left:700.776000px;}
.xf3{left:702.889500px;}
.x31{left:704.428500px;}
.xe6{left:705.990000px;}
.x7e{left:707.274000px;}
.x4d{left:713.104500px;}
.xd{left:714.324000px;}
.x45{left:715.395000px;}
.xb4{left:717.280500px;}
.xea{left:718.702500px;}
.xd7{left:720.213000px;}
.xeb{left:722.416500px;}
.x10a{left:724.636500px;}
.x3f{left:725.958000px;}
.xe{left:727.086000px;}
.x46{left:730.339500px;}
.x65{left:733.254000px;}
.xcd{left:735.235500px;}
.x7c{left:737.130000px;}
.xbf{left:738.153000px;}
.x40{left:740.902500px;}
.xc7{left:742.929000px;}
.x9b{left:744.075000px;}
.xf5{left:747.354000px;}
.xc0{left:748.612500px;}
.xce{left:750.178500px;}
.x10b{left:751.534500px;}
.xcf{left:753.990000px;}
.x6e{left:756.460500px;}
.x9c{left:759.318000px;}
.xfe{left:761.803500px;}
.xd6{left:764.409000px;}
.xd8{left:765.504000px;}
.xd0{left:768.933000px;}
.x6f{left:771.360000px;}
.xad{left:774.111000px;}
.xe1{left:775.221000px;}
.x17{left:777.030000px;}
.xde{left:778.287000px;}
.x70{left:781.512000px;}
.xfa{left:782.715000px;}
.xb5{left:783.769500px;}
.x9a{left:785.854500px;}
.xc4{left:786.942000px;}
.xae{left:788.127000px;}
.x105{left:789.393000px;}
.x18{left:790.456500px;}
.x5e{left:792.562500px;}
.xb6{left:796.162500px;}
.xc5{left:797.742000px;}
.x4c{left:800.241000px;}
.x4e{left:801.940500px;}
.x107{left:810.265500px;}
.xc6{left:812.686500px;}
.xca{left:814.119000px;}
.x66{left:815.964000px;}
.x4f{left:817.977000px;}
.xd9{left:824.308500px;}
.x54{left:826.621500px;}
.xf1{left:827.877000px;}
.x50{left:832.771500px;}
.xcb{left:833.838000px;}
.xf2{left:836.970000px;}
.x106{left:837.972000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000481pt;}
.ls9{letter-spacing:0.000533pt;}
.ls32{letter-spacing:0.000540pt;}
.ls3d{letter-spacing:0.000600pt;}
.ls3e{letter-spacing:0.000921pt;}
.ls3c{letter-spacing:0.000923pt;}
.lsb{letter-spacing:0.001735pt;}
.ls0{letter-spacing:0.002422pt;}
.ls11{letter-spacing:0.002868pt;}
.ls44{letter-spacing:0.004267pt;}
.ls12{letter-spacing:0.004660pt;}
.lsd{letter-spacing:0.601139pt;}
.ls17{letter-spacing:0.662839pt;}
.ls7{letter-spacing:0.743872pt;}
.ls37{letter-spacing:0.860774pt;}
.ls10{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls13{letter-spacing:3.158400pt;}
.ls8{letter-spacing:9.261600pt;}
.lse{letter-spacing:10.626533pt;}
.ls26{letter-spacing:11.621159pt;}
.ls2a{letter-spacing:11.751997pt;}
.ls2e{letter-spacing:11.849077pt;}
.ls19{letter-spacing:11.893833pt;}
.ls36{letter-spacing:11.908203pt;}
.ls27{letter-spacing:11.911802pt;}
.ls41{letter-spacing:11.954133pt;}
.ls42{letter-spacing:11.959467pt;}
.ls18{letter-spacing:11.975738pt;}
.ls43{letter-spacing:12.042115pt;}
.ls29{letter-spacing:12.064088pt;}
.ls35{letter-spacing:12.098524pt;}
.ls3b{letter-spacing:12.111280pt;}
.ls48{letter-spacing:12.187995pt;}
.ls25{letter-spacing:12.381570pt;}
.ls1e{letter-spacing:13.003466pt;}
.ls1d{letter-spacing:13.008705pt;}
.ls3a{letter-spacing:13.032969pt;}
.ls38{letter-spacing:13.173411pt;}
.ls14{letter-spacing:13.204191pt;}
.ls31{letter-spacing:13.213459pt;}
.ls30{letter-spacing:13.218688pt;}
.ls1f{letter-spacing:13.270563pt;}
.ls20{letter-spacing:13.275891pt;}
.ls2{letter-spacing:13.283733pt;}
.ls16{letter-spacing:13.322963pt;}
.ls33{letter-spacing:13.386008pt;}
.ls1c{letter-spacing:13.403347pt;}
.ls21{letter-spacing:13.435758pt;}
.ls23{letter-spacing:13.476427pt;}
.ls22{letter-spacing:13.481847pt;}
.ls24{letter-spacing:13.495812pt;}
.ls2c{letter-spacing:13.535839pt;}
.ls1a{letter-spacing:13.887969pt;}
.ls1b{letter-spacing:13.893197pt;}
.ls2f{letter-spacing:13.945874pt;}
.ls2d{letter-spacing:13.960655pt;}
.ls46{letter-spacing:14.235650pt;}
.ls40{letter-spacing:14.823467pt;}
.ls47{letter-spacing:15.068103pt;}
.ls2b{letter-spacing:15.383393pt;}
.ls39{letter-spacing:15.595200pt;}
.ls15{letter-spacing:16.026198pt;}
.ls3f{letter-spacing:16.498176pt;}
.ls34{letter-spacing:16.523263pt;}
.ls45{letter-spacing:20.572905pt;}
.ls4{letter-spacing:51.035733pt;}
.lsa{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.315733pt;}
.ws7{word-spacing:-13.283467pt;}
.ws2f{word-spacing:-11.955200pt;}
.ws49{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.wsc{word-spacing:-10.042272pt;}
.ws10{word-spacing:-9.298400pt;}
.wsda{word-spacing:-2.869229pt;}
.ws75{word-spacing:-2.762961pt;}
.ws102{word-spacing:-2.656693pt;}
.ws11d{word-spacing:-2.550426pt;}
.ws2a{word-spacing:-2.458471pt;}
.ws106{word-spacing:-2.444158pt;}
.ws29{word-spacing:-2.438861pt;}
.wsef{word-spacing:-2.391024pt;}
.wsf0{word-spacing:-2.351823pt;}
.wsf1{word-spacing:-2.337890pt;}
.ws41{word-spacing:-2.305771pt;}
.ws43{word-spacing:-2.304224pt;}
.ws42{word-spacing:-2.291959pt;}
.ws44{word-spacing:-2.284756pt;}
.ws36{word-spacing:-2.199757pt;}
.wsc3{word-spacing:-2.178489pt;}
.wsfd{word-spacing:-2.147373pt;}
.wsfc{word-spacing:-2.125355pt;}
.ws12a{word-spacing:-2.008474pt;}
.ws27{word-spacing:-1.927391pt;}
.ws26{word-spacing:-1.912832pt;}
.ws87{word-spacing:-1.912819pt;}
.ws12b{word-spacing:-1.817190pt;}
.ws5c{word-spacing:-1.700284pt;}
.ws9{word-spacing:-1.696326pt;}
.wse6{word-spacing:-1.689241pt;}
.wsa5{word-spacing:-1.647150pt;}
.wsc0{word-spacing:-1.594016pt;}
.ws117{word-spacing:-1.540882pt;}
.ws16b{word-spacing:-1.487629pt;}
.ws16c{word-spacing:-1.487243pt;}
.ws16a{word-spacing:-1.482445pt;}
.ws176{word-spacing:-1.470144pt;}
.wsb8{word-spacing:-1.434624pt;}
.ws37{word-spacing:-1.386803pt;}
.wse7{word-spacing:-1.328347pt;}
.ws4c{word-spacing:-1.275213pt;}
.wsb9{word-spacing:-1.243341pt;}
.ws81{word-spacing:-1.222079pt;}
.ws8{word-spacing:-1.175671pt;}
.ws100{word-spacing:-1.168945pt;}
.ws127{word-spacing:-1.147699pt;}
.ws8d{word-spacing:-1.115811pt;}
.ws12c{word-spacing:-1.099878pt;}
.ws5e{word-spacing:-1.062677pt;}
.ws13b{word-spacing:-1.052058pt;}
.ws83{word-spacing:-1.009543pt;}
.ws13a{word-spacing:-1.004237pt;}
.ws7b{word-spacing:-0.956410pt;}
.wsee{word-spacing:-0.802031pt;}
.wsed{word-spacing:-0.800803pt;}
.wsec{word-spacing:-0.798169pt;}
.wseb{word-spacing:-0.797008pt;}
.ws28{word-spacing:-0.765133pt;}
.wse9{word-spacing:-0.743874pt;}
.ws6a{word-spacing:-0.690740pt;}
.wscf{word-spacing:-0.669491pt;}
.wsd0{word-spacing:-0.648329pt;}
.ws88{word-spacing:-0.637606pt;}
.wse{word-spacing:-0.595098pt;}
.wsd{word-spacing:-0.559830pt;}
.wsb{word-spacing:-0.557904pt;}
.ws7e{word-spacing:-0.531339pt;}
.ws17e{word-spacing:-0.430387pt;}
.ws96{word-spacing:-0.382566pt;}
.wsc1{word-spacing:-0.371937pt;}
.wsb4{word-spacing:-0.347167pt;}
.wsb3{word-spacing:-0.334746pt;}
.ws71{word-spacing:-0.325072pt;}
.ws70{word-spacing:-0.323378pt;}
.ws72{word-spacing:-0.318803pt;}
.ws3c{word-spacing:-0.265669pt;}
.ws14d{word-spacing:-0.252606pt;}
.ws10d{word-spacing:-0.244516pt;}
.wsbb{word-spacing:-0.239104pt;}
.wsf4{word-spacing:-0.224698pt;}
.wsf6{word-spacing:-0.222757pt;}
.wsf5{word-spacing:-0.222065pt;}
.wsd4{word-spacing:-0.220727pt;}
.ws95{word-spacing:-0.212642pt;}
.ws5f{word-spacing:-0.212535pt;}
.wsb5{word-spacing:-0.212257pt;}
.ws142{word-spacing:-0.211919pt;}
.ws94{word-spacing:-0.202672pt;}
.wsfa{word-spacing:-0.194560pt;}
.ws82{word-spacing:-0.192239pt;}
.ws21{word-spacing:-0.191283pt;}
.ws39{word-spacing:-0.159402pt;}
.ws7a{word-spacing:-0.158697pt;}
.ws5d{word-spacing:-0.147471pt;}
.ws9f{word-spacing:-0.144501pt;}
.ws34{word-spacing:-0.143462pt;}
.ws53{word-spacing:-0.129491pt;}
.ws63{word-spacing:-0.127682pt;}
.wsff{word-spacing:-0.118893pt;}
.ws16d{word-spacing:-0.106542pt;}
.ws52{word-spacing:-0.106268pt;}
.wsbf{word-spacing:-0.098453pt;}
.ws9a{word-spacing:-0.095642pt;}
.ws17a{word-spacing:-0.075725pt;}
.ws168{word-spacing:-0.075050pt;}
.ws6{word-spacing:-0.053134pt;}
.ws93{word-spacing:-0.047821pt;}
.wsf{word-spacing:-0.046471pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws14a{word-spacing:-0.033943pt;}
.ws73{word-spacing:-0.024238pt;}
.wsa6{word-spacing:-0.022919pt;}
.ws74{word-spacing:-0.011150pt;}
.ws164{word-spacing:-0.009924pt;}
.ws133{word-spacing:-0.008730pt;}
.ws150{word-spacing:-0.008038pt;}
.ws158{word-spacing:-0.007441pt;}
.ws6b{word-spacing:-0.007222pt;}
.ws155{word-spacing:-0.006255pt;}
.ws175{word-spacing:-0.006059pt;}
.wsaa{word-spacing:-0.005356pt;}
.ws154{word-spacing:-0.005163pt;}
.ws145{word-spacing:-0.004642pt;}
.ws149{word-spacing:-0.004591pt;}
.wsfe{word-spacing:-0.004583pt;}
.ws57{word-spacing:-0.004548pt;}
.wsf9{word-spacing:-0.004379pt;}
.ws13f{word-spacing:-0.004190pt;}
.ws170{word-spacing:-0.003866pt;}
.ws14f{word-spacing:-0.003814pt;}
.ws14e{word-spacing:-0.003806pt;}
.ws4{word-spacing:-0.003741pt;}
.ws132{word-spacing:-0.003396pt;}
.ws169{word-spacing:-0.003337pt;}
.wsf8{word-spacing:-0.002772pt;}
.ws148{word-spacing:-0.002483pt;}
.ws167{word-spacing:-0.002108pt;}
.ws48{word-spacing:-0.002103pt;}
.ws0{word-spacing:0.000000pt;}
.ws143{word-spacing:0.001143pt;}
.ws134{word-spacing:0.001519pt;}
.wsa9{word-spacing:0.002049pt;}
.ws15e{word-spacing:0.012182pt;}
.wsde{word-spacing:0.018576pt;}
.ws91{word-spacing:0.021486pt;}
.ws16f{word-spacing:0.025911pt;}
.ws186{word-spacing:0.033481pt;}
.ws98{word-spacing:0.047821pt;}
.ws56{word-spacing:0.053134pt;}
.ws141{word-spacing:0.078016pt;}
.ws76{word-spacing:0.084841pt;}
.ws108{word-spacing:0.090235pt;}
.ws109{word-spacing:0.095346pt;}
.ws1e{word-spacing:0.095642pt;}
.ws3f{word-spacing:0.106268pt;}
.ws40{word-spacing:0.121613pt;}
.wsdb{word-spacing:0.133386pt;}
.ws46{word-spacing:0.137536pt;}
.ws20{word-spacing:0.141002pt;}
.ws1f{word-spacing:0.143462pt;}
.wsc9{word-spacing:0.145353pt;}
.wsa7{word-spacing:0.149518pt;}
.wsdc{word-spacing:0.158862pt;}
.ws3e{word-spacing:0.159402pt;}
.ws2b{word-spacing:0.162755pt;}
.ws1d{word-spacing:0.170029pt;}
.wsdf{word-spacing:0.176253pt;}
.ws62{word-spacing:0.185859pt;}
.ws12{word-spacing:0.185968pt;}
.ws123{word-spacing:0.191283pt;}
.ws122{word-spacing:0.196975pt;}
.ws61{word-spacing:0.201549pt;}
.ws188{word-spacing:0.210874pt;}
.ws59{word-spacing:0.212535pt;}
.ws135{word-spacing:0.218617pt;}
.ws10a{word-spacing:0.221579pt;}
.ws173{word-spacing:0.237985pt;}
.ws124{word-spacing:0.239104pt;}
.ws10f{word-spacing:0.243557pt;}
.ws14{word-spacing:0.260355pt;}
.ws11f{word-spacing:0.264779pt;}
.ws5a{word-spacing:0.265669pt;}
.ws120{word-spacing:0.266668pt;}
.ws18c{word-spacing:0.286925pt;}
.ws89{word-spacing:0.318803pt;}
.ws18d{word-spacing:0.334746pt;}
.ws4a{word-spacing:0.371937pt;}
.ws126{word-spacing:0.382566pt;}
.wsae{word-spacing:0.421463pt;}
.wsb2{word-spacing:0.421760pt;}
.ws105{word-spacing:0.425071pt;}
.wsb0{word-spacing:0.430387pt;}
.ws4f{word-spacing:0.478205pt;}
.ws64{word-spacing:0.531339pt;}
.ws66{word-spacing:0.584473pt;}
.ws68{word-spacing:0.585832pt;}
.ws67{word-spacing:0.607761pt;}
.ws9c{word-spacing:0.608680pt;}
.ws97{word-spacing:0.631402pt;}
.ws69{word-spacing:0.637606pt;}
.ws16e{word-spacing:0.669491pt;}
.ws54{word-spacing:0.690740pt;}
.ws138{word-spacing:0.717312pt;}
.wsba{word-spacing:0.753232pt;}
.wsb1{word-spacing:0.758676pt;}
.wsf7{word-spacing:0.795070pt;}
.wsd5{word-spacing:0.797008pt;}
.wsd3{word-spacing:0.812954pt;}
.ws3b{word-spacing:0.850142pt;}
.ws121{word-spacing:0.862845pt;}
.ws10e{word-spacing:0.873099pt;}
.ws50{word-spacing:0.903276pt;}
.ws11c{word-spacing:0.951232pt;}
.wsa4{word-spacing:0.956410pt;}
.ws163{word-spacing:0.956416pt;}
.ws113{word-spacing:0.996342pt;}
.ws35{word-spacing:1.002231pt;}
.wsa0{word-spacing:1.009543pt;}
.wsd1{word-spacing:1.052058pt;}
.ws7f{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.115811pt;}
.ws24{word-spacing:1.119265pt;}
.ws25{word-spacing:1.126670pt;}
.ws22{word-spacing:1.147699pt;}
.ws101{word-spacing:1.156563pt;}
.ws78{word-spacing:1.168945pt;}
.ws130{word-spacing:1.195520pt;}
.wse4{word-spacing:1.222079pt;}
.wsc2{word-spacing:1.275213pt;}
.ws92{word-spacing:1.297056pt;}
.ws79{word-spacing:1.318835pt;}
.ws6e{word-spacing:1.328347pt;}
.wsea{word-spacing:1.378110pt;}
.wsd7{word-spacing:1.381481pt;}
.wsd2{word-spacing:1.386803pt;}
.wsaf{word-spacing:1.405578pt;}
.ws4b{word-spacing:1.434614pt;}
.wsc7{word-spacing:1.436950pt;}
.ws7d{word-spacing:1.442425pt;}
.ws7c{word-spacing:1.487748pt;}
.wsbd{word-spacing:1.530255pt;}
.wsbe{word-spacing:1.530266pt;}
.ws58{word-spacing:1.594016pt;}
.ws185{word-spacing:1.625907pt;}
.ws65{word-spacing:1.642838pt;}
.ws11b{word-spacing:1.647150pt;}
.ws13e{word-spacing:1.673728pt;}
.wse3{word-spacing:1.700284pt;}
.ws13d{word-spacing:1.721549pt;}
.wsfb{word-spacing:1.753418pt;}
.ws161{word-spacing:1.769370pt;}
.ws13{word-spacing:1.785293pt;}
.ws3d{word-spacing:1.806551pt;}
.ws128{word-spacing:1.817190pt;}
.ws8e{word-spacing:1.859685pt;}
.ws165{word-spacing:1.865011pt;}
.ws8b{word-spacing:1.912819pt;}
.ws33{word-spacing:1.912832pt;}
.ws157{word-spacing:1.960653pt;}
.wsbc{word-spacing:2.008474pt;}
.ws116{word-spacing:2.019087pt;}
.wsb6{word-spacing:2.072221pt;}
.ws23{word-spacing:2.121918pt;}
.wsb7{word-spacing:2.125355pt;}
.ws171{word-spacing:2.199757pt;}
.ws9d{word-spacing:2.231622pt;}
.ws9e{word-spacing:2.284756pt;}
.ws14c{word-spacing:2.295398pt;}
.ws99{word-spacing:2.438861pt;}
.wsc8{word-spacing:2.486682pt;}
.wsdd{word-spacing:2.497292pt;}
.wsac{word-spacing:2.534502pt;}
.wsad{word-spacing:2.548865pt;}
.ws3a{word-spacing:2.550426pt;}
.ws103{word-spacing:2.656693pt;}
.ws11e{word-spacing:2.709504pt;}
.ws8f{word-spacing:2.714276pt;}
.ws189{word-spacing:2.725786pt;}
.ws11a{word-spacing:2.739919pt;}
.ws184{word-spacing:2.749126pt;}
.ws90{word-spacing:2.762961pt;}
.ws110{word-spacing:2.771637pt;}
.ws183{word-spacing:2.773606pt;}
.ws60{word-spacing:2.816095pt;}
.wsab{word-spacing:2.821427pt;}
.ws13c{word-spacing:2.860476pt;}
.ws152{word-spacing:2.861747pt;}
.ws147{word-spacing:2.861841pt;}
.ws18b{word-spacing:2.862106pt;}
.ws15f{word-spacing:2.862327pt;}
.ws15d{word-spacing:2.863078pt;}
.ws146{word-spacing:2.863138pt;}
.ws18f{word-spacing:2.863317pt;}
.ws144{word-spacing:2.863821pt;}
.ws15c{word-spacing:2.864222pt;}
.ws151{word-spacing:2.864290pt;}
.ws17f{word-spacing:2.864512pt;}
.ws136{word-spacing:2.865306pt;}
.ws166{word-spacing:2.866466pt;}
.ws159{word-spacing:2.867004pt;}
.ws14b{word-spacing:2.867174pt;}
.ws174{word-spacing:2.867217pt;}
.ws137{word-spacing:2.867439pt;}
.ws17b{word-spacing:2.868471pt;}
.ws15b{word-spacing:2.868668pt;}
.ws18a{word-spacing:2.869154pt;}
.ws131{word-spacing:2.869248pt;}
.ws177{word-spacing:2.870118pt;}
.wsc6{word-spacing:2.964890pt;}
.wse5{word-spacing:2.975497pt;}
.ws45{word-spacing:3.081764pt;}
.ws2c{word-spacing:3.156173pt;}
.ws107{word-spacing:3.159178pt;}
.ws2d{word-spacing:3.171087pt;}
.ws38{word-spacing:3.188032pt;}
.wsc5{word-spacing:3.241166pt;}
.wse2{word-spacing:3.294300pt;}
.ws12e{word-spacing:3.299635pt;}
.ws18e{word-spacing:3.395277pt;}
.ws8a{word-spacing:3.400567pt;}
.wsd9{word-spacing:3.453701pt;}
.ws47{word-spacing:3.478700pt;}
.ws5b{word-spacing:3.506835pt;}
.ws17c{word-spacing:3.586560pt;}
.wsa1{word-spacing:3.613103pt;}
.ws32{word-spacing:3.634381pt;}
.ws172{word-spacing:3.682202pt;}
.ws160{word-spacing:3.730022pt;}
.wsa8{word-spacing:3.825638pt;}
.ws30{word-spacing:3.969126pt;}
.ws2e{word-spacing:4.016947pt;}
.ws112{word-spacing:4.038174pt;}
.ws114{word-spacing:4.120717pt;}
.ws115{word-spacing:4.129523pt;}
.wsc4{word-spacing:4.144442pt;}
.ws153{word-spacing:4.160410pt;}
.ws31{word-spacing:4.208230pt;}
.ws111{word-spacing:4.303843pt;}
.ws9b{word-spacing:4.356977pt;}
.ws181{word-spacing:4.370278pt;}
.ws182{word-spacing:4.374334pt;}
.ws180{word-spacing:4.399514pt;}
.wsca{word-spacing:4.542976pt;}
.ws6f{word-spacing:4.569513pt;}
.ws51{word-spacing:4.675780pt;}
.ws104{word-spacing:4.728914pt;}
.ws125{word-spacing:4.734259pt;}
.ws8c{word-spacing:4.782048pt;}
.ws12f{word-spacing:4.877722pt;}
.ws129{word-spacing:4.925542pt;}
.ws179{word-spacing:5.116826pt;}
.wsa3{word-spacing:5.207119pt;}
.wse8{word-spacing:5.301100pt;}
.ws84{word-spacing:5.313387pt;}
.ws15a{word-spacing:5.355930pt;}
.ws86{word-spacing:5.366521pt;}
.ws1a{word-spacing:5.393072pt;}
.ws55{word-spacing:5.419654pt;}
.ws140{word-spacing:5.451571pt;}
.ws1b{word-spacing:5.467459pt;}
.ws139{word-spacing:5.499392pt;}
.ws77{word-spacing:5.525922pt;}
.ws4e{word-spacing:5.844725pt;}
.wsce{word-spacing:6.163529pt;}
.wsf2{word-spacing:6.216662pt;}
.ws12d{word-spacing:6.503629pt;}
.ws10c{word-spacing:6.535466pt;}
.ws10b{word-spacing:6.588599pt;}
.wsf3{word-spacing:6.641733pt;}
.ws6d{word-spacing:6.748001pt;}
.wscc{word-spacing:6.856197pt;}
.wscb{word-spacing:6.907403pt;}
.wse1{word-spacing:7.226206pt;}
.wse0{word-spacing:7.257769pt;}
.ws80{word-spacing:7.279340pt;}
.wsd6{word-spacing:7.332474pt;}
.ws118{word-spacing:7.491875pt;}
.ws156{word-spacing:7.507866pt;}
.wsa2{word-spacing:7.598143pt;}
.ws18{word-spacing:7.699075pt;}
.ws6c{word-spacing:7.810678pt;}
.wsd8{word-spacing:7.863812pt;}
.ws85{word-spacing:7.916946pt;}
.ws187{word-spacing:8.177357pt;}
.ws119{word-spacing:8.597086pt;}
.ws162{word-spacing:8.607744pt;}
.ws17d{word-spacing:9.181594pt;}
.wscd{word-spacing:9.245293pt;}
.ws11{word-spacing:13.761632pt;}
.wsa{word-spacing:13.763148pt;}
.ws15{word-spacing:14.348669pt;}
.ws16{word-spacing:14.356730pt;}
.ws17{word-spacing:15.732893pt;}
.ws178{word-spacing:15.972147pt;}
.ws2{word-spacing:23.808043pt;}
.ws1{word-spacing:23.814758pt;}
.ws19{word-spacing:24.399002pt;}
.ws5{word-spacing:35.593054pt;}
._1{margin-left:-10.616218pt;}
._18{margin-left:-6.322503pt;}
._a{margin-left:-4.704852pt;}
._5{margin-left:-3.421811pt;}
._20{margin-left:-2.506530pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._2{width:2.668144pt;}
._d{width:3.825664pt;}
._f{width:8.876907pt;}
._6{width:10.391888pt;}
._7{width:11.530016pt;}
._8{width:12.683109pt;}
._c{width:13.868032pt;}
._b{width:15.368891pt;}
._10{width:16.684034pt;}
._1c{width:17.587310pt;}
._14{width:19.181326pt;}
._17{width:20.084602pt;}
._e{width:21.126196pt;}
._19{width:22.185894pt;}
._22{width:23.587765pt;}
._1f{width:25.026051pt;}
._0{width:26.082611pt;}
._1b{width:27.317534pt;}
._9{width:29.011008pt;}
._15{width:30.870777pt;}
._16{width:33.208667pt;}
._13{width:34.537013pt;}
._1d{width:36.509693pt;}
._1a{width:38.840857pt;}
._21{width:54.993920pt;}
._11{width:367.498871pt;}
._1e{width:2143.408346pt;}
._12{width:2164.661679pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsd{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:97.430720pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:3.044747pt;}
.ya{bottom:12.578910pt;}
.y2{bottom:14.848190pt;}
.y4f{bottom:28.346667pt;}
.y175{bottom:77.309333pt;}
.y15c{bottom:79.121333pt;}
.yf9{bottom:80.893333pt;}
.y1ef{bottom:81.988000pt;}
.y141{bottom:82.650667pt;}
.y225{bottom:85.654667pt;}
.y1f0{bottom:86.328000pt;}
.y25{bottom:91.398667pt;}
.y25d{bottom:92.050667pt;}
.y121{bottom:92.709333pt;}
.y174{bottom:94.405333pt;}
.y1d7{bottom:94.840000pt;}
.y1ae{bottom:95.146667pt;}
.y15b{bottom:95.858667pt;}
.y4e{bottom:96.229333pt;}
.ybc{bottom:96.434667pt;}
.yf8{bottom:97.630667pt;}
.y1ee{bottom:98.028000pt;}
.y140{bottom:99.388000pt;}
.y224{bottom:100.997333pt;}
.y24{bottom:107.298667pt;}
.y25c{bottom:107.393333pt;}
.y120{bottom:109.446667pt;}
.y172{bottom:111.501333pt;}
.y1d6{bottom:111.577333pt;}
.y1ad{bottom:111.884000pt;}
.y85{bottom:112.358667pt;}
.y15a{bottom:112.596000pt;}
.y4d{bottom:112.966667pt;}
.ybb{bottom:113.172000pt;}
.y1ec{bottom:114.068000pt;}
.yf7{bottom:114.366667pt;}
.y173{bottom:115.841333pt;}
.y13f{bottom:116.125333pt;}
.y223{bottom:116.340000pt;}
.y1ed{bottom:118.408000pt;}
.y25b{bottom:122.736000pt;}
.y23{bottom:123.200000pt;}
.yba{bottom:127.482667pt;}
.y1d5{bottom:128.314667pt;}
.y171{bottom:128.597333pt;}
.y1ac{bottom:128.621333pt;}
.y84{bottom:129.096000pt;}
.y159{bottom:129.333333pt;}
.y4c{bottom:129.704000pt;}
.yb8{bottom:129.909333pt;}
.y1eb{bottom:130.108000pt;}
.y11f{bottom:130.168000pt;}
.yf6{bottom:131.104000pt;}
.y222{bottom:131.682667pt;}
.y13e{bottom:132.861333pt;}
.yb9{bottom:134.730667pt;}
.y25a{bottom:138.078667pt;}
.y22{bottom:139.100000pt;}
.y11e{bottom:144.116000pt;}
.y1d4{bottom:145.052000pt;}
.y1ab{bottom:145.358667pt;}
.y83{bottom:145.833333pt;}
.y158{bottom:146.070667pt;}
.y1ea{bottom:146.148000pt;}
.y4b{bottom:146.441333pt;}
.yb7{bottom:146.646667pt;}
.y221{bottom:147.025333pt;}
.yf4{bottom:147.841333pt;}
.y13d{bottom:149.598667pt;}
.yf5{bottom:152.664000pt;}
.y259{bottom:153.421333pt;}
.y21{bottom:155.000000pt;}
.y11d{bottom:158.064000pt;}
.y1d3{bottom:161.789333pt;}
.y1aa{bottom:162.096000pt;}
.y220{bottom:162.368000pt;}
.y82{bottom:162.570667pt;}
.y157{bottom:162.808000pt;}
.y4a{bottom:163.178667pt;}
.yb6{bottom:163.384000pt;}
.yf3{bottom:164.578667pt;}
.y13c{bottom:166.336000pt;}
.y258{bottom:168.762667pt;}
.y20{bottom:170.901333pt;}
.y21f{bottom:177.710667pt;}
.y1e9{bottom:178.128000pt;}
.y1d2{bottom:178.526667pt;}
.y1a9{bottom:178.833333pt;}
.y81{bottom:179.308000pt;}
.y156{bottom:179.545333pt;}
.y49{bottom:179.916000pt;}
.yb5{bottom:180.121333pt;}
.yf2{bottom:181.316000pt;}
.y13b{bottom:183.073333pt;}
.y257{bottom:184.105333pt;}
.y11c{bottom:185.525333pt;}
.y1f{bottom:186.801333pt;}
.y11b{bottom:187.952000pt;}
.y21e{bottom:193.053333pt;}
.y1e8{bottom:194.865333pt;}
.y1d1{bottom:195.264000pt;}
.y1a8{bottom:195.570667pt;}
.y80{bottom:196.045333pt;}
.y155{bottom:196.282667pt;}
.y48{bottom:196.653333pt;}
.yb4{bottom:196.858667pt;}
.y256{bottom:199.448000pt;}
.y13a{bottom:199.810667pt;}
.yf1{bottom:202.038667pt;}
.y1e{bottom:202.701333pt;}
.y11a{bottom:204.689333pt;}
.y21d{bottom:208.394667pt;}
.y1e7{bottom:211.602667pt;}
.y1d0{bottom:212.001333pt;}
.y1a7{bottom:212.308000pt;}
.y7f{bottom:212.782667pt;}
.y154{bottom:213.020000pt;}
.y47{bottom:213.390667pt;}
.y255{bottom:214.790667pt;}
.yf0{bottom:215.986667pt;}
.y139{bottom:216.548000pt;}
.y119{bottom:221.426667pt;}
.y21c{bottom:223.737333pt;}
.y1e6{bottom:228.340000pt;}
.y1cf{bottom:228.738667pt;}
.y1a6{bottom:229.044000pt;}
.y7e{bottom:229.520000pt;}
.y153{bottom:229.757333pt;}
.y46{bottom:230.128000pt;}
.y254{bottom:230.133333pt;}
.yb3{bottom:231.528000pt;}
.y138{bottom:233.285333pt;}
.yef{bottom:233.918667pt;}
.y118{bottom:238.164000pt;}
.y21b{bottom:239.080000pt;}
.y1e5{bottom:245.077333pt;}
.y1ce{bottom:245.476000pt;}
.y1a5{bottom:245.781333pt;}
.y7d{bottom:246.257333pt;}
.y152{bottom:246.494667pt;}
.y45{bottom:246.865333pt;}
.y21a{bottom:254.422667pt;}
.y117{bottom:254.901333pt;}
.y253{bottom:260.818667pt;}
.yb2{bottom:261.416000pt;}
.y1e4{bottom:261.814667pt;}
.y1cd{bottom:262.213333pt;}
.y1a4{bottom:262.518667pt;}
.y7c{bottom:262.994667pt;}
.y137{bottom:263.121333pt;}
.y151{bottom:263.232000pt;}
.y44{bottom:263.602667pt;}
.yee{bottom:263.806667pt;}
.y219{bottom:269.765333pt;}
.y116{bottom:271.638667pt;}
.y1d{bottom:273.154667pt;}
.y252{bottom:276.161333pt;}
.yb1{bottom:278.153333pt;}
.y1e3{bottom:278.552000pt;}
.y1cc{bottom:278.950667pt;}
.y1a3{bottom:279.256000pt;}
.y7b{bottom:279.732000pt;}
.y150{bottom:279.969333pt;}
.y136{bottom:280.217333pt;}
.yed{bottom:280.544000pt;}
.y43{bottom:284.325333pt;}
.y218{bottom:285.108000pt;}
.y114{bottom:288.376000pt;}
.y1c{bottom:289.054667pt;}
.y251{bottom:291.502667pt;}
.y115{bottom:293.197333pt;}
.yb0{bottom:294.890667pt;}
.y1e2{bottom:295.289333pt;}
.y1cb{bottom:295.688000pt;}
.y1a2{bottom:295.993333pt;}
.y7a{bottom:296.469333pt;}
.y14f{bottom:296.706667pt;}
.yec{bottom:297.281333pt;}
.y134{bottom:297.313333pt;}
.y217{bottom:300.450667pt;}
.y135{bottom:301.653333pt;}
.y1b{bottom:304.954667pt;}
.y113{bottom:305.113333pt;}
.y250{bottom:306.845333pt;}
.yaf{bottom:311.628000pt;}
.y1e1{bottom:312.026667pt;}
.y1ca{bottom:312.425333pt;}
.y1a1{bottom:312.730667pt;}
.y14e{bottom:313.444000pt;}
.yeb{bottom:314.018667pt;}
.y133{bottom:314.409333pt;}
.y216{bottom:315.793333pt;}
.y79{bottom:317.190667pt;}
.y1a{bottom:320.856000pt;}
.y112{bottom:321.850667pt;}
.y24f{bottom:322.188000pt;}
.yae{bottom:328.365333pt;}
.y1e0{bottom:328.764000pt;}
.y1c9{bottom:329.162667pt;}
.y1a0{bottom:329.468000pt;}
.ye9{bottom:330.756000pt;}
.y215{bottom:331.136000pt;}
.y131{bottom:331.505333pt;}
.y14d{bottom:334.165333pt;}
.y78{bottom:335.124000pt;}
.yea{bottom:335.578667pt;}
.y132{bottom:335.845333pt;}
.y24e{bottom:337.530667pt;}
.y111{bottom:338.588000pt;}
.yad{bottom:345.102667pt;}
.y1df{bottom:345.501333pt;}
.y1c8{bottom:345.900000pt;}
.y19e{bottom:346.205333pt;}
.y214{bottom:346.477333pt;}
.y14c{bottom:348.113333pt;}
.y12f{bottom:348.601333pt;}
.y42{bottom:350.013333pt;}
.y19f{bottom:351.028000pt;}
.ye8{bottom:351.478667pt;}
.y24d{bottom:352.873333pt;}
.y130{bottom:352.941333pt;}
.y19{bottom:354.688000pt;}
.y110{bottom:355.325333pt;}
.y213{bottom:361.820000pt;}
.yac{bottom:361.840000pt;}
.y1de{bottom:362.238667pt;}
.y1c7{bottom:362.637333pt;}
.y19c{bottom:362.942667pt;}
.y77{bottom:365.012000pt;}
.y12e{bottom:365.697333pt;}
.y41{bottom:367.309333pt;}
.y19d{bottom:367.765333pt;}
.y24c{bottom:368.216000pt;}
.y18{bottom:370.589333pt;}
.y10f{bottom:372.062667pt;}
.y212{bottom:377.162667pt;}
.yab{bottom:378.577333pt;}
.y1dd{bottom:378.976000pt;}
.y14b{bottom:379.145333pt;}
.y1c6{bottom:379.374667pt;}
.y19b{bottom:379.680000pt;}
.ye7{bottom:381.366667pt;}
.y76{bottom:381.749333pt;}
.y12d{bottom:382.793333pt;}
.y24a{bottom:383.558667pt;}
.y17{bottom:386.489333pt;}
.y24b{bottom:387.898667pt;}
.y10e{bottom:388.800000pt;}
.y211{bottom:392.505333pt;}
.yaa{bottom:395.314667pt;}
.y1dc{bottom:395.713333pt;}
.y1c5{bottom:396.112000pt;}
.y14a{bottom:396.241333pt;}
.y19a{bottom:396.417333pt;}
.ye6{bottom:398.104000pt;}
.y75{bottom:398.486667pt;}
.y249{bottom:398.901333pt;}
.y12c{bottom:399.889333pt;}
.y40{bottom:400.544000pt;}
.y10d{bottom:403.110667pt;}
.y10c{bottom:405.537333pt;}
.y210{bottom:407.848000pt;}
.ya9{bottom:412.052000pt;}
.y1db{bottom:412.450667pt;}
.y1c4{bottom:412.848000pt;}
.y199{bottom:413.154667pt;}
.y149{bottom:413.337333pt;}
.y248{bottom:414.244000pt;}
.ye5{bottom:414.841333pt;}
.y74{bottom:415.224000pt;}
.y3f{bottom:417.840000pt;}
.y16{bottom:418.330667pt;}
.y10b{bottom:419.848000pt;}
.y10a{bottom:422.274667pt;}
.y20f{bottom:423.190667pt;}
.ya8{bottom:428.789333pt;}
.y1c3{bottom:429.585333pt;}
.y198{bottom:429.892000pt;}
.y148{bottom:430.433333pt;}
.ye4{bottom:431.578667pt;}
.y73{bottom:431.961333pt;}
.y1da{bottom:433.172000pt;}
.y170{bottom:435.082667pt;}
.y3e{bottom:435.134667pt;}
.y20e{bottom:438.533333pt;}
.y109{bottom:439.012000pt;}
.y247{bottom:444.928000pt;}
.y1c2{bottom:446.322667pt;}
.y197{bottom:446.629333pt;}
.y147{bottom:447.529333pt;}
.ye3{bottom:448.316000pt;}
.y72{bottom:448.698667pt;}
.ya7{bottom:449.512000pt;}
.y15{bottom:450.170667pt;}
.y16f{bottom:451.820000pt;}
.y3c{bottom:452.429333pt;}
.y20d{bottom:453.876000pt;}
.y108{bottom:455.748000pt;}
.y3d{bottom:456.769333pt;}
.y246{bottom:460.270667pt;}
.y1c1{bottom:463.060000pt;}
.y196{bottom:463.366667pt;}
.y145{bottom:464.625333pt;}
.ye1{bottom:465.053333pt;}
.y71{bottom:465.436000pt;}
.y14{bottom:466.070667pt;}
.y16e{bottom:468.557333pt;}
.y146{bottom:468.964000pt;}
.y3b{bottom:469.725333pt;}
.ye2{bottom:469.874667pt;}
.y20c{bottom:473.202667pt;}
.y245{bottom:475.613333pt;}
.ya6{bottom:479.398667pt;}
.y1c0{bottom:479.797333pt;}
.y195{bottom:480.104000pt;}
.y144{bottom:481.720000pt;}
.ydf{bottom:481.790667pt;}
.y13{bottom:481.972000pt;}
.y70{bottom:482.173333pt;}
.y16c{bottom:485.294667pt;}
.y107{bottom:485.585333pt;}
.ye0{bottom:486.612000pt;}
.y3a{bottom:487.020000pt;}
.y16d{bottom:490.116000pt;}
.y244{bottom:490.956000pt;}
.ya5{bottom:496.136000pt;}
.y1be{bottom:496.534667pt;}
.y193{bottom:496.841333pt;}
.y12{bottom:497.872000pt;}
.ydd{bottom:498.528000pt;}
.y142{bottom:498.816000pt;}
.y6f{bottom:498.910667pt;}
.y1bf{bottom:501.357333pt;}
.y194{bottom:501.662667pt;}
.y16b{bottom:502.032000pt;}
.y106{bottom:502.681333pt;}
.y20b{bottom:503.090667pt;}
.y143{bottom:503.156000pt;}
.yde{bottom:503.349333pt;}
.y39{bottom:504.314667pt;}
.y243{bottom:506.298667pt;}
.ya4{bottom:512.873333pt;}
.y1bd{bottom:513.272000pt;}
.y192{bottom:513.578667pt;}
.y11{bottom:513.772000pt;}
.ydc{bottom:515.265333pt;}
.y6d{bottom:515.648000pt;}
.y16a{bottom:518.769333pt;}
.y104{bottom:519.776000pt;}
.y6e{bottom:520.469333pt;}
.y38{bottom:521.610667pt;}
.y242{bottom:521.641333pt;}
.y105{bottom:524.116000pt;}
.y20a{bottom:526.682667pt;}
.ya3{bottom:529.610667pt;}
.y10{bottom:529.673333pt;}
.y1bc{bottom:530.009333pt;}
.y191{bottom:530.316000pt;}
.ydb{bottom:532.002667pt;}
.y6c{bottom:532.384000pt;}
.y103{bottom:536.872000pt;}
.y241{bottom:536.984000pt;}
.y37{bottom:538.905333pt;}
.y209{bottom:542.304000pt;}
.yf{bottom:545.573333pt;}
.ya2{bottom:546.348000pt;}
.y1bb{bottom:546.746667pt;}
.y190{bottom:547.053333pt;}
.y169{bottom:548.605333pt;}
.yda{bottom:548.740000pt;}
.y6b{bottom:549.121333pt;}
.y240{bottom:552.325333pt;}
.y102{bottom:553.968000pt;}
.y36{bottom:556.201333pt;}
.ye{bottom:561.473333pt;}
.ya1{bottom:563.085333pt;}
.y1ba{bottom:563.484000pt;}
.y18f{bottom:563.790667pt;}
.yd9{bottom:565.477333pt;}
.y168{bottom:565.701333pt;}
.y6a{bottom:565.858667pt;}
.y208{bottom:565.896000pt;}
.y23e{bottom:567.668000pt;}
.y101{bottom:571.064000pt;}
.y23f{bottom:572.008000pt;}
.y35{bottom:573.496000pt;}
.yd{bottom:577.374667pt;}
.ya0{bottom:579.822667pt;}
.y1b9{bottom:580.221333pt;}
.y18e{bottom:580.528000pt;}
.y207{bottom:581.517333pt;}
.yd8{bottom:582.214667pt;}
.y69{bottom:582.596000pt;}
.y166{bottom:582.797333pt;}
.y23d{bottom:583.010667pt;}
.y1d9{bottom:585.044000pt;}
.y167{bottom:587.136000pt;}
.y100{bottom:588.160000pt;}
.y34{bottom:590.790667pt;}
.yc{bottom:593.274667pt;}
.y9f{bottom:596.560000pt;}
.y1b8{bottom:596.958667pt;}
.y18d{bottom:597.265333pt;}
.y23c{bottom:598.353333pt;}
.yd7{bottom:598.952000pt;}
.y68{bottom:599.333333pt;}
.y165{bottom:599.893333pt;}
.y206{bottom:605.108000pt;}
.yfe{bottom:605.256000pt;}
.y33{bottom:608.086667pt;}
.yff{bottom:609.596000pt;}
.y9{bottom:613.160048pt;}
.y9e{bottom:613.297333pt;}
.y1b7{bottom:613.696000pt;}
.y18c{bottom:614.002667pt;}
.yd6{bottom:615.689333pt;}
.y67{bottom:616.070667pt;}
.y164{bottom:616.988000pt;}
.yfd{bottom:622.352000pt;}
.y32{bottom:625.381333pt;}
.y205{bottom:628.700000pt;}
.y23b{bottom:629.038667pt;}
.y9d{bottom:630.034667pt;}
.y1b6{bottom:630.433333pt;}
.y18b{bottom:630.740000pt;}
.y66{bottom:632.808000pt;}
.y260{bottom:633.378667pt;}
.y163{bottom:634.084000pt;}
.yd5{bottom:636.410667pt;}
.yfb{bottom:639.448000pt;}
.y31{bottom:642.676000pt;}
.yfc{bottom:643.786667pt;}
.y204{bottom:644.321333pt;}
.y23a{bottom:644.381333pt;}
.y9c{bottom:646.772000pt;}
.y1b5{bottom:647.170667pt;}
.y18a{bottom:647.477333pt;}
.y65{bottom:649.545333pt;}
.y162{bottom:651.180000pt;}
.yfa{bottom:656.544000pt;}
.y239{bottom:659.724000pt;}
.y203{bottom:659.942667pt;}
.y9b{bottom:663.509333pt;}
.y1b4{bottom:663.908000pt;}
.y189{bottom:664.214667pt;}
.y64{bottom:666.282667pt;}
.yd4{bottom:666.298667pt;}
.y160{bottom:668.276000pt;}
.y1d8{bottom:668.729333pt;}
.y161{bottom:672.616000pt;}
.y238{bottom:675.066667pt;}
.y202{bottom:675.564000pt;}
.y30{bottom:676.974667pt;}
.y9a{bottom:680.246667pt;}
.y1b3{bottom:680.645333pt;}
.y188{bottom:680.950667pt;}
.y63{bottom:683.020000pt;}
.yd3{bottom:683.036000pt;}
.y15e{bottom:685.372000pt;}
.y15f{bottom:689.712000pt;}
.y237{bottom:690.408000pt;}
.y201{bottom:691.185333pt;}
.y2f{bottom:691.321333pt;}
.y99{bottom:696.984000pt;}
.y1b2{bottom:697.382667pt;}
.y187{bottom:697.688000pt;}
.y62{bottom:699.757333pt;}
.yd2{bottom:699.773333pt;}
.y15d{bottom:702.468000pt;}
.y2e{bottom:705.666667pt;}
.y236{bottom:705.750667pt;}
.y98{bottom:713.721333pt;}
.y12b{bottom:714.120000pt;}
.y186{bottom:714.425333pt;}
.y200{bottom:714.777333pt;}
.y61{bottom:716.494667pt;}
.yd1{bottom:716.510667pt;}
.y2d{bottom:720.013333pt;}
.y235{bottom:721.093333pt;}
.y1ff{bottom:730.398667pt;}
.y97{bottom:730.458667pt;}
.y12a{bottom:730.857333pt;}
.y185{bottom:731.162667pt;}
.y60{bottom:733.232000pt;}
.yd0{bottom:733.248000pt;}
.y234{bottom:736.436000pt;}
.y2c{bottom:738.217333pt;}
.y1fe{bottom:746.020000pt;}
.y96{bottom:747.196000pt;}
.y129{bottom:747.594667pt;}
.y184{bottom:747.900000pt;}
.y2b{bottom:748.706667pt;}
.y5f{bottom:749.969333pt;}
.ycf{bottom:749.985333pt;}
.y233{bottom:751.778667pt;}
.y1fd{bottom:761.641333pt;}
.y2a{bottom:763.052000pt;}
.y94{bottom:763.933333pt;}
.y128{bottom:764.332000pt;}
.y183{bottom:764.637333pt;}
.y5e{bottom:766.706667pt;}
.ycd{bottom:766.722667pt;}
.y29{bottom:766.909333pt;}
.y232{bottom:767.121333pt;}
.y95{bottom:768.754667pt;}
.yce{bottom:771.544000pt;}
.y1fc{bottom:777.262667pt;}
.y28{bottom:777.398667pt;}
.y93{bottom:780.670667pt;}
.ycc{bottom:781.033333pt;}
.y127{bottom:781.069333pt;}
.y182{bottom:781.374667pt;}
.y231{bottom:782.464000pt;}
.y5d{bottom:783.444000pt;}
.yca{bottom:783.460000pt;}
.ycb{bottom:788.281333pt;}
.y27{bottom:791.745333pt;}
.y1fb{bottom:792.885333pt;}
.y92{bottom:797.408000pt;}
.y126{bottom:797.806667pt;}
.y181{bottom:798.112000pt;}
.y5c{bottom:800.181333pt;}
.yc8{bottom:800.197333pt;}
.y25f{bottom:802.145333pt;}
.yc9{bottom:805.018667pt;}
.y1fa{bottom:808.506667pt;}
.y26{bottom:809.949333pt;}
.y25e{bottom:813.148000pt;}
.y230{bottom:813.149333pt;}
.y91{bottom:814.145333pt;}
.y125{bottom:814.544000pt;}
.y180{bottom:814.849333pt;}
.y5b{bottom:816.918667pt;}
.yc7{bottom:816.934667pt;}
.y22f{bottom:828.490667pt;}
.y8f{bottom:830.882667pt;}
.y124{bottom:831.281333pt;}
.y17f{bottom:831.586667pt;}
.y1f9{bottom:832.097333pt;}
.y5a{bottom:833.656000pt;}
.yc6{bottom:833.672000pt;}
.y90{bottom:835.704000pt;}
.y22e{bottom:843.833333pt;}
.y8{bottom:845.676000pt;}
.y1f8{bottom:847.718667pt;}
.yc5{bottom:847.982667pt;}
.y123{bottom:848.018667pt;}
.y59{bottom:850.393333pt;}
.yc3{bottom:850.409333pt;}
.y8e{bottom:851.604000pt;}
.y17e{bottom:852.309333pt;}
.y1b1{bottom:852.840000pt;}
.yc4{bottom:855.230667pt;}
.y22d{bottom:859.176000pt;}
.y7{bottom:862.413333pt;}
.y1f7{bottom:863.341333pt;}
.y122{bottom:864.754667pt;}
.y58{bottom:867.130667pt;}
.yc1{bottom:867.146667pt;}
.yc2{bottom:871.968000pt;}
.y22c{bottom:874.518667pt;}
.y17d{bottom:876.500000pt;}
.y1f6{bottom:878.962667pt;}
.y8d{bottom:881.492000pt;}
.y57{bottom:883.868000pt;}
.yc0{bottom:883.884000pt;}
.y1b0{bottom:886.314667pt;}
.y22b{bottom:889.861333pt;}
.y17c{bottom:893.596000pt;}
.y1f5{bottom:894.584000pt;}
.y8c{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y56{bottom:900.605333pt;}
.ybf{bottom:900.621333pt;}
.y22a{bottom:905.204000pt;}
.y1f4{bottom:910.205333pt;}
.y17a{bottom:910.692000pt;}
.y8a{bottom:914.966667pt;}
.y17b{bottom:915.030667pt;}
.y55{bottom:917.342667pt;}
.y8b{bottom:919.789333pt;}
.y229{bottom:920.546667pt;}
.ybe{bottom:921.342667pt;}
.y5{bottom:925.510667pt;}
.y178{bottom:927.788000pt;}
.y89{bottom:931.704000pt;}
.y179{bottom:932.126667pt;}
.y1f3{bottom:933.796000pt;}
.y54{bottom:934.080000pt;}
.ybd{bottom:935.290667pt;}
.y228{bottom:935.889333pt;}
.y177{bottom:944.882667pt;}
.y88{bottom:948.441333pt;}
.y1f2{bottom:949.836000pt;}
.y4{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y227{bottom:951.230667pt;}
.y176{bottom:961.978667pt;}
.y87{bottom:965.178667pt;}
.y1f1{bottom:965.876000pt;}
.y226{bottom:966.573333pt;}
.y52{bottom:967.554667pt;}
.y1af{bottom:970.001333pt;}
.y3{bottom:975.722667pt;}
.y86{bottom:981.916000pt;}
.y51{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.h13{height:22.523597pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.h17{height:25.026051pt;}
.h1f{height:25.811318pt;}
.hc{height:27.076941pt;}
.hd{height:27.262909pt;}
.h1b{height:28.023859pt;}
.h19{height:29.397999pt;}
.hb{height:29.433775pt;}
.h21{height:29.599908pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h18{height:31.157778pt;}
.h1e{height:33.186336pt;}
.h14{height:33.474560pt;}
.h10{height:34.430976pt;}
.h12{height:34.813542pt;}
.h11{height:35.052646pt;}
.h1c{height:36.873667pt;}
.h1a{height:37.193707pt;}
.h15{height:38.256384pt;}
.h16{height:38.681455pt;}
.h4{height:38.947124pt;}
.h20{height:44.436941pt;}
.h2{height:45.271688pt;}
.h1d{height:47.314526pt;}
.h7{height:48.360277pt;}
.h8{height:48.365611pt;}
.h3{height:66.058028pt;}
.h6{height:68.861952pt;}
.h5{height:69.435802pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:214.021695pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.605861pt;}
.xab{left:76.346667pt;}
.xaf{left:86.301333pt;}
.xb0{left:94.532000pt;}
.xac{left:126.730667pt;}
.xb7{left:197.914667pt;}
.xb8{left:205.298667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x103{left:232.049333pt;}
.x51{left:233.737333pt;}
.x55{left:235.373333pt;}
.x97{left:236.672000pt;}
.x7{left:239.480000pt;}
.x5{left:241.085333pt;}
.x52{left:242.882667pt;}
.x56{left:244.388000pt;}
.x47{left:246.365333pt;}
.xa4{left:248.537333pt;}
.x16{left:251.365333pt;}
.x48{left:254.569333pt;}
.x104{left:256.649333pt;}
.xc2{left:258.636000pt;}
.xa5{left:260.504000pt;}
.xa7{left:264.421333pt;}
.x37{left:267.222667pt;}
.xa6{left:268.797333pt;}
.xdd{left:271.714667pt;}
.x24{left:272.614667pt;}
.x89{left:273.877333pt;}
.x8{left:275.241333pt;}
.xa1{left:276.729333pt;}
.x25{left:279.256000pt;}
.x38{left:280.505333pt;}
.x100{left:281.933333pt;}
.x6a{left:283.629333pt;}
.x15{left:285.208000pt;}
.x22{left:289.014667pt;}
.x81{left:294.036000pt;}
.x23{left:295.656000pt;}
.xff{left:297.965333pt;}
.x26{left:299.313333pt;}
.x39{left:303.288000pt;}
.x82{left:305.497333pt;}
.xf7{left:307.596000pt;}
.xd3{left:309.281333pt;}
.x3a{left:312.433333pt;}
.x79{left:314.825333pt;}
.xfb{left:316.008000pt;}
.xf8{left:318.994667pt;}
.xfc{left:320.344000pt;}
.x87{left:322.540000pt;}
.x7a{left:323.865333pt;}
.xd4{left:325.952000pt;}
.xfd{left:333.626667pt;}
.x88{left:336.790667pt;}
.xd5{left:339.236000pt;}
.xf9{left:340.153333pt;}
.xc9{left:346.204000pt;}
.x8d{left:348.545333pt;}
.xb{left:350.834667pt;}
.xc1{left:352.942667pt;}
.xb9{left:355.625333pt;}
.xa8{left:357.122667pt;}
.xc{left:359.065333pt;}
.xf{left:360.152000pt;}
.x8e{left:361.376000pt;}
.x9e{left:363.354667pt;}
.xba{left:364.257333pt;}
.x84{left:365.212000pt;}
.x9f{left:366.609333pt;}
.x101{left:368.893333pt;}
.xa9{left:370.405333pt;}
.x36{left:371.410667pt;}
.x8f{left:373.342667pt;}
.xc3{left:375.028000pt;}
.xb1{left:376.418667pt;}
.x1e{left:377.684000pt;}
.xa0{left:379.892000pt;}
.x5f{left:381.604000pt;}
.x32{left:384.818667pt;}
.x61{left:385.878667pt;}
.x29{left:388.628000pt;}
.x60{left:389.809333pt;}
.x6b{left:391.152000pt;}
.xbc{left:392.416000pt;}
.x9{left:394.818667pt;}
.x108{left:396.814667pt;}
.x33{left:398.102667pt;}
.x62{left:400.126667pt;}
.x1d{left:401.126667pt;}
.xa{left:402.092000pt;}
.xa2{left:403.942667pt;}
.x2a{left:405.298667pt;}
.xe5{left:406.348000pt;}
.x71{left:407.345333pt;}
.x7f{left:409.358667pt;}
.x63{left:413.145333pt;}
.x10{left:415.172000pt;}
.x20{left:417.284000pt;}
.x2b{left:418.581333pt;}
.x64{left:422.180000pt;}
.x21{left:423.925333pt;}
.x53{left:427.434667pt;}
.x5a{left:428.818667pt;}
.x5b{left:432.205333pt;}
.x102{left:433.196000pt;}
.x1f{left:434.397333pt;}
.xa3{left:436.501333pt;}
.x41{left:441.376000pt;}
.xdb{left:443.009333pt;}
.x34{left:446.173333pt;}
.x42{left:450.521333pt;}
.x2c{left:454.678667pt;}
.x4a{left:455.801333pt;}
.x75{left:457.561333pt;}
.x35{left:459.457333pt;}
.xed{left:462.942667pt;}
.x4b{left:464.005333pt;}
.xf4{left:465.772000pt;}
.x2d{left:467.962667pt;}
.x27{left:469.129333pt;}
.xef{left:470.810667pt;}
.x76{left:471.880000pt;}
.xf0{left:474.114667pt;}
.xe4{left:476.400000pt;}
.x8a{left:479.041333pt;}
.x72{left:481.126667pt;}
.x28{left:482.413333pt;}
.x77{left:485.429333pt;}
.x8b{left:487.188000pt;}
.xbb{left:489.085333pt;}
.x59{left:491.008000pt;}
.x78{left:494.534667pt;}
.x57{left:495.906667pt;}
.x8c{left:497.109333pt;}
.x19{left:499.492000pt;}
.xcc{left:501.705333pt;}
.x6c{left:503.488000pt;}
.x58{left:504.921333pt;}
.x1a{left:506.133333pt;}
.x1b{left:509.410667pt;}
.x6d{left:511.693333pt;}
.xe2{left:513.437333pt;}
.x1c{left:516.053333pt;}
.x9d{left:517.900000pt;}
.x11{left:520.917333pt;}
.xe3{left:522.582667pt;}
.x69{left:523.878667pt;}
.x85{left:525.280000pt;}
.xd1{left:527.392000pt;}
.xe7{left:528.980000pt;}
.x12{left:531.194667pt;}
.xbe{left:533.034667pt;}
.x43{left:534.628000pt;}
.xd2{left:536.537333pt;}
.xaa{left:537.449333pt;}
.x96{left:538.356000pt;}
.xda{left:539.738667pt;}
.xe8{left:542.264000pt;}
.x44{left:543.773333pt;}
.x90{left:546.654667pt;}
.x67{left:548.708000pt;}
.xdf{left:549.936000pt;}
.x5c{left:552.286667pt;}
.xe0{left:553.296000pt;}
.x3b{left:554.949333pt;}
.x68{left:556.913333pt;}
.x91{left:558.622667pt;}
.x5d{left:560.492000pt;}
.xc8{left:562.113333pt;}
.x109{left:564.694667pt;}
.x92{left:566.933333pt;}
.x3c{left:568.233333pt;}
.xbd{left:569.278667pt;}
.x3d{left:571.620000pt;}
.xdc{left:573.313333pt;}
.x93{left:574.902667pt;}
.xf6{left:576.265333pt;}
.xec{left:577.160000pt;}
.xb2{left:578.502667pt;}
.x13{left:580.000000pt;}
.x94{left:583.534667pt;}
.x3e{left:584.904000pt;}
.x95{left:586.526667pt;}
.x14{left:590.277333pt;}
.xe9{left:592.394667pt;}
.x2e{left:596.290667pt;}
.x98{left:600.085333pt;}
.xee{left:601.692000pt;}
.xb3{left:603.472000pt;}
.x80{left:606.050667pt;}
.x99{left:608.058667pt;}
.x2f{left:609.574667pt;}
.x7b{left:611.290667pt;}
.x30{left:612.874667pt;}
.x73{left:614.706667pt;}
.x49{left:616.076000pt;}
.x83{left:617.509333pt;}
.x86{left:619.209333pt;}
.x7d{left:620.484000pt;}
.x74{left:622.912000pt;}
.xf3{left:624.790667pt;}
.x31{left:626.158667pt;}
.xe6{left:627.546667pt;}
.x7e{left:628.688000pt;}
.x4d{left:633.870667pt;}
.xd{left:634.954667pt;}
.x45{left:635.906667pt;}
.xb4{left:637.582667pt;}
.xea{left:638.846667pt;}
.xd7{left:640.189333pt;}
.xeb{left:642.148000pt;}
.x10a{left:644.121333pt;}
.x3f{left:645.296000pt;}
.xe{left:646.298667pt;}
.x46{left:649.190667pt;}
.x65{left:651.781333pt;}
.xcd{left:653.542667pt;}
.x7c{left:655.226667pt;}
.xbf{left:656.136000pt;}
.x40{left:658.580000pt;}
.xc7{left:660.381333pt;}
.x9b{left:661.400000pt;}
.xf5{left:664.314667pt;}
.xc0{left:665.433333pt;}
.xce{left:666.825333pt;}
.x10b{left:668.030667pt;}
.xcf{left:670.213333pt;}
.x6e{left:672.409333pt;}
.x9c{left:674.949333pt;}
.xfe{left:677.158667pt;}
.xd6{left:679.474667pt;}
.xd8{left:680.448000pt;}
.xd0{left:683.496000pt;}
.x6f{left:685.653333pt;}
.xad{left:688.098667pt;}
.xe1{left:689.085333pt;}
.x17{left:690.693333pt;}
.xde{left:691.810667pt;}
.x70{left:694.677333pt;}
.xfa{left:695.746667pt;}
.xb5{left:696.684000pt;}
.x9a{left:698.537333pt;}
.xc4{left:699.504000pt;}
.xae{left:700.557333pt;}
.x105{left:701.682667pt;}
.x18{left:702.628000pt;}
.x5e{left:704.500000pt;}
.xb6{left:707.700000pt;}
.xc5{left:709.104000pt;}
.x4c{left:711.325333pt;}
.x4e{left:712.836000pt;}
.x107{left:720.236000pt;}
.xc6{left:722.388000pt;}
.xca{left:723.661333pt;}
.x66{left:725.301333pt;}
.x4f{left:727.090667pt;}
.xd9{left:732.718667pt;}
.x54{left:734.774667pt;}
.xf1{left:735.890667pt;}
.x50{left:740.241333pt;}
.xcb{left:741.189333pt;}
.xf2{left:743.973333pt;}
.x106{left:744.864000pt;}
}




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