
    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_cda031572268385af5b03690.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d305ec720f2e24ffe2d48866.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_12e5b077efd764d0e9aba64b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_19fdfa427b9293a1f73efacc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_f21bf90f583c089b7afd7388.woff')format("woff");}.ff5{font-family:ff5;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m23{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);}
.mf{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);}
.m1{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);}
.m1e{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);}
.m2e{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m14{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m12{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);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m11{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);}
.m1c{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);}
.m9{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);}
.m10{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m26{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);}
.m2b{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m2f{transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250753,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m31{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m8{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);}
.m1a{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);}
.m2d{transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252259,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m25{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);}
.mc{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);}
.m5{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);}
.m13{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);}
.md{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);}
.m21{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);}
.m1b{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);}
.m19{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);}
.m27{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.m32{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls7{letter-spacing:-12.050304px;}
.ls8{letter-spacing:-6.778296px;}
.ls6{letter-spacing:-0.806940px;}
.ls5{letter-spacing:-0.484164px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.ls9{letter-spacing:13.395802px;}
.ls12{letter-spacing:16.979274px;}
.lsc{letter-spacing:17.048016px;}
.lsa{letter-spacing:17.185500px;}
.lse{letter-spacing:17.322984px;}
.ls11{letter-spacing:17.391726px;}
.ls10{letter-spacing:17.460468px;}
.ls13{letter-spacing:17.529210px;}
.lsf{letter-spacing:18.835308px;}
.lsd{letter-spacing:24.953346px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.wsa5{word-spacing:-17.185500px;}
.ws10e{word-spacing:-12.964836px;}
.ws138{word-spacing:-3.780810px;}
.wsa1{word-spacing:-3.712068px;}
.ws2a{word-spacing:-3.574584px;}
.ws86{word-spacing:-3.505842px;}
.wsf5{word-spacing:-3.437100px;}
.ws7d{word-spacing:-3.368358px;}
.ws78{word-spacing:-3.299616px;}
.ws130{word-spacing:-3.230874px;}
.ws38{word-spacing:-3.162132px;}
.ws11{word-spacing:-3.108331px;}
.ws7c{word-spacing:-3.093390px;}
.ws12b{word-spacing:-3.024648px;}
.ws11b{word-spacing:-3.014976px;}
.ws12{word-spacing:-2.988780px;}
.wsc1{word-spacing:-2.955906px;}
.ws11d{word-spacing:-2.955498px;}
.ws71{word-spacing:-2.887164px;}
.ws2c{word-spacing:-2.818422px;}
.wsb6{word-spacing:-2.543454px;}
.wsa3{word-spacing:-2.474712px;}
.ws35{word-spacing:-2.405970px;}
.ws7e{word-spacing:-2.337228px;}
.wsa2{word-spacing:-2.268486px;}
.ws122{word-spacing:-2.205532px;}
.ws9d{word-spacing:-2.199744px;}
.ws7{word-spacing:-2.092146px;}
.ws3a{word-spacing:-2.062260px;}
.ws4c{word-spacing:-1.993518px;}
.wsdc{word-spacing:-1.924776px;}
.ws37{word-spacing:-1.856034px;}
.ws76{word-spacing:-1.787292px;}
.ws3c{word-spacing:-1.649808px;}
.wsa0{word-spacing:-1.581066px;}
.ws6e{word-spacing:-1.512324px;}
.ws148{word-spacing:-1.443582px;}
.ws13c{word-spacing:-1.374840px;}
.ws5c{word-spacing:-1.306098px;}
.ws12e{word-spacing:-1.237356px;}
.wsee{word-spacing:-1.168614px;}
.wsd6{word-spacing:-1.099872px;}
.wsd0{word-spacing:-1.031130px;}
.ws87{word-spacing:-0.962388px;}
.ws50{word-spacing:-0.893646px;}
.ws39{word-spacing:-0.824904px;}
.ws79{word-spacing:-0.756162px;}
.wsb5{word-spacing:-0.687420px;}
.wsbb{word-spacing:-0.618678px;}
.ws80{word-spacing:-0.549936px;}
.ws49{word-spacing:-0.481194px;}
.ws9{word-spacing:-0.478205px;}
.ws3e{word-spacing:-0.412452px;}
.ws48{word-spacing:-0.343710px;}
.wsc{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.274968px;}
.ws6{word-spacing:-0.239102px;}
.ws10c{word-spacing:-0.215945px;}
.ws19{word-spacing:-0.206226px;}
.ws123{word-spacing:-0.162337px;}
.ws126{word-spacing:-0.156381px;}
.ws1b{word-spacing:-0.137484px;}
.ws30{word-spacing:-0.068742px;}
.ws102{word-spacing:-0.053796px;}
.ws113{word-spacing:-0.052665px;}
.ws1{word-spacing:-0.047821px;}
.ws105{word-spacing:-0.047281px;}
.wsfe{word-spacing:-0.002862px;}
.ws10a{word-spacing:-0.000288px;}
.ws3{word-spacing:0.000000px;}
.ws100{word-spacing:0.000948px;}
.ws116{word-spacing:0.002796px;}
.ws121{word-spacing:0.003000px;}
.ws107{word-spacing:0.004152px;}
.ws125{word-spacing:0.006972px;}
.ws109{word-spacing:0.006980px;}
.ws114{word-spacing:0.007068px;}
.wsff{word-spacing:0.007188px;}
.ws129{word-spacing:0.007644px;}
.ws106{word-spacing:0.010152px;}
.ws10f{word-spacing:0.012396px;}
.ws10{word-spacing:0.059776px;}
.ws28{word-spacing:0.068742px;}
.ws13{word-spacing:0.107597px;}
.ws15{word-spacing:0.137484px;}
.ws22{word-spacing:0.206226px;}
.ws103{word-spacing:0.210955px;}
.wse{word-spacing:0.239102px;}
.ws1f{word-spacing:0.274968px;}
.ws111{word-spacing:0.317513px;}
.ws32{word-spacing:0.343710px;}
.ws93{word-spacing:0.412452px;}
.ws2{word-spacing:0.413170px;}
.wsd{word-spacing:0.418429px;}
.ws8{word-spacing:0.478205px;}
.ws6d{word-spacing:0.481194px;}
.ws4b{word-spacing:0.549936px;}
.wsa{word-spacing:0.597756px;}
.ws5e{word-spacing:0.618678px;}
.ws3d{word-spacing:0.687420px;}
.ws68{word-spacing:0.756162px;}
.ws31{word-spacing:0.824904px;}
.ws81{word-spacing:0.893646px;}
.ws34{word-spacing:0.962388px;}
.wsbf{word-spacing:1.031130px;}
.ws58{word-spacing:1.099872px;}
.wsde{word-spacing:1.168614px;}
.ws21{word-spacing:1.237356px;}
.ws12d{word-spacing:1.306098px;}
.ws70{word-spacing:1.374840px;}
.ws92{word-spacing:1.443582px;}
.ws24{word-spacing:1.512324px;}
.wscb{word-spacing:1.581066px;}
.ws115{word-spacing:1.613268px;}
.ws29{word-spacing:1.649808px;}
.ws99{word-spacing:1.718550px;}
.wsd3{word-spacing:1.721549px;}
.ws2b{word-spacing:1.787292px;}
.ws45{word-spacing:1.856034px;}
.ws25{word-spacing:1.993518px;}
.ws8a{word-spacing:2.062260px;}
.ws5{word-spacing:2.092146px;}
.ws8f{word-spacing:2.131002px;}
.ws124{word-spacing:2.146382px;}
.ws8e{word-spacing:2.199744px;}
.ws47{word-spacing:2.268486px;}
.wsbc{word-spacing:2.337228px;}
.ws1e{word-spacing:2.474712px;}
.ws43{word-spacing:2.543454px;}
.ws1a{word-spacing:2.612196px;}
.wsf{word-spacing:2.630126px;}
.wse7{word-spacing:2.680938px;}
.wsc9{word-spacing:2.749680px;}
.ws120{word-spacing:2.791828px;}
.ws11e{word-spacing:2.793392px;}
.ws82{word-spacing:2.818422px;}
.ws20{word-spacing:2.887164px;}
.ws73{word-spacing:2.955906px;}
.ws72{word-spacing:3.024648px;}
.ws23{word-spacing:3.093390px;}
.ws55{word-spacing:3.162132px;}
.ws2e{word-spacing:3.230874px;}
.ws41{word-spacing:3.299616px;}
.ws7f{word-spacing:3.368358px;}
.ws1d{word-spacing:3.437100px;}
.ws2d{word-spacing:3.505842px;}
.wsb8{word-spacing:3.574584px;}
.ws26{word-spacing:3.643326px;}
.wsd5{word-spacing:3.712068px;}
.ws134{word-spacing:3.712090px;}
.ws12f{word-spacing:3.780810px;}
.ws149{word-spacing:3.849552px;}
.ws46{word-spacing:3.918294px;}
.wsa4{word-spacing:3.987036px;}
.ws4e{word-spacing:4.055778px;}
.ws56{word-spacing:4.124520px;}
.wsc3{word-spacing:4.193262px;}
.ws44{word-spacing:4.262004px;}
.wsb{word-spacing:4.303843px;}
.ws8d{word-spacing:4.330746px;}
.ws75{word-spacing:4.399488px;}
.wsb7{word-spacing:4.536972px;}
.ws33{word-spacing:4.605714px;}
.ws42{word-spacing:4.674456px;}
.ws1c{word-spacing:4.743198px;}
.ws40{word-spacing:4.811940px;}
.ws57{word-spacing:4.880682px;}
.ws95{word-spacing:4.949424px;}
.ws63{word-spacing:5.018166px;}
.ws67{word-spacing:5.086908px;}
.ws27{word-spacing:5.155650px;}
.ws4f{word-spacing:5.224392px;}
.ws53{word-spacing:5.293134px;}
.ws6a{word-spacing:5.361876px;}
.wsc6{word-spacing:5.430618px;}
.ws13a{word-spacing:5.568102px;}
.wsba{word-spacing:5.636844px;}
.ws69{word-spacing:5.705586px;}
.ws108{word-spacing:5.745937px;}
.ws9c{word-spacing:5.774328px;}
.ws6c{word-spacing:5.843070px;}
.ws5f{word-spacing:5.911812px;}
.ws5d{word-spacing:5.980554px;}
.wsc2{word-spacing:6.049296px;}
.wsb0{word-spacing:6.118038px;}
.ws128{word-spacing:6.178952px;}
.ws65{word-spacing:6.186780px;}
.wsc0{word-spacing:6.255522px;}
.ws10b{word-spacing:6.285956px;}
.ws36{word-spacing:6.324264px;}
.ws112{word-spacing:6.343646px;}
.ws10d{word-spacing:6.393136px;}
.wsb2{word-spacing:6.461748px;}
.wsb1{word-spacing:6.530490px;}
.wsa9{word-spacing:6.599232px;}
.ws11c{word-spacing:6.615249px;}
.wsb4{word-spacing:6.667974px;}
.wsf4{word-spacing:6.736716px;}
.ws16{word-spacing:6.805458px;}
.ws94{word-spacing:6.874200px;}
.wsea{word-spacing:6.942942px;}
.ws83{word-spacing:7.011684px;}
.ws7a{word-spacing:7.080426px;}
.ws104{word-spacing:7.094284px;}
.wsaa{word-spacing:7.149168px;}
.wsca{word-spacing:7.217910px;}
.ws117{word-spacing:7.263472px;}
.wsf7{word-spacing:7.286652px;}
.ws77{word-spacing:7.355394px;}
.ws5a{word-spacing:7.424136px;}
.ws2f{word-spacing:7.492878px;}
.ws91{word-spacing:7.561620px;}
.ws98{word-spacing:7.630362px;}
.wsad{word-spacing:7.699104px;}
.ws4d{word-spacing:7.767846px;}
.ws84{word-spacing:7.836588px;}
.ws8c{word-spacing:7.905330px;}
.wse8{word-spacing:7.974072px;}
.ws7b{word-spacing:8.042814px;}
.wscf{word-spacing:8.111556px;}
.wsda{word-spacing:8.180298px;}
.ws54{word-spacing:8.249040px;}
.ws64{word-spacing:8.317782px;}
.ws66{word-spacing:8.386524px;}
.wsd1{word-spacing:8.455266px;}
.ws6b{word-spacing:8.524008px;}
.wsbd{word-spacing:8.592750px;}
.wsfb{word-spacing:8.661492px;}
.ws59{word-spacing:8.730234px;}
.ws119{word-spacing:8.760937px;}
.wsf8{word-spacing:8.798976px;}
.ws52{word-spacing:8.867718px;}
.ws3b{word-spacing:8.936460px;}
.ws5b{word-spacing:9.005202px;}
.ws74{word-spacing:9.073944px;}
.wscc{word-spacing:9.142686px;}
.wsb3{word-spacing:9.211428px;}
.ws3f{word-spacing:9.280170px;}
.ws118{word-spacing:9.317467px;}
.ws85{word-spacing:9.348912px;}
.wsd4{word-spacing:9.417654px;}
.ws90{word-spacing:9.486396px;}
.ws131{word-spacing:9.555138px;}
.wsbe{word-spacing:9.623880px;}
.wsf6{word-spacing:9.692622px;}
.wsdb{word-spacing:9.761364px;}
.ws4a{word-spacing:9.830106px;}
.wsce{word-spacing:9.967590px;}
.ws51{word-spacing:10.105074px;}
.wsb9{word-spacing:10.173816px;}
.ws133{word-spacing:10.448784px;}
.wsaf{word-spacing:10.723752px;}
.wscd{word-spacing:10.861236px;}
.ws143{word-spacing:10.998720px;}
.wsed{word-spacing:11.136204px;}
.ws8b{word-spacing:11.204946px;}
.wsc8{word-spacing:11.273688px;}
.wse9{word-spacing:11.342430px;}
.ws13b{word-spacing:11.411172px;}
.wsa8{word-spacing:11.479914px;}
.wseb{word-spacing:11.754882px;}
.ws13f{word-spacing:11.823624px;}
.wse6{word-spacing:12.029850px;}
.ws139{word-spacing:12.167334px;}
.ws88{word-spacing:12.236076px;}
.wse5{word-spacing:12.304818px;}
.wsfa{word-spacing:12.511044px;}
.wse3{word-spacing:12.648528px;}
.ws9a{word-spacing:12.717270px;}
.ws89{word-spacing:13.267206px;}
.wsd2{word-spacing:13.395802px;}
.ws101{word-spacing:13.405752px;}
.wse1{word-spacing:13.679658px;}
.wsc7{word-spacing:13.748400px;}
.ws9e{word-spacing:13.817142px;}
.wsec{word-spacing:13.885884px;}
.wsa6{word-spacing:13.954626px;}
.wsa7{word-spacing:14.023368px;}
.wsd8{word-spacing:14.092110px;}
.ws13e{word-spacing:14.160852px;}
.ws127{word-spacing:14.245576px;}
.wsac{word-spacing:14.298336px;}
.wse2{word-spacing:14.435820px;}
.wsfd{word-spacing:14.504562px;}
.wse0{word-spacing:14.642046px;}
.wsfc{word-spacing:14.779530px;}
.ws142{word-spacing:14.848272px;}
.ws61{word-spacing:14.985756px;}
.ws11a{word-spacing:15.062892px;}
.ws145{word-spacing:15.535692px;}
.wse4{word-spacing:15.673176px;}
.wsdf{word-spacing:15.810660px;}
.ws132{word-spacing:15.879402px;}
.ws146{word-spacing:16.291854px;}
.ws11f{word-spacing:16.432913px;}
.ws97{word-spacing:16.635564px;}
.ws96{word-spacing:16.704306px;}
.ws12a{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.ws12c{word-spacing:17.048016px;}
.wsab{word-spacing:17.597952px;}
.ws17{word-spacing:18.422856px;}
.wsdd{word-spacing:19.349392px;}
.ws144{word-spacing:19.591470px;}
.ws9f{word-spacing:20.072664px;}
.ws141{word-spacing:20.347632px;}
.ws60{word-spacing:20.897568px;}
.ws4{word-spacing:25.225303px;}
.ws62{word-spacing:25.915734px;}
.wsae{word-spacing:30.383964px;}
.wsc5{word-spacing:35.677098px;}
.wsc4{word-spacing:35.745840px;}
.wsd7{word-spacing:42.207588px;}
.ws6f{word-spacing:50.181660px;}
.ws13d{word-spacing:50.937822px;}
.ws9b{word-spacing:52.931340px;}
.ws135{word-spacing:58.263667px;}
.ws136{word-spacing:58.317466px;}
.wsef{word-spacing:71.713267px;}
.ws140{word-spacing:74.310102px;}
.ws14{word-spacing:77.630692px;}
.ws137{word-spacing:112.062067px;}
.wsf1{word-spacing:153.433037px;}
.wsf3{word-spacing:166.559846px;}
.wsf0{word-spacing:193.459046px;}
.wsf9{word-spacing:199.645862px;}
.ws110{word-spacing:200.457000px;}
.wsf2{word-spacing:241.931405px;}
.ws147{word-spacing:940.539258px;}
.wsd9{word-spacing:943.119258px;}
._6{margin-left:-13.944474px;}
._25{margin-left:-9.761358px;}
._4{margin-left:-8.263392px;}
._2{margin-left:-7.230468px;}
._8{margin-left:-6.216672px;}
._5{margin-left:-5.164620px;}
._9{margin-left:-4.094627px;}
._1{margin-left:-2.582310px;}
._7{margin-left:-1.165626px;}
._0{width:1.386797px;}
._53{width:2.884176px;}
._54{width:4.193262px;}
._42{width:5.998254px;}
._52{width:9.758377px;}
._41{width:12.987719px;}
._27{width:14.680902px;}
._c{width:16.380935px;}
._b{width:17.394703px;}
._d{width:19.319478px;}
._a{width:20.443255px;}
._12{width:22.173780px;}
._11{width:23.234796px;}
._14{width:25.129686px;}
._f{width:26.543382px;}
._13{width:27.670164px;}
._10{width:29.696544px;}
._17{width:30.736644px;}
._3{width:32.020644px;}
._28{width:33.378719px;}
._16{width:34.616082px;}
._1e{width:36.089550px;}
._1a{width:37.365762px;}
._22{width:38.878086px;}
._20{width:40.312698px;}
._24{width:41.863878px;}
._1d{width:43.376202px;}
._29{width:44.476074px;}
._19{width:45.919656px;}
._18{width:47.638206px;}
._15{width:49.601838px;}
._31{width:51.153018px;}
._32{width:55.818504px;}
._51{width:58.430700px;}
._e{width:59.446836px;}
._26{width:64.754964px;}
._1c{width:67.367160px;}
._1b{width:68.742000px;}
._21{width:69.979356px;}
._44{width:73.757606px;}
._30{width:77.708400px;}
._23{width:83.079192px;}
._1f{width:99.646014px;}
._3a{width:106.899288px;}
._45{width:115.827955px;}
._46{width:147.891802px;}
._49{width:165.053491px;}
._33{width:167.313024px;}
._38{width:179.202470px;}
._4e{width:191.576102px;}
._37{width:194.212224px;}
._2b{width:198.067770px;}
._50{width:199.323072px;}
._48{width:204.971904px;}
._36{width:206.908646px;}
._3e{width:213.906000px;}
._3c{width:220.625424px;}
._39{width:233.807846px;}
._3f{width:244.839000px;}
._3d{width:259.206576px;}
._34{width:265.441306px;}
._35{width:275.591264px;}
._40{width:302.349000px;}
._2e{width:310.201574px;}
._4c{width:338.015347px;}
._43{width:352.702310px;}
._4d{width:364.914547px;}
._2c{width:383.421197px;}
._2f{width:384.927552px;}
._2a{width:393.373901px;}
._4f{width:394.826458px;}
._2d{width:440.931686px;}
._47{width:499.410547px;}
._4b{width:511.353792px;}
._4a{width:526.309747px;}
._3b{width:638.048010px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:53.796000px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.ya2{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y193{bottom:89.313000px;}
.y80{bottom:89.719500px;}
.y1ae{bottom:90.327000px;}
.y1ed{bottom:90.546000px;}
.y52{bottom:90.733500px;}
.ya1{bottom:93.739500px;}
.yc9{bottom:94.584000px;}
.yf0{bottom:95.598000px;}
.y217{bottom:99.448500px;}
.y12c{bottom:100.462500px;}
.y158{bottom:102.589500px;}
.y25{bottom:105.657000px;}
.y268{bottom:106.497000px;}
.y283{bottom:107.511000px;}
.y10f{bottom:107.512500px;}
.y16b{bottom:108.145500px;}
.y127{bottom:108.526500px;}
.y172{bottom:109.159500px;}
.y192{bottom:112.110000px;}
.y7f{bottom:112.516500px;}
.y1ad{bottom:113.124000px;}
.y1ec{bottom:113.343000px;}
.y51{bottom:113.530500px;}
.ya0{bottom:116.536500px;}
.yc8{bottom:117.381000px;}
.yef{bottom:118.395000px;}
.y23e{bottom:119.071500px;}
.y216{bottom:122.245500px;}
.y12b{bottom:123.259500px;}
.y157{bottom:125.386500px;}
.y28b{bottom:127.092000px;}
.y24{bottom:128.455500px;}
.y267{bottom:129.294000px;}
.y282{bottom:130.308000px;}
.y10e{bottom:130.309500px;}
.y16a{bottom:130.942500px;}
.y126{bottom:131.323500px;}
.y171{bottom:131.956500px;}
.y191{bottom:134.907000px;}
.y7e{bottom:135.313500px;}
.y1ac{bottom:135.921000px;}
.y1eb{bottom:136.140000px;}
.y50{bottom:136.327500px;}
.y9f{bottom:139.333500px;}
.yc7{bottom:140.178000px;}
.yee{bottom:141.192000px;}
.y23d{bottom:141.868500px;}
.y215{bottom:145.042500px;}
.y12a{bottom:146.056500px;}
.y156{bottom:148.183500px;}
.y28a{bottom:149.889000px;}
.y23{bottom:151.252500px;}
.y266{bottom:152.091000px;}
.y281{bottom:153.105000px;}
.y10d{bottom:153.106500px;}
.y169{bottom:153.739500px;}
.y125{bottom:154.120500px;}
.y170{bottom:154.753500px;}
.y190{bottom:157.704000px;}
.y7d{bottom:158.110500px;}
.y1ab{bottom:158.718000px;}
.y1ea{bottom:158.937000px;}
.y4f{bottom:159.124500px;}
.y9e{bottom:162.130500px;}
.yc6{bottom:162.975000px;}
.yed{bottom:163.989000px;}
.y23c{bottom:164.665500px;}
.y214{bottom:167.839500px;}
.y129{bottom:168.853500px;}
.y155{bottom:170.980500px;}
.y289{bottom:172.686000px;}
.y22{bottom:174.049500px;}
.y265{bottom:174.888000px;}
.y280{bottom:175.902000px;}
.y10c{bottom:175.903500px;}
.y168{bottom:176.536500px;}
.y124{bottom:176.917500px;}
.y16f{bottom:177.550500px;}
.y18f{bottom:180.501000px;}
.y7c{bottom:180.907500px;}
.y1aa{bottom:181.515000px;}
.y1e9{bottom:181.734000px;}
.y4e{bottom:181.921500px;}
.y9d{bottom:184.927500px;}
.yc5{bottom:185.772000px;}
.yec{bottom:186.786000px;}
.y23b{bottom:187.462500px;}
.y213{bottom:190.636500px;}
.y128{bottom:191.650500px;}
.y154{bottom:193.777500px;}
.y288{bottom:195.483000px;}
.y21{bottom:196.846500px;}
.y264{bottom:197.685000px;}
.y27f{bottom:198.699000px;}
.y10b{bottom:198.700500px;}
.y167{bottom:199.333500px;}
.y123{bottom:199.714500px;}
.y16e{bottom:200.347500px;}
.y18e{bottom:203.298000px;}
.y7b{bottom:203.704500px;}
.y1a9{bottom:204.312000px;}
.y1e8{bottom:204.531000px;}
.y4d{bottom:204.718500px;}
.y9c{bottom:207.724500px;}
.yc4{bottom:208.569000px;}
.yeb{bottom:209.583000px;}
.y23a{bottom:210.259500px;}
.y212{bottom:215.745000px;}
.y153{bottom:216.574500px;}
.y287{bottom:218.280000px;}
.y20{bottom:219.643500px;}
.y263{bottom:220.482000px;}
.y27e{bottom:221.496000px;}
.y10a{bottom:221.499000px;}
.y166{bottom:222.130500px;}
.y122{bottom:222.513000px;}
.y16d{bottom:223.144500px;}
.y18d{bottom:226.095000px;}
.y7a{bottom:226.501500px;}
.y1a8{bottom:227.109000px;}
.y1e7{bottom:227.328000px;}
.y4c{bottom:227.515500px;}
.yc3{bottom:231.366000px;}
.yea{bottom:232.380000px;}
.y239{bottom:233.056500px;}
.y211{bottom:234.321000px;}
.y152{bottom:239.371500px;}
.y286{bottom:241.078500px;}
.y1f{bottom:242.440500px;}
.y262{bottom:243.280500px;}
.y27d{bottom:244.294500px;}
.y109{bottom:244.296000px;}
.y165{bottom:244.927500px;}
.y121{bottom:245.310000px;}
.y16c{bottom:245.941500px;}
.y97{bottom:248.455500px;}
.y18c{bottom:248.892000px;}
.y79{bottom:249.298500px;}
.y9b{bottom:249.469500px;}
.y1a7{bottom:249.906000px;}
.y1e6{bottom:250.125000px;}
.y4b{bottom:250.312500px;}
.yc2{bottom:254.163000px;}
.ye9{bottom:255.177000px;}
.y238{bottom:255.853500px;}
.y151{bottom:262.168500px;}
.y210{bottom:263.388000px;}
.y285{bottom:263.875500px;}
.y1e{bottom:265.237500px;}
.y261{bottom:266.077500px;}
.y27c{bottom:267.091500px;}
.y108{bottom:267.093000px;}
.y120{bottom:268.107000px;}
.y96{bottom:271.252500px;}
.y18b{bottom:271.690500px;}
.y78{bottom:272.097000px;}
.y9a{bottom:272.266500px;}
.y1a6{bottom:272.703000px;}
.y1e5{bottom:272.922000px;}
.y4a{bottom:273.109500px;}
.yc1{bottom:276.960000px;}
.ye8{bottom:277.974000px;}
.y237{bottom:278.650500px;}
.y20f{bottom:281.964000px;}
.y150{bottom:284.965500px;}
.y164{bottom:286.672500px;}
.y1d{bottom:288.034500px;}
.y260{bottom:288.874500px;}
.y27b{bottom:289.888500px;}
.y107{bottom:289.890000px;}
.y11f{bottom:290.904000px;}
.y95{bottom:294.049500px;}
.y18a{bottom:294.487500px;}
.y77{bottom:294.894000px;}
.y99{bottom:295.063500px;}
.y1a5{bottom:295.501500px;}
.y1e4{bottom:295.720500px;}
.y49{bottom:295.908000px;}
.yc0{bottom:299.757000px;}
.y20e{bottom:300.538500px;}
.ye7{bottom:300.771000px;}
.y236{bottom:301.447500px;}
.y14f{bottom:307.764000px;}
.y163{bottom:309.469500px;}
.y25f{bottom:311.671500px;}
.y27a{bottom:312.685500px;}
.y106{bottom:312.687000px;}
.y11e{bottom:313.701000px;}
.y94{bottom:316.846500px;}
.y189{bottom:317.284500px;}
.y76{bottom:317.691000px;}
.y98{bottom:317.860500px;}
.y1a4{bottom:318.298500px;}
.y1e3{bottom:318.517500px;}
.y48{bottom:318.705000px;}
.y20d{bottom:319.114500px;}
.y284{bottom:319.930500px;}
.ybf{bottom:322.555500px;}
.ye6{bottom:323.569500px;}
.y235{bottom:324.244500px;}
.y14e{bottom:330.561000px;}
.y162{bottom:332.266500px;}
.y25e{bottom:334.468500px;}
.y279{bottom:335.482500px;}
.y105{bottom:335.484000px;}
.y11d{bottom:336.498000px;}
.y1c{bottom:339.225000px;}
.y188{bottom:340.081500px;}
.y75{bottom:340.488000px;}
.y20c{bottom:340.678500px;}
.y1a3{bottom:341.095500px;}
.y1e2{bottom:341.314500px;}
.y47{bottom:341.502000px;}
.ybe{bottom:345.352500px;}
.ye5{bottom:346.366500px;}
.y234{bottom:347.041500px;}
.y14d{bottom:353.358000px;}
.y161{bottom:355.063500px;}
.y25d{bottom:357.265500px;}
.y278{bottom:358.279500px;}
.y104{bottom:358.281000px;}
.y20b{bottom:359.254500px;}
.y11c{bottom:359.295000px;}
.y187{bottom:362.878500px;}
.y74{bottom:363.285000px;}
.y1a2{bottom:363.892500px;}
.y1e1{bottom:364.111500px;}
.y46{bottom:364.299000px;}
.ybd{bottom:368.149500px;}
.ye4{bottom:369.163500px;}
.y233{bottom:369.838500px;}
.y14c{bottom:376.155000px;}
.y93{bottom:376.522500px;}
.y20a{bottom:377.829000px;}
.y160{bottom:377.860500px;}
.y25c{bottom:380.062500px;}
.y1b{bottom:380.398500px;}
.y277{bottom:381.076500px;}
.y103{bottom:381.078000px;}
.y11b{bottom:382.092000px;}
.y186{bottom:385.675500px;}
.y73{bottom:386.082000px;}
.y1a1{bottom:386.689500px;}
.y1e0{bottom:386.908500px;}
.y45{bottom:387.096000px;}
.ybc{bottom:390.946500px;}
.ye3{bottom:391.960500px;}
.y232{bottom:392.635500px;}
.y209{bottom:396.405000px;}
.y14b{bottom:398.952000px;}
.y1a{bottom:398.974500px;}
.y92{bottom:399.319500px;}
.y15f{bottom:400.657500px;}
.y25b{bottom:402.859500px;}
.y276{bottom:403.873500px;}
.y102{bottom:403.875000px;}
.y11a{bottom:404.889000px;}
.y185{bottom:408.472500px;}
.y72{bottom:408.879000px;}
.y1a0{bottom:409.486500px;}
.y1df{bottom:409.705500px;}
.y44{bottom:409.893000px;}
.ybb{bottom:413.743500px;}
.ye2{bottom:414.757500px;}
.y231{bottom:415.434000px;}
.y19{bottom:415.864500px;}
.y208{bottom:417.969000px;}
.y14a{bottom:421.749000px;}
.y91{bottom:422.116500px;}
.y15e{bottom:423.454500px;}
.y25a{bottom:425.656500px;}
.y275{bottom:426.670500px;}
.y101{bottom:426.672000px;}
.y119{bottom:427.686000px;}
.y184{bottom:431.269500px;}
.y71{bottom:431.676000px;}
.y19f{bottom:432.283500px;}
.y1de{bottom:432.502500px;}
.y43{bottom:432.690000px;}
.yba{bottom:436.540500px;}
.y207{bottom:436.545000px;}
.ye1{bottom:437.554500px;}
.y18{bottom:437.817000px;}
.y230{bottom:438.231000px;}
.y149{bottom:444.546000px;}
.y90{bottom:444.913500px;}
.y15d{bottom:446.251500px;}
.y259{bottom:448.453500px;}
.y274{bottom:449.467500px;}
.y100{bottom:449.469000px;}
.y118{bottom:450.483000px;}
.y183{bottom:454.066500px;}
.y70{bottom:454.473000px;}
.y19e{bottom:455.080500px;}
.y206{bottom:455.119500px;}
.y1dd{bottom:455.299500px;}
.y42{bottom:455.487000px;}
.yb9{bottom:459.337500px;}
.y17{bottom:459.771000px;}
.ye0{bottom:460.351500px;}
.y22f{bottom:461.028000px;}
.y148{bottom:467.343000px;}
.y8f{bottom:467.710500px;}
.y15c{bottom:469.048500px;}
.y258{bottom:471.250500px;}
.y273{bottom:472.264500px;}
.yff{bottom:472.266000px;}
.y117{bottom:473.280000px;}
.y205{bottom:476.685000px;}
.y182{bottom:476.863500px;}
.y6f{bottom:477.270000px;}
.y19d{bottom:477.877500px;}
.y1dc{bottom:478.096500px;}
.y41{bottom:478.284000px;}
.yb8{bottom:482.134500px;}
.ydf{bottom:483.148500px;}
.y16{bottom:483.598500px;}
.y22e{bottom:483.825000px;}
.y147{bottom:490.140000px;}
.y8e{bottom:490.509000px;}
.y15b{bottom:491.845500px;}
.y257{bottom:494.047500px;}
.y272{bottom:495.061500px;}
.yfe{bottom:495.063000px;}
.y204{bottom:495.259500px;}
.y116{bottom:496.077000px;}
.y181{bottom:499.660500px;}
.y6e{bottom:500.067000px;}
.y19c{bottom:500.674500px;}
.y1db{bottom:500.893500px;}
.y40{bottom:501.081000px;}
.yb7{bottom:504.931500px;}
.yde{bottom:505.945500px;}
.y22d{bottom:506.622000px;}
.y146{bottom:512.937000px;}
.y8d{bottom:513.306000px;}
.y203{bottom:513.835500px;}
.y15a{bottom:514.642500px;}
.y256{bottom:516.844500px;}
.y271{bottom:517.858500px;}
.yfd{bottom:517.861500px;}
.y115{bottom:518.874000px;}
.y15{bottom:519.000000px;}
.y180{bottom:522.457500px;}
.y6d{bottom:522.864000px;}
.y19b{bottom:523.471500px;}
.y1da{bottom:523.690500px;}
.y3f{bottom:523.878000px;}
.y28c{bottom:523.965000px;}
.yb6{bottom:527.728500px;}
.ydd{bottom:528.742500px;}
.y22c{bottom:529.419000px;}
.y202{bottom:532.410000px;}
.y145{bottom:535.734000px;}
.y8c{bottom:536.103000px;}
.y255{bottom:539.643000px;}
.y270{bottom:540.655500px;}
.yfc{bottom:540.658500px;}
.y14{bottom:540.954000px;}
.y114{bottom:541.672500px;}
.y17f{bottom:545.254500px;}
.y6c{bottom:545.661000px;}
.y19a{bottom:546.268500px;}
.y1d9{bottom:546.487500px;}
.y3e{bottom:546.675000px;}
.y159{bottom:547.900500px;}
.yb5{bottom:550.525500px;}
.y201{bottom:550.986000px;}
.ydc{bottom:551.539500px;}
.y22b{bottom:552.216000px;}
.y144{bottom:558.531000px;}
.y8b{bottom:558.900000px;}
.y254{bottom:562.440000px;}
.y13{bottom:562.906500px;}
.y26f{bottom:563.454000px;}
.yfb{bottom:563.455500px;}
.y113{bottom:564.469500px;}
.y17e{bottom:568.051500px;}
.y6b{bottom:568.458000px;}
.y199{bottom:569.065500px;}
.y1d8{bottom:569.284500px;}
.y3d{bottom:569.472000px;}
.y200{bottom:569.562000px;}
.yb4{bottom:573.322500px;}
.ydb{bottom:574.336500px;}
.y22a{bottom:575.013000px;}
.y143{bottom:581.328000px;}
.y8a{bottom:581.697000px;}
.y12{bottom:584.859000px;}
.y253{bottom:585.237000px;}
.y26e{bottom:586.251000px;}
.yfa{bottom:586.252500px;}
.y112{bottom:587.266500px;}
.y17d{bottom:590.850000px;}
.y1ff{bottom:591.126000px;}
.y6a{bottom:591.256500px;}
.y198{bottom:591.864000px;}
.y1d7{bottom:592.081500px;}
.y3c{bottom:592.269000px;}
.yb3{bottom:596.119500px;}
.yda{bottom:597.133500px;}
.y229{bottom:597.810000px;}
.y142{bottom:604.126500px;}
.y89{bottom:604.494000px;}
.y11{bottom:606.811500px;}
.y252{bottom:608.034000px;}
.y26d{bottom:609.048000px;}
.yf9{bottom:609.049500px;}
.y1fe{bottom:609.700500px;}
.y111{bottom:610.063500px;}
.y17c{bottom:613.647000px;}
.y69{bottom:614.053500px;}
.y197{bottom:614.661000px;}
.y1d6{bottom:614.880000px;}
.y3b{bottom:615.067500px;}
.yb2{bottom:618.918000px;}
.yd9{bottom:619.930500px;}
.y228{bottom:620.607000px;}
.y141{bottom:626.923500px;}
.y88{bottom:627.291000px;}
.y1fd{bottom:628.276500px;}
.y10{bottom:628.764000px;}
.y251{bottom:630.831000px;}
.y26c{bottom:631.845000px;}
.yf8{bottom:631.846500px;}
.y110{bottom:632.860500px;}
.y17b{bottom:636.444000px;}
.y68{bottom:636.850500px;}
.y196{bottom:637.458000px;}
.y1d5{bottom:637.677000px;}
.y3a{bottom:637.864500px;}
.yb1{bottom:641.715000px;}
.yd8{bottom:642.729000px;}
.y227{bottom:643.404000px;}
.y1fc{bottom:646.852500px;}
.y140{bottom:649.720500px;}
.y87{bottom:650.088000px;}
.yf{bottom:650.718000px;}
.y250{bottom:653.628000px;}
.y26b{bottom:654.642000px;}
.y17a{bottom:659.241000px;}
.y67{bottom:659.647500px;}
.y195{bottom:660.255000px;}
.y1d4{bottom:660.474000px;}
.y39{bottom:660.661500px;}
.yb0{bottom:664.512000px;}
.yd7{bottom:665.526000px;}
.y226{bottom:666.201000px;}
.y1fb{bottom:668.416500px;}
.y13f{bottom:672.517500px;}
.ye{bottom:672.670500px;}
.y86{bottom:672.885000px;}
.yf7{bottom:673.590000px;}
.y24f{bottom:676.425000px;}
.y26a{bottom:677.439000px;}
.y179{bottom:682.038000px;}
.y66{bottom:682.444500px;}
.y194{bottom:683.052000px;}
.y1d3{bottom:683.271000px;}
.y38{bottom:683.458500px;}
.y1fa{bottom:686.991000px;}
.yaf{bottom:687.309000px;}
.yd6{bottom:688.323000px;}
.y225{bottom:688.998000px;}
.yd{bottom:694.623000px;}
.y13e{bottom:695.314500px;}
.y85{bottom:695.682000px;}
.yf6{bottom:696.387000px;}
.y24e{bottom:699.222000px;}
.y269{bottom:700.236000px;}
.y1ba{bottom:704.835000px;}
.y65{bottom:705.241500px;}
.y1f9{bottom:705.567000px;}
.y1c0{bottom:705.849000px;}
.y1d2{bottom:706.068000px;}
.y37{bottom:706.255500px;}
.yae{bottom:710.106000px;}
.yd5{bottom:711.120000px;}
.y224{bottom:711.796500px;}
.yc{bottom:716.575500px;}
.y13d{bottom:718.111500px;}
.y84{bottom:718.479000px;}
.yf5{bottom:719.184000px;}
.y1f8{bottom:724.143000px;}
.y1b9{bottom:727.632000px;}
.y64{bottom:728.038500px;}
.y1bf{bottom:728.646000px;}
.y1d1{bottom:728.865000px;}
.y36{bottom:729.052500px;}
.yad{bottom:732.903000px;}
.y178{bottom:733.123500px;}
.yd4{bottom:733.917000px;}
.y223{bottom:734.593500px;}
.yb{bottom:738.528000px;}
.y13c{bottom:740.908500px;}
.y24d{bottom:740.965500px;}
.y83{bottom:741.276000px;}
.yf4{bottom:741.981000px;}
.y1f7{bottom:745.707000px;}
.y1b8{bottom:750.429000px;}
.y63{bottom:750.835500px;}
.y1be{bottom:751.443000px;}
.y35{bottom:751.849500px;}
.yac{bottom:755.700000px;}
.yd3{bottom:756.714000px;}
.y222{bottom:757.390500px;}
.ya{bottom:760.480500px;}
.y177{bottom:762.190500px;}
.y13b{bottom:763.705500px;}
.y24c{bottom:763.762500px;}
.y82{bottom:764.073000px;}
.y1f6{bottom:764.281500px;}
.yf3{bottom:764.778000px;}
.y1b7{bottom:773.226000px;}
.y62{bottom:773.632500px;}
.y1bd{bottom:774.240000px;}
.y34{bottom:774.646500px;}
.y221{bottom:775.245000px;}
.yab{bottom:778.497000px;}
.yd2{bottom:779.511000px;}
.y9{bottom:782.434500px;}
.y1f5{bottom:782.857500px;}
.y176{bottom:783.754500px;}
.y81{bottom:785.856000px;}
.y13a{bottom:786.502500px;}
.y24b{bottom:786.559500px;}
.y1cb{bottom:787.527000px;}
.yf2{bottom:787.575000px;}
.y1d0{bottom:788.541000px;}
.y1b6{bottom:796.023000px;}
.y61{bottom:796.429500px;}
.y1bc{bottom:797.037000px;}
.y33{bottom:797.443500px;}
.y220{bottom:801.232500px;}
.yaa{bottom:801.294000px;}
.yd1{bottom:802.308000px;}
.y8{bottom:804.387000px;}
.y1f4{bottom:804.421500px;}
.y175{bottom:805.318500px;}
.y139{bottom:809.299500px;}
.y24a{bottom:809.356500px;}
.y1ca{bottom:810.324000px;}
.y1cf{bottom:811.338000px;}
.y1b5{bottom:818.820000px;}
.y60{bottom:819.226500px;}
.y1bb{bottom:819.834000px;}
.y32{bottom:820.240500px;}
.yf1{bottom:820.833000px;}
.y21f{bottom:822.796500px;}
.y1f3{bottom:822.997500px;}
.ya9{bottom:824.091000px;}
.yd0{bottom:825.105000px;}
.y7{bottom:826.339500px;}
.y138{bottom:832.096500px;}
.y249{bottom:832.155000px;}
.y1c9{bottom:833.121000px;}
.y1ce{bottom:834.135000px;}
.y174{bottom:834.385500px;}
.y1f2{bottom:841.572000px;}
.y5f{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y21e{bottom:844.360500px;}
.ya8{bottom:846.888000px;}
.ycf{bottom:847.902000px;}
.y6{bottom:848.292000px;}
.y248{bottom:854.952000px;}
.y1c8{bottom:855.919500px;}
.y137{bottom:856.383000px;}
.y1cd{bottom:856.933500px;}
.y1f1{bottom:860.148000px;}
.y5e{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.y21d{bottom:865.924500px;}
.ya7{bottom:869.685000px;}
.y1b4{bottom:869.905500px;}
.yce{bottom:870.699000px;}
.y136{bottom:874.957500px;}
.y173{bottom:877.539000px;}
.y247{bottom:877.749000px;}
.y1c7{bottom:878.716500px;}
.y1cc{bottom:879.730500px;}
.y21c{bottom:887.488500px;}
.y5d{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.y1f0{bottom:889.215000px;}
.ya6{bottom:892.482000px;}
.ycd{bottom:893.496000px;}
.y135{bottom:896.523000px;}
.y1b3{bottom:898.974000px;}
.y246{bottom:900.546000px;}
.y1c6{bottom:904.015500px;}
.y1ef{bottom:907.791000px;}
.y21b{bottom:909.052500px;}
.y5c{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y134{bottom:915.097500px;}
.ya5{bottom:915.279000px;}
.ycc{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y1b2{bottom:920.538000px;}
.y245{bottom:923.343000px;}
.y21a{bottom:930.616500px;}
.y1c5{bottom:933.082500px;}
.y5b{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y133{bottom:936.661500px;}
.ya4{bottom:938.077500px;}
.ycb{bottom:939.090000px;}
.y1b1{bottom:942.102000px;}
.y244{bottom:946.140000px;}
.y1ee{bottom:950.943000px;}
.y219{bottom:952.182000px;}
.y1c4{bottom:954.646500px;}
.y132{bottom:955.237500px;}
.y5a{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.ya3{bottom:960.874500px;}
.yca{bottom:961.888500px;}
.y243{bottom:968.937000px;}
.y1b0{bottom:971.169000px;}
.y1c3{bottom:976.212000px;}
.y131{bottom:976.801500px;}
.y59{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y218{bottom:981.249000px;}
.y242{bottom:991.734000px;}
.y130{bottom:995.377500px;}
.y3{bottom:996.498000px;}
.y1c2{bottom:997.776000px;}
.y58{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y1af{bottom:1014.321000px;}
.y241{bottom:1014.531000px;}
.y12f{bottom:1016.941500px;}
.y57{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y1c1{bottom:1026.843000px;}
.y12e{bottom:1035.516000px;}
.y240{bottom:1037.328000px;}
.y56{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y12d{bottom:1064.584500px;}
.y55{bottom:1069.995000px;}
.y23f{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h10{height:35.865000px;}
.h1{height:35.865450px;}
.he{height:37.011648px;}
.h6{height:37.013299px;}
.hd{height:37.226832px;}
.hc{height:37.228493px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.hf{height:92.541000px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:126.270000px;}
.x3{left:127.608000px;}
.x13{left:151.072500px;}
.xc{left:153.070500px;}
.x25{left:154.152000px;}
.x21{left:162.369000px;}
.x23{left:167.224500px;}
.x6{left:178.044000px;}
.x28{left:181.129500px;}
.xa{left:182.308500px;}
.x15{left:184.305000px;}
.x17{left:194.400000px;}
.x14{left:202.096500px;}
.x24{left:205.528500px;}
.x16{left:209.719500px;}
.x4{left:226.314000px;}
.x8{left:230.625000px;}
.x20{left:237.478500px;}
.x26{left:243.225000px;}
.x1b{left:263.238000px;}
.x12{left:312.655500px;}
.x1f{left:323.980500px;}
.x9{left:329.746500px;}
.x1e{left:331.044000px;}
.x1c{left:359.206500px;}
.x29{left:362.980500px;}
.x27{left:370.474500px;}
.x5{left:379.564500px;}
.xe{left:404.373000px;}
.x7{left:410.130000px;}
.xb{left:432.832500px;}
.x19{left:447.636000px;}
.xf{left:452.577000px;}
.x1a{left:462.919500px;}
.xd{left:464.346000px;}
.x11{left:489.858000px;}
.x18{left:494.385000px;}
.x2{left:573.774000px;}
.x10{left:578.070000px;}
.x22{left:652.126500px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls7{letter-spacing:-10.711381pt;}
.ls8{letter-spacing:-6.025152pt;}
.ls6{letter-spacing:-0.717280pt;}
.ls5{letter-spacing:-0.430368pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.ls9{letter-spacing:11.907379pt;}
.ls12{letter-spacing:15.092688pt;}
.lsc{letter-spacing:15.153792pt;}
.lsa{letter-spacing:15.276000pt;}
.lse{letter-spacing:15.398208pt;}
.ls11{letter-spacing:15.459312pt;}
.ls10{letter-spacing:15.520416pt;}
.ls13{letter-spacing:15.581520pt;}
.lsf{letter-spacing:16.742496pt;}
.lsd{letter-spacing:22.180752pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.wsa5{word-spacing:-15.276000pt;}
.ws10e{word-spacing:-11.524299pt;}
.ws138{word-spacing:-3.360720pt;}
.wsa1{word-spacing:-3.299616pt;}
.ws2a{word-spacing:-3.177408pt;}
.ws86{word-spacing:-3.116304pt;}
.wsf5{word-spacing:-3.055200pt;}
.ws7d{word-spacing:-2.994096pt;}
.ws78{word-spacing:-2.932992pt;}
.ws130{word-spacing:-2.871888pt;}
.ws38{word-spacing:-2.810784pt;}
.ws11{word-spacing:-2.762961pt;}
.ws7c{word-spacing:-2.749680pt;}
.ws12b{word-spacing:-2.688576pt;}
.ws11b{word-spacing:-2.679979pt;}
.ws12{word-spacing:-2.656693pt;}
.wsc1{word-spacing:-2.627472pt;}
.ws11d{word-spacing:-2.627110pt;}
.ws71{word-spacing:-2.566368pt;}
.ws2c{word-spacing:-2.505264pt;}
.wsb6{word-spacing:-2.260848pt;}
.wsa3{word-spacing:-2.199744pt;}
.ws35{word-spacing:-2.138640pt;}
.ws7e{word-spacing:-2.077536pt;}
.wsa2{word-spacing:-2.016432pt;}
.ws122{word-spacing:-1.960473pt;}
.ws9d{word-spacing:-1.955328pt;}
.ws7{word-spacing:-1.859685pt;}
.ws3a{word-spacing:-1.833120pt;}
.ws4c{word-spacing:-1.772016pt;}
.wsdc{word-spacing:-1.710912pt;}
.ws37{word-spacing:-1.649808pt;}
.ws76{word-spacing:-1.588704pt;}
.ws3c{word-spacing:-1.466496pt;}
.wsa0{word-spacing:-1.405392pt;}
.ws6e{word-spacing:-1.344288pt;}
.ws148{word-spacing:-1.283184pt;}
.ws13c{word-spacing:-1.222080pt;}
.ws5c{word-spacing:-1.160976pt;}
.ws12e{word-spacing:-1.099872pt;}
.wsee{word-spacing:-1.038768pt;}
.wsd6{word-spacing:-0.977664pt;}
.wsd0{word-spacing:-0.916560pt;}
.ws87{word-spacing:-0.855456pt;}
.ws50{word-spacing:-0.794352pt;}
.ws39{word-spacing:-0.733248pt;}
.ws79{word-spacing:-0.672144pt;}
.wsb5{word-spacing:-0.611040pt;}
.wsbb{word-spacing:-0.549936pt;}
.ws80{word-spacing:-0.488832pt;}
.ws49{word-spacing:-0.427728pt;}
.ws9{word-spacing:-0.425071pt;}
.ws3e{word-spacing:-0.366624pt;}
.ws48{word-spacing:-0.305520pt;}
.wsc{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.244416pt;}
.ws6{word-spacing:-0.212535pt;}
.ws10c{word-spacing:-0.191951pt;}
.ws19{word-spacing:-0.183312pt;}
.ws123{word-spacing:-0.144300pt;}
.ws126{word-spacing:-0.139005pt;}
.ws1b{word-spacing:-0.122208pt;}
.ws30{word-spacing:-0.061104pt;}
.ws102{word-spacing:-0.047819pt;}
.ws113{word-spacing:-0.046814pt;}
.ws1{word-spacing:-0.042507pt;}
.ws105{word-spacing:-0.042028pt;}
.wsfe{word-spacing:-0.002544pt;}
.ws10a{word-spacing:-0.000256pt;}
.ws3{word-spacing:0.000000pt;}
.ws100{word-spacing:0.000843pt;}
.ws116{word-spacing:0.002485pt;}
.ws121{word-spacing:0.002667pt;}
.ws107{word-spacing:0.003691pt;}
.ws125{word-spacing:0.006197pt;}
.ws109{word-spacing:0.006204pt;}
.ws114{word-spacing:0.006283pt;}
.wsff{word-spacing:0.006389pt;}
.ws129{word-spacing:0.006795pt;}
.ws106{word-spacing:0.009024pt;}
.ws10f{word-spacing:0.011019pt;}
.ws10{word-spacing:0.053134pt;}
.ws28{word-spacing:0.061104pt;}
.ws13{word-spacing:0.095642pt;}
.ws15{word-spacing:0.122208pt;}
.ws22{word-spacing:0.183312pt;}
.ws103{word-spacing:0.187516pt;}
.wse{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.244416pt;}
.ws111{word-spacing:0.282234pt;}
.ws32{word-spacing:0.305520pt;}
.ws93{word-spacing:0.366624pt;}
.ws2{word-spacing:0.367262pt;}
.wsd{word-spacing:0.371937pt;}
.ws8{word-spacing:0.425071pt;}
.ws6d{word-spacing:0.427728pt;}
.ws4b{word-spacing:0.488832pt;}
.wsa{word-spacing:0.531339pt;}
.ws5e{word-spacing:0.549936pt;}
.ws3d{word-spacing:0.611040pt;}
.ws68{word-spacing:0.672144pt;}
.ws31{word-spacing:0.733248pt;}
.ws81{word-spacing:0.794352pt;}
.ws34{word-spacing:0.855456pt;}
.wsbf{word-spacing:0.916560pt;}
.ws58{word-spacing:0.977664pt;}
.wsde{word-spacing:1.038768pt;}
.ws21{word-spacing:1.099872pt;}
.ws12d{word-spacing:1.160976pt;}
.ws70{word-spacing:1.222080pt;}
.ws92{word-spacing:1.283184pt;}
.ws24{word-spacing:1.344288pt;}
.wscb{word-spacing:1.405392pt;}
.ws115{word-spacing:1.434016pt;}
.ws29{word-spacing:1.466496pt;}
.ws99{word-spacing:1.527600pt;}
.wsd3{word-spacing:1.530266pt;}
.ws2b{word-spacing:1.588704pt;}
.ws45{word-spacing:1.649808pt;}
.ws25{word-spacing:1.772016pt;}
.ws8a{word-spacing:1.833120pt;}
.ws5{word-spacing:1.859685pt;}
.ws8f{word-spacing:1.894224pt;}
.ws124{word-spacing:1.907895pt;}
.ws8e{word-spacing:1.955328pt;}
.ws47{word-spacing:2.016432pt;}
.wsbc{word-spacing:2.077536pt;}
.ws1e{word-spacing:2.199744pt;}
.ws43{word-spacing:2.260848pt;}
.ws1a{word-spacing:2.321952pt;}
.wsf{word-spacing:2.337890pt;}
.wse7{word-spacing:2.383056pt;}
.wsc9{word-spacing:2.444160pt;}
.ws120{word-spacing:2.481625pt;}
.ws11e{word-spacing:2.483015pt;}
.ws82{word-spacing:2.505264pt;}
.ws20{word-spacing:2.566368pt;}
.ws73{word-spacing:2.627472pt;}
.ws72{word-spacing:2.688576pt;}
.ws23{word-spacing:2.749680pt;}
.ws55{word-spacing:2.810784pt;}
.ws2e{word-spacing:2.871888pt;}
.ws41{word-spacing:2.932992pt;}
.ws7f{word-spacing:2.994096pt;}
.ws1d{word-spacing:3.055200pt;}
.ws2d{word-spacing:3.116304pt;}
.wsb8{word-spacing:3.177408pt;}
.ws26{word-spacing:3.238512pt;}
.wsd5{word-spacing:3.299616pt;}
.ws134{word-spacing:3.299635pt;}
.ws12f{word-spacing:3.360720pt;}
.ws149{word-spacing:3.421824pt;}
.ws46{word-spacing:3.482928pt;}
.wsa4{word-spacing:3.544032pt;}
.ws4e{word-spacing:3.605136pt;}
.ws56{word-spacing:3.666240pt;}
.wsc3{word-spacing:3.727344pt;}
.ws44{word-spacing:3.788448pt;}
.wsb{word-spacing:3.825638pt;}
.ws8d{word-spacing:3.849552pt;}
.ws75{word-spacing:3.910656pt;}
.wsb7{word-spacing:4.032864pt;}
.ws33{word-spacing:4.093968pt;}
.ws42{word-spacing:4.155072pt;}
.ws1c{word-spacing:4.216176pt;}
.ws40{word-spacing:4.277280pt;}
.ws57{word-spacing:4.338384pt;}
.ws95{word-spacing:4.399488pt;}
.ws63{word-spacing:4.460592pt;}
.ws67{word-spacing:4.521696pt;}
.ws27{word-spacing:4.582800pt;}
.ws4f{word-spacing:4.643904pt;}
.ws53{word-spacing:4.705008pt;}
.ws6a{word-spacing:4.766112pt;}
.wsc6{word-spacing:4.827216pt;}
.ws13a{word-spacing:4.949424pt;}
.wsba{word-spacing:5.010528pt;}
.ws69{word-spacing:5.071632pt;}
.ws108{word-spacing:5.107500pt;}
.ws9c{word-spacing:5.132736pt;}
.ws6c{word-spacing:5.193840pt;}
.ws5f{word-spacing:5.254944pt;}
.ws5d{word-spacing:5.316048pt;}
.wsc2{word-spacing:5.377152pt;}
.wsb0{word-spacing:5.438256pt;}
.ws128{word-spacing:5.492402pt;}
.ws65{word-spacing:5.499360pt;}
.wsc0{word-spacing:5.560464pt;}
.ws10b{word-spacing:5.587517pt;}
.ws36{word-spacing:5.621568pt;}
.ws112{word-spacing:5.638796pt;}
.ws10d{word-spacing:5.682788pt;}
.wsb2{word-spacing:5.743776pt;}
.wsb1{word-spacing:5.804880pt;}
.wsa9{word-spacing:5.865984pt;}
.ws11c{word-spacing:5.880222pt;}
.wsb4{word-spacing:5.927088pt;}
.wsf4{word-spacing:5.988192pt;}
.ws16{word-spacing:6.049296pt;}
.ws94{word-spacing:6.110400pt;}
.wsea{word-spacing:6.171504pt;}
.ws83{word-spacing:6.232608pt;}
.ws7a{word-spacing:6.293712pt;}
.ws104{word-spacing:6.306030pt;}
.wsaa{word-spacing:6.354816pt;}
.wsca{word-spacing:6.415920pt;}
.ws117{word-spacing:6.456419pt;}
.wsf7{word-spacing:6.477024pt;}
.ws77{word-spacing:6.538128pt;}
.ws5a{word-spacing:6.599232pt;}
.ws2f{word-spacing:6.660336pt;}
.ws91{word-spacing:6.721440pt;}
.ws98{word-spacing:6.782544pt;}
.wsad{word-spacing:6.843648pt;}
.ws4d{word-spacing:6.904752pt;}
.ws84{word-spacing:6.965856pt;}
.ws8c{word-spacing:7.026960pt;}
.wse8{word-spacing:7.088064pt;}
.ws7b{word-spacing:7.149168pt;}
.wscf{word-spacing:7.210272pt;}
.wsda{word-spacing:7.271376pt;}
.ws54{word-spacing:7.332480pt;}
.ws64{word-spacing:7.393584pt;}
.ws66{word-spacing:7.454688pt;}
.wsd1{word-spacing:7.515792pt;}
.ws6b{word-spacing:7.576896pt;}
.wsbd{word-spacing:7.638000pt;}
.wsfb{word-spacing:7.699104pt;}
.ws59{word-spacing:7.760208pt;}
.ws119{word-spacing:7.787499pt;}
.wsf8{word-spacing:7.821312pt;}
.ws52{word-spacing:7.882416pt;}
.ws3b{word-spacing:7.943520pt;}
.ws5b{word-spacing:8.004624pt;}
.ws74{word-spacing:8.065728pt;}
.wscc{word-spacing:8.126832pt;}
.wsb3{word-spacing:8.187936pt;}
.ws3f{word-spacing:8.249040pt;}
.ws118{word-spacing:8.282193pt;}
.ws85{word-spacing:8.310144pt;}
.wsd4{word-spacing:8.371248pt;}
.ws90{word-spacing:8.432352pt;}
.ws131{word-spacing:8.493456pt;}
.wsbe{word-spacing:8.554560pt;}
.wsf6{word-spacing:8.615664pt;}
.wsdb{word-spacing:8.676768pt;}
.ws4a{word-spacing:8.737872pt;}
.wsce{word-spacing:8.860080pt;}
.ws51{word-spacing:8.982288pt;}
.wsb9{word-spacing:9.043392pt;}
.ws133{word-spacing:9.287808pt;}
.wsaf{word-spacing:9.532224pt;}
.wscd{word-spacing:9.654432pt;}
.ws143{word-spacing:9.776640pt;}
.wsed{word-spacing:9.898848pt;}
.ws8b{word-spacing:9.959952pt;}
.wsc8{word-spacing:10.021056pt;}
.wse9{word-spacing:10.082160pt;}
.ws13b{word-spacing:10.143264pt;}
.wsa8{word-spacing:10.204368pt;}
.wseb{word-spacing:10.448784pt;}
.ws13f{word-spacing:10.509888pt;}
.wse6{word-spacing:10.693200pt;}
.ws139{word-spacing:10.815408pt;}
.ws88{word-spacing:10.876512pt;}
.wse5{word-spacing:10.937616pt;}
.wsfa{word-spacing:11.120928pt;}
.wse3{word-spacing:11.243136pt;}
.ws9a{word-spacing:11.304240pt;}
.ws89{word-spacing:11.793072pt;}
.wsd2{word-spacing:11.907379pt;}
.ws101{word-spacing:11.916224pt;}
.wse1{word-spacing:12.159696pt;}
.wsc7{word-spacing:12.220800pt;}
.ws9e{word-spacing:12.281904pt;}
.wsec{word-spacing:12.343008pt;}
.wsa6{word-spacing:12.404112pt;}
.wsa7{word-spacing:12.465216pt;}
.wsd8{word-spacing:12.526320pt;}
.ws13e{word-spacing:12.587424pt;}
.ws127{word-spacing:12.662734pt;}
.wsac{word-spacing:12.709632pt;}
.wse2{word-spacing:12.831840pt;}
.wsfd{word-spacing:12.892944pt;}
.wse0{word-spacing:13.015152pt;}
.wsfc{word-spacing:13.137360pt;}
.ws142{word-spacing:13.198464pt;}
.ws61{word-spacing:13.320672pt;}
.ws11a{word-spacing:13.389237pt;}
.ws145{word-spacing:13.809504pt;}
.wse4{word-spacing:13.931712pt;}
.wsdf{word-spacing:14.053920pt;}
.ws132{word-spacing:14.115024pt;}
.ws146{word-spacing:14.481648pt;}
.ws11f{word-spacing:14.607034pt;}
.ws97{word-spacing:14.787168pt;}
.ws96{word-spacing:14.848272pt;}
.ws12a{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.ws12c{word-spacing:15.153792pt;}
.wsab{word-spacing:15.642624pt;}
.ws17{word-spacing:16.375872pt;}
.wsdd{word-spacing:17.199459pt;}
.ws144{word-spacing:17.414640pt;}
.ws9f{word-spacing:17.842368pt;}
.ws141{word-spacing:18.086784pt;}
.ws60{word-spacing:18.575616pt;}
.ws4{word-spacing:22.422492pt;}
.ws62{word-spacing:23.036208pt;}
.wsae{word-spacing:27.007968pt;}
.wsc5{word-spacing:31.712976pt;}
.wsc4{word-spacing:31.774080pt;}
.wsd7{word-spacing:37.517856pt;}
.ws6f{word-spacing:44.605920pt;}
.ws13d{word-spacing:45.278064pt;}
.ws9b{word-spacing:47.050080pt;}
.ws135{word-spacing:51.789926pt;}
.ws136{word-spacing:51.837747pt;}
.wsef{word-spacing:63.745126pt;}
.ws140{word-spacing:66.053424pt;}
.ws14{word-spacing:69.005059pt;}
.ws137{word-spacing:99.610726pt;}
.wsf1{word-spacing:136.384922pt;}
.wsf3{word-spacing:148.053197pt;}
.wsf0{word-spacing:171.963597pt;}
.wsf9{word-spacing:177.462989pt;}
.ws110{word-spacing:178.184000pt;}
.wsf2{word-spacing:215.050138pt;}
.ws147{word-spacing:836.034896pt;}
.wsd9{word-spacing:838.328229pt;}
._6{margin-left:-12.395088pt;}
._25{margin-left:-8.676763pt;}
._4{margin-left:-7.345237pt;}
._2{margin-left:-6.427083pt;}
._8{margin-left:-5.525931pt;}
._5{margin-left:-4.590773pt;}
._9{margin-left:-3.639668pt;}
._1{margin-left:-2.295387pt;}
._7{margin-left:-1.036112pt;}
._0{width:1.232709pt;}
._53{width:2.563712pt;}
._54{width:3.727344pt;}
._42{width:5.331781pt;}
._52{width:8.674113pt;}
._41{width:11.544639pt;}
._27{width:13.049691pt;}
._c{width:14.560831pt;}
._b{width:15.461958pt;}
._d{width:17.172869pt;}
._a{width:18.171782pt;}
._12{width:19.710027pt;}
._11{width:20.653152pt;}
._14{width:22.337499pt;}
._f{width:23.594117pt;}
._13{width:24.595701pt;}
._10{width:26.396928pt;}
._17{width:27.321461pt;}
._3{width:28.462795pt;}
._28{width:29.669972pt;}
._16{width:30.769851pt;}
._1e{width:32.079600pt;}
._1a{width:33.214011pt;}
._22{width:34.558299pt;}
._20{width:35.833509pt;}
._24{width:37.212336pt;}
._1d{width:38.556624pt;}
._29{width:39.534288pt;}
._19{width:40.817472pt;}
._18{width:42.345072pt;}
._15{width:44.090523pt;}
._31{width:45.469349pt;}
._32{width:49.616448pt;}
._51{width:51.938400pt;}
._e{width:52.841632pt;}
._26{width:57.559968pt;}
._1c{width:59.881920pt;}
._1b{width:61.104000pt;}
._21{width:62.203872pt;}
._44{width:65.562317pt;}
._30{width:69.074133pt;}
._23{width:73.848171pt;}
._1f{width:88.574235pt;}
._3a{width:95.021589pt;}
._45{width:102.958182pt;}
._46{width:131.459379pt;}
._49{width:146.714214pt;}
._33{width:148.722688pt;}
._38{width:159.291085pt;}
._4e{width:170.289869pt;}
._37{width:172.633088pt;}
._2b{width:176.060240pt;}
._50{width:177.176064pt;}
._48{width:182.197248pt;}
._36{width:183.918797pt;}
._3e{width:190.138667pt;}
._3c{width:196.111488pt;}
._39{width:207.829197pt;}
._3f{width:217.634667pt;}
._3d{width:230.405845pt;}
._34{width:235.947827pt;}
._35{width:244.970013pt;}
._40{width:268.754667pt;}
._2e{width:275.734733pt;}
._4c{width:300.458086pt;}
._43{width:313.513165pt;}
._4d{width:324.368486pt;}
._2c{width:340.818842pt;}
._2f{width:342.157824pt;}
._2a{width:349.665690pt;}
._4f{width:350.956851pt;}
._2d{width:391.939277pt;}
._47{width:443.920486pt;}
._4b{width:454.536704pt;}
._4a{width:467.830886pt;}
._3b{width:567.153787pt;}
.fs7{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:47.818667pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.ya2{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y193{bottom:79.389333pt;}
.y80{bottom:79.750667pt;}
.y1ae{bottom:80.290667pt;}
.y1ed{bottom:80.485333pt;}
.y52{bottom:80.652000pt;}
.ya1{bottom:83.324000pt;}
.yc9{bottom:84.074667pt;}
.yf0{bottom:84.976000pt;}
.y217{bottom:88.398667pt;}
.y12c{bottom:89.300000pt;}
.y158{bottom:91.190667pt;}
.y25{bottom:93.917333pt;}
.y268{bottom:94.664000pt;}
.y283{bottom:95.565333pt;}
.y10f{bottom:95.566667pt;}
.y16b{bottom:96.129333pt;}
.y127{bottom:96.468000pt;}
.y172{bottom:97.030667pt;}
.y192{bottom:99.653333pt;}
.y7f{bottom:100.014667pt;}
.y1ad{bottom:100.554667pt;}
.y1ec{bottom:100.749333pt;}
.y51{bottom:100.916000pt;}
.ya0{bottom:103.588000pt;}
.yc8{bottom:104.338667pt;}
.yef{bottom:105.240000pt;}
.y23e{bottom:105.841333pt;}
.y216{bottom:108.662667pt;}
.y12b{bottom:109.564000pt;}
.y157{bottom:111.454667pt;}
.y28b{bottom:112.970667pt;}
.y24{bottom:114.182667pt;}
.y267{bottom:114.928000pt;}
.y282{bottom:115.829333pt;}
.y10e{bottom:115.830667pt;}
.y16a{bottom:116.393333pt;}
.y126{bottom:116.732000pt;}
.y171{bottom:117.294667pt;}
.y191{bottom:119.917333pt;}
.y7e{bottom:120.278667pt;}
.y1ac{bottom:120.818667pt;}
.y1eb{bottom:121.013333pt;}
.y50{bottom:121.180000pt;}
.y9f{bottom:123.852000pt;}
.yc7{bottom:124.602667pt;}
.yee{bottom:125.504000pt;}
.y23d{bottom:126.105333pt;}
.y215{bottom:128.926667pt;}
.y12a{bottom:129.828000pt;}
.y156{bottom:131.718667pt;}
.y28a{bottom:133.234667pt;}
.y23{bottom:134.446667pt;}
.y266{bottom:135.192000pt;}
.y281{bottom:136.093333pt;}
.y10d{bottom:136.094667pt;}
.y169{bottom:136.657333pt;}
.y125{bottom:136.996000pt;}
.y170{bottom:137.558667pt;}
.y190{bottom:140.181333pt;}
.y7d{bottom:140.542667pt;}
.y1ab{bottom:141.082667pt;}
.y1ea{bottom:141.277333pt;}
.y4f{bottom:141.444000pt;}
.y9e{bottom:144.116000pt;}
.yc6{bottom:144.866667pt;}
.yed{bottom:145.768000pt;}
.y23c{bottom:146.369333pt;}
.y214{bottom:149.190667pt;}
.y129{bottom:150.092000pt;}
.y155{bottom:151.982667pt;}
.y289{bottom:153.498667pt;}
.y22{bottom:154.710667pt;}
.y265{bottom:155.456000pt;}
.y280{bottom:156.357333pt;}
.y10c{bottom:156.358667pt;}
.y168{bottom:156.921333pt;}
.y124{bottom:157.260000pt;}
.y16f{bottom:157.822667pt;}
.y18f{bottom:160.445333pt;}
.y7c{bottom:160.806667pt;}
.y1aa{bottom:161.346667pt;}
.y1e9{bottom:161.541333pt;}
.y4e{bottom:161.708000pt;}
.y9d{bottom:164.380000pt;}
.yc5{bottom:165.130667pt;}
.yec{bottom:166.032000pt;}
.y23b{bottom:166.633333pt;}
.y213{bottom:169.454667pt;}
.y128{bottom:170.356000pt;}
.y154{bottom:172.246667pt;}
.y288{bottom:173.762667pt;}
.y21{bottom:174.974667pt;}
.y264{bottom:175.720000pt;}
.y27f{bottom:176.621333pt;}
.y10b{bottom:176.622667pt;}
.y167{bottom:177.185333pt;}
.y123{bottom:177.524000pt;}
.y16e{bottom:178.086667pt;}
.y18e{bottom:180.709333pt;}
.y7b{bottom:181.070667pt;}
.y1a9{bottom:181.610667pt;}
.y1e8{bottom:181.805333pt;}
.y4d{bottom:181.972000pt;}
.y9c{bottom:184.644000pt;}
.yc4{bottom:185.394667pt;}
.yeb{bottom:186.296000pt;}
.y23a{bottom:186.897333pt;}
.y212{bottom:191.773333pt;}
.y153{bottom:192.510667pt;}
.y287{bottom:194.026667pt;}
.y20{bottom:195.238667pt;}
.y263{bottom:195.984000pt;}
.y27e{bottom:196.885333pt;}
.y10a{bottom:196.888000pt;}
.y166{bottom:197.449333pt;}
.y122{bottom:197.789333pt;}
.y16d{bottom:198.350667pt;}
.y18d{bottom:200.973333pt;}
.y7a{bottom:201.334667pt;}
.y1a8{bottom:201.874667pt;}
.y1e7{bottom:202.069333pt;}
.y4c{bottom:202.236000pt;}
.yc3{bottom:205.658667pt;}
.yea{bottom:206.560000pt;}
.y239{bottom:207.161333pt;}
.y211{bottom:208.285333pt;}
.y152{bottom:212.774667pt;}
.y286{bottom:214.292000pt;}
.y1f{bottom:215.502667pt;}
.y262{bottom:216.249333pt;}
.y27d{bottom:217.150667pt;}
.y109{bottom:217.152000pt;}
.y165{bottom:217.713333pt;}
.y121{bottom:218.053333pt;}
.y16c{bottom:218.614667pt;}
.y97{bottom:220.849333pt;}
.y18c{bottom:221.237333pt;}
.y79{bottom:221.598667pt;}
.y9b{bottom:221.750667pt;}
.y1a7{bottom:222.138667pt;}
.y1e6{bottom:222.333333pt;}
.y4b{bottom:222.500000pt;}
.yc2{bottom:225.922667pt;}
.ye9{bottom:226.824000pt;}
.y238{bottom:227.425333pt;}
.y151{bottom:233.038667pt;}
.y210{bottom:234.122667pt;}
.y285{bottom:234.556000pt;}
.y1e{bottom:235.766667pt;}
.y261{bottom:236.513333pt;}
.y27c{bottom:237.414667pt;}
.y108{bottom:237.416000pt;}
.y120{bottom:238.317333pt;}
.y96{bottom:241.113333pt;}
.y18b{bottom:241.502667pt;}
.y78{bottom:241.864000pt;}
.y9a{bottom:242.014667pt;}
.y1a6{bottom:242.402667pt;}
.y1e5{bottom:242.597333pt;}
.y4a{bottom:242.764000pt;}
.yc1{bottom:246.186667pt;}
.ye8{bottom:247.088000pt;}
.y237{bottom:247.689333pt;}
.y20f{bottom:250.634667pt;}
.y150{bottom:253.302667pt;}
.y164{bottom:254.820000pt;}
.y1d{bottom:256.030667pt;}
.y260{bottom:256.777333pt;}
.y27b{bottom:257.678667pt;}
.y107{bottom:257.680000pt;}
.y11f{bottom:258.581333pt;}
.y95{bottom:261.377333pt;}
.y18a{bottom:261.766667pt;}
.y77{bottom:262.128000pt;}
.y99{bottom:262.278667pt;}
.y1a5{bottom:262.668000pt;}
.y1e4{bottom:262.862667pt;}
.y49{bottom:263.029333pt;}
.yc0{bottom:266.450667pt;}
.y20e{bottom:267.145333pt;}
.ye7{bottom:267.352000pt;}
.y236{bottom:267.953333pt;}
.y14f{bottom:273.568000pt;}
.y163{bottom:275.084000pt;}
.y25f{bottom:277.041333pt;}
.y27a{bottom:277.942667pt;}
.y106{bottom:277.944000pt;}
.y11e{bottom:278.845333pt;}
.y94{bottom:281.641333pt;}
.y189{bottom:282.030667pt;}
.y76{bottom:282.392000pt;}
.y98{bottom:282.542667pt;}
.y1a4{bottom:282.932000pt;}
.y1e3{bottom:283.126667pt;}
.y48{bottom:283.293333pt;}
.y20d{bottom:283.657333pt;}
.y284{bottom:284.382667pt;}
.ybf{bottom:286.716000pt;}
.ye6{bottom:287.617333pt;}
.y235{bottom:288.217333pt;}
.y14e{bottom:293.832000pt;}
.y162{bottom:295.348000pt;}
.y25e{bottom:297.305333pt;}
.y279{bottom:298.206667pt;}
.y105{bottom:298.208000pt;}
.y11d{bottom:299.109333pt;}
.y1c{bottom:301.533333pt;}
.y188{bottom:302.294667pt;}
.y75{bottom:302.656000pt;}
.y20c{bottom:302.825333pt;}
.y1a3{bottom:303.196000pt;}
.y1e2{bottom:303.390667pt;}
.y47{bottom:303.557333pt;}
.ybe{bottom:306.980000pt;}
.ye5{bottom:307.881333pt;}
.y234{bottom:308.481333pt;}
.y14d{bottom:314.096000pt;}
.y161{bottom:315.612000pt;}
.y25d{bottom:317.569333pt;}
.y278{bottom:318.470667pt;}
.y104{bottom:318.472000pt;}
.y20b{bottom:319.337333pt;}
.y11c{bottom:319.373333pt;}
.y187{bottom:322.558667pt;}
.y74{bottom:322.920000pt;}
.y1a2{bottom:323.460000pt;}
.y1e1{bottom:323.654667pt;}
.y46{bottom:323.821333pt;}
.ybd{bottom:327.244000pt;}
.ye4{bottom:328.145333pt;}
.y233{bottom:328.745333pt;}
.y14c{bottom:334.360000pt;}
.y93{bottom:334.686667pt;}
.y20a{bottom:335.848000pt;}
.y160{bottom:335.876000pt;}
.y25c{bottom:337.833333pt;}
.y1b{bottom:338.132000pt;}
.y277{bottom:338.734667pt;}
.y103{bottom:338.736000pt;}
.y11b{bottom:339.637333pt;}
.y186{bottom:342.822667pt;}
.y73{bottom:343.184000pt;}
.y1a1{bottom:343.724000pt;}
.y1e0{bottom:343.918667pt;}
.y45{bottom:344.085333pt;}
.ybc{bottom:347.508000pt;}
.ye3{bottom:348.409333pt;}
.y232{bottom:349.009333pt;}
.y209{bottom:352.360000pt;}
.y14b{bottom:354.624000pt;}
.y1a{bottom:354.644000pt;}
.y92{bottom:354.950667pt;}
.y15f{bottom:356.140000pt;}
.y25b{bottom:358.097333pt;}
.y276{bottom:358.998667pt;}
.y102{bottom:359.000000pt;}
.y11a{bottom:359.901333pt;}
.y185{bottom:363.086667pt;}
.y72{bottom:363.448000pt;}
.y1a0{bottom:363.988000pt;}
.y1df{bottom:364.182667pt;}
.y44{bottom:364.349333pt;}
.ybb{bottom:367.772000pt;}
.ye2{bottom:368.673333pt;}
.y231{bottom:369.274667pt;}
.y19{bottom:369.657333pt;}
.y208{bottom:371.528000pt;}
.y14a{bottom:374.888000pt;}
.y91{bottom:375.214667pt;}
.y15e{bottom:376.404000pt;}
.y25a{bottom:378.361333pt;}
.y275{bottom:379.262667pt;}
.y101{bottom:379.264000pt;}
.y119{bottom:380.165333pt;}
.y184{bottom:383.350667pt;}
.y71{bottom:383.712000pt;}
.y19f{bottom:384.252000pt;}
.y1de{bottom:384.446667pt;}
.y43{bottom:384.613333pt;}
.yba{bottom:388.036000pt;}
.y207{bottom:388.040000pt;}
.ye1{bottom:388.937333pt;}
.y18{bottom:389.170667pt;}
.y230{bottom:389.538667pt;}
.y149{bottom:395.152000pt;}
.y90{bottom:395.478667pt;}
.y15d{bottom:396.668000pt;}
.y259{bottom:398.625333pt;}
.y274{bottom:399.526667pt;}
.y100{bottom:399.528000pt;}
.y118{bottom:400.429333pt;}
.y183{bottom:403.614667pt;}
.y70{bottom:403.976000pt;}
.y19e{bottom:404.516000pt;}
.y206{bottom:404.550667pt;}
.y1dd{bottom:404.710667pt;}
.y42{bottom:404.877333pt;}
.yb9{bottom:408.300000pt;}
.y17{bottom:408.685333pt;}
.ye0{bottom:409.201333pt;}
.y22f{bottom:409.802667pt;}
.y148{bottom:415.416000pt;}
.y8f{bottom:415.742667pt;}
.y15c{bottom:416.932000pt;}
.y258{bottom:418.889333pt;}
.y273{bottom:419.790667pt;}
.yff{bottom:419.792000pt;}
.y117{bottom:420.693333pt;}
.y205{bottom:423.720000pt;}
.y182{bottom:423.878667pt;}
.y6f{bottom:424.240000pt;}
.y19d{bottom:424.780000pt;}
.y1dc{bottom:424.974667pt;}
.y41{bottom:425.141333pt;}
.yb8{bottom:428.564000pt;}
.ydf{bottom:429.465333pt;}
.y16{bottom:429.865333pt;}
.y22e{bottom:430.066667pt;}
.y147{bottom:435.680000pt;}
.y8e{bottom:436.008000pt;}
.y15b{bottom:437.196000pt;}
.y257{bottom:439.153333pt;}
.y272{bottom:440.054667pt;}
.yfe{bottom:440.056000pt;}
.y204{bottom:440.230667pt;}
.y116{bottom:440.957333pt;}
.y181{bottom:444.142667pt;}
.y6e{bottom:444.504000pt;}
.y19c{bottom:445.044000pt;}
.y1db{bottom:445.238667pt;}
.y40{bottom:445.405333pt;}
.yb7{bottom:448.828000pt;}
.yde{bottom:449.729333pt;}
.y22d{bottom:450.330667pt;}
.y146{bottom:455.944000pt;}
.y8d{bottom:456.272000pt;}
.y203{bottom:456.742667pt;}
.y15a{bottom:457.460000pt;}
.y256{bottom:459.417333pt;}
.y271{bottom:460.318667pt;}
.yfd{bottom:460.321333pt;}
.y115{bottom:461.221333pt;}
.y15{bottom:461.333333pt;}
.y180{bottom:464.406667pt;}
.y6d{bottom:464.768000pt;}
.y19b{bottom:465.308000pt;}
.y1da{bottom:465.502667pt;}
.y3f{bottom:465.669333pt;}
.y28c{bottom:465.746667pt;}
.yb6{bottom:469.092000pt;}
.ydd{bottom:469.993333pt;}
.y22c{bottom:470.594667pt;}
.y202{bottom:473.253333pt;}
.y145{bottom:476.208000pt;}
.y8c{bottom:476.536000pt;}
.y255{bottom:479.682667pt;}
.y270{bottom:480.582667pt;}
.yfc{bottom:480.585333pt;}
.y14{bottom:480.848000pt;}
.y114{bottom:481.486667pt;}
.y17f{bottom:484.670667pt;}
.y6c{bottom:485.032000pt;}
.y19a{bottom:485.572000pt;}
.y1d9{bottom:485.766667pt;}
.y3e{bottom:485.933333pt;}
.y159{bottom:487.022667pt;}
.yb5{bottom:489.356000pt;}
.y201{bottom:489.765333pt;}
.ydc{bottom:490.257333pt;}
.y22b{bottom:490.858667pt;}
.y144{bottom:496.472000pt;}
.y8b{bottom:496.800000pt;}
.y254{bottom:499.946667pt;}
.y13{bottom:500.361333pt;}
.y26f{bottom:500.848000pt;}
.yfb{bottom:500.849333pt;}
.y113{bottom:501.750667pt;}
.y17e{bottom:504.934667pt;}
.y6b{bottom:505.296000pt;}
.y199{bottom:505.836000pt;}
.y1d8{bottom:506.030667pt;}
.y3d{bottom:506.197333pt;}
.y200{bottom:506.277333pt;}
.yb4{bottom:509.620000pt;}
.ydb{bottom:510.521333pt;}
.y22a{bottom:511.122667pt;}
.y143{bottom:516.736000pt;}
.y8a{bottom:517.064000pt;}
.y12{bottom:519.874667pt;}
.y253{bottom:520.210667pt;}
.y26e{bottom:521.112000pt;}
.yfa{bottom:521.113333pt;}
.y112{bottom:522.014667pt;}
.y17d{bottom:525.200000pt;}
.y1ff{bottom:525.445333pt;}
.y6a{bottom:525.561333pt;}
.y198{bottom:526.101333pt;}
.y1d7{bottom:526.294667pt;}
.y3c{bottom:526.461333pt;}
.yb3{bottom:529.884000pt;}
.yda{bottom:530.785333pt;}
.y229{bottom:531.386667pt;}
.y142{bottom:537.001333pt;}
.y89{bottom:537.328000pt;}
.y11{bottom:539.388000pt;}
.y252{bottom:540.474667pt;}
.y26d{bottom:541.376000pt;}
.yf9{bottom:541.377333pt;}
.y1fe{bottom:541.956000pt;}
.y111{bottom:542.278667pt;}
.y17c{bottom:545.464000pt;}
.y69{bottom:545.825333pt;}
.y197{bottom:546.365333pt;}
.y1d6{bottom:546.560000pt;}
.y3b{bottom:546.726667pt;}
.yb2{bottom:550.149333pt;}
.yd9{bottom:551.049333pt;}
.y228{bottom:551.650667pt;}
.y141{bottom:557.265333pt;}
.y88{bottom:557.592000pt;}
.y1fd{bottom:558.468000pt;}
.y10{bottom:558.901333pt;}
.y251{bottom:560.738667pt;}
.y26c{bottom:561.640000pt;}
.yf8{bottom:561.641333pt;}
.y110{bottom:562.542667pt;}
.y17b{bottom:565.728000pt;}
.y68{bottom:566.089333pt;}
.y196{bottom:566.629333pt;}
.y1d5{bottom:566.824000pt;}
.y3a{bottom:566.990667pt;}
.yb1{bottom:570.413333pt;}
.yd8{bottom:571.314667pt;}
.y227{bottom:571.914667pt;}
.y1fc{bottom:574.980000pt;}
.y140{bottom:577.529333pt;}
.y87{bottom:577.856000pt;}
.yf{bottom:578.416000pt;}
.y250{bottom:581.002667pt;}
.y26b{bottom:581.904000pt;}
.y17a{bottom:585.992000pt;}
.y67{bottom:586.353333pt;}
.y195{bottom:586.893333pt;}
.y1d4{bottom:587.088000pt;}
.y39{bottom:587.254667pt;}
.yb0{bottom:590.677333pt;}
.yd7{bottom:591.578667pt;}
.y226{bottom:592.178667pt;}
.y1fb{bottom:594.148000pt;}
.y13f{bottom:597.793333pt;}
.ye{bottom:597.929333pt;}
.y86{bottom:598.120000pt;}
.yf7{bottom:598.746667pt;}
.y24f{bottom:601.266667pt;}
.y26a{bottom:602.168000pt;}
.y179{bottom:606.256000pt;}
.y66{bottom:606.617333pt;}
.y194{bottom:607.157333pt;}
.y1d3{bottom:607.352000pt;}
.y38{bottom:607.518667pt;}
.y1fa{bottom:610.658667pt;}
.yaf{bottom:610.941333pt;}
.yd6{bottom:611.842667pt;}
.y225{bottom:612.442667pt;}
.yd{bottom:617.442667pt;}
.y13e{bottom:618.057333pt;}
.y85{bottom:618.384000pt;}
.yf6{bottom:619.010667pt;}
.y24e{bottom:621.530667pt;}
.y269{bottom:622.432000pt;}
.y1ba{bottom:626.520000pt;}
.y65{bottom:626.881333pt;}
.y1f9{bottom:627.170667pt;}
.y1c0{bottom:627.421333pt;}
.y1d2{bottom:627.616000pt;}
.y37{bottom:627.782667pt;}
.yae{bottom:631.205333pt;}
.yd5{bottom:632.106667pt;}
.y224{bottom:632.708000pt;}
.yc{bottom:636.956000pt;}
.y13d{bottom:638.321333pt;}
.y84{bottom:638.648000pt;}
.yf5{bottom:639.274667pt;}
.y1f8{bottom:643.682667pt;}
.y1b9{bottom:646.784000pt;}
.y64{bottom:647.145333pt;}
.y1bf{bottom:647.685333pt;}
.y1d1{bottom:647.880000pt;}
.y36{bottom:648.046667pt;}
.yad{bottom:651.469333pt;}
.y178{bottom:651.665333pt;}
.yd4{bottom:652.370667pt;}
.y223{bottom:652.972000pt;}
.yb{bottom:656.469333pt;}
.y13c{bottom:658.585333pt;}
.y24d{bottom:658.636000pt;}
.y83{bottom:658.912000pt;}
.yf4{bottom:659.538667pt;}
.y1f7{bottom:662.850667pt;}
.y1b8{bottom:667.048000pt;}
.y63{bottom:667.409333pt;}
.y1be{bottom:667.949333pt;}
.y35{bottom:668.310667pt;}
.yac{bottom:671.733333pt;}
.yd3{bottom:672.634667pt;}
.y222{bottom:673.236000pt;}
.ya{bottom:675.982667pt;}
.y177{bottom:677.502667pt;}
.y13b{bottom:678.849333pt;}
.y24c{bottom:678.900000pt;}
.y82{bottom:679.176000pt;}
.y1f6{bottom:679.361333pt;}
.yf3{bottom:679.802667pt;}
.y1b7{bottom:687.312000pt;}
.y62{bottom:687.673333pt;}
.y1bd{bottom:688.213333pt;}
.y34{bottom:688.574667pt;}
.y221{bottom:689.106667pt;}
.yab{bottom:691.997333pt;}
.yd2{bottom:692.898667pt;}
.y9{bottom:695.497333pt;}
.y1f5{bottom:695.873333pt;}
.y176{bottom:696.670667pt;}
.y81{bottom:698.538667pt;}
.y13a{bottom:699.113333pt;}
.y24b{bottom:699.164000pt;}
.y1cb{bottom:700.024000pt;}
.yf2{bottom:700.066667pt;}
.y1d0{bottom:700.925333pt;}
.y1b6{bottom:707.576000pt;}
.y61{bottom:707.937333pt;}
.y1bc{bottom:708.477333pt;}
.y33{bottom:708.838667pt;}
.y220{bottom:712.206667pt;}
.yaa{bottom:712.261333pt;}
.yd1{bottom:713.162667pt;}
.y8{bottom:715.010667pt;}
.y1f4{bottom:715.041333pt;}
.y175{bottom:715.838667pt;}
.y139{bottom:719.377333pt;}
.y24a{bottom:719.428000pt;}
.y1ca{bottom:720.288000pt;}
.y1cf{bottom:721.189333pt;}
.y1b5{bottom:727.840000pt;}
.y60{bottom:728.201333pt;}
.y1bb{bottom:728.741333pt;}
.y32{bottom:729.102667pt;}
.yf1{bottom:729.629333pt;}
.y21f{bottom:731.374667pt;}
.y1f3{bottom:731.553333pt;}
.ya9{bottom:732.525333pt;}
.yd0{bottom:733.426667pt;}
.y7{bottom:734.524000pt;}
.y138{bottom:739.641333pt;}
.y249{bottom:739.693333pt;}
.y1c9{bottom:740.552000pt;}
.y1ce{bottom:741.453333pt;}
.y174{bottom:741.676000pt;}
.y1f2{bottom:748.064000pt;}
.y5f{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y21e{bottom:750.542667pt;}
.ya8{bottom:752.789333pt;}
.ycf{bottom:753.690667pt;}
.y6{bottom:754.037333pt;}
.y248{bottom:759.957333pt;}
.y1c8{bottom:760.817333pt;}
.y137{bottom:761.229333pt;}
.y1cd{bottom:761.718667pt;}
.y1f1{bottom:764.576000pt;}
.y5e{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.y21d{bottom:769.710667pt;}
.ya7{bottom:773.053333pt;}
.y1b4{bottom:773.249333pt;}
.yce{bottom:773.954667pt;}
.y136{bottom:777.740000pt;}
.y173{bottom:780.034667pt;}
.y247{bottom:780.221333pt;}
.y1c7{bottom:781.081333pt;}
.y1cc{bottom:781.982667pt;}
.y21c{bottom:788.878667pt;}
.y5d{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.y1f0{bottom:790.413333pt;}
.ya6{bottom:793.317333pt;}
.ycd{bottom:794.218667pt;}
.y135{bottom:796.909333pt;}
.y1b3{bottom:799.088000pt;}
.y246{bottom:800.485333pt;}
.y1c6{bottom:803.569333pt;}
.y1ef{bottom:806.925333pt;}
.y21b{bottom:808.046667pt;}
.y5c{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y134{bottom:813.420000pt;}
.ya5{bottom:813.581333pt;}
.ycc{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y1b2{bottom:818.256000pt;}
.y245{bottom:820.749333pt;}
.y21a{bottom:827.214667pt;}
.y1c5{bottom:829.406667pt;}
.y5b{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y133{bottom:832.588000pt;}
.ya4{bottom:833.846667pt;}
.ycb{bottom:834.746667pt;}
.y1b1{bottom:837.424000pt;}
.y244{bottom:841.013333pt;}
.y1ee{bottom:845.282667pt;}
.y219{bottom:846.384000pt;}
.y1c4{bottom:848.574667pt;}
.y132{bottom:849.100000pt;}
.y5a{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.ya3{bottom:854.110667pt;}
.yca{bottom:855.012000pt;}
.y243{bottom:861.277333pt;}
.y1b0{bottom:863.261333pt;}
.y1c3{bottom:867.744000pt;}
.y131{bottom:868.268000pt;}
.y59{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y218{bottom:872.221333pt;}
.y242{bottom:881.541333pt;}
.y130{bottom:884.780000pt;}
.y3{bottom:885.776000pt;}
.y1c2{bottom:886.912000pt;}
.y58{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y1af{bottom:901.618667pt;}
.y241{bottom:901.805333pt;}
.y12f{bottom:903.948000pt;}
.y57{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y1c1{bottom:912.749333pt;}
.y12e{bottom:920.458667pt;}
.y240{bottom:922.069333pt;}
.y56{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y12d{bottom:946.297333pt;}
.y55{bottom:951.106667pt;}
.y23f{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h10{height:31.880000pt;}
.h1{height:31.880400pt;}
.he{height:32.899243pt;}
.h6{height:32.900710pt;}
.hd{height:33.090517pt;}
.hc{height:33.091994pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.hf{height:82.258667pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:112.240000pt;}
.x3{left:113.429333pt;}
.x13{left:134.286667pt;}
.xc{left:136.062667pt;}
.x25{left:137.024000pt;}
.x21{left:144.328000pt;}
.x23{left:148.644000pt;}
.x6{left:158.261333pt;}
.x28{left:161.004000pt;}
.xa{left:162.052000pt;}
.x15{left:163.826667pt;}
.x17{left:172.800000pt;}
.x14{left:179.641333pt;}
.x24{left:182.692000pt;}
.x16{left:186.417333pt;}
.x4{left:201.168000pt;}
.x8{left:205.000000pt;}
.x20{left:211.092000pt;}
.x26{left:216.200000pt;}
.x1b{left:233.989333pt;}
.x12{left:277.916000pt;}
.x1f{left:287.982667pt;}
.x9{left:293.108000pt;}
.x1e{left:294.261333pt;}
.x1c{left:319.294667pt;}
.x29{left:322.649333pt;}
.x27{left:329.310667pt;}
.x5{left:337.390667pt;}
.xe{left:359.442667pt;}
.x7{left:364.560000pt;}
.xb{left:384.740000pt;}
.x19{left:397.898667pt;}
.xf{left:402.290667pt;}
.x1a{left:411.484000pt;}
.xd{left:412.752000pt;}
.x11{left:435.429333pt;}
.x18{left:439.453333pt;}
.x2{left:510.021333pt;}
.x10{left:513.840000pt;}
.x22{left:579.668000pt;}
.x1{left:618.953333pt;}
}




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