
    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_ee1214b5ae90041b915963ed.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_f107a2d4196e5ffde7559b81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3407c454328a0154b5cb345b.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_0fcf00f76032f3f17f742b1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ac04a25545e83a1ea84ef7b8.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_46219b4658e91aeb5799ee2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_7c96f35d8dc10b854391e1bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_06d04112d9bd6cd4e632c696.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;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_5a27085c1d60387617a8374e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.514000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_11751b879c3cbe06cb81bade.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{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);}
.mc{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);}
.m18{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);}
.m24{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);}
.m12{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);}
.m22{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);}
.m1d{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);}
.m1c{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);}
.m19{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);}
.m20{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);}
.m1a{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);}
.m14{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);}
.m1f{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);}
.m1b{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);}
.m10{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);}
.mf{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);}
.m21{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);}
.m3{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);}
.m23{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m9{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);}
.m2c{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);}
.m17{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);}
.ma{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);}
.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);}
.m27{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);}
.m11{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);}
.m13{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);}
.m25{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);}
.m6{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);}
.m26{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);}
.me{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);}
.md{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);}
.mb{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);}
.m1e{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);}
.m4{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);}
.m7{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.880000px;}
.ls28{letter-spacing:-0.062825px;}
.ls26{letter-spacing:-0.027292px;}
.ls27{letter-spacing:-0.004549px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.022846px;}
.ls20{letter-spacing:0.030780px;}
.ls23{letter-spacing:0.034268px;}
.ls21{letter-spacing:0.046170px;}
.ls22{letter-spacing:0.056430px;}
.ls24{letter-spacing:0.079960px;}
.ls29{letter-spacing:0.085671px;}
.ls1f{letter-spacing:0.168298px;}
.ls1e{letter-spacing:0.181944px;}
.ls2{letter-spacing:11.954850px;}
.ls2a{letter-spacing:12.911530px;}
.lsd{letter-spacing:13.449600px;}
.ls16{letter-spacing:13.867939px;}
.ls19{letter-spacing:14.346144px;}
.ls18{letter-spacing:14.405920px;}
.ls13{letter-spacing:14.585246px;}
.ls1a{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.764573px;}
.ls8{letter-spacing:14.824349px;}
.ls6{letter-spacing:14.943900px;}
.ls5{letter-spacing:15.003676px;}
.ls9{letter-spacing:15.063451px;}
.ls10{letter-spacing:15.123227px;}
.ls17{letter-spacing:15.183002px;}
.ls1b{letter-spacing:15.242778px;}
.ls2c{letter-spacing:16.438290px;}
.ls1c{letter-spacing:16.737168px;}
.lsf{letter-spacing:17.334924px;}
.ls3{letter-spacing:17.454475px;}
.ls4{letter-spacing:17.514251px;}
.ls1d{letter-spacing:17.693578px;}
.ls11{letter-spacing:17.753353px;}
.ls15{letter-spacing:17.992456px;}
.ls12{letter-spacing:18.112007px;}
.ls14{letter-spacing:19.307519px;}
.lsb{letter-spacing:19.785724px;}
.lsc{letter-spacing:20.084602px;}
.ls2b{letter-spacing:22.176748px;}
.ls1{letter-spacing:28.453654px;}
.lse{letter-spacing:521.421005px;}
.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;}
}
.wsd{word-spacing:-22.718660px;}
.ws34{word-spacing:-14.943900px;}
.ws47{word-spacing:-13.449600px;}
.ws2b{word-spacing:-11.955150px;}
.ws7a{word-spacing:-11.553444px;}
.ws7b{word-spacing:-11.371500px;}
.wsc{word-spacing:-10.460700px;}
.ws5f{word-spacing:-4.483170px;}
.ws97{word-spacing:-3.526760px;}
.ws8c{word-spacing:-3.174106px;}
.wsb8{word-spacing:-3.048556px;}
.wsa5{word-spacing:-2.988780px;}
.wsa4{word-spacing:-2.809453px;}
.wsa2{word-spacing:-2.749678px;}
.ws86{word-spacing:-2.724338px;}
.wsab{word-spacing:-2.689902px;}
.ws85{word-spacing:-2.678647px;}
.ws96{word-spacing:-2.450800px;}
.wsba{word-spacing:-2.331248px;}
.wsbc{word-spacing:-2.271473px;}
.wsd5{word-spacing:-2.259533px;}
.ws8f{word-spacing:-2.151922px;}
.wsa9{word-spacing:-2.092146px;}
.wsc1{word-spacing:-2.044339px;}
.wsac{word-spacing:-1.972595px;}
.ws59{word-spacing:-1.912819px;}
.ws57{word-spacing:-1.853044px;}
.wsc2{word-spacing:-1.829146px;}
.ws9f{word-spacing:-1.733492px;}
.wsc3{word-spacing:-1.667750px;}
.ws91{word-spacing:-1.494390px;}
.ws61{word-spacing:-1.434614px;}
.ws6d{word-spacing:-1.374839px;}
.ws4a{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.195512px;}
.ws5a{word-spacing:-1.135736px;}
.ws60{word-spacing:-1.075961px;}
.ws101{word-spacing:-1.022170px;}
.ws58{word-spacing:-1.016185px;}
.ws5e{word-spacing:-0.956410px;}
.ws35{word-spacing:-0.896634px;}
.wsb4{word-spacing:-0.836858px;}
.ws5d{word-spacing:-0.777083px;}
.ws70{word-spacing:-0.717307px;}
.ws49{word-spacing:-0.657532px;}
.ws9e{word-spacing:-0.597756px;}
.ws6a{word-spacing:-0.537980px;}
.ws39{word-spacing:-0.478205px;}
.wsaa{word-spacing:-0.430387px;}
.wsc8{word-spacing:-0.376589px;}
.ws52{word-spacing:-0.358654px;}
.wsc4{word-spacing:-0.322790px;}
.ws1e{word-spacing:-0.298878px;}
.ws11{word-spacing:-0.268992px;}
.ws7d{word-spacing:-0.263819px;}
.ws36{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws20{word-spacing:-0.179327px;}
.ws15{word-spacing:-0.161395px;}
.ws2e{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws7e{word-spacing:-0.077326px;}
.ws1b{word-spacing:-0.059776px;}
.ws7c{word-spacing:-0.054583px;}
.ws12{word-spacing:-0.053798px;}
.ws2c{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws89{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws46{word-spacing:0.107597px;}
.ws82{word-spacing:0.117990px;}
.ws27{word-spacing:0.119551px;}
.ws81{word-spacing:0.128250px;}
.ws80{word-spacing:0.143640px;}
.ws84{word-spacing:0.148496px;}
.ws83{word-spacing:0.154208px;}
.wsf{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws8b{word-spacing:0.215194px;}
.ws1f{word-spacing:0.239102px;}
.ws8a{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.wsd9{word-spacing:0.322790px;}
.ws2f{word-spacing:0.358654px;}
.ws79{word-spacing:0.418429px;}
.ws9b{word-spacing:0.478205px;}
.ws69{word-spacing:0.537980px;}
.ws106{word-spacing:0.591782px;}
.wsa0{word-spacing:0.657532px;}
.ws99{word-spacing:0.717307px;}
.ws94{word-spacing:0.777083px;}
.ws18{word-spacing:0.806976px;}
.ws93{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws3d{word-spacing:1.016185px;}
.ws76{word-spacing:1.135736px;}
.wse5{word-spacing:1.183565px;}
.wsa8{word-spacing:1.195512px;}
.ws6f{word-spacing:1.255288px;}
.ws24{word-spacing:1.315063px;}
.ws64{word-spacing:1.374839px;}
.ws9a{word-spacing:1.434614px;}
.ws4b{word-spacing:1.494390px;}
.ws40{word-spacing:1.554166px;}
.ws3f{word-spacing:1.613941px;}
.wsf1{word-spacing:1.613952px;}
.ws1c{word-spacing:1.673717px;}
.ws30{word-spacing:1.733492px;}
.wse2{word-spacing:1.775347px;}
.ws4d{word-spacing:1.793268px;}
.wsb9{word-spacing:1.853044px;}
.ws31{word-spacing:1.972595px;}
.ws51{word-spacing:2.032370px;}
.ws9d{word-spacing:2.092146px;}
.ws2d{word-spacing:2.151922px;}
.ws98{word-spacing:2.211697px;}
.ws95{word-spacing:2.271473px;}
.ws3c{word-spacing:2.331248px;}
.ws77{word-spacing:2.391024px;}
.wsda{word-spacing:2.420928px;}
.wsb2{word-spacing:2.450800px;}
.ws87{word-spacing:2.461613px;}
.wse6{word-spacing:2.474726px;}
.ws2{word-spacing:2.510568px;}
.ws72{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws50{word-spacing:2.570351px;}
.wsd1{word-spacing:2.582323px;}
.ws29{word-spacing:2.689902px;}
.ws108{word-spacing:2.743718px;}
.ws56{word-spacing:2.749678px;}
.ws13{word-spacing:2.797517px;}
.ws53{word-spacing:2.809453px;}
.ws54{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.wsf4{word-spacing:2.905114px;}
.ws8e{word-spacing:2.929004px;}
.ws1d{word-spacing:3.048556px;}
.wse8{word-spacing:3.066509px;}
.ws44{word-spacing:3.108331px;}
.wsef{word-spacing:3.120307px;}
.ws43{word-spacing:3.168107px;}
.wsf3{word-spacing:3.218429px;}
.ws19{word-spacing:3.219667px;}
.wsdf{word-spacing:3.219802px;}
.wsfb{word-spacing:3.221194px;}
.wsd6{word-spacing:3.221981px;}
.wse0{word-spacing:3.223517px;}
.wsee{word-spacing:3.223968px;}
.wsc0{word-spacing:3.224822px;}
.wscb{word-spacing:3.227040px;}
.wsc6{word-spacing:3.227904px;}
.wsf0{word-spacing:3.281702px;}
.ws42{word-spacing:3.287658px;}
.ws75{word-spacing:3.347434px;}
.wsfd{word-spacing:3.389299px;}
.ws4f{word-spacing:3.407209px;}
.wsdd{word-spacing:3.443098px;}
.ws67{word-spacing:3.466985px;}
.wscc{word-spacing:3.496896px;}
.ws6c{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.wsa7{word-spacing:3.646312px;}
.ws6b{word-spacing:3.706087px;}
.ws90{word-spacing:3.765863px;}
.wscd{word-spacing:3.765888px;}
.wsbd{word-spacing:3.825638px;}
.ws4e{word-spacing:3.885414px;}
.wsbb{word-spacing:3.945190px;}
.ws74{word-spacing:4.004965px;}
.ws4c{word-spacing:4.064741px;}
.ws5b{word-spacing:4.124516px;}
.wsb3{word-spacing:4.244068px;}
.ws10{word-spacing:4.250074px;}
.wsb1{word-spacing:4.303843px;}
.ws8d{word-spacing:4.363619px;}
.ws63{word-spacing:4.483170px;}
.wsb6{word-spacing:4.542946px;}
.ws10a{word-spacing:4.626662px;}
.ws92{word-spacing:4.662497px;}
.ws68{word-spacing:4.722272px;}
.wsa{word-spacing:4.770079px;}
.wsa6{word-spacing:4.841824px;}
.wsce{word-spacing:4.841856px;}
.wsb{word-spacing:4.853765px;}
.ws73{word-spacing:4.901599px;}
.wsbf{word-spacing:4.949453px;}
.ws78{word-spacing:4.961375px;}
.ws55{word-spacing:5.080926px;}
.ws65{word-spacing:5.140702px;}
.ws37{word-spacing:5.200477px;}
.ws38{word-spacing:5.260253px;}
.wsf8{word-spacing:5.272243px;}
.wsaf{word-spacing:5.320028px;}
.wsbe{word-spacing:5.326042px;}
.wseb{word-spacing:5.433638px;}
.ws21{word-spacing:5.439580px;}
.ws17{word-spacing:5.487437px;}
.ws71{word-spacing:5.618906px;}
.ws9c{word-spacing:5.678682px;}
.wsb7{word-spacing:5.738458px;}
.ws22{word-spacing:5.917784px;}
.wsad{word-spacing:6.097111px;}
.wsb5{word-spacing:6.276438px;}
.ws103{word-spacing:6.402010px;}
.ws105{word-spacing:6.455808px;}
.wsa1{word-spacing:6.635092px;}
.wsae{word-spacing:6.754643px;}
.ws23{word-spacing:7.053521px;}
.ws88{word-spacing:7.190653px;}
.ws3a{word-spacing:7.232848px;}
.ws3b{word-spacing:7.292623px;}
.wsb0{word-spacing:7.352399px;}
.ws8{word-spacing:7.782761px;}
.ws62{word-spacing:7.950155px;}
.ws3e{word-spacing:8.009930px;}
.ws3{word-spacing:10.418857px;}
.ws5c{word-spacing:10.998710px;}
.ws7f{word-spacing:11.039452px;}
.ws2a{word-spacing:11.910929px;}
.wsa3{word-spacing:12.074671px;}
.ws6{word-spacing:12.176255px;}
.ws102{word-spacing:12.373632px;}
.wsc9{word-spacing:13.019213px;}
.wsd3{word-spacing:13.073011px;}
.wsd8{word-spacing:13.126810px;}
.wsd0{word-spacing:13.180608px;}
.wsdb{word-spacing:13.234406px;}
.wsf6{word-spacing:13.288205px;}
.wse9{word-spacing:13.342003px;}
.ws100{word-spacing:13.382995px;}
.wsde{word-spacing:13.384416px;}
.wsd7{word-spacing:13.384829px;}
.wsf9{word-spacing:13.384867px;}
.wsea{word-spacing:13.385069px;}
.wsed{word-spacing:13.385616px;}
.wsc7{word-spacing:13.385626px;}
.wsff{word-spacing:13.386979px;}
.wsd4{word-spacing:13.387334px;}
.wsf7{word-spacing:13.388822px;}
.wsfa{word-spacing:13.388995px;}
.wse4{word-spacing:13.389120px;}
.ws104{word-spacing:13.391002px;}
.wsca{word-spacing:13.391712px;}
.wse1{word-spacing:13.393402px;}
.wsc5{word-spacing:13.395802px;}
.wsdc{word-spacing:13.449600px;}
.wsfc{word-spacing:13.503398px;}
.wsf5{word-spacing:13.557197px;}
.wse7{word-spacing:13.610995px;}
.ws107{word-spacing:13.664794px;}
.ws26{word-spacing:14.884124px;}
.wsf2{word-spacing:15.009754px;}
.ws6e{word-spacing:15.063451px;}
.wse3{word-spacing:15.171149px;}
.ws4{word-spacing:15.481836px;}
.wsd2{word-spacing:15.978125px;}
.ws109{word-spacing:16.085722px;}
.ws7{word-spacing:16.109478px;}
.wsfe{word-spacing:16.677504px;}
.wscf{word-spacing:18.291456px;}
.ws66{word-spacing:18.470660px;}
.wsec{word-spacing:18.829440px;}
.ws9{word-spacing:26.109907px;}
.ws5{word-spacing:26.840252px;}
.ws48{word-spacing:488.112883px;}
.ws45{word-spacing:1027.764634px;}
._1d{margin-left:-8.386635px;}
._a{margin-left:-7.196995px;}
._13{margin-left:-6.097079px;}
._6{margin-left:-4.841856px;}
._26{margin-left:-3.753905px;}
._3{margin-left:-2.630133px;}
._2{margin-left:-1.506341px;}
._1f{width:1.191733px;}
._22{width:3.825704px;}
._21{width:10.132083px;}
._25{width:11.172083px;}
._0{width:12.968141px;}
._c{width:14.824386px;}
._14{width:16.145509px;}
._5{width:17.209499px;}
._4{width:18.829440px;}
._10{width:20.407403px;}
._8{width:21.411602px;}
._7{width:23.252722px;}
._f{width:25.595908px;}
._b{width:27.138122px;}
._11{width:28.883572px;}
._1{width:30.587087px;}
._23{width:32.649428px;}
._27{width:33.971171px;}
._1c{width:35.638208px;}
._28{width:36.882051px;}
._9{width:39.451896px;}
._12{width:40.946286px;}
._1e{width:42.631954px;}
._15{width:394.862554px;}
._17{width:580.113974px;}
._1a{width:658.922803px;}
._18{width:731.873434px;}
._1b{width:742.641830px;}
._16{width:768.671539px;}
._19{width:830.789021px;}
._d{width:905.194337px;}
._20{width:2000.215010px;}
._24{width:2536.713300px;}
._e{width:2560.623300px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:43.642200px;}
.fsc{font-size:45.486000px;}
.fsf{font-size:47.337600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:51.300000px;}
.fsa{font-size:53.798400px;}
.fsd{font-size:57.114000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y125{bottom:-236.690648px;}
.y12b{bottom:-180.429869px;}
.y12a{bottom:-162.133399px;}
.y129{bottom:-143.922600px;}
.y128{bottom:-121.351148px;}
.y127{bottom:-86.381648px;}
.y126{bottom:-65.006647px;}
.y0{bottom:0.000000px;}
.y34{bottom:9.233944px;}
.y33{bottom:26.903761px;}
.y61{bottom:31.890000px;}
.y1d9{bottom:94.719000px;}
.y4{bottom:97.125005px;}
.yf2{bottom:101.812500px;}
.y238{bottom:102.847500px;}
.y287{bottom:103.158000px;}
.y60{bottom:103.621500px;}
.y31{bottom:104.646000px;}
.y121{bottom:106.744500px;}
.y16b{bottom:106.869000px;}
.y262{bottom:108.945000px;}
.ybf{bottom:110.767500px;}
.y1d8{bottom:113.548500px;}
.y2b8{bottom:114.636000px;}
.yf1{bottom:120.642000px;}
.y237{bottom:121.677000px;}
.y2ed{bottom:121.762500px;}
.y286{bottom:121.987500px;}
.y5f{bottom:122.449500px;}
.y30{bottom:122.535000px;}
.y120{bottom:125.574000px;}
.y16a{bottom:125.698500px;}
.y97{bottom:126.471000px;}
.y261{bottom:127.774500px;}
.ybe{bottom:129.597000px;}
.y2b7{bottom:131.895000px;}
.y1d7{bottom:132.378000px;}
.y2ec{bottom:139.023000px;}
.y1f{bottom:139.264499px;}
.yf0{bottom:139.471500px;}
.y29d{bottom:139.920000px;}
.y2f{bottom:140.422500px;}
.y236{bottom:140.506500px;}
.y285{bottom:140.817000px;}
.y5e{bottom:141.279000px;}
.y11f{bottom:144.403500px;}
.y169{bottom:144.528000px;}
.y96{bottom:145.300500px;}
.y195{bottom:145.749000px;}
.y260{bottom:146.604000px;}
.ybd{bottom:148.425000px;}
.y2b6{bottom:149.155500px;}
.y1f8{bottom:150.231000px;}
.y1d6{bottom:151.207500px;}
.y2eb{bottom:156.283500px;}
.yef{bottom:158.301000px;}
.y2e{bottom:158.310000px;}
.y29c{bottom:158.749500px;}
.y235{bottom:159.336000px;}
.y284{bottom:159.646500px;}
.y5d{bottom:160.108500px;}
.y11e{bottom:163.233000px;}
.y168{bottom:163.357500px;}
.y95{bottom:164.130000px;}
.y194{bottom:164.578500px;}
.y25f{bottom:165.433500px;}
.y2b5{bottom:166.416000px;}
.ybc{bottom:167.254500px;}
.y1f7{bottom:169.060500px;}
.y1d5{bottom:170.037000px;}
.y2ea{bottom:173.544000px;}
.y2d{bottom:176.199000px;}
.y29b{bottom:177.579000px;}
.y234{bottom:178.165500px;}
.y283{bottom:178.476000px;}
.y5c{bottom:178.938000px;}
.yee{bottom:181.614000px;}
.y11d{bottom:182.062500px;}
.y167{bottom:182.187000px;}
.y94{bottom:182.959500px;}
.y193{bottom:183.408000px;}
.y2b4{bottom:183.676500px;}
.y25e{bottom:184.263000px;}
.ybb{bottom:186.084000px;}
.y1f6{bottom:187.890000px;}
.y2e9{bottom:190.804500px;}
.y1d4{bottom:193.350000px;}
.y2c{bottom:194.086500px;}
.y29a{bottom:196.408500px;}
.y16{bottom:196.933500px;}
.y233{bottom:196.995000px;}
.y282{bottom:197.305500px;}
.y11c{bottom:200.892000px;}
.y2b3{bottom:200.937000px;}
.y166{bottom:201.016500px;}
.y93{bottom:201.789000px;}
.y192{bottom:202.237500px;}
.y5b{bottom:202.251000px;}
.y25d{bottom:203.092500px;}
.y1f5{bottom:206.719500px;}
.y2e8{bottom:208.065000px;}
.yba{bottom:209.397000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y2b{bottom:211.974000px;}
.y1d3{bottom:212.179500px;}
.y12c{bottom:212.665500px;}
.yed{bottom:215.238000px;}
.y232{bottom:215.824500px;}
.y281{bottom:216.135000px;}
.y2b2{bottom:218.197500px;}
.y11b{bottom:219.721500px;}
.y165{bottom:219.846000px;}
.y92{bottom:220.618500px;}
.y191{bottom:221.065500px;}
.y25c{bottom:221.922000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y5a{bottom:222.426000px;}
.y2e7{bottom:225.325500px;}
.y1f4{bottom:225.549000px;}
.y2a{bottom:229.863000px;}
.y1d2{bottom:231.009000px;}
.yec{bottom:234.067500px;}
.y231{bottom:234.654000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y280{bottom:234.964500px;}
.y2b1{bottom:235.458000px;}
.y122{bottom:238.083000px;}
.y11a{bottom:238.551000px;}
.y164{bottom:238.675500px;}
.y91{bottom:239.446500px;}
.y190{bottom:239.895000px;}
.y2e6{bottom:242.586000px;}
.yb9{bottom:243.021000px;}
.y1f3{bottom:244.378500px;}
.y25b{bottom:245.235000px;}
.y1d1{bottom:249.838500px;}
.y2b0{bottom:252.718500px;}
.yeb{bottom:252.897000px;}
.y230{bottom:253.483500px;}
.y27f{bottom:253.794000px;}
.y59{bottom:256.050000px;}
.y119{bottom:257.380500px;}
.y163{bottom:257.505000px;}
.y90{bottom:258.276000px;}
.y18f{bottom:258.724500px;}
.y2e5{bottom:259.846500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.yb8{bottom:261.850500px;}
.y1f2{bottom:267.691500px;}
.y1d0{bottom:268.668000px;}
.y2af{bottom:269.979000px;}
.yea{bottom:271.726500px;}
.y22f{bottom:272.313000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y27e{bottom:272.623500px;}
.y58{bottom:274.879500px;}
.y118{bottom:276.210000px;}
.y162{bottom:276.334500px;}
.y8f{bottom:277.105500px;}
.y18e{bottom:277.554000px;}
.y25a{bottom:278.859000px;}
.yb7{bottom:280.680000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y1f1{bottom:286.521000px;}
.y2ae{bottom:287.238000px;}
.y1cf{bottom:287.497500px;}
.ye9{bottom:290.556000px;}
.y22e{bottom:291.142500px;}
.y27d{bottom:291.453000px;}
.y57{bottom:293.709000px;}
.y2e4{bottom:294.366000px;}
.y117{bottom:295.039500px;}
.y8e{bottom:295.935000px;}
.y18d{bottom:296.383500px;}
.y29{bottom:297.166500px;}
.y259{bottom:297.688500px;}
.yb6{bottom:299.509500px;}
.y2ad{bottom:304.498500px;}
.y1f0{bottom:305.350500px;}
.y1ce{bottom:306.327000px;}
.ye8{bottom:309.385500px;}
.y22d{bottom:309.972000px;}
.y27c{bottom:310.282500px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y2e3{bottom:311.626500px;}
.y56{bottom:312.538500px;}
.y116{bottom:313.869000px;}
.y8d{bottom:314.764500px;}
.y28{bottom:315.054000px;}
.y18c{bottom:315.213000px;}
.y258{bottom:316.518000px;}
.yb5{bottom:318.339000px;}
.y2ac{bottom:321.759000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y161{bottom:324.784500px;}
.y1cd{bottom:325.156500px;}
.ye7{bottom:328.215000px;}
.y1ef{bottom:328.663500px;}
.y2e2{bottom:328.887000px;}
.y27b{bottom:329.112000px;}
.y55{bottom:331.368000px;}
.y115{bottom:332.698500px;}
.y27{bottom:332.941500px;}
.y8c{bottom:333.594000px;}
.y18b{bottom:334.042500px;}
.y257{bottom:335.347500px;}
.yb4{bottom:337.168500px;}
.y2ab{bottom:339.019500px;}
.y160{bottom:341.223000px;}
.y2e1{bottom:346.147500px;}
.ye6{bottom:347.044500px;}
.y1ee{bottom:347.493000px;}
.y27a{bottom:347.940000px;}
.yd{bottom:348.133500px;}
.y1cc{bottom:348.469500px;}
.y54{bottom:350.196000px;}
.y26{bottom:350.830500px;}
.y114{bottom:351.528000px;}
.y8b{bottom:352.423500px;}
.y18a{bottom:352.872000px;}
.y256{bottom:354.177000px;}
.yb3{bottom:355.998000px;}
.y23d{bottom:356.010000px;}
.y15f{bottom:357.661500px;}
.y22c{bottom:358.423500px;}
.y2aa{bottom:360.763500px;}
.y2e0{bottom:363.408000px;}
.ye5{bottom:365.874000px;}
.y1ed{bottom:366.322500px;}
.y279{bottom:366.769500px;}
.y1cb{bottom:367.299000px;}
.y53{bottom:369.025500px;}
.y113{bottom:370.357500px;}
.y8a{bottom:371.253000px;}
.y189{bottom:371.701500px;}
.y255{bottom:373.006500px;}
.y15b{bottom:374.100000px;}
.yb2{bottom:374.827500px;}
.y22b{bottom:374.860500px;}
.y25{bottom:377.685000px;}
.y2df{bottom:380.668500px;}
.ye4{bottom:384.703500px;}
.y1ec{bottom:385.152000px;}
.y278{bottom:385.599000px;}
.yc{bottom:386.785499px;}
.y52{bottom:387.855000px;}
.y112{bottom:389.187000px;}
.y23c{bottom:389.634000px;}
.y89{bottom:390.082500px;}
.y188{bottom:390.531000px;}
.y15a{bottom:390.538500px;}
.y22a{bottom:391.299000px;}
.y254{bottom:391.836000px;}
.yb1{bottom:393.657000px;}
.y2a9{bottom:394.387500px;}
.y299{bottom:394.611000px;}
.y24{bottom:395.572500px;}
.y2de{bottom:397.929000px;}
.ye3{bottom:403.533000px;}
.y1eb{bottom:403.981500px;}
.y277{bottom:404.428500px;}
.y51{bottom:406.684500px;}
.y159{bottom:406.977000px;}
.y229{bottom:407.737500px;}
.y298{bottom:408.015000px;}
.yb{bottom:408.044999px;}
.y23b{bottom:408.463500px;}
.y88{bottom:408.912000px;}
.y187{bottom:409.360500px;}
.y253{bottom:410.665500px;}
.yb0{bottom:412.486500px;}
.y111{bottom:412.498500px;}
.y1ca{bottom:412.761000px;}
.y23{bottom:413.460000px;}
.y2dd{bottom:415.188000px;}
.y2a8{bottom:420.927000px;}
.ye2{bottom:422.362500px;}
.y1ea{bottom:422.811000px;}
.y276{bottom:423.258000px;}
.y158{bottom:423.415500px;}
.y228{bottom:424.176000px;}
.y50{bottom:425.514000px;}
.y297{bottom:426.844500px;}
.y23a{bottom:427.293000px;}
.y87{bottom:427.741500px;}
.y186{bottom:428.190000px;}
.y1c9{bottom:429.198000px;}
.y252{bottom:429.495000px;}
.yaf{bottom:431.316000px;}
.y22{bottom:431.349000px;}
.y2dc{bottom:432.448500px;}
.y1c2{bottom:437.418000px;}
.y2a7{bottom:438.501000px;}
.y15e{bottom:439.854000px;}
.y227{bottom:440.614500px;}
.ye0{bottom:441.192000px;}
.y1e9{bottom:441.639000px;}
.y275{bottom:442.087500px;}
.ye1{bottom:443.545500px;}
.y4f{bottom:444.343500px;}
.y1c8{bottom:445.636500px;}
.y296{bottom:445.674000px;}
.y110{bottom:446.122500px;}
.y86{bottom:446.571000px;}
.y251{bottom:448.323000px;}
.y21{bottom:449.236500px;}
.y2db{bottom:449.709000px;}
.yae{bottom:450.145500px;}
.y185{bottom:451.503000px;}
.y1c1{bottom:453.856500px;}
.y15d{bottom:456.292500px;}
.y226{bottom:457.053000px;}
.ydf{bottom:460.021500px;}
.y1e8{bottom:460.468500px;}
.y274{bottom:460.917000px;}
.y1c7{bottom:462.075000px;}
.y4e{bottom:463.173000px;}
.y295{bottom:464.503500px;}
.y10f{bottom:464.952000px;}
.y2a6{bottom:465.042000px;}
.y217{bottom:465.271500px;}
.y85{bottom:465.400500px;}
.y2da{bottom:466.969500px;}
.y20{bottom:467.124000px;}
.y250{bottom:467.152500px;}
.yad{bottom:468.975000px;}
.y1c0{bottom:470.295000px;}
.y15c{bottom:472.731000px;}
.y225{bottom:473.491500px;}
.y1c6{bottom:478.513500px;}
.yde{bottom:478.851000px;}
.y1e7{bottom:479.298000px;}
.y273{bottom:479.746500px;}
.y216{bottom:481.710000px;}
.y4d{bottom:482.002500px;}
.y294{bottom:483.333000px;}
.y10e{bottom:483.781500px;}
.y84{bottom:484.230000px;}
.y184{bottom:485.127000px;}
.y1bf{bottom:486.733500px;}
.yac{bottom:487.804500px;}
.y224{bottom:489.930000px;}
.y2a5{bottom:491.583000px;}
.y1c5{bottom:494.952000px;}
.y157{bottom:496.371000px;}
.ydd{bottom:497.680500px;}
.y1e6{bottom:498.127500px;}
.y215{bottom:498.148500px;}
.y272{bottom:498.576000px;}
.y4c{bottom:500.832000px;}
.y2d9{bottom:501.490500px;}
.y293{bottom:502.162500px;}
.y10d{bottom:502.611000px;}
.y83{bottom:503.059500px;}
.y1be{bottom:503.170500px;}
.y183{bottom:503.956500px;}
.y223{bottom:506.368500px;}
.y2a4{bottom:509.157000px;}
.y1c4{bottom:511.390500px;}
.y156{bottom:512.809500px;}
.y214{bottom:514.587000px;}
.y24f{bottom:515.604000px;}
.ydc{bottom:516.508500px;}
.y1e5{bottom:516.957000px;}
.y271{bottom:517.405500px;}
.y2d8{bottom:518.751000px;}
.y4b{bottom:519.661500px;}
.ya{bottom:520.864502px;}
.y292{bottom:520.992000px;}
.y10c{bottom:521.440500px;}
.y82{bottom:521.889000px;}
.y182{bottom:522.786000px;}
.y222{bottom:522.807000px;}
.y1c3{bottom:527.829000px;}
.y155{bottom:529.248000px;}
.y213{bottom:531.025500px;}
.y24d{bottom:532.042500px;}
.yab{bottom:533.266500px;}
.ydb{bottom:535.338000px;}
.y2a3{bottom:535.698000px;}
.y1e4{bottom:535.786500px;}
.y2d7{bottom:536.011500px;}
.y270{bottom:536.235000px;}
.y4a{bottom:538.491000px;}
.y9{bottom:538.864499px;}
.y221{bottom:539.244000px;}
.y291{bottom:539.821500px;}
.y10b{bottom:540.270000px;}
.y81{bottom:540.718500px;}
.y181{bottom:541.615500px;}
.y154{bottom:545.686500px;}
.y212{bottom:547.464000px;}
.y24c{bottom:548.481000px;}
.yaa{bottom:549.705000px;}
.y1bd{bottom:551.469000px;}
.y2d6{bottom:553.272000px;}
.y14c{bottom:553.905000px;}
.y1e3{bottom:554.616000px;}
.y26f{bottom:555.064500px;}
.y220{bottom:555.682500px;}
.y8{bottom:556.864499px;}
.yda{bottom:558.651000px;}
.y10a{bottom:559.099500px;}
.y80{bottom:559.548000px;}
.y180{bottom:560.445000px;}
.y49{bottom:561.804000px;}
.y153{bottom:562.125000px;}
.y2a2{bottom:562.237500px;}
.y211{bottom:563.902500px;}
.y24b{bottom:564.919500px;}
.ya9{bottom:566.142000px;}
.y1bc{bottom:567.907500px;}
.y14b{bottom:570.343500px;}
.y2d5{bottom:570.531000px;}
.y21f{bottom:572.121000px;}
.y1e2{bottom:573.445500px;}
.y26e{bottom:573.894000px;}
.y290{bottom:577.480500px;}
.y109{bottom:577.929000px;}
.y7f{bottom:578.377500px;}
.y152{bottom:578.563500px;}
.y17f{bottom:579.274500px;}
.y2a1{bottom:579.811500px;}
.y210{bottom:580.341000px;}
.y24a{bottom:581.358000px;}
.ya8{bottom:582.580500px;}
.y1bb{bottom:584.346000px;}
.y14a{bottom:586.782000px;}
.y2d4{bottom:587.791500px;}
.y21e{bottom:588.559500px;}
.yd9{bottom:592.275000px;}
.y26d{bottom:592.723500px;}
.y151{bottom:595.000500px;}
.y28f{bottom:596.310000px;}
.y108{bottom:596.758500px;}
.y7e{bottom:597.207000px;}
.y2a0{bottom:597.385500px;}
.y249{bottom:597.796500px;}
.y17e{bottom:598.104000px;}
.ya7{bottom:599.019000px;}
.y1b7{bottom:600.784500px;}
.y149{bottom:603.220500px;}
.y21d{bottom:604.998000px;}
.y2d3{bottom:605.052000px;}
.yd8{bottom:611.104500px;}
.y150{bottom:611.439000px;}
.y26c{bottom:611.553000px;}
.y24e{bottom:614.233500px;}
.y29f{bottom:614.961000px;}
.y28e{bottom:615.139500px;}
.ya6{bottom:615.457500px;}
.y107{bottom:615.588000px;}
.y7d{bottom:616.036500px;}
.y17d{bottom:616.933500px;}
.y1b6{bottom:617.223000px;}
.y21c{bottom:621.436500px;}
.y2d2{bottom:622.312500px;}
.y14f{bottom:627.877500px;}
.yd7{bottom:629.934000px;}
.y26b{bottom:630.382500px;}
.ya5{bottom:631.896000px;}
.y29e{bottom:632.535000px;}
.y1b5{bottom:633.661500px;}
.y28d{bottom:633.969000px;}
.y106{bottom:634.417500px;}
.y7c{bottom:634.866000px;}
.y2f0{bottom:635.014500px;}
.y17c{bottom:635.763000px;}
.y48{bottom:636.954000px;}
.y21b{bottom:637.875000px;}
.y2d1{bottom:639.573000px;}
.y14e{bottom:644.316000px;}
.y7{bottom:645.510000px;}
.ya4{bottom:648.334500px;}
.yd6{bottom:648.763500px;}
.y26a{bottom:649.212000px;}
.y1b4{bottom:650.100000px;}
.y2ef{bottom:652.275000px;}
.y28c{bottom:652.798500px;}
.y105{bottom:653.247000px;}
.y7b{bottom:653.695500px;}
.y21a{bottom:654.313500px;}
.y17b{bottom:654.591000px;}
.y2d0{bottom:656.833500px;}
.y14d{bottom:660.754500px;}
.ya3{bottom:664.773000px;}
.y1ba{bottom:666.538500px;}
.y6{bottom:666.771000px;}
.yd5{bottom:667.593000px;}
.y269{bottom:668.041500px;}
.y2ee{bottom:669.535500px;}
.y219{bottom:670.752000px;}
.y28b{bottom:671.628000px;}
.y104{bottom:672.076500px;}
.y7a{bottom:672.525000px;}
.ya2{bottom:672.991500px;}
.y17a{bottom:673.420500px;}
.y2cf{bottom:674.094000px;}
.y47{bottom:674.343000px;}
.y242{bottom:678.970500px;}
.y1b9{bottom:682.977000px;}
.y148{bottom:684.396000px;}
.yd4{bottom:686.422500px;}
.y268{bottom:686.871000px;}
.y218{bottom:687.190500px;}
.y28a{bottom:690.457500px;}
.y103{bottom:690.906000px;}
.y79{bottom:691.354500px;}
.y46{bottom:693.801000px;}
.y241{bottom:695.409000px;}
.y179{bottom:696.733500px;}
.ya1{bottom:697.650000px;}
.y1b8{bottom:699.414000px;}
.y147{bottom:700.834500px;}
.y248{bottom:703.627500px;}
.yd3{bottom:705.252000px;}
.y267{bottom:705.700500px;}
.y2ce{bottom:708.613500px;}
.y289{bottom:709.287000px;}
.y102{bottom:709.735500px;}
.y78{bottom:710.184000px;}
.y20f{bottom:710.830500px;}
.y240{bottom:711.847500px;}
.y45{bottom:713.257500px;}
.ya0{bottom:714.088500px;}
.y178{bottom:715.563000px;}
.y146{bottom:717.271500px;}
.y247{bottom:720.066000px;}
.y1b3{bottom:723.055500px;}
.yd2{bottom:724.081500px;}
.y266{bottom:724.530000px;}
.y2cd{bottom:725.874000px;}
.y5{bottom:726.298500px;}
.y20e{bottom:727.269000px;}
.y23f{bottom:728.286000px;}
.y101{bottom:728.565000px;}
.y77{bottom:729.013500px;}
.y9f{bottom:730.525500px;}
.y288{bottom:732.600000px;}
.y44{bottom:732.715500px;}
.y145{bottom:733.710000px;}
.y177{bottom:734.392500px;}
.y246{bottom:736.504500px;}
.y1b2{bottom:739.494000px;}
.yd1{bottom:742.911000px;}
.y2cc{bottom:743.134500px;}
.y265{bottom:743.359500px;}
.y20d{bottom:743.707500px;}
.y23e{bottom:744.724500px;}
.y9b{bottom:746.964000px;}
.y100{bottom:747.394500px;}
.y76{bottom:747.843000px;}
.y144{bottom:750.148500px;}
.y43{bottom:752.172000px;}
.y3{bottom:752.599495px;}
.y245{bottom:752.943000px;}
.y176{bottom:753.222000px;}
.y1b1{bottom:755.932500px;}
.y20c{bottom:760.146000px;}
.y2cb{bottom:760.395000px;}
.yd0{bottom:761.740500px;}
.y264{bottom:762.189000px;}
.y9a{bottom:763.402500px;}
.yff{bottom:766.224000px;}
.y143{bottom:766.587000px;}
.y75{bottom:766.671000px;}
.y244{bottom:769.381500px;}
.y42{bottom:771.628500px;}
.y1b0{bottom:772.371000px;}
.y175{bottom:776.535000px;}
.y20b{bottom:776.584500px;}
.y2ca{bottom:777.655500px;}
.y9e{bottom:779.841000px;}
.ycf{bottom:780.570000px;}
.y1a7{bottom:780.589500px;}
.y263{bottom:781.018500px;}
.y13c{bottom:783.025500px;}
.yfe{bottom:785.053500px;}
.y74{bottom:785.500500px;}
.y243{bottom:785.820000px;}
.y1af{bottom:788.809500px;}
.y41{bottom:791.086500px;}
.y20a{bottom:793.023000px;}
.y2c9{bottom:794.916000px;}
.y174{bottom:795.364500px;}
.y9d{bottom:796.279500px;}
.y1a6{bottom:797.028000px;}
.yce{bottom:799.399500px;}
.y13b{bottom:799.464000px;}
.y1e1{bottom:799.848000px;}
.yfd{bottom:803.883000px;}
.y73{bottom:804.330000px;}
.y1ae{bottom:805.246500px;}
.y209{bottom:809.461500px;}
.y40{bottom:810.543000px;}
.y2c8{bottom:812.176500px;}
.y9c{bottom:812.718000px;}
.y1a5{bottom:813.466500px;}
.y173{bottom:814.194000px;}
.y13a{bottom:815.902500px;}
.ycd{bottom:818.229000px;}
.y1e0{bottom:818.677500px;}
.y1ad{bottom:821.685000px;}
.yfc{bottom:822.712500px;}
.y72{bottom:823.159500px;}
.y208{bottom:825.898500px;}
.y2c7{bottom:829.437000px;}
.y99{bottom:829.753500px;}
.y1a4{bottom:829.905000px;}
.y3f{bottom:829.999500px;}
.y142{bottom:832.341000px;}
.y172{bottom:833.023500px;}
.ycc{bottom:837.058500px;}
.y1df{bottom:837.507000px;}
.y1ac{bottom:838.123500px;}
.yfb{bottom:841.540500px;}
.y71{bottom:841.989000px;}
.y1ff{bottom:842.337000px;}
.y124{bottom:842.661481px;}
.y1a3{bottom:846.343500px;}
.y2c6{bottom:846.697500px;}
.y141{bottom:848.779500px;}
.y3e{bottom:849.457500px;}
.y123{bottom:851.809853px;}
.y171{bottom:851.853000px;}
.y1ab{bottom:854.562000px;}
.ycb{bottom:855.888000px;}
.y1de{bottom:856.335000px;}
.y1fe{bottom:858.775500px;}
.yfa{bottom:860.370000px;}
.y70{bottom:860.818500px;}
.y98{bottom:861.373500px;}
.y2c5{bottom:863.956500px;}
.y140{bottom:865.218000px;}
.y3d{bottom:868.914000px;}
.y170{bottom:870.682500px;}
.y1aa{bottom:871.000500px;}
.yca{bottom:874.717500px;}
.y1dd{bottom:875.164500px;}
.y1fd{bottom:875.214000px;}
.yf9{bottom:879.199500px;}
.y2{bottom:879.369000px;}
.y6f{bottom:879.648000px;}
.y2c4{bottom:881.217000px;}
.y13f{bottom:881.655000px;}
.y1a9{bottom:887.439000px;}
.y3c{bottom:888.372000px;}
.y1fc{bottom:891.652500px;}
.yc9{bottom:893.547000px;}
.y16f{bottom:893.994000px;}
.yf8{bottom:898.029000px;}
.y13e{bottom:898.093500px;}
.y6e{bottom:898.477500px;}
.y1a8{bottom:903.877500px;}
.y3b{bottom:907.828500px;}
.y1fb{bottom:908.091000px;}
.yc8{bottom:912.376500px;}
.y16e{bottom:912.823500px;}
.y13d{bottom:914.532000px;}
.y2c3{bottom:915.738000px;}
.yf7{bottom:916.858500px;}
.y6d{bottom:917.307000px;}
.y1fa{bottom:924.529500px;}
.y3a{bottom:927.285000px;}
.y1a2{bottom:927.517500px;}
.yc7{bottom:931.206000px;}
.y16d{bottom:931.653000px;}
.y2c2{bottom:932.998500px;}
.yf6{bottom:935.688000px;}
.y6c{bottom:936.136500px;}
.y139{bottom:938.173500px;}
.y1f9{bottom:940.968000px;}
.y1a1{bottom:943.956000px;}
.yc6{bottom:950.034000px;}
.y2c1{bottom:950.259000px;}
.y16c{bottom:950.482500px;}
.yf5{bottom:954.517500px;}
.y138{bottom:954.612000px;}
.y6b{bottom:954.966000px;}
.y207{bottom:957.406500px;}
.y1a0{bottom:960.394500px;}
.y39{bottom:964.480500px;}
.y1{bottom:966.726000px;}
.y2c0{bottom:967.519500px;}
.yc5{bottom:968.863500px;}
.y1dc{bottom:969.312000px;}
.y137{bottom:971.050500px;}
.yf4{bottom:973.347000px;}
.y6a{bottom:973.795500px;}
.y206{bottom:973.845000px;}
.y19f{bottom:976.833000px;}
.y131{bottom:979.269000px;}
.y38{bottom:980.619000px;}
.y2bf{bottom:984.780000px;}
.y198{bottom:985.053000px;}
.y136{bottom:987.487500px;}
.y1db{bottom:988.141500px;}
.y205{bottom:990.282000px;}
.yc4{bottom:992.176500px;}
.y69{bottom:992.625000px;}
.y19e{bottom:993.271500px;}
.y130{bottom:995.707500px;}
.yf3{bottom:996.660000px;}
.y197{bottom:1001.490000px;}
.y2be{bottom:1002.040500px;}
.y135{bottom:1003.926000px;}
.y204{bottom:1006.720500px;}
.y1da{bottom:1006.971000px;}
.y19d{bottom:1009.710000px;}
.y68{bottom:1011.454500px;}
.y12f{bottom:1012.146000px;}
.y239{bottom:1015.489500px;}
.y196{bottom:1017.928500px;}
.y2bd{bottom:1019.299500px;}
.y134{bottom:1020.364500px;}
.y203{bottom:1023.159000px;}
.yc3{bottom:1025.800500px;}
.y19c{bottom:1026.148500px;}
.y37{bottom:1028.244000px;}
.y67{bottom:1030.284000px;}
.y2bc{bottom:1036.560000px;}
.y133{bottom:1036.803000px;}
.y202{bottom:1039.597500px;}
.y19b{bottom:1042.587000px;}
.yc2{bottom:1044.630000px;}
.y66{bottom:1049.113500px;}
.y132{bottom:1053.241500px;}
.y2bb{bottom:1053.820500px;}
.y201{bottom:1056.036000px;}
.y19a{bottom:1059.025500px;}
.yc1{bottom:1063.459500px;}
.y36{bottom:1065.006000px;}
.y65{bottom:1067.943000px;}
.y2ba{bottom:1071.081000px;}
.y200{bottom:1072.474500px;}
.y199{bottom:1075.462500px;}
.yc0{bottom:1082.289000px;}
.y64{bottom:1086.772500px;}
.y12e{bottom:1087.849500px;}
.y2b9{bottom:1088.341500px;}
.y35{bottom:1093.251000px;}
.y63{bottom:1105.602000px;}
.y12d{bottom:1107.082500px;}
.y32{bottom:1136.737500px;}
.y62{bottom:1168.366500px;}
.h1d{height:26.461718px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h16{height:31.771522px;}
.h7{height:32.130000px;}
.h19{height:33.203892px;}
.h18{height:33.492621px;}
.h10{height:34.813397px;}
.h1e{height:34.818209px;}
.h14{height:35.052500px;}
.h1b{height:37.773633px;}
.h11{height:38.734848px;}
.h12{height:39.165235px;}
.h1f{height:39.434227px;}
.h1c{height:41.106463px;}
.h1a{height:41.692104px;}
.hf{height:43.038432px;}
.h13{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h2{height:55.080000px;}
.hc{height:61.613006px;}
.h15{height:72.045235px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h17{height:768.563775px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w5{width:759.611070px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:11.752545px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x2e{left:62.541000px;}
.x20{left:66.440430px;}
.x44{left:68.275500px;}
.x43{left:71.355000px;}
.x41{left:73.716000px;}
.x40{left:76.264500px;}
.x49{left:84.219000px;}
.x2c{left:86.022000px;}
.x4a{left:93.466500px;}
.x3f{left:96.613500px;}
.x25{left:97.695000px;}
.x26{left:100.903500px;}
.x1{left:102.045000px;}
.x2d{left:103.452000px;}
.x2{left:106.297500px;}
.x42{left:107.802000px;}
.x29{left:111.447000px;}
.x4b{left:116.532000px;}
.x2f{left:119.625000px;}
.x23{left:197.544045px;}
.x4{left:203.484001px;}
.x24{left:227.810945px;}
.x28{left:237.208500px;}
.x27{left:238.998000px;}
.x30{left:247.348500px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x38{left:264.571500px;}
.x35{left:266.218500px;}
.x37{left:267.879000px;}
.x31{left:269.413500px;}
.xc{left:271.444500px;}
.x36{left:272.910000px;}
.x32{left:274.684500px;}
.x39{left:278.491500px;}
.xa{left:281.479500px;}
.x19{left:283.347000px;}
.x3a{left:286.971000px;}
.x3d{left:292.845000px;}
.x16{left:295.323000px;}
.x1a{left:297.589500px;}
.x18{left:299.761500px;}
.xd{left:302.398500px;}
.x1b{left:304.966500px;}
.x9{left:308.358000px;}
.x3e{left:316.186500px;}
.x1c{left:319.593000px;}
.xb{left:326.862000px;}
.x34{left:389.430000px;}
.x33{left:391.218000px;}
.x4e{left:394.687500px;}
.x3b{left:422.686500px;}
.x50{left:427.963500px;}
.x13{left:444.844500px;}
.x3c{left:446.668500px;}
.xf{left:447.703500px;}
.x14{left:448.765500px;}
.x10{left:451.086000px;}
.x3{left:454.959000px;}
.xe{left:456.762000px;}
.x12{left:459.007500px;}
.x1d{left:463.003500px;}
.x1e{left:465.633000px;}
.x47{left:474.226500px;}
.x11{left:480.466500px;}
.x1f{left:482.206500px;}
.x4f{left:487.300500px;}
.x48{left:498.601500px;}
.x2a{left:506.422500px;}
.x15{left:508.507500px;}
.x2b{left:527.436000px;}
.x17{left:557.248500px;}
.x45{left:678.630000px;}
.x46{left:699.645000px;}
.x22{left:757.740045px;}
.x4c{left:803.907000px;}
.x4d{left:808.054500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.226667pt;}
.ls28{letter-spacing:-0.055845pt;}
.ls26{letter-spacing:-0.024259pt;}
.ls27{letter-spacing:-0.004043pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.020307pt;}
.ls20{letter-spacing:0.027360pt;}
.ls23{letter-spacing:0.030461pt;}
.ls21{letter-spacing:0.041040pt;}
.ls22{letter-spacing:0.050160pt;}
.ls24{letter-spacing:0.071075pt;}
.ls29{letter-spacing:0.076152pt;}
.ls1f{letter-spacing:0.149598pt;}
.ls1e{letter-spacing:0.161728pt;}
.ls2{letter-spacing:10.626533pt;}
.ls2a{letter-spacing:11.476915pt;}
.lsd{letter-spacing:11.955200pt;}
.ls16{letter-spacing:12.327057pt;}
.ls19{letter-spacing:12.752128pt;}
.ls18{letter-spacing:12.805262pt;}
.ls13{letter-spacing:12.964663pt;}
.ls1a{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.124065pt;}
.ls8{letter-spacing:13.177199pt;}
.ls6{letter-spacing:13.283467pt;}
.ls5{letter-spacing:13.336601pt;}
.ls9{letter-spacing:13.389734pt;}
.ls10{letter-spacing:13.442868pt;}
.ls17{letter-spacing:13.496002pt;}
.ls1b{letter-spacing:13.549136pt;}
.ls2c{letter-spacing:14.611813pt;}
.ls1c{letter-spacing:14.877483pt;}
.lsf{letter-spacing:15.408821pt;}
.ls3{letter-spacing:15.515089pt;}
.ls4{letter-spacing:15.568223pt;}
.ls1d{letter-spacing:15.727625pt;}
.ls11{letter-spacing:15.780758pt;}
.ls15{letter-spacing:15.993294pt;}
.ls12{letter-spacing:16.099562pt;}
.ls14{letter-spacing:17.162239pt;}
.lsb{letter-spacing:17.587310pt;}
.lsc{letter-spacing:17.852979pt;}
.ls2b{letter-spacing:19.712665pt;}
.ls1{letter-spacing:25.292137pt;}
.lse{letter-spacing:463.485338pt;}
.wsd{word-spacing:-20.194365pt;}
.ws34{word-spacing:-13.283467pt;}
.ws47{word-spacing:-11.955200pt;}
.ws2b{word-spacing:-10.626800pt;}
.ws7a{word-spacing:-10.269728pt;}
.ws7b{word-spacing:-10.108000pt;}
.wsc{word-spacing:-9.298400pt;}
.ws5f{word-spacing:-3.985040pt;}
.ws97{word-spacing:-3.134898pt;}
.ws8c{word-spacing:-2.821427pt;}
.wsb8{word-spacing:-2.709827pt;}
.wsa5{word-spacing:-2.656693pt;}
.wsa4{word-spacing:-2.497292pt;}
.wsa2{word-spacing:-2.444158pt;}
.ws86{word-spacing:-2.421634pt;}
.wsab{word-spacing:-2.391024pt;}
.ws85{word-spacing:-2.381019pt;}
.ws96{word-spacing:-2.178489pt;}
.wsba{word-spacing:-2.072221pt;}
.wsbc{word-spacing:-2.019087pt;}
.wsd5{word-spacing:-2.008474pt;}
.ws8f{word-spacing:-1.912819pt;}
.wsa9{word-spacing:-1.859685pt;}
.wsc1{word-spacing:-1.817190pt;}
.wsac{word-spacing:-1.753418pt;}
.ws59{word-spacing:-1.700284pt;}
.ws57{word-spacing:-1.647150pt;}
.wsc2{word-spacing:-1.625907pt;}
.ws9f{word-spacing:-1.540882pt;}
.wsc3{word-spacing:-1.482445pt;}
.ws91{word-spacing:-1.328347pt;}
.ws61{word-spacing:-1.275213pt;}
.ws6d{word-spacing:-1.222079pt;}
.ws4a{word-spacing:-1.168945pt;}
.ws33{word-spacing:-1.062677pt;}
.ws5a{word-spacing:-1.009543pt;}
.ws60{word-spacing:-0.956410pt;}
.ws101{word-spacing:-0.908595pt;}
.ws58{word-spacing:-0.903276pt;}
.ws5e{word-spacing:-0.850142pt;}
.ws35{word-spacing:-0.797008pt;}
.wsb4{word-spacing:-0.743874pt;}
.ws5d{word-spacing:-0.690740pt;}
.ws70{word-spacing:-0.637606pt;}
.ws49{word-spacing:-0.584473pt;}
.ws9e{word-spacing:-0.531339pt;}
.ws6a{word-spacing:-0.478205pt;}
.ws39{word-spacing:-0.425071pt;}
.wsaa{word-spacing:-0.382566pt;}
.wsc8{word-spacing:-0.334746pt;}
.ws52{word-spacing:-0.318803pt;}
.wsc4{word-spacing:-0.286925pt;}
.ws1e{word-spacing:-0.265669pt;}
.ws11{word-spacing:-0.239104pt;}
.ws7d{word-spacing:-0.234506pt;}
.ws36{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws20{word-spacing:-0.159402pt;}
.ws15{word-spacing:-0.143462pt;}
.ws2e{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws7e{word-spacing:-0.068734pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws7c{word-spacing:-0.048518pt;}
.ws12{word-spacing:-0.047821pt;}
.ws2c{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws89{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws46{word-spacing:0.095642pt;}
.ws82{word-spacing:0.104880pt;}
.ws27{word-spacing:0.106268pt;}
.ws81{word-spacing:0.114000pt;}
.ws80{word-spacing:0.127680pt;}
.ws84{word-spacing:0.131997pt;}
.ws83{word-spacing:0.137074pt;}
.wsf{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws8b{word-spacing:0.191283pt;}
.ws1f{word-spacing:0.212535pt;}
.ws8a{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.wsd9{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.318803pt;}
.ws79{word-spacing:0.371937pt;}
.ws9b{word-spacing:0.425071pt;}
.ws69{word-spacing:0.478205pt;}
.ws106{word-spacing:0.526029pt;}
.wsa0{word-spacing:0.584473pt;}
.ws99{word-spacing:0.637606pt;}
.ws94{word-spacing:0.690740pt;}
.ws18{word-spacing:0.717312pt;}
.ws93{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws3d{word-spacing:0.903276pt;}
.ws76{word-spacing:1.009543pt;}
.wse5{word-spacing:1.052058pt;}
.wsa8{word-spacing:1.062677pt;}
.ws6f{word-spacing:1.115811pt;}
.ws24{word-spacing:1.168945pt;}
.ws64{word-spacing:1.222079pt;}
.ws9a{word-spacing:1.275213pt;}
.ws4b{word-spacing:1.328347pt;}
.ws40{word-spacing:1.381481pt;}
.ws3f{word-spacing:1.434614pt;}
.wsf1{word-spacing:1.434624pt;}
.ws1c{word-spacing:1.487748pt;}
.ws30{word-spacing:1.540882pt;}
.wse2{word-spacing:1.578086pt;}
.ws4d{word-spacing:1.594016pt;}
.wsb9{word-spacing:1.647150pt;}
.ws31{word-spacing:1.753418pt;}
.ws51{word-spacing:1.806551pt;}
.ws9d{word-spacing:1.859685pt;}
.ws2d{word-spacing:1.912819pt;}
.ws98{word-spacing:1.965953pt;}
.ws95{word-spacing:2.019087pt;}
.ws3c{word-spacing:2.072221pt;}
.ws77{word-spacing:2.125355pt;}
.wsda{word-spacing:2.151936pt;}
.wsb2{word-spacing:2.178489pt;}
.ws87{word-spacing:2.188101pt;}
.wse6{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231616pt;}
.ws72{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws50{word-spacing:2.284756pt;}
.wsd1{word-spacing:2.295398pt;}
.ws29{word-spacing:2.391024pt;}
.ws108{word-spacing:2.438861pt;}
.ws56{word-spacing:2.444158pt;}
.ws13{word-spacing:2.486682pt;}
.ws53{word-spacing:2.497292pt;}
.ws54{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.wsf4{word-spacing:2.582323pt;}
.ws8e{word-spacing:2.603559pt;}
.ws1d{word-spacing:2.709827pt;}
.wse8{word-spacing:2.725786pt;}
.ws44{word-spacing:2.762961pt;}
.wsef{word-spacing:2.773606pt;}
.ws43{word-spacing:2.816095pt;}
.wsf3{word-spacing:2.860826pt;}
.ws19{word-spacing:2.861926pt;}
.wsdf{word-spacing:2.862046pt;}
.wsfb{word-spacing:2.863283pt;}
.wsd6{word-spacing:2.863983pt;}
.wse0{word-spacing:2.865348pt;}
.wsee{word-spacing:2.865749pt;}
.wsc0{word-spacing:2.866509pt;}
.wscb{word-spacing:2.868480pt;}
.wsc6{word-spacing:2.869248pt;}
.wsf0{word-spacing:2.917069pt;}
.ws42{word-spacing:2.922363pt;}
.ws75{word-spacing:2.975497pt;}
.wsfd{word-spacing:3.012710pt;}
.ws4f{word-spacing:3.028630pt;}
.wsdd{word-spacing:3.060531pt;}
.ws67{word-spacing:3.081764pt;}
.wscc{word-spacing:3.108352pt;}
.ws6c{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.wsa7{word-spacing:3.241166pt;}
.ws6b{word-spacing:3.294300pt;}
.ws90{word-spacing:3.347434pt;}
.wscd{word-spacing:3.347456pt;}
.wsbd{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.453701pt;}
.wsbb{word-spacing:3.506835pt;}
.ws74{word-spacing:3.559969pt;}
.ws4c{word-spacing:3.613103pt;}
.ws5b{word-spacing:3.666237pt;}
.wsb3{word-spacing:3.772505pt;}
.ws10{word-spacing:3.777843pt;}
.wsb1{word-spacing:3.825638pt;}
.ws8d{word-spacing:3.878772pt;}
.ws63{word-spacing:3.985040pt;}
.wsb6{word-spacing:4.038174pt;}
.ws10a{word-spacing:4.112589pt;}
.ws92{word-spacing:4.144442pt;}
.ws68{word-spacing:4.197575pt;}
.wsa{word-spacing:4.240070pt;}
.wsa6{word-spacing:4.303843pt;}
.wsce{word-spacing:4.303872pt;}
.wsb{word-spacing:4.314458pt;}
.ws73{word-spacing:4.356977pt;}
.wsbf{word-spacing:4.399514pt;}
.ws78{word-spacing:4.410111pt;}
.ws55{word-spacing:4.516379pt;}
.ws65{word-spacing:4.569513pt;}
.ws37{word-spacing:4.622646pt;}
.ws38{word-spacing:4.675780pt;}
.wsf8{word-spacing:4.686438pt;}
.wsaf{word-spacing:4.728914pt;}
.wsbe{word-spacing:4.734259pt;}
.wseb{word-spacing:4.829901pt;}
.ws21{word-spacing:4.835182pt;}
.ws17{word-spacing:4.877722pt;}
.ws71{word-spacing:4.994583pt;}
.ws9c{word-spacing:5.047717pt;}
.wsb7{word-spacing:5.100851pt;}
.ws22{word-spacing:5.260253pt;}
.wsad{word-spacing:5.419654pt;}
.wsb5{word-spacing:5.579056pt;}
.ws103{word-spacing:5.690675pt;}
.ws105{word-spacing:5.738496pt;}
.wsa1{word-spacing:5.897859pt;}
.wsae{word-spacing:6.004127pt;}
.ws23{word-spacing:6.269796pt;}
.ws88{word-spacing:6.391691pt;}
.ws3a{word-spacing:6.429198pt;}
.ws3b{word-spacing:6.482332pt;}
.wsb0{word-spacing:6.535466pt;}
.ws8{word-spacing:6.918010pt;}
.ws62{word-spacing:7.066804pt;}
.ws3e{word-spacing:7.119938pt;}
.ws3{word-spacing:9.261206pt;}
.ws5c{word-spacing:9.776631pt;}
.ws7f{word-spacing:9.812846pt;}
.ws2a{word-spacing:10.587492pt;}
.wsa3{word-spacing:10.733041pt;}
.ws6{word-spacing:10.823338pt;}
.ws102{word-spacing:10.998784pt;}
.wsc9{word-spacing:11.572634pt;}
.wsd3{word-spacing:11.620454pt;}
.wsd8{word-spacing:11.668275pt;}
.wsd0{word-spacing:11.716096pt;}
.wsdb{word-spacing:11.763917pt;}
.wsf6{word-spacing:11.811738pt;}
.wse9{word-spacing:11.859558pt;}
.ws100{word-spacing:11.895996pt;}
.wsde{word-spacing:11.897259pt;}
.wsd7{word-spacing:11.897626pt;}
.wsf9{word-spacing:11.897660pt;}
.wsea{word-spacing:11.897839pt;}
.wsed{word-spacing:11.898325pt;}
.wsc7{word-spacing:11.898334pt;}
.wsff{word-spacing:11.899537pt;}
.wsd4{word-spacing:11.899853pt;}
.wsf7{word-spacing:11.901175pt;}
.wsfa{word-spacing:11.901329pt;}
.wse4{word-spacing:11.901440pt;}
.ws104{word-spacing:11.903113pt;}
.wsca{word-spacing:11.903744pt;}
.wse1{word-spacing:11.905246pt;}
.wsc5{word-spacing:11.907379pt;}
.wsdc{word-spacing:11.955200pt;}
.wsfc{word-spacing:12.003021pt;}
.wsf5{word-spacing:12.050842pt;}
.wse7{word-spacing:12.098662pt;}
.ws107{word-spacing:12.146483pt;}
.ws26{word-spacing:13.230333pt;}
.wsf2{word-spacing:13.342003pt;}
.ws6e{word-spacing:13.389734pt;}
.wse3{word-spacing:13.485466pt;}
.ws4{word-spacing:13.761632pt;}
.wsd2{word-spacing:14.202778pt;}
.ws109{word-spacing:14.298419pt;}
.ws7{word-spacing:14.319536pt;}
.wsfe{word-spacing:14.824448pt;}
.wscf{word-spacing:16.259072pt;}
.ws66{word-spacing:16.418365pt;}
.wsec{word-spacing:16.737280pt;}
.ws9{word-spacing:23.208806pt;}
.ws5{word-spacing:23.858002pt;}
.ws48{word-spacing:433.878118pt;}
.ws45{word-spacing:913.568563pt;}
._1d{margin-left:-7.454787pt;}
._a{margin-left:-6.397329pt;}
._13{margin-left:-5.419626pt;}
._6{margin-left:-4.303872pt;}
._26{margin-left:-3.336805pt;}
._3{margin-left:-2.337896pt;}
._2{margin-left:-1.338970pt;}
._1f{width:1.059318pt;}
._22{width:3.400626pt;}
._21{width:9.006296pt;}
._25{width:9.930741pt;}
._0{width:11.527236pt;}
._c{width:13.177232pt;}
._14{width:14.351563pt;}
._5{width:15.297333pt;}
._4{width:16.737280pt;}
._10{width:18.139914pt;}
._8{width:19.032535pt;}
._7{width:20.669086pt;}
._f{width:22.751918pt;}
._b{width:24.122775pt;}
._11{width:25.674286pt;}
._1{width:27.188522pt;}
._23{width:29.021714pt;}
._27{width:30.196596pt;}
._1c{width:31.678407pt;}
._28{width:32.784045pt;}
._9{width:35.068352pt;}
._12{width:36.396699pt;}
._1e{width:37.895070pt;}
._15{width:350.988937pt;}
._17{width:515.656866pt;}
._1a{width:585.709158pt;}
._18{width:650.554163pt;}
._1b{width:660.126071pt;}
._16{width:683.263590pt;}
._19{width:738.479130pt;}
._d{width:804.617189pt;}
._20{width:1777.968898pt;}
._24{width:2254.856267pt;}
._e{width:2276.109600pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:38.793067pt;}
.fsc{font-size:40.432000pt;}
.fsf{font-size:42.077867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:45.600000pt;}
.fsa{font-size:47.820800pt;}
.fsd{font-size:50.768000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y125{bottom:-210.391687pt;}
.y12b{bottom:-160.382106pt;}
.y12a{bottom:-144.118577pt;}
.y129{bottom:-127.931200pt;}
.y128{bottom:-107.867687pt;}
.y127{bottom:-76.783687pt;}
.y126{bottom:-57.783687pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:8.207950pt;}
.y33{bottom:23.914454pt;}
.y61{bottom:28.346667pt;}
.y1d9{bottom:84.194667pt;}
.y4{bottom:86.333337pt;}
.yf2{bottom:90.500000pt;}
.y238{bottom:91.420000pt;}
.y287{bottom:91.696000pt;}
.y60{bottom:92.108000pt;}
.y31{bottom:93.018667pt;}
.y121{bottom:94.884000pt;}
.y16b{bottom:94.994667pt;}
.y262{bottom:96.840000pt;}
.ybf{bottom:98.460000pt;}
.y1d8{bottom:100.932000pt;}
.y2b8{bottom:101.898667pt;}
.yf1{bottom:107.237333pt;}
.y237{bottom:108.157333pt;}
.y2ed{bottom:108.233333pt;}
.y286{bottom:108.433333pt;}
.y5f{bottom:108.844000pt;}
.y30{bottom:108.920000pt;}
.y120{bottom:111.621333pt;}
.y16a{bottom:111.732000pt;}
.y97{bottom:112.418667pt;}
.y261{bottom:113.577333pt;}
.ybe{bottom:115.197333pt;}
.y2b7{bottom:117.240000pt;}
.y1d7{bottom:117.669333pt;}
.y2ec{bottom:123.576000pt;}
.y1f{bottom:123.790666pt;}
.yf0{bottom:123.974667pt;}
.y29d{bottom:124.373333pt;}
.y2f{bottom:124.820000pt;}
.y236{bottom:124.894667pt;}
.y285{bottom:125.170667pt;}
.y5e{bottom:125.581333pt;}
.y11f{bottom:128.358667pt;}
.y169{bottom:128.469333pt;}
.y96{bottom:129.156000pt;}
.y195{bottom:129.554667pt;}
.y260{bottom:130.314667pt;}
.ybd{bottom:131.933333pt;}
.y2b6{bottom:132.582667pt;}
.y1f8{bottom:133.538667pt;}
.y1d6{bottom:134.406667pt;}
.y2eb{bottom:138.918667pt;}
.yef{bottom:140.712000pt;}
.y2e{bottom:140.720000pt;}
.y29c{bottom:141.110667pt;}
.y235{bottom:141.632000pt;}
.y284{bottom:141.908000pt;}
.y5d{bottom:142.318667pt;}
.y11e{bottom:145.096000pt;}
.y168{bottom:145.206667pt;}
.y95{bottom:145.893333pt;}
.y194{bottom:146.292000pt;}
.y25f{bottom:147.052000pt;}
.y2b5{bottom:147.925333pt;}
.ybc{bottom:148.670667pt;}
.y1f7{bottom:150.276000pt;}
.y1d5{bottom:151.144000pt;}
.y2ea{bottom:154.261333pt;}
.y2d{bottom:156.621333pt;}
.y29b{bottom:157.848000pt;}
.y234{bottom:158.369333pt;}
.y283{bottom:158.645333pt;}
.y5c{bottom:159.056000pt;}
.yee{bottom:161.434667pt;}
.y11d{bottom:161.833333pt;}
.y167{bottom:161.944000pt;}
.y94{bottom:162.630667pt;}
.y193{bottom:163.029333pt;}
.y2b4{bottom:163.268000pt;}
.y25e{bottom:163.789333pt;}
.ybb{bottom:165.408000pt;}
.y1f6{bottom:167.013333pt;}
.y2e9{bottom:169.604000pt;}
.y1d4{bottom:171.866667pt;}
.y2c{bottom:172.521333pt;}
.y29a{bottom:174.585333pt;}
.y16{bottom:175.052000pt;}
.y233{bottom:175.106667pt;}
.y282{bottom:175.382667pt;}
.y11c{bottom:178.570667pt;}
.y2b3{bottom:178.610667pt;}
.y166{bottom:178.681333pt;}
.y93{bottom:179.368000pt;}
.y192{bottom:179.766667pt;}
.y5b{bottom:179.778667pt;}
.y25d{bottom:180.526667pt;}
.y1f5{bottom:183.750667pt;}
.y2e8{bottom:184.946667pt;}
.yba{bottom:186.130667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y2b{bottom:188.421333pt;}
.y1d3{bottom:188.604000pt;}
.y12c{bottom:189.036000pt;}
.yed{bottom:191.322667pt;}
.y232{bottom:191.844000pt;}
.y281{bottom:192.120000pt;}
.y2b2{bottom:193.953333pt;}
.y11b{bottom:195.308000pt;}
.y165{bottom:195.418667pt;}
.y92{bottom:196.105333pt;}
.y191{bottom:196.502667pt;}
.y25c{bottom:197.264000pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y5a{bottom:197.712000pt;}
.y2e7{bottom:200.289333pt;}
.y1f4{bottom:200.488000pt;}
.y2a{bottom:204.322667pt;}
.y1d2{bottom:205.341333pt;}
.yec{bottom:208.060000pt;}
.y231{bottom:208.581333pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y280{bottom:208.857333pt;}
.y2b1{bottom:209.296000pt;}
.y122{bottom:211.629333pt;}
.y11a{bottom:212.045333pt;}
.y164{bottom:212.156000pt;}
.y91{bottom:212.841333pt;}
.y190{bottom:213.240000pt;}
.y2e6{bottom:215.632000pt;}
.yb9{bottom:216.018667pt;}
.y1f3{bottom:217.225333pt;}
.y25b{bottom:217.986667pt;}
.y1d1{bottom:222.078667pt;}
.y2b0{bottom:224.638667pt;}
.yeb{bottom:224.797333pt;}
.y230{bottom:225.318667pt;}
.y27f{bottom:225.594667pt;}
.y59{bottom:227.600000pt;}
.y119{bottom:228.782667pt;}
.y163{bottom:228.893333pt;}
.y90{bottom:229.578667pt;}
.y18f{bottom:229.977333pt;}
.y2e5{bottom:230.974667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.yb8{bottom:232.756000pt;}
.y1f2{bottom:237.948000pt;}
.y1d0{bottom:238.816000pt;}
.y2af{bottom:239.981333pt;}
.yea{bottom:241.534667pt;}
.y22f{bottom:242.056000pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y27e{bottom:242.332000pt;}
.y58{bottom:244.337333pt;}
.y118{bottom:245.520000pt;}
.y162{bottom:245.630667pt;}
.y8f{bottom:246.316000pt;}
.y18e{bottom:246.714667pt;}
.y25a{bottom:247.874667pt;}
.yb7{bottom:249.493333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y1f1{bottom:254.685333pt;}
.y2ae{bottom:255.322667pt;}
.y1cf{bottom:255.553333pt;}
.ye9{bottom:258.272000pt;}
.y22e{bottom:258.793333pt;}
.y27d{bottom:259.069333pt;}
.y57{bottom:261.074667pt;}
.y2e4{bottom:261.658667pt;}
.y117{bottom:262.257333pt;}
.y8e{bottom:263.053333pt;}
.y18d{bottom:263.452000pt;}
.y29{bottom:264.148000pt;}
.y259{bottom:264.612000pt;}
.yb6{bottom:266.230667pt;}
.y2ad{bottom:270.665333pt;}
.y1f0{bottom:271.422667pt;}
.y1ce{bottom:272.290667pt;}
.ye8{bottom:275.009333pt;}
.y22d{bottom:275.530667pt;}
.y27c{bottom:275.806667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y2e3{bottom:277.001333pt;}
.y56{bottom:277.812000pt;}
.y116{bottom:278.994667pt;}
.y8d{bottom:279.790667pt;}
.y28{bottom:280.048000pt;}
.y18c{bottom:280.189333pt;}
.y258{bottom:281.349333pt;}
.yb5{bottom:282.968000pt;}
.y2ac{bottom:286.008000pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y161{bottom:288.697333pt;}
.y1cd{bottom:289.028000pt;}
.ye7{bottom:291.746667pt;}
.y1ef{bottom:292.145333pt;}
.y2e2{bottom:292.344000pt;}
.y27b{bottom:292.544000pt;}
.y55{bottom:294.549333pt;}
.y115{bottom:295.732000pt;}
.y27{bottom:295.948000pt;}
.y8c{bottom:296.528000pt;}
.y18b{bottom:296.926667pt;}
.y257{bottom:298.086667pt;}
.yb4{bottom:299.705333pt;}
.y2ab{bottom:301.350667pt;}
.y160{bottom:303.309333pt;}
.y2e1{bottom:307.686667pt;}
.ye6{bottom:308.484000pt;}
.y1ee{bottom:308.882667pt;}
.y27a{bottom:309.280000pt;}
.yd{bottom:309.452000pt;}
.y1cc{bottom:309.750667pt;}
.y54{bottom:311.285333pt;}
.y26{bottom:311.849333pt;}
.y114{bottom:312.469333pt;}
.y8b{bottom:313.265333pt;}
.y18a{bottom:313.664000pt;}
.y256{bottom:314.824000pt;}
.yb3{bottom:316.442667pt;}
.y23d{bottom:316.453333pt;}
.y15f{bottom:317.921333pt;}
.y22c{bottom:318.598667pt;}
.y2aa{bottom:320.678667pt;}
.y2e0{bottom:323.029333pt;}
.ye5{bottom:325.221333pt;}
.y1ed{bottom:325.620000pt;}
.y279{bottom:326.017333pt;}
.y1cb{bottom:326.488000pt;}
.y53{bottom:328.022667pt;}
.y113{bottom:329.206667pt;}
.y8a{bottom:330.002667pt;}
.y189{bottom:330.401333pt;}
.y255{bottom:331.561333pt;}
.y15b{bottom:332.533333pt;}
.yb2{bottom:333.180000pt;}
.y22b{bottom:333.209333pt;}
.y25{bottom:335.720000pt;}
.y2df{bottom:338.372000pt;}
.ye4{bottom:341.958667pt;}
.y1ec{bottom:342.357333pt;}
.y278{bottom:342.754667pt;}
.yc{bottom:343.809333pt;}
.y52{bottom:344.760000pt;}
.y112{bottom:345.944000pt;}
.y23c{bottom:346.341333pt;}
.y89{bottom:346.740000pt;}
.y188{bottom:347.138667pt;}
.y15a{bottom:347.145333pt;}
.y22a{bottom:347.821333pt;}
.y254{bottom:348.298667pt;}
.yb1{bottom:349.917333pt;}
.y2a9{bottom:350.566667pt;}
.y299{bottom:350.765333pt;}
.y24{bottom:351.620000pt;}
.y2de{bottom:353.714667pt;}
.ye3{bottom:358.696000pt;}
.y1eb{bottom:359.094667pt;}
.y277{bottom:359.492000pt;}
.y51{bottom:361.497333pt;}
.y159{bottom:361.757333pt;}
.y229{bottom:362.433333pt;}
.y298{bottom:362.680000pt;}
.yb{bottom:362.706666pt;}
.y23b{bottom:363.078667pt;}
.y88{bottom:363.477333pt;}
.y187{bottom:363.876000pt;}
.y253{bottom:365.036000pt;}
.yb0{bottom:366.654667pt;}
.y111{bottom:366.665333pt;}
.y1ca{bottom:366.898667pt;}
.y23{bottom:367.520000pt;}
.y2dd{bottom:369.056000pt;}
.y2a8{bottom:374.157333pt;}
.ye2{bottom:375.433333pt;}
.y1ea{bottom:375.832000pt;}
.y276{bottom:376.229333pt;}
.y158{bottom:376.369333pt;}
.y228{bottom:377.045333pt;}
.y50{bottom:378.234667pt;}
.y297{bottom:379.417333pt;}
.y23a{bottom:379.816000pt;}
.y87{bottom:380.214667pt;}
.y186{bottom:380.613333pt;}
.y1c9{bottom:381.509333pt;}
.y252{bottom:381.773333pt;}
.yaf{bottom:383.392000pt;}
.y22{bottom:383.421333pt;}
.y2dc{bottom:384.398667pt;}
.y1c2{bottom:388.816000pt;}
.y2a7{bottom:389.778667pt;}
.y15e{bottom:390.981333pt;}
.y227{bottom:391.657333pt;}
.ye0{bottom:392.170667pt;}
.y1e9{bottom:392.568000pt;}
.y275{bottom:392.966667pt;}
.ye1{bottom:394.262667pt;}
.y4f{bottom:394.972000pt;}
.y1c8{bottom:396.121333pt;}
.y296{bottom:396.154667pt;}
.y110{bottom:396.553333pt;}
.y86{bottom:396.952000pt;}
.y251{bottom:398.509333pt;}
.y21{bottom:399.321333pt;}
.y2db{bottom:399.741333pt;}
.yae{bottom:400.129333pt;}
.y185{bottom:401.336000pt;}
.y1c1{bottom:403.428000pt;}
.y15d{bottom:405.593333pt;}
.y226{bottom:406.269333pt;}
.ydf{bottom:408.908000pt;}
.y1e8{bottom:409.305333pt;}
.y274{bottom:409.704000pt;}
.y1c7{bottom:410.733333pt;}
.y4e{bottom:411.709333pt;}
.y295{bottom:412.892000pt;}
.y10f{bottom:413.290667pt;}
.y2a6{bottom:413.370667pt;}
.y217{bottom:413.574667pt;}
.y85{bottom:413.689333pt;}
.y2da{bottom:415.084000pt;}
.y20{bottom:415.221333pt;}
.y250{bottom:415.246667pt;}
.yad{bottom:416.866667pt;}
.y1c0{bottom:418.040000pt;}
.y15c{bottom:420.205333pt;}
.y225{bottom:420.881333pt;}
.y1c6{bottom:425.345333pt;}
.yde{bottom:425.645333pt;}
.y1e7{bottom:426.042667pt;}
.y273{bottom:426.441333pt;}
.y216{bottom:428.186667pt;}
.y4d{bottom:428.446667pt;}
.y294{bottom:429.629333pt;}
.y10e{bottom:430.028000pt;}
.y84{bottom:430.426667pt;}
.y184{bottom:431.224000pt;}
.y1bf{bottom:432.652000pt;}
.yac{bottom:433.604000pt;}
.y224{bottom:435.493333pt;}
.y2a5{bottom:436.962667pt;}
.y1c5{bottom:439.957333pt;}
.y157{bottom:441.218667pt;}
.ydd{bottom:442.382667pt;}
.y1e6{bottom:442.780000pt;}
.y215{bottom:442.798667pt;}
.y272{bottom:443.178667pt;}
.y4c{bottom:445.184000pt;}
.y2d9{bottom:445.769333pt;}
.y293{bottom:446.366667pt;}
.y10d{bottom:446.765333pt;}
.y83{bottom:447.164000pt;}
.y1be{bottom:447.262667pt;}
.y183{bottom:447.961333pt;}
.y223{bottom:450.105333pt;}
.y2a4{bottom:452.584000pt;}
.y1c4{bottom:454.569333pt;}
.y156{bottom:455.830667pt;}
.y214{bottom:457.410667pt;}
.y24f{bottom:458.314667pt;}
.ydc{bottom:459.118667pt;}
.y1e5{bottom:459.517333pt;}
.y271{bottom:459.916000pt;}
.y2d8{bottom:461.112000pt;}
.y4b{bottom:461.921333pt;}
.ya{bottom:462.990669pt;}
.y292{bottom:463.104000pt;}
.y10c{bottom:463.502667pt;}
.y82{bottom:463.901333pt;}
.y182{bottom:464.698667pt;}
.y222{bottom:464.717333pt;}
.y1c3{bottom:469.181333pt;}
.y155{bottom:470.442667pt;}
.y213{bottom:472.022667pt;}
.y24d{bottom:472.926667pt;}
.yab{bottom:474.014667pt;}
.ydb{bottom:475.856000pt;}
.y2a3{bottom:476.176000pt;}
.y1e4{bottom:476.254667pt;}
.y2d7{bottom:476.454667pt;}
.y270{bottom:476.653333pt;}
.y4a{bottom:478.658667pt;}
.y9{bottom:478.990666pt;}
.y221{bottom:479.328000pt;}
.y291{bottom:479.841333pt;}
.y10b{bottom:480.240000pt;}
.y81{bottom:480.638667pt;}
.y181{bottom:481.436000pt;}
.y154{bottom:485.054667pt;}
.y212{bottom:486.634667pt;}
.y24c{bottom:487.538667pt;}
.yaa{bottom:488.626667pt;}
.y1bd{bottom:490.194667pt;}
.y2d6{bottom:491.797333pt;}
.y14c{bottom:492.360000pt;}
.y1e3{bottom:492.992000pt;}
.y26f{bottom:493.390667pt;}
.y220{bottom:493.940000pt;}
.y8{bottom:494.990666pt;}
.yda{bottom:496.578667pt;}
.y10a{bottom:496.977333pt;}
.y80{bottom:497.376000pt;}
.y180{bottom:498.173333pt;}
.y49{bottom:499.381333pt;}
.y153{bottom:499.666667pt;}
.y2a2{bottom:499.766667pt;}
.y211{bottom:501.246667pt;}
.y24b{bottom:502.150667pt;}
.ya9{bottom:503.237333pt;}
.y1bc{bottom:504.806667pt;}
.y14b{bottom:506.972000pt;}
.y2d5{bottom:507.138667pt;}
.y21f{bottom:508.552000pt;}
.y1e2{bottom:509.729333pt;}
.y26e{bottom:510.128000pt;}
.y290{bottom:513.316000pt;}
.y109{bottom:513.714667pt;}
.y7f{bottom:514.113333pt;}
.y152{bottom:514.278667pt;}
.y17f{bottom:514.910667pt;}
.y2a1{bottom:515.388000pt;}
.y210{bottom:515.858667pt;}
.y24a{bottom:516.762667pt;}
.ya8{bottom:517.849333pt;}
.y1bb{bottom:519.418667pt;}
.y14a{bottom:521.584000pt;}
.y2d4{bottom:522.481333pt;}
.y21e{bottom:523.164000pt;}
.yd9{bottom:526.466667pt;}
.y26d{bottom:526.865333pt;}
.y151{bottom:528.889333pt;}
.y28f{bottom:530.053333pt;}
.y108{bottom:530.452000pt;}
.y7e{bottom:530.850667pt;}
.y2a0{bottom:531.009333pt;}
.y249{bottom:531.374667pt;}
.y17e{bottom:531.648000pt;}
.ya7{bottom:532.461333pt;}
.y1b7{bottom:534.030667pt;}
.y149{bottom:536.196000pt;}
.y21d{bottom:537.776000pt;}
.y2d3{bottom:537.824000pt;}
.yd8{bottom:543.204000pt;}
.y150{bottom:543.501333pt;}
.y26c{bottom:543.602667pt;}
.y24e{bottom:545.985333pt;}
.y29f{bottom:546.632000pt;}
.y28e{bottom:546.790667pt;}
.ya6{bottom:547.073333pt;}
.y107{bottom:547.189333pt;}
.y7d{bottom:547.588000pt;}
.y17d{bottom:548.385333pt;}
.y1b6{bottom:548.642667pt;}
.y21c{bottom:552.388000pt;}
.y2d2{bottom:553.166667pt;}
.y14f{bottom:558.113333pt;}
.yd7{bottom:559.941333pt;}
.y26b{bottom:560.340000pt;}
.ya5{bottom:561.685333pt;}
.y29e{bottom:562.253333pt;}
.y1b5{bottom:563.254667pt;}
.y28d{bottom:563.528000pt;}
.y106{bottom:563.926667pt;}
.y7c{bottom:564.325333pt;}
.y2f0{bottom:564.457333pt;}
.y17c{bottom:565.122667pt;}
.y48{bottom:566.181333pt;}
.y21b{bottom:567.000000pt;}
.y2d1{bottom:568.509333pt;}
.y14e{bottom:572.725333pt;}
.y7{bottom:573.786667pt;}
.ya4{bottom:576.297333pt;}
.yd6{bottom:576.678667pt;}
.y26a{bottom:577.077333pt;}
.y1b4{bottom:577.866667pt;}
.y2ef{bottom:579.800000pt;}
.y28c{bottom:580.265333pt;}
.y105{bottom:580.664000pt;}
.y7b{bottom:581.062667pt;}
.y21a{bottom:581.612000pt;}
.y17b{bottom:581.858667pt;}
.y2d0{bottom:583.852000pt;}
.y14d{bottom:587.337333pt;}
.ya3{bottom:590.909333pt;}
.y1ba{bottom:592.478667pt;}
.y6{bottom:592.685334pt;}
.yd5{bottom:593.416000pt;}
.y269{bottom:593.814667pt;}
.y2ee{bottom:595.142667pt;}
.y219{bottom:596.224000pt;}
.y28b{bottom:597.002667pt;}
.y104{bottom:597.401333pt;}
.y7a{bottom:597.800000pt;}
.ya2{bottom:598.214667pt;}
.y17a{bottom:598.596000pt;}
.y2cf{bottom:599.194667pt;}
.y47{bottom:599.416000pt;}
.y242{bottom:603.529333pt;}
.y1b9{bottom:607.090667pt;}
.y148{bottom:608.352000pt;}
.yd4{bottom:610.153333pt;}
.y268{bottom:610.552000pt;}
.y218{bottom:610.836000pt;}
.y28a{bottom:613.740000pt;}
.y103{bottom:614.138667pt;}
.y79{bottom:614.537333pt;}
.y46{bottom:616.712000pt;}
.y241{bottom:618.141333pt;}
.y179{bottom:619.318667pt;}
.ya1{bottom:620.133333pt;}
.y1b8{bottom:621.701333pt;}
.y147{bottom:622.964000pt;}
.y248{bottom:625.446667pt;}
.yd3{bottom:626.890667pt;}
.y267{bottom:627.289333pt;}
.y2ce{bottom:629.878667pt;}
.y289{bottom:630.477333pt;}
.y102{bottom:630.876000pt;}
.y78{bottom:631.274667pt;}
.y20f{bottom:631.849333pt;}
.y240{bottom:632.753333pt;}
.y45{bottom:634.006667pt;}
.ya0{bottom:634.745333pt;}
.y178{bottom:636.056000pt;}
.y146{bottom:637.574667pt;}
.y247{bottom:640.058667pt;}
.y1b3{bottom:642.716000pt;}
.yd2{bottom:643.628000pt;}
.y266{bottom:644.026667pt;}
.y2cd{bottom:645.221333pt;}
.y5{bottom:645.598667pt;}
.y20e{bottom:646.461333pt;}
.y23f{bottom:647.365333pt;}
.y101{bottom:647.613333pt;}
.y77{bottom:648.012000pt;}
.y9f{bottom:649.356000pt;}
.y288{bottom:651.200000pt;}
.y44{bottom:651.302667pt;}
.y145{bottom:652.186667pt;}
.y177{bottom:652.793333pt;}
.y246{bottom:654.670667pt;}
.y1b2{bottom:657.328000pt;}
.yd1{bottom:660.365333pt;}
.y2cc{bottom:660.564000pt;}
.y265{bottom:660.764000pt;}
.y20d{bottom:661.073333pt;}
.y23e{bottom:661.977333pt;}
.y9b{bottom:663.968000pt;}
.y100{bottom:664.350667pt;}
.y76{bottom:664.749333pt;}
.y144{bottom:666.798667pt;}
.y43{bottom:668.597333pt;}
.y3{bottom:668.977329pt;}
.y245{bottom:669.282667pt;}
.y176{bottom:669.530667pt;}
.y1b1{bottom:671.940000pt;}
.y20c{bottom:675.685333pt;}
.y2cb{bottom:675.906667pt;}
.yd0{bottom:677.102667pt;}
.y264{bottom:677.501333pt;}
.y9a{bottom:678.580000pt;}
.yff{bottom:681.088000pt;}
.y143{bottom:681.410667pt;}
.y75{bottom:681.485333pt;}
.y244{bottom:683.894667pt;}
.y42{bottom:685.892000pt;}
.y1b0{bottom:686.552000pt;}
.y175{bottom:690.253333pt;}
.y20b{bottom:690.297333pt;}
.y2ca{bottom:691.249333pt;}
.y9e{bottom:693.192000pt;}
.ycf{bottom:693.840000pt;}
.y1a7{bottom:693.857333pt;}
.y263{bottom:694.238667pt;}
.y13c{bottom:696.022667pt;}
.yfe{bottom:697.825333pt;}
.y74{bottom:698.222667pt;}
.y243{bottom:698.506667pt;}
.y1af{bottom:701.164000pt;}
.y41{bottom:703.188000pt;}
.y20a{bottom:704.909333pt;}
.y2c9{bottom:706.592000pt;}
.y174{bottom:706.990667pt;}
.y9d{bottom:707.804000pt;}
.y1a6{bottom:708.469333pt;}
.yce{bottom:710.577333pt;}
.y13b{bottom:710.634667pt;}
.y1e1{bottom:710.976000pt;}
.yfd{bottom:714.562667pt;}
.y73{bottom:714.960000pt;}
.y1ae{bottom:715.774667pt;}
.y209{bottom:719.521333pt;}
.y40{bottom:720.482667pt;}
.y2c8{bottom:721.934667pt;}
.y9c{bottom:722.416000pt;}
.y1a5{bottom:723.081333pt;}
.y173{bottom:723.728000pt;}
.y13a{bottom:725.246667pt;}
.ycd{bottom:727.314667pt;}
.y1e0{bottom:727.713333pt;}
.y1ad{bottom:730.386667pt;}
.yfc{bottom:731.300000pt;}
.y72{bottom:731.697333pt;}
.y208{bottom:734.132000pt;}
.y2c7{bottom:737.277333pt;}
.y99{bottom:737.558667pt;}
.y1a4{bottom:737.693333pt;}
.y3f{bottom:737.777333pt;}
.y142{bottom:739.858667pt;}
.y172{bottom:740.465333pt;}
.ycc{bottom:744.052000pt;}
.y1df{bottom:744.450667pt;}
.y1ac{bottom:744.998667pt;}
.yfb{bottom:748.036000pt;}
.y71{bottom:748.434667pt;}
.y1ff{bottom:748.744000pt;}
.y124{bottom:749.032427pt;}
.y1a3{bottom:752.305333pt;}
.y2c6{bottom:752.620000pt;}
.y141{bottom:754.470667pt;}
.y3e{bottom:755.073333pt;}
.y123{bottom:757.164313pt;}
.y171{bottom:757.202667pt;}
.y1ab{bottom:759.610667pt;}
.ycb{bottom:760.789333pt;}
.y1de{bottom:761.186667pt;}
.y1fe{bottom:763.356000pt;}
.yfa{bottom:764.773333pt;}
.y70{bottom:765.172000pt;}
.y98{bottom:765.665333pt;}
.y2c5{bottom:767.961333pt;}
.y140{bottom:769.082667pt;}
.y3d{bottom:772.368000pt;}
.y170{bottom:773.940000pt;}
.y1aa{bottom:774.222667pt;}
.yca{bottom:777.526667pt;}
.y1dd{bottom:777.924000pt;}
.y1fd{bottom:777.968000pt;}
.yf9{bottom:781.510667pt;}
.y2{bottom:781.661334pt;}
.y6f{bottom:781.909333pt;}
.y2c4{bottom:783.304000pt;}
.y13f{bottom:783.693333pt;}
.y1a9{bottom:788.834667pt;}
.y3c{bottom:789.664000pt;}
.y1fc{bottom:792.580000pt;}
.yc9{bottom:794.264000pt;}
.y16f{bottom:794.661333pt;}
.yf8{bottom:798.248000pt;}
.y13e{bottom:798.305333pt;}
.y6e{bottom:798.646667pt;}
.y1a8{bottom:803.446667pt;}
.y3b{bottom:806.958667pt;}
.y1fb{bottom:807.192000pt;}
.yc8{bottom:811.001333pt;}
.y16e{bottom:811.398667pt;}
.y13d{bottom:812.917333pt;}
.y2c3{bottom:813.989333pt;}
.yf7{bottom:814.985333pt;}
.y6d{bottom:815.384000pt;}
.y1fa{bottom:821.804000pt;}
.y3a{bottom:824.253333pt;}
.y1a2{bottom:824.460000pt;}
.yc7{bottom:827.738667pt;}
.y16d{bottom:828.136000pt;}
.y2c2{bottom:829.332000pt;}
.yf6{bottom:831.722667pt;}
.y6c{bottom:832.121333pt;}
.y139{bottom:833.932000pt;}
.y1f9{bottom:836.416000pt;}
.y1a1{bottom:839.072000pt;}
.yc6{bottom:844.474667pt;}
.y2c1{bottom:844.674667pt;}
.y16c{bottom:844.873333pt;}
.yf5{bottom:848.460000pt;}
.y138{bottom:848.544000pt;}
.y6b{bottom:848.858667pt;}
.y207{bottom:851.028000pt;}
.y1a0{bottom:853.684000pt;}
.y39{bottom:857.316000pt;}
.y1{bottom:859.312000pt;}
.y2c0{bottom:860.017333pt;}
.yc5{bottom:861.212000pt;}
.y1dc{bottom:861.610667pt;}
.y137{bottom:863.156000pt;}
.yf4{bottom:865.197333pt;}
.y6a{bottom:865.596000pt;}
.y206{bottom:865.640000pt;}
.y19f{bottom:868.296000pt;}
.y131{bottom:870.461333pt;}
.y38{bottom:871.661333pt;}
.y2bf{bottom:875.360000pt;}
.y198{bottom:875.602667pt;}
.y136{bottom:877.766667pt;}
.y1db{bottom:878.348000pt;}
.y205{bottom:880.250667pt;}
.yc4{bottom:881.934667pt;}
.y69{bottom:882.333333pt;}
.y19e{bottom:882.908000pt;}
.y130{bottom:885.073333pt;}
.yf3{bottom:885.920000pt;}
.y197{bottom:890.213333pt;}
.y2be{bottom:890.702667pt;}
.y135{bottom:892.378667pt;}
.y204{bottom:894.862667pt;}
.y1da{bottom:895.085333pt;}
.y19d{bottom:897.520000pt;}
.y68{bottom:899.070667pt;}
.y12f{bottom:899.685333pt;}
.y239{bottom:902.657333pt;}
.y196{bottom:904.825333pt;}
.y2bd{bottom:906.044000pt;}
.y134{bottom:906.990667pt;}
.y203{bottom:909.474667pt;}
.yc3{bottom:911.822667pt;}
.y19c{bottom:912.132000pt;}
.y37{bottom:913.994667pt;}
.y67{bottom:915.808000pt;}
.y2bc{bottom:921.386667pt;}
.y133{bottom:921.602667pt;}
.y202{bottom:924.086667pt;}
.y19b{bottom:926.744000pt;}
.yc2{bottom:928.560000pt;}
.y66{bottom:932.545333pt;}
.y132{bottom:936.214667pt;}
.y2bb{bottom:936.729333pt;}
.y201{bottom:938.698667pt;}
.y19a{bottom:941.356000pt;}
.yc1{bottom:945.297333pt;}
.y36{bottom:946.672000pt;}
.y65{bottom:949.282667pt;}
.y2ba{bottom:952.072000pt;}
.y200{bottom:953.310667pt;}
.y199{bottom:955.966667pt;}
.yc0{bottom:962.034667pt;}
.y64{bottom:966.020000pt;}
.y12e{bottom:966.977333pt;}
.y2b9{bottom:967.414667pt;}
.y35{bottom:971.778667pt;}
.y63{bottom:982.757333pt;}
.y12d{bottom:984.073333pt;}
.y32{bottom:1010.433333pt;}
.y62{bottom:1038.548000pt;}
.h1d{height:23.521527pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h16{height:28.241353pt;}
.h7{height:28.560000pt;}
.h19{height:29.514570pt;}
.h18{height:29.771219pt;}
.h10{height:30.945242pt;}
.h1e{height:30.949519pt;}
.h14{height:31.157778pt;}
.h1b{height:33.576563pt;}
.h11{height:34.430976pt;}
.h12{height:34.813542pt;}
.h1f{height:35.052646pt;}
.h1c{height:36.539078pt;}
.h1a{height:37.059648pt;}
.hf{height:38.256384pt;}
.h13{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h2{height:48.960000pt;}
.hc{height:54.767117pt;}
.h15{height:64.040209pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h17{height:683.167800pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w5{width:675.209840pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:10.446707pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x2e{left:55.592000pt;}
.x20{left:59.058160pt;}
.x44{left:60.689333pt;}
.x43{left:63.426667pt;}
.x41{left:65.525333pt;}
.x40{left:67.790667pt;}
.x49{left:74.861333pt;}
.x2c{left:76.464000pt;}
.x4a{left:83.081333pt;}
.x3f{left:85.878667pt;}
.x25{left:86.840000pt;}
.x26{left:89.692000pt;}
.x1{left:90.706667pt;}
.x2d{left:91.957333pt;}
.x2{left:94.486667pt;}
.x42{left:95.824000pt;}
.x29{left:99.064000pt;}
.x4b{left:103.584000pt;}
.x2f{left:106.333333pt;}
.x23{left:175.594707pt;}
.x4{left:180.874667pt;}
.x24{left:202.498617pt;}
.x28{left:210.852000pt;}
.x27{left:212.442667pt;}
.x30{left:219.865333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x38{left:235.174667pt;}
.x35{left:236.638667pt;}
.x37{left:238.114667pt;}
.x31{left:239.478667pt;}
.xc{left:241.284000pt;}
.x36{left:242.586667pt;}
.x32{left:244.164000pt;}
.x39{left:247.548000pt;}
.xa{left:250.204000pt;}
.x19{left:251.864000pt;}
.x3a{left:255.085333pt;}
.x3d{left:260.306667pt;}
.x16{left:262.509333pt;}
.x1a{left:264.524000pt;}
.x18{left:266.454667pt;}
.xd{left:268.798667pt;}
.x1b{left:271.081333pt;}
.x9{left:274.096000pt;}
.x3e{left:281.054667pt;}
.x1c{left:284.082667pt;}
.xb{left:290.544000pt;}
.x34{left:346.160000pt;}
.x33{left:347.749333pt;}
.x4e{left:350.833333pt;}
.x3b{left:375.721333pt;}
.x50{left:380.412000pt;}
.x13{left:395.417333pt;}
.x3c{left:397.038667pt;}
.xf{left:397.958667pt;}
.x14{left:398.902667pt;}
.x10{left:400.965333pt;}
.x3{left:404.408000pt;}
.xe{left:406.010667pt;}
.x12{left:408.006667pt;}
.x1d{left:411.558667pt;}
.x1e{left:413.896000pt;}
.x47{left:421.534667pt;}
.x11{left:427.081333pt;}
.x1f{left:428.628000pt;}
.x4f{left:433.156000pt;}
.x48{left:443.201333pt;}
.x2a{left:450.153333pt;}
.x15{left:452.006667pt;}
.x2b{left:468.832000pt;}
.x17{left:495.332000pt;}
.x45{left:603.226667pt;}
.x46{left:621.906667pt;}
.x22{left:673.546707pt;}
.x4c{left:714.584000pt;}
.x4d{left:718.270667pt;}
}




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