
    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_9284fe7f34393251da0ee267.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_ee891edbd8f38b9bf45b936a.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_85f6340051dbc7cb05546687.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_59d4323cf7bff95e6b614f5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_e63c60ef8c85e3dbfa02486f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.196000;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_4bc3635f84f0d98f9289ac9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.388000;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_b57afe8bdf4ba03561a88201.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d4a8c8e6c382d896cc8f76c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.724000;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);}
.m16{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.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);}
.m8{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);}
.m1d{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);}
.ma{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);}
.m14{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);}
.m25{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);}
.m11{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);}
.m7{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);}
.mc{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);}
.m1a{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);}
.mf{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);}
.m19{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);}
.m1b{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);}
.m20{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);}
.m13{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);}
.m1c{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);}
.m21{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);}
.m1e{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);}
.m10{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m27{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);}
.m18{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);}
.m17{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m9{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);}
.me{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);}
.m24{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);}
.m26{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);}
.m12{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);}
.m15{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);}
.m29{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);}
.m6{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);}
.m23{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);}
.m1f{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);}
.v5{vertical-align:-19.530000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000263px;}
.ls15{letter-spacing:0.000568px;}
.ls17{letter-spacing:0.000741px;}
.ls4{letter-spacing:0.000800px;}
.ls16{letter-spacing:0.000860px;}
.ls1a{letter-spacing:0.001155px;}
.ls14{letter-spacing:0.001584px;}
.ls18{letter-spacing:0.002338px;}
.ls1b{letter-spacing:0.003830px;}
.lsc{letter-spacing:2.989200px;}
.ls5{letter-spacing:11.954850px;}
.ls13{letter-spacing:13.449600px;}
.ls19{letter-spacing:13.479816px;}
.ls6{letter-spacing:14.525471px;}
.lsf{letter-spacing:14.741168px;}
.lsd{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.003676px;}
.ls10{letter-spacing:15.123227px;}
.ls7{letter-spacing:15.183002px;}
.lse{letter-spacing:15.302554px;}
.lsa{letter-spacing:19.905275px;}
.ls9{letter-spacing:22.535401px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.lsb{letter-spacing:94.286700px;}
.ls12{letter-spacing:109.830600px;}
.ls11{letter-spacing:1244.635133px;}
.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;}
}
.wsbe{word-spacing:-26.899200px;}
.ws5b{word-spacing:-14.943900px;}
.ws91{word-spacing:-13.449600px;}
.ws34{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws81{word-spacing:-3.526760px;}
.wsc8{word-spacing:-3.174106px;}
.ws3e{word-spacing:-2.809453px;}
.wsa1{word-spacing:-2.689902px;}
.wsb8{word-spacing:-2.630126px;}
.wsb5{word-spacing:-2.570351px;}
.wsa9{word-spacing:-2.450800px;}
.ws55{word-spacing:-2.391024px;}
.wse8{word-spacing:-2.367130px;}
.ws2f{word-spacing:-2.211697px;}
.wsc4{word-spacing:-2.151936px;}
.ws54{word-spacing:-2.032370px;}
.ws72{word-spacing:-1.972595px;}
.wsf7{word-spacing:-1.936742px;}
.wsa8{word-spacing:-1.912819px;}
.ws78{word-spacing:-1.853044px;}
.wsa2{word-spacing:-1.793268px;}
.wsa0{word-spacing:-1.733492px;}
.ws82{word-spacing:-1.673717px;}
.wsf5{word-spacing:-1.667750px;}
.ws7d{word-spacing:-1.494390px;}
.ws97{word-spacing:-1.434614px;}
.ws104{word-spacing:-1.398758px;}
.wsba{word-spacing:-1.374839px;}
.ws103{word-spacing:-1.344960px;}
.ws47{word-spacing:-1.195512px;}
.ws46{word-spacing:-1.135736px;}
.wsaf{word-spacing:-1.075961px;}
.wsf6{word-spacing:-1.022170px;}
.ws88{word-spacing:-1.016185px;}
.ws106{word-spacing:-0.968371px;}
.ws62{word-spacing:-0.956410px;}
.ws9b{word-spacing:-0.896634px;}
.wsbc{word-spacing:-0.860774px;}
.ws40{word-spacing:-0.836858px;}
.ws3f{word-spacing:-0.777083px;}
.wsb3{word-spacing:-0.717307px;}
.wsc0{word-spacing:-0.645581px;}
.ws23{word-spacing:-0.537984px;}
.wsb4{word-spacing:-0.537980px;}
.ws61{word-spacing:-0.478205px;}
.ws51{word-spacing:-0.418429px;}
.wse1{word-spacing:-0.376589px;}
.ws5c{word-spacing:-0.358654px;}
.wsd2{word-spacing:-0.322790px;}
.ws30{word-spacing:-0.298878px;}
.wsce{word-spacing:-0.270171px;}
.ws14{word-spacing:-0.268992px;}
.wscf{word-spacing:-0.265470px;}
.ws31{word-spacing:-0.239102px;}
.wscd{word-spacing:-0.215194px;}
.wscb{word-spacing:-0.188003px;}
.ws39{word-spacing:-0.179327px;}
.wscc{word-spacing:-0.172952px;}
.ws2{word-spacing:-0.167371px;}
.ws17{word-spacing:-0.161395px;}
.ws3c{word-spacing:-0.119551px;}
.wsd0{word-spacing:-0.107597px;}
.ws48{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.wsd7{word-spacing:-0.016186px;}
.wsee{word-spacing:-0.014861px;}
.wse7{word-spacing:-0.011654px;}
.wse0{word-spacing:-0.010186px;}
.ws93{word-spacing:-0.008179px;}
.ws92{word-spacing:-0.008045px;}
.wsf0{word-spacing:-0.007910px;}
.wsf3{word-spacing:-0.007267px;}
.wsd8{word-spacing:-0.007171px;}
.ws101{word-spacing:-0.007104px;}
.wse9{word-spacing:-0.006394px;}
.ws4{word-spacing:-0.005369px;}
.wse3{word-spacing:-0.004810px;}
.wsdf{word-spacing:-0.004800px;}
.wse2{word-spacing:-0.003888px;}
.wsf8{word-spacing:-0.003821px;}
.wsfe{word-spacing:-0.003715px;}
.wsd{word-spacing:-0.001632px;}
.wsea{word-spacing:-0.000490px;}
.ws33{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.wsc3{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws15{word-spacing:0.107597px;}
.ws52{word-spacing:0.119551px;}
.ws1e{word-spacing:0.161395px;}
.ws2e{word-spacing:0.179327px;}
.ws16{word-spacing:0.215194px;}
.ws3a{word-spacing:0.239102px;}
.ws13{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.wsc7{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.wsda{word-spacing:0.376589px;}
.ws5d{word-spacing:0.418429px;}
.ws108{word-spacing:0.430387px;}
.ws49{word-spacing:0.478205px;}
.wse6{word-spacing:0.484186px;}
.ws59{word-spacing:0.537980px;}
.ws12{word-spacing:0.537984px;}
.ws107{word-spacing:0.591782px;}
.ws89{word-spacing:0.597756px;}
.ws50{word-spacing:0.657532px;}
.wsdc{word-spacing:0.699379px;}
.ws53{word-spacing:0.717307px;}
.ws22{word-spacing:0.753178px;}
.wsb7{word-spacing:0.777083px;}
.wsc2{word-spacing:0.806976px;}
.ws43{word-spacing:0.836858px;}
.ws2d{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws4f{word-spacing:1.016185px;}
.ws9e{word-spacing:1.075961px;}
.wsd3{word-spacing:1.129766px;}
.wsb9{word-spacing:1.135736px;}
.wsd4{word-spacing:1.183565px;}
.ws8f{word-spacing:1.195512px;}
.wsdb{word-spacing:1.237363px;}
.ws79{word-spacing:1.255288px;}
.ws71{word-spacing:1.315063px;}
.wsc{word-spacing:1.380812px;}
.wsc9{word-spacing:1.398758px;}
.ws5e{word-spacing:1.434614px;}
.ws6d{word-spacing:1.494390px;}
.ws86{word-spacing:1.554166px;}
.wsec{word-spacing:1.560154px;}
.ws64{word-spacing:1.613941px;}
.ws2c{word-spacing:1.673717px;}
.ws21{word-spacing:1.721549px;}
.ws2b{word-spacing:1.733492px;}
.ws3d{word-spacing:1.793268px;}
.ws95{word-spacing:1.817183px;}
.ws38{word-spacing:1.853044px;}
.ws7e{word-spacing:1.912819px;}
.ws77{word-spacing:1.972595px;}
.wseb{word-spacing:1.990541px;}
.wsff{word-spacing:2.044339px;}
.ws9a{word-spacing:2.092146px;}
.ws42{word-spacing:2.151922px;}
.wsa4{word-spacing:2.211697px;}
.ws83{word-spacing:2.271473px;}
.ws74{word-spacing:2.331248px;}
.ws1d{word-spacing:2.367130px;}
.wsae{word-spacing:2.391024px;}
.wsca{word-spacing:2.420928px;}
.ws85{word-spacing:2.450800px;}
.wsdd{word-spacing:2.474726px;}
.ws76{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws3{word-spacing:2.513434px;}
.ws6f{word-spacing:2.570351px;}
.ws65{word-spacing:2.630126px;}
.ws99{word-spacing:2.689902px;}
.ws105{word-spacing:2.743718px;}
.wsc1{word-spacing:2.797517px;}
.ws9d{word-spacing:2.809453px;}
.ws9c{word-spacing:2.869229px;}
.wsf{word-spacing:2.869236px;}
.ws96{word-spacing:2.929004px;}
.wsfb{word-spacing:2.958912px;}
.wsb1{word-spacing:2.988780px;}
.ws6b{word-spacing:3.048556px;}
.ws4b{word-spacing:3.108331px;}
.wse4{word-spacing:3.120307px;}
.ws24{word-spacing:3.219667px;}
.wsd6{word-spacing:3.223373px;}
.wsf1{word-spacing:3.223862px;}
.wsbd{word-spacing:3.224822px;}
.wsb6{word-spacing:3.227882px;}
.ws1f{word-spacing:3.227904px;}
.wsfa{word-spacing:3.228000px;}
.wsd9{word-spacing:3.281702px;}
.wsa3{word-spacing:3.287658px;}
.wsc5{word-spacing:3.335501px;}
.ws75{word-spacing:3.347434px;}
.wsf4{word-spacing:3.389299px;}
.ws63{word-spacing:3.407209px;}
.wse5{word-spacing:3.443098px;}
.ws98{word-spacing:3.466985px;}
.ws100{word-spacing:3.496896px;}
.ws27{word-spacing:3.526760px;}
.ws1c{word-spacing:3.550694px;}
.ws25{word-spacing:3.586536px;}
.ws28{word-spacing:3.706087px;}
.wsfc{word-spacing:3.712090px;}
.ws67{word-spacing:3.765863px;}
.wsde{word-spacing:3.765888px;}
.wsab{word-spacing:3.825638px;}
.ws73{word-spacing:3.885414px;}
.ws4c{word-spacing:3.945190px;}
.ws26{word-spacing:4.004965px;}
.ws70{word-spacing:4.064741px;}
.wsf2{word-spacing:4.088678px;}
.ws41{word-spacing:4.124516px;}
.ws8a{word-spacing:4.184292px;}
.ws44{word-spacing:4.244068px;}
.wsa6{word-spacing:4.303843px;}
.ws20{word-spacing:4.357670px;}
.wsa7{word-spacing:4.363619px;}
.ws1a{word-spacing:4.411469px;}
.ws18{word-spacing:4.465267px;}
.ws94{word-spacing:4.495136px;}
.wsac{word-spacing:4.662497px;}
.wsad{word-spacing:4.782048px;}
.ws11{word-spacing:4.788058px;}
.wsa5{word-spacing:4.841824px;}
.wsf9{word-spacing:4.841856px;}
.ws56{word-spacing:4.961375px;}
.ws102{word-spacing:5.003251px;}
.ws57{word-spacing:5.021150px;}
.ws58{word-spacing:5.320028px;}
.ws32{word-spacing:5.379804px;}
.wsd5{word-spacing:5.379840px;}
.wsfd{word-spacing:5.433638px;}
.wsa{word-spacing:5.481407px;}
.ws6e{word-spacing:5.499355px;}
.ws4e{word-spacing:5.559131px;}
.ws4a{word-spacing:5.618906px;}
.ws7a{word-spacing:5.678682px;}
.ws5a{word-spacing:5.798233px;}
.ws6c{word-spacing:5.858009px;}
.ws68{word-spacing:5.917784px;}
.wsb0{word-spacing:6.037336px;}
.ws80{word-spacing:6.097111px;}
.ws9f{word-spacing:6.336214px;}
.ws6a{word-spacing:6.395989px;}
.wsbf{word-spacing:6.402010px;}
.ws35{word-spacing:6.635092px;}
.ws36{word-spacing:6.694867px;}
.wsb2{word-spacing:6.754643px;}
.ws60{word-spacing:6.874194px;}
.ws7f{word-spacing:7.053521px;}
.ws19{word-spacing:7.101389px;}
.ws87{word-spacing:7.113296px;}
.ws66{word-spacing:7.173072px;}
.ws45{word-spacing:7.711052px;}
.wsbb{word-spacing:8.069706px;}
.wsef{word-spacing:8.177357px;}
.wsed{word-spacing:8.338752px;}
.ws84{word-spacing:8.428360px;}
.wsd1{word-spacing:8.553946px;}
.ws2a{word-spacing:9.145667px;}
.ws8{word-spacing:9.833058px;}
.ws9{word-spacing:11.841512px;}
.ws10{word-spacing:12.974743px;}
.ws90{word-spacing:13.395802px;}
.ws5{word-spacing:15.481836px;}
.wsaa{word-spacing:15.541656px;}
.ws4d{word-spacing:15.900310px;}
.ws69{word-spacing:19.187968px;}
.ws7{word-spacing:22.339429px;}
.wsb{word-spacing:22.720640px;}
.wsc6{word-spacing:99.364500px;}
.ws8b{word-spacing:303.960960px;}
.ws7b{word-spacing:364.516310px;}
.ws8c{word-spacing:442.222848px;}
.ws7c{word-spacing:469.100400px;}
.ws8d{word-spacing:976.279565px;}
.ws8e{word-spacing:1563.327706px;}
._1a{margin-left:-21.698543px;}
._2b{margin-left:-19.887486px;}
._29{margin-left:-13.449600px;}
._4{margin-left:-11.943245px;}
._28{margin-left:-7.621393px;}
._e{margin-left:-6.515540px;}
._8{margin-left:-4.841856px;}
._1{margin-left:-3.765852px;}
._6{margin-left:-2.630133px;}
._3{margin-left:-1.464498px;}
._19{width:1.972619px;}
._5{width:3.002545px;}
._2a{width:10.275494px;}
._0{width:12.343626px;}
._10{width:14.077150px;}
._9{width:16.139520px;}
._c{width:17.544231px;}
._7{width:19.475021px;}
._16{width:20.484964px;}
._f{width:21.997421px;}
._13{width:23.372260px;}
._2{width:25.314894px;}
._d{width:27.646389px;}
._a{width:29.696717px;}
._17{width:31.501741px;}
._15{width:33.235234px;}
._14{width:34.580180px;}
._18{width:36.642449px;}
._b{width:38.358259px;}
._1d{width:39.930133px;}
._1c{width:215.225750px;}
._20{width:268.723008px;}
._1e{width:330.860160px;}
._1b{width:374.974848px;}
._23{width:604.165181px;}
._21{width:634.498330px;}
._11{width:724.605859px;}
._25{width:773.417740px;}
._24{width:942.515260px;}
._22{width:1137.029184px;}
._26{width:1146.282509px;}
._27{width:1244.625984px;}
._1f{width:2500.851000px;}
._12{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fsb{font-size:47.820600px;}
.fsc{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y37{bottom:16.704213px;}
.y65{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y35{bottom:104.646000px;}
.y1fc{bottom:106.368000px;}
.y64{bottom:108.342000px;}
.y1cb{bottom:108.447000px;}
.y14e{bottom:108.553500px;}
.y241{bottom:108.571500px;}
.y279{bottom:109.102500px;}
.y17d{bottom:113.056500px;}
.y240{bottom:113.454000px;}
.y2af{bottom:116.458500px;}
.ye6{bottom:118.699500px;}
.y1e8{bottom:119.148000px;}
.y9d{bottom:119.596500px;}
.y34{bottom:122.535000px;}
.y1fb{bottom:123.628500px;}
.y1e9{bottom:124.572000px;}
.y278{bottom:126.363000px;}
.y63{bottom:127.171500px;}
.y1ca{bottom:127.276500px;}
.y14d{bottom:127.383000px;}
.y1fa{bottom:128.511000px;}
.y2b2{bottom:129.160500px;}
.y23f{bottom:129.201000px;}
.y17c{bottom:131.884500px;}
.yc9{bottom:133.017000px;}
.y2ae{bottom:133.719000px;}
.ye5{bottom:137.529000px;}
.y1e7{bottom:137.977500px;}
.y9c{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y33{bottom:140.422500px;}
.y277{bottom:143.623500px;}
.y62{bottom:146.001000px;}
.y1c9{bottom:146.106000px;}
.y14c{bottom:146.212500px;}
.y2b1{bottom:146.421000px;}
.y23e{bottom:146.461500px;}
.y1f9{bottom:149.140500px;}
.y17b{bottom:150.714000px;}
.y2ad{bottom:150.978000px;}
.y23d{bottom:151.344000px;}
.yc8{bottom:152.719500px;}
.ye4{bottom:156.358500px;}
.y1e6{bottom:156.807000px;}
.y9b{bottom:157.255500px;}
.y32{bottom:158.310000px;}
.y276{bottom:160.884000px;}
.y2b0{bottom:163.681500px;}
.y61{bottom:164.830500px;}
.y1f8{bottom:164.889000px;}
.y1c8{bottom:164.935500px;}
.y14b{bottom:165.042000px;}
.y194{bottom:165.307500px;}
.y23c{bottom:167.092500px;}
.y2ac{bottom:168.238500px;}
.y17a{bottom:169.543500px;}
.yc7{bottom:170.652000px;}
.ye3{bottom:175.188000px;}
.y1e5{bottom:175.636500px;}
.y9a{bottom:176.085000px;}
.y31{bottom:176.199000px;}
.y275{bottom:178.144500px;}
.y1f7{bottom:182.149500px;}
.y60{bottom:183.660000px;}
.y1c7{bottom:183.765000px;}
.y14a{bottom:183.871500px;}
.y193{bottom:184.137000px;}
.y23b{bottom:184.353000px;}
.y2ab{bottom:185.499000px;}
.y1f6{bottom:187.032000px;}
.y179{bottom:188.373000px;}
.y119{bottom:189.982500px;}
.ye2{bottom:194.017500px;}
.y30{bottom:194.086500px;}
.y1e4{bottom:194.466000px;}
.y99{bottom:194.914500px;}
.y274{bottom:195.405000px;}
.y18{bottom:196.933500px;}
.yc6{bottom:200.589000px;}
.y23a{bottom:201.612000px;}
.y5f{bottom:202.489500px;}
.y1c6{bottom:202.594500px;}
.y149{bottom:202.701000px;}
.y2aa{bottom:202.759500px;}
.y192{bottom:202.966500px;}
.y239{bottom:206.494500px;}
.y178{bottom:207.202500px;}
.y1f5{bottom:207.661500px;}
.y118{bottom:208.812000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2f{bottom:211.974000px;}
.y273{bottom:212.665500px;}
.ye1{bottom:212.847000px;}
.y1e3{bottom:213.295500px;}
.y98{bottom:213.744000px;}
.yc5{bottom:218.521500px;}
.y2a9{bottom:220.020000px;}
.y5e{bottom:221.319000px;}
.y1c5{bottom:221.424000px;}
.y191{bottom:221.796000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y238{bottom:222.243000px;}
.y148{bottom:226.014000px;}
.y177{bottom:226.032000px;}
.y117{bottom:227.641500px;}
.y1f4{bottom:228.807000px;}
.y2e{bottom:229.863000px;}
.y272{bottom:229.924500px;}
.y1df{bottom:231.676500px;}
.y1e2{bottom:232.125000px;}
.y97{bottom:232.573500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ye0{bottom:236.160000px;}
.y2a8{bottom:237.280500px;}
.y237{bottom:239.503500px;}
.y5d{bottom:240.148500px;}
.y1c4{bottom:240.253500px;}
.y18f{bottom:240.625500px;}
.y147{bottom:244.843500px;}
.y176{bottom:244.861500px;}
.y190{bottom:246.051000px;}
.y116{bottom:246.471000px;}
.y271{bottom:247.185000px;}
.yc4{bottom:248.458500px;}
.y1de{bottom:250.506000px;}
.y1e1{bottom:250.954500px;}
.y96{bottom:251.403000px;}
.y2a7{bottom:254.541000px;}
.y236{bottom:256.764000px;}
.y5c{bottom:258.978000px;}
.y1c3{bottom:259.081500px;}
.y18e{bottom:259.455000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y235{bottom:261.645000px;}
.y1f3{bottom:262.431000px;}
.y146{bottom:263.673000px;}
.y175{bottom:263.691000px;}
.y270{bottom:264.445500px;}
.y115{bottom:265.300500px;}
.y1dd{bottom:269.335500px;}
.ydf{bottom:269.784000px;}
.y95{bottom:270.232500px;}
.y2a6{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yc3{bottom:276.582000px;}
.y5a{bottom:277.807500px;}
.y1c2{bottom:277.911000px;}
.y18d{bottom:278.284500px;}
.y26f{bottom:281.706000px;}
.y234{bottom:282.276000px;}
.y145{bottom:282.502500px;}
.y5b{bottom:283.231500px;}
.y114{bottom:284.130000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y174{bottom:287.004000px;}
.y1dc{bottom:288.165000px;}
.ydd{bottom:288.613500px;}
.y1f2{bottom:288.972000px;}
.y94{bottom:289.062000px;}
.yde{bottom:294.037500px;}
.yc2{bottom:294.516000px;}
.y59{bottom:296.637000px;}
.y1c1{bottom:296.740500px;}
.y18c{bottom:297.114000px;}
.y26e{bottom:298.966500px;}
.y2d{bottom:299.892000px;}
.y144{bottom:301.332000px;}
.y233{bottom:302.905500px;}
.y113{bottom:302.959500px;}
.y2a5{bottom:306.321000px;}
.y1db{bottom:306.994500px;}
.ydc{bottom:307.443000px;}
.y93{bottom:307.891500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc1{bottom:312.448500px;}
.y1f1{bottom:315.513000px;}
.y1c0{bottom:315.570000px;}
.y18b{bottom:315.943500px;}
.y26d{bottom:316.227000px;}
.y2c{bottom:317.779500px;}
.y232{bottom:318.654000px;}
.y58{bottom:319.950000px;}
.y143{bottom:320.161500px;}
.y173{bottom:320.628000px;}
.y112{bottom:321.789000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2a4{bottom:323.581500px;}
.y1da{bottom:325.824000px;}
.ydb{bottom:326.272500px;}
.y92{bottom:326.719500px;}
.y26c{bottom:333.487500px;}
.y18a{bottom:334.773000px;}
.y2b{bottom:335.667000px;}
.y231{bottom:335.914500px;}
.yc0{bottom:337.852500px;}
.y142{bottom:338.991000px;}
.y172{bottom:339.457500px;}
.y111{bottom:340.618500px;}
.y2a3{bottom:340.842000px;}
.y1f0{bottom:342.052500px;}
.y1bf{bottom:343.623000px;}
.y1d9{bottom:344.653500px;}
.yda{bottom:345.102000px;}
.y91{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y26b{bottom:350.748000px;}
.y230{bottom:353.173500px;}
.y2a{bottom:353.556000px;}
.ybf{bottom:355.785000px;}
.y141{bottom:357.820500px;}
.y22f{bottom:358.056000px;}
.y2a2{bottom:358.102500px;}
.y171{bottom:358.287000px;}
.y110{bottom:359.448000px;}
.y1d8{bottom:363.483000px;}
.yd9{bottom:363.931500px;}
.y90{bottom:364.378500px;}
.y26a{bottom:368.007000px;}
.y1ef{bottom:368.593500px;}
.y1be{bottom:372.016500px;}
.ybe{bottom:373.719000px;}
.y22e{bottom:373.804500px;}
.y189{bottom:374.907000px;}
.y2a1{bottom:375.363000px;}
.y140{bottom:376.650000px;}
.y170{bottom:377.116500px;}
.y10f{bottom:378.277500px;}
.y29{bottom:381.904500px;}
.y1d7{bottom:382.312500px;}
.yd8{bottom:382.761000px;}
.y8f{bottom:383.208000px;}
.y269{bottom:385.267500px;}
.y1ee{bottom:386.167500px;}
.ye{bottom:386.785499px;}
.y22d{bottom:391.065000px;}
.y2a0{bottom:392.623500px;}
.y188{bottom:393.750000px;}
.y1bd{bottom:393.849000px;}
.y57{bottom:395.100000px;}
.y13f{bottom:395.478000px;}
.y16f{bottom:395.946000px;}
.y10e{bottom:397.107000px;}
.y28{bottom:399.792000px;}
.y1d6{bottom:401.142000px;}
.yd7{bottom:401.589000px;}
.y8e{bottom:402.037500px;}
.y268{bottom:402.528000px;}
.ybd{bottom:403.654500px;}
.y1ed{bottom:403.741500px;}
.y1eb{bottom:406.072500px;}
.yd{bottom:408.044999px;}
.y29f{bottom:409.884000px;}
.y22c{bottom:411.694500px;}
.y13e{bottom:414.307500px;}
.y16e{bottom:414.775500px;}
.y10d{bottom:415.936500px;}
.y187{bottom:417.390000px;}
.y1bc{bottom:417.490500px;}
.y267{bottom:419.788500px;}
.y1d5{bottom:419.971500px;}
.yd6{bottom:420.418500px;}
.y8d{bottom:420.867000px;}
.ybc{bottom:421.588500px;}
.y27{bottom:426.646500px;}
.y29e{bottom:427.144500px;}
.y22b{bottom:428.955000px;}
.y56{bottom:432.489000px;}
.y13d{bottom:433.137000px;}
.y16d{bottom:433.605000px;}
.y22a{bottom:433.837500px;}
.y10c{bottom:434.766000px;}
.y266{bottom:437.049000px;}
.y1d4{bottom:438.801000px;}
.yd5{bottom:439.248000px;}
.ybb{bottom:439.521000px;}
.y8c{bottom:439.696500px;}
.y186{bottom:441.031500px;}
.y1bb{bottom:441.130500px;}
.y29d{bottom:444.403500px;}
.y26{bottom:444.534000px;}
.y229{bottom:449.584500px;}
.y55{bottom:451.947000px;}
.y13c{bottom:451.966500px;}
.y16c{bottom:452.434500px;}
.y10b{bottom:453.595500px;}
.y265{bottom:454.309500px;}
.y1ba{bottom:457.569000px;}
.y1d3{bottom:457.630500px;}
.yd4{bottom:458.077500px;}
.y8b{bottom:458.526000px;}
.y29c{bottom:461.664000px;}
.y25{bottom:462.423000px;}
.y185{bottom:464.671500px;}
.y228{bottom:466.845000px;}
.yba{bottom:469.458000px;}
.y13b{bottom:470.796000px;}
.y16b{bottom:471.264000px;}
.y54{bottom:471.403500px;}
.y264{bottom:471.570000px;}
.y227{bottom:471.727500px;}
.y10a{bottom:472.425000px;}
.y1b9{bottom:474.007500px;}
.y1d2{bottom:476.458500px;}
.yd3{bottom:476.907000px;}
.y8a{bottom:477.355500px;}
.y29b{bottom:478.924500px;}
.y24{bottom:480.310500px;}
.yb9{bottom:487.390500px;}
.y263{bottom:488.830500px;}
.y139{bottom:489.625500px;}
.y16a{bottom:490.093500px;}
.y1b5{bottom:490.446000px;}
.y53{bottom:490.860000px;}
.y109{bottom:491.254500px;}
.y226{bottom:492.357000px;}
.y13a{bottom:495.051000px;}
.y1d1{bottom:495.288000px;}
.yd2{bottom:495.736500px;}
.y89{bottom:496.185000px;}
.y184{bottom:496.291500px;}
.y23{bottom:498.198000px;}
.yc{bottom:502.864502px;}
.yb8{bottom:505.323000px;}
.y262{bottom:506.091000px;}
.y1b8{bottom:506.884500px;}
.y138{bottom:508.455000px;}
.y168{bottom:508.923000px;}
.y108{bottom:510.082500px;}
.y52{bottom:510.318000px;}
.y225{bottom:512.988000px;}
.y29a{bottom:513.445500px;}
.y1d0{bottom:514.117500px;}
.y169{bottom:514.347000px;}
.yd1{bottom:514.566000px;}
.y88{bottom:515.014500px;}
.y22{bottom:516.087000px;}
.yb{bottom:520.864502px;}
.yb7{bottom:523.255500px;}
.y1b7{bottom:523.323000px;}
.y261{bottom:523.350000px;}
.y137{bottom:527.284500px;}
.y167{bottom:527.752500px;}
.y224{bottom:528.735000px;}
.y107{bottom:528.912000px;}
.y51{bottom:529.774500px;}
.y299{bottom:530.706000px;}
.y1cf{bottom:532.947000px;}
.yd0{bottom:533.395500px;}
.y87{bottom:533.844000px;}
.ya{bottom:538.864499px;}
.y1b6{bottom:539.761500px;}
.y260{bottom:540.610500px;}
.y223{bottom:545.995500px;}
.y135{bottom:546.114000px;}
.y166{bottom:546.582000px;}
.y106{bottom:547.741500px;}
.y298{bottom:547.966500px;}
.y50{bottom:549.232500px;}
.y136{bottom:551.539500px;}
.y1ce{bottom:551.776500px;}
.ycf{bottom:552.225000px;}
.y86{bottom:552.673500px;}
.yb6{bottom:553.192500px;}
.y9{bottom:556.864499px;}
.y25f{bottom:557.871000px;}
.y222{bottom:563.256000px;}
.y1b4{bottom:563.401500px;}
.y134{bottom:564.943500px;}
.y297{bottom:565.227000px;}
.y165{bottom:565.410000px;}
.y105{bottom:566.571000px;}
.y4f{bottom:568.689000px;}
.yce{bottom:571.054500px;}
.yb5{bottom:571.125000px;}
.y85{bottom:571.503000px;}
.y1cd{bottom:575.089500px;}
.y25e{bottom:575.131500px;}
.y221{bottom:580.516500px;}
.y296{bottom:582.487500px;}
.y133{bottom:583.773000px;}
.y164{bottom:584.239500px;}
.y104{bottom:585.400500px;}
.y1b3{bottom:587.043000px;}
.y4e{bottom:588.145500px;}
.ycd{bottom:589.884000px;}
.y84{bottom:590.332500px;}
.y1af{bottom:592.000500px;}
.y25d{bottom:592.392000px;}
.y220{bottom:597.777000px;}
.y295{bottom:599.746500px;}
.yb4{bottom:601.062000px;}
.y132{bottom:602.602500px;}
.y163{bottom:603.069000px;}
.y103{bottom:604.230000px;}
.y4d{bottom:607.603500px;}
.y1ae{bottom:608.437500px;}
.ycc{bottom:608.713500px;}
.y83{bottom:609.162000px;}
.y25c{bottom:609.652500px;}
.y1b2{bottom:610.683000px;}
.y294{bottom:617.007000px;}
.y1b1{bottom:618.903000px;}
.y21f{bottom:619.920000px;}
.y131{bottom:621.432000px;}
.y162{bottom:621.898500px;}
.y102{bottom:623.059500px;}
.y25b{bottom:626.913000px;}
.y4c{bottom:627.060000px;}
.ycb{bottom:627.543000px;}
.y82{bottom:627.991500px;}
.yb3{bottom:630.999000px;}
.y293{bottom:634.267500px;}
.y21e{bottom:635.667000px;}
.y130{bottom:640.261500px;}
.y160{bottom:640.728000px;}
.y101{bottom:641.889000px;}
.y25a{bottom:644.173500px;}
.y8{bottom:645.510000px;}
.y161{bottom:646.153500px;}
.y183{bottom:646.372500px;}
.y4b{bottom:646.516500px;}
.y81{bottom:646.821000px;}
.yb2{bottom:648.931500px;}
.y1b0{bottom:650.761500px;}
.yca{bottom:650.856000px;}
.y292{bottom:651.528000px;}
.y21d{bottom:652.927500px;}
.y21c{bottom:657.810000px;}
.y12e{bottom:659.091000px;}
.y15f{bottom:659.557500px;}
.y100{bottom:660.718500px;}
.y259{bottom:661.432500px;}
.y12f{bottom:664.515000px;}
.y182{bottom:665.202000px;}
.y80{bottom:665.650500px;}
.y4a{bottom:665.974500px;}
.y7{bottom:666.771000px;}
.y291{bottom:668.788500px;}
.y1cc{bottom:669.685500px;}
.y21b{bottom:673.557000px;}
.y1ad{bottom:674.403000px;}
.y12d{bottom:677.920500px;}
.y15e{bottom:678.387000px;}
.y258{bottom:678.693000px;}
.yff{bottom:679.548000px;}
.y181{bottom:684.031500px;}
.y7f{bottom:684.480000px;}
.yb1{bottom:684.586500px;}
.y49{bottom:685.431000px;}
.y290{bottom:686.049000px;}
.y21a{bottom:690.817500px;}
.y219{bottom:695.700000px;}
.y257{bottom:695.953500px;}
.y12c{bottom:696.750000px;}
.y15d{bottom:697.216500px;}
.y1ac{bottom:698.043000px;}
.yfe{bottom:702.861000px;}
.y7e{bottom:703.309500px;}
.y1aa{bottom:703.887000px;}
.y48{bottom:704.889000px;}
.y218{bottom:711.448500px;}
.y256{bottom:713.214000px;}
.y12a{bottom:715.579500px;}
.y15c{bottom:716.046000px;}
.y28f{bottom:720.570000px;}
.y12b{bottom:721.003500px;}
.y1ab{bottom:721.684500px;}
.yb0{bottom:721.690500px;}
.y7d{bottom:722.139000px;}
.y47{bottom:724.345500px;}
.y6{bottom:726.298500px;}
.y217{bottom:728.709000px;}
.y255{bottom:730.474500px;}
.y15b{bottom:734.875500px;}
.yfd{bottom:736.485000px;}
.y28e{bottom:737.829000px;}
.y129{bottom:738.892500px;}
.yaf{bottom:740.520000px;}
.y7c{bottom:740.968500px;}
.y46{bottom:743.802000px;}
.y1a9{bottom:745.324500px;}
.y254{bottom:747.735000px;}
.y216{bottom:750.850500px;}
.y3{bottom:752.599495px;}
.y15a{bottom:753.705000px;}
.y28d{bottom:755.089500px;}
.yfc{bottom:755.314500px;}
.yae{bottom:759.349500px;}
.y7b{bottom:759.798000px;}
.y1a8{bottom:761.763000px;}
.y45{bottom:763.260000px;}
.y253{bottom:764.995500px;}
.ye8{bottom:765.222000px;}
.y215{bottom:771.481500px;}
.y28c{bottom:772.350000px;}
.y128{bottom:772.516500px;}
.y159{bottom:772.534500px;}
.yfb{bottom:774.144000px;}
.yad{bottom:778.179000px;}
.y1a7{bottom:778.201500px;}
.y7a{bottom:778.627500px;}
.y252{bottom:782.256000px;}
.y1e0{bottom:782.662500px;}
.y44{bottom:782.716500px;}
.y28b{bottom:789.610500px;}
.y214{bottom:791.136000px;}
.y127{bottom:791.346000px;}
.y158{bottom:791.364000px;}
.yfa{bottom:792.973500px;}
.y1a6{bottom:794.640000px;}
.yac{bottom:797.008500px;}
.y79{bottom:797.457000px;}
.y251{bottom:799.516500px;}
.y43{bottom:802.173000px;}
.y1ea{bottom:802.881000px;}
.y28a{bottom:806.871000px;}
.y213{bottom:806.883000px;}
.y157{bottom:810.193500px;}
.y1a5{bottom:811.078500px;}
.yf9{bottom:811.803000px;}
.y126{bottom:814.657500px;}
.yab{bottom:815.838000px;}
.y78{bottom:816.286500px;}
.y250{bottom:816.775500px;}
.y42{bottom:821.631000px;}
.y289{bottom:824.131500px;}
.y212{bottom:824.143500px;}
.y1a4{bottom:827.517000px;}
.y156{bottom:829.023000px;}
.yf8{bottom:830.632500px;}
.y24f{bottom:834.036000px;}
.yaa{bottom:834.667500px;}
.y77{bottom:835.114500px;}
.y1ec{bottom:839.149500px;}
.y41{bottom:841.087500px;}
.y288{bottom:841.392000px;}
.y211{bottom:841.404000px;}
.y1a3{bottom:843.955500px;}
.y155{bottom:847.852500px;}
.y125{bottom:848.281500px;}
.yf7{bottom:849.462000px;}
.y24e{bottom:851.296500px;}
.ya9{bottom:853.497000px;}
.y76{bottom:853.944000px;}
.y287{bottom:858.652500px;}
.y210{bottom:858.664500px;}
.y1a2{bottom:860.394000px;}
.y40{bottom:860.545500px;}
.y154{bottom:866.682000px;}
.yf6{bottom:868.291500px;}
.y24d{bottom:868.557000px;}
.ya8{bottom:872.326500px;}
.y75{bottom:872.773500px;}
.y286{bottom:875.913000px;}
.y20f{bottom:875.925000px;}
.y180{bottom:877.750500px;}
.y2{bottom:879.369000px;}
.y124{bottom:879.448500px;}
.y20e{bottom:880.807500px;}
.y1a1{bottom:884.034000px;}
.y153{bottom:885.511500px;}
.y24c{bottom:885.817500px;}
.yf5{bottom:887.121000px;}
.ya7{bottom:891.156000px;}
.y74{bottom:891.603000px;}
.y285{bottom:893.172000px;}
.y123{bottom:898.293000px;}
.y3f{bottom:899.130000px;}
.y20d{bottom:901.437000px;}
.y24b{bottom:903.078000px;}
.y152{bottom:904.341000px;}
.yf4{bottom:905.950500px;}
.y1a0{bottom:907.675500px;}
.ya5{bottom:909.984000px;}
.y73{bottom:910.432500px;}
.y17f{bottom:914.467500px;}
.ya6{bottom:915.409500px;}
.ye7{bottom:915.858000px;}
.y19f{bottom:915.894000px;}
.y20c{bottom:917.185500px;}
.y3e{bottom:919.609500px;}
.y24a{bottom:920.338500px;}
.y122{bottom:921.933000px;}
.y151{bottom:923.170500px;}
.yf3{bottom:924.778500px;}
.y284{bottom:927.693000px;}
.ya4{bottom:928.813500px;}
.y72{bottom:929.262000px;}
.y3d{bottom:931.410000px;}
.y20b{bottom:934.446000px;}
.y249{bottom:937.599000px;}
.y20a{bottom:939.327000px;}
.yf1{bottom:943.608000px;}
.y283{bottom:944.953500px;}
.y121{bottom:945.574500px;}
.y150{bottom:946.483500px;}
.ya3{bottom:947.643000px;}
.y19e{bottom:947.754000px;}
.y71{bottom:948.091500px;}
.yf2{bottom:949.033500px;}
.y3c{bottom:951.888000px;}
.y248{bottom:954.858000px;}
.y209{bottom:955.075500px;}
.y19d{bottom:955.972500px;}
.y282{bottom:962.214000px;}
.yf0{bottom:962.437500px;}
.y14f{bottom:965.311500px;}
.ya1{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y70{bottom:966.921000px;}
.y120{bottom:969.214500px;}
.ya2{bottom:971.898000px;}
.y247{bottom:972.118500px;}
.y208{bottom:972.336000px;}
.y17e{bottom:972.346500px;}
.y207{bottom:977.218500px;}
.y281{bottom:979.474500px;}
.yef{bottom:981.267000px;}
.ya0{bottom:985.302000px;}
.y6f{bottom:985.750500px;}
.y19c{bottom:987.832500px;}
.y246{bottom:989.379000px;}
.y11f{bottom:992.856000px;}
.y206{bottom:992.965500px;}
.y196{bottom:995.428500px;}
.y3b{bottom:996.565500px;}
.y280{bottom:996.735000px;}
.yee{bottom:1000.096500px;}
.y9f{bottom:1004.131500px;}
.y6e{bottom:1004.580000px;}
.y205{bottom:1010.226000px;}
.y245{bottom:1011.123000px;}
.y19b{bottom:1011.474000px;}
.y27f{bottom:1013.995500px;}
.y204{bottom:1015.108500px;}
.y11e{bottom:1016.496000px;}
.yed{bottom:1018.926000px;}
.y6d{bottom:1023.409500px;}
.y9e{bottom:1027.444500px;}
.y19a{bottom:1027.912500px;}
.y203{bottom:1030.855500px;}
.y27e{bottom:1031.254500px;}
.y197{bottom:1036.131000px;}
.y3a{bottom:1036.485000px;}
.yec{bottom:1037.755500px;}
.y11d{bottom:1040.137500px;}
.y6c{bottom:1042.239000px;}
.y199{bottom:1044.351000px;}
.y244{bottom:1044.747000px;}
.y202{bottom:1048.116000px;}
.y27d{bottom:1048.515000px;}
.yeb{bottom:1056.585000px;}
.y198{bottom:1060.789500px;}
.y6b{bottom:1061.068500px;}
.y243{bottom:1062.007500px;}
.y11c{bottom:1063.777500px;}
.y39{bottom:1064.728500px;}
.y201{bottom:1065.376500px;}
.y27c{bottom:1065.775500px;}
.y242{bottom:1066.890000px;}
.yea{bottom:1075.414500px;}
.y6a{bottom:1079.898000px;}
.y200{bottom:1082.637000px;}
.y27b{bottom:1083.036000px;}
.y195{bottom:1084.429500px;}
.y11b{bottom:1087.419000px;}
.y38{bottom:1092.972000px;}
.ye9{bottom:1094.244000px;}
.y69{bottom:1098.727500px;}
.y1ff{bottom:1099.897500px;}
.y27a{bottom:1100.296500px;}
.y1fe{bottom:1117.158000px;}
.y67{bottom:1117.557000px;}
.y11a{bottom:1119.037500px;}
.y1fd{bottom:1122.040500px;}
.y68{bottom:1122.981000px;}
.y36{bottom:1136.460000px;}
.y66{bottom:1177.662000px;}
.h10{height:26.110157px;}
.h19{height:27.655250px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h16{height:33.072749px;}
.h11{height:34.813397px;}
.h17{height:35.100320px;}
.h1c{height:38.896243px;}
.h1d{height:39.057638px;}
.h12{height:39.165235px;}
.h20{height:39.488026px;}
.h14{height:43.217759px;}
.h15{height:43.516637px;}
.hd{height:43.875290px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h13{height:49.117939px;}
.hb{height:50.930649px;}
.hf{height:54.541601px;}
.h1b{height:54.575123px;}
.h18{height:54.768749px;}
.h1a{height:54.774749px;}
.h2{height:55.080000px;}
.h1e{height:72.045235px;}
.h21{height:72.362026px;}
.h1f{height:72.368026px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.hc{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;}
.x43{left:47.973000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x39{left:62.541000px;}
.x44{left:84.154500px;}
.x42{left:85.890000px;}
.x45{left:92.916000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x46{left:108.327000px;}
.x3a{left:183.778500px;}
.x4{left:203.484001px;}
.x28{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.x13{left:258.744000px;}
.x8{left:269.914500px;}
.xa{left:281.479500px;}
.x23{left:284.184000px;}
.x14{left:290.101500px;}
.x36{left:293.425500px;}
.x1b{left:298.299000px;}
.x35{left:307.251000px;}
.x37{left:308.271000px;}
.x17{left:310.264500px;}
.x40{left:313.755000px;}
.x18{left:320.349000px;}
.x38{left:326.148000px;}
.x41{left:329.605500px;}
.x29{left:339.397500px;}
.x2a{left:355.242000px;}
.x32{left:370.096500px;}
.x11{left:378.441000px;}
.x2d{left:381.694500px;}
.x12{left:387.943500px;}
.xb{left:399.795000px;}
.xc{left:410.931000px;}
.x1c{left:412.818000px;}
.x34{left:433.606500px;}
.x3{left:454.959000px;}
.x19{left:473.451000px;}
.x1a{left:489.270000px;}
.x3b{left:499.416000px;}
.x1f{left:538.894500px;}
.x3c{left:553.609500px;}
.x20{left:556.308000px;}
.x3d{left:569.464500px;}
.x47{left:614.251500px;}
.x21{left:620.089500px;}
.x48{left:633.451500px;}
.x22{left:635.922000px;}
.x2e{left:637.449000px;}
.x2f{left:653.272500px;}
.xd{left:655.270500px;}
.x2b{left:656.442000px;}
.xe{left:667.210500px;}
.x2c{left:673.564500px;}
.x24{left:687.553500px;}
.x25{left:704.676000px;}
.xf{left:709.494000px;}
.x10{left:719.668500px;}
.x30{left:750.237000px;}
.x26{left:758.218500px;}
.x31{left:767.359500px;}
.x1d{left:768.930000px;}
.x33{left:774.570000px;}
.x15{left:776.322000px;}
.x16{left:787.228500px;}
.x3e{left:795.496500px;}
.x27{left:809.271000px;}
.x3f{left:811.338000px;}
.x1e{left:826.809000px;}
@media print{
.v5{vertical-align:-17.360000pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000234pt;}
.ls15{letter-spacing:0.000504pt;}
.ls17{letter-spacing:0.000659pt;}
.ls4{letter-spacing:0.000711pt;}
.ls16{letter-spacing:0.000765pt;}
.ls1a{letter-spacing:0.001026pt;}
.ls14{letter-spacing:0.001408pt;}
.ls18{letter-spacing:0.002078pt;}
.ls1b{letter-spacing:0.003405pt;}
.lsc{letter-spacing:2.657067pt;}
.ls5{letter-spacing:10.626533pt;}
.ls13{letter-spacing:11.955200pt;}
.ls19{letter-spacing:11.982058pt;}
.ls6{letter-spacing:12.911530pt;}
.lsf{letter-spacing:13.103260pt;}
.lsd{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.336601pt;}
.ls10{letter-spacing:13.442868pt;}
.ls7{letter-spacing:13.496002pt;}
.lse{letter-spacing:13.602270pt;}
.lsa{letter-spacing:17.693578pt;}
.ls9{letter-spacing:20.031468pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.lsb{letter-spacing:83.810400pt;}
.ls12{letter-spacing:97.627200pt;}
.ls11{letter-spacing:1106.342340pt;}
.wsbe{word-spacing:-23.910400pt;}
.ws5b{word-spacing:-13.283467pt;}
.ws91{word-spacing:-11.955200pt;}
.ws34{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws81{word-spacing:-3.134898pt;}
.wsc8{word-spacing:-2.821427pt;}
.ws3e{word-spacing:-2.497292pt;}
.wsa1{word-spacing:-2.391024pt;}
.wsb8{word-spacing:-2.337890pt;}
.wsb5{word-spacing:-2.284756pt;}
.wsa9{word-spacing:-2.178489pt;}
.ws55{word-spacing:-2.125355pt;}
.wse8{word-spacing:-2.104115pt;}
.ws2f{word-spacing:-1.965953pt;}
.wsc4{word-spacing:-1.912832pt;}
.ws54{word-spacing:-1.806551pt;}
.ws72{word-spacing:-1.753418pt;}
.wsf7{word-spacing:-1.721549pt;}
.wsa8{word-spacing:-1.700284pt;}
.ws78{word-spacing:-1.647150pt;}
.wsa2{word-spacing:-1.594016pt;}
.wsa0{word-spacing:-1.540882pt;}
.ws82{word-spacing:-1.487748pt;}
.wsf5{word-spacing:-1.482445pt;}
.ws7d{word-spacing:-1.328347pt;}
.ws97{word-spacing:-1.275213pt;}
.ws104{word-spacing:-1.243341pt;}
.wsba{word-spacing:-1.222079pt;}
.ws103{word-spacing:-1.195520pt;}
.ws47{word-spacing:-1.062677pt;}
.ws46{word-spacing:-1.009543pt;}
.wsaf{word-spacing:-0.956410pt;}
.wsf6{word-spacing:-0.908595pt;}
.ws88{word-spacing:-0.903276pt;}
.ws106{word-spacing:-0.860774pt;}
.ws62{word-spacing:-0.850142pt;}
.ws9b{word-spacing:-0.797008pt;}
.wsbc{word-spacing:-0.765133pt;}
.ws40{word-spacing:-0.743874pt;}
.ws3f{word-spacing:-0.690740pt;}
.wsb3{word-spacing:-0.637606pt;}
.wsc0{word-spacing:-0.573850pt;}
.ws23{word-spacing:-0.478208pt;}
.wsb4{word-spacing:-0.478205pt;}
.ws61{word-spacing:-0.425071pt;}
.ws51{word-spacing:-0.371937pt;}
.wse1{word-spacing:-0.334746pt;}
.ws5c{word-spacing:-0.318803pt;}
.wsd2{word-spacing:-0.286925pt;}
.ws30{word-spacing:-0.265669pt;}
.wsce{word-spacing:-0.240152pt;}
.ws14{word-spacing:-0.239104pt;}
.wscf{word-spacing:-0.235973pt;}
.ws31{word-spacing:-0.212535pt;}
.wscd{word-spacing:-0.191283pt;}
.wscb{word-spacing:-0.167113pt;}
.ws39{word-spacing:-0.159402pt;}
.wscc{word-spacing:-0.153735pt;}
.ws2{word-spacing:-0.148774pt;}
.ws17{word-spacing:-0.143462pt;}
.ws3c{word-spacing:-0.106268pt;}
.wsd0{word-spacing:-0.095642pt;}
.ws48{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.wsd7{word-spacing:-0.014387pt;}
.wsee{word-spacing:-0.013210pt;}
.wse7{word-spacing:-0.010359pt;}
.wse0{word-spacing:-0.009054pt;}
.ws93{word-spacing:-0.007270pt;}
.ws92{word-spacing:-0.007151pt;}
.wsf0{word-spacing:-0.007031pt;}
.wsf3{word-spacing:-0.006460pt;}
.wsd8{word-spacing:-0.006374pt;}
.ws101{word-spacing:-0.006315pt;}
.wse9{word-spacing:-0.005683pt;}
.ws4{word-spacing:-0.004772pt;}
.wse3{word-spacing:-0.004275pt;}
.wsdf{word-spacing:-0.004267pt;}
.wse2{word-spacing:-0.003456pt;}
.wsf8{word-spacing:-0.003396pt;}
.wsfe{word-spacing:-0.003302pt;}
.wsd{word-spacing:-0.001451pt;}
.wsea{word-spacing:-0.000435pt;}
.ws33{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.wsc3{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws15{word-spacing:0.095642pt;}
.ws52{word-spacing:0.106268pt;}
.ws1e{word-spacing:0.143462pt;}
.ws2e{word-spacing:0.159402pt;}
.ws16{word-spacing:0.191283pt;}
.ws3a{word-spacing:0.212535pt;}
.ws13{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.wsc7{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.wsda{word-spacing:0.334746pt;}
.ws5d{word-spacing:0.371937pt;}
.ws108{word-spacing:0.382566pt;}
.ws49{word-spacing:0.425071pt;}
.wse6{word-spacing:0.430387pt;}
.ws59{word-spacing:0.478205pt;}
.ws12{word-spacing:0.478208pt;}
.ws107{word-spacing:0.526029pt;}
.ws89{word-spacing:0.531339pt;}
.ws50{word-spacing:0.584473pt;}
.wsdc{word-spacing:0.621670pt;}
.ws53{word-spacing:0.637606pt;}
.ws22{word-spacing:0.669491pt;}
.wsb7{word-spacing:0.690740pt;}
.wsc2{word-spacing:0.717312pt;}
.ws43{word-spacing:0.743874pt;}
.ws2d{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws4f{word-spacing:0.903276pt;}
.ws9e{word-spacing:0.956410pt;}
.wsd3{word-spacing:1.004237pt;}
.wsb9{word-spacing:1.009543pt;}
.wsd4{word-spacing:1.052058pt;}
.ws8f{word-spacing:1.062677pt;}
.wsdb{word-spacing:1.099878pt;}
.ws79{word-spacing:1.115811pt;}
.ws71{word-spacing:1.168945pt;}
.wsc{word-spacing:1.227389pt;}
.wsc9{word-spacing:1.243341pt;}
.ws5e{word-spacing:1.275213pt;}
.ws6d{word-spacing:1.328347pt;}
.ws86{word-spacing:1.381481pt;}
.wsec{word-spacing:1.386803pt;}
.ws64{word-spacing:1.434614pt;}
.ws2c{word-spacing:1.487748pt;}
.ws21{word-spacing:1.530266pt;}
.ws2b{word-spacing:1.540882pt;}
.ws3d{word-spacing:1.594016pt;}
.ws95{word-spacing:1.615274pt;}
.ws38{word-spacing:1.647150pt;}
.ws7e{word-spacing:1.700284pt;}
.ws77{word-spacing:1.753418pt;}
.wseb{word-spacing:1.769370pt;}
.wsff{word-spacing:1.817190pt;}
.ws9a{word-spacing:1.859685pt;}
.ws42{word-spacing:1.912819pt;}
.wsa4{word-spacing:1.965953pt;}
.ws83{word-spacing:2.019087pt;}
.ws74{word-spacing:2.072221pt;}
.ws1d{word-spacing:2.104115pt;}
.wsae{word-spacing:2.125355pt;}
.wsca{word-spacing:2.151936pt;}
.ws85{word-spacing:2.178489pt;}
.wsdd{word-spacing:2.199757pt;}
.ws76{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws3{word-spacing:2.234163pt;}
.ws6f{word-spacing:2.284756pt;}
.ws65{word-spacing:2.337890pt;}
.ws99{word-spacing:2.391024pt;}
.ws105{word-spacing:2.438861pt;}
.wsc1{word-spacing:2.486682pt;}
.ws9d{word-spacing:2.497292pt;}
.ws9c{word-spacing:2.550426pt;}
.wsf{word-spacing:2.550432pt;}
.ws96{word-spacing:2.603559pt;}
.wsfb{word-spacing:2.630144pt;}
.wsb1{word-spacing:2.656693pt;}
.ws6b{word-spacing:2.709827pt;}
.ws4b{word-spacing:2.762961pt;}
.wse4{word-spacing:2.773606pt;}
.ws24{word-spacing:2.861926pt;}
.wsd6{word-spacing:2.865220pt;}
.wsf1{word-spacing:2.865655pt;}
.wsbd{word-spacing:2.866509pt;}
.wsb6{word-spacing:2.869229pt;}
.ws1f{word-spacing:2.869248pt;}
.wsfa{word-spacing:2.869333pt;}
.wsd9{word-spacing:2.917069pt;}
.wsa3{word-spacing:2.922363pt;}
.wsc5{word-spacing:2.964890pt;}
.ws75{word-spacing:2.975497pt;}
.wsf4{word-spacing:3.012710pt;}
.ws63{word-spacing:3.028630pt;}
.wse5{word-spacing:3.060531pt;}
.ws98{word-spacing:3.081764pt;}
.ws100{word-spacing:3.108352pt;}
.ws27{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.156173pt;}
.ws25{word-spacing:3.188032pt;}
.ws28{word-spacing:3.294300pt;}
.wsfc{word-spacing:3.299635pt;}
.ws67{word-spacing:3.347434pt;}
.wsde{word-spacing:3.347456pt;}
.wsab{word-spacing:3.400567pt;}
.ws73{word-spacing:3.453701pt;}
.ws4c{word-spacing:3.506835pt;}
.ws26{word-spacing:3.559969pt;}
.ws70{word-spacing:3.613103pt;}
.wsf2{word-spacing:3.634381pt;}
.ws41{word-spacing:3.666237pt;}
.ws8a{word-spacing:3.719371pt;}
.ws44{word-spacing:3.772505pt;}
.wsa6{word-spacing:3.825638pt;}
.ws20{word-spacing:3.873485pt;}
.wsa7{word-spacing:3.878772pt;}
.ws1a{word-spacing:3.921306pt;}
.ws18{word-spacing:3.969126pt;}
.ws94{word-spacing:3.995677pt;}
.wsac{word-spacing:4.144442pt;}
.wsad{word-spacing:4.250709pt;}
.ws11{word-spacing:4.256051pt;}
.wsa5{word-spacing:4.303843pt;}
.wsf9{word-spacing:4.303872pt;}
.ws56{word-spacing:4.410111pt;}
.ws102{word-spacing:4.447334pt;}
.ws57{word-spacing:4.463245pt;}
.ws58{word-spacing:4.728914pt;}
.ws32{word-spacing:4.782048pt;}
.wsd5{word-spacing:4.782080pt;}
.wsfd{word-spacing:4.829901pt;}
.wsa{word-spacing:4.872362pt;}
.ws6e{word-spacing:4.888316pt;}
.ws4e{word-spacing:4.941450pt;}
.ws4a{word-spacing:4.994583pt;}
.ws7a{word-spacing:5.047717pt;}
.ws5a{word-spacing:5.153985pt;}
.ws6c{word-spacing:5.207119pt;}
.ws68{word-spacing:5.260253pt;}
.wsb0{word-spacing:5.366521pt;}
.ws80{word-spacing:5.419654pt;}
.ws9f{word-spacing:5.632190pt;}
.ws6a{word-spacing:5.685324pt;}
.wsbf{word-spacing:5.690675pt;}
.ws35{word-spacing:5.897859pt;}
.ws36{word-spacing:5.950993pt;}
.wsb2{word-spacing:6.004127pt;}
.ws60{word-spacing:6.110395pt;}
.ws7f{word-spacing:6.269796pt;}
.ws19{word-spacing:6.312346pt;}
.ws87{word-spacing:6.322930pt;}
.ws66{word-spacing:6.376064pt;}
.ws45{word-spacing:6.854269pt;}
.wsbb{word-spacing:7.173072pt;}
.wsef{word-spacing:7.268762pt;}
.wsed{word-spacing:7.412224pt;}
.ws84{word-spacing:7.491875pt;}
.wsd1{word-spacing:7.603507pt;}
.ws2a{word-spacing:8.129482pt;}
.ws8{word-spacing:8.740496pt;}
.ws9{word-spacing:10.525789pt;}
.ws10{word-spacing:11.533105pt;}
.ws90{word-spacing:11.907379pt;}
.ws5{word-spacing:13.761632pt;}
.wsaa{word-spacing:13.814805pt;}
.ws4d{word-spacing:14.133609pt;}
.ws69{word-spacing:17.055971pt;}
.ws7{word-spacing:19.857270pt;}
.wsb{word-spacing:20.196125pt;}
.wsc6{word-spacing:88.324000pt;}
.ws8b{word-spacing:270.187520pt;}
.ws7b{word-spacing:324.014498pt;}
.ws8c{word-spacing:393.086976pt;}
.ws7c{word-spacing:416.978133pt;}
.ws8d{word-spacing:867.804058pt;}
.ws8e{word-spacing:1389.624627pt;}
._1a{margin-left:-19.287594pt;}
._2b{margin-left:-17.677765pt;}
._29{margin-left:-11.955200pt;}
._4{margin-left:-10.616218pt;}
._28{margin-left:-6.774572pt;}
._e{margin-left:-5.791591pt;}
._8{margin-left:-4.303872pt;}
._1{margin-left:-3.347424pt;}
._6{margin-left:-2.337896pt;}
._3{margin-left:-1.301776pt;}
._19{width:1.753439pt;}
._5{width:2.668929pt;}
._2a{width:9.133773pt;}
._0{width:10.972112pt;}
._10{width:12.513022pt;}
._9{width:14.346240pt;}
._c{width:15.594872pt;}
._7{width:17.311130pt;}
._16{width:18.208857pt;}
._f{width:19.553263pt;}
._13{width:20.775342pt;}
._2{width:22.502128pt;}
._d{width:24.574568pt;}
._a{width:26.397082pt;}
._17{width:28.001548pt;}
._15{width:29.542430pt;}
._14{width:30.737938pt;}
._18{width:32.571066pt;}
._b{width:34.096230pt;}
._1d{width:35.493452pt;}
._1c{width:191.311778pt;}
._20{width:238.864896pt;}
._1e{width:294.097920pt;}
._1b{width:333.310976pt;}
._23{width:537.035716pt;}
._21{width:563.998515pt;}
._11{width:644.094097pt;}
._25{width:687.482435pt;}
._24{width:837.791342pt;}
._22{width:1010.692608pt;}
._26{width:1018.917786pt;}
._27{width:1106.334208pt;}
._1f{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fsb{font-size:42.507200pt;}
.fsc{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:14.848190pt;}
.y65{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y35{bottom:93.018667pt;}
.y1fc{bottom:94.549333pt;}
.y64{bottom:96.304000pt;}
.y1cb{bottom:96.397333pt;}
.y14e{bottom:96.492000pt;}
.y241{bottom:96.508000pt;}
.y279{bottom:96.980000pt;}
.y17d{bottom:100.494667pt;}
.y240{bottom:100.848000pt;}
.y2af{bottom:103.518667pt;}
.ye6{bottom:105.510667pt;}
.y1e8{bottom:105.909333pt;}
.y9d{bottom:106.308000pt;}
.y34{bottom:108.920000pt;}
.y1fb{bottom:109.892000pt;}
.y1e9{bottom:110.730667pt;}
.y278{bottom:112.322667pt;}
.y63{bottom:113.041333pt;}
.y1ca{bottom:113.134667pt;}
.y14d{bottom:113.229333pt;}
.y1fa{bottom:114.232000pt;}
.y2b2{bottom:114.809333pt;}
.y23f{bottom:114.845333pt;}
.y17c{bottom:117.230667pt;}
.yc9{bottom:118.237333pt;}
.y2ae{bottom:118.861333pt;}
.ye5{bottom:122.248000pt;}
.y1e7{bottom:122.646667pt;}
.y9c{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y33{bottom:124.820000pt;}
.y277{bottom:127.665333pt;}
.y62{bottom:129.778667pt;}
.y1c9{bottom:129.872000pt;}
.y14c{bottom:129.966667pt;}
.y2b1{bottom:130.152000pt;}
.y23e{bottom:130.188000pt;}
.y1f9{bottom:132.569333pt;}
.y17b{bottom:133.968000pt;}
.y2ad{bottom:134.202667pt;}
.y23d{bottom:134.528000pt;}
.yc8{bottom:135.750667pt;}
.ye4{bottom:138.985333pt;}
.y1e6{bottom:139.384000pt;}
.y9b{bottom:139.782667pt;}
.y32{bottom:140.720000pt;}
.y276{bottom:143.008000pt;}
.y2b0{bottom:145.494667pt;}
.y61{bottom:146.516000pt;}
.y1f8{bottom:146.568000pt;}
.y1c8{bottom:146.609333pt;}
.y14b{bottom:146.704000pt;}
.y194{bottom:146.940000pt;}
.y23c{bottom:148.526667pt;}
.y2ac{bottom:149.545333pt;}
.y17a{bottom:150.705333pt;}
.yc7{bottom:151.690667pt;}
.ye3{bottom:155.722667pt;}
.y1e5{bottom:156.121333pt;}
.y9a{bottom:156.520000pt;}
.y31{bottom:156.621333pt;}
.y275{bottom:158.350667pt;}
.y1f7{bottom:161.910667pt;}
.y60{bottom:163.253333pt;}
.y1c7{bottom:163.346667pt;}
.y14a{bottom:163.441333pt;}
.y193{bottom:163.677333pt;}
.y23b{bottom:163.869333pt;}
.y2ab{bottom:164.888000pt;}
.y1f6{bottom:166.250667pt;}
.y179{bottom:167.442667pt;}
.y119{bottom:168.873333pt;}
.ye2{bottom:172.460000pt;}
.y30{bottom:172.521333pt;}
.y1e4{bottom:172.858667pt;}
.y99{bottom:173.257333pt;}
.y274{bottom:173.693333pt;}
.y18{bottom:175.052000pt;}
.yc6{bottom:178.301333pt;}
.y23a{bottom:179.210667pt;}
.y5f{bottom:179.990667pt;}
.y1c6{bottom:180.084000pt;}
.y149{bottom:180.178667pt;}
.y2aa{bottom:180.230667pt;}
.y192{bottom:180.414667pt;}
.y239{bottom:183.550667pt;}
.y178{bottom:184.180000pt;}
.y1f5{bottom:184.588000pt;}
.y118{bottom:185.610667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2f{bottom:188.421333pt;}
.y273{bottom:189.036000pt;}
.ye1{bottom:189.197333pt;}
.y1e3{bottom:189.596000pt;}
.y98{bottom:189.994667pt;}
.yc5{bottom:194.241333pt;}
.y2a9{bottom:195.573333pt;}
.y5e{bottom:196.728000pt;}
.y1c5{bottom:196.821333pt;}
.y191{bottom:197.152000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y238{bottom:197.549333pt;}
.y148{bottom:200.901333pt;}
.y177{bottom:200.917333pt;}
.y117{bottom:202.348000pt;}
.y1f4{bottom:203.384000pt;}
.y2e{bottom:204.322667pt;}
.y272{bottom:204.377333pt;}
.y1df{bottom:205.934667pt;}
.y1e2{bottom:206.333333pt;}
.y97{bottom:206.732000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ye0{bottom:209.920000pt;}
.y2a8{bottom:210.916000pt;}
.y237{bottom:212.892000pt;}
.y5d{bottom:213.465333pt;}
.y1c4{bottom:213.558667pt;}
.y18f{bottom:213.889333pt;}
.y147{bottom:217.638667pt;}
.y176{bottom:217.654667pt;}
.y190{bottom:218.712000pt;}
.y116{bottom:219.085333pt;}
.y271{bottom:219.720000pt;}
.yc4{bottom:220.852000pt;}
.y1de{bottom:222.672000pt;}
.y1e1{bottom:223.070667pt;}
.y96{bottom:223.469333pt;}
.y2a7{bottom:226.258667pt;}
.y236{bottom:228.234667pt;}
.y5c{bottom:230.202667pt;}
.y1c3{bottom:230.294667pt;}
.y18e{bottom:230.626667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y235{bottom:232.573333pt;}
.y1f3{bottom:233.272000pt;}
.y146{bottom:234.376000pt;}
.y175{bottom:234.392000pt;}
.y270{bottom:235.062667pt;}
.y115{bottom:235.822667pt;}
.y1dd{bottom:239.409333pt;}
.ydf{bottom:239.808000pt;}
.y95{bottom:240.206667pt;}
.y2a6{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yc3{bottom:245.850667pt;}
.y5a{bottom:246.940000pt;}
.y1c2{bottom:247.032000pt;}
.y18d{bottom:247.364000pt;}
.y26f{bottom:250.405333pt;}
.y234{bottom:250.912000pt;}
.y145{bottom:251.113333pt;}
.y5b{bottom:251.761333pt;}
.y114{bottom:252.560000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y174{bottom:255.114667pt;}
.y1dc{bottom:256.146667pt;}
.ydd{bottom:256.545333pt;}
.y1f2{bottom:256.864000pt;}
.y94{bottom:256.944000pt;}
.yde{bottom:261.366667pt;}
.yc2{bottom:261.792000pt;}
.y59{bottom:263.677333pt;}
.y1c1{bottom:263.769333pt;}
.y18c{bottom:264.101333pt;}
.y26e{bottom:265.748000pt;}
.y2d{bottom:266.570667pt;}
.y144{bottom:267.850667pt;}
.y233{bottom:269.249333pt;}
.y113{bottom:269.297333pt;}
.y2a5{bottom:272.285333pt;}
.y1db{bottom:272.884000pt;}
.ydc{bottom:273.282667pt;}
.y93{bottom:273.681333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc1{bottom:277.732000pt;}
.y1f1{bottom:280.456000pt;}
.y1c0{bottom:280.506667pt;}
.y18b{bottom:280.838667pt;}
.y26d{bottom:281.090667pt;}
.y2c{bottom:282.470667pt;}
.y232{bottom:283.248000pt;}
.y58{bottom:284.400000pt;}
.y143{bottom:284.588000pt;}
.y173{bottom:285.002667pt;}
.y112{bottom:286.034667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2a4{bottom:287.628000pt;}
.y1da{bottom:289.621333pt;}
.ydb{bottom:290.020000pt;}
.y92{bottom:290.417333pt;}
.y26c{bottom:296.433333pt;}
.y18a{bottom:297.576000pt;}
.y2b{bottom:298.370667pt;}
.y231{bottom:298.590667pt;}
.yc0{bottom:300.313333pt;}
.y142{bottom:301.325333pt;}
.y172{bottom:301.740000pt;}
.y111{bottom:302.772000pt;}
.y2a3{bottom:302.970667pt;}
.y1f0{bottom:304.046667pt;}
.y1bf{bottom:305.442667pt;}
.y1d9{bottom:306.358667pt;}
.yda{bottom:306.757333pt;}
.y91{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y26b{bottom:311.776000pt;}
.y230{bottom:313.932000pt;}
.y2a{bottom:314.272000pt;}
.ybf{bottom:316.253333pt;}
.y141{bottom:318.062667pt;}
.y22f{bottom:318.272000pt;}
.y2a2{bottom:318.313333pt;}
.y171{bottom:318.477333pt;}
.y110{bottom:319.509333pt;}
.y1d8{bottom:323.096000pt;}
.yd9{bottom:323.494667pt;}
.y90{bottom:323.892000pt;}
.y26a{bottom:327.117333pt;}
.y1ef{bottom:327.638667pt;}
.y1be{bottom:330.681333pt;}
.ybe{bottom:332.194667pt;}
.y22e{bottom:332.270667pt;}
.y189{bottom:333.250667pt;}
.y2a1{bottom:333.656000pt;}
.y140{bottom:334.800000pt;}
.y170{bottom:335.214667pt;}
.y10f{bottom:336.246667pt;}
.y29{bottom:339.470667pt;}
.y1d7{bottom:339.833333pt;}
.yd8{bottom:340.232000pt;}
.y8f{bottom:340.629333pt;}
.y269{bottom:342.460000pt;}
.y1ee{bottom:343.260000pt;}
.ye{bottom:343.809333pt;}
.y22d{bottom:347.613333pt;}
.y2a0{bottom:348.998667pt;}
.y188{bottom:350.000000pt;}
.y1bd{bottom:350.088000pt;}
.y57{bottom:351.200000pt;}
.y13f{bottom:351.536000pt;}
.y16f{bottom:351.952000pt;}
.y10e{bottom:352.984000pt;}
.y28{bottom:355.370667pt;}
.y1d6{bottom:356.570667pt;}
.yd7{bottom:356.968000pt;}
.y8e{bottom:357.366667pt;}
.y268{bottom:357.802667pt;}
.ybd{bottom:358.804000pt;}
.y1ed{bottom:358.881333pt;}
.y1eb{bottom:360.953333pt;}
.yd{bottom:362.706666pt;}
.y29f{bottom:364.341333pt;}
.y22c{bottom:365.950667pt;}
.y13e{bottom:368.273333pt;}
.y16e{bottom:368.689333pt;}
.y10d{bottom:369.721333pt;}
.y187{bottom:371.013333pt;}
.y1bc{bottom:371.102667pt;}
.y267{bottom:373.145333pt;}
.y1d5{bottom:373.308000pt;}
.yd6{bottom:373.705333pt;}
.y8d{bottom:374.104000pt;}
.ybc{bottom:374.745333pt;}
.y27{bottom:379.241333pt;}
.y29e{bottom:379.684000pt;}
.y22b{bottom:381.293333pt;}
.y56{bottom:384.434667pt;}
.y13d{bottom:385.010667pt;}
.y16d{bottom:385.426667pt;}
.y22a{bottom:385.633333pt;}
.y10c{bottom:386.458667pt;}
.y266{bottom:388.488000pt;}
.y1d4{bottom:390.045333pt;}
.yd5{bottom:390.442667pt;}
.ybb{bottom:390.685333pt;}
.y8c{bottom:390.841333pt;}
.y186{bottom:392.028000pt;}
.y1bb{bottom:392.116000pt;}
.y29d{bottom:395.025333pt;}
.y26{bottom:395.141333pt;}
.y229{bottom:399.630667pt;}
.y55{bottom:401.730667pt;}
.y13c{bottom:401.748000pt;}
.y16c{bottom:402.164000pt;}
.y10b{bottom:403.196000pt;}
.y265{bottom:403.830667pt;}
.y1ba{bottom:406.728000pt;}
.y1d3{bottom:406.782667pt;}
.yd4{bottom:407.180000pt;}
.y8b{bottom:407.578667pt;}
.y29c{bottom:410.368000pt;}
.y25{bottom:411.042667pt;}
.y185{bottom:413.041333pt;}
.y228{bottom:414.973333pt;}
.yba{bottom:417.296000pt;}
.y13b{bottom:418.485333pt;}
.y16b{bottom:418.901333pt;}
.y54{bottom:419.025333pt;}
.y264{bottom:419.173333pt;}
.y227{bottom:419.313333pt;}
.y10a{bottom:419.933333pt;}
.y1b9{bottom:421.340000pt;}
.y1d2{bottom:423.518667pt;}
.yd3{bottom:423.917333pt;}
.y8a{bottom:424.316000pt;}
.y29b{bottom:425.710667pt;}
.y24{bottom:426.942667pt;}
.yb9{bottom:433.236000pt;}
.y263{bottom:434.516000pt;}
.y139{bottom:435.222667pt;}
.y16a{bottom:435.638667pt;}
.y1b5{bottom:435.952000pt;}
.y53{bottom:436.320000pt;}
.y109{bottom:436.670667pt;}
.y226{bottom:437.650667pt;}
.y13a{bottom:440.045333pt;}
.y1d1{bottom:440.256000pt;}
.yd2{bottom:440.654667pt;}
.y89{bottom:441.053333pt;}
.y184{bottom:441.148000pt;}
.y23{bottom:442.842667pt;}
.yc{bottom:446.990669pt;}
.yb8{bottom:449.176000pt;}
.y262{bottom:449.858667pt;}
.y1b8{bottom:450.564000pt;}
.y138{bottom:451.960000pt;}
.y168{bottom:452.376000pt;}
.y108{bottom:453.406667pt;}
.y52{bottom:453.616000pt;}
.y225{bottom:455.989333pt;}
.y29a{bottom:456.396000pt;}
.y1d0{bottom:456.993333pt;}
.y169{bottom:457.197333pt;}
.yd1{bottom:457.392000pt;}
.y88{bottom:457.790667pt;}
.y22{bottom:458.744000pt;}
.yb{bottom:462.990669pt;}
.yb7{bottom:465.116000pt;}
.y1b7{bottom:465.176000pt;}
.y261{bottom:465.200000pt;}
.y137{bottom:468.697333pt;}
.y167{bottom:469.113333pt;}
.y224{bottom:469.986667pt;}
.y107{bottom:470.144000pt;}
.y51{bottom:470.910667pt;}
.y299{bottom:471.738667pt;}
.y1cf{bottom:473.730667pt;}
.yd0{bottom:474.129333pt;}
.y87{bottom:474.528000pt;}
.ya{bottom:478.990666pt;}
.y1b6{bottom:479.788000pt;}
.y260{bottom:480.542667pt;}
.y223{bottom:485.329333pt;}
.y135{bottom:485.434667pt;}
.y166{bottom:485.850667pt;}
.y106{bottom:486.881333pt;}
.y298{bottom:487.081333pt;}
.y50{bottom:488.206667pt;}
.y136{bottom:490.257333pt;}
.y1ce{bottom:490.468000pt;}
.ycf{bottom:490.866667pt;}
.y86{bottom:491.265333pt;}
.yb6{bottom:491.726667pt;}
.y9{bottom:494.990666pt;}
.y25f{bottom:495.885333pt;}
.y222{bottom:500.672000pt;}
.y1b4{bottom:500.801333pt;}
.y134{bottom:502.172000pt;}
.y297{bottom:502.424000pt;}
.y165{bottom:502.586667pt;}
.y105{bottom:503.618667pt;}
.y4f{bottom:505.501333pt;}
.yce{bottom:507.604000pt;}
.yb5{bottom:507.666667pt;}
.y85{bottom:508.002667pt;}
.y1cd{bottom:511.190667pt;}
.y25e{bottom:511.228000pt;}
.y221{bottom:516.014667pt;}
.y296{bottom:517.766667pt;}
.y133{bottom:518.909333pt;}
.y164{bottom:519.324000pt;}
.y104{bottom:520.356000pt;}
.y1b3{bottom:521.816000pt;}
.y4e{bottom:522.796000pt;}
.ycd{bottom:524.341333pt;}
.y84{bottom:524.740000pt;}
.y1af{bottom:526.222667pt;}
.y25d{bottom:526.570667pt;}
.y220{bottom:531.357333pt;}
.y295{bottom:533.108000pt;}
.yb4{bottom:534.277333pt;}
.y132{bottom:535.646667pt;}
.y163{bottom:536.061333pt;}
.y103{bottom:537.093333pt;}
.y4d{bottom:540.092000pt;}
.y1ae{bottom:540.833333pt;}
.ycc{bottom:541.078667pt;}
.y83{bottom:541.477333pt;}
.y25c{bottom:541.913333pt;}
.y1b2{bottom:542.829333pt;}
.y294{bottom:548.450667pt;}
.y1b1{bottom:550.136000pt;}
.y21f{bottom:551.040000pt;}
.y131{bottom:552.384000pt;}
.y162{bottom:552.798667pt;}
.y102{bottom:553.830667pt;}
.y25b{bottom:557.256000pt;}
.y4c{bottom:557.386667pt;}
.ycb{bottom:557.816000pt;}
.y82{bottom:558.214667pt;}
.yb3{bottom:560.888000pt;}
.y293{bottom:563.793333pt;}
.y21e{bottom:565.037333pt;}
.y130{bottom:569.121333pt;}
.y160{bottom:569.536000pt;}
.y101{bottom:570.568000pt;}
.y25a{bottom:572.598667pt;}
.y8{bottom:573.786667pt;}
.y161{bottom:574.358667pt;}
.y183{bottom:574.553333pt;}
.y4b{bottom:574.681333pt;}
.y81{bottom:574.952000pt;}
.yb2{bottom:576.828000pt;}
.y1b0{bottom:578.454667pt;}
.yca{bottom:578.538667pt;}
.y292{bottom:579.136000pt;}
.y21d{bottom:580.380000pt;}
.y21c{bottom:584.720000pt;}
.y12e{bottom:585.858667pt;}
.y15f{bottom:586.273333pt;}
.y100{bottom:587.305333pt;}
.y259{bottom:587.940000pt;}
.y12f{bottom:590.680000pt;}
.y182{bottom:591.290667pt;}
.y80{bottom:591.689333pt;}
.y4a{bottom:591.977333pt;}
.y7{bottom:592.685334pt;}
.y291{bottom:594.478667pt;}
.y1cc{bottom:595.276000pt;}
.y21b{bottom:598.717333pt;}
.y1ad{bottom:599.469333pt;}
.y12d{bottom:602.596000pt;}
.y15e{bottom:603.010667pt;}
.y258{bottom:603.282667pt;}
.yff{bottom:604.042667pt;}
.y181{bottom:608.028000pt;}
.y7f{bottom:608.426667pt;}
.yb1{bottom:608.521333pt;}
.y49{bottom:609.272000pt;}
.y290{bottom:609.821333pt;}
.y21a{bottom:614.060000pt;}
.y219{bottom:618.400000pt;}
.y257{bottom:618.625333pt;}
.y12c{bottom:619.333333pt;}
.y15d{bottom:619.748000pt;}
.y1ac{bottom:620.482667pt;}
.yfe{bottom:624.765333pt;}
.y7e{bottom:625.164000pt;}
.y1aa{bottom:625.677333pt;}
.y48{bottom:626.568000pt;}
.y218{bottom:632.398667pt;}
.y256{bottom:633.968000pt;}
.y12a{bottom:636.070667pt;}
.y15c{bottom:636.485333pt;}
.y28f{bottom:640.506667pt;}
.y12b{bottom:640.892000pt;}
.y1ab{bottom:641.497333pt;}
.yb0{bottom:641.502667pt;}
.y7d{bottom:641.901333pt;}
.y47{bottom:643.862667pt;}
.y6{bottom:645.598667pt;}
.y217{bottom:647.741333pt;}
.y255{bottom:649.310667pt;}
.y15b{bottom:653.222667pt;}
.yfd{bottom:654.653333pt;}
.y28e{bottom:655.848000pt;}
.y129{bottom:656.793333pt;}
.yaf{bottom:658.240000pt;}
.y7c{bottom:658.638667pt;}
.y46{bottom:661.157333pt;}
.y1a9{bottom:662.510667pt;}
.y254{bottom:664.653333pt;}
.y216{bottom:667.422667pt;}
.y3{bottom:668.977329pt;}
.y15a{bottom:669.960000pt;}
.y28d{bottom:671.190667pt;}
.yfc{bottom:671.390667pt;}
.yae{bottom:674.977333pt;}
.y7b{bottom:675.376000pt;}
.y1a8{bottom:677.122667pt;}
.y45{bottom:678.453333pt;}
.y253{bottom:679.996000pt;}
.ye8{bottom:680.197333pt;}
.y215{bottom:685.761333pt;}
.y28c{bottom:686.533333pt;}
.y128{bottom:686.681333pt;}
.y159{bottom:686.697333pt;}
.yfb{bottom:688.128000pt;}
.yad{bottom:691.714667pt;}
.y1a7{bottom:691.734667pt;}
.y7a{bottom:692.113333pt;}
.y252{bottom:695.338667pt;}
.y1e0{bottom:695.700000pt;}
.y44{bottom:695.748000pt;}
.y28b{bottom:701.876000pt;}
.y214{bottom:703.232000pt;}
.y127{bottom:703.418667pt;}
.y158{bottom:703.434667pt;}
.yfa{bottom:704.865333pt;}
.y1a6{bottom:706.346667pt;}
.yac{bottom:708.452000pt;}
.y79{bottom:708.850667pt;}
.y251{bottom:710.681333pt;}
.y43{bottom:713.042667pt;}
.y1ea{bottom:713.672000pt;}
.y28a{bottom:717.218667pt;}
.y213{bottom:717.229333pt;}
.y157{bottom:720.172000pt;}
.y1a5{bottom:720.958667pt;}
.yf9{bottom:721.602667pt;}
.y126{bottom:724.140000pt;}
.yab{bottom:725.189333pt;}
.y78{bottom:725.588000pt;}
.y250{bottom:726.022667pt;}
.y42{bottom:730.338667pt;}
.y289{bottom:732.561333pt;}
.y212{bottom:732.572000pt;}
.y1a4{bottom:735.570667pt;}
.y156{bottom:736.909333pt;}
.yf8{bottom:738.340000pt;}
.y24f{bottom:741.365333pt;}
.yaa{bottom:741.926667pt;}
.y77{bottom:742.324000pt;}
.y1ec{bottom:745.910667pt;}
.y41{bottom:747.633333pt;}
.y288{bottom:747.904000pt;}
.y211{bottom:747.914667pt;}
.y1a3{bottom:750.182667pt;}
.y155{bottom:753.646667pt;}
.y125{bottom:754.028000pt;}
.yf7{bottom:755.077333pt;}
.y24e{bottom:756.708000pt;}
.ya9{bottom:758.664000pt;}
.y76{bottom:759.061333pt;}
.y287{bottom:763.246667pt;}
.y210{bottom:763.257333pt;}
.y1a2{bottom:764.794667pt;}
.y40{bottom:764.929333pt;}
.y154{bottom:770.384000pt;}
.yf6{bottom:771.814667pt;}
.y24d{bottom:772.050667pt;}
.ya8{bottom:775.401333pt;}
.y75{bottom:775.798667pt;}
.y286{bottom:778.589333pt;}
.y20f{bottom:778.600000pt;}
.y180{bottom:780.222667pt;}
.y2{bottom:781.661334pt;}
.y124{bottom:781.732000pt;}
.y20e{bottom:782.940000pt;}
.y1a1{bottom:785.808000pt;}
.y153{bottom:787.121333pt;}
.y24c{bottom:787.393333pt;}
.yf5{bottom:788.552000pt;}
.ya7{bottom:792.138667pt;}
.y74{bottom:792.536000pt;}
.y285{bottom:793.930667pt;}
.y123{bottom:798.482667pt;}
.y3f{bottom:799.226667pt;}
.y20d{bottom:801.277333pt;}
.y24b{bottom:802.736000pt;}
.y152{bottom:803.858667pt;}
.yf4{bottom:805.289333pt;}
.y1a0{bottom:806.822667pt;}
.ya5{bottom:808.874667pt;}
.y73{bottom:809.273333pt;}
.y17f{bottom:812.860000pt;}
.ya6{bottom:813.697333pt;}
.ye7{bottom:814.096000pt;}
.y19f{bottom:814.128000pt;}
.y20c{bottom:815.276000pt;}
.y3e{bottom:817.430667pt;}
.y24a{bottom:818.078667pt;}
.y122{bottom:819.496000pt;}
.y151{bottom:820.596000pt;}
.yf3{bottom:822.025333pt;}
.y284{bottom:824.616000pt;}
.ya4{bottom:825.612000pt;}
.y72{bottom:826.010667pt;}
.y3d{bottom:827.920000pt;}
.y20b{bottom:830.618667pt;}
.y249{bottom:833.421333pt;}
.y20a{bottom:834.957333pt;}
.yf1{bottom:838.762667pt;}
.y283{bottom:839.958667pt;}
.y121{bottom:840.510667pt;}
.y150{bottom:841.318667pt;}
.ya3{bottom:842.349333pt;}
.y19e{bottom:842.448000pt;}
.y71{bottom:842.748000pt;}
.yf2{bottom:843.585333pt;}
.y3c{bottom:846.122667pt;}
.y248{bottom:848.762667pt;}
.y209{bottom:848.956000pt;}
.y19d{bottom:849.753333pt;}
.y282{bottom:855.301333pt;}
.yf0{bottom:855.500000pt;}
.y14f{bottom:858.054667pt;}
.ya1{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y70{bottom:859.485333pt;}
.y120{bottom:861.524000pt;}
.ya2{bottom:863.909333pt;}
.y247{bottom:864.105333pt;}
.y208{bottom:864.298667pt;}
.y17e{bottom:864.308000pt;}
.y207{bottom:868.638667pt;}
.y281{bottom:870.644000pt;}
.yef{bottom:872.237333pt;}
.ya0{bottom:875.824000pt;}
.y6f{bottom:876.222667pt;}
.y19c{bottom:878.073333pt;}
.y246{bottom:879.448000pt;}
.y11f{bottom:882.538667pt;}
.y206{bottom:882.636000pt;}
.y196{bottom:884.825333pt;}
.y3b{bottom:885.836000pt;}
.y280{bottom:885.986667pt;}
.yee{bottom:888.974667pt;}
.y9f{bottom:892.561333pt;}
.y6e{bottom:892.960000pt;}
.y205{bottom:897.978667pt;}
.y245{bottom:898.776000pt;}
.y19b{bottom:899.088000pt;}
.y27f{bottom:901.329333pt;}
.y204{bottom:902.318667pt;}
.y11e{bottom:903.552000pt;}
.yed{bottom:905.712000pt;}
.y6d{bottom:909.697333pt;}
.y9e{bottom:913.284000pt;}
.y19a{bottom:913.700000pt;}
.y203{bottom:916.316000pt;}
.y27e{bottom:916.670667pt;}
.y197{bottom:921.005333pt;}
.y3a{bottom:921.320000pt;}
.yec{bottom:922.449333pt;}
.y11d{bottom:924.566667pt;}
.y6c{bottom:926.434667pt;}
.y199{bottom:928.312000pt;}
.y244{bottom:928.664000pt;}
.y202{bottom:931.658667pt;}
.y27d{bottom:932.013333pt;}
.yeb{bottom:939.186667pt;}
.y198{bottom:942.924000pt;}
.y6b{bottom:943.172000pt;}
.y243{bottom:944.006667pt;}
.y11c{bottom:945.580000pt;}
.y39{bottom:946.425333pt;}
.y201{bottom:947.001333pt;}
.y27c{bottom:947.356000pt;}
.y242{bottom:948.346667pt;}
.yea{bottom:955.924000pt;}
.y6a{bottom:959.909333pt;}
.y200{bottom:962.344000pt;}
.y27b{bottom:962.698667pt;}
.y195{bottom:963.937333pt;}
.y11b{bottom:966.594667pt;}
.y38{bottom:971.530667pt;}
.ye9{bottom:972.661333pt;}
.y69{bottom:976.646667pt;}
.y1ff{bottom:977.686667pt;}
.y27a{bottom:978.041333pt;}
.y1fe{bottom:993.029333pt;}
.y67{bottom:993.384000pt;}
.y11a{bottom:994.700000pt;}
.y1fd{bottom:997.369333pt;}
.y68{bottom:998.205333pt;}
.y36{bottom:1010.186667pt;}
.y66{bottom:1046.810667pt;}
.h10{height:23.209028pt;}
.h19{height:24.582445pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h16{height:29.397999pt;}
.h11{height:30.945242pt;}
.h17{height:31.200285pt;}
.h1c{height:34.574438pt;}
.h1d{height:34.717901pt;}
.h12{height:34.813542pt;}
.h20{height:35.100467pt;}
.h14{height:38.415786pt;}
.h15{height:38.681455pt;}
.hd{height:39.000258pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h13{height:43.660390pt;}
.hb{height:45.271688pt;}
.hf{height:48.481423pt;}
.h1b{height:48.511220pt;}
.h18{height:48.683332pt;}
.h1a{height:48.688666pt;}
.h2{height:48.960000pt;}
.h1e{height:64.040209pt;}
.h21{height:64.321801pt;}
.h1f{height:64.327134pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.hc{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;}
.x43{left:42.642667pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x39{left:55.592000pt;}
.x44{left:74.804000pt;}
.x42{left:76.346667pt;}
.x45{left:82.592000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x46{left:96.290667pt;}
.x3a{left:163.358667pt;}
.x4{left:180.874667pt;}
.x28{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.x13{left:229.994667pt;}
.x8{left:239.924000pt;}
.xa{left:250.204000pt;}
.x23{left:252.608000pt;}
.x14{left:257.868000pt;}
.x36{left:260.822667pt;}
.x1b{left:265.154667pt;}
.x35{left:273.112000pt;}
.x37{left:274.018667pt;}
.x17{left:275.790667pt;}
.x40{left:278.893333pt;}
.x18{left:284.754667pt;}
.x38{left:289.909333pt;}
.x41{left:292.982667pt;}
.x29{left:301.686667pt;}
.x2a{left:315.770667pt;}
.x32{left:328.974667pt;}
.x11{left:336.392000pt;}
.x2d{left:339.284000pt;}
.x12{left:344.838667pt;}
.xb{left:355.373333pt;}
.xc{left:365.272000pt;}
.x1c{left:366.949333pt;}
.x34{left:385.428000pt;}
.x3{left:404.408000pt;}
.x19{left:420.845333pt;}
.x1a{left:434.906667pt;}
.x3b{left:443.925333pt;}
.x1f{left:479.017333pt;}
.x3c{left:492.097333pt;}
.x20{left:494.496000pt;}
.x3d{left:506.190667pt;}
.x47{left:546.001333pt;}
.x21{left:551.190667pt;}
.x48{left:563.068000pt;}
.x22{left:565.264000pt;}
.x2e{left:566.621333pt;}
.x2f{left:580.686667pt;}
.xd{left:582.462667pt;}
.x2b{left:583.504000pt;}
.xe{left:593.076000pt;}
.x2c{left:598.724000pt;}
.x24{left:611.158667pt;}
.x25{left:626.378667pt;}
.xf{left:630.661333pt;}
.x10{left:639.705333pt;}
.x30{left:666.877333pt;}
.x26{left:673.972000pt;}
.x31{left:682.097333pt;}
.x1d{left:683.493333pt;}
.x33{left:688.506667pt;}
.x15{left:690.064000pt;}
.x16{left:699.758667pt;}
.x3e{left:707.108000pt;}
.x27{left:719.352000pt;}
.x3f{left:721.189333pt;}
.x1e{left:734.941333pt;}
}




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