
    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_d1f60e4407addaad811960cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_43b574e16c98307691fec7ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_0ede3215ada587c9dfab4ea9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_439382a3f2948326d0f8ae9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f721d00c29638ec5ab0a62c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_69af6c1290da5f25ca8c3641.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_2e69b2fbfc7f4a7705391c77.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_27bf8ac208622ae75f62891f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1798a05a3d78bdc39b32c4e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_60daae871ee02943e0691e56.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;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_7597241865be9299ca4d8222.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_96d1ff05b1fa04536d873f96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;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;}
.m2{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);}
.m0{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);}
.m1f{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);}
.m20{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);}
.m8{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);}
.md{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);}
.m27{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);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m11{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);}
.mc{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);}
.m12{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);}
.m28{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);}
.m13{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);}
.m24{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);}
.ma{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);}
.m22{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);}
.m26{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);}
.me{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);}
.m1{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);}
.m21{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);}
.m15{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);}
.m1c{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);}
.m1d{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);}
.m23{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);}
.m14{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);}
.m1b{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);}
.m7{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);}
.m5{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);}
.m1a{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);}
.mb{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);}
.m1e{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);}
.m25{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);}
.m4{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);}
.m29{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);}
.m17{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.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);}
.mf{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);}
.m9{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);}
.m3{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);}
.m19{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:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.984525px;}
.ls2{letter-spacing:29.887800px;}
.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;}
}
.ws9c{word-spacing:-16.605662px;}
.wse1{word-spacing:-15.278643px;}
.wsb3{word-spacing:-2.976825px;}
.wsc9{word-spacing:-2.917049px;}
.wsaf{word-spacing:-2.857274px;}
.wsd7{word-spacing:-2.737722px;}
.wsc0{word-spacing:-2.677947px;}
.ws73{word-spacing:-2.618171px;}
.ws75{word-spacing:-2.319293px;}
.ws44{word-spacing:-2.139966px;}
.ws2e{word-spacing:-2.020415px;}
.ws91{word-spacing:-1.960640px;}
.wsd4{word-spacing:-1.721537px;}
.ws78{word-spacing:-1.661762px;}
.wsc5{word-spacing:-1.601986px;}
.ws30{word-spacing:-1.482435px;}
.wsa9{word-spacing:-1.243332px;}
.wsd0{word-spacing:-1.123781px;}
.wsc2{word-spacing:-1.064006px;}
.ws85{word-spacing:-0.884679px;}
.ws3b{word-spacing:-0.824903px;}
.wsb2{word-spacing:-0.765128px;}
.ws67{word-spacing:-0.705352px;}
.ws117{word-spacing:-0.645576px;}
.ws2a{word-spacing:-0.585801px;}
.wsb4{word-spacing:-0.466250px;}
.ws12c{word-spacing:-0.346698px;}
.wsc4{word-spacing:-0.286923px;}
.ws9e{word-spacing:-0.227147px;}
.ws54{word-spacing:-0.107596px;}
.wsad{word-spacing:-0.059776px;}
.ws49{word-spacing:-0.047820px;}
.ws1f{word-spacing:0.000000px;}
.ws62{word-spacing:0.011955px;}
.wsca{word-spacing:0.131506px;}
.ws74{word-spacing:0.251058px;}
.ws2b{word-spacing:0.310833px;}
.ws63{word-spacing:0.370609px;}
.wsd9{word-spacing:0.382564px;}
.ws7a{word-spacing:0.430384px;}
.ws8b{word-spacing:0.490160px;}
.ws7f{word-spacing:0.549936px;}
.ws37{word-spacing:0.609711px;}
.ws7e{word-spacing:0.669487px;}
.wsd5{word-spacing:0.729262px;}
.wsb0{word-spacing:0.848814px;}
.wsd3{word-spacing:1.028140px;}
.wsd1{word-spacing:1.087916px;}
.ws92{word-spacing:1.104447px;}
.ws93{word-spacing:1.124455px;}
.ws7b{word-spacing:1.207467px;}
.wsa1{word-spacing:1.267243px;}
.wsae{word-spacing:1.327018px;}
.wse{word-spacing:1.371859px;}
.ws27{word-spacing:1.386794px;}
.wscd{word-spacing:1.446570px;}
.ws3c{word-spacing:1.506345px;}
.ws79{word-spacing:1.566121px;}
.ws4{word-spacing:1.587053px;}
.ws71{word-spacing:1.625896px;}
.wsf8{word-spacing:1.685672px;}
.wsbd{word-spacing:1.720286px;}
.ws98{word-spacing:1.805223px;}
.ws41{word-spacing:1.864999px;}
.ws102{word-spacing:1.924774px;}
.wsb9{word-spacing:1.984550px;}
.ws6d{word-spacing:2.163877px;}
.ws64{word-spacing:2.223652px;}
.wsb8{word-spacing:2.283428px;}
.ws4b{word-spacing:2.343204px;}
.ws43{word-spacing:2.402979px;}
.ws8f{word-spacing:2.522530px;}
.ws2c{word-spacing:2.582306px;}
.ws118{word-spacing:2.594261px;}
.ws3d{word-spacing:2.642082px;}
.wsb5{word-spacing:2.654037px;}
.wsa2{word-spacing:2.701857px;}
.ws14{word-spacing:2.716819px;}
.ws6c{word-spacing:2.761633px;}
.ws2d{word-spacing:2.821408px;}
.ws9{word-spacing:2.824416px;}
.ws19{word-spacing:2.878214px;}
.ws26{word-spacing:2.881184px;}
.ws7{word-spacing:2.932013px;}
.ws65{word-spacing:2.940960px;}
.wsb{word-spacing:2.985811px;}
.ws31{word-spacing:3.000735px;}
.wsd{word-spacing:3.039610px;}
.ws34{word-spacing:3.060511px;}
.ws15{word-spacing:3.093408px;}
.ws60{word-spacing:3.120286px;}
.ws16{word-spacing:3.147206px;}
.ws32{word-spacing:3.180062px;}
.ws17{word-spacing:3.201005px;}
.ws1c{word-spacing:3.239838px;}
.wsc{word-spacing:3.254803px;}
.ws3{word-spacing:3.299613px;}
.ws22{word-spacing:3.359389px;}
.ws10{word-spacing:3.362400px;}
.ws5{word-spacing:3.416198px;}
.ws1b{word-spacing:3.419164px;}
.ws28{word-spacing:3.478940px;}
.ws29{word-spacing:3.538716px;}
.ws13{word-spacing:3.577594px;}
.ws68{word-spacing:3.598491px;}
.ws1e{word-spacing:3.658267px;}
.ws4f{word-spacing:3.718042px;}
.ws4a{word-spacing:3.777818px;}
.ws52{word-spacing:3.837594px;}
.ws121{word-spacing:3.897369px;}
.ws5c{word-spacing:3.957145px;}
.ws51{word-spacing:4.016920px;}
.ws82{word-spacing:4.076696px;}
.ws10a{word-spacing:4.136472px;}
.ws4d{word-spacing:4.196247px;}
.ws89{word-spacing:4.256023px;}
.ws56{word-spacing:4.315798px;}
.ws25{word-spacing:4.375574px;}
.ws3a{word-spacing:4.483200px;}
.wsf2{word-spacing:4.495125px;}
.wsce{word-spacing:4.554901px;}
.ws18{word-spacing:4.599763px;}
.ws5d{word-spacing:4.674452px;}
.wscc{word-spacing:4.734228px;}
.ws59{word-spacing:4.794003px;}
.ws6e{word-spacing:4.853779px;}
.ws6f{word-spacing:4.913554px;}
.ws21{word-spacing:5.033106px;}
.ws58{word-spacing:5.092881px;}
.ws8{word-spacing:5.137747px;}
.wsa0{word-spacing:5.152657px;}
.wsa6{word-spacing:5.212432px;}
.wsf{word-spacing:5.245344px;}
.ws8c{word-spacing:5.272208px;}
.ws48{word-spacing:5.331984px;}
.ws39{word-spacing:5.379825px;}
.wsa7{word-spacing:5.391759px;}
.wsc6{word-spacing:5.451535px;}
.ws84{word-spacing:5.511310px;}
.ws77{word-spacing:5.571086px;}
.ws12{word-spacing:5.621933px;}
.ws57{word-spacing:5.630862px;}
.ws2f{word-spacing:5.690637px;}
.ws109{word-spacing:5.702592px;}
.ws86{word-spacing:5.750413px;}
.ws99{word-spacing:5.810188px;}
.wse8{word-spacing:5.822143px;}
.wse6{word-spacing:5.869964px;}
.wsed{word-spacing:5.881919px;}
.ws55{word-spacing:5.929740px;}
.wsfb{word-spacing:5.941695px;}
.ws53{word-spacing:5.989515px;}
.ws119{word-spacing:6.001470px;}
.ws88{word-spacing:6.049291px;}
.wse9{word-spacing:6.061246px;}
.ws38{word-spacing:6.109066px;}
.wsd8{word-spacing:6.121021px;}
.ws6{word-spacing:6.159917px;}
.ws7d{word-spacing:6.168842px;}
.wsdd{word-spacing:6.180797px;}
.wsa5{word-spacing:6.228618px;}
.ws113{word-spacing:6.240573px;}
.wsbf{word-spacing:6.288393px;}
.wsea{word-spacing:6.300348px;}
.ws123{word-spacing:6.348169px;}
.wsdc{word-spacing:6.360124px;}
.wsc1{word-spacing:6.407944px;}
.ws122{word-spacing:6.419899px;}
.ws80{word-spacing:6.467720px;}
.wsde{word-spacing:6.479675px;}
.wsa{word-spacing:6.482707px;}
.ws46{word-spacing:6.527496px;}
.ws12e{word-spacing:6.539451px;}
.ws66{word-spacing:6.706822px;}
.ws9b{word-spacing:6.766598px;}
.wsc7{word-spacing:6.886149px;}
.ws24{word-spacing:7.005700px;}
.ws23{word-spacing:7.065476px;}
.ws120{word-spacing:7.137207px;}
.ws8d{word-spacing:7.185027px;}
.wsac{word-spacing:7.244803px;}
.wsd6{word-spacing:7.304578px;}
.ws11{word-spacing:7.343482px;}
.wsbb{word-spacing:7.364354px;}
.wsb6{word-spacing:7.483905px;}
.wse4{word-spacing:7.495860px;}
.ws5a{word-spacing:7.603456px;}
.ws5b{word-spacing:7.663232px;}
.ws12d{word-spacing:7.675187px;}
.wsa4{word-spacing:7.782783px;}
.ws45{word-spacing:7.842559px;}
.wse5{word-spacing:7.854514px;}
.wsb7{word-spacing:7.902334px;}
.ws112{word-spacing:7.914289px;}
.ws87{word-spacing:7.962110px;}
.ws8e{word-spacing:8.021886px;}
.ws3f{word-spacing:8.081661px;}
.ws90{word-spacing:8.141437px;}
.ws69{word-spacing:8.201212px;}
.wsc8{word-spacing:8.260988px;}
.ws33{word-spacing:8.320764px;}
.ws42{word-spacing:8.380539px;}
.wsa8{word-spacing:8.440315px;}
.ws6b{word-spacing:8.559866px;}
.ws35{word-spacing:8.619642px;}
.ws3e{word-spacing:8.679417px;}
.ws76{word-spacing:8.739193px;}
.ws10e{word-spacing:8.798968px;}
.ws40{word-spacing:8.858744px;}
.ws5f{word-spacing:8.978295px;}
.ws95{word-spacing:9.038071px;}
.wsbe{word-spacing:9.097846px;}
.wsba{word-spacing:9.157622px;}
.wsec{word-spacing:9.169577px;}
.ws108{word-spacing:9.217398px;}
.wsa3{word-spacing:9.277173px;}
.wsd2{word-spacing:9.396724px;}
.wsdb{word-spacing:9.516276px;}
.ws9a{word-spacing:9.576051px;}
.ws7c{word-spacing:9.635827px;}
.ws8a{word-spacing:9.695602px;}
.wsaa{word-spacing:9.755378px;}
.ws9f{word-spacing:9.934705px;}
.wsfa{word-spacing:9.994480px;}
.ws36{word-spacing:10.114032px;}
.ws10d{word-spacing:10.173807px;}
.wsab{word-spacing:10.233583px;}
.wsf1{word-spacing:10.293358px;}
.ws50{word-spacing:10.412910px;}
.ws110{word-spacing:10.472685px;}
.ws81{word-spacing:10.532461px;}
.wsda{word-spacing:10.544416px;}
.wsc3{word-spacing:10.652012px;}
.wsb1{word-spacing:10.711788px;}
.ws1d{word-spacing:10.831339px;}
.ws72{word-spacing:10.891114px;}
.wse0{word-spacing:10.950890px;}
.wseb{word-spacing:11.010666px;}
.ws114{word-spacing:11.070441px;}
.ws10f{word-spacing:11.082396px;}
.ws97{word-spacing:11.130217px;}
.ws11b{word-spacing:11.309544px;}
.ws83{word-spacing:11.369319px;}
.ws47{word-spacing:11.727973px;}
.ws6a{word-spacing:11.787748px;}
.wsf3{word-spacing:11.847524px;}
.wsbc{word-spacing:11.904880px;}
.ws4c{word-spacing:12.385504px;}
.ws4e{word-spacing:12.445280px;}
.ws126{word-spacing:12.457235px;}
.wse7{word-spacing:12.624607px;}
.ws94{word-spacing:12.782464px;}
.ws12f{word-spacing:13.054991px;}
.ws115{word-spacing:13.174542px;}
.ws111{word-spacing:13.820119px;}
.ws11c{word-spacing:13.999446px;}
.wsdf{word-spacing:14.118997px;}
.ws116{word-spacing:14.178772px;}
.ws128{word-spacing:14.609157px;}
.ws5e{word-spacing:14.716753px;}
.wse3{word-spacing:14.908035px;}
.ws70{word-spacing:15.434060px;}
.ws127{word-spacing:15.732938px;}
.ws10c{word-spacing:16.629572px;}
.ws10b{word-spacing:18.315244px;}
.wse2{word-spacing:19.809634px;}
.wsf0{word-spacing:20.455210px;}
.ws11d{word-spacing:21.232293px;}
.ws129{word-spacing:22.619087px;}
.ws12a{word-spacing:22.786459px;}
.ws9d{word-spacing:22.834279px;}
.ws2{word-spacing:23.312640px;}
.ws103{word-spacing:23.742868px;}
.ws12b{word-spacing:23.981971px;}
.ws104{word-spacing:24.830784px;}
.ws11a{word-spacing:24.878605px;}
.wsf4{word-spacing:24.938380px;}
.ws130{word-spacing:25.057932px;}
.wsee{word-spacing:26.253444px;}
.ws1a{word-spacing:26.719693px;}
.wsf9{word-spacing:27.162033px;}
.wsef{word-spacing:27.269629px;}
.ws106{word-spacing:29.481326px;}
.ws105{word-spacing:30.091037px;}
.wsfc{word-spacing:30.138858px;}
.ws1{word-spacing:30.987720px;}
.ws0{word-spacing:31.607474px;}
.ws107{word-spacing:34.681803px;}
.ws124{word-spacing:37.072827px;}
.wsf6{word-spacing:37.431481px;}
.ws100{word-spacing:38.507442px;}
.ws125{word-spacing:40.001832px;}
.ws11e{word-spacing:40.480036px;}
.wsf5{word-spacing:42.093978px;}
.ws101{word-spacing:42.153753px;}
.wsfe{word-spacing:46.338045px;}
.wsfd{word-spacing:47.354230px;}
.wscf{word-spacing:48.024038px;}
.ws131{word-spacing:53.451342px;}
.ws11f{word-spacing:53.929546px;}
.wsf7{word-spacing:57.336756px;}
.ws61{word-spacing:58.281600px;}
.wsff{word-spacing:60.146209px;}
.wscb{word-spacing:68.634344px;}
.ws96{word-spacing:68.682164px;}
.ws20{word-spacing:69.937725px;}
._1{margin-left:-8.056807px;}
._1e{margin-left:-6.742733px;}
._f{margin-left:-5.571046px;}
._6{margin-left:-4.351704px;}
._4{margin-left:-3.060542px;}
._3{margin-left:-1.673717px;}
._2{width:1.673717px;}
._0{width:2.788895px;}
._61{width:3.988206px;}
._57{width:12.964476px;}
._e{width:15.720983px;}
._d{width:17.036046px;}
._13{width:18.243473px;}
._19{width:19.845499px;}
._b{width:20.993309px;}
._7{width:22.977883px;}
._5{width:24.920592px;}
._c{width:26.839244px;}
._10{width:28.572737px;}
._a{width:29.911910px;}
._8{width:31.633459px;}
._9{width:32.984386px;}
._16{width:34.430746px;}
._1b{width:35.937050px;}
._1a{width:37.240199px;}
._5b{width:38.518065px;}
._17{width:40.169203px;}
._54{width:41.245164px;}
._14{width:42.440676px;}
._1d{width:43.468776px;}
._18{width:44.473046px;}
._60{width:46.098722px;}
._5f{width:47.234711px;}
._64{width:48.836665px;}
._5e{width:49.996303px;}
._1c{width:52.602528px;}
._15{width:54.515347px;}
._44{width:60.664525px;}
._62{width:62.704604px;}
._66{width:64.458655px;}
._67{width:66.590018px;}
._53{width:68.741940px;}
._65{width:73.822866px;}
._4b{width:79.619148px;}
._12{width:80.697600px;}
._6a{width:81.725160px;}
._24{width:82.993552px;}
._63{width:87.391927px;}
._69{width:88.575704px;}
._50{width:91.047335px;}
._43{width:93.237694px;}
._49{width:94.658268px;}
._11{width:96.836850px;}
._68{width:101.200091px;}
._3c{width:108.904028px;}
._1f{width:109.924440px;}
._32{width:111.164942px;}
._48{width:112.598561px;}
._2d{width:114.946470px;}
._2e{width:116.166964px;}
._3f{width:117.447481px;}
._28{width:119.968501px;}
._33{width:121.549140px;}
._2a{width:124.110175px;}
._52{width:125.230628px;}
._2f{width:126.551162px;}
._29{width:127.831680px;}
._23{width:129.112197px;}
._40{width:130.752861px;}
._22{width:132.833702px;}
._3d{width:134.227305px;}
._35{width:138.215878px;}
._3a{width:139.229328px;}
._42{width:140.403722px;}
._4f{width:141.510250px;}
._38{width:144.231350px;}
._51{width:151.121095px;}
._47{width:155.983061px;}
._55{width:169.298799px;}
._2c{width:170.889087px;}
._4e{width:172.209621px;}
._3e{width:173.530154px;}
._34{width:178.672233px;}
._27{width:183.674255px;}
._3b{width:185.895153px;}
._5c{width:187.216689px;}
._21{width:192.450844px;}
._59{width:204.024243px;}
._46{width:234.234696px;}
._58{width:247.624171px;}
._4d{width:267.248043px;}
._4a{width:268.848690px;}
._41{width:303.890921px;}
._2b{width:306.403872px;}
._26{width:314.207027px;}
._31{width:315.247448px;}
._37{width:324.151047px;}
._4c{width:373.831132px;}
._45{width:387.544740px;}
._30{width:406.092239px;}
._25{width:421.970593px;}
._39{width:462.955227px;}
._36{width:464.275761px;}
._20{width:478.882414px;}
._56{width:641.182651px;}
._5d{width:654.605446px;}
._5a{width:713.332034px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:20.008089px;}
.fs8{font-size:31.164607px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:134.047500px;}
.y163{bottom:178.879500px;}
.y13e{bottom:182.148000px;}
.y1a4{bottom:185.088000px;}
.y1f7{bottom:186.393000px;}
.y11b{bottom:187.116000px;}
.y78{bottom:187.306500px;}
.ya0{bottom:188.707500px;}
.y1a9{bottom:188.811000px;}
.y18a{bottom:189.486000px;}
.y25e{bottom:190.834500px;}
.y1b4{bottom:191.800500px;}
.y162{bottom:196.812000px;}
.y13d{bottom:200.082000px;}
.ydf{bottom:201.441000px;}
.y1a3{bottom:203.020500px;}
.y1d6{bottom:203.650500px;}
.ycf{bottom:203.755500px;}
.y1f6{bottom:204.325500px;}
.y11a{bottom:205.050000px;}
.y77{bottom:205.239000px;}
.y9f{bottom:206.640000px;}
.y1a8{bottom:206.743500px;}
.y189{bottom:207.418500px;}
.y25d{bottom:208.767000px;}
.y161{bottom:214.744500px;}
.y13c{bottom:218.014500px;}
.yde{bottom:219.373500px;}
.y272{bottom:220.722000px;}
.y1d5{bottom:221.584500px;}
.yce{bottom:221.688000px;}
.y1f5{bottom:222.258000px;}
.y119{bottom:222.982500px;}
.y76{bottom:223.171500px;}
.y9e{bottom:224.572500px;}
.y1a7{bottom:224.676000px;}
.y23{bottom:224.893500px;}
.y188{bottom:225.351000px;}
.y249{bottom:226.273500px;}
.y25c{bottom:226.699500px;}
.y160{bottom:232.677000px;}
.y211{bottom:234.213000px;}
.y1a2{bottom:235.752000px;}
.y13b{bottom:235.947000px;}
.ydd{bottom:237.306000px;}
.y271{bottom:238.654500px;}
.y1d4{bottom:239.517000px;}
.ycd{bottom:239.620500px;}
.y1f4{bottom:240.190500px;}
.y118{bottom:240.915000px;}
.y75{bottom:241.104000px;}
.y9d{bottom:242.505000px;}
.y22{bottom:242.826000px;}
.y187{bottom:243.283500px;}
.y248{bottom:244.206000px;}
.y265{bottom:244.632000px;}
.y15f{bottom:250.609500px;}
.y1b3{bottom:251.575500px;}
.y210{bottom:252.145500px;}
.y1a6{bottom:252.261000px;}
.y4d{bottom:253.744500px;}
.y13a{bottom:253.879500px;}
.ydc{bottom:255.238500px;}
.y25b{bottom:256.588500px;}
.y1d3{bottom:257.449500px;}
.ycc{bottom:257.553000px;}
.y1f3{bottom:258.124500px;}
.y117{bottom:258.847500px;}
.y74{bottom:259.036500px;}
.y9c{bottom:260.437500px;}
.y21{bottom:260.760000px;}
.y186{bottom:261.216000px;}
.y229{bottom:262.566000px;}
.y15e{bottom:268.543500px;}
.y20f{bottom:270.079500px;}
.y4c{bottom:271.677000px;}
.y139{bottom:271.812000px;}
.yeb{bottom:273.171000px;}
.y247{bottom:273.666000px;}
.y25a{bottom:274.521000px;}
.y1d2{bottom:275.382000px;}
.ycb{bottom:275.485500px;}
.y1f2{bottom:276.057000px;}
.y73{bottom:276.970500px;}
.y9b{bottom:278.371500px;}
.y20{bottom:278.692500px;}
.y185{bottom:279.148500px;}
.y228{bottom:280.498500px;}
.y1b2{bottom:281.463000px;}
.ydb{bottom:282.823500px;}
.y15d{bottom:286.476000px;}
.y4b{bottom:289.609500px;}
.y138{bottom:289.744500px;}
.yea{bottom:291.105000px;}
.y116{bottom:291.579000px;}
.y246{bottom:291.600000px;}
.y264{bottom:292.453500px;}
.y1d1{bottom:293.314500px;}
.yca{bottom:293.418000px;}
.y1f1{bottom:293.989500px;}
.y72{bottom:294.903000px;}
.y9a{bottom:296.304000px;}
.y1f{bottom:296.625000px;}
.y184{bottom:297.082500px;}
.y227{bottom:298.431000px;}
.y1b1{bottom:299.397000px;}
.y20e{bottom:299.967000px;}
.y259{bottom:304.408500px;}
.y1a1{bottom:306.220342px;}
.y4a{bottom:307.542000px;}
.y137{bottom:307.678500px;}
.ye9{bottom:309.037500px;}
.y263{bottom:310.386000px;}
.y1d0{bottom:311.247000px;}
.yc9{bottom:311.352000px;}
.y1f0{bottom:311.922000px;}
.y71{bottom:312.835500px;}
.y15c{bottom:314.059500px;}
.y99{bottom:314.236500px;}
.y183{bottom:315.015000px;}
.y1a0{bottom:315.880882px;}
.y26c{bottom:316.363500px;}
.y1b0{bottom:317.329500px;}
.y20d{bottom:317.899500px;}
.y115{bottom:318.478500px;}
.y245{bottom:321.060000px;}
.y258{bottom:322.341000px;}
.y1e{bottom:323.524500px;}
.yda{bottom:324.655500px;}
.y49{bottom:325.476000px;}
.y19f{bottom:325.542204px;}
.y136{bottom:325.611000px;}
.ye8{bottom:326.970000px;}
.y226{bottom:328.318500px;}
.y1cf{bottom:329.181000px;}
.yc8{bottom:329.284500px;}
.y1ef{bottom:329.854500px;}
.y70{bottom:330.768000px;}
.y98{bottom:332.169000px;}
.y182{bottom:332.947500px;}
.y19e{bottom:335.203526px;}
.y1af{bottom:335.262000px;}
.y20c{bottom:335.832000px;}
.y244{bottom:338.992500px;}
.y1d{bottom:339.963000px;}
.y257{bottom:340.273500px;}
.yd9{bottom:342.588000px;}
.y48{bottom:343.408500px;}
.y135{bottom:343.543500px;}
.y19d{bottom:344.864066px;}
.ye7{bottom:344.902500px;}
.y225{bottom:346.251000px;}
.y1ce{bottom:347.113500px;}
.yc7{bottom:347.217000px;}
.y1ee{bottom:347.787000px;}
.y6f{bottom:348.700500px;}
.y97{bottom:350.101500px;}
.y181{bottom:350.880000px;}
.y15b{bottom:352.228500px;}
.y1ae{bottom:353.194500px;}
.y20b{bottom:353.764500px;}
.y19c{bottom:356.121000px;}
.y1c{bottom:356.400000px;}
.y256{bottom:358.206000px;}
.yd8{bottom:360.520500px;}
.y47{bottom:361.341000px;}
.y134{bottom:361.476000px;}
.ye6{bottom:362.835000px;}
.y26b{bottom:364.185000px;}
.y1cd{bottom:365.046000px;}
.yc6{bottom:365.149500px;}
.y1ed{bottom:365.721000px;}
.y6e{bottom:366.633000px;}
.y96{bottom:368.034000px;}
.y243{bottom:368.454000px;}
.y180{bottom:368.812500px;}
.y15a{bottom:370.162500px;}
.y1ad{bottom:371.127000px;}
.y1b{bottom:372.838500px;}
.y224{bottom:376.140000px;}
.yd7{bottom:378.454500px;}
.y46{bottom:379.273500px;}
.ye5{bottom:380.767500px;}
.y26a{bottom:382.117500px;}
.y1cc{bottom:382.978500px;}
.yc5{bottom:383.082000px;}
.y1ec{bottom:383.653500px;}
.y6d{bottom:384.567000px;}
.y114{bottom:384.923992px;}
.y95{bottom:385.968000px;}
.y242{bottom:386.386500px;}
.y17f{bottom:386.745000px;}
.y159{bottom:388.095000px;}
.y133{bottom:389.059500px;}
.y1a{bottom:389.277000px;}
.y113{bottom:390.926359px;}
.y223{bottom:394.072500px;}
.yd6{bottom:396.387000px;}
.y112{bottom:396.928725px;}
.y45{bottom:397.206000px;}
.ye4{bottom:398.701500px;}
.y19b{bottom:399.375000px;}
.y1cb{bottom:400.911000px;}
.y1eb{bottom:401.586000px;}
.y6c{bottom:402.499500px;}
.y111{bottom:402.931594px;}
.y94{bottom:403.900500px;}
.y17e{bottom:404.679000px;}
.y19{bottom:405.715500px;}
.y158{bottom:406.027500px;}
.y110{bottom:408.933960px;}
.yc4{bottom:410.667000px;}
.y222{bottom:412.005000px;}
.yd5{bottom:414.319500px;}
.y10f{bottom:414.936326px;}
.y44{bottom:415.138500px;}
.y241{bottom:415.848000px;}
.ye3{bottom:416.634000px;}
.y1ac{bottom:416.644500px;}
.y19a{bottom:417.307500px;}
.y1ca{bottom:418.843500px;}
.y1ea{bottom:419.518500px;}
.y6b{bottom:420.432000px;}
.y10e{bottom:420.938693px;}
.y93{bottom:421.833000px;}
.y18{bottom:422.154000px;}
.y17d{bottom:422.611500px;}
.y157{bottom:423.960000px;}
.y10d{bottom:426.941059px;}
.y132{bottom:427.903500px;}
.y221{bottom:429.937500px;}
.yd4{bottom:432.252000px;}
.y10c{bottom:432.943426px;}
.y43{bottom:433.072500px;}
.y240{bottom:433.780500px;}
.ye2{bottom:434.566500px;}
.y199{bottom:435.241500px;}
.y1c9{bottom:436.777500px;}
.y1e9{bottom:437.451000px;}
.y6a{bottom:438.364500px;}
.y17{bottom:438.592500px;}
.y10b{bottom:438.946294px;}
.yb8{bottom:439.765500px;}
.y17c{bottom:440.544000px;}
.y156{bottom:441.892500px;}
.y10a{bottom:444.948660px;}
.y131{bottom:445.836000px;}
.yd3{bottom:450.184500px;}
.y109{bottom:450.951027px;}
.y42{bottom:451.005000px;}
.yc3{bottom:452.499000px;}
.y198{bottom:453.174000px;}
.y270{bottom:453.847500px;}
.y92{bottom:454.564500px;}
.y1c8{bottom:454.710000px;}
.y16{bottom:455.031000px;}
.y1e8{bottom:455.383500px;}
.y69{bottom:456.297000px;}
.y108{bottom:456.953393px;}
.yb7{bottom:457.698000px;}
.y17b{bottom:458.476500px;}
.y155{bottom:459.825000px;}
.y107{bottom:462.955760px;}
.y23f{bottom:463.242000px;}
.y130{bottom:463.770000px;}
.y20a{bottom:467.338500px;}
.yd2{bottom:468.117000px;}
.y41{bottom:468.937500px;}
.y106{bottom:468.958126px;}
.yc2{bottom:470.431500px;}
.y197{bottom:471.106500px;}
.y15{bottom:471.469500px;}
.y255{bottom:471.781500px;}
.y1c7{bottom:472.642500px;}
.y1e7{bottom:473.317500px;}
.y68{bottom:474.229500px;}
.y105{bottom:474.960995px;}
.y17a{bottom:476.409000px;}
.y154{bottom:477.759000px;}
.y104{bottom:480.963361px;}
.y23e{bottom:481.174500px;}
.y12f{bottom:481.702500px;}
.y209{bottom:485.272500px;}
.yb6{bottom:485.283000px;}
.yd1{bottom:486.051000px;}
.y40{bottom:486.870000px;}
.y103{bottom:486.965727px;}
.y14{bottom:487.908000px;}
.yc1{bottom:488.364000px;}
.y196{bottom:489.039000px;}
.y254{bottom:489.714000px;}
.y1c6{bottom:490.575000px;}
.y1e6{bottom:491.250000px;}
.y67{bottom:492.163500px;}
.y102{bottom:493.168424px;}
.y179{bottom:494.341500px;}
.y153{bottom:495.691500px;}
.y12e{bottom:499.635000px;}
.y101{bottom:501.970500px;}
.y208{bottom:503.205000px;}
.y91{bottom:503.983500px;}
.y13{bottom:504.346500px;}
.y3f{bottom:504.802500px;}
.yc0{bottom:506.298000px;}
.y195{bottom:506.971500px;}
.y269{bottom:507.646500px;}
.y1c5{bottom:508.507500px;}
.y1e5{bottom:509.182500px;}
.y66{bottom:510.096000px;}
.y23d{bottom:510.634500px;}
.y178{bottom:512.275500px;}
.y152{bottom:513.624000px;}
.y1a5{bottom:515.949000px;}
.y12d{bottom:517.567500px;}
.y253{bottom:519.601500px;}
.y12{bottom:520.785000px;}
.y207{bottom:521.137500px;}
.y90{bottom:521.916000px;}
.y3e{bottom:522.735000px;}
.ybf{bottom:524.230500px;}
.y194{bottom:524.904000px;}
.y220{bottom:525.579000px;}
.y1c4{bottom:526.440000px;}
.yb5{bottom:527.115000px;}
.y65{bottom:528.028500px;}
.y23c{bottom:528.568500px;}
.y177{bottom:530.208000px;}
.y151{bottom:531.556500px;}
.y12c{bottom:535.500000px;}
.y11{bottom:537.222000px;}
.y252{bottom:537.534000px;}
.y206{bottom:539.070000px;}
.y8f{bottom:539.848500px;}
.y3d{bottom:540.669000px;}
.ybe{bottom:542.163000px;}
.y193{bottom:542.838000px;}
.y21f{bottom:543.511500px;}
.y1c3{bottom:544.374000px;}
.yb4{bottom:545.047500px;}
.y64{bottom:545.961000px;}
.y23b{bottom:546.501000px;}
.y100{bottom:548.130000px;}
.y176{bottom:548.140500px;}
.y12b{bottom:553.432500px;}
.y10{bottom:553.660500px;}
.y251{bottom:555.466500px;}
.y8e{bottom:557.781000px;}
.y3c{bottom:558.601500px;}
.y150{bottom:559.140000px;}
.ybd{bottom:560.095500px;}
.y192{bottom:560.770500px;}
.y21e{bottom:561.444000px;}
.y1c2{bottom:562.306500px;}
.yb3{bottom:562.980000px;}
.y63{bottom:563.893500px;}
.yff{bottom:566.062500px;}
.y175{bottom:566.073000px;}
.y205{bottom:568.957500px;}
.ye1{bottom:569.746500px;}
.yf{bottom:570.099000px;}
.y12a{bottom:571.366500px;}
.y268{bottom:573.399000px;}
.y8d{bottom:575.713500px;}
.y23a{bottom:575.961000px;}
.y3b{bottom:576.534000px;}
.ybc{bottom:578.028000px;}
.y191{bottom:578.703000px;}
.y1c1{bottom:580.239000px;}
.y1e4{bottom:580.914000px;}
.y62{bottom:581.826000px;}
.yfe{bottom:583.995000px;}
.y174{bottom:584.005500px;}
.y250{bottom:585.355500px;}
.ye{bottom:586.537500px;}
.y204{bottom:586.891500px;}
.y129{bottom:589.299000px;}
.y21d{bottom:591.333000px;}
.y8c{bottom:593.647500px;}
.y239{bottom:593.895000px;}
.y3a{bottom:594.466500px;}
.yb2{bottom:595.711500px;}
.ybb{bottom:595.960500px;}
.y190{bottom:596.635500px;}
.y14f{bottom:597.310500px;}
.y1e3{bottom:598.846500px;}
.y61{bottom:599.760000px;}
.yfd{bottom:601.929000px;}
.y173{bottom:601.939500px;}
.yd{bottom:602.976000px;}
.y24f{bottom:603.288000px;}
.y203{bottom:604.824000px;}
.y21c{bottom:609.265500px;}
.y8b{bottom:611.580000px;}
.y238{bottom:611.827500px;}
.y39{bottom:612.399000px;}
.y1c0{bottom:612.970500px;}
.y18f{bottom:614.568000px;}
.y14e{bottom:615.243000px;}
.y1e2{bottom:616.779000px;}
.y128{bottom:616.882500px;}
.y60{bottom:617.692500px;}
.yc{bottom:619.414500px;}
.yfc{bottom:619.861500px;}
.y172{bottom:619.872000px;}
.y26f{bottom:621.220500px;}
.yba{bottom:623.545500px;}
.y21b{bottom:627.198000px;}
.y8a{bottom:629.512500px;}
.y1ab{bottom:629.523000px;}
.y237{bottom:629.760000px;}
.y38{bottom:630.331500px;}
.y18e{bottom:632.500500px;}
.y14d{bottom:633.175500px;}
.y1e1{bottom:634.711500px;}
.y5f{bottom:635.625000px;}
.yb{bottom:635.853000px;}
.yfb{bottom:637.794000px;}
.y262{bottom:639.153000px;}
.yb1{bottom:645.130500px;}
.y89{bottom:647.445000px;}
.y171{bottom:647.455500px;}
.y37{bottom:648.265500px;}
.y18d{bottom:650.434500px;}
.y14c{bottom:651.108000px;}
.ya{bottom:652.291500px;}
.y1e0{bottom:652.644000px;}
.y5e{bottom:653.557500px;}
.y127{bottom:655.726500px;}
.y21a{bottom:657.085500px;}
.y236{bottom:659.221500px;}
.y1bf{bottom:662.389500px;}
.yb0{bottom:663.063000px;}
.y88{bottom:665.377500px;}
.y36{bottom:666.198000px;}
.y18c{bottom:668.367000px;}
.y9{bottom:668.730000px;}
.y14b{bottom:669.040500px;}
.y1df{bottom:670.576500px;}
.y5d{bottom:671.490000px;}
.y126{bottom:673.659000px;}
.y219{bottom:675.018000px;}
.y235{bottom:677.154000px;}
.y1be{bottom:680.322000px;}
.yaf{bottom:680.997000px;}
.y87{bottom:683.310000px;}
.y35{bottom:684.130500px;}
.y8{bottom:685.168500px;}
.y170{bottom:686.299500px;}
.y14a{bottom:686.974500px;}
.y1de{bottom:688.510500px;}
.y5c{bottom:689.422500px;}
.y125{bottom:691.591500px;}
.y218{bottom:692.952000px;}
.y234{bottom:695.086500px;}
.y1bd{bottom:698.254500px;}
.yae{bottom:698.929500px;}
.y202{bottom:700.465500px;}
.y86{bottom:701.244000px;}
.y7{bottom:701.605500px;}
.y34{bottom:702.063000px;}
.y16f{bottom:704.232000px;}
.y261{bottom:704.907000px;}
.y1dd{bottom:706.443000px;}
.yfa{bottom:707.211000px;}
.y5b{bottom:707.356500px;}
.y124{bottom:709.525500px;}
.y149{bottom:714.558000px;}
.y1bc{bottom:716.187000px;}
.yad{bottom:716.862000px;}
.y201{bottom:718.398000px;}
.y85{bottom:719.176500px;}
.y33{bottom:719.995500px;}
.y16e{bottom:722.164500px;}
.y217{bottom:722.839500px;}
.y1dc{bottom:724.375500px;}
.y233{bottom:724.546500px;}
.y6{bottom:725.031000px;}
.yf9{bottom:725.143500px;}
.y5a{bottom:725.289000px;}
.y123{bottom:727.458000px;}
.y24e{bottom:728.817000px;}
.y1bb{bottom:734.119500px;}
.yac{bottom:734.794500px;}
.y200{bottom:736.330500px;}
.y84{bottom:737.109000px;}
.y32{bottom:737.928000px;}
.y16d{bottom:740.097000px;}
.y216{bottom:740.772000px;}
.y1db{bottom:742.308000px;}
.y232{bottom:742.480500px;}
.yf8{bottom:743.076000px;}
.y59{bottom:743.221500px;}
.y122{bottom:745.390500px;}
.y24d{bottom:746.749500px;}
.yd0{bottom:746.760000px;}
.y18b{bottom:749.749500px;}
.y1ba{bottom:752.053500px;}
.yab{bottom:752.727000px;}
.y1ff{bottom:754.263000px;}
.y83{bottom:755.041500px;}
.y148{bottom:755.716500px;}
.y31{bottom:755.862000px;}
.y16c{bottom:758.031000px;}
.y215{bottom:758.704500px;}
.y1da{bottom:760.240500px;}
.y231{bottom:760.413000px;}
.yf7{bottom:761.008500px;}
.y58{bottom:761.154000px;}
.y5{bottom:761.836500px;}
.y121{bottom:763.323000px;}
.y276{bottom:764.682000px;}
.y1b9{bottom:769.986000px;}
.yaa{bottom:770.659500px;}
.y82{bottom:772.974000px;}
.y147{bottom:773.649000px;}
.y30{bottom:773.794500px;}
.y16b{bottom:775.963500px;}
.y24c{bottom:776.637000px;}
.y1d9{bottom:778.173000px;}
.y230{bottom:778.345500px;}
.yf6{bottom:778.941000px;}
.y57{bottom:779.086500px;}
.y120{bottom:781.255500px;}
.y275{bottom:782.614500px;}
.ye0{bottom:782.625000px;}
.y1fe{bottom:784.150500px;}
.y1b8{bottom:787.918500px;}
.ya9{bottom:788.593500px;}
.y81{bottom:790.906500px;}
.y146{bottom:791.581500px;}
.y2f{bottom:791.727000px;}
.y16a{bottom:793.896000px;}
.y24b{bottom:794.571000px;}
.y1d8{bottom:796.107000px;}
.yf5{bottom:796.873500px;}
.y56{bottom:797.019000px;}
.y11f{bottom:799.188000px;}
.y26e{bottom:800.548500px;}
.y1fd{bottom:802.084500px;}
.y1b7{bottom:805.851000px;}
.ya8{bottom:806.526000px;}
.y22f{bottom:807.807000px;}
.y80{bottom:808.840500px;}
.y145{bottom:809.514000px;}
.y2e{bottom:809.659500px;}
.y4{bottom:811.705500px;}
.y169{bottom:811.828500px;}
.y24a{bottom:812.503500px;}
.yf4{bottom:814.807500px;}
.y55{bottom:814.953000px;}
.y11e{bottom:817.122000px;}
.y267{bottom:818.481000px;}
.y1fc{bottom:820.017000px;}
.ya7{bottom:824.458500px;}
.y22e{bottom:825.739500px;}
.y7f{bottom:826.773000px;}
.y144{bottom:827.446500px;}
.y2d{bottom:827.592000px;}
.y1d7{bottom:828.837000px;}
.y168{bottom:829.761000px;}
.yf3{bottom:832.740000px;}
.y54{bottom:832.885500px;}
.y1b6{bottom:833.434500px;}
.y11d{bottom:835.054500px;}
.y266{bottom:836.413500px;}
.ya6{bottom:842.391000px;}
.y22d{bottom:843.672000px;}
.y7e{bottom:844.705500px;}
.y143{bottom:845.380500px;}
.y2c{bottom:845.524500px;}
.y3{bottom:846.874500px;}
.y167{bottom:847.693500px;}
.y274{bottom:848.368500px;}
.y1fb{bottom:849.904500px;}
.yf2{bottom:850.672500px;}
.y53{bottom:850.818000px;}
.y11c{bottom:852.987000px;}
.y260{bottom:854.346000px;}
.y1b5{bottom:854.356500px;}
.y1aa{bottom:857.346000px;}
.ya5{bottom:860.323500px;}
.y7d{bottom:862.638000px;}
.y142{bottom:863.313000px;}
.y2b{bottom:863.458500px;}
.y166{bottom:865.627500px;}
.y273{bottom:866.301000px;}
.y1fa{bottom:867.837000px;}
.yf1{bottom:868.605000px;}
.y52{bottom:868.750500px;}
.y214{bottom:872.278500px;}
.yb9{bottom:872.289000px;}
.y22c{bottom:873.133500px;}
.ya4{bottom:878.256000px;}
.y7c{bottom:880.570500px;}
.y141{bottom:881.245500px;}
.y2a{bottom:881.391000px;}
.y165{bottom:883.560000px;}
.y26d{bottom:884.233500px;}
.y1f9{bottom:885.769500px;}
.yf0{bottom:886.537500px;}
.y51{bottom:886.683000px;}
.y2{bottom:890.211000px;}
.y22b{bottom:891.066000px;}
.ya3{bottom:896.190000px;}
.y140{bottom:899.178000px;}
.y29{bottom:899.323500px;}
.y25f{bottom:902.167500px;}
.yef{bottom:904.471500px;}
.y50{bottom:904.615500px;}
.y7b{bottom:908.155500px;}
.y164{bottom:911.143500px;}
.ya2{bottom:914.122500px;}
.y28{bottom:917.256000px;}
.y1f8{bottom:918.501000px;}
.y213{bottom:920.100000px;}
.y22a{bottom:920.526000px;}
.yee{bottom:922.404000px;}
.y4f{bottom:922.549500px;}
.y1{bottom:923.088000px;}
.y13f{bottom:926.761500px;}
.ya1{bottom:932.055000px;}
.y27{bottom:935.188500px;}
.y212{bottom:938.032500px;}
.yed{bottom:940.336500px;}
.y7a{bottom:949.987500px;}
.y4e{bottom:950.133000px;}
.y26{bottom:953.121000px;}
.yec{bottom:958.269000px;}
.y79{bottom:967.920000px;}
.y25{bottom:985.852500px;}
.ha{height:15.006067px;}
.hb{height:23.373455px;}
.h4{height:27.783619px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.hc{height:41.484266px;}
.h7{height:44.831700px;}
.h3{height:50.498765px;}
.h9{height:53.798400px;}
.h2{height:57.828699px;}
.h8{height:64.557900px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x31{left:198.904500px;}
.x1{left:200.652000px;}
.x2{left:202.515000px;}
.x52{left:203.660432px;}
.x4a{left:204.783000px;}
.x68{left:208.235442px;}
.x4b{left:219.727500px;}
.x9{left:223.068000px;}
.x6d{left:227.635500px;}
.x6e{left:229.614000px;}
.x6c{left:231.370500px;}
.x53{left:236.967000px;}
.x8{left:238.012500px;}
.x5c{left:239.268000px;}
.x57{left:242.481000px;}
.x6b{left:244.245000px;}
.x6a{left:246.604500px;}
.x3d{left:247.917000px;}
.x33{left:251.497500px;}
.x17{left:255.052500px;}
.xd{left:256.527000px;}
.x7{left:258.747000px;}
.x3e{left:262.861500px;}
.xe{left:263.998500px;}
.x18{left:269.997000px;}
.x3f{left:271.080000px;}
.x11{left:272.218500px;}
.x32{left:273.817500px;}
.x74{left:275.079000px;}
.x5d{left:278.335500px;}
.x77{left:284.902500px;}
.x40{left:286.024500px;}
.x5e{left:287.514000px;}
.x5f{left:302.458500px;}
.x5a{left:305.307000px;}
.x19{left:307.173000px;}
.x5b{left:320.250000px;}
.x1a{left:322.117500px;}
.x4c{left:337.188000px;}
.x1d{left:342.976500px;}
.x1e{left:351.093000px;}
.x37{left:353.041500px;}
.x38{left:367.986000px;}
.x5{left:377.005500px;}
.x39{left:378.402000px;}
.x63{left:387.718500px;}
.x28{left:391.384500px;}
.x3a{left:393.346500px;}
.x3{left:395.809500px;}
.x12{left:400.225500px;}
.x64{left:402.661500px;}
.x4{left:407.197500px;}
.x30{left:415.198500px;}
.x65{left:418.636500px;}
.x73{left:421.266000px;}
.x6{left:428.209500px;}
.x66{left:433.579500px;}
.x1b{left:442.533000px;}
.x67{left:447.016500px;}
.x1c{left:450.648000px;}
.x24{left:453.210000px;}
.xa{left:454.699500px;}
.x35{left:465.552000px;}
.x25{left:468.153000px;}
.x58{left:470.350500px;}
.x41{left:474.921000px;}
.x36{left:480.495000px;}
.x59{left:485.295000px;}
.x42{left:489.865500px;}
.x29{left:494.437500px;}
.x54{left:495.801000px;}
.x55{left:505.461000px;}
.x2a{left:509.382000px;}
.x26{left:513.526500px;}
.x75{left:515.412000px;}
.x56{left:520.404000px;}
.x78{left:521.650500px;}
.x27{left:528.471000px;}
.x6f{left:535.773000px;}
.x72{left:537.342000px;}
.x76{left:545.187000px;}
.xb{left:554.287500px;}
.xc{left:561.760500px;}
.x2b{left:567.280500px;}
.x79{left:568.723500px;}
.x70{left:572.646000px;}
.x2c{left:582.225000px;}
.x45{left:584.977500px;}
.x15{left:588.435000px;}
.x2d{left:592.905000px;}
.x46{left:599.922000px;}
.x3b{left:602.139000px;}
.x16{left:603.378000px;}
.x2e{left:607.849500px;}
.x47{left:609.063000px;}
.x51{left:613.951500px;}
.x3c{left:617.082000px;}
.x2f{left:618.531000px;}
.x71{left:619.719000px;}
.x49{left:622.744500px;}
.x48{left:624.007500px;}
.x1f{left:632.905500px;}
.x13{left:635.913000px;}
.x20{left:640.377000px;}
.x14{left:650.856000px;}
.x34{left:655.494000px;}
.x43{left:658.381500px;}
.x61{left:659.707500px;}
.xf{left:668.455500px;}
.x60{left:669.813000px;}
.x4d{left:672.222000px;}
.x44{left:673.326000px;}
.x62{left:674.650500px;}
.x10{left:675.928500px;}
.x21{left:684.213000px;}
.x4e{left:687.166500px;}
.x22{left:694.884000px;}
.x4f{left:696.037500px;}
.x69{left:702.867000px;}
.x23{left:709.828500px;}
.x50{left:710.982000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.652911pt;}
.ls2{letter-spacing:26.566933pt;}
.ws9c{word-spacing:-14.760588pt;}
.wse1{word-spacing:-13.581016pt;}
.wsb3{word-spacing:-2.646067pt;}
.wsc9{word-spacing:-2.592933pt;}
.wsaf{word-spacing:-2.539799pt;}
.wsd7{word-spacing:-2.433531pt;}
.wsc0{word-spacing:-2.380397pt;}
.ws73{word-spacing:-2.327263pt;}
.ws75{word-spacing:-2.061594pt;}
.ws44{word-spacing:-1.902192pt;}
.ws2e{word-spacing:-1.795925pt;}
.ws91{word-spacing:-1.742791pt;}
.wsd4{word-spacing:-1.530255pt;}
.ws78{word-spacing:-1.477121pt;}
.wsc5{word-spacing:-1.423988pt;}
.ws30{word-spacing:-1.317720pt;}
.wsa9{word-spacing:-1.105184pt;}
.wsd0{word-spacing:-0.998917pt;}
.wsc2{word-spacing:-0.945783pt;}
.ws85{word-spacing:-0.786381pt;}
.ws3b{word-spacing:-0.733247pt;}
.wsb2{word-spacing:-0.680113pt;}
.ws67{word-spacing:-0.626980pt;}
.ws117{word-spacing:-0.573846pt;}
.ws2a{word-spacing:-0.520712pt;}
.wsb4{word-spacing:-0.414444pt;}
.ws12c{word-spacing:-0.308176pt;}
.wsc4{word-spacing:-0.255043pt;}
.ws9e{word-spacing:-0.201909pt;}
.ws54{word-spacing:-0.095641pt;}
.wsad{word-spacing:-0.053134pt;}
.ws49{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws62{word-spacing:0.010627pt;}
.wsca{word-spacing:0.116895pt;}
.ws74{word-spacing:0.223162pt;}
.ws2b{word-spacing:0.276296pt;}
.ws63{word-spacing:0.329430pt;}
.wsd9{word-spacing:0.340057pt;}
.ws7a{word-spacing:0.382564pt;}
.ws8b{word-spacing:0.435698pt;}
.ws7f{word-spacing:0.488832pt;}
.ws37{word-spacing:0.541965pt;}
.ws7e{word-spacing:0.595099pt;}
.wsd5{word-spacing:0.648233pt;}
.wsb0{word-spacing:0.754501pt;}
.wsd3{word-spacing:0.913903pt;}
.wsd1{word-spacing:0.967036pt;}
.ws92{word-spacing:0.981730pt;}
.ws93{word-spacing:0.999515pt;}
.ws7b{word-spacing:1.073304pt;}
.wsa1{word-spacing:1.126438pt;}
.wsae{word-spacing:1.179572pt;}
.wse{word-spacing:1.219430pt;}
.ws27{word-spacing:1.232706pt;}
.wscd{word-spacing:1.285840pt;}
.ws3c{word-spacing:1.338973pt;}
.ws79{word-spacing:1.392107pt;}
.ws4{word-spacing:1.410714pt;}
.ws71{word-spacing:1.445241pt;}
.wsf8{word-spacing:1.498375pt;}
.wsbd{word-spacing:1.529143pt;}
.ws98{word-spacing:1.604643pt;}
.ws41{word-spacing:1.657777pt;}
.ws102{word-spacing:1.710911pt;}
.wsb9{word-spacing:1.764044pt;}
.ws6d{word-spacing:1.923446pt;}
.ws64{word-spacing:1.976580pt;}
.wsb8{word-spacing:2.029714pt;}
.ws4b{word-spacing:2.082848pt;}
.ws43{word-spacing:2.135981pt;}
.ws8f{word-spacing:2.242249pt;}
.ws2c{word-spacing:2.295383pt;}
.ws118{word-spacing:2.306010pt;}
.ws3d{word-spacing:2.348517pt;}
.wsb5{word-spacing:2.359144pt;}
.wsa2{word-spacing:2.401651pt;}
.ws14{word-spacing:2.414950pt;}
.ws6c{word-spacing:2.454785pt;}
.ws2d{word-spacing:2.507919pt;}
.ws9{word-spacing:2.510592pt;}
.ws19{word-spacing:2.558413pt;}
.ws26{word-spacing:2.561052pt;}
.ws7{word-spacing:2.606234pt;}
.ws65{word-spacing:2.614186pt;}
.wsb{word-spacing:2.654054pt;}
.ws31{word-spacing:2.667320pt;}
.wsd{word-spacing:2.701875pt;}
.ws34{word-spacing:2.720454pt;}
.ws15{word-spacing:2.749696pt;}
.ws60{word-spacing:2.773588pt;}
.ws16{word-spacing:2.797517pt;}
.ws32{word-spacing:2.826722pt;}
.ws17{word-spacing:2.845338pt;}
.ws1c{word-spacing:2.879856pt;}
.wsc{word-spacing:2.893158pt;}
.ws3{word-spacing:2.932989pt;}
.ws22{word-spacing:2.986123pt;}
.ws10{word-spacing:2.988800pt;}
.ws5{word-spacing:3.036621pt;}
.ws1b{word-spacing:3.039257pt;}
.ws28{word-spacing:3.092391pt;}
.ws29{word-spacing:3.145525pt;}
.ws13{word-spacing:3.180083pt;}
.ws68{word-spacing:3.198659pt;}
.ws1e{word-spacing:3.251793pt;}
.ws4f{word-spacing:3.304927pt;}
.ws4a{word-spacing:3.358060pt;}
.ws52{word-spacing:3.411194pt;}
.ws121{word-spacing:3.464328pt;}
.ws5c{word-spacing:3.517462pt;}
.ws51{word-spacing:3.570596pt;}
.ws82{word-spacing:3.623730pt;}
.ws10a{word-spacing:3.676864pt;}
.ws4d{word-spacing:3.729997pt;}
.ws89{word-spacing:3.783131pt;}
.ws56{word-spacing:3.836265pt;}
.ws25{word-spacing:3.889399pt;}
.ws3a{word-spacing:3.985067pt;}
.wsf2{word-spacing:3.995667pt;}
.wsce{word-spacing:4.048801pt;}
.ws18{word-spacing:4.088678pt;}
.ws5d{word-spacing:4.155068pt;}
.wscc{word-spacing:4.208202pt;}
.ws59{word-spacing:4.261336pt;}
.ws6e{word-spacing:4.314470pt;}
.ws6f{word-spacing:4.367604pt;}
.ws21{word-spacing:4.473872pt;}
.ws58{word-spacing:4.527005pt;}
.ws8{word-spacing:4.566886pt;}
.wsa0{word-spacing:4.580139pt;}
.wsa6{word-spacing:4.633273pt;}
.wsf{word-spacing:4.662528pt;}
.ws8c{word-spacing:4.686407pt;}
.ws48{word-spacing:4.739541pt;}
.ws39{word-spacing:4.782067pt;}
.wsa7{word-spacing:4.792675pt;}
.wsc6{word-spacing:4.845809pt;}
.ws84{word-spacing:4.898943pt;}
.ws77{word-spacing:4.952076pt;}
.ws12{word-spacing:4.997274pt;}
.ws57{word-spacing:5.005210pt;}
.ws2f{word-spacing:5.058344pt;}
.ws109{word-spacing:5.068971pt;}
.ws86{word-spacing:5.111478pt;}
.ws99{word-spacing:5.164612pt;}
.wse8{word-spacing:5.175239pt;}
.wse6{word-spacing:5.217746pt;}
.wsed{word-spacing:5.228372pt;}
.ws55{word-spacing:5.270880pt;}
.wsfb{word-spacing:5.281506pt;}
.ws53{word-spacing:5.324013pt;}
.ws119{word-spacing:5.334640pt;}
.ws88{word-spacing:5.377147pt;}
.wse9{word-spacing:5.387774pt;}
.ws38{word-spacing:5.430281pt;}
.wsd8{word-spacing:5.440908pt;}
.ws6{word-spacing:5.475482pt;}
.ws7d{word-spacing:5.483415pt;}
.wsdd{word-spacing:5.494042pt;}
.wsa5{word-spacing:5.536549pt;}
.ws113{word-spacing:5.547176pt;}
.wsbf{word-spacing:5.589683pt;}
.wsea{word-spacing:5.600310pt;}
.ws123{word-spacing:5.642817pt;}
.wsdc{word-spacing:5.653443pt;}
.wsc1{word-spacing:5.695951pt;}
.ws122{word-spacing:5.706577pt;}
.ws80{word-spacing:5.749084pt;}
.wsde{word-spacing:5.759711pt;}
.wsa{word-spacing:5.762406pt;}
.ws46{word-spacing:5.802218pt;}
.ws12e{word-spacing:5.812845pt;}
.ws66{word-spacing:5.961620pt;}
.ws9b{word-spacing:6.014754pt;}
.wsc7{word-spacing:6.121021pt;}
.ws24{word-spacing:6.227289pt;}
.ws23{word-spacing:6.280423pt;}
.ws120{word-spacing:6.344184pt;}
.ws8d{word-spacing:6.386691pt;}
.wsac{word-spacing:6.439825pt;}
.wsd6{word-spacing:6.492959pt;}
.ws11{word-spacing:6.527539pt;}
.wsbb{word-spacing:6.546092pt;}
.wsb6{word-spacing:6.652360pt;}
.wse4{word-spacing:6.662987pt;}
.ws5a{word-spacing:6.758628pt;}
.ws5b{word-spacing:6.811762pt;}
.ws12d{word-spacing:6.822388pt;}
.wsa4{word-spacing:6.918029pt;}
.ws45{word-spacing:6.971163pt;}
.wse5{word-spacing:6.981790pt;}
.wsb7{word-spacing:7.024297pt;}
.ws112{word-spacing:7.034924pt;}
.ws87{word-spacing:7.077431pt;}
.ws8e{word-spacing:7.130565pt;}
.ws3f{word-spacing:7.183699pt;}
.ws90{word-spacing:7.236833pt;}
.ws69{word-spacing:7.289967pt;}
.wsc8{word-spacing:7.343100pt;}
.ws33{word-spacing:7.396234pt;}
.ws42{word-spacing:7.449368pt;}
.wsa8{word-spacing:7.502502pt;}
.ws6b{word-spacing:7.608770pt;}
.ws35{word-spacing:7.661904pt;}
.ws3e{word-spacing:7.715037pt;}
.ws76{word-spacing:7.768171pt;}
.ws10e{word-spacing:7.821305pt;}
.ws40{word-spacing:7.874439pt;}
.ws5f{word-spacing:7.980707pt;}
.ws95{word-spacing:8.033841pt;}
.wsbe{word-spacing:8.086975pt;}
.wsba{word-spacing:8.140108pt;}
.wsec{word-spacing:8.150735pt;}
.ws108{word-spacing:8.193242pt;}
.wsa3{word-spacing:8.246376pt;}
.wsd2{word-spacing:8.352644pt;}
.wsdb{word-spacing:8.458912pt;}
.ws9a{word-spacing:8.512045pt;}
.ws7c{word-spacing:8.565179pt;}
.ws8a{word-spacing:8.618313pt;}
.wsaa{word-spacing:8.671447pt;}
.ws9f{word-spacing:8.830849pt;}
.wsfa{word-spacing:8.883983pt;}
.ws36{word-spacing:8.990250pt;}
.ws10d{word-spacing:9.043384pt;}
.wsab{word-spacing:9.096518pt;}
.wsf1{word-spacing:9.149652pt;}
.ws50{word-spacing:9.255920pt;}
.ws110{word-spacing:9.309053pt;}
.ws81{word-spacing:9.362187pt;}
.wsda{word-spacing:9.372814pt;}
.wsc3{word-spacing:9.468455pt;}
.wsb1{word-spacing:9.521589pt;}
.ws1d{word-spacing:9.627857pt;}
.ws72{word-spacing:9.680991pt;}
.wse0{word-spacing:9.734124pt;}
.wseb{word-spacing:9.787258pt;}
.ws114{word-spacing:9.840392pt;}
.ws10f{word-spacing:9.851019pt;}
.ws97{word-spacing:9.893526pt;}
.ws11b{word-spacing:10.052928pt;}
.ws83{word-spacing:10.106061pt;}
.ws47{word-spacing:10.424865pt;}
.ws6a{word-spacing:10.477999pt;}
.wsf3{word-spacing:10.531132pt;}
.wsbc{word-spacing:10.582115pt;}
.ws4c{word-spacing:11.009337pt;}
.ws4e{word-spacing:11.062471pt;}
.ws126{word-spacing:11.073098pt;}
.wse7{word-spacing:11.221873pt;}
.ws94{word-spacing:11.362190pt;}
.ws12f{word-spacing:11.604436pt;}
.ws115{word-spacing:11.710704pt;}
.ws111{word-spacing:12.284550pt;}
.ws11c{word-spacing:12.443952pt;}
.wsdf{word-spacing:12.550219pt;}
.ws116{word-spacing:12.603353pt;}
.ws128{word-spacing:12.985917pt;}
.ws5e{word-spacing:13.081558pt;}
.wse3{word-spacing:13.251586pt;}
.ws70{word-spacing:13.719164pt;}
.ws127{word-spacing:13.984834pt;}
.ws10c{word-spacing:14.781842pt;}
.ws10b{word-spacing:16.280217pt;}
.wse2{word-spacing:17.608563pt;}
.wsf0{word-spacing:18.182409pt;}
.ws11d{word-spacing:18.873149pt;}
.ws129{word-spacing:20.105855pt;}
.ws12a{word-spacing:20.254630pt;}
.ws9d{word-spacing:20.297137pt;}
.ws2{word-spacing:20.722347pt;}
.ws103{word-spacing:21.104772pt;}
.ws12b{word-spacing:21.317307pt;}
.ws104{word-spacing:22.071808pt;}
.ws11a{word-spacing:22.114315pt;}
.wsf4{word-spacing:22.167449pt;}
.ws130{word-spacing:22.273717pt;}
.wsee{word-spacing:23.336394pt;}
.ws1a{word-spacing:23.750838pt;}
.wsf9{word-spacing:24.144029pt;}
.wsef{word-spacing:24.239670pt;}
.ws106{word-spacing:26.205623pt;}
.ws105{word-spacing:26.747588pt;}
.wsfc{word-spacing:26.790096pt;}
.ws1{word-spacing:27.544640pt;}
.ws0{word-spacing:28.095533pt;}
.ws107{word-spacing:30.828269pt;}
.ws124{word-spacing:32.953624pt;}
.wsf6{word-spacing:33.272427pt;}
.ws100{word-spacing:34.228837pt;}
.ws125{word-spacing:35.557184pt;}
.ws11e{word-spacing:35.982255pt;}
.wsf5{word-spacing:37.416869pt;}
.ws101{word-spacing:37.470003pt;}
.wsfe{word-spacing:41.189373pt;}
.wsfd{word-spacing:42.092649pt;}
.wscf{word-spacing:42.688034pt;}
.ws131{word-spacing:47.512304pt;}
.ws11f{word-spacing:47.937375pt;}
.wsf7{word-spacing:50.966005pt;}
.ws61{word-spacing:51.805867pt;}
.wsff{word-spacing:53.463297pt;}
.wscb{word-spacing:61.008306pt;}
.ws96{word-spacing:61.050813pt;}
.ws20{word-spacing:62.166867pt;}
._1{margin-left:-7.161606pt;}
._1e{margin-left:-5.993540pt;}
._f{margin-left:-4.952041pt;}
._6{margin-left:-3.868181pt;}
._4{margin-left:-2.720482pt;}
._3{margin-left:-1.487748pt;}
._2{width:1.487748pt;}
._0{width:2.479018pt;}
._61{width:3.545072pt;}
._57{width:11.523979pt;}
._e{width:13.974207pt;}
._d{width:15.143152pt;}
._13{width:16.216420pt;}
._19{width:17.640444pt;}
._b{width:18.660719pt;}
._7{width:20.424785pt;}
._5{width:22.151637pt;}
._c{width:23.857106pt;}
._10{width:25.397988pt;}
._a{width:26.588365pt;}
._8{width:28.118630pt;}
._9{width:29.319454pt;}
._16{width:30.605107pt;}
._1b{width:31.944045pt;}
._1a{width:33.102399pt;}
._5b{width:34.238280pt;}
._17{width:35.705958pt;}
._54{width:36.662368pt;}
._14{width:37.725045pt;}
._1d{width:38.638912pt;}
._18{width:39.531597pt;}
._60{width:40.976642pt;}
._5f{width:41.986410pt;}
._64{width:43.410369pt;}
._5e{width:44.441158pt;}
._1c{width:46.757803pt;}
._15{width:48.458086pt;}
._44{width:53.924023pt;}
._62{width:55.737426pt;}
._66{width:57.296582pt;}
._67{width:59.191127pt;}
._53{width:61.103947pt;}
._65{width:65.620325pt;}
._4b{width:70.772576pt;}
._12{width:71.731200pt;}
._6a{width:72.644587pt;}
._24{width:73.772047pt;}
._63{width:77.681713pt;}
._69{width:78.733959pt;}
._50{width:80.930965pt;}
._43{width:82.877950pt;}
._49{width:84.140683pt;}
._11{width:86.077200pt;}
._68{width:89.955636pt;}
._3c{width:96.803580pt;}
._1f{width:97.710613pt;}
._32{width:98.813281pt;}
._48{width:100.087610pt;}
._2d{width:102.174640pt;}
._2e{width:103.259523pt;}
._3f{width:104.397761pt;}
._28{width:106.638667pt;}
._33{width:108.043680pt;}
._2a{width:110.320156pt;}
._52{width:111.316114pt;}
._2f{width:112.489922pt;}
._29{width:113.628160pt;}
._23{width:114.766398pt;}
._40{width:116.224765pt;}
._22{width:118.074402pt;}
._3d{width:119.313160pt;}
._35{width:122.858558pt;}
._3a{width:123.759402pt;}
._42{width:124.803308pt;}
._4f{width:125.786889pt;}
._38{width:128.205644pt;}
._51{width:134.329862pt;}
._47{width:138.651609pt;}
._55{width:150.487821pt;}
._2c{width:151.901410pt;}
._4e{width:153.075218pt;}
._3e{width:154.249026pt;}
._34{width:158.819763pt;}
._27{width:163.266005pt;}
._3b{width:165.240136pt;}
._5c{width:166.414835pt;}
._21{width:171.067417pt;}
._59{width:181.354882pt;}
._46{width:208.208619pt;}
._58{width:220.110375pt;}
._4d{width:237.553816pt;}
._4a{width:238.976613pt;}
._41{width:270.125263pt;}
._2b{width:272.358998pt;}
._26{width:279.295135pt;}
._31{width:280.219953pt;}
._37{width:288.134264pt;}
._4c{width:332.294339pt;}
._45{width:344.484214pt;}
._30{width:360.970879pt;}
._25{width:375.084972pt;}
._39{width:411.515757pt;}
._36{width:412.689565pt;}
._20{width:425.673257pt;}
._56{width:569.940134pt;}
._5d{width:581.871508pt;}
._5a{width:634.072919pt;}
.fs7{font-size:17.784968pt;}
.fs8{font-size:27.701873pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:119.153333pt;}
.y163{bottom:159.004000pt;}
.y13e{bottom:161.909333pt;}
.y1a4{bottom:164.522667pt;}
.y1f7{bottom:165.682667pt;}
.y11b{bottom:166.325333pt;}
.y78{bottom:166.494667pt;}
.ya0{bottom:167.740000pt;}
.y1a9{bottom:167.832000pt;}
.y18a{bottom:168.432000pt;}
.y25e{bottom:169.630667pt;}
.y1b4{bottom:170.489333pt;}
.y162{bottom:174.944000pt;}
.y13d{bottom:177.850667pt;}
.ydf{bottom:179.058667pt;}
.y1a3{bottom:180.462667pt;}
.y1d6{bottom:181.022667pt;}
.ycf{bottom:181.116000pt;}
.y1f6{bottom:181.622667pt;}
.y11a{bottom:182.266667pt;}
.y77{bottom:182.434667pt;}
.y9f{bottom:183.680000pt;}
.y1a8{bottom:183.772000pt;}
.y189{bottom:184.372000pt;}
.y25d{bottom:185.570667pt;}
.y161{bottom:190.884000pt;}
.y13c{bottom:193.790667pt;}
.yde{bottom:194.998667pt;}
.y272{bottom:196.197333pt;}
.y1d5{bottom:196.964000pt;}
.yce{bottom:197.056000pt;}
.y1f5{bottom:197.562667pt;}
.y119{bottom:198.206667pt;}
.y76{bottom:198.374667pt;}
.y9e{bottom:199.620000pt;}
.y1a7{bottom:199.712000pt;}
.y23{bottom:199.905333pt;}
.y188{bottom:200.312000pt;}
.y249{bottom:201.132000pt;}
.y25c{bottom:201.510667pt;}
.y160{bottom:206.824000pt;}
.y211{bottom:208.189333pt;}
.y1a2{bottom:209.557333pt;}
.y13b{bottom:209.730667pt;}
.ydd{bottom:210.938667pt;}
.y271{bottom:212.137333pt;}
.y1d4{bottom:212.904000pt;}
.ycd{bottom:212.996000pt;}
.y1f4{bottom:213.502667pt;}
.y118{bottom:214.146667pt;}
.y75{bottom:214.314667pt;}
.y9d{bottom:215.560000pt;}
.y22{bottom:215.845333pt;}
.y187{bottom:216.252000pt;}
.y248{bottom:217.072000pt;}
.y265{bottom:217.450667pt;}
.y15f{bottom:222.764000pt;}
.y1b3{bottom:223.622667pt;}
.y210{bottom:224.129333pt;}
.y1a6{bottom:224.232000pt;}
.y4d{bottom:225.550667pt;}
.y13a{bottom:225.670667pt;}
.ydc{bottom:226.878667pt;}
.y25b{bottom:228.078667pt;}
.y1d3{bottom:228.844000pt;}
.ycc{bottom:228.936000pt;}
.y1f3{bottom:229.444000pt;}
.y117{bottom:230.086667pt;}
.y74{bottom:230.254667pt;}
.y9c{bottom:231.500000pt;}
.y21{bottom:231.786667pt;}
.y186{bottom:232.192000pt;}
.y229{bottom:233.392000pt;}
.y15e{bottom:238.705333pt;}
.y20f{bottom:240.070667pt;}
.y4c{bottom:241.490667pt;}
.y139{bottom:241.610667pt;}
.yeb{bottom:242.818667pt;}
.y247{bottom:243.258667pt;}
.y25a{bottom:244.018667pt;}
.y1d2{bottom:244.784000pt;}
.ycb{bottom:244.876000pt;}
.y1f2{bottom:245.384000pt;}
.y73{bottom:246.196000pt;}
.y9b{bottom:247.441333pt;}
.y20{bottom:247.726667pt;}
.y185{bottom:248.132000pt;}
.y228{bottom:249.332000pt;}
.y1b2{bottom:250.189333pt;}
.ydb{bottom:251.398667pt;}
.y15d{bottom:254.645333pt;}
.y4b{bottom:257.430667pt;}
.y138{bottom:257.550667pt;}
.yea{bottom:258.760000pt;}
.y116{bottom:259.181333pt;}
.y246{bottom:259.200000pt;}
.y264{bottom:259.958667pt;}
.y1d1{bottom:260.724000pt;}
.yca{bottom:260.816000pt;}
.y1f1{bottom:261.324000pt;}
.y72{bottom:262.136000pt;}
.y9a{bottom:263.381333pt;}
.y1f{bottom:263.666667pt;}
.y184{bottom:264.073333pt;}
.y227{bottom:265.272000pt;}
.y1b1{bottom:266.130667pt;}
.y20e{bottom:266.637333pt;}
.y259{bottom:270.585333pt;}
.y1a1{bottom:272.195859pt;}
.y4a{bottom:273.370667pt;}
.y137{bottom:273.492000pt;}
.ye9{bottom:274.700000pt;}
.y263{bottom:275.898667pt;}
.y1d0{bottom:276.664000pt;}
.yc9{bottom:276.757333pt;}
.y1f0{bottom:277.264000pt;}
.y71{bottom:278.076000pt;}
.y15c{bottom:279.164000pt;}
.y99{bottom:279.321333pt;}
.y183{bottom:280.013333pt;}
.y1a0{bottom:280.783006pt;}
.y26c{bottom:281.212000pt;}
.y1b0{bottom:282.070667pt;}
.y20d{bottom:282.577333pt;}
.y115{bottom:283.092000pt;}
.y245{bottom:285.386667pt;}
.y258{bottom:286.525333pt;}
.y1e{bottom:287.577333pt;}
.yda{bottom:288.582667pt;}
.y49{bottom:289.312000pt;}
.y19f{bottom:289.370848pt;}
.y136{bottom:289.432000pt;}
.ye8{bottom:290.640000pt;}
.y226{bottom:291.838667pt;}
.y1cf{bottom:292.605333pt;}
.yc8{bottom:292.697333pt;}
.y1ef{bottom:293.204000pt;}
.y70{bottom:294.016000pt;}
.y98{bottom:295.261333pt;}
.y182{bottom:295.953333pt;}
.y19e{bottom:297.958690pt;}
.y1af{bottom:298.010667pt;}
.y20c{bottom:298.517333pt;}
.y244{bottom:301.326667pt;}
.y1d{bottom:302.189333pt;}
.y257{bottom:302.465333pt;}
.yd9{bottom:304.522667pt;}
.y48{bottom:305.252000pt;}
.y135{bottom:305.372000pt;}
.y19d{bottom:306.545837pt;}
.ye7{bottom:306.580000pt;}
.y225{bottom:307.778667pt;}
.y1ce{bottom:308.545333pt;}
.yc7{bottom:308.637333pt;}
.y1ee{bottom:309.144000pt;}
.y6f{bottom:309.956000pt;}
.y97{bottom:311.201333pt;}
.y181{bottom:311.893333pt;}
.y15b{bottom:313.092000pt;}
.y1ae{bottom:313.950667pt;}
.y20b{bottom:314.457333pt;}
.y19c{bottom:316.552000pt;}
.y1c{bottom:316.800000pt;}
.y256{bottom:318.405333pt;}
.yd8{bottom:320.462667pt;}
.y47{bottom:321.192000pt;}
.y134{bottom:321.312000pt;}
.ye6{bottom:322.520000pt;}
.y26b{bottom:323.720000pt;}
.y1cd{bottom:324.485333pt;}
.yc6{bottom:324.577333pt;}
.y1ed{bottom:325.085333pt;}
.y6e{bottom:325.896000pt;}
.y96{bottom:327.141333pt;}
.y243{bottom:327.514667pt;}
.y180{bottom:327.833333pt;}
.y15a{bottom:329.033333pt;}
.y1ad{bottom:329.890667pt;}
.y1b{bottom:331.412000pt;}
.y224{bottom:334.346667pt;}
.yd7{bottom:336.404000pt;}
.y46{bottom:337.132000pt;}
.ye5{bottom:338.460000pt;}
.y26a{bottom:339.660000pt;}
.y1cc{bottom:340.425333pt;}
.yc5{bottom:340.517333pt;}
.y1ec{bottom:341.025333pt;}
.y6d{bottom:341.837333pt;}
.y114{bottom:342.154660pt;}
.y95{bottom:343.082667pt;}
.y242{bottom:343.454667pt;}
.y17f{bottom:343.773333pt;}
.y159{bottom:344.973333pt;}
.y133{bottom:345.830667pt;}
.y1a{bottom:346.024000pt;}
.y113{bottom:347.490097pt;}
.y223{bottom:350.286667pt;}
.yd6{bottom:352.344000pt;}
.y112{bottom:352.825533pt;}
.y45{bottom:353.072000pt;}
.ye4{bottom:354.401333pt;}
.y19b{bottom:355.000000pt;}
.y1cb{bottom:356.365333pt;}
.y1eb{bottom:356.965333pt;}
.y6c{bottom:357.777333pt;}
.y111{bottom:358.161417pt;}
.y94{bottom:359.022667pt;}
.y17e{bottom:359.714667pt;}
.y19{bottom:360.636000pt;}
.y158{bottom:360.913333pt;}
.y110{bottom:363.496853pt;}
.yc4{bottom:365.037333pt;}
.y222{bottom:366.226667pt;}
.yd5{bottom:368.284000pt;}
.y10f{bottom:368.832290pt;}
.y44{bottom:369.012000pt;}
.y241{bottom:369.642667pt;}
.ye3{bottom:370.341333pt;}
.y1ac{bottom:370.350667pt;}
.y19a{bottom:370.940000pt;}
.y1ca{bottom:372.305333pt;}
.y1ea{bottom:372.905333pt;}
.y6b{bottom:373.717333pt;}
.y10e{bottom:374.167727pt;}
.y93{bottom:374.962667pt;}
.y18{bottom:375.248000pt;}
.y17d{bottom:375.654667pt;}
.y157{bottom:376.853333pt;}
.y10d{bottom:379.503164pt;}
.y132{bottom:380.358667pt;}
.y221{bottom:382.166667pt;}
.yd4{bottom:384.224000pt;}
.y10c{bottom:384.838601pt;}
.y43{bottom:384.953333pt;}
.y240{bottom:385.582667pt;}
.ye2{bottom:386.281333pt;}
.y199{bottom:386.881333pt;}
.y1c9{bottom:388.246667pt;}
.y1e9{bottom:388.845333pt;}
.y6a{bottom:389.657333pt;}
.y17{bottom:389.860000pt;}
.y10b{bottom:390.174484pt;}
.yb8{bottom:390.902667pt;}
.y17c{bottom:391.594667pt;}
.y156{bottom:392.793333pt;}
.y10a{bottom:395.509920pt;}
.y131{bottom:396.298667pt;}
.yd3{bottom:400.164000pt;}
.y109{bottom:400.845357pt;}
.y42{bottom:400.893333pt;}
.yc3{bottom:402.221333pt;}
.y198{bottom:402.821333pt;}
.y270{bottom:403.420000pt;}
.y92{bottom:404.057333pt;}
.y1c8{bottom:404.186667pt;}
.y16{bottom:404.472000pt;}
.y1e8{bottom:404.785333pt;}
.y69{bottom:405.597333pt;}
.y108{bottom:406.180794pt;}
.yb7{bottom:406.842667pt;}
.y17b{bottom:407.534667pt;}
.y155{bottom:408.733333pt;}
.y107{bottom:411.516231pt;}
.y23f{bottom:411.770667pt;}
.y130{bottom:412.240000pt;}
.y20a{bottom:415.412000pt;}
.yd2{bottom:416.104000pt;}
.y41{bottom:416.833333pt;}
.y106{bottom:416.851668pt;}
.yc2{bottom:418.161333pt;}
.y197{bottom:418.761333pt;}
.y15{bottom:419.084000pt;}
.y255{bottom:419.361333pt;}
.y1c7{bottom:420.126667pt;}
.y1e7{bottom:420.726667pt;}
.y68{bottom:421.537333pt;}
.y105{bottom:422.187551pt;}
.y17a{bottom:423.474667pt;}
.y154{bottom:424.674667pt;}
.y104{bottom:427.522988pt;}
.y23e{bottom:427.710667pt;}
.y12f{bottom:428.180000pt;}
.y209{bottom:431.353333pt;}
.yb6{bottom:431.362667pt;}
.yd1{bottom:432.045333pt;}
.y40{bottom:432.773333pt;}
.y103{bottom:432.858424pt;}
.y14{bottom:433.696000pt;}
.yc1{bottom:434.101333pt;}
.y196{bottom:434.701333pt;}
.y254{bottom:435.301333pt;}
.y1c6{bottom:436.066667pt;}
.y1e6{bottom:436.666667pt;}
.y67{bottom:437.478667pt;}
.y102{bottom:438.371932pt;}
.y179{bottom:439.414667pt;}
.y153{bottom:440.614667pt;}
.y12e{bottom:444.120000pt;}
.y101{bottom:446.196000pt;}
.y208{bottom:447.293333pt;}
.y91{bottom:447.985333pt;}
.y13{bottom:448.308000pt;}
.y3f{bottom:448.713333pt;}
.yc0{bottom:450.042667pt;}
.y195{bottom:450.641333pt;}
.y269{bottom:451.241333pt;}
.y1c5{bottom:452.006667pt;}
.y1e5{bottom:452.606667pt;}
.y66{bottom:453.418667pt;}
.y23d{bottom:453.897333pt;}
.y178{bottom:455.356000pt;}
.y152{bottom:456.554667pt;}
.y1a5{bottom:458.621333pt;}
.y12d{bottom:460.060000pt;}
.y253{bottom:461.868000pt;}
.y12{bottom:462.920000pt;}
.y207{bottom:463.233333pt;}
.y90{bottom:463.925333pt;}
.y3e{bottom:464.653333pt;}
.ybf{bottom:465.982667pt;}
.y194{bottom:466.581333pt;}
.y220{bottom:467.181333pt;}
.y1c4{bottom:467.946667pt;}
.yb5{bottom:468.546667pt;}
.y65{bottom:469.358667pt;}
.y23c{bottom:469.838667pt;}
.y177{bottom:471.296000pt;}
.y151{bottom:472.494667pt;}
.y12c{bottom:476.000000pt;}
.y11{bottom:477.530667pt;}
.y252{bottom:477.808000pt;}
.y206{bottom:479.173333pt;}
.y8f{bottom:479.865333pt;}
.y3d{bottom:480.594667pt;}
.ybe{bottom:481.922667pt;}
.y193{bottom:482.522667pt;}
.y21f{bottom:483.121333pt;}
.y1c3{bottom:483.888000pt;}
.yb4{bottom:484.486667pt;}
.y64{bottom:485.298667pt;}
.y23b{bottom:485.778667pt;}
.y100{bottom:487.226667pt;}
.y176{bottom:487.236000pt;}
.y12b{bottom:491.940000pt;}
.y10{bottom:492.142667pt;}
.y251{bottom:493.748000pt;}
.y8e{bottom:495.805333pt;}
.y3c{bottom:496.534667pt;}
.y150{bottom:497.013333pt;}
.ybd{bottom:497.862667pt;}
.y192{bottom:498.462667pt;}
.y21e{bottom:499.061333pt;}
.y1c2{bottom:499.828000pt;}
.yb3{bottom:500.426667pt;}
.y63{bottom:501.238667pt;}
.yff{bottom:503.166667pt;}
.y175{bottom:503.176000pt;}
.y205{bottom:505.740000pt;}
.ye1{bottom:506.441333pt;}
.yf{bottom:506.754667pt;}
.y12a{bottom:507.881333pt;}
.y268{bottom:509.688000pt;}
.y8d{bottom:511.745333pt;}
.y23a{bottom:511.965333pt;}
.y3b{bottom:512.474667pt;}
.ybc{bottom:513.802667pt;}
.y191{bottom:514.402667pt;}
.y1c1{bottom:515.768000pt;}
.y1e4{bottom:516.368000pt;}
.y62{bottom:517.178667pt;}
.yfe{bottom:519.106667pt;}
.y174{bottom:519.116000pt;}
.y250{bottom:520.316000pt;}
.ye{bottom:521.366667pt;}
.y204{bottom:521.681333pt;}
.y129{bottom:523.821333pt;}
.y21d{bottom:525.629333pt;}
.y8c{bottom:527.686667pt;}
.y239{bottom:527.906667pt;}
.y3a{bottom:528.414667pt;}
.yb2{bottom:529.521333pt;}
.ybb{bottom:529.742667pt;}
.y190{bottom:530.342667pt;}
.y14f{bottom:530.942667pt;}
.y1e3{bottom:532.308000pt;}
.y61{bottom:533.120000pt;}
.yfd{bottom:535.048000pt;}
.y173{bottom:535.057333pt;}
.yd{bottom:535.978667pt;}
.y24f{bottom:536.256000pt;}
.y203{bottom:537.621333pt;}
.y21c{bottom:541.569333pt;}
.y8b{bottom:543.626667pt;}
.y238{bottom:543.846667pt;}
.y39{bottom:544.354667pt;}
.y1c0{bottom:544.862667pt;}
.y18f{bottom:546.282667pt;}
.y14e{bottom:546.882667pt;}
.y1e2{bottom:548.248000pt;}
.y128{bottom:548.340000pt;}
.y60{bottom:549.060000pt;}
.yc{bottom:550.590667pt;}
.yfc{bottom:550.988000pt;}
.y172{bottom:550.997333pt;}
.y26f{bottom:552.196000pt;}
.yba{bottom:554.262667pt;}
.y21b{bottom:557.509333pt;}
.y8a{bottom:559.566667pt;}
.y1ab{bottom:559.576000pt;}
.y237{bottom:559.786667pt;}
.y38{bottom:560.294667pt;}
.y18e{bottom:562.222667pt;}
.y14d{bottom:562.822667pt;}
.y1e1{bottom:564.188000pt;}
.y5f{bottom:565.000000pt;}
.yb{bottom:565.202667pt;}
.yfb{bottom:566.928000pt;}
.y262{bottom:568.136000pt;}
.yb1{bottom:573.449333pt;}
.y89{bottom:575.506667pt;}
.y171{bottom:575.516000pt;}
.y37{bottom:576.236000pt;}
.y18d{bottom:578.164000pt;}
.y14c{bottom:578.762667pt;}
.ya{bottom:579.814667pt;}
.y1e0{bottom:580.128000pt;}
.y5e{bottom:580.940000pt;}
.y127{bottom:582.868000pt;}
.y21a{bottom:584.076000pt;}
.y236{bottom:585.974667pt;}
.y1bf{bottom:588.790667pt;}
.yb0{bottom:589.389333pt;}
.y88{bottom:591.446667pt;}
.y36{bottom:592.176000pt;}
.y18c{bottom:594.104000pt;}
.y9{bottom:594.426667pt;}
.y14b{bottom:594.702667pt;}
.y1df{bottom:596.068000pt;}
.y5d{bottom:596.880000pt;}
.y126{bottom:598.808000pt;}
.y219{bottom:600.016000pt;}
.y235{bottom:601.914667pt;}
.y1be{bottom:604.730667pt;}
.yaf{bottom:605.330667pt;}
.y87{bottom:607.386667pt;}
.y35{bottom:608.116000pt;}
.y8{bottom:609.038667pt;}
.y170{bottom:610.044000pt;}
.y14a{bottom:610.644000pt;}
.y1de{bottom:612.009333pt;}
.y5c{bottom:612.820000pt;}
.y125{bottom:614.748000pt;}
.y218{bottom:615.957333pt;}
.y234{bottom:617.854667pt;}
.y1bd{bottom:620.670667pt;}
.yae{bottom:621.270667pt;}
.y202{bottom:622.636000pt;}
.y86{bottom:623.328000pt;}
.y7{bottom:623.649333pt;}
.y34{bottom:624.056000pt;}
.y16f{bottom:625.984000pt;}
.y261{bottom:626.584000pt;}
.y1dd{bottom:627.949333pt;}
.yfa{bottom:628.632000pt;}
.y5b{bottom:628.761333pt;}
.y124{bottom:630.689333pt;}
.y149{bottom:635.162667pt;}
.y1bc{bottom:636.610667pt;}
.yad{bottom:637.210667pt;}
.y201{bottom:638.576000pt;}
.y85{bottom:639.268000pt;}
.y33{bottom:639.996000pt;}
.y16e{bottom:641.924000pt;}
.y217{bottom:642.524000pt;}
.y1dc{bottom:643.889333pt;}
.y233{bottom:644.041333pt;}
.y6{bottom:644.472000pt;}
.yf9{bottom:644.572000pt;}
.y5a{bottom:644.701333pt;}
.y123{bottom:646.629333pt;}
.y24e{bottom:647.837333pt;}
.y1bb{bottom:652.550667pt;}
.yac{bottom:653.150667pt;}
.y200{bottom:654.516000pt;}
.y84{bottom:655.208000pt;}
.y32{bottom:655.936000pt;}
.y16d{bottom:657.864000pt;}
.y216{bottom:658.464000pt;}
.y1db{bottom:659.829333pt;}
.y232{bottom:659.982667pt;}
.yf8{bottom:660.512000pt;}
.y59{bottom:660.641333pt;}
.y122{bottom:662.569333pt;}
.y24d{bottom:663.777333pt;}
.yd0{bottom:663.786667pt;}
.y18b{bottom:666.444000pt;}
.y1ba{bottom:668.492000pt;}
.yab{bottom:669.090667pt;}
.y1ff{bottom:670.456000pt;}
.y83{bottom:671.148000pt;}
.y148{bottom:671.748000pt;}
.y31{bottom:671.877333pt;}
.y16c{bottom:673.805333pt;}
.y215{bottom:674.404000pt;}
.y1da{bottom:675.769333pt;}
.y231{bottom:675.922667pt;}
.yf7{bottom:676.452000pt;}
.y58{bottom:676.581333pt;}
.y5{bottom:677.188000pt;}
.y121{bottom:678.509333pt;}
.y276{bottom:679.717333pt;}
.y1b9{bottom:684.432000pt;}
.yaa{bottom:685.030667pt;}
.y82{bottom:687.088000pt;}
.y147{bottom:687.688000pt;}
.y30{bottom:687.817333pt;}
.y16b{bottom:689.745333pt;}
.y24c{bottom:690.344000pt;}
.y1d9{bottom:691.709333pt;}
.y230{bottom:691.862667pt;}
.yf6{bottom:692.392000pt;}
.y57{bottom:692.521333pt;}
.y120{bottom:694.449333pt;}
.y275{bottom:695.657333pt;}
.ye0{bottom:695.666667pt;}
.y1fe{bottom:697.022667pt;}
.y1b8{bottom:700.372000pt;}
.ya9{bottom:700.972000pt;}
.y81{bottom:703.028000pt;}
.y146{bottom:703.628000pt;}
.y2f{bottom:703.757333pt;}
.y16a{bottom:705.685333pt;}
.y24b{bottom:706.285333pt;}
.y1d8{bottom:707.650667pt;}
.yf5{bottom:708.332000pt;}
.y56{bottom:708.461333pt;}
.y11f{bottom:710.389333pt;}
.y26e{bottom:711.598667pt;}
.y1fd{bottom:712.964000pt;}
.y1b7{bottom:716.312000pt;}
.ya8{bottom:716.912000pt;}
.y22f{bottom:718.050667pt;}
.y80{bottom:718.969333pt;}
.y145{bottom:719.568000pt;}
.y2e{bottom:719.697333pt;}
.y4{bottom:721.516000pt;}
.y169{bottom:721.625333pt;}
.y24a{bottom:722.225333pt;}
.yf4{bottom:724.273333pt;}
.y55{bottom:724.402667pt;}
.y11e{bottom:726.330667pt;}
.y267{bottom:727.538667pt;}
.y1fc{bottom:728.904000pt;}
.ya7{bottom:732.852000pt;}
.y22e{bottom:733.990667pt;}
.y7f{bottom:734.909333pt;}
.y144{bottom:735.508000pt;}
.y2d{bottom:735.637333pt;}
.y1d7{bottom:736.744000pt;}
.y168{bottom:737.565333pt;}
.yf3{bottom:740.213333pt;}
.y54{bottom:740.342667pt;}
.y1b6{bottom:740.830667pt;}
.y11d{bottom:742.270667pt;}
.y266{bottom:743.478667pt;}
.ya6{bottom:748.792000pt;}
.y22d{bottom:749.930667pt;}
.y7e{bottom:750.849333pt;}
.y143{bottom:751.449333pt;}
.y2c{bottom:751.577333pt;}
.y3{bottom:752.777333pt;}
.y167{bottom:753.505333pt;}
.y274{bottom:754.105333pt;}
.y1fb{bottom:755.470667pt;}
.yf2{bottom:756.153333pt;}
.y53{bottom:756.282667pt;}
.y11c{bottom:758.210667pt;}
.y260{bottom:759.418667pt;}
.y1b5{bottom:759.428000pt;}
.y1aa{bottom:762.085333pt;}
.ya5{bottom:764.732000pt;}
.y7d{bottom:766.789333pt;}
.y142{bottom:767.389333pt;}
.y2b{bottom:767.518667pt;}
.y166{bottom:769.446667pt;}
.y273{bottom:770.045333pt;}
.y1fa{bottom:771.410667pt;}
.yf1{bottom:772.093333pt;}
.y52{bottom:772.222667pt;}
.y214{bottom:775.358667pt;}
.yb9{bottom:775.368000pt;}
.y22c{bottom:776.118667pt;}
.ya4{bottom:780.672000pt;}
.y7c{bottom:782.729333pt;}
.y141{bottom:783.329333pt;}
.y2a{bottom:783.458667pt;}
.y165{bottom:785.386667pt;}
.y26d{bottom:785.985333pt;}
.y1f9{bottom:787.350667pt;}
.yf0{bottom:788.033333pt;}
.y51{bottom:788.162667pt;}
.y2{bottom:791.298667pt;}
.y22b{bottom:792.058667pt;}
.ya3{bottom:796.613333pt;}
.y140{bottom:799.269333pt;}
.y29{bottom:799.398667pt;}
.y25f{bottom:801.926667pt;}
.yef{bottom:803.974667pt;}
.y50{bottom:804.102667pt;}
.y7b{bottom:807.249333pt;}
.y164{bottom:809.905333pt;}
.ya2{bottom:812.553333pt;}
.y28{bottom:815.338667pt;}
.y1f8{bottom:816.445333pt;}
.y213{bottom:817.866667pt;}
.y22a{bottom:818.245333pt;}
.yee{bottom:819.914667pt;}
.y4f{bottom:820.044000pt;}
.y1{bottom:820.522667pt;}
.y13f{bottom:823.788000pt;}
.ya1{bottom:828.493333pt;}
.y27{bottom:831.278667pt;}
.y212{bottom:833.806667pt;}
.yed{bottom:835.854667pt;}
.y7a{bottom:844.433333pt;}
.y4e{bottom:844.562667pt;}
.y26{bottom:847.218667pt;}
.yec{bottom:851.794667pt;}
.y79{bottom:860.373333pt;}
.y25{bottom:876.313333pt;}
.ha{height:13.338726pt;}
.hb{height:20.776405pt;}
.h4{height:24.696550pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.hc{height:36.874903pt;}
.h7{height:39.850400pt;}
.h3{height:44.887791pt;}
.h9{height:47.820800pt;}
.h2{height:51.403288pt;}
.h8{height:57.384800pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x31{left:176.804000pt;}
.x1{left:178.357333pt;}
.x2{left:180.013333pt;}
.x52{left:181.031495pt;}
.x4a{left:182.029333pt;}
.x68{left:185.098171pt;}
.x4b{left:195.313333pt;}
.x9{left:198.282667pt;}
.x6d{left:202.342667pt;}
.x6e{left:204.101333pt;}
.x6c{left:205.662667pt;}
.x53{left:210.637333pt;}
.x8{left:211.566667pt;}
.x5c{left:212.682667pt;}
.x57{left:215.538667pt;}
.x6b{left:217.106667pt;}
.x6a{left:219.204000pt;}
.x3d{left:220.370667pt;}
.x33{left:223.553333pt;}
.x17{left:226.713333pt;}
.xd{left:228.024000pt;}
.x7{left:229.997333pt;}
.x3e{left:233.654667pt;}
.xe{left:234.665333pt;}
.x18{left:239.997333pt;}
.x3f{left:240.960000pt;}
.x11{left:241.972000pt;}
.x32{left:243.393333pt;}
.x74{left:244.514667pt;}
.x5d{left:247.409333pt;}
.x77{left:253.246667pt;}
.x40{left:254.244000pt;}
.x5e{left:255.568000pt;}
.x5f{left:268.852000pt;}
.x5a{left:271.384000pt;}
.x19{left:273.042667pt;}
.x5b{left:284.666667pt;}
.x1a{left:286.326667pt;}
.x4c{left:299.722667pt;}
.x1d{left:304.868000pt;}
.x1e{left:312.082667pt;}
.x37{left:313.814667pt;}
.x38{left:327.098667pt;}
.x5{left:335.116000pt;}
.x39{left:336.357333pt;}
.x63{left:344.638667pt;}
.x28{left:347.897333pt;}
.x3a{left:349.641333pt;}
.x3{left:351.830667pt;}
.x12{left:355.756000pt;}
.x64{left:357.921333pt;}
.x4{left:361.953333pt;}
.x30{left:369.065333pt;}
.x65{left:372.121333pt;}
.x73{left:374.458667pt;}
.x6{left:380.630667pt;}
.x66{left:385.404000pt;}
.x1b{left:393.362667pt;}
.x67{left:397.348000pt;}
.x1c{left:400.576000pt;}
.x24{left:402.853333pt;}
.xa{left:404.177333pt;}
.x35{left:413.824000pt;}
.x25{left:416.136000pt;}
.x58{left:418.089333pt;}
.x41{left:422.152000pt;}
.x36{left:427.106667pt;}
.x59{left:431.373333pt;}
.x42{left:435.436000pt;}
.x29{left:439.500000pt;}
.x54{left:440.712000pt;}
.x55{left:449.298667pt;}
.x2a{left:452.784000pt;}
.x26{left:456.468000pt;}
.x75{left:458.144000pt;}
.x56{left:462.581333pt;}
.x78{left:463.689333pt;}
.x27{left:469.752000pt;}
.x6f{left:476.242667pt;}
.x72{left:477.637333pt;}
.x76{left:484.610667pt;}
.xb{left:492.700000pt;}
.xc{left:499.342667pt;}
.x2b{left:504.249333pt;}
.x79{left:505.532000pt;}
.x70{left:509.018667pt;}
.x2c{left:517.533333pt;}
.x45{left:519.980000pt;}
.x15{left:523.053333pt;}
.x2d{left:527.026667pt;}
.x46{left:533.264000pt;}
.x3b{left:535.234667pt;}
.x16{left:536.336000pt;}
.x2e{left:540.310667pt;}
.x47{left:541.389333pt;}
.x51{left:545.734667pt;}
.x3c{left:548.517333pt;}
.x2f{left:549.805333pt;}
.x71{left:550.861333pt;}
.x49{left:553.550667pt;}
.x48{left:554.673333pt;}
.x1f{left:562.582667pt;}
.x13{left:565.256000pt;}
.x20{left:569.224000pt;}
.x14{left:578.538667pt;}
.x34{left:582.661333pt;}
.x43{left:585.228000pt;}
.x61{left:586.406667pt;}
.xf{left:594.182667pt;}
.x60{left:595.389333pt;}
.x4d{left:597.530667pt;}
.x44{left:598.512000pt;}
.x62{left:599.689333pt;}
.x10{left:600.825333pt;}
.x21{left:608.189333pt;}
.x4e{left:610.814667pt;}
.x22{left:617.674667pt;}
.x4f{left:618.700000pt;}
.x69{left:624.770667pt;}
.x23{left:630.958667pt;}
.x50{left:631.984000pt;}
}




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