
    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_bc689b46e56572fc863fbe28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4233a310f761590749c23eaa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_363d74296726ea7f422b771f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_9976cfb4e2afd7a9b1e6c304.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e619c135a4247b7a11c0c3c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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_3cc6ee2deb631a4a6cc5c70a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_075dd8b6208ffb1c337b66b0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86409f60740dafa90235de0b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.988000;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_8cbeb9b0714b28d534806523.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d66be40af5ac9674d353888.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_9577c477440b7a155c718ff6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m19{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);}
.m24{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);}
.m1d{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);}
.m1b{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);}
.m8{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);}
.m26{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);}
.m5{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);}
.m1f{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);}
.md{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);}
.m16{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);}
.m23{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);}
.m4{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);}
.ma{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);}
.m18{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);}
.m12{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);}
.m2{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);}
.m15{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);}
.m17{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);}
.m9{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);}
.m14{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);}
.m7{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);}
.m22{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);}
.m6{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);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m21{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);}
.m1c{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);}
.mb{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);}
.m13{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);}
.m11{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);}
.m20{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);}
.m1a{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);}
.m1e{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);}
.m27{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{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.358000px;}
.v3{vertical-align:-11.958000px;}
.v4{vertical-align:-10.920000px;}
.v6{vertical-align:-6.870000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:32.874000px;}
.v7{vertical-align:41.844000px;}
.v5{vertical-align:49.536000px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000566px;}
.ls39{letter-spacing:0.000606px;}
.ls3b{letter-spacing:0.000800px;}
.ls38{letter-spacing:0.001155px;}
.ls5{letter-spacing:0.001298px;}
.ls3c{letter-spacing:0.001834px;}
.ls4{letter-spacing:0.009423px;}
.ls25{letter-spacing:0.370050px;}
.ls2a{letter-spacing:0.376050px;}
.ls28{letter-spacing:0.497764px;}
.ls26{letter-spacing:0.503764px;}
.ls29{letter-spacing:0.520348px;}
.ls27{letter-spacing:0.526348px;}
.lsf{letter-spacing:0.564600px;}
.ls1b{letter-spacing:0.570600px;}
.ls31{letter-spacing:0.572693px;}
.ls32{letter-spacing:0.578693px;}
.ls24{letter-spacing:0.583192px;}
.ls33{letter-spacing:0.648088px;}
.ls16{letter-spacing:0.742200px;}
.ls12{letter-spacing:0.745625px;}
.ls13{letter-spacing:0.748200px;}
.ls15{letter-spacing:0.751625px;}
.ls1a{letter-spacing:0.882571px;}
.lse{letter-spacing:0.888571px;}
.ls1e{letter-spacing:0.994766px;}
.ls17{letter-spacing:1.420741px;}
.ls18{letter-spacing:2.961483px;}
.ls34{letter-spacing:11.710108px;}
.ls2d{letter-spacing:11.857557px;}
.ls2f{letter-spacing:11.861454px;}
.ls2e{letter-spacing:11.863510px;}
.ls7{letter-spacing:11.954850px;}
.ls35{letter-spacing:11.957700px;}
.ls2b{letter-spacing:12.019363px;}
.ls23{letter-spacing:12.732203px;}
.ls1d{letter-spacing:13.089483px;}
.ls36{letter-spacing:13.451510px;}
.ls3a{letter-spacing:13.642331px;}
.ls6{letter-spacing:14.226593px;}
.ls14{letter-spacing:14.583483px;}
.ls30{letter-spacing:14.764573px;}
.ls3{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.943900px;}
.lsa{letter-spacing:15.063451px;}
.lsd{letter-spacing:15.123227px;}
.ls1c{letter-spacing:15.921943px;}
.ls19{letter-spacing:16.077483px;}
.ls3d{letter-spacing:16.458422px;}
.lsb{letter-spacing:17.454475px;}
.ls9{letter-spacing:18.351109px;}
.ls8{letter-spacing:18.410885px;}
.ls22{letter-spacing:18.501943px;}
.ls21{letter-spacing:19.550725px;}
.ls11{letter-spacing:19.563483px;}
.ls20{letter-spacing:19.970383px;}
.ls10{letter-spacing:20.907943px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.ls1f{letter-spacing:86.493943px;}
.ls2c{letter-spacing:234.373363px;}
.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;}
}
.ws39{word-spacing:-14.943900px;}
.wsc1{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.wsb{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws8a{word-spacing:-5.200477px;}
.ws89{word-spacing:-3.526760px;}
.ws85{word-spacing:-3.287658px;}
.ws84{word-spacing:-3.108331px;}
.ws80{word-spacing:-2.988780px;}
.ws4f{word-spacing:-2.929004px;}
.ws4d{word-spacing:-2.869229px;}
.ws8e{word-spacing:-2.630126px;}
.ws82{word-spacing:-2.570351px;}
.ws2a{word-spacing:-2.510575px;}
.ws65{word-spacing:-2.331248px;}
.ws90{word-spacing:-2.211697px;}
.ws127{word-spacing:-2.205734px;}
.ws126{word-spacing:-2.151936px;}
.ws91{word-spacing:-2.151922px;}
.ws5e{word-spacing:-2.092146px;}
.ws40{word-spacing:-2.032370px;}
.ws2b{word-spacing:-1.972595px;}
.wsb8{word-spacing:-1.882944px;}
.wsb2{word-spacing:-1.853044px;}
.wsb6{word-spacing:-1.829146px;}
.ws64{word-spacing:-1.793268px;}
.wsb5{word-spacing:-1.775347px;}
.ws3f{word-spacing:-1.733492px;}
.wsb7{word-spacing:-1.667750px;}
.ws63{word-spacing:-1.554166px;}
.wsf5{word-spacing:-1.506355px;}
.ws58{word-spacing:-1.494390px;}
.ws1f{word-spacing:-1.434614px;}
.ws66{word-spacing:-1.315063px;}
.ws22{word-spacing:-1.255288px;}
.ws7b{word-spacing:-1.195512px;}
.ws57{word-spacing:-1.135736px;}
.wsb4{word-spacing:-1.080155px;}
.ws59{word-spacing:-1.075961px;}
.ws117{word-spacing:-1.022170px;}
.wsa8{word-spacing:-0.956410px;}
.ws56{word-spacing:-0.896634px;}
.ws83{word-spacing:-0.836858px;}
.wsbb{word-spacing:-0.806976px;}
.ws35{word-spacing:-0.777083px;}
.wsff{word-spacing:-0.699379px;}
.wsfe{word-spacing:-0.645581px;}
.ws4c{word-spacing:-0.597756px;}
.ws12f{word-spacing:-0.591782px;}
.ws4b{word-spacing:-0.537980px;}
.wse7{word-spacing:-0.526027px;}
.ws112{word-spacing:-0.484186px;}
.ws101{word-spacing:-0.430387px;}
.ws45{word-spacing:-0.418429px;}
.wsba{word-spacing:-0.376589px;}
.ws4a{word-spacing:-0.358654px;}
.wsf2{word-spacing:-0.322790px;}
.ws20{word-spacing:-0.298878px;}
.wsc3{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.ws10f{word-spacing:-0.215194px;}
.ws9a{word-spacing:-0.209214px;}
.ws21{word-spacing:-0.179327px;}
.ws116{word-spacing:-0.176310px;}
.wsbd{word-spacing:-0.161395px;}
.wse8{word-spacing:-0.143462px;}
.ws17{word-spacing:-0.119551px;}
.wsbc{word-spacing:-0.107597px;}
.ws121{word-spacing:-0.099419px;}
.wsa3{word-spacing:-0.095641px;}
.ws18{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.053798px;}
.ws11c{word-spacing:-0.012451px;}
.wsf8{word-spacing:-0.011645px;}
.ws130{word-spacing:-0.011453px;}
.ws133{word-spacing:-0.010291px;}
.wseb{word-spacing:-0.009302px;}
.ws12b{word-spacing:-0.008554px;}
.ws115{word-spacing:-0.007920px;}
.ws114{word-spacing:-0.007373px;}
.wsed{word-spacing:-0.006490px;}
.wsf6{word-spacing:-0.005971px;}
.ws2{word-spacing:-0.005369px;}
.ws123{word-spacing:-0.004810px;}
.ws100{word-spacing:-0.003898px;}
.ws131{word-spacing:-0.003302px;}
.ws109{word-spacing:-0.003082px;}
.ws12c{word-spacing:-0.002170px;}
.ws11e{word-spacing:-0.001843px;}
.wse9{word-spacing:-0.001577px;}
.wsef{word-spacing:-0.001526px;}
.wsf1{word-spacing:-0.001267px;}
.ws26{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.wsda{word-spacing:0.047821px;}
.wsd{word-spacing:0.053798px;}
.ws16{word-spacing:0.059776px;}
.wsa2{word-spacing:0.095641px;}
.ws103{word-spacing:0.097813px;}
.ws11{word-spacing:0.107597px;}
.ws23{word-spacing:0.119551px;}
.wsa0{word-spacing:0.143462px;}
.wsc0{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws9d{word-spacing:0.191282px;}
.ws13{word-spacing:0.215194px;}
.ws33{word-spacing:0.239102px;}
.wsc2{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.ws110{word-spacing:0.322790px;}
.ws34{word-spacing:0.358654px;}
.ws11a{word-spacing:0.376589px;}
.ws44{word-spacing:0.418429px;}
.ws28{word-spacing:0.478205px;}
.wse6{word-spacing:0.526027px;}
.ws6f{word-spacing:0.537980px;}
.wsa1{word-spacing:0.573847px;}
.ws6d{word-spacing:0.597756px;}
.ws3d{word-spacing:0.657532px;}
.wsd9{word-spacing:0.765130px;}
.ws72{word-spacing:0.777083px;}
.wsfb{word-spacing:0.806976px;}
.ws32{word-spacing:0.836858px;}
.ws11f{word-spacing:0.860774px;}
.wsb0{word-spacing:0.896634px;}
.wsb3{word-spacing:0.956410px;}
.ws68{word-spacing:1.016185px;}
.wsf9{word-spacing:1.075968px;}
.wsd8{word-spacing:1.099874px;}
.ws10{word-spacing:1.183565px;}
.ws38{word-spacing:1.195512px;}
.ws7e{word-spacing:1.255288px;}
.ws119{word-spacing:1.291162px;}
.wsb1{word-spacing:1.315063px;}
.ws79{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws132{word-spacing:1.398758px;}
.ws5d{word-spacing:1.434614px;}
.wsee{word-spacing:1.452557px;}
.ws1d{word-spacing:1.494390px;}
.ws36{word-spacing:1.554166px;}
.wse5{word-spacing:1.578080px;}
.ws42{word-spacing:1.613941px;}
.ws10d{word-spacing:1.613952px;}
.ws8d{word-spacing:1.673717px;}
.ws70{word-spacing:1.733492px;}
.ws7a{word-spacing:1.793268px;}
.ws47{word-spacing:1.853044px;}
.ws71{word-spacing:1.912819px;}
.wsdb{word-spacing:1.912824px;}
.ws11d{word-spacing:1.990541px;}
.ws86{word-spacing:2.032370px;}
.ws77{word-spacing:2.092146px;}
.ws2d{word-spacing:2.151922px;}
.ws125{word-spacing:2.205734px;}
.ws2e{word-spacing:2.211697px;}
.ws37{word-spacing:2.271473px;}
.ws5f{word-spacing:2.391024px;}
.ws129{word-spacing:2.420928px;}
.ws46{word-spacing:2.450800px;}
.ws1{word-spacing:2.539858px;}
.ws19{word-spacing:2.570351px;}
.wsf3{word-spacing:2.582323px;}
.ws5a{word-spacing:2.630126px;}
.ws134{word-spacing:2.636122px;}
.ws43{word-spacing:2.749678px;}
.ws106{word-spacing:2.797517px;}
.ws1c{word-spacing:2.809453px;}
.ws122{word-spacing:2.905114px;}
.ws118{word-spacing:2.958912px;}
.ws61{word-spacing:2.988780px;}
.ws7f{word-spacing:3.048556px;}
.wsea{word-spacing:3.066509px;}
.ws6e{word-spacing:3.108331px;}
.ws10c{word-spacing:3.120307px;}
.ws14{word-spacing:3.219667px;}
.ws120{word-spacing:3.220109px;}
.ws102{word-spacing:3.221299px;}
.ws107{word-spacing:3.222768px;}
.ws108{word-spacing:3.222797px;}
.wsf0{word-spacing:3.224352px;}
.ws113{word-spacing:3.224784px;}
.ws128{word-spacing:3.225408px;}
.ws78{word-spacing:3.227882px;}
.wsec{word-spacing:3.227904px;}
.ws11b{word-spacing:3.229402px;}
.wsb9{word-spacing:3.235965px;}
.wsc{word-spacing:3.311528px;}
.wsfd{word-spacing:3.335501px;}
.ws1a{word-spacing:3.347434px;}
.ws124{word-spacing:3.389299px;}
.ws50{word-spacing:3.407209px;}
.ws104{word-spacing:3.443098px;}
.ws5b{word-spacing:3.466985px;}
.ws105{word-spacing:3.496896px;}
.ws7d{word-spacing:3.526760px;}
.ws15{word-spacing:3.586536px;}
.wse{word-spacing:3.604493px;}
.wsa6{word-spacing:3.646312px;}
.ws12e{word-spacing:3.658291px;}
.ws5c{word-spacing:3.706087px;}
.ws81{word-spacing:3.825638px;}
.ws9f{word-spacing:3.873469px;}
.ws10a{word-spacing:3.873485px;}
.ws8f{word-spacing:3.945190px;}
.ws87{word-spacing:3.999137px;}
.wsab{word-spacing:4.004965px;}
.ws88{word-spacing:4.005137px;}
.ws29{word-spacing:4.064741px;}
.wsaa{word-spacing:4.124516px;}
.wsad{word-spacing:4.184292px;}
.ws6a{word-spacing:4.244068px;}
.wsf7{word-spacing:4.250074px;}
.ws73{word-spacing:4.303843px;}
.wsfa{word-spacing:4.411469px;}
.ws41{word-spacing:4.423394px;}
.wsf{word-spacing:4.572864px;}
.ws12d{word-spacing:4.626662px;}
.ws6b{word-spacing:4.662497px;}
.ws3e{word-spacing:4.722272px;}
.ws55{word-spacing:4.782048px;}
.ws76{word-spacing:4.901599px;}
.ws51{word-spacing:4.961375px;}
.wsfc{word-spacing:5.003251px;}
.ws2f{word-spacing:5.140702px;}
.wsac{word-spacing:5.200477px;}
.ws75{word-spacing:5.260253px;}
.ws60{word-spacing:5.320028px;}
.wsa4{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.wsaf{word-spacing:5.499355px;}
.ws2c{word-spacing:5.559131px;}
.ws49{word-spacing:5.798233px;}
.ws52{word-spacing:5.858009px;}
.ws62{word-spacing:5.917784px;}
.wsa9{word-spacing:5.977560px;}
.ws1b{word-spacing:6.097111px;}
.ws30{word-spacing:6.216662px;}
.ws8c{word-spacing:6.575316px;}
.ws54{word-spacing:6.694867px;}
.ws9e{word-spacing:6.742705px;}
.wsa7{word-spacing:6.874194px;}
.ws48{word-spacing:6.933970px;}
.ws31{word-spacing:7.053521px;}
.ws111{word-spacing:7.101389px;}
.ws74{word-spacing:7.173072px;}
.ws67{word-spacing:7.232848px;}
.ws3a{word-spacing:7.352399px;}
.ws4e{word-spacing:7.531726px;}
.wsa5{word-spacing:7.591501px;}
.ws3b{word-spacing:8.249033px;}
.wsae{word-spacing:8.308808px;}
.ws7c{word-spacing:8.368584px;}
.ws10e{word-spacing:8.446349px;}
.ws8b{word-spacing:9.324994px;}
.ws6{word-spacing:9.833058px;}
.ws3c{word-spacing:10.341179px;}
.ws10b{word-spacing:11.136269px;}
.wsf4{word-spacing:11.459059px;}
.ws7{word-spacing:11.841512px;}
.ws6c{word-spacing:11.895344px;}
.ws12a{word-spacing:12.104640px;}
.ws69{word-spacing:14.107042px;}
.ws3{word-spacing:15.481836px;}
.ws9{word-spacing:16.067635px;}
.ws53{word-spacing:21.578992px;}
.ws5{word-spacing:22.339429px;}
.wsc6{word-spacing:100.662363px;}
.wsc5{word-spacing:127.728823px;}
.wsd0{word-spacing:131.863818px;}
.wsd5{word-spacing:133.480500px;}
.ws92{word-spacing:138.499668px;}
.wsd6{word-spacing:142.027182px;}
.wsd4{word-spacing:144.280500px;}
.wscf{word-spacing:153.449420px;}
.wsbe{word-spacing:154.993190px;}
.wsc9{word-spacing:163.642093px;}
.wsca{word-spacing:172.568422px;}
.wscc{word-spacing:172.823648px;}
.wsd3{word-spacing:178.976383px;}
.wsd1{word-spacing:185.257004px;}
.ws99{word-spacing:185.515348px;}
.wsc4{word-spacing:190.046144px;}
.wsc8{word-spacing:191.218456px;}
.wsbf{word-spacing:192.932515px;}
.ws9b{word-spacing:199.904221px;}
.ws95{word-spacing:202.985695px;}
.ws96{word-spacing:202.991695px;}
.wsd7{word-spacing:208.689098px;}
.ws97{word-spacing:211.127695px;}
.ws98{word-spacing:213.529348px;}
.ws93{word-spacing:214.573348px;}
.wsce{word-spacing:225.744929px;}
.ws94{word-spacing:230.999695px;}
.wsd2{word-spacing:239.246462px;}
.wscb{word-spacing:241.717010px;}
.ws9c{word-spacing:275.618524px;}
.wsc7{word-spacing:277.057090px;}
.wscd{word-spacing:295.611483px;}
.wse1{word-spacing:568.902000px;}
.wse2{word-spacing:591.359587px;}
.wsde{word-spacing:754.435968px;}
.wsdd{word-spacing:762.616925px;}
.wse4{word-spacing:776.654707px;}
.wsdf{word-spacing:822.440746px;}
.wse3{word-spacing:822.921331px;}
.wsdc{word-spacing:852.671846px;}
.wse0{word-spacing:916.128893px;}
._48{margin-left:-24.226896px;}
._49{margin-left:-19.643024px;}
._1c{margin-left:-8.518027px;}
._10{margin-left:-6.581411px;}
._9{margin-left:-5.308087px;}
._8{margin-left:-4.184292px;}
._0{margin-left:-3.096367px;}
._4{margin-left:-1.464498px;}
._1f{width:1.769972px;}
._6{width:2.996545px;}
._15{width:4.303843px;}
._20{width:5.624591px;}
._43{width:11.142200px;}
._1{width:12.971268px;}
._11{width:14.822586px;}
._a{width:16.031923px;}
._d{width:17.227429px;}
._b{width:18.357196px;}
._19{width:19.367294px;}
._14{width:20.598785px;}
._16{width:21.907530px;}
._17{width:22.923938px;}
._1a{width:24.029791px;}
._2{width:25.314894px;}
._e{width:26.779469px;}
._1e{width:28.333634px;}
._c{width:29.965709px;}
._3{width:31.256572px;}
._5{width:33.355008px;}
._1b{width:34.783304px;}
._1d{width:36.493231px;}
._f{width:37.748287px;}
._18{width:39.571447px;}
._29{width:44.502930px;}
._7{width:69.335579px;}
._2e{width:136.623454px;}
._2d{width:150.347966px;}
._25{width:152.793430px;}
._34{width:153.934511px;}
._3d{width:161.681449px;}
._33{width:163.163887px;}
._22{width:172.224965px;}
._32{width:173.923522px;}
._30{width:175.597243px;}
._3b{width:183.583283px;}
._2f{width:184.778798px;}
._3a{width:191.521503px;}
._31{width:195.586254px;}
._35{width:197.793491px;}
._40{width:199.029337px;}
._24{width:200.092270px;}
._26{width:206.772148px;}
._27{width:207.816148px;}
._3f{width:209.788972px;}
._37{width:217.153345px;}
._23{width:223.315024px;}
._3e{width:231.403883px;}
._3c{width:234.227099px;}
._41{width:253.066615px;}
._39{width:261.483041px;}
._38{width:271.142802px;}
._36{width:304.617222px;}
._42{width:307.008252px;}
._45{width:530.785267px;}
._2b{width:541.301918px;}
._46{width:544.237267px;}
._44{width:546.430349px;}
._21{width:655.049034px;}
._12{width:723.860422px;}
._47{width:892.031270px;}
._2c{width:1144.375918px;}
._2a{width:2053.359260px;}
._28{width:2500.851000px;}
._13{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:43.600200px;}
.fsa{font-size:45.429600px;}
.fsc{font-size:47.820600px;}
.fs10{font-size:49.829400px;}
.fsd{font-size:53.798400px;}
.fs11{font-size:56.058000px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fse{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.fs7{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y3a{bottom:16.704213px;}
.y67{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y38{bottom:104.646000px;}
.y66{bottom:106.818000px;}
.y12a{bottom:106.962000px;}
.y157{bottom:110.142000px;}
.y104{bottom:110.331000px;}
.y16a{bottom:110.629500px;}
.ye9{bottom:110.734500px;}
.y224{bottom:116.458500px;}
.y9d{bottom:119.148000px;}
.yce{bottom:119.596500px;}
.y37{bottom:122.535000px;}
.y65{bottom:125.647500px;}
.y129{bottom:125.791500px;}
.y156{bottom:128.971500px;}
.y103{bottom:129.160500px;}
.y169{bottom:129.459000px;}
.ye8{bottom:129.564000px;}
.y1ed{bottom:130.695000px;}
.y223{bottom:133.719000px;}
.y9c{bottom:137.977500px;}
.ycd{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y36{bottom:140.422500px;}
.y64{bottom:144.477000px;}
.y128{bottom:144.621000px;}
.y1ec{bottom:147.954000px;}
.y102{bottom:147.990000px;}
.y168{bottom:148.288500px;}
.ye7{bottom:148.393500px;}
.y222{bottom:150.978000px;}
.y9b{bottom:156.807000px;}
.ycc{bottom:157.255500px;}
.y35{bottom:158.310000px;}
.y1b4{bottom:163.108500px;}
.y63{bottom:163.306500px;}
.y127{bottom:163.450500px;}
.y1eb{bottom:165.214500px;}
.y101{bottom:166.819500px;}
.y167{bottom:167.118000px;}
.ye6{bottom:167.223000px;}
.y221{bottom:168.238500px;}
.y155{bottom:169.105500px;}
.y9a{bottom:175.636500px;}
.ycb{bottom:176.085000px;}
.y34{bottom:176.199000px;}
.y1b3{bottom:177.304500px;}
.y62{bottom:182.136000px;}
.y126{bottom:182.280000px;}
.y1ea{bottom:182.475000px;}
.y154{bottom:183.301500px;}
.y220{bottom:185.499000px;}
.y100{bottom:185.649000px;}
.y166{bottom:185.947500px;}
.ye5{bottom:186.052500px;}
.y1b2{bottom:191.502000px;}
.y33{bottom:194.086500px;}
.y99{bottom:194.466000px;}
.yca{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y153{bottom:197.499000px;}
.y1e9{bottom:199.735500px;}
.y61{bottom:200.965500px;}
.y125{bottom:201.109500px;}
.y21f{bottom:202.759500px;}
.yff{bottom:204.478500px;}
.y165{bottom:204.777000px;}
.ye4{bottom:204.882000px;}
.y1b1{bottom:205.698000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y152{bottom:211.695000px;}
.y32{bottom:211.974000px;}
.y98{bottom:213.295500px;}
.yc9{bottom:213.744000px;}
.y179{bottom:215.178000px;}
.y1e8{bottom:216.996000px;}
.y60{bottom:219.795000px;}
.y1b0{bottom:219.895500px;}
.y124{bottom:219.937500px;}
.y21e{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yfe{bottom:223.308000px;}
.y164{bottom:223.606500px;}
.ye3{bottom:223.711500px;}
.y151{bottom:225.892500px;}
.y31{bottom:229.863000px;}
.y97{bottom:232.125000px;}
.yc8{bottom:232.573500px;}
.y178{bottom:232.752000px;}
.y1af{bottom:234.091500px;}
.y1e7{bottom:234.256500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y21d{bottom:237.280500px;}
.y5f{bottom:238.624500px;}
.y123{bottom:238.767000px;}
.y150{bottom:240.088500px;}
.yfd{bottom:242.137500px;}
.y163{bottom:242.436000px;}
.ye2{bottom:242.541000px;}
.y1ae{bottom:248.289000px;}
.y177{bottom:250.327500px;}
.y96{bottom:250.954500px;}
.yc7{bottom:251.403000px;}
.y1e6{bottom:251.517000px;}
.y14f{bottom:254.286000px;}
.y21c{bottom:254.541000px;}
.y5e{bottom:257.454000px;}
.y122{bottom:257.596500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yfc{bottom:260.967000px;}
.y162{bottom:261.265500px;}
.ye1{bottom:261.370500px;}
.y1ad{bottom:262.485000px;}
.y14e{bottom:268.482000px;}
.y1e5{bottom:268.777500px;}
.y95{bottom:269.784000px;}
.yc6{bottom:270.232500px;}
.y21b{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y5d{bottom:276.283500px;}
.y121{bottom:276.426000px;}
.y176{bottom:276.867000px;}
.yfb{bottom:279.796500px;}
.y161{bottom:280.095000px;}
.ye0{bottom:280.200000px;}
.y14d{bottom:282.679500px;}
.y1ac{bottom:283.645500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1e4{bottom:286.038000px;}
.y94{bottom:288.613500px;}
.yc5{bottom:289.062000px;}
.y175{bottom:294.441000px;}
.y5c{bottom:295.113000px;}
.y120{bottom:295.255500px;}
.y14c{bottom:296.875500px;}
.y30{bottom:297.166500px;}
.y1ab{bottom:297.841500px;}
.yfa{bottom:298.626000px;}
.y160{bottom:298.924500px;}
.ydf{bottom:299.029500px;}
.y1e3{bottom:303.297000px;}
.y21a{bottom:306.321000px;}
.y93{bottom:307.443000px;}
.yc4{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y14b{bottom:311.073000px;}
.y1aa{bottom:312.039000px;}
.y5b{bottom:313.941000px;}
.y11f{bottom:314.085000px;}
.y2f{bottom:315.054000px;}
.yf9{bottom:317.455500px;}
.y15f{bottom:317.754000px;}
.yde{bottom:317.859000px;}
.y1e2{bottom:320.557500px;}
.y174{bottom:320.982000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y219{bottom:323.581500px;}
.y1a9{bottom:326.235000px;}
.y92{bottom:326.272500px;}
.yc3{bottom:326.719500px;}
.y14a{bottom:331.111500px;}
.y5a{bottom:332.770500px;}
.y11e{bottom:332.914500px;}
.y2e{bottom:332.941500px;}
.yf8{bottom:336.285000px;}
.y15e{bottom:336.583500px;}
.ydd{bottom:336.688500px;}
.y1e1{bottom:337.818000px;}
.y1a8{bottom:340.432500px;}
.y218{bottom:340.842000px;}
.y149{bottom:341.572500px;}
.y91{bottom:345.102000px;}
.yc2{bottom:345.549000px;}
.y173{bottom:347.523000px;}
.yf{bottom:348.133500px;}
.y2d{bottom:350.830500px;}
.y59{bottom:351.600000px;}
.y11d{bottom:351.744000px;}
.y148{bottom:352.278000px;}
.y1a7{bottom:354.628500px;}
.y1e0{bottom:355.078500px;}
.yf7{bottom:355.114500px;}
.y15d{bottom:355.413000px;}
.ydc{bottom:355.518000px;}
.y217{bottom:358.102500px;}
.y147{bottom:362.985000px;}
.y90{bottom:363.931500px;}
.yc1{bottom:364.378500px;}
.y172{bottom:365.097000px;}
.y1a6{bottom:368.826000px;}
.y58{bottom:370.429500px;}
.y11c{bottom:370.573500px;}
.y1df{bottom:372.339000px;}
.y146{bottom:373.446000px;}
.yf6{bottom:373.944000px;}
.y15c{bottom:374.242500px;}
.ydb{bottom:374.347500px;}
.y216{bottom:375.363000px;}
.y2c{bottom:377.658000px;}
.y2b{bottom:379.179000px;}
.y171{bottom:382.671000px;}
.y8f{bottom:382.761000px;}
.y1a5{bottom:383.022000px;}
.yc0{bottom:383.208000px;}
.y145{bottom:383.907000px;}
.ye{bottom:386.785499px;}
.y57{bottom:389.259000px;}
.y11b{bottom:389.403000px;}
.y1de{bottom:389.599500px;}
.y215{bottom:392.623500px;}
.yf5{bottom:392.773500px;}
.yda{bottom:393.177000px;}
.y144{bottom:394.368000px;}
.y2a{bottom:397.066500px;}
.y1a4{bottom:397.219500px;}
.y15b{bottom:397.555500px;}
.y8e{bottom:401.589000px;}
.ybf{bottom:402.037500px;}
.y143{bottom:405.073500px;}
.y1dd{bottom:406.860000px;}
.yd{bottom:408.044999px;}
.y56{bottom:408.088500px;}
.y11a{bottom:408.232500px;}
.y170{bottom:409.210500px;}
.y214{bottom:409.884000px;}
.y141{bottom:410.281500px;}
.y1a3{bottom:411.415500px;}
.yf4{bottom:411.601500px;}
.yd9{bottom:412.005000px;}
.y142{bottom:415.534500px;}
.y15a{bottom:416.383500px;}
.y8d{bottom:420.418500px;}
.ybe{bottom:420.867000px;}
.y29{bottom:423.921000px;}
.y1dc{bottom:424.120500px;}
.y1a2{bottom:425.613000px;}
.y140{bottom:425.995500px;}
.y16f{bottom:426.786000px;}
.y55{bottom:426.918000px;}
.y119{bottom:427.062000px;}
.y213{bottom:427.144500px;}
.yf3{bottom:430.431000px;}
.yd8{bottom:430.834500px;}
.y13e{bottom:431.080500px;}
.y159{bottom:435.213000px;}
.y13f{bottom:436.456500px;}
.y8c{bottom:439.248000px;}
.ybd{bottom:439.696500px;}
.y1a1{bottom:439.809000px;}
.y1db{bottom:441.379500px;}
.y28{bottom:441.810000px;}
.y16e{bottom:444.360000px;}
.y212{bottom:444.403500px;}
.y54{bottom:445.747500px;}
.y118{bottom:445.891500px;}
.y13c{bottom:446.917500px;}
.yf2{bottom:449.260500px;}
.yd7{bottom:449.664000px;}
.y13b{bottom:452.001000px;}
.y1a0{bottom:454.006500px;}
.y158{bottom:454.042500px;}
.y13d{bottom:457.378500px;}
.y8b{bottom:458.077500px;}
.ybc{bottom:458.526000px;}
.y1da{bottom:458.640000px;}
.y27{bottom:459.697500px;}
.y211{bottom:461.664000px;}
.y16d{bottom:461.934000px;}
.y53{bottom:464.577000px;}
.y117{bottom:464.721000px;}
.y138{bottom:467.839500px;}
.yf1{bottom:468.090000px;}
.y19f{bottom:468.202500px;}
.yd6{bottom:468.493500px;}
.y13a{bottom:468.744000px;}
.y1d9{bottom:475.900500px;}
.y8a{bottom:476.907000px;}
.ybb{bottom:477.355500px;}
.y26{bottom:477.585000px;}
.y210{bottom:478.924500px;}
.y139{bottom:479.205000px;}
.y16c{bottom:479.508000px;}
.y137{bottom:479.817000px;}
.y19e{bottom:482.400000px;}
.y116{bottom:483.550500px;}
.yf0{bottom:486.919500px;}
.yd5{bottom:487.323000px;}
.y52{bottom:487.890000px;}
.y136{bottom:490.570500px;}
.y1d8{bottom:493.161000px;}
.y25{bottom:495.474000px;}
.y134{bottom:495.655500px;}
.y89{bottom:495.736500px;}
.yba{bottom:496.185000px;}
.y135{bottom:501.031500px;}
.yc{bottom:502.864502px;}
.y19d{bottom:503.799000px;}
.yef{bottom:505.749000px;}
.yd4{bottom:506.152500px;}
.y115{bottom:506.863500px;}
.y1d7{bottom:510.421500px;}
.y133{bottom:511.492500px;}
.y24{bottom:513.361500px;}
.y20f{bottom:513.445500px;}
.y88{bottom:514.566000px;}
.yb9{bottom:515.014500px;}
.y131{bottom:516.576000px;}
.yb{bottom:520.864502px;}
.y132{bottom:521.953500px;}
.yee{bottom:524.578500px;}
.yd3{bottom:524.982000px;}
.y1d6{bottom:527.682000px;}
.y20e{bottom:530.706000px;}
.y23{bottom:531.249000px;}
.y130{bottom:532.414500px;}
.yb6{bottom:533.395500px;}
.yb8{bottom:533.844000px;}
.y19c{bottom:536.838000px;}
.y87{bottom:537.879000px;}
.ya{bottom:538.864499px;}
.y114{bottom:540.487500px;}
.yed{bottom:543.408000px;}
.yd2{bottom:543.811500px;}
.y12f{bottom:544.426500px;}
.y1d5{bottom:544.942500px;}
.y20d{bottom:547.966500px;}
.y22{bottom:549.138000px;}
.yb5{bottom:552.225000px;}
.yb7{bottom:552.673500px;}
.y9{bottom:556.864499px;}
.y113{bottom:559.317000px;}
.y12e{bottom:562.089000px;}
.y1d4{bottom:562.203000px;}
.y51{bottom:562.233000px;}
.yd1{bottom:562.641000px;}
.y20c{bottom:565.227000px;}
.yec{bottom:566.721000px;}
.yb4{bottom:571.054500px;}
.y86{bottom:571.503000px;}
.y112{bottom:578.146500px;}
.y1d3{bottom:579.463500px;}
.y12d{bottom:579.988500px;}
.y19b{bottom:581.416500px;}
.y20b{bottom:582.487500px;}
.yd0{bottom:585.954000px;}
.yeb{bottom:586.896000px;}
.y199{bottom:589.635000px;}
.yb3{bottom:589.884000px;}
.y85{bottom:590.332500px;}
.y1d2{bottom:596.722500px;}
.y111{bottom:596.976000px;}
.y19a{bottom:597.855000px;}
.y12c{bottom:597.886500px;}
.y50{bottom:599.623500px;}
.y20a{bottom:599.746500px;}
.yb2{bottom:608.713500px;}
.y84{bottom:609.162000px;}
.y1d1{bottom:613.983000px;}
.y198{bottom:614.293500px;}
.y110{bottom:615.805500px;}
.y209{bottom:617.007000px;}
.ycf{bottom:620.520000px;}
.yb1{bottom:627.543000px;}
.y83{bottom:627.991500px;}
.y12b{bottom:628.546500px;}
.y197{bottom:630.732000px;}
.y1d0{bottom:631.243500px;}
.y208{bottom:634.267500px;}
.y10f{bottom:634.635000px;}
.y4f{bottom:637.012500px;}
.y194{bottom:638.950500px;}
.yea{bottom:639.349500px;}
.y8{bottom:645.510000px;}
.yb0{bottom:646.372500px;}
.y82{bottom:646.821000px;}
.y196{bottom:647.170500px;}
.y1cf{bottom:648.504000px;}
.y16b{bottom:650.856000px;}
.y207{bottom:651.528000px;}
.y10e{bottom:653.463000px;}
.y4e{bottom:656.469000px;}
.y195{bottom:663.609000px;}
.yaf{bottom:665.202000px;}
.y81{bottom:665.650500px;}
.y1ce{bottom:665.764500px;}
.y7{bottom:666.771000px;}
.y206{bottom:668.788500px;}
.y10d{bottom:672.292500px;}
.y4d{bottom:675.927000px;}
.y193{bottom:680.046000px;}
.y1cd{bottom:683.025000px;}
.yae{bottom:684.031500px;}
.y80{bottom:684.480000px;}
.y205{bottom:686.049000px;}
.y10c{bottom:691.122000px;}
.y4c{bottom:695.383500px;}
.y191{bottom:696.484500px;}
.y1cc{bottom:700.285500px;}
.yad{bottom:702.861000px;}
.y7f{bottom:703.309500px;}
.y10b{bottom:709.951500px;}
.y192{bottom:712.923000px;}
.y4b{bottom:714.841500px;}
.y1cb{bottom:717.546000px;}
.y204{bottom:720.570000px;}
.yac{bottom:721.690500px;}
.y7e{bottom:722.139000px;}
.y6{bottom:726.298500px;}
.y10a{bottom:728.781000px;}
.y18e{bottom:729.361500px;}
.y4a{bottom:734.298000px;}
.y190{bottom:737.581500px;}
.y203{bottom:737.829000px;}
.y1ca{bottom:739.288500px;}
.yab{bottom:740.520000px;}
.y7d{bottom:740.968500px;}
.y18c{bottom:745.800000px;}
.y109{bottom:747.610500px;}
.y3{bottom:752.599495px;}
.y49{bottom:753.754500px;}
.y18f{bottom:754.018500px;}
.y201{bottom:755.089500px;}
.y202{bottom:755.298000px;}
.yaa{bottom:759.349500px;}
.y7c{bottom:759.798000px;}
.y18d{bottom:762.238500px;}
.y108{bottom:766.440000px;}
.y200{bottom:772.350000px;}
.y48{bottom:773.212500px;}
.y1c9{bottom:776.212500px;}
.ya9{bottom:778.179000px;}
.y7b{bottom:778.627500px;}
.y18b{bottom:778.677000px;}
.y227{bottom:785.053500px;}
.y1ff{bottom:789.610500px;}
.y1c8{bottom:790.408500px;}
.y47{bottom:792.669000px;}
.y189{bottom:795.115500px;}
.ya8{bottom:797.008500px;}
.y7a{bottom:797.457000px;}
.y107{bottom:800.086500px;}
.y226{bottom:802.312500px;}
.y1c7{bottom:804.606000px;}
.y1fe{bottom:806.871000px;}
.y18a{bottom:811.554000px;}
.y46{bottom:812.125500px;}
.ya7{bottom:815.838000px;}
.y79{bottom:816.286500px;}
.y1c6{bottom:818.802000px;}
.y106{bottom:818.916000px;}
.y225{bottom:819.573000px;}
.y1fd{bottom:824.131500px;}
.y188{bottom:827.992500px;}
.y1c5{bottom:832.999500px;}
.ya6{bottom:834.667500px;}
.y78{bottom:835.114500px;}
.y1fc{bottom:841.392000px;}
.y187{bottom:844.429500px;}
.y1c4{bottom:847.195500px;}
.y45{bottom:850.711500px;}
.ya5{bottom:853.497000px;}
.y77{bottom:853.944000px;}
.y1fb{bottom:858.652500px;}
.y184{bottom:860.868000px;}
.y1c3{bottom:861.393000px;}
.y44{bottom:866.851500px;}
.ya4{bottom:872.326500px;}
.y76{bottom:872.773500px;}
.y1c2{bottom:875.589000px;}
.y1fa{bottom:875.913000px;}
.y105{bottom:876.808500px;}
.y186{bottom:877.306500px;}
.y2{bottom:879.369000px;}
.y43{bottom:887.331000px;}
.y1c1{bottom:889.786500px;}
.ya3{bottom:891.156000px;}
.y75{bottom:891.603000px;}
.y1f9{bottom:893.172000px;}
.y185{bottom:893.745000px;}
.y42{bottom:899.130000px;}
.y1c0{bottom:908.629500px;}
.ya2{bottom:909.984000px;}
.y183{bottom:910.183500px;}
.y74{bottom:910.432500px;}
.y41{bottom:919.609500px;}
.y1bf{bottom:925.068000px;}
.y181{bottom:926.622000px;}
.y1f8{bottom:927.693000px;}
.ya1{bottom:928.813500px;}
.y73{bottom:929.262000px;}
.y40{bottom:931.410000px;}
.y1be{bottom:941.506500px;}
.y182{bottom:943.060500px;}
.y1f7{bottom:944.953500px;}
.ya0{bottom:947.643000px;}
.y72{bottom:948.091500px;}
.y3f{bottom:951.888000px;}
.y1bd{bottom:957.945000px;}
.y180{bottom:959.499000px;}
.y1f6{bottom:962.214000px;}
.y9f{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y71{bottom:966.921000px;}
.y1bc{bottom:974.383500px;}
.y17e{bottom:975.937500px;}
.y1f5{bottom:979.474500px;}
.y70{bottom:985.750500px;}
.y9e{bottom:989.785500px;}
.y1bb{bottom:990.822000px;}
.y17f{bottom:992.376000px;}
.y3e{bottom:996.565500px;}
.y1f4{bottom:996.735000px;}
.y6f{bottom:1004.580000px;}
.y1ba{bottom:1007.260500px;}
.y17d{bottom:1008.813000px;}
.y1f3{bottom:1013.995500px;}
.y17c{bottom:1017.033000px;}
.y6e{bottom:1023.409500px;}
.y1b9{bottom:1023.699000px;}
.y1f2{bottom:1031.254500px;}
.y3d{bottom:1036.485000px;}
.y1b8{bottom:1040.137500px;}
.y6d{bottom:1042.239000px;}
.y1f1{bottom:1048.515000px;}
.y17b{bottom:1048.893000px;}
.y6c{bottom:1061.068500px;}
.y1b7{bottom:1063.777500px;}
.y3c{bottom:1064.728500px;}
.y1f0{bottom:1065.775500px;}
.y6b{bottom:1079.898000px;}
.y1ef{bottom:1083.036000px;}
.y17a{bottom:1083.501000px;}
.y1b6{bottom:1087.419000px;}
.y3b{bottom:1092.972000px;}
.y6a{bottom:1098.727500px;}
.y1ee{bottom:1100.296500px;}
.y69{bottom:1117.557000px;}
.y1b5{bottom:1119.037500px;}
.y39{bottom:1136.460000px;}
.y68{bottom:1177.662000px;}
.hb{height:21.847982px;}
.h11{height:26.217754px;}
.h19{height:30.252344px;}
.h9{height:30.587087px;}
.ha{height:30.670772px;}
.h1c{height:31.079087px;}
.h7{height:32.130000px;}
.h20{height:34.717756px;}
.h12{height:34.956859px;}
.h16{height:35.052500px;}
.h1d{height:38.896243px;}
.h13{height:39.326630px;}
.h21{height:39.434227px;}
.h14{height:43.217759px;}
.h15{height:43.695964px;}
.he{height:43.815515px;}
.h6{height:45.900000px;}
.h17{height:46.714950px;}
.h3{height:48.195000px;}
.hc{height:50.930649px;}
.h1b{height:52.097087px;}
.h10{height:54.541601px;}
.h2{height:55.080000px;}
.h1e{height:72.200630px;}
.h1f{height:72.206630px;}
.h1a{height:72.431087px;}
.hf{height:77.792486px;}
.h5{height:78.030000px;}
.h18{height:81.471964px;}
.hd{height:87.128261px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x7{left:58.056593px;}
.x25{left:62.541000px;}
.x6{left:84.222000px;}
.x50{left:85.323000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x52{left:114.834000px;}
.x51{left:116.266500px;}
.x24{left:160.569000px;}
.x40{left:161.986500px;}
.x26{left:164.601000px;}
.x35{left:168.388500px;}
.x3b{left:172.624500px;}
.x41{left:174.805500px;}
.x4{left:203.484001px;}
.x23{left:216.274500px;}
.xc{left:247.348500px;}
.xa{left:248.526000px;}
.x8{left:249.591000px;}
.x27{left:250.632000px;}
.x28{left:251.814000px;}
.x36{left:256.182000px;}
.x4f{left:258.556500px;}
.x42{left:261.757500px;}
.x9{left:269.914500px;}
.xd{left:271.303500px;}
.x48{left:279.238500px;}
.xb{left:281.479500px;}
.xf{left:294.915000px;}
.x4a{left:303.415500px;}
.x10{left:320.868000px;}
.x11{left:331.167000px;}
.x29{left:335.809500px;}
.x2a{left:339.027000px;}
.x3c{left:343.393500px;}
.x43{left:348.969000px;}
.x12{left:350.781000px;}
.x19{left:354.430500px;}
.x1d{left:355.459500px;}
.xe{left:378.102000px;}
.x4b{left:384.162000px;}
.x1a{left:395.380500px;}
.x13{left:406.183500px;}
.x3f{left:423.022500px;}
.x2b{left:425.056500px;}
.x2c{left:426.238500px;}
.x37{left:430.026000px;}
.x14{left:432.853500px;}
.x44{left:436.182000px;}
.x3{left:454.959000px;}
.x15{left:469.827000px;}
.x1e{left:476.824500px;}
.x16{left:489.441000px;}
.x1f{left:504.832500px;}
.x2d{left:510.235500px;}
.x2e{left:513.451500px;}
.x38{left:517.819500px;}
.x45{left:523.395000px;}
.x4e{left:527.440500px;}
.x2f{left:597.448500px;}
.x30{left:600.664500px;}
.x20{left:603.736500px;}
.x39{left:605.031000px;}
.x46{left:610.606500px;}
.x17{left:623.604000px;}
.x1b{left:650.050500px;}
.x4c{left:658.069500px;}
.x3a{left:684.660000px;}
.x31{left:686.695500px;}
.x32{left:687.877500px;}
.x3d{left:692.244000px;}
.x18{left:693.960000px;}
.x1c{left:698.712000px;}
.x49{left:747.816000px;}
.x4d{left:753.606000px;}
.x33{left:771.873000px;}
.x34{left:775.089000px;}
.x3e{left:779.457000px;}
.x47{left:785.032500px;}
.x21{left:811.179000px;}
.x22{left:828.388500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v4{vertical-align:-9.706667pt;}
.v6{vertical-align:-6.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:29.221333pt;}
.v7{vertical-align:37.194667pt;}
.v5{vertical-align:44.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000503pt;}
.ls39{letter-spacing:0.000539pt;}
.ls3b{letter-spacing:0.000711pt;}
.ls38{letter-spacing:0.001026pt;}
.ls5{letter-spacing:0.001154pt;}
.ls3c{letter-spacing:0.001630pt;}
.ls4{letter-spacing:0.008376pt;}
.ls25{letter-spacing:0.328933pt;}
.ls2a{letter-spacing:0.334267pt;}
.ls28{letter-spacing:0.442457pt;}
.ls26{letter-spacing:0.447791pt;}
.ls29{letter-spacing:0.462531pt;}
.ls27{letter-spacing:0.467865pt;}
.lsf{letter-spacing:0.501867pt;}
.ls1b{letter-spacing:0.507200pt;}
.ls31{letter-spacing:0.509060pt;}
.ls32{letter-spacing:0.514393pt;}
.ls24{letter-spacing:0.518393pt;}
.ls33{letter-spacing:0.576078pt;}
.ls16{letter-spacing:0.659733pt;}
.ls12{letter-spacing:0.662778pt;}
.ls13{letter-spacing:0.665067pt;}
.ls15{letter-spacing:0.668111pt;}
.ls1a{letter-spacing:0.784508pt;}
.lse{letter-spacing:0.789841pt;}
.ls1e{letter-spacing:0.884237pt;}
.ls17{letter-spacing:1.262881pt;}
.ls18{letter-spacing:2.632429pt;}
.ls34{letter-spacing:10.408985pt;}
.ls2d{letter-spacing:10.540051pt;}
.ls2f{letter-spacing:10.543515pt;}
.ls2e{letter-spacing:10.545342pt;}
.ls7{letter-spacing:10.626533pt;}
.ls35{letter-spacing:10.629067pt;}
.ls2b{letter-spacing:10.683878pt;}
.ls23{letter-spacing:11.317514pt;}
.ls1d{letter-spacing:11.635096pt;}
.ls36{letter-spacing:11.956898pt;}
.ls3a{letter-spacing:12.126517pt;}
.ls6{letter-spacing:12.645860pt;}
.ls14{letter-spacing:12.963096pt;}
.ls30{letter-spacing:13.124065pt;}
.ls3{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.283467pt;}
.lsa{letter-spacing:13.389734pt;}
.lsd{letter-spacing:13.442868pt;}
.ls1c{letter-spacing:14.152838pt;}
.ls19{letter-spacing:14.291096pt;}
.ls3d{letter-spacing:14.629709pt;}
.lsb{letter-spacing:15.515089pt;}
.ls9{letter-spacing:16.312097pt;}
.ls8{letter-spacing:16.365231pt;}
.ls22{letter-spacing:16.446172pt;}
.ls21{letter-spacing:17.378422pt;}
.ls11{letter-spacing:17.389762pt;}
.ls20{letter-spacing:17.751452pt;}
.ls10{letter-spacing:18.584838pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.ls1f{letter-spacing:76.883505pt;}
.ls2c{letter-spacing:208.331878pt;}
.ws39{word-spacing:-13.283467pt;}
.wsc1{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.wsb{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws8a{word-spacing:-4.622646pt;}
.ws89{word-spacing:-3.134898pt;}
.ws85{word-spacing:-2.922363pt;}
.ws84{word-spacing:-2.762961pt;}
.ws80{word-spacing:-2.656693pt;}
.ws4f{word-spacing:-2.603559pt;}
.ws4d{word-spacing:-2.550426pt;}
.ws8e{word-spacing:-2.337890pt;}
.ws82{word-spacing:-2.284756pt;}
.ws2a{word-spacing:-2.231622pt;}
.ws65{word-spacing:-2.072221pt;}
.ws90{word-spacing:-1.965953pt;}
.ws127{word-spacing:-1.960653pt;}
.ws126{word-spacing:-1.912832pt;}
.ws91{word-spacing:-1.912819pt;}
.ws5e{word-spacing:-1.859685pt;}
.ws40{word-spacing:-1.806551pt;}
.ws2b{word-spacing:-1.753418pt;}
.wsb8{word-spacing:-1.673728pt;}
.wsb2{word-spacing:-1.647150pt;}
.wsb6{word-spacing:-1.625907pt;}
.ws64{word-spacing:-1.594016pt;}
.wsb5{word-spacing:-1.578086pt;}
.ws3f{word-spacing:-1.540882pt;}
.wsb7{word-spacing:-1.482445pt;}
.ws63{word-spacing:-1.381481pt;}
.wsf5{word-spacing:-1.338982pt;}
.ws58{word-spacing:-1.328347pt;}
.ws1f{word-spacing:-1.275213pt;}
.ws66{word-spacing:-1.168945pt;}
.ws22{word-spacing:-1.115811pt;}
.ws7b{word-spacing:-1.062677pt;}
.ws57{word-spacing:-1.009543pt;}
.wsb4{word-spacing:-0.960138pt;}
.ws59{word-spacing:-0.956410pt;}
.ws117{word-spacing:-0.908595pt;}
.wsa8{word-spacing:-0.850142pt;}
.ws56{word-spacing:-0.797008pt;}
.ws83{word-spacing:-0.743874pt;}
.wsbb{word-spacing:-0.717312pt;}
.ws35{word-spacing:-0.690740pt;}
.wsff{word-spacing:-0.621670pt;}
.wsfe{word-spacing:-0.573850pt;}
.ws4c{word-spacing:-0.531339pt;}
.ws12f{word-spacing:-0.526029pt;}
.ws4b{word-spacing:-0.478205pt;}
.wse7{word-spacing:-0.467579pt;}
.ws112{word-spacing:-0.430387pt;}
.ws101{word-spacing:-0.382566pt;}
.ws45{word-spacing:-0.371937pt;}
.wsba{word-spacing:-0.334746pt;}
.ws4a{word-spacing:-0.318803pt;}
.wsf2{word-spacing:-0.286925pt;}
.ws20{word-spacing:-0.265669pt;}
.wsc3{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws10f{word-spacing:-0.191283pt;}
.ws9a{word-spacing:-0.185968pt;}
.ws21{word-spacing:-0.159402pt;}
.ws116{word-spacing:-0.156720pt;}
.wsbd{word-spacing:-0.143462pt;}
.wse8{word-spacing:-0.127522pt;}
.ws17{word-spacing:-0.106268pt;}
.wsbc{word-spacing:-0.095642pt;}
.ws121{word-spacing:-0.088372pt;}
.wsa3{word-spacing:-0.085014pt;}
.ws18{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.047821pt;}
.ws11c{word-spacing:-0.011068pt;}
.wsf8{word-spacing:-0.010351pt;}
.ws130{word-spacing:-0.010180pt;}
.ws133{word-spacing:-0.009148pt;}
.wseb{word-spacing:-0.008269pt;}
.ws12b{word-spacing:-0.007603pt;}
.ws115{word-spacing:-0.007040pt;}
.ws114{word-spacing:-0.006554pt;}
.wsed{word-spacing:-0.005769pt;}
.wsf6{word-spacing:-0.005308pt;}
.ws2{word-spacing:-0.004772pt;}
.ws123{word-spacing:-0.004275pt;}
.ws100{word-spacing:-0.003465pt;}
.ws131{word-spacing:-0.002935pt;}
.ws109{word-spacing:-0.002739pt;}
.ws12c{word-spacing:-0.001929pt;}
.ws11e{word-spacing:-0.001638pt;}
.wse9{word-spacing:-0.001402pt;}
.wsef{word-spacing:-0.001357pt;}
.wsf1{word-spacing:-0.001126pt;}
.ws26{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.wsda{word-spacing:0.042507pt;}
.wsd{word-spacing:0.047821pt;}
.ws16{word-spacing:0.053134pt;}
.wsa2{word-spacing:0.085014pt;}
.ws103{word-spacing:0.086945pt;}
.ws11{word-spacing:0.095642pt;}
.ws23{word-spacing:0.106268pt;}
.wsa0{word-spacing:0.127522pt;}
.wsc0{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws9d{word-spacing:0.170029pt;}
.ws13{word-spacing:0.191283pt;}
.ws33{word-spacing:0.212535pt;}
.wsc2{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.ws110{word-spacing:0.286925pt;}
.ws34{word-spacing:0.318803pt;}
.ws11a{word-spacing:0.334746pt;}
.ws44{word-spacing:0.371937pt;}
.ws28{word-spacing:0.425071pt;}
.wse6{word-spacing:0.467579pt;}
.ws6f{word-spacing:0.478205pt;}
.wsa1{word-spacing:0.510086pt;}
.ws6d{word-spacing:0.531339pt;}
.ws3d{word-spacing:0.584473pt;}
.wsd9{word-spacing:0.680115pt;}
.ws72{word-spacing:0.690740pt;}
.wsfb{word-spacing:0.717312pt;}
.ws32{word-spacing:0.743874pt;}
.ws11f{word-spacing:0.765133pt;}
.wsb0{word-spacing:0.797008pt;}
.wsb3{word-spacing:0.850142pt;}
.ws68{word-spacing:0.903276pt;}
.wsf9{word-spacing:0.956416pt;}
.wsd8{word-spacing:0.977666pt;}
.ws10{word-spacing:1.052058pt;}
.ws38{word-spacing:1.062677pt;}
.ws7e{word-spacing:1.115811pt;}
.ws119{word-spacing:1.147699pt;}
.wsb1{word-spacing:1.168945pt;}
.ws79{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws132{word-spacing:1.243341pt;}
.ws5d{word-spacing:1.275213pt;}
.wsee{word-spacing:1.291162pt;}
.ws1d{word-spacing:1.328347pt;}
.ws36{word-spacing:1.381481pt;}
.wse5{word-spacing:1.402738pt;}
.ws42{word-spacing:1.434614pt;}
.ws10d{word-spacing:1.434624pt;}
.ws8d{word-spacing:1.487748pt;}
.ws70{word-spacing:1.540882pt;}
.ws7a{word-spacing:1.594016pt;}
.ws47{word-spacing:1.647150pt;}
.ws71{word-spacing:1.700284pt;}
.wsdb{word-spacing:1.700288pt;}
.ws11d{word-spacing:1.769370pt;}
.ws86{word-spacing:1.806551pt;}
.ws77{word-spacing:1.859685pt;}
.ws2d{word-spacing:1.912819pt;}
.ws125{word-spacing:1.960653pt;}
.ws2e{word-spacing:1.965953pt;}
.ws37{word-spacing:2.019087pt;}
.ws5f{word-spacing:2.125355pt;}
.ws129{word-spacing:2.151936pt;}
.ws46{word-spacing:2.178489pt;}
.ws1{word-spacing:2.257651pt;}
.ws19{word-spacing:2.284756pt;}
.wsf3{word-spacing:2.295398pt;}
.ws5a{word-spacing:2.337890pt;}
.ws134{word-spacing:2.343219pt;}
.ws43{word-spacing:2.444158pt;}
.ws106{word-spacing:2.486682pt;}
.ws1c{word-spacing:2.497292pt;}
.ws122{word-spacing:2.582323pt;}
.ws118{word-spacing:2.630144pt;}
.ws61{word-spacing:2.656693pt;}
.ws7f{word-spacing:2.709827pt;}
.wsea{word-spacing:2.725786pt;}
.ws6e{word-spacing:2.762961pt;}
.ws10c{word-spacing:2.773606pt;}
.ws14{word-spacing:2.861926pt;}
.ws120{word-spacing:2.862319pt;}
.ws102{word-spacing:2.863377pt;}
.ws107{word-spacing:2.864683pt;}
.ws108{word-spacing:2.864708pt;}
.wsf0{word-spacing:2.866091pt;}
.ws113{word-spacing:2.866475pt;}
.ws128{word-spacing:2.867029pt;}
.ws78{word-spacing:2.869229pt;}
.wsec{word-spacing:2.869248pt;}
.ws11b{word-spacing:2.870579pt;}
.wsb9{word-spacing:2.876414pt;}
.wsc{word-spacing:2.943581pt;}
.wsfd{word-spacing:2.964890pt;}
.ws1a{word-spacing:2.975497pt;}
.ws124{word-spacing:3.012710pt;}
.ws50{word-spacing:3.028630pt;}
.ws104{word-spacing:3.060531pt;}
.ws5b{word-spacing:3.081764pt;}
.ws105{word-spacing:3.108352pt;}
.ws7d{word-spacing:3.134898pt;}
.ws15{word-spacing:3.188032pt;}
.wse{word-spacing:3.203994pt;}
.wsa6{word-spacing:3.241166pt;}
.ws12e{word-spacing:3.251814pt;}
.ws5c{word-spacing:3.294300pt;}
.ws81{word-spacing:3.400567pt;}
.ws9f{word-spacing:3.443083pt;}
.ws10a{word-spacing:3.443098pt;}
.ws8f{word-spacing:3.506835pt;}
.ws87{word-spacing:3.554788pt;}
.wsab{word-spacing:3.559969pt;}
.ws88{word-spacing:3.560122pt;}
.ws29{word-spacing:3.613103pt;}
.wsaa{word-spacing:3.666237pt;}
.wsad{word-spacing:3.719371pt;}
.ws6a{word-spacing:3.772505pt;}
.wsf7{word-spacing:3.777843pt;}
.ws73{word-spacing:3.825638pt;}
.wsfa{word-spacing:3.921306pt;}
.ws41{word-spacing:3.931906pt;}
.wsf{word-spacing:4.064768pt;}
.ws12d{word-spacing:4.112589pt;}
.ws6b{word-spacing:4.144442pt;}
.ws3e{word-spacing:4.197575pt;}
.ws55{word-spacing:4.250709pt;}
.ws76{word-spacing:4.356977pt;}
.ws51{word-spacing:4.410111pt;}
.wsfc{word-spacing:4.447334pt;}
.ws2f{word-spacing:4.569513pt;}
.wsac{word-spacing:4.622646pt;}
.ws75{word-spacing:4.675780pt;}
.ws60{word-spacing:4.728914pt;}
.wsa4{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.wsaf{word-spacing:4.888316pt;}
.ws2c{word-spacing:4.941450pt;}
.ws49{word-spacing:5.153985pt;}
.ws52{word-spacing:5.207119pt;}
.ws62{word-spacing:5.260253pt;}
.wsa9{word-spacing:5.313387pt;}
.ws1b{word-spacing:5.419654pt;}
.ws30{word-spacing:5.525922pt;}
.ws8c{word-spacing:5.844725pt;}
.ws54{word-spacing:5.950993pt;}
.ws9e{word-spacing:5.993515pt;}
.wsa7{word-spacing:6.110395pt;}
.ws48{word-spacing:6.163529pt;}
.ws31{word-spacing:6.269796pt;}
.ws111{word-spacing:6.312346pt;}
.ws74{word-spacing:6.376064pt;}
.ws67{word-spacing:6.429198pt;}
.ws3a{word-spacing:6.535466pt;}
.ws4e{word-spacing:6.694867pt;}
.wsa5{word-spacing:6.748001pt;}
.ws3b{word-spacing:7.332474pt;}
.wsae{word-spacing:7.385607pt;}
.ws7c{word-spacing:7.438741pt;}
.ws10e{word-spacing:7.507866pt;}
.ws8b{word-spacing:8.288883pt;}
.ws6{word-spacing:8.740496pt;}
.ws3c{word-spacing:9.192159pt;}
.ws10b{word-spacing:9.898906pt;}
.wsf4{word-spacing:10.185830pt;}
.ws7{word-spacing:10.525789pt;}
.ws6c{word-spacing:10.573639pt;}
.ws12a{word-spacing:10.759680pt;}
.ws69{word-spacing:12.539593pt;}
.ws3{word-spacing:13.761632pt;}
.ws9{word-spacing:14.282342pt;}
.ws53{word-spacing:19.181326pt;}
.ws5{word-spacing:19.857270pt;}
.wsc6{word-spacing:89.477656pt;}
.wsc5{word-spacing:113.536731pt;}
.wsd0{word-spacing:117.212283pt;}
.wsd5{word-spacing:118.649333pt;}
.ws92{word-spacing:123.110816pt;}
.wsd6{word-spacing:126.246384pt;}
.wsd4{word-spacing:128.249333pt;}
.wscf{word-spacing:136.399484pt;}
.wsbe{word-spacing:137.771725pt;}
.wsc9{word-spacing:145.459638pt;}
.wsca{word-spacing:153.394153pt;}
.wscc{word-spacing:153.621021pt;}
.wsd3{word-spacing:159.090118pt;}
.wsd1{word-spacing:164.672893pt;}
.ws99{word-spacing:164.902531pt;}
.wsc4{word-spacing:168.929906pt;}
.wsc8{word-spacing:169.971961pt;}
.wsbf{word-spacing:171.495569pt;}
.ws9b{word-spacing:177.692641pt;}
.ws95{word-spacing:180.431729pt;}
.ws96{word-spacing:180.437062pt;}
.wsd7{word-spacing:185.501421pt;}
.ws97{word-spacing:187.669062pt;}
.ws98{word-spacing:189.803865pt;}
.ws93{word-spacing:190.731865pt;}
.wsce{word-spacing:200.662159pt;}
.ws94{word-spacing:205.333062pt;}
.wsd2{word-spacing:212.663522pt;}
.wscb{word-spacing:214.859564pt;}
.ws9c{word-spacing:244.994243pt;}
.wsc7{word-spacing:246.272969pt;}
.wscd{word-spacing:262.765763pt;}
.wse1{word-spacing:505.690667pt;}
.wse2{word-spacing:525.652966pt;}
.wsde{word-spacing:670.609749pt;}
.wsdd{word-spacing:677.881711pt;}
.wse4{word-spacing:690.359740pt;}
.wsdf{word-spacing:731.058441pt;}
.wse3{word-spacing:731.485628pt;}
.wsdc{word-spacing:757.930530pt;}
.wse0{word-spacing:814.336794pt;}
._48{margin-left:-21.535019pt;}
._49{margin-left:-17.460466pt;}
._1c{margin-left:-7.571580pt;}
._10{margin-left:-5.850143pt;}
._9{margin-left:-4.718299pt;}
._8{margin-left:-3.719371pt;}
._0{margin-left:-2.752326pt;}
._4{margin-left:-1.301776pt;}
._1f{width:1.573309pt;}
._6{width:2.663596pt;}
._15{width:3.825638pt;}
._20{width:4.999636pt;}
._43{width:9.904178pt;}
._1{width:11.530016pt;}
._11{width:13.175632pt;}
._a{width:14.250598pt;}
._d{width:15.313270pt;}
._b{width:16.317507pt;}
._19{width:17.215373pt;}
._14{width:18.310031pt;}
._16{width:19.473360pt;}
._17{width:20.376834pt;}
._1a{width:21.359814pt;}
._2{width:22.502128pt;}
._e{width:23.803972pt;}
._1e{width:25.185453pt;}
._c{width:26.636186pt;}
._3{width:27.783619pt;}
._5{width:29.648896pt;}
._1b{width:30.918493pt;}
._1d{width:32.438428pt;}
._f{width:33.554033pt;}
._18{width:35.174620pt;}
._29{width:39.558160pt;}
._7{width:61.631626pt;}
._2e{width:121.443070pt;}
._2d{width:133.642637pt;}
._25{width:135.816382pt;}
._34{width:136.830677pt;}
._3d{width:143.716843pt;}
._33{width:145.034566pt;}
._22{width:153.088858pt;}
._32{width:154.598686pt;}
._30{width:156.086438pt;}
._3b{width:163.185141pt;}
._2f{width:164.247821pt;}
._3a{width:170.241336pt;}
._31{width:173.854448pt;}
._35{width:175.816437pt;}
._40{width:176.914966pt;}
._24{width:177.859795pt;}
._26{width:183.797465pt;}
._27{width:184.725465pt;}
._3f{width:186.479086pt;}
._37{width:193.025195pt;}
._23{width:198.502243pt;}
._3e{width:205.692341pt;}
._3c{width:208.201866pt;}
._41{width:224.948102pt;}
._39{width:232.429370pt;}
._38{width:241.015824pt;}
._36{width:270.770864pt;}
._42{width:272.896224pt;}
._45{width:471.809126pt;}
._2b{width:481.157261pt;}
._46{width:483.766460pt;}
._44{width:485.715866pt;}
._21{width:582.265808pt;}
._12{width:643.431486pt;}
._47{width:792.916685pt;}
._2c{width:1017.223038pt;}
._2a{width:1825.208231pt;}
._28{width:2222.978667pt;}
._13{width:2244.232000pt;}
.fs6{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:38.755733pt;}
.fsa{font-size:40.381867pt;}
.fsc{font-size:42.507200pt;}
.fs10{font-size:44.292800pt;}
.fsd{font-size:47.820800pt;}
.fs11{font-size:49.829333pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.fs7{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:14.848190pt;}
.y67{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y38{bottom:93.018667pt;}
.y66{bottom:94.949333pt;}
.y12a{bottom:95.077333pt;}
.y157{bottom:97.904000pt;}
.y104{bottom:98.072000pt;}
.y16a{bottom:98.337333pt;}
.ye9{bottom:98.430667pt;}
.y224{bottom:103.518667pt;}
.y9d{bottom:105.909333pt;}
.yce{bottom:106.308000pt;}
.y37{bottom:108.920000pt;}
.y65{bottom:111.686667pt;}
.y129{bottom:111.814667pt;}
.y156{bottom:114.641333pt;}
.y103{bottom:114.809333pt;}
.y169{bottom:115.074667pt;}
.ye8{bottom:115.168000pt;}
.y1ed{bottom:116.173333pt;}
.y223{bottom:118.861333pt;}
.y9c{bottom:122.646667pt;}
.ycd{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y36{bottom:124.820000pt;}
.y64{bottom:128.424000pt;}
.y128{bottom:128.552000pt;}
.y1ec{bottom:131.514667pt;}
.y102{bottom:131.546667pt;}
.y168{bottom:131.812000pt;}
.ye7{bottom:131.905333pt;}
.y222{bottom:134.202667pt;}
.y9b{bottom:139.384000pt;}
.ycc{bottom:139.782667pt;}
.y35{bottom:140.720000pt;}
.y1b4{bottom:144.985333pt;}
.y63{bottom:145.161333pt;}
.y127{bottom:145.289333pt;}
.y1eb{bottom:146.857333pt;}
.y101{bottom:148.284000pt;}
.y167{bottom:148.549333pt;}
.ye6{bottom:148.642667pt;}
.y221{bottom:149.545333pt;}
.y155{bottom:150.316000pt;}
.y9a{bottom:156.121333pt;}
.ycb{bottom:156.520000pt;}
.y34{bottom:156.621333pt;}
.y1b3{bottom:157.604000pt;}
.y62{bottom:161.898667pt;}
.y126{bottom:162.026667pt;}
.y1ea{bottom:162.200000pt;}
.y154{bottom:162.934667pt;}
.y220{bottom:164.888000pt;}
.y100{bottom:165.021333pt;}
.y166{bottom:165.286667pt;}
.ye5{bottom:165.380000pt;}
.y1b2{bottom:170.224000pt;}
.y33{bottom:172.521333pt;}
.y99{bottom:172.858667pt;}
.yca{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y153{bottom:175.554667pt;}
.y1e9{bottom:177.542667pt;}
.y61{bottom:178.636000pt;}
.y125{bottom:178.764000pt;}
.y21f{bottom:180.230667pt;}
.yff{bottom:181.758667pt;}
.y165{bottom:182.024000pt;}
.ye4{bottom:182.117333pt;}
.y1b1{bottom:182.842667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y152{bottom:188.173333pt;}
.y32{bottom:188.421333pt;}
.y98{bottom:189.596000pt;}
.yc9{bottom:189.994667pt;}
.y179{bottom:191.269333pt;}
.y1e8{bottom:192.885333pt;}
.y60{bottom:195.373333pt;}
.y1b0{bottom:195.462667pt;}
.y124{bottom:195.500000pt;}
.y21e{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yfe{bottom:198.496000pt;}
.y164{bottom:198.761333pt;}
.ye3{bottom:198.854667pt;}
.y151{bottom:200.793333pt;}
.y31{bottom:204.322667pt;}
.y97{bottom:206.333333pt;}
.yc8{bottom:206.732000pt;}
.y178{bottom:206.890667pt;}
.y1af{bottom:208.081333pt;}
.y1e7{bottom:208.228000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y21d{bottom:210.916000pt;}
.y5f{bottom:212.110667pt;}
.y123{bottom:212.237333pt;}
.y150{bottom:213.412000pt;}
.yfd{bottom:215.233333pt;}
.y163{bottom:215.498667pt;}
.ye2{bottom:215.592000pt;}
.y1ae{bottom:220.701333pt;}
.y177{bottom:222.513333pt;}
.y96{bottom:223.070667pt;}
.yc7{bottom:223.469333pt;}
.y1e6{bottom:223.570667pt;}
.y14f{bottom:226.032000pt;}
.y21c{bottom:226.258667pt;}
.y5e{bottom:228.848000pt;}
.y122{bottom:228.974667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yfc{bottom:231.970667pt;}
.y162{bottom:232.236000pt;}
.ye1{bottom:232.329333pt;}
.y1ad{bottom:233.320000pt;}
.y14e{bottom:238.650667pt;}
.y1e5{bottom:238.913333pt;}
.y95{bottom:239.808000pt;}
.yc6{bottom:240.206667pt;}
.y21b{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y5d{bottom:245.585333pt;}
.y121{bottom:245.712000pt;}
.y176{bottom:246.104000pt;}
.yfb{bottom:248.708000pt;}
.y161{bottom:248.973333pt;}
.ye0{bottom:249.066667pt;}
.y14d{bottom:251.270667pt;}
.y1ac{bottom:252.129333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1e4{bottom:254.256000pt;}
.y94{bottom:256.545333pt;}
.yc5{bottom:256.944000pt;}
.y175{bottom:261.725333pt;}
.y5c{bottom:262.322667pt;}
.y120{bottom:262.449333pt;}
.y14c{bottom:263.889333pt;}
.y30{bottom:264.148000pt;}
.y1ab{bottom:264.748000pt;}
.yfa{bottom:265.445333pt;}
.y160{bottom:265.710667pt;}
.ydf{bottom:265.804000pt;}
.y1e3{bottom:269.597333pt;}
.y21a{bottom:272.285333pt;}
.y93{bottom:273.282667pt;}
.yc4{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y14b{bottom:276.509333pt;}
.y1aa{bottom:277.368000pt;}
.y5b{bottom:279.058667pt;}
.y11f{bottom:279.186667pt;}
.y2f{bottom:280.048000pt;}
.yf9{bottom:282.182667pt;}
.y15f{bottom:282.448000pt;}
.yde{bottom:282.541333pt;}
.y1e2{bottom:284.940000pt;}
.y174{bottom:285.317333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y219{bottom:287.628000pt;}
.y1a9{bottom:289.986667pt;}
.y92{bottom:290.020000pt;}
.yc3{bottom:290.417333pt;}
.y14a{bottom:294.321333pt;}
.y5a{bottom:295.796000pt;}
.y11e{bottom:295.924000pt;}
.y2e{bottom:295.948000pt;}
.yf8{bottom:298.920000pt;}
.y15e{bottom:299.185333pt;}
.ydd{bottom:299.278667pt;}
.y1e1{bottom:300.282667pt;}
.y1a8{bottom:302.606667pt;}
.y218{bottom:302.970667pt;}
.y149{bottom:303.620000pt;}
.y91{bottom:306.757333pt;}
.yc2{bottom:307.154667pt;}
.y173{bottom:308.909333pt;}
.yf{bottom:309.452000pt;}
.y2d{bottom:311.849333pt;}
.y59{bottom:312.533333pt;}
.y11d{bottom:312.661333pt;}
.y148{bottom:313.136000pt;}
.y1a7{bottom:315.225333pt;}
.y1e0{bottom:315.625333pt;}
.yf7{bottom:315.657333pt;}
.y15d{bottom:315.922667pt;}
.ydc{bottom:316.016000pt;}
.y217{bottom:318.313333pt;}
.y147{bottom:322.653333pt;}
.y90{bottom:323.494667pt;}
.yc1{bottom:323.892000pt;}
.y172{bottom:324.530667pt;}
.y1a6{bottom:327.845333pt;}
.y58{bottom:329.270667pt;}
.y11c{bottom:329.398667pt;}
.y1df{bottom:330.968000pt;}
.y146{bottom:331.952000pt;}
.yf6{bottom:332.394667pt;}
.y15c{bottom:332.660000pt;}
.ydb{bottom:332.753333pt;}
.y216{bottom:333.656000pt;}
.y2c{bottom:335.696000pt;}
.y2b{bottom:337.048000pt;}
.y171{bottom:340.152000pt;}
.y8f{bottom:340.232000pt;}
.y1a5{bottom:340.464000pt;}
.yc0{bottom:340.629333pt;}
.y145{bottom:341.250667pt;}
.ye{bottom:343.809333pt;}
.y57{bottom:346.008000pt;}
.y11b{bottom:346.136000pt;}
.y1de{bottom:346.310667pt;}
.y215{bottom:348.998667pt;}
.yf5{bottom:349.132000pt;}
.yda{bottom:349.490667pt;}
.y144{bottom:350.549333pt;}
.y2a{bottom:352.948000pt;}
.y1a4{bottom:353.084000pt;}
.y15b{bottom:353.382667pt;}
.y8e{bottom:356.968000pt;}
.ybf{bottom:357.366667pt;}
.y143{bottom:360.065333pt;}
.y1dd{bottom:361.653333pt;}
.yd{bottom:362.706666pt;}
.y56{bottom:362.745333pt;}
.y11a{bottom:362.873333pt;}
.y170{bottom:363.742667pt;}
.y214{bottom:364.341333pt;}
.y141{bottom:364.694667pt;}
.y1a3{bottom:365.702667pt;}
.yf4{bottom:365.868000pt;}
.yd9{bottom:366.226667pt;}
.y142{bottom:369.364000pt;}
.y15a{bottom:370.118667pt;}
.y8d{bottom:373.705333pt;}
.ybe{bottom:374.104000pt;}
.y29{bottom:376.818667pt;}
.y1dc{bottom:376.996000pt;}
.y1a2{bottom:378.322667pt;}
.y140{bottom:378.662667pt;}
.y16f{bottom:379.365333pt;}
.y55{bottom:379.482667pt;}
.y119{bottom:379.610667pt;}
.y213{bottom:379.684000pt;}
.yf3{bottom:382.605333pt;}
.yd8{bottom:382.964000pt;}
.y13e{bottom:383.182667pt;}
.y159{bottom:386.856000pt;}
.y13f{bottom:387.961333pt;}
.y8c{bottom:390.442667pt;}
.ybd{bottom:390.841333pt;}
.y1a1{bottom:390.941333pt;}
.y1db{bottom:392.337333pt;}
.y28{bottom:392.720000pt;}
.y16e{bottom:394.986667pt;}
.y212{bottom:395.025333pt;}
.y54{bottom:396.220000pt;}
.y118{bottom:396.348000pt;}
.y13c{bottom:397.260000pt;}
.yf2{bottom:399.342667pt;}
.yd7{bottom:399.701333pt;}
.y13b{bottom:401.778667pt;}
.y1a0{bottom:403.561333pt;}
.y158{bottom:403.593333pt;}
.y13d{bottom:406.558667pt;}
.y8b{bottom:407.180000pt;}
.ybc{bottom:407.578667pt;}
.y1da{bottom:407.680000pt;}
.y27{bottom:408.620000pt;}
.y211{bottom:410.368000pt;}
.y16d{bottom:410.608000pt;}
.y53{bottom:412.957333pt;}
.y117{bottom:413.085333pt;}
.y138{bottom:415.857333pt;}
.yf1{bottom:416.080000pt;}
.y19f{bottom:416.180000pt;}
.yd6{bottom:416.438667pt;}
.y13a{bottom:416.661333pt;}
.y1d9{bottom:423.022667pt;}
.y8a{bottom:423.917333pt;}
.ybb{bottom:424.316000pt;}
.y26{bottom:424.520000pt;}
.y210{bottom:425.710667pt;}
.y139{bottom:425.960000pt;}
.y16c{bottom:426.229333pt;}
.y137{bottom:426.504000pt;}
.y19e{bottom:428.800000pt;}
.y116{bottom:429.822667pt;}
.yf0{bottom:432.817333pt;}
.yd5{bottom:433.176000pt;}
.y52{bottom:433.680000pt;}
.y136{bottom:436.062667pt;}
.y1d8{bottom:438.365333pt;}
.y25{bottom:440.421333pt;}
.y134{bottom:440.582667pt;}
.y89{bottom:440.654667pt;}
.yba{bottom:441.053333pt;}
.y135{bottom:445.361333pt;}
.yc{bottom:446.990669pt;}
.y19d{bottom:447.821333pt;}
.yef{bottom:449.554667pt;}
.yd4{bottom:449.913333pt;}
.y115{bottom:450.545333pt;}
.y1d7{bottom:453.708000pt;}
.y133{bottom:454.660000pt;}
.y24{bottom:456.321333pt;}
.y20f{bottom:456.396000pt;}
.y88{bottom:457.392000pt;}
.yb9{bottom:457.790667pt;}
.y131{bottom:459.178667pt;}
.yb{bottom:462.990669pt;}
.y132{bottom:463.958667pt;}
.yee{bottom:466.292000pt;}
.yd3{bottom:466.650667pt;}
.y1d6{bottom:469.050667pt;}
.y20e{bottom:471.738667pt;}
.y23{bottom:472.221333pt;}
.y130{bottom:473.257333pt;}
.yb6{bottom:474.129333pt;}
.yb8{bottom:474.528000pt;}
.y19c{bottom:477.189333pt;}
.y87{bottom:478.114667pt;}
.ya{bottom:478.990666pt;}
.y114{bottom:480.433333pt;}
.yed{bottom:483.029333pt;}
.yd2{bottom:483.388000pt;}
.y12f{bottom:483.934667pt;}
.y1d5{bottom:484.393333pt;}
.y20d{bottom:487.081333pt;}
.y22{bottom:488.122667pt;}
.yb5{bottom:490.866667pt;}
.yb7{bottom:491.265333pt;}
.y9{bottom:494.990666pt;}
.y113{bottom:497.170667pt;}
.y12e{bottom:499.634667pt;}
.y1d4{bottom:499.736000pt;}
.y51{bottom:499.762667pt;}
.yd1{bottom:500.125333pt;}
.y20c{bottom:502.424000pt;}
.yec{bottom:503.752000pt;}
.yb4{bottom:507.604000pt;}
.y86{bottom:508.002667pt;}
.y112{bottom:513.908000pt;}
.y1d3{bottom:515.078667pt;}
.y12d{bottom:515.545333pt;}
.y19b{bottom:516.814667pt;}
.y20b{bottom:517.766667pt;}
.yd0{bottom:520.848000pt;}
.yeb{bottom:521.685333pt;}
.y199{bottom:524.120000pt;}
.yb3{bottom:524.341333pt;}
.y85{bottom:524.740000pt;}
.y1d2{bottom:530.420000pt;}
.y111{bottom:530.645333pt;}
.y19a{bottom:531.426667pt;}
.y12c{bottom:531.454667pt;}
.y50{bottom:532.998667pt;}
.y20a{bottom:533.108000pt;}
.yb2{bottom:541.078667pt;}
.y84{bottom:541.477333pt;}
.y1d1{bottom:545.762667pt;}
.y198{bottom:546.038667pt;}
.y110{bottom:547.382667pt;}
.y209{bottom:548.450667pt;}
.ycf{bottom:551.573333pt;}
.yb1{bottom:557.816000pt;}
.y83{bottom:558.214667pt;}
.y12b{bottom:558.708000pt;}
.y197{bottom:560.650667pt;}
.y1d0{bottom:561.105333pt;}
.y208{bottom:563.793333pt;}
.y10f{bottom:564.120000pt;}
.y4f{bottom:566.233333pt;}
.y194{bottom:567.956000pt;}
.yea{bottom:568.310667pt;}
.y8{bottom:573.786667pt;}
.yb0{bottom:574.553333pt;}
.y82{bottom:574.952000pt;}
.y196{bottom:575.262667pt;}
.y1cf{bottom:576.448000pt;}
.y16b{bottom:578.538667pt;}
.y207{bottom:579.136000pt;}
.y10e{bottom:580.856000pt;}
.y4e{bottom:583.528000pt;}
.y195{bottom:589.874667pt;}
.yaf{bottom:591.290667pt;}
.y81{bottom:591.689333pt;}
.y1ce{bottom:591.790667pt;}
.y7{bottom:592.685334pt;}
.y206{bottom:594.478667pt;}
.y10d{bottom:597.593333pt;}
.y4d{bottom:600.824000pt;}
.y193{bottom:604.485333pt;}
.y1cd{bottom:607.133333pt;}
.yae{bottom:608.028000pt;}
.y80{bottom:608.426667pt;}
.y205{bottom:609.821333pt;}
.y10c{bottom:614.330667pt;}
.y4c{bottom:618.118667pt;}
.y191{bottom:619.097333pt;}
.y1cc{bottom:622.476000pt;}
.yad{bottom:624.765333pt;}
.y7f{bottom:625.164000pt;}
.y10b{bottom:631.068000pt;}
.y192{bottom:633.709333pt;}
.y4b{bottom:635.414667pt;}
.y1cb{bottom:637.818667pt;}
.y204{bottom:640.506667pt;}
.yac{bottom:641.502667pt;}
.y7e{bottom:641.901333pt;}
.y6{bottom:645.598667pt;}
.y10a{bottom:647.805333pt;}
.y18e{bottom:648.321333pt;}
.y4a{bottom:652.709333pt;}
.y190{bottom:655.628000pt;}
.y203{bottom:655.848000pt;}
.y1ca{bottom:657.145333pt;}
.yab{bottom:658.240000pt;}
.y7d{bottom:658.638667pt;}
.y18c{bottom:662.933333pt;}
.y109{bottom:664.542667pt;}
.y3{bottom:668.977329pt;}
.y49{bottom:670.004000pt;}
.y18f{bottom:670.238667pt;}
.y201{bottom:671.190667pt;}
.y202{bottom:671.376000pt;}
.yaa{bottom:674.977333pt;}
.y7c{bottom:675.376000pt;}
.y18d{bottom:677.545333pt;}
.y108{bottom:681.280000pt;}
.y200{bottom:686.533333pt;}
.y48{bottom:687.300000pt;}
.y1c9{bottom:689.966667pt;}
.ya9{bottom:691.714667pt;}
.y7b{bottom:692.113333pt;}
.y18b{bottom:692.157333pt;}
.y227{bottom:697.825333pt;}
.y1ff{bottom:701.876000pt;}
.y1c8{bottom:702.585333pt;}
.y47{bottom:704.594667pt;}
.y189{bottom:706.769333pt;}
.ya8{bottom:708.452000pt;}
.y7a{bottom:708.850667pt;}
.y107{bottom:711.188000pt;}
.y226{bottom:713.166667pt;}
.y1c7{bottom:715.205333pt;}
.y1fe{bottom:717.218667pt;}
.y18a{bottom:721.381333pt;}
.y46{bottom:721.889333pt;}
.ya7{bottom:725.189333pt;}
.y79{bottom:725.588000pt;}
.y1c6{bottom:727.824000pt;}
.y106{bottom:727.925333pt;}
.y225{bottom:728.509333pt;}
.y1fd{bottom:732.561333pt;}
.y188{bottom:735.993333pt;}
.y1c5{bottom:740.444000pt;}
.ya6{bottom:741.926667pt;}
.y78{bottom:742.324000pt;}
.y1fc{bottom:747.904000pt;}
.y187{bottom:750.604000pt;}
.y1c4{bottom:753.062667pt;}
.y45{bottom:756.188000pt;}
.ya5{bottom:758.664000pt;}
.y77{bottom:759.061333pt;}
.y1fb{bottom:763.246667pt;}
.y184{bottom:765.216000pt;}
.y1c3{bottom:765.682667pt;}
.y44{bottom:770.534667pt;}
.ya4{bottom:775.401333pt;}
.y76{bottom:775.798667pt;}
.y1c2{bottom:778.301333pt;}
.y1fa{bottom:778.589333pt;}
.y105{bottom:779.385333pt;}
.y186{bottom:779.828000pt;}
.y2{bottom:781.661334pt;}
.y43{bottom:788.738667pt;}
.y1c1{bottom:790.921333pt;}
.ya3{bottom:792.138667pt;}
.y75{bottom:792.536000pt;}
.y1f9{bottom:793.930667pt;}
.y185{bottom:794.440000pt;}
.y42{bottom:799.226667pt;}
.y1c0{bottom:807.670667pt;}
.ya2{bottom:808.874667pt;}
.y183{bottom:809.052000pt;}
.y74{bottom:809.273333pt;}
.y41{bottom:817.430667pt;}
.y1bf{bottom:822.282667pt;}
.y181{bottom:823.664000pt;}
.y1f8{bottom:824.616000pt;}
.ya1{bottom:825.612000pt;}
.y73{bottom:826.010667pt;}
.y40{bottom:827.920000pt;}
.y1be{bottom:836.894667pt;}
.y182{bottom:838.276000pt;}
.y1f7{bottom:839.958667pt;}
.ya0{bottom:842.349333pt;}
.y72{bottom:842.748000pt;}
.y3f{bottom:846.122667pt;}
.y1bd{bottom:851.506667pt;}
.y180{bottom:852.888000pt;}
.y1f6{bottom:855.301333pt;}
.y9f{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y71{bottom:859.485333pt;}
.y1bc{bottom:866.118667pt;}
.y17e{bottom:867.500000pt;}
.y1f5{bottom:870.644000pt;}
.y70{bottom:876.222667pt;}
.y9e{bottom:879.809333pt;}
.y1bb{bottom:880.730667pt;}
.y17f{bottom:882.112000pt;}
.y3e{bottom:885.836000pt;}
.y1f4{bottom:885.986667pt;}
.y6f{bottom:892.960000pt;}
.y1ba{bottom:895.342667pt;}
.y17d{bottom:896.722667pt;}
.y1f3{bottom:901.329333pt;}
.y17c{bottom:904.029333pt;}
.y6e{bottom:909.697333pt;}
.y1b9{bottom:909.954667pt;}
.y1f2{bottom:916.670667pt;}
.y3d{bottom:921.320000pt;}
.y1b8{bottom:924.566667pt;}
.y6d{bottom:926.434667pt;}
.y1f1{bottom:932.013333pt;}
.y17b{bottom:932.349333pt;}
.y6c{bottom:943.172000pt;}
.y1b7{bottom:945.580000pt;}
.y3c{bottom:946.425333pt;}
.y1f0{bottom:947.356000pt;}
.y6b{bottom:959.909333pt;}
.y1ef{bottom:962.698667pt;}
.y17a{bottom:963.112000pt;}
.y1b6{bottom:966.594667pt;}
.y3b{bottom:971.530667pt;}
.y6a{bottom:976.646667pt;}
.y1ee{bottom:978.041333pt;}
.y69{bottom:993.384000pt;}
.y1b5{bottom:994.700000pt;}
.y39{bottom:1010.186667pt;}
.y68{bottom:1046.810667pt;}
.hb{height:19.420428pt;}
.h11{height:23.304670pt;}
.h19{height:26.890973pt;}
.h9{height:27.188522pt;}
.ha{height:27.262909pt;}
.h1c{height:27.625855pt;}
.h7{height:28.560000pt;}
.h20{height:30.860227pt;}
.h12{height:31.072763pt;}
.h16{height:31.157778pt;}
.h1d{height:34.574438pt;}
.h13{height:34.957005pt;}
.h21{height:35.052646pt;}
.h14{height:38.415786pt;}
.h15{height:38.840857pt;}
.he{height:38.947124pt;}
.h6{height:40.800000pt;}
.h17{height:41.524400pt;}
.h3{height:42.840000pt;}
.hc{height:45.271688pt;}
.h1b{height:46.308522pt;}
.h10{height:48.481423pt;}
.h2{height:48.960000pt;}
.h1e{height:64.178338pt;}
.h1f{height:64.183671pt;}
.h1a{height:64.383188pt;}
.hf{height:69.148877pt;}
.h5{height:69.360000pt;}
.h18{height:72.419523pt;}
.hd{height:77.447343pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x7{left:51.605861pt;}
.x25{left:55.592000pt;}
.x6{left:74.864000pt;}
.x50{left:75.842667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x52{left:102.074667pt;}
.x51{left:103.348000pt;}
.x24{left:142.728000pt;}
.x40{left:143.988000pt;}
.x26{left:146.312000pt;}
.x35{left:149.678667pt;}
.x3b{left:153.444000pt;}
.x41{left:155.382667pt;}
.x4{left:180.874667pt;}
.x23{left:192.244000pt;}
.xc{left:219.865333pt;}
.xa{left:220.912000pt;}
.x8{left:221.858667pt;}
.x27{left:222.784000pt;}
.x28{left:223.834667pt;}
.x36{left:227.717333pt;}
.x4f{left:229.828000pt;}
.x42{left:232.673333pt;}
.x9{left:239.924000pt;}
.xd{left:241.158667pt;}
.x48{left:248.212000pt;}
.xb{left:250.204000pt;}
.xf{left:262.146667pt;}
.x4a{left:269.702667pt;}
.x10{left:285.216000pt;}
.x11{left:294.370667pt;}
.x29{left:298.497333pt;}
.x2a{left:301.357333pt;}
.x3c{left:305.238667pt;}
.x43{left:310.194667pt;}
.x12{left:311.805333pt;}
.x19{left:315.049333pt;}
.x1d{left:315.964000pt;}
.xe{left:336.090667pt;}
.x4b{left:341.477333pt;}
.x1a{left:351.449333pt;}
.x13{left:361.052000pt;}
.x3f{left:376.020000pt;}
.x2b{left:377.828000pt;}
.x2c{left:378.878667pt;}
.x37{left:382.245333pt;}
.x14{left:384.758667pt;}
.x44{left:387.717333pt;}
.x3{left:404.408000pt;}
.x15{left:417.624000pt;}
.x1e{left:423.844000pt;}
.x16{left:435.058667pt;}
.x1f{left:448.740000pt;}
.x2d{left:453.542667pt;}
.x2e{left:456.401333pt;}
.x38{left:460.284000pt;}
.x45{left:465.240000pt;}
.x4e{left:468.836000pt;}
.x2f{left:531.065333pt;}
.x30{left:533.924000pt;}
.x20{left:536.654667pt;}
.x39{left:537.805333pt;}
.x46{left:542.761333pt;}
.x17{left:554.314667pt;}
.x1b{left:577.822667pt;}
.x4c{left:584.950667pt;}
.x3a{left:608.586667pt;}
.x31{left:610.396000pt;}
.x32{left:611.446667pt;}
.x3d{left:615.328000pt;}
.x18{left:616.853333pt;}
.x1c{left:621.077333pt;}
.x49{left:664.725333pt;}
.x4d{left:669.872000pt;}
.x33{left:686.109333pt;}
.x34{left:688.968000pt;}
.x3e{left:692.850667pt;}
.x47{left:697.806667pt;}
.x21{left:721.048000pt;}
.x22{left:736.345333pt;}
}




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