
    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_1d2d518c2bda640e7e75715e.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_92d33f13bd7d96cee2b64cf9.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_136a7035fc9647a53f1a6106.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_4485a70627230b7141c2fcac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d74efa75994c40bdde7843e6.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_53c00d8d92e19464179882da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_014746786c1e5efe2de3c208.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_67b4af378f86ef54a682db6b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a9b8a39a089b6b152563f682.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.215332;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_3161a4ba3208012c052849c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.775391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d7c1233f6a0e9838af92e1ae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m12{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);}
.m1f{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.ma{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);}
.m1a{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);}
.m8{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);}
.m26{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);}
.m1c{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);}
.m28{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);}
.m1e{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);}
.m24{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);}
.m27{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);}
.m15{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);}
.md{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);}
.m21{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);}
.m6{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);}
.m19{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);}
.m2a{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);}
.m2c{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.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);}
.mc{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);}
.m10{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);}
.mf{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);}
.m7{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);}
.mb{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);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m23{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);}
.m16{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);}
.m14{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);}
.m1b{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);}
.m17{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);}
.m3{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);}
.m29{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);}
.m13{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);}
.m20{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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.v5{vertical-align:65.754000px;}
.ls25{letter-spacing:-0.122958px;}
.ls27{letter-spacing:-0.106920px;}
.ls2b{letter-spacing:-0.101574px;}
.ls30{letter-spacing:-0.080190px;}
.ls2f{letter-spacing:-0.058806px;}
.ls26{letter-spacing:-0.048114px;}
.ls28{letter-spacing:-0.042768px;}
.ls2d{letter-spacing:-0.032076px;}
.ls23{letter-spacing:-0.028441px;}
.ls29{letter-spacing:-0.026730px;}
.ls2e{letter-spacing:-0.016038px;}
.ls2c{letter-spacing:-0.010692px;}
.ls24{letter-spacing:-0.004740px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.005346px;}
.ls1b{letter-spacing:0.010692px;}
.ls15{letter-spacing:0.016038px;}
.ls16{letter-spacing:0.026730px;}
.ls1e{letter-spacing:0.032076px;}
.ls14{letter-spacing:0.037422px;}
.ls18{letter-spacing:0.041663px;}
.ls1c{letter-spacing:0.042768px;}
.ls21{letter-spacing:0.048114px;}
.ls1d{letter-spacing:0.053460px;}
.ls17{letter-spacing:0.064152px;}
.ls19{letter-spacing:0.074844px;}
.ls22{letter-spacing:0.096228px;}
.ls20{letter-spacing:0.122958px;}
.ls2a{letter-spacing:0.128304px;}
.ls13{letter-spacing:0.180125px;}
.ls1a{letter-spacing:0.181764px;}
.ls12{letter-spacing:0.189605px;}
.ls5{letter-spacing:11.954850px;}
.ls3{letter-spacing:14.346144px;}
.ls6{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.764573px;}
.ls4{letter-spacing:14.943900px;}
.lsc{letter-spacing:15.003676px;}
.ls8{letter-spacing:15.242778px;}
.ls10{letter-spacing:15.302554px;}
.lsa{letter-spacing:18.171782px;}
.lsf{letter-spacing:18.294553px;}
.lsb{letter-spacing:18.410885px;}
.lsd{letter-spacing:18.530436px;}
.ls11{letter-spacing:19.008641px;}
.lse{letter-spacing:19.307519px;}
.ls9{letter-spacing:20.742133px;}
.ls1{letter-spacing:62.761200px;}
.ls2{letter-spacing:64.321654px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws7f{word-spacing:-14.943900px;}
.wsd9{word-spacing:-13.493304px;}
.wsde{word-spacing:-13.461228px;}
.wsc2{word-spacing:-13.449600px;}
.wsd0{word-spacing:-13.429152px;}
.wsd4{word-spacing:-13.418460px;}
.wsdb{word-spacing:-13.413114px;}
.wsd3{word-spacing:-13.407768px;}
.wsce{word-spacing:-13.402422px;}
.wsd5{word-spacing:-13.397076px;}
.wsdd{word-spacing:-13.381038px;}
.wsd2{word-spacing:-13.375692px;}
.wsd7{word-spacing:-13.370346px;}
.wsdf{word-spacing:-13.348962px;}
.wsd8{word-spacing:-13.338270px;}
.wsdc{word-spacing:-13.332924px;}
.wsd6{word-spacing:-13.322232px;}
.wscf{word-spacing:-13.316886px;}
.wsda{word-spacing:-13.263426px;}
.wsd1{word-spacing:-13.258080px;}
.wscc{word-spacing:-13.242042px;}
.wsca{word-spacing:-12.039905px;}
.ws2d{word-spacing:-11.955150px;}
.wscb{word-spacing:-11.850300px;}
.wsd{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.ws8e{word-spacing:-3.526760px;}
.ws20{word-spacing:-3.168107px;}
.ws92{word-spacing:-3.108331px;}
.ws8d{word-spacing:-2.929004px;}
.wsb3{word-spacing:-2.630126px;}
.wsa7{word-spacing:-2.510575px;}
.ws5e{word-spacing:-2.391024px;}
.ws1e{word-spacing:-2.331248px;}
.wsac{word-spacing:-2.211697px;}
.wse2{word-spacing:-2.151936px;}
.wse7{word-spacing:-1.994058px;}
.ws62{word-spacing:-1.912819px;}
.ws5c{word-spacing:-1.853044px;}
.ws9c{word-spacing:-1.733492px;}
.ws6c{word-spacing:-1.673717px;}
.ws61{word-spacing:-1.613941px;}
.wsc3{word-spacing:-1.554166px;}
.ws3e{word-spacing:-1.494390px;}
.ws57{word-spacing:-1.434614px;}
.wsbf{word-spacing:-1.374839px;}
.wsa4{word-spacing:-1.315063px;}
.ws79{word-spacing:-1.255288px;}
.ws3d{word-spacing:-1.195512px;}
.ws50{word-spacing:-1.135736px;}
.ws9b{word-spacing:-1.114584px;}
.ws22{word-spacing:-1.075961px;}
.wsc8{word-spacing:-1.022170px;}
.ws91{word-spacing:-1.016185px;}
.wsb4{word-spacing:-0.956410px;}
.ws2f{word-spacing:-0.896634px;}
.ws76{word-spacing:-0.836858px;}
.ws8f{word-spacing:-0.777083px;}
.ws14{word-spacing:-0.753178px;}
.wsb7{word-spacing:-0.717307px;}
.wsc9{word-spacing:-0.600534px;}
.wsa6{word-spacing:-0.597756px;}
.ws10c{word-spacing:-0.591782px;}
.ws32{word-spacing:-0.537980px;}
.ws5a{word-spacing:-0.478205px;}
.wsb5{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.wsfa{word-spacing:-0.322790px;}
.ws39{word-spacing:-0.298878px;}
.ws96{word-spacing:-0.279704px;}
.wse4{word-spacing:-0.274927px;}
.wsef{word-spacing:-0.268992px;}
.ws35{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws84{word-spacing:-0.192638px;}
.ws38{word-spacing:-0.179327px;}
.wsc6{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.119551px;}
.wsc5{word-spacing:-0.107597px;}
.wse5{word-spacing:-0.080582px;}
.wsb6{word-spacing:-0.079368px;}
.ws2e{word-spacing:-0.059776px;}
.wse3{word-spacing:-0.056881px;}
.ws15{word-spacing:-0.053798px;}
.wscd{word-spacing:-0.053460px;}
.wsf6{word-spacing:-0.011405px;}
.ws53{word-spacing:-0.010820px;}
.ws11a{word-spacing:-0.010147px;}
.ws105{word-spacing:-0.008890px;}
.ws10a{word-spacing:-0.008467px;}
.wsf7{word-spacing:-0.008458px;}
.ws108{word-spacing:-0.007978px;}
.wsf9{word-spacing:-0.007574px;}
.ws104{word-spacing:-0.006125px;}
.ws3{word-spacing:-0.006026px;}
.ws100{word-spacing:-0.003466px;}
.wsfb{word-spacing:-0.002314px;}
.wsf2{word-spacing:-0.001978px;}
.wsf8{word-spacing:-0.001574px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.003599px;}
.wsa5{word-spacing:0.018895px;}
.ws9e{word-spacing:0.019414px;}
.wsec{word-spacing:0.053567px;}
.ws8a{word-spacing:0.053798px;}
.ws4c{word-spacing:0.059776px;}
.wsed{word-spacing:0.106920px;}
.ws18{word-spacing:0.107597px;}
.wseb{word-spacing:0.117612px;}
.ws2a{word-spacing:0.119551px;}
.ws83{word-spacing:0.125159px;}
.wse8{word-spacing:0.144342px;}
.wsea{word-spacing:0.155034px;}
.ws87{word-spacing:0.161395px;}
.ws85{word-spacing:0.162913px;}
.wse9{word-spacing:0.165726px;}
.ws60{word-spacing:0.170912px;}
.ws30{word-spacing:0.179327px;}
.ws19{word-spacing:0.215194px;}
.wsa2{word-spacing:0.228865px;}
.wsa1{word-spacing:0.230891px;}
.ws29{word-spacing:0.239102px;}
.wsee{word-spacing:0.240570px;}
.wsf5{word-spacing:0.268992px;}
.wsa0{word-spacing:0.284105px;}
.ws31{word-spacing:0.298878px;}
.ws44{word-spacing:0.358654px;}
.wsa3{word-spacing:0.418429px;}
.ws7e{word-spacing:0.478205px;}
.ws8b{word-spacing:0.537980px;}
.ws10b{word-spacing:0.537984px;}
.ws6d{word-spacing:0.597756px;}
.ws73{word-spacing:0.657532px;}
.ws6b{word-spacing:0.717307px;}
.ws16{word-spacing:0.753178px;}
.ws81{word-spacing:0.777083px;}
.ws51{word-spacing:0.836858px;}
.ws103{word-spacing:0.860774px;}
.ws99{word-spacing:0.896634px;}
.ws45{word-spacing:0.956410px;}
.ws10f{word-spacing:0.968371px;}
.ws7d{word-spacing:1.016185px;}
.ws26{word-spacing:1.075961px;}
.ws10{word-spacing:1.075968px;}
.ws68{word-spacing:1.092760px;}
.wsa9{word-spacing:1.135736px;}
.ws6e{word-spacing:1.195512px;}
.wsbc{word-spacing:1.255288px;}
.ws119{word-spacing:1.291162px;}
.ws47{word-spacing:1.315063px;}
.ws10e{word-spacing:1.344960px;}
.ws48{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws5b{word-spacing:1.494390px;}
.ws97{word-spacing:1.554166px;}
.ws5d{word-spacing:1.613941px;}
.ws101{word-spacing:1.613952px;}
.wsb2{word-spacing:1.673717px;}
.ws24{word-spacing:1.733492px;}
.ws82{word-spacing:1.793268px;}
.ws3f{word-spacing:1.853044px;}
.ws17{word-spacing:1.882944px;}
.ws2b{word-spacing:1.912819px;}
.ws106{word-spacing:1.967952px;}
.ws64{word-spacing:1.972595px;}
.ws11{word-spacing:1.990541px;}
.ws46{word-spacing:2.032370px;}
.ws114{word-spacing:2.098138px;}
.ws71{word-spacing:2.151922px;}
.ws49{word-spacing:2.211697px;}
.ws69{word-spacing:2.271473px;}
.ws116{word-spacing:2.367130px;}
.ws8c{word-spacing:2.391024px;}
.ws117{word-spacing:2.420928px;}
.ws66{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws2{word-spacing:2.513190px;}
.ws28{word-spacing:2.570351px;}
.ws98{word-spacing:2.597628px;}
.ws4b{word-spacing:2.630126px;}
.ws67{word-spacing:2.689902px;}
.ws34{word-spacing:2.809453px;}
.ws12{word-spacing:2.851315px;}
.ws70{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.wsc7{word-spacing:2.911475px;}
.ws6f{word-spacing:2.929004px;}
.ws33{word-spacing:2.988780px;}
.ws25{word-spacing:3.048556px;}
.wsfc{word-spacing:3.066509px;}
.ws93{word-spacing:3.108331px;}
.ws9d{word-spacing:3.168107px;}
.wsf1{word-spacing:3.221059px;}
.ws118{word-spacing:3.223565px;}
.wse0{word-spacing:3.224093px;}
.ws27{word-spacing:3.227882px;}
.wse1{word-spacing:3.227904px;}
.ws10d{word-spacing:3.278449px;}
.wsff{word-spacing:3.281702px;}
.ws55{word-spacing:3.287658px;}
.wsfe{word-spacing:3.335501px;}
.ws56{word-spacing:3.347434px;}
.ws9f{word-spacing:3.407209px;}
.ws111{word-spacing:3.443098px;}
.wsb0{word-spacing:3.466985px;}
.wsf0{word-spacing:3.496896px;}
.ws7a{word-spacing:3.526760px;}
.ws1c{word-spacing:3.586536px;}
.ws42{word-spacing:3.646312px;}
.ws40{word-spacing:3.765863px;}
.ws110{word-spacing:3.819686px;}
.ws43{word-spacing:3.825638px;}
.ws86{word-spacing:3.885414px;}
.wsfd{word-spacing:3.927283px;}
.ws36{word-spacing:3.945190px;}
.wsaa{word-spacing:4.004965px;}
.ws1d{word-spacing:4.064741px;}
.wsab{word-spacing:4.124516px;}
.ws1f{word-spacing:4.184292px;}
.wsc4{word-spacing:4.196275px;}
.wsb8{word-spacing:4.244068px;}
.ws59{word-spacing:4.303843px;}
.ws3a{word-spacing:4.363619px;}
.wsf3{word-spacing:4.411469px;}
.ws5f{word-spacing:4.423394px;}
.wsae{word-spacing:4.483170px;}
.wsb1{word-spacing:4.542946px;}
.ws90{word-spacing:4.602721px;}
.ws80{word-spacing:4.662497px;}
.ws7b{word-spacing:4.722272px;}
.ws112{word-spacing:4.734259px;}
.wsba{word-spacing:4.782048px;}
.ws113{word-spacing:4.788058px;}
.ws7c{word-spacing:4.901599px;}
.ws94{word-spacing:4.961375px;}
.ws77{word-spacing:5.080926px;}
.ws63{word-spacing:5.200477px;}
.ws102{word-spacing:5.218445px;}
.ws4d{word-spacing:5.260253px;}
.ws4f{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.wsaf{word-spacing:5.499355px;}
.wsf{word-spacing:5.551214px;}
.ws9a{word-spacing:5.559131px;}
.ws109{word-spacing:5.595034px;}
.ws54{word-spacing:5.618906px;}
.wsbb{word-spacing:5.678682px;}
.wsb9{word-spacing:5.738458px;}
.ws95{word-spacing:6.037336px;}
.wsf4{word-spacing:6.079219px;}
.wsa8{word-spacing:6.085086px;}
.ws72{word-spacing:6.097111px;}
.wsc0{word-spacing:6.395989px;}
.ws52{word-spacing:6.575316px;}
.wsad{word-spacing:6.874194px;}
.ws75{word-spacing:6.993745px;}
.ws1b{word-spacing:6.993792px;}
.ws3b{word-spacing:7.173072px;}
.ws41{word-spacing:7.292623px;}
.ws107{word-spacing:7.370381px;}
.wsbe{word-spacing:7.412174px;}
.ws115{word-spacing:7.585574px;}
.ws3c{word-spacing:7.890379px;}
.ws78{word-spacing:8.308808px;}
.ws21{word-spacing:8.368584px;}
.wsbd{word-spacing:9.683647px;}
.ws6{word-spacing:9.833058px;}
.ws58{word-spacing:10.161852px;}
.ws4a{word-spacing:10.699832px;}
.ws6a{word-spacing:10.879159px;}
.wse6{word-spacing:11.499531px;}
.ws7{word-spacing:11.841512px;}
.ws1a{word-spacing:12.582491px;}
.ws74{word-spacing:12.911530px;}
.ws65{word-spacing:14.226593px;}
.ws4{word-spacing:15.481836px;}
.ws4e{word-spacing:20.443255px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.wsc1{word-spacing:190.392538px;}
.ws89{word-spacing:470.981098px;}
.ws88{word-spacing:545.995056px;}
._5{margin-left:-11.943245px;}
._22{margin-left:-8.547902px;}
._1c{margin-left:-7.113296px;}
._8{margin-left:-5.858044px;}
._0{margin-left:-3.849538px;}
._15{margin-left:-2.660018px;}
._3{margin-left:-1.464498px;}
._2f{width:1.241911px;}
._6{width:2.426749px;}
._23{width:4.423394px;}
._1{width:12.971268px;}
._11{width:14.041148px;}
._a{width:15.440141px;}
._c{width:16.886716px;}
._d{width:18.022464px;}
._b{width:19.307644px;}
._f{width:21.220213px;}
._9{width:22.445874px;}
._12{width:23.910240px;}
._2{width:25.314894px;}
._10{width:26.988679px;}
._19{width:28.064640px;}
._18{width:29.553046px;}
._e{width:30.754542px;}
._1a{width:31.860395px;}
._4{width:33.355008px;}
._31{width:34.383690px;}
._17{width:35.446931px;}
._24{width:36.971213px;}
._1b{width:38.256509px;}
._16{width:40.826735px;}
._7{width:69.922331px;}
._2a{width:108.941760px;}
._2c{width:134.431699px;}
._29{width:135.464371px;}
._2d{width:139.240829px;}
._2e{width:143.470714px;}
._27{width:166.452250px;}
._2b{width:200.614234px;}
._26{width:214.548019px;}
._25{width:253.121472px;}
._28{width:273.851952px;}
._1e{width:463.608202px;}
._1f{width:525.823699px;}
._13{width:881.451521px;}
._1d{width:969.817775px;}
._20{width:1126.054310px;}
._30{width:2060.899893px;}
._21{width:2513.586238px;}
._14{width:2537.496238px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.429600px;}
.fse{font-size:47.401200px;}
.fsb{font-size:47.820600px;}
.fsf{font-size:53.460000px;}
.fsc{font-size:53.798400px;}
.fs10{font-size:59.518800px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y286{bottom:-125.560760px;}
.y292{bottom:-67.378905px;}
.y291{bottom:-50.182160px;}
.y290{bottom:-28.352660px;}
.y0{bottom:0.000000px;}
.y28f{bottom:8.268777px;}
.y37{bottom:9.233944px;}
.y28e{bottom:21.544231px;}
.y36{bottom:26.903761px;}
.y64{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y34{bottom:104.646000px;}
.y235{bottom:104.802000px;}
.y16d{bottom:108.687000px;}
.yff{bottom:113.769000px;}
.y2cb{bottom:116.458500px;}
.y63{bottom:117.309000px;}
.y9a{bottom:119.148000px;}
.y18e{bottom:119.596500px;}
.y1b8{bottom:120.493500px;}
.y297{bottom:120.945000px;}
.y33{bottom:122.535000px;}
.y207{bottom:123.183000px;}
.y234{bottom:123.631500px;}
.y16c{bottom:127.516500px;}
.yfe{bottom:132.598500px;}
.y2ca{bottom:133.719000px;}
.y62{bottom:136.138500px;}
.yb0{bottom:136.632000px;}
.y140{bottom:137.380500px;}
.y99{bottom:137.977500px;}
.y296{bottom:138.205500px;}
.y18d{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.y1b7{bottom:139.323000px;}
.y1d3{bottom:139.771500px;}
.y32{bottom:140.422500px;}
.y251{bottom:140.667000px;}
.y206{bottom:142.012500px;}
.y233{bottom:142.461000px;}
.y16b{bottom:146.346000px;}
.y2c9{bottom:150.978000px;}
.y114{bottom:153.451500px;}
.y61{bottom:154.968000px;}
.yaf{bottom:155.461500px;}
.y295{bottom:155.466000px;}
.yfd{bottom:155.910000px;}
.y13f{bottom:156.210000px;}
.y98{bottom:156.807000px;}
.ycd{bottom:157.255500px;}
.y1b6{bottom:158.152500px;}
.y31{bottom:158.310000px;}
.y1d2{bottom:158.601000px;}
.y250{bottom:159.496500px;}
.y205{bottom:160.842000px;}
.y232{bottom:161.290500px;}
.y112{bottom:161.670000px;}
.y16a{bottom:165.175500px;}
.y2c8{bottom:168.238500px;}
.y113{bottom:169.890000px;}
.y294{bottom:172.726500px;}
.y60{bottom:173.797500px;}
.yae{bottom:174.291000px;}
.y13e{bottom:175.039500px;}
.y97{bottom:175.636500px;}
.ycc{bottom:176.085000px;}
.y30{bottom:176.199000px;}
.y1b5{bottom:176.982000px;}
.y1d1{bottom:177.430500px;}
.y24f{bottom:178.326000px;}
.y204{bottom:179.671500px;}
.y231{bottom:180.120000px;}
.y18c{bottom:180.568500px;}
.y2c7{bottom:185.499000px;}
.y111{bottom:186.327000px;}
.y169{bottom:188.488500px;}
.yfc{bottom:189.534000px;}
.y5f{bottom:192.627000px;}
.yad{bottom:193.120500px;}
.y13d{bottom:193.869000px;}
.y2f{bottom:194.086500px;}
.y96{bottom:194.466000px;}
.y293{bottom:194.470500px;}
.ycb{bottom:194.914500px;}
.y1b4{bottom:195.811500px;}
.y1d0{bottom:196.258500px;}
.y18{bottom:196.933500px;}
.y24e{bottom:197.155500px;}
.y203{bottom:198.501000px;}
.y230{bottom:198.949500px;}
.y2c6{bottom:202.759500px;}
.y110{bottom:202.765500px;}
.y168{bottom:207.318000px;}
.yfb{bottom:208.363500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y5e{bottom:211.456500px;}
.yac{bottom:211.950000px;}
.y2e{bottom:211.974000px;}
.y13c{bottom:212.698500px;}
.y95{bottom:213.295500px;}
.yca{bottom:213.744000px;}
.y18b{bottom:214.192500px;}
.y1cf{bottom:215.088000px;}
.y24d{bottom:215.985000px;}
.y202{bottom:217.330500px;}
.y22f{bottom:217.779000px;}
.y1b3{bottom:219.123000px;}
.y2c5{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y167{bottom:226.147500px;}
.yfa{bottom:227.193000px;}
.y283{bottom:228.093000px;}
.y2d{bottom:229.863000px;}
.y5d{bottom:230.284500px;}
.yab{bottom:230.779500px;}
.y94{bottom:232.125000px;}
.yc9{bottom:232.573500px;}
.y18a{bottom:233.022000px;}
.y1ce{bottom:233.917500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y24c{bottom:234.814500px;}
.y10f{bottom:235.642500px;}
.y13b{bottom:236.010000px;}
.y201{bottom:236.160000px;}
.y22e{bottom:236.608500px;}
.y2c4{bottom:237.280500px;}
.y10e{bottom:243.862500px;}
.y166{bottom:244.977000px;}
.yf9{bottom:246.022500px;}
.y5c{bottom:249.114000px;}
.yaa{bottom:249.609000px;}
.y93{bottom:250.954500px;}
.yc8{bottom:251.403000px;}
.y189{bottom:251.851500px;}
.y1b2{bottom:252.747000px;}
.y24b{bottom:253.644000px;}
.y2c3{bottom:254.541000px;}
.y13a{bottom:254.839500px;}
.y200{bottom:254.989500px;}
.y22d{bottom:255.438000px;}
.y1cd{bottom:257.230500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y165{bottom:263.806500px;}
.yf8{bottom:264.852000px;}
.y5b{bottom:267.943500px;}
.ya9{bottom:268.438500px;}
.y92{bottom:269.784000px;}
.yc7{bottom:270.232500px;}
.y188{bottom:270.681000px;}
.y1b1{bottom:271.576500px;}
.y2c2{bottom:271.801500px;}
.y24a{bottom:272.473500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y139{bottom:273.669000px;}
.y1ff{bottom:273.819000px;}
.y1e6{bottom:274.267500px;}
.y10d{bottom:275.722500px;}
.y1cc{bottom:276.060000px;}
.y164{bottom:282.636000px;}
.yf7{bottom:283.681500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y5a{bottom:286.773000px;}
.ya8{bottom:287.268000px;}
.y91{bottom:288.613500px;}
.yc6{bottom:289.062000px;}
.y187{bottom:289.509000px;}
.y249{bottom:291.303000px;}
.y1fe{bottom:292.648500px;}
.y1b0{bottom:294.889500px;}
.y138{bottom:296.982000px;}
.y10c{bottom:299.362500px;}
.y1cb{bottom:299.373000px;}
.y2c{bottom:299.890500px;}
.y163{bottom:301.465500px;}
.yf6{bottom:302.511000px;}
.y59{bottom:305.602500px;}
.ya7{bottom:306.097500px;}
.y2c1{bottom:306.321000px;}
.y90{bottom:307.443000px;}
.y10b{bottom:307.581000px;}
.yc5{bottom:307.891500px;}
.y248{bottom:310.132500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y22c{bottom:311.029500px;}
.y1fd{bottom:311.478000px;}
.y186{bottom:312.822000px;}
.y137{bottom:315.811500px;}
.y2b{bottom:317.779500px;}
.y1ca{bottom:318.202500px;}
.yf5{bottom:321.340500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y2c0{bottom:323.581500px;}
.y58{bottom:324.432000px;}
.y162{bottom:324.777000px;}
.ya6{bottom:324.927000px;}
.y8f{bottom:326.272500px;}
.yc4{bottom:326.719500px;}
.y1e5{bottom:326.721000px;}
.y1af{bottom:328.513500px;}
.y265{bottom:328.962000px;}
.y22b{bottom:329.859000px;}
.y185{bottom:331.651500px;}
.y10a{bottom:332.239500px;}
.y136{bottom:334.641000px;}
.y2a{bottom:335.667000px;}
.y1c9{bottom:337.032000px;}
.y28d{bottom:338.562031px;}
.yf4{bottom:340.170000px;}
.y109{bottom:340.458000px;}
.y2bf{bottom:340.842000px;}
.y57{bottom:343.261500px;}
.y161{bottom:343.606500px;}
.ya5{bottom:343.756500px;}
.y8e{bottom:345.102000px;}
.yc3{bottom:345.549000px;}
.y1e4{bottom:345.550500px;}
.y247{bottom:346.894500px;}
.y1ae{bottom:347.343000px;}
.y264{bottom:347.791500px;}
.yf{bottom:348.133500px;}
.y1fc{bottom:348.240000px;}
.y184{bottom:350.481000px;}
.y28c{bottom:351.837486px;}
.y135{bottom:353.470500px;}
.y29{bottom:353.554500px;}
.y2be{bottom:358.102500px;}
.yf3{bottom:358.999500px;}
.y1c8{bottom:360.345000px;}
.y56{bottom:362.091000px;}
.y160{bottom:362.436000px;}
.ya4{bottom:362.586000px;}
.y8d{bottom:363.931500px;}
.yc2{bottom:364.378500px;}
.y108{bottom:365.116500px;}
.y246{bottom:365.724000px;}
.y1ad{bottom:366.172500px;}
.y22a{bottom:366.621000px;}
.y1fb{bottom:367.069500px;}
.y1e3{bottom:368.862000px;}
.y183{bottom:369.310500px;}
.y134{bottom:372.300000px;}
.y106{bottom:373.335000px;}
.y2bd{bottom:375.363000px;}
.yf2{bottom:377.829000px;}
.y1c7{bottom:379.174500px;}
.y28{bottom:380.409000px;}
.y55{bottom:380.920500px;}
.y15f{bottom:381.265500px;}
.ya3{bottom:381.415500px;}
.y107{bottom:381.555000px;}
.y8c{bottom:382.761000px;}
.yc1{bottom:383.208000px;}
.y1ac{bottom:385.002000px;}
.y229{bottom:385.450500px;}
.y1fa{bottom:385.899000px;}
.ye{bottom:386.785499px;}
.y182{bottom:388.140000px;}
.y133{bottom:391.129500px;}
.y2bc{bottom:392.623500px;}
.yf1{bottom:396.658500px;}
.y1c6{bottom:398.002500px;}
.y27{bottom:398.298000px;}
.y54{bottom:399.750000px;}
.y15e{bottom:400.095000px;}
.ya2{bottom:400.245000px;}
.y8b{bottom:401.589000px;}
.yc0{bottom:402.037500px;}
.y1e2{bottom:402.486000px;}
.y1ab{bottom:403.831500px;}
.y228{bottom:404.280000px;}
.y105{bottom:405.195000px;}
.y181{bottom:406.969500px;}
.yd{bottom:408.044999px;}
.y2bb{bottom:409.884000px;}
.y132{bottom:409.959000px;}
.yf0{bottom:415.488000px;}
.y26{bottom:416.185500px;}
.y1c5{bottom:416.832000px;}
.y53{bottom:418.579500px;}
.y15d{bottom:418.924500px;}
.ya1{bottom:419.074500px;}
.y8a{bottom:420.418500px;}
.ybf{bottom:420.867000px;}
.y1e1{bottom:421.315500px;}
.y1f9{bottom:422.661000px;}
.y227{bottom:423.109500px;}
.y180{bottom:425.799000px;}
.y1aa{bottom:427.144500px;}
.y131{bottom:433.270500px;}
.y25{bottom:434.073000px;}
.yef{bottom:434.317500px;}
.y1c4{bottom:435.661500px;}
.y52{bottom:437.409000px;}
.y15c{bottom:437.754000px;}
.ya0{bottom:437.904000px;}
.y89{bottom:439.248000px;}
.ybe{bottom:439.696500px;}
.y104{bottom:439.803000px;}
.y1e0{bottom:440.145000px;}
.y1f8{bottom:441.490500px;}
.y226{bottom:441.939000px;}
.y2ba{bottom:444.403500px;}
.y17f{bottom:444.628500px;}
.y1a9{bottom:445.974000px;}
.y24{bottom:451.962000px;}
.yee{bottom:453.147000px;}
.y1c3{bottom:454.491000px;}
.y51{bottom:456.238500px;}
.y15b{bottom:456.583500px;}
.y9f{bottom:456.733500px;}
.y88{bottom:458.077500px;}
.ybd{bottom:458.526000px;}
.y1df{bottom:458.974500px;}
.y1f7{bottom:460.320000px;}
.y225{bottom:460.768500px;}
.y2b9{bottom:461.664000px;}
.y17e{bottom:463.458000px;}
.y1a8{bottom:464.803500px;}
.y130{bottom:466.894500px;}
.y23{bottom:469.849500px;}
.yed{bottom:471.976500px;}
.y1c2{bottom:473.320500px;}
.y50{bottom:475.068000px;}
.y15a{bottom:475.413000px;}
.y9e{bottom:475.563000px;}
.y87{bottom:476.907000px;}
.ybc{bottom:477.355500px;}
.y245{bottom:477.804000px;}
.y2b8{bottom:478.924500px;}
.y1f6{bottom:479.149500px;}
.y224{bottom:479.598000px;}
.y17d{bottom:482.287500px;}
.y1a7{bottom:483.633000px;}
.y12f{bottom:485.724000px;}
.y22{bottom:487.737000px;}
.yec{bottom:490.806000px;}
.y1c1{bottom:492.150000px;}
.y159{bottom:494.242500px;}
.y9d{bottom:494.392500px;}
.y86{bottom:495.736500px;}
.ybb{bottom:496.185000px;}
.y244{bottom:496.633500px;}
.y1f5{bottom:497.979000px;}
.y4f{bottom:498.381000px;}
.y223{bottom:498.427500px;}
.y17c{bottom:501.117000px;}
.y1a6{bottom:502.462500px;}
.yc{bottom:502.864502px;}
.y12e{bottom:504.553500px;}
.y282{bottom:509.443500px;}
.yeb{bottom:509.635500px;}
.y1c0{bottom:510.979500px;}
.y158{bottom:513.072000px;}
.y2b7{bottom:513.445500px;}
.yb8{bottom:514.566000px;}
.yba{bottom:515.014500px;}
.y243{bottom:515.463000px;}
.y1f4{bottom:516.808500px;}
.y222{bottom:517.257000px;}
.y9c{bottom:517.704000px;}
.y85{bottom:519.049500px;}
.y17b{bottom:519.946500px;}
.yb{bottom:520.864502px;}
.y12d{bottom:523.383000px;}
.y1a5{bottom:525.774000px;}
.yea{bottom:528.465000px;}
.y1bf{bottom:529.809000px;}
.y2b6{bottom:530.706000px;}
.y157{bottom:531.901500px;}
.yb7{bottom:533.395500px;}
.yb9{bottom:533.844000px;}
.y242{bottom:534.292500px;}
.y1f3{bottom:535.638000px;}
.y281{bottom:535.983000px;}
.y221{bottom:536.086500px;}
.y9b{bottom:537.879000px;}
.y1de{bottom:538.776000px;}
.ya{bottom:538.864499px;}
.y12c{bottom:542.212500px;}
.y17a{bottom:543.259500px;}
.y1a4{bottom:544.603500px;}
.ye9{bottom:547.294500px;}
.y2b5{bottom:547.966500px;}
.y1be{bottom:548.638500px;}
.y156{bottom:550.731000px;}
.yb6{bottom:552.225000px;}
.y84{bottom:552.673500px;}
.y241{bottom:553.122000px;}
.y1f2{bottom:554.467500px;}
.y220{bottom:554.916000px;}
.y9{bottom:556.864499px;}
.y1dd{bottom:557.605500px;}
.y12b{bottom:561.042000px;}
.y179{bottom:562.089000px;}
.y280{bottom:562.524000px;}
.y2b4{bottom:565.227000px;}
.ye8{bottom:566.124000px;}
.y1a3{bottom:567.916500px;}
.yb5{bottom:571.054500px;}
.y83{bottom:571.503000px;}
.y1bd{bottom:571.951500px;}
.y1f1{bottom:573.297000px;}
.y4e{bottom:573.531000px;}
.y21f{bottom:573.745500px;}
.y155{bottom:574.044000px;}
.y1dc{bottom:576.435000px;}
.y178{bottom:580.918500px;}
.y2b3{bottom:582.487500px;}
.y12a{bottom:584.355000px;}
.ye7{bottom:584.952000px;}
.y1a2{bottom:586.746000px;}
.y27f{bottom:589.065000px;}
.yb4{bottom:589.884000px;}
.y82{bottom:590.332500px;}
.y240{bottom:590.781000px;}
.y1f0{bottom:592.126500px;}
.y21e{bottom:592.573500px;}
.y4d{bottom:592.987500px;}
.y177{bottom:599.746500px;}
.y129{bottom:603.184500px;}
.ye6{bottom:603.781500px;}
.y1a1{bottom:605.575500px;}
.y27e{bottom:606.639000px;}
.y154{bottom:607.668000px;}
.yb3{bottom:608.713500px;}
.y81{bottom:609.162000px;}
.y23f{bottom:609.610500px;}
.y1ef{bottom:610.954500px;}
.y21d{bottom:611.403000px;}
.y2b2{bottom:617.007000px;}
.y176{bottom:618.576000px;}
.y128{bottom:622.014000px;}
.ye5{bottom:622.611000px;}
.y1a0{bottom:624.405000px;}
.y153{bottom:626.497500px;}
.yb2{bottom:627.543000px;}
.y80{bottom:627.991500px;}
.y23e{bottom:628.440000px;}
.y1ee{bottom:629.784000px;}
.y21c{bottom:630.232500px;}
.y4c{bottom:630.378000px;}
.y27d{bottom:633.178500px;}
.y2b1{bottom:634.267500px;}
.y175{bottom:637.405500px;}
.y127{bottom:640.843500px;}
.ye4{bottom:641.440500px;}
.y19f{bottom:643.234500px;}
.y8{bottom:645.510000px;}
.y103{bottom:646.372500px;}
.y7f{bottom:646.821000px;}
.y23d{bottom:647.269500px;}
.y1ed{bottom:648.613500px;}
.y263{bottom:649.062000px;}
.y152{bottom:649.809000px;}
.y4b{bottom:649.834500px;}
.y27c{bottom:650.754000px;}
.yb1{bottom:650.856000px;}
.y2b0{bottom:651.528000px;}
.y1db{bottom:656.235000px;}
.ye3{bottom:660.270000px;}
.y174{bottom:660.718500px;}
.y1bc{bottom:662.064000px;}
.y126{bottom:664.156500px;}
.y102{bottom:665.202000px;}
.y7e{bottom:665.650500px;}
.y23c{bottom:666.099000px;}
.y19e{bottom:666.547500px;}
.y7{bottom:666.771000px;}
.y21b{bottom:666.996000px;}
.y1ec{bottom:667.443000px;}
.y262{bottom:667.891500px;}
.y2af{bottom:668.788500px;}
.y4a{bottom:669.291000px;}
.y1da{bottom:675.064500px;}
.y27b{bottom:677.293500px;}
.ye2{bottom:679.099500px;}
.y173{bottom:679.548000px;}
.y125{bottom:682.986000px;}
.y151{bottom:683.433000px;}
.y101{bottom:684.031500px;}
.y7d{bottom:684.480000px;}
.y23b{bottom:684.928500px;}
.y19d{bottom:685.377000px;}
.y21a{bottom:685.825500px;}
.y2ae{bottom:686.049000px;}
.y1eb{bottom:686.272500px;}
.y261{bottom:686.721000px;}
.y49{bottom:688.749000px;}
.y27a{bottom:694.867500px;}
.y28b{bottom:698.258286px;}
.y172{bottom:698.377500px;}
.y150{bottom:702.262500px;}
.ye1{bottom:702.412500px;}
.y7c{bottom:703.309500px;}
.y23a{bottom:703.758000px;}
.y19c{bottom:704.206500px;}
.y219{bottom:704.653500px;}
.y1ea{bottom:705.102000px;}
.y100{bottom:707.344500px;}
.y48{bottom:708.205500px;}
.y124{bottom:709.287000px;}
.y260{bottom:710.034000px;}
.y28a{bottom:711.533740px;}
.y279{bottom:712.441500px;}
.y171{bottom:717.207000px;}
.y2ad{bottom:720.570000px;}
.y14f{bottom:721.092000px;}
.y7b{bottom:722.139000px;}
.y239{bottom:722.587500px;}
.y19b{bottom:723.034500px;}
.y1e9{bottom:723.931500px;}
.y6{bottom:726.298500px;}
.y47{bottom:727.663500px;}
.y123{bottom:728.116500px;}
.y278{bottom:730.015500px;}
.ye0{bottom:736.036500px;}
.y2ac{bottom:737.829000px;}
.y14e{bottom:739.921500px;}
.y7a{bottom:740.968500px;}
.y218{bottom:741.417000px;}
.y19a{bottom:741.864000px;}
.y25f{bottom:743.658000px;}
.y1bb{bottom:746.347500px;}
.y122{bottom:746.946000px;}
.y46{bottom:747.120000px;}
.y277{bottom:747.591000px;}
.y3{bottom:752.599495px;}
.ydf{bottom:754.866000px;}
.y2ab{bottom:755.089500px;}
.y79{bottom:759.798000px;}
.y217{bottom:760.246500px;}
.y199{bottom:760.693500px;}
.y25e{bottom:762.487500px;}
.y14d{bottom:763.234500px;}
.y1ba{bottom:765.177000px;}
.y121{bottom:765.775500px;}
.y45{bottom:766.576500px;}
.y2aa{bottom:772.350000px;}
.yde{bottom:773.695500px;}
.y78{bottom:778.627500px;}
.y216{bottom:779.076000px;}
.y1e8{bottom:779.523000px;}
.y14c{bottom:782.064000px;}
.y276{bottom:783.097500px;}
.y238{bottom:783.558000px;}
.y198{bottom:784.006500px;}
.y120{bottom:784.605000px;}
.y44{bottom:786.034500px;}
.y2a9{bottom:789.610500px;}
.ydd{bottom:792.525000px;}
.y77{bottom:797.457000px;}
.y215{bottom:797.904000px;}
.y1e7{bottom:798.352500px;}
.y25d{bottom:799.249500px;}
.y14b{bottom:800.893500px;}
.y275{bottom:801.927000px;}
.y197{bottom:802.836000px;}
.y43{bottom:805.491000px;}
.y2a8{bottom:806.871000px;}
.y11f{bottom:810.906000px;}
.ydc{bottom:811.354500px;}
.y1d9{bottom:815.838000px;}
.y76{bottom:816.286500px;}
.y214{bottom:816.733500px;}
.y237{bottom:817.182000px;}
.y25c{bottom:818.079000px;}
.y14a{bottom:819.723000px;}
.y274{bottom:820.756500px;}
.y196{bottom:821.665500px;}
.y2a7{bottom:824.131500px;}
.y42{bottom:824.947500px;}
.y11e{bottom:829.735500px;}
.ydb{bottom:830.184000px;}
.y75{bottom:835.114500px;}
.y213{bottom:835.563000px;}
.y236{bottom:836.011500px;}
.y2ce{bottom:836.833500px;}
.y25b{bottom:836.908500px;}
.y273{bottom:839.586000px;}
.y2a6{bottom:841.392000px;}
.y41{bottom:844.405500px;}
.y195{bottom:844.978500px;}
.y149{bottom:846.024000px;}
.y11d{bottom:848.565000px;}
.yda{bottom:849.013500px;}
.y1d8{bottom:849.462000px;}
.y74{bottom:853.944000px;}
.y2cd{bottom:854.094000px;}
.y212{bottom:854.392500px;}
.y25a{bottom:855.738000px;}
.y272{bottom:858.415500px;}
.y2a5{bottom:858.652500px;}
.y194{bottom:863.808000px;}
.y148{bottom:864.853500px;}
.y11c{bottom:867.394500px;}
.yd9{bottom:867.843000px;}
.y1d7{bottom:868.291500px;}
.y2cc{bottom:871.354500px;}
.y73{bottom:872.773500px;}
.y211{bottom:873.222000px;}
.y259{bottom:874.567500px;}
.y2a4{bottom:875.913000px;}
.y271{bottom:877.245000px;}
.y2{bottom:879.369000px;}
.y193{bottom:882.637500px;}
.y40{bottom:882.990000px;}
.y147{bottom:883.683000px;}
.y289{bottom:884.031340px;}
.y11b{bottom:886.224000px;}
.yd8{bottom:886.672500px;}
.y1d6{bottom:887.121000px;}
.y72{bottom:891.603000px;}
.y210{bottom:892.051500px;}
.y2a3{bottom:893.172000px;}
.y258{bottom:893.397000px;}
.y270{bottom:896.074500px;}
.y3f{bottom:899.130000px;}
.y192{bottom:901.467000px;}
.y146{bottom:902.512500px;}
.yd7{bottom:905.502000px;}
.y1d5{bottom:905.950500px;}
.y11a{bottom:909.537000px;}
.y170{bottom:909.984000px;}
.y71{bottom:910.432500px;}
.y20f{bottom:910.881000px;}
.y257{bottom:912.226500px;}
.y26f{bottom:914.904000px;}
.y3e{bottom:919.609500px;}
.y191{bottom:920.296500px;}
.y288{bottom:920.561895px;}
.y145{bottom:921.342000px;}
.yd6{bottom:924.331500px;}
.y1d4{bottom:924.778500px;}
.y2a2{bottom:927.693000px;}
.y70{bottom:929.262000px;}
.y20e{bottom:929.710500px;}
.y256{bottom:931.056000px;}
.y3d{bottom:931.410000px;}
.y26e{bottom:933.733500px;}
.y190{bottom:939.126000px;}
.y119{bottom:943.161000px;}
.y16f{bottom:943.608000px;}
.y2a1{bottom:944.953500px;}
.y287{bottom:946.579541px;}
.yd5{bottom:947.643000px;}
.y6f{bottom:948.091500px;}
.y20d{bottom:948.540000px;}
.y255{bottom:949.885500px;}
.y3c{bottom:951.888000px;}
.y26d{bottom:952.563000px;}
.y18f{bottom:957.955500px;}
.y118{bottom:961.990500px;}
.y2a0{bottom:962.214000px;}
.y16e{bottom:962.437500px;}
.y144{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6e{bottom:966.921000px;}
.y20c{bottom:967.369500px;}
.y254{bottom:968.715000px;}
.y1b9{bottom:976.785000px;}
.y29f{bottom:979.474500px;}
.y117{bottom:980.820000px;}
.yd4{bottom:981.267000px;}
.y143{bottom:985.302000px;}
.y6d{bottom:985.750500px;}
.y20b{bottom:986.199000px;}
.y253{bottom:987.544500px;}
.y3b{bottom:996.565500px;}
.y29e{bottom:996.735000px;}
.y26c{bottom:998.023500px;}
.y285{bottom:999.237774px;}
.y116{bottom:999.649500px;}
.yd3{bottom:1000.096500px;}
.y142{bottom:1004.131500px;}
.y6c{bottom:1004.580000px;}
.y26b{bottom:1006.243500px;}
.y284{bottom:1008.771340px;}
.y20a{bottom:1009.512000px;}
.y29d{bottom:1013.995500px;}
.yd2{bottom:1018.926000px;}
.y115{bottom:1022.961000px;}
.y6b{bottom:1023.409500px;}
.y252{bottom:1024.306500px;}
.y141{bottom:1027.444500px;}
.y26a{bottom:1030.900500px;}
.y29c{bottom:1031.254500px;}
.y3a{bottom:1036.485000px;}
.yd1{bottom:1037.755500px;}
.y6a{bottom:1042.239000px;}
.y209{bottom:1043.136000px;}
.y269{bottom:1047.339000px;}
.y29b{bottom:1048.515000px;}
.y268{bottom:1055.559000px;}
.yd0{bottom:1056.585000px;}
.y69{bottom:1061.068500px;}
.y208{bottom:1061.965500px;}
.y39{bottom:1064.728500px;}
.y29a{bottom:1065.775500px;}
.ycf{bottom:1075.414500px;}
.y68{bottom:1079.898000px;}
.y299{bottom:1083.036000px;}
.y267{bottom:1087.419000px;}
.y38{bottom:1092.972000px;}
.yce{bottom:1094.244000px;}
.y67{bottom:1098.727500px;}
.y298{bottom:1100.296500px;}
.y66{bottom:1117.557000px;}
.y266{bottom:1119.037500px;}
.y35{bottom:1136.460000px;}
.y65{bottom:1177.662000px;}
.h14{height:30.582721px;}
.h7{height:32.130000px;}
.hf{height:33.821261px;}
.h15{height:38.734848px;}
.h1d{height:39.364102px;}
.h9{height:39.457760px;}
.h12{height:43.038432px;}
.h1c{height:43.825366px;}
.hc{height:43.875290px;}
.h1a{height:44.276609px;}
.h10{height:45.094826px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1b{height:49.936025px;}
.h11{height:50.731891px;}
.ha{height:50.930649px;}
.he{height:54.405312px;}
.h2{height:55.080000px;}
.h13{height:56.368391px;}
.hb{height:61.613006px;}
.hd{height:77.469696px;}
.h5{height:78.030000px;}
.h17{height:83.605891px;}
.h16{height:83.611891px;}
.h18{height:116.485891px;}
.h4{height:119.055004px;}
.h19{height:877.833990px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w2{width:637.794021px;}
.w5{width:784.806313px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:3.512173px;}
.x45{left:35.060646px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x46{left:85.848000px;}
.x1d{left:92.860500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x24{left:131.884500px;}
.x22{left:146.625000px;}
.x21{left:156.160500px;}
.x27{left:158.278500px;}
.x25{left:161.817000px;}
.x1e{left:166.933500px;}
.x29{left:173.524500px;}
.x40{left:197.126474px;}
.x4{left:203.484001px;}
.xb{left:247.348500px;}
.x9{left:248.526000px;}
.x7{left:249.591000px;}
.xc{left:254.122500px;}
.x3c{left:263.278500px;}
.x8{left:269.914500px;}
.x3b{left:272.814000px;}
.x2b{left:277.744500px;}
.x33{left:280.479000px;}
.xa{left:281.479500px;}
.x39{left:283.587000px;}
.x2c{left:285.552000px;}
.x2d{left:302.676000px;}
.x32{left:305.994000px;}
.x36{left:315.379500px;}
.x44{left:332.468480px;}
.x43{left:341.912315px;}
.x11{left:347.766000px;}
.x42{left:352.515754px;}
.x2e{left:359.152500px;}
.x1f{left:368.649000px;}
.x2f{left:380.164500px;}
.xd{left:381.220500px;}
.x2a{left:392.818500px;}
.x34{left:416.298000px;}
.x10{left:418.216500px;}
.x3d{left:419.311500px;}
.x37{left:422.661000px;}
.x38{left:423.897000px;}
.x35{left:433.422000px;}
.x3{left:454.959000px;}
.x26{left:469.003500px;}
.x20{left:477.786000px;}
.x28{left:520.071000px;}
.x23{left:535.410000px;}
.x17{left:547.027500px;}
.xe{left:594.286500px;}
.x12{left:661.471500px;}
.x3e{left:722.155500px;}
.x3a{left:724.510500px;}
.x19{left:725.608500px;}
.x14{left:727.047000px;}
.x1b{left:745.954500px;}
.x30{left:753.838500px;}
.x16{left:756.303000px;}
.x1c{left:762.142500px;}
.x18{left:769.929000px;}
.x31{left:770.962500px;}
.x41{left:780.909673px;}
.x13{left:803.107500px;}
.xf{left:808.252500px;}
.x15{left:832.789500px;}
.x1a{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.v5{vertical-align:58.448000pt;}
.ls25{letter-spacing:-0.109296pt;}
.ls27{letter-spacing:-0.095040pt;}
.ls2b{letter-spacing:-0.090288pt;}
.ls30{letter-spacing:-0.071280pt;}
.ls2f{letter-spacing:-0.052272pt;}
.ls26{letter-spacing:-0.042768pt;}
.ls28{letter-spacing:-0.038016pt;}
.ls2d{letter-spacing:-0.028512pt;}
.ls23{letter-spacing:-0.025281pt;}
.ls29{letter-spacing:-0.023760pt;}
.ls2e{letter-spacing:-0.014256pt;}
.ls2c{letter-spacing:-0.009504pt;}
.ls24{letter-spacing:-0.004213pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.004752pt;}
.ls1b{letter-spacing:0.009504pt;}
.ls15{letter-spacing:0.014256pt;}
.ls16{letter-spacing:0.023760pt;}
.ls1e{letter-spacing:0.028512pt;}
.ls14{letter-spacing:0.033264pt;}
.ls18{letter-spacing:0.037034pt;}
.ls1c{letter-spacing:0.038016pt;}
.ls21{letter-spacing:0.042768pt;}
.ls1d{letter-spacing:0.047520pt;}
.ls17{letter-spacing:0.057024pt;}
.ls19{letter-spacing:0.066528pt;}
.ls22{letter-spacing:0.085536pt;}
.ls20{letter-spacing:0.109296pt;}
.ls2a{letter-spacing:0.114048pt;}
.ls13{letter-spacing:0.160111pt;}
.ls1a{letter-spacing:0.161568pt;}
.ls12{letter-spacing:0.168538pt;}
.ls5{letter-spacing:10.626533pt;}
.ls3{letter-spacing:12.752128pt;}
.ls6{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.124065pt;}
.ls4{letter-spacing:13.283467pt;}
.lsc{letter-spacing:13.336601pt;}
.ls8{letter-spacing:13.549136pt;}
.ls10{letter-spacing:13.602270pt;}
.lsa{letter-spacing:16.152695pt;}
.lsf{letter-spacing:16.261825pt;}
.lsb{letter-spacing:16.365231pt;}
.lsd{letter-spacing:16.471499pt;}
.ls11{letter-spacing:16.896570pt;}
.lse{letter-spacing:17.162239pt;}
.ls9{letter-spacing:18.437452pt;}
.ls1{letter-spacing:55.787733pt;}
.ls2{letter-spacing:57.174803pt;}
.wsc{word-spacing:-20.194365pt;}
.ws7f{word-spacing:-13.283467pt;}
.wsd9{word-spacing:-11.994048pt;}
.wsde{word-spacing:-11.965536pt;}
.wsc2{word-spacing:-11.955200pt;}
.wsd0{word-spacing:-11.937024pt;}
.wsd4{word-spacing:-11.927520pt;}
.wsdb{word-spacing:-11.922768pt;}
.wsd3{word-spacing:-11.918016pt;}
.wsce{word-spacing:-11.913264pt;}
.wsd5{word-spacing:-11.908512pt;}
.wsdd{word-spacing:-11.894256pt;}
.wsd2{word-spacing:-11.889504pt;}
.wsd7{word-spacing:-11.884752pt;}
.wsdf{word-spacing:-11.865744pt;}
.wsd8{word-spacing:-11.856240pt;}
.wsdc{word-spacing:-11.851488pt;}
.wsd6{word-spacing:-11.841984pt;}
.wscf{word-spacing:-11.837232pt;}
.wsda{word-spacing:-11.789712pt;}
.wsd1{word-spacing:-11.784960pt;}
.wscc{word-spacing:-11.770704pt;}
.wsca{word-spacing:-10.702138pt;}
.ws2d{word-spacing:-10.626800pt;}
.wscb{word-spacing:-10.533600pt;}
.wsd{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.ws8e{word-spacing:-3.134898pt;}
.ws20{word-spacing:-2.816095pt;}
.ws92{word-spacing:-2.762961pt;}
.ws8d{word-spacing:-2.603559pt;}
.wsb3{word-spacing:-2.337890pt;}
.wsa7{word-spacing:-2.231622pt;}
.ws5e{word-spacing:-2.125355pt;}
.ws1e{word-spacing:-2.072221pt;}
.wsac{word-spacing:-1.965953pt;}
.wse2{word-spacing:-1.912832pt;}
.wse7{word-spacing:-1.772496pt;}
.ws62{word-spacing:-1.700284pt;}
.ws5c{word-spacing:-1.647150pt;}
.ws9c{word-spacing:-1.540882pt;}
.ws6c{word-spacing:-1.487748pt;}
.ws61{word-spacing:-1.434614pt;}
.wsc3{word-spacing:-1.381481pt;}
.ws3e{word-spacing:-1.328347pt;}
.ws57{word-spacing:-1.275213pt;}
.wsbf{word-spacing:-1.222079pt;}
.wsa4{word-spacing:-1.168945pt;}
.ws79{word-spacing:-1.115811pt;}
.ws3d{word-spacing:-1.062677pt;}
.ws50{word-spacing:-1.009543pt;}
.ws9b{word-spacing:-0.990741pt;}
.ws22{word-spacing:-0.956410pt;}
.wsc8{word-spacing:-0.908595pt;}
.ws91{word-spacing:-0.903276pt;}
.wsb4{word-spacing:-0.850142pt;}
.ws2f{word-spacing:-0.797008pt;}
.ws76{word-spacing:-0.743874pt;}
.ws8f{word-spacing:-0.690740pt;}
.ws14{word-spacing:-0.669491pt;}
.wsb7{word-spacing:-0.637606pt;}
.wsc9{word-spacing:-0.533808pt;}
.wsa6{word-spacing:-0.531339pt;}
.ws10c{word-spacing:-0.526029pt;}
.ws32{word-spacing:-0.478205pt;}
.ws5a{word-spacing:-0.425071pt;}
.wsb5{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.wsfa{word-spacing:-0.286925pt;}
.ws39{word-spacing:-0.265669pt;}
.ws96{word-spacing:-0.248626pt;}
.wse4{word-spacing:-0.244380pt;}
.wsef{word-spacing:-0.239104pt;}
.ws35{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws84{word-spacing:-0.171233pt;}
.ws38{word-spacing:-0.159402pt;}
.wsc6{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.106268pt;}
.wsc5{word-spacing:-0.095642pt;}
.wse5{word-spacing:-0.071628pt;}
.wsb6{word-spacing:-0.070550pt;}
.ws2e{word-spacing:-0.053134pt;}
.wse3{word-spacing:-0.050561pt;}
.ws15{word-spacing:-0.047821pt;}
.wscd{word-spacing:-0.047520pt;}
.wsf6{word-spacing:-0.010138pt;}
.ws53{word-spacing:-0.009618pt;}
.ws11a{word-spacing:-0.009020pt;}
.ws105{word-spacing:-0.007902pt;}
.ws10a{word-spacing:-0.007526pt;}
.wsf7{word-spacing:-0.007518pt;}
.ws108{word-spacing:-0.007091pt;}
.wsf9{word-spacing:-0.006733pt;}
.ws104{word-spacing:-0.005444pt;}
.ws3{word-spacing:-0.005357pt;}
.ws100{word-spacing:-0.003081pt;}
.wsfb{word-spacing:-0.002057pt;}
.wsf2{word-spacing:-0.001758pt;}
.wsf8{word-spacing:-0.001399pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.003199pt;}
.wsa5{word-spacing:0.016796pt;}
.ws9e{word-spacing:0.017257pt;}
.wsec{word-spacing:0.047615pt;}
.ws8a{word-spacing:0.047821pt;}
.ws4c{word-spacing:0.053134pt;}
.wsed{word-spacing:0.095040pt;}
.ws18{word-spacing:0.095642pt;}
.wseb{word-spacing:0.104544pt;}
.ws2a{word-spacing:0.106268pt;}
.ws83{word-spacing:0.111252pt;}
.wse8{word-spacing:0.128304pt;}
.wsea{word-spacing:0.137808pt;}
.ws87{word-spacing:0.143462pt;}
.ws85{word-spacing:0.144812pt;}
.wse9{word-spacing:0.147312pt;}
.ws60{word-spacing:0.151922pt;}
.ws30{word-spacing:0.159402pt;}
.ws19{word-spacing:0.191283pt;}
.wsa2{word-spacing:0.203435pt;}
.wsa1{word-spacing:0.205236pt;}
.ws29{word-spacing:0.212535pt;}
.wsee{word-spacing:0.213840pt;}
.wsf5{word-spacing:0.239104pt;}
.wsa0{word-spacing:0.252538pt;}
.ws31{word-spacing:0.265669pt;}
.ws44{word-spacing:0.318803pt;}
.wsa3{word-spacing:0.371937pt;}
.ws7e{word-spacing:0.425071pt;}
.ws8b{word-spacing:0.478205pt;}
.ws10b{word-spacing:0.478208pt;}
.ws6d{word-spacing:0.531339pt;}
.ws73{word-spacing:0.584473pt;}
.ws6b{word-spacing:0.637606pt;}
.ws16{word-spacing:0.669491pt;}
.ws81{word-spacing:0.690740pt;}
.ws51{word-spacing:0.743874pt;}
.ws103{word-spacing:0.765133pt;}
.ws99{word-spacing:0.797008pt;}
.ws45{word-spacing:0.850142pt;}
.ws10f{word-spacing:0.860774pt;}
.ws7d{word-spacing:0.903276pt;}
.ws26{word-spacing:0.956410pt;}
.ws10{word-spacing:0.956416pt;}
.ws68{word-spacing:0.971343pt;}
.wsa9{word-spacing:1.009543pt;}
.ws6e{word-spacing:1.062677pt;}
.wsbc{word-spacing:1.115811pt;}
.ws119{word-spacing:1.147699pt;}
.ws47{word-spacing:1.168945pt;}
.ws10e{word-spacing:1.195520pt;}
.ws48{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws5b{word-spacing:1.328347pt;}
.ws97{word-spacing:1.381481pt;}
.ws5d{word-spacing:1.434614pt;}
.ws101{word-spacing:1.434624pt;}
.wsb2{word-spacing:1.487748pt;}
.ws24{word-spacing:1.540882pt;}
.ws82{word-spacing:1.594016pt;}
.ws3f{word-spacing:1.647150pt;}
.ws17{word-spacing:1.673728pt;}
.ws2b{word-spacing:1.700284pt;}
.ws106{word-spacing:1.749291pt;}
.ws64{word-spacing:1.753418pt;}
.ws11{word-spacing:1.769370pt;}
.ws46{word-spacing:1.806551pt;}
.ws114{word-spacing:1.865011pt;}
.ws71{word-spacing:1.912819pt;}
.ws49{word-spacing:1.965953pt;}
.ws69{word-spacing:2.019087pt;}
.ws116{word-spacing:2.104115pt;}
.ws8c{word-spacing:2.125355pt;}
.ws117{word-spacing:2.151936pt;}
.ws66{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws2{word-spacing:2.233947pt;}
.ws28{word-spacing:2.284756pt;}
.ws98{word-spacing:2.309003pt;}
.ws4b{word-spacing:2.337890pt;}
.ws67{word-spacing:2.391024pt;}
.ws34{word-spacing:2.497292pt;}
.ws12{word-spacing:2.534502pt;}
.ws70{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.wsc7{word-spacing:2.587978pt;}
.ws6f{word-spacing:2.603559pt;}
.ws33{word-spacing:2.656693pt;}
.ws25{word-spacing:2.709827pt;}
.wsfc{word-spacing:2.725786pt;}
.ws93{word-spacing:2.762961pt;}
.ws9d{word-spacing:2.816095pt;}
.wsf1{word-spacing:2.863164pt;}
.ws118{word-spacing:2.865391pt;}
.wse0{word-spacing:2.865860pt;}
.ws27{word-spacing:2.869229pt;}
.wse1{word-spacing:2.869248pt;}
.ws10d{word-spacing:2.914177pt;}
.wsff{word-spacing:2.917069pt;}
.ws55{word-spacing:2.922363pt;}
.wsfe{word-spacing:2.964890pt;}
.ws56{word-spacing:2.975497pt;}
.ws9f{word-spacing:3.028630pt;}
.ws111{word-spacing:3.060531pt;}
.wsb0{word-spacing:3.081764pt;}
.wsf0{word-spacing:3.108352pt;}
.ws7a{word-spacing:3.134898pt;}
.ws1c{word-spacing:3.188032pt;}
.ws42{word-spacing:3.241166pt;}
.ws40{word-spacing:3.347434pt;}
.ws110{word-spacing:3.395277pt;}
.ws43{word-spacing:3.400567pt;}
.ws86{word-spacing:3.453701pt;}
.wsfd{word-spacing:3.490918pt;}
.ws36{word-spacing:3.506835pt;}
.wsaa{word-spacing:3.559969pt;}
.ws1d{word-spacing:3.613103pt;}
.wsab{word-spacing:3.666237pt;}
.ws1f{word-spacing:3.719371pt;}
.wsc4{word-spacing:3.730022pt;}
.wsb8{word-spacing:3.772505pt;}
.ws59{word-spacing:3.825638pt;}
.ws3a{word-spacing:3.878772pt;}
.wsf3{word-spacing:3.921306pt;}
.ws5f{word-spacing:3.931906pt;}
.wsae{word-spacing:3.985040pt;}
.wsb1{word-spacing:4.038174pt;}
.ws90{word-spacing:4.091308pt;}
.ws80{word-spacing:4.144442pt;}
.ws7b{word-spacing:4.197575pt;}
.ws112{word-spacing:4.208230pt;}
.wsba{word-spacing:4.250709pt;}
.ws113{word-spacing:4.256051pt;}
.ws7c{word-spacing:4.356977pt;}
.ws94{word-spacing:4.410111pt;}
.ws77{word-spacing:4.516379pt;}
.ws63{word-spacing:4.622646pt;}
.ws102{word-spacing:4.638618pt;}
.ws4d{word-spacing:4.675780pt;}
.ws4f{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.wsaf{word-spacing:4.888316pt;}
.wsf{word-spacing:4.934412pt;}
.ws9a{word-spacing:4.941450pt;}
.ws109{word-spacing:4.973363pt;}
.ws54{word-spacing:4.994583pt;}
.wsbb{word-spacing:5.047717pt;}
.wsb9{word-spacing:5.100851pt;}
.ws95{word-spacing:5.366521pt;}
.wsf4{word-spacing:5.403750pt;}
.wsa8{word-spacing:5.408965pt;}
.ws72{word-spacing:5.419654pt;}
.wsc0{word-spacing:5.685324pt;}
.ws52{word-spacing:5.844725pt;}
.wsad{word-spacing:6.110395pt;}
.ws75{word-spacing:6.216662pt;}
.ws1b{word-spacing:6.216704pt;}
.ws3b{word-spacing:6.376064pt;}
.ws41{word-spacing:6.482332pt;}
.ws107{word-spacing:6.551450pt;}
.wsbe{word-spacing:6.588599pt;}
.ws115{word-spacing:6.742733pt;}
.ws3c{word-spacing:7.013670pt;}
.ws78{word-spacing:7.385607pt;}
.ws21{word-spacing:7.438741pt;}
.wsbd{word-spacing:8.607686pt;}
.ws6{word-spacing:8.740496pt;}
.ws58{word-spacing:9.032757pt;}
.ws4a{word-spacing:9.510962pt;}
.ws6a{word-spacing:9.670364pt;}
.wse6{word-spacing:10.221805pt;}
.ws7{word-spacing:10.525789pt;}
.ws1a{word-spacing:11.184436pt;}
.ws74{word-spacing:11.476915pt;}
.ws65{word-spacing:12.645860pt;}
.ws4{word-spacing:13.761632pt;}
.ws4e{word-spacing:18.171782pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.wsc1{word-spacing:169.237811pt;}
.ws89{word-spacing:418.649865pt;}
.ws88{word-spacing:485.328939pt;}
._5{margin-left:-10.616218pt;}
._22{margin-left:-7.598135pt;}
._1c{margin-left:-6.322930pt;}
._8{margin-left:-5.207150pt;}
._0{margin-left:-3.421811pt;}
._15{margin-left:-2.364461pt;}
._3{margin-left:-1.301776pt;}
._2f{width:1.103921pt;}
._6{width:2.157110pt;}
._23{width:3.931906pt;}
._1{width:11.530016pt;}
._11{width:12.481020pt;}
._a{width:13.724570pt;}
._c{width:15.010414pt;}
._d{width:16.019968pt;}
._b{width:17.162350pt;}
._f{width:18.862411pt;}
._9{width:19.951888pt;}
._12{width:21.253547pt;}
._2{width:22.502128pt;}
._10{width:23.989937pt;}
._19{width:24.946347pt;}
._18{width:26.269374pt;}
._e{width:27.337371pt;}
._1a{width:28.320351pt;}
._4{width:29.648896pt;}
._31{width:30.563280pt;}
._17{width:31.508383pt;}
._24{width:32.863300pt;}
._1b{width:34.005786pt;}
._16{width:36.290431pt;}
._7{width:62.153183pt;}
._2a{width:96.837120pt;}
._2c{width:119.494844pt;}
._29{width:120.412774pt;}
._2d{width:123.769626pt;}
._2e{width:127.529523pt;}
._27{width:147.957555pt;}
._2b{width:178.323763pt;}
._26{width:190.709350pt;}
._25{width:224.996864pt;}
._28{width:243.423957pt;}
._1e{width:412.096179pt;}
._1f{width:467.398844pt;}
._13{width:783.512463pt;}
._1d{width:862.060245pt;}
._20{width:1000.937165pt;}
._30{width:1831.911016pt;}
._21{width:2234.298878pt;}
._14{width:2255.552212pt;}
.fsa{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.381867pt;}
.fse{font-size:42.134400pt;}
.fsb{font-size:42.507200pt;}
.fsf{font-size:47.520000pt;}
.fsc{font-size:47.820800pt;}
.fs10{font-size:52.905600pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y286{bottom:-111.609564pt;}
.y292{bottom:-59.892360pt;}
.y291{bottom:-44.606364pt;}
.y290{bottom:-25.202364pt;}
.y0{bottom:0.000000pt;}
.y28f{bottom:7.350024pt;}
.y37{bottom:8.207950pt;}
.y28e{bottom:19.150428pt;}
.y36{bottom:23.914454pt;}
.y64{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y34{bottom:93.018667pt;}
.y235{bottom:93.157333pt;}
.y16d{bottom:96.610667pt;}
.yff{bottom:101.128000pt;}
.y2cb{bottom:103.518667pt;}
.y63{bottom:104.274667pt;}
.y9a{bottom:105.909333pt;}
.y18e{bottom:106.308000pt;}
.y1b8{bottom:107.105333pt;}
.y297{bottom:107.506667pt;}
.y33{bottom:108.920000pt;}
.y207{bottom:109.496000pt;}
.y234{bottom:109.894667pt;}
.y16c{bottom:113.348000pt;}
.yfe{bottom:117.865333pt;}
.y2ca{bottom:118.861333pt;}
.y62{bottom:121.012000pt;}
.yb0{bottom:121.450667pt;}
.y140{bottom:122.116000pt;}
.y99{bottom:122.646667pt;}
.y296{bottom:122.849333pt;}
.y18d{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.y1b7{bottom:123.842667pt;}
.y1d3{bottom:124.241333pt;}
.y32{bottom:124.820000pt;}
.y251{bottom:125.037333pt;}
.y206{bottom:126.233333pt;}
.y233{bottom:126.632000pt;}
.y16b{bottom:130.085333pt;}
.y2c9{bottom:134.202667pt;}
.y114{bottom:136.401333pt;}
.y61{bottom:137.749333pt;}
.yaf{bottom:138.188000pt;}
.y295{bottom:138.192000pt;}
.yfd{bottom:138.586667pt;}
.y13f{bottom:138.853333pt;}
.y98{bottom:139.384000pt;}
.ycd{bottom:139.782667pt;}
.y1b6{bottom:140.580000pt;}
.y31{bottom:140.720000pt;}
.y1d2{bottom:140.978667pt;}
.y250{bottom:141.774667pt;}
.y205{bottom:142.970667pt;}
.y232{bottom:143.369333pt;}
.y112{bottom:143.706667pt;}
.y16a{bottom:146.822667pt;}
.y2c8{bottom:149.545333pt;}
.y113{bottom:151.013333pt;}
.y294{bottom:153.534667pt;}
.y60{bottom:154.486667pt;}
.yae{bottom:154.925333pt;}
.y13e{bottom:155.590667pt;}
.y97{bottom:156.121333pt;}
.ycc{bottom:156.520000pt;}
.y30{bottom:156.621333pt;}
.y1b5{bottom:157.317333pt;}
.y1d1{bottom:157.716000pt;}
.y24f{bottom:158.512000pt;}
.y204{bottom:159.708000pt;}
.y231{bottom:160.106667pt;}
.y18c{bottom:160.505333pt;}
.y2c7{bottom:164.888000pt;}
.y111{bottom:165.624000pt;}
.y169{bottom:167.545333pt;}
.yfc{bottom:168.474667pt;}
.y5f{bottom:171.224000pt;}
.yad{bottom:171.662667pt;}
.y13d{bottom:172.328000pt;}
.y2f{bottom:172.521333pt;}
.y96{bottom:172.858667pt;}
.y293{bottom:172.862667pt;}
.ycb{bottom:173.257333pt;}
.y1b4{bottom:174.054667pt;}
.y1d0{bottom:174.452000pt;}
.y18{bottom:175.052000pt;}
.y24e{bottom:175.249333pt;}
.y203{bottom:176.445333pt;}
.y230{bottom:176.844000pt;}
.y2c6{bottom:180.230667pt;}
.y110{bottom:180.236000pt;}
.y168{bottom:184.282667pt;}
.yfb{bottom:185.212000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y5e{bottom:187.961333pt;}
.yac{bottom:188.400000pt;}
.y2e{bottom:188.421333pt;}
.y13c{bottom:189.065333pt;}
.y95{bottom:189.596000pt;}
.yca{bottom:189.994667pt;}
.y18b{bottom:190.393333pt;}
.y1cf{bottom:191.189333pt;}
.y24d{bottom:191.986667pt;}
.y202{bottom:193.182667pt;}
.y22f{bottom:193.581333pt;}
.y1b3{bottom:194.776000pt;}
.y2c5{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y167{bottom:201.020000pt;}
.yfa{bottom:201.949333pt;}
.y283{bottom:202.749333pt;}
.y2d{bottom:204.322667pt;}
.y5d{bottom:204.697333pt;}
.yab{bottom:205.137333pt;}
.y94{bottom:206.333333pt;}
.yc9{bottom:206.732000pt;}
.y18a{bottom:207.130667pt;}
.y1ce{bottom:207.926667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y24c{bottom:208.724000pt;}
.y10f{bottom:209.460000pt;}
.y13b{bottom:209.786667pt;}
.y201{bottom:209.920000pt;}
.y22e{bottom:210.318667pt;}
.y2c4{bottom:210.916000pt;}
.y10e{bottom:216.766667pt;}
.y166{bottom:217.757333pt;}
.yf9{bottom:218.686667pt;}
.y5c{bottom:221.434667pt;}
.yaa{bottom:221.874667pt;}
.y93{bottom:223.070667pt;}
.yc8{bottom:223.469333pt;}
.y189{bottom:223.868000pt;}
.y1b2{bottom:224.664000pt;}
.y24b{bottom:225.461333pt;}
.y2c3{bottom:226.258667pt;}
.y13a{bottom:226.524000pt;}
.y200{bottom:226.657333pt;}
.y22d{bottom:227.056000pt;}
.y1cd{bottom:228.649333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y165{bottom:234.494667pt;}
.yf8{bottom:235.424000pt;}
.y5b{bottom:238.172000pt;}
.ya9{bottom:238.612000pt;}
.y92{bottom:239.808000pt;}
.yc7{bottom:240.206667pt;}
.y188{bottom:240.605333pt;}
.y1b1{bottom:241.401333pt;}
.y2c2{bottom:241.601333pt;}
.y24a{bottom:242.198667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y139{bottom:243.261333pt;}
.y1ff{bottom:243.394667pt;}
.y1e6{bottom:243.793333pt;}
.y10d{bottom:245.086667pt;}
.y1cc{bottom:245.386667pt;}
.y164{bottom:251.232000pt;}
.yf7{bottom:252.161333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y5a{bottom:254.909333pt;}
.ya8{bottom:255.349333pt;}
.y91{bottom:256.545333pt;}
.yc6{bottom:256.944000pt;}
.y187{bottom:257.341333pt;}
.y249{bottom:258.936000pt;}
.y1fe{bottom:260.132000pt;}
.y1b0{bottom:262.124000pt;}
.y138{bottom:263.984000pt;}
.y10c{bottom:266.100000pt;}
.y1cb{bottom:266.109333pt;}
.y2c{bottom:266.569333pt;}
.y163{bottom:267.969333pt;}
.yf6{bottom:268.898667pt;}
.y59{bottom:271.646667pt;}
.ya7{bottom:272.086667pt;}
.y2c1{bottom:272.285333pt;}
.y90{bottom:273.282667pt;}
.y10b{bottom:273.405333pt;}
.yc5{bottom:273.681333pt;}
.y248{bottom:275.673333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y22c{bottom:276.470667pt;}
.y1fd{bottom:276.869333pt;}
.y186{bottom:278.064000pt;}
.y137{bottom:280.721333pt;}
.y2b{bottom:282.470667pt;}
.y1ca{bottom:282.846667pt;}
.yf5{bottom:285.636000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y2c0{bottom:287.628000pt;}
.y58{bottom:288.384000pt;}
.y162{bottom:288.690667pt;}
.ya6{bottom:288.824000pt;}
.y8f{bottom:290.020000pt;}
.yc4{bottom:290.417333pt;}
.y1e5{bottom:290.418667pt;}
.y1af{bottom:292.012000pt;}
.y265{bottom:292.410667pt;}
.y22b{bottom:293.208000pt;}
.y185{bottom:294.801333pt;}
.y10a{bottom:295.324000pt;}
.y136{bottom:297.458667pt;}
.y2a{bottom:298.370667pt;}
.y1c9{bottom:299.584000pt;}
.y28d{bottom:300.944028pt;}
.yf4{bottom:302.373333pt;}
.y109{bottom:302.629333pt;}
.y2bf{bottom:302.970667pt;}
.y57{bottom:305.121333pt;}
.y161{bottom:305.428000pt;}
.ya5{bottom:305.561333pt;}
.y8e{bottom:306.757333pt;}
.yc3{bottom:307.154667pt;}
.y1e4{bottom:307.156000pt;}
.y247{bottom:308.350667pt;}
.y1ae{bottom:308.749333pt;}
.y264{bottom:309.148000pt;}
.yf{bottom:309.452000pt;}
.y1fc{bottom:309.546667pt;}
.y184{bottom:311.538667pt;}
.y28c{bottom:312.744432pt;}
.y135{bottom:314.196000pt;}
.y29{bottom:314.270667pt;}
.y2be{bottom:318.313333pt;}
.yf3{bottom:319.110667pt;}
.y1c8{bottom:320.306667pt;}
.y56{bottom:321.858667pt;}
.y160{bottom:322.165333pt;}
.ya4{bottom:322.298667pt;}
.y8d{bottom:323.494667pt;}
.yc2{bottom:323.892000pt;}
.y108{bottom:324.548000pt;}
.y246{bottom:325.088000pt;}
.y1ad{bottom:325.486667pt;}
.y22a{bottom:325.885333pt;}
.y1fb{bottom:326.284000pt;}
.y1e3{bottom:327.877333pt;}
.y183{bottom:328.276000pt;}
.y134{bottom:330.933333pt;}
.y106{bottom:331.853333pt;}
.y2bd{bottom:333.656000pt;}
.yf2{bottom:335.848000pt;}
.y1c7{bottom:337.044000pt;}
.y28{bottom:338.141333pt;}
.y55{bottom:338.596000pt;}
.y15f{bottom:338.902667pt;}
.ya3{bottom:339.036000pt;}
.y107{bottom:339.160000pt;}
.y8c{bottom:340.232000pt;}
.yc1{bottom:340.629333pt;}
.y1ac{bottom:342.224000pt;}
.y229{bottom:342.622667pt;}
.y1fa{bottom:343.021333pt;}
.ye{bottom:343.809333pt;}
.y182{bottom:345.013333pt;}
.y133{bottom:347.670667pt;}
.y2bc{bottom:348.998667pt;}
.yf1{bottom:352.585333pt;}
.y1c6{bottom:353.780000pt;}
.y27{bottom:354.042667pt;}
.y54{bottom:355.333333pt;}
.y15e{bottom:355.640000pt;}
.ya2{bottom:355.773333pt;}
.y8b{bottom:356.968000pt;}
.yc0{bottom:357.366667pt;}
.y1e2{bottom:357.765333pt;}
.y1ab{bottom:358.961333pt;}
.y228{bottom:359.360000pt;}
.y105{bottom:360.173333pt;}
.y181{bottom:361.750667pt;}
.yd{bottom:362.706666pt;}
.y2bb{bottom:364.341333pt;}
.y132{bottom:364.408000pt;}
.yf0{bottom:369.322667pt;}
.y26{bottom:369.942667pt;}
.y1c5{bottom:370.517333pt;}
.y53{bottom:372.070667pt;}
.y15d{bottom:372.377333pt;}
.ya1{bottom:372.510667pt;}
.y8a{bottom:373.705333pt;}
.ybf{bottom:374.104000pt;}
.y1e1{bottom:374.502667pt;}
.y1f9{bottom:375.698667pt;}
.y227{bottom:376.097333pt;}
.y180{bottom:378.488000pt;}
.y1aa{bottom:379.684000pt;}
.y131{bottom:385.129333pt;}
.y25{bottom:385.842667pt;}
.yef{bottom:386.060000pt;}
.y1c4{bottom:387.254667pt;}
.y52{bottom:388.808000pt;}
.y15c{bottom:389.114667pt;}
.ya0{bottom:389.248000pt;}
.y89{bottom:390.442667pt;}
.ybe{bottom:390.841333pt;}
.y104{bottom:390.936000pt;}
.y1e0{bottom:391.240000pt;}
.y1f8{bottom:392.436000pt;}
.y226{bottom:392.834667pt;}
.y2ba{bottom:395.025333pt;}
.y17f{bottom:395.225333pt;}
.y1a9{bottom:396.421333pt;}
.y24{bottom:401.744000pt;}
.yee{bottom:402.797333pt;}
.y1c3{bottom:403.992000pt;}
.y51{bottom:405.545333pt;}
.y15b{bottom:405.852000pt;}
.y9f{bottom:405.985333pt;}
.y88{bottom:407.180000pt;}
.ybd{bottom:407.578667pt;}
.y1df{bottom:407.977333pt;}
.y1f7{bottom:409.173333pt;}
.y225{bottom:409.572000pt;}
.y2b9{bottom:410.368000pt;}
.y17e{bottom:411.962667pt;}
.y1a8{bottom:413.158667pt;}
.y130{bottom:415.017333pt;}
.y23{bottom:417.644000pt;}
.yed{bottom:419.534667pt;}
.y1c2{bottom:420.729333pt;}
.y50{bottom:422.282667pt;}
.y15a{bottom:422.589333pt;}
.y9e{bottom:422.722667pt;}
.y87{bottom:423.917333pt;}
.ybc{bottom:424.316000pt;}
.y245{bottom:424.714667pt;}
.y2b8{bottom:425.710667pt;}
.y1f6{bottom:425.910667pt;}
.y224{bottom:426.309333pt;}
.y17d{bottom:428.700000pt;}
.y1a7{bottom:429.896000pt;}
.y12f{bottom:431.754667pt;}
.y22{bottom:433.544000pt;}
.yec{bottom:436.272000pt;}
.y1c1{bottom:437.466667pt;}
.y159{bottom:439.326667pt;}
.y9d{bottom:439.460000pt;}
.y86{bottom:440.654667pt;}
.ybb{bottom:441.053333pt;}
.y244{bottom:441.452000pt;}
.y1f5{bottom:442.648000pt;}
.y4f{bottom:443.005333pt;}
.y223{bottom:443.046667pt;}
.y17c{bottom:445.437333pt;}
.y1a6{bottom:446.633333pt;}
.yc{bottom:446.990669pt;}
.y12e{bottom:448.492000pt;}
.y282{bottom:452.838667pt;}
.yeb{bottom:453.009333pt;}
.y1c0{bottom:454.204000pt;}
.y158{bottom:456.064000pt;}
.y2b7{bottom:456.396000pt;}
.yb8{bottom:457.392000pt;}
.yba{bottom:457.790667pt;}
.y243{bottom:458.189333pt;}
.y1f4{bottom:459.385333pt;}
.y222{bottom:459.784000pt;}
.y9c{bottom:460.181333pt;}
.y85{bottom:461.377333pt;}
.y17b{bottom:462.174667pt;}
.yb{bottom:462.990669pt;}
.y12d{bottom:465.229333pt;}
.y1a5{bottom:467.354667pt;}
.yea{bottom:469.746667pt;}
.y1bf{bottom:470.941333pt;}
.y2b6{bottom:471.738667pt;}
.y157{bottom:472.801333pt;}
.yb7{bottom:474.129333pt;}
.yb9{bottom:474.528000pt;}
.y242{bottom:474.926667pt;}
.y1f3{bottom:476.122667pt;}
.y281{bottom:476.429333pt;}
.y221{bottom:476.521333pt;}
.y9b{bottom:478.114667pt;}
.y1de{bottom:478.912000pt;}
.ya{bottom:478.990666pt;}
.y12c{bottom:481.966667pt;}
.y17a{bottom:482.897333pt;}
.y1a4{bottom:484.092000pt;}
.ye9{bottom:486.484000pt;}
.y2b5{bottom:487.081333pt;}
.y1be{bottom:487.678667pt;}
.y156{bottom:489.538667pt;}
.yb6{bottom:490.866667pt;}
.y84{bottom:491.265333pt;}
.y241{bottom:491.664000pt;}
.y1f2{bottom:492.860000pt;}
.y220{bottom:493.258667pt;}
.y9{bottom:494.990666pt;}
.y1dd{bottom:495.649333pt;}
.y12b{bottom:498.704000pt;}
.y179{bottom:499.634667pt;}
.y280{bottom:500.021333pt;}
.y2b4{bottom:502.424000pt;}
.ye8{bottom:503.221333pt;}
.y1a3{bottom:504.814667pt;}
.yb5{bottom:507.604000pt;}
.y83{bottom:508.002667pt;}
.y1bd{bottom:508.401333pt;}
.y1f1{bottom:509.597333pt;}
.y4e{bottom:509.805333pt;}
.y21f{bottom:509.996000pt;}
.y155{bottom:510.261333pt;}
.y1dc{bottom:512.386667pt;}
.y178{bottom:516.372000pt;}
.y2b3{bottom:517.766667pt;}
.y12a{bottom:519.426667pt;}
.ye7{bottom:519.957333pt;}
.y1a2{bottom:521.552000pt;}
.y27f{bottom:523.613333pt;}
.yb4{bottom:524.341333pt;}
.y82{bottom:524.740000pt;}
.y240{bottom:525.138667pt;}
.y1f0{bottom:526.334667pt;}
.y21e{bottom:526.732000pt;}
.y4d{bottom:527.100000pt;}
.y177{bottom:533.108000pt;}
.y129{bottom:536.164000pt;}
.ye6{bottom:536.694667pt;}
.y1a1{bottom:538.289333pt;}
.y27e{bottom:539.234667pt;}
.y154{bottom:540.149333pt;}
.yb3{bottom:541.078667pt;}
.y81{bottom:541.477333pt;}
.y23f{bottom:541.876000pt;}
.y1ef{bottom:543.070667pt;}
.y21d{bottom:543.469333pt;}
.y2b2{bottom:548.450667pt;}
.y176{bottom:549.845333pt;}
.y128{bottom:552.901333pt;}
.ye5{bottom:553.432000pt;}
.y1a0{bottom:555.026667pt;}
.y153{bottom:556.886667pt;}
.yb2{bottom:557.816000pt;}
.y80{bottom:558.214667pt;}
.y23e{bottom:558.613333pt;}
.y1ee{bottom:559.808000pt;}
.y21c{bottom:560.206667pt;}
.y4c{bottom:560.336000pt;}
.y27d{bottom:562.825333pt;}
.y2b1{bottom:563.793333pt;}
.y175{bottom:566.582667pt;}
.y127{bottom:569.638667pt;}
.ye4{bottom:570.169333pt;}
.y19f{bottom:571.764000pt;}
.y8{bottom:573.786667pt;}
.y103{bottom:574.553333pt;}
.y7f{bottom:574.952000pt;}
.y23d{bottom:575.350667pt;}
.y1ed{bottom:576.545333pt;}
.y263{bottom:576.944000pt;}
.y152{bottom:577.608000pt;}
.y4b{bottom:577.630667pt;}
.y27c{bottom:578.448000pt;}
.yb1{bottom:578.538667pt;}
.y2b0{bottom:579.136000pt;}
.y1db{bottom:583.320000pt;}
.ye3{bottom:586.906667pt;}
.y174{bottom:587.305333pt;}
.y1bc{bottom:588.501333pt;}
.y126{bottom:590.361333pt;}
.y102{bottom:591.290667pt;}
.y7e{bottom:591.689333pt;}
.y23c{bottom:592.088000pt;}
.y19e{bottom:592.486667pt;}
.y7{bottom:592.685334pt;}
.y21b{bottom:592.885333pt;}
.y1ec{bottom:593.282667pt;}
.y262{bottom:593.681333pt;}
.y2af{bottom:594.478667pt;}
.y4a{bottom:594.925333pt;}
.y1da{bottom:600.057333pt;}
.y27b{bottom:602.038667pt;}
.ye2{bottom:603.644000pt;}
.y173{bottom:604.042667pt;}
.y125{bottom:607.098667pt;}
.y151{bottom:607.496000pt;}
.y101{bottom:608.028000pt;}
.y7d{bottom:608.426667pt;}
.y23b{bottom:608.825333pt;}
.y19d{bottom:609.224000pt;}
.y21a{bottom:609.622667pt;}
.y2ae{bottom:609.821333pt;}
.y1eb{bottom:610.020000pt;}
.y261{bottom:610.418667pt;}
.y49{bottom:612.221333pt;}
.y27a{bottom:617.660000pt;}
.y28b{bottom:620.674032pt;}
.y172{bottom:620.780000pt;}
.y150{bottom:624.233333pt;}
.ye1{bottom:624.366667pt;}
.y7c{bottom:625.164000pt;}
.y23a{bottom:625.562667pt;}
.y19c{bottom:625.961333pt;}
.y219{bottom:626.358667pt;}
.y1ea{bottom:626.757333pt;}
.y100{bottom:628.750667pt;}
.y48{bottom:629.516000pt;}
.y124{bottom:630.477333pt;}
.y260{bottom:631.141333pt;}
.y28a{bottom:632.474436pt;}
.y279{bottom:633.281333pt;}
.y171{bottom:637.517333pt;}
.y2ad{bottom:640.506667pt;}
.y14f{bottom:640.970667pt;}
.y7b{bottom:641.901333pt;}
.y239{bottom:642.300000pt;}
.y19b{bottom:642.697333pt;}
.y1e9{bottom:643.494667pt;}
.y6{bottom:645.598667pt;}
.y47{bottom:646.812000pt;}
.y123{bottom:647.214667pt;}
.y278{bottom:648.902667pt;}
.ye0{bottom:654.254667pt;}
.y2ac{bottom:655.848000pt;}
.y14e{bottom:657.708000pt;}
.y7a{bottom:658.638667pt;}
.y218{bottom:659.037333pt;}
.y19a{bottom:659.434667pt;}
.y25f{bottom:661.029333pt;}
.y1bb{bottom:663.420000pt;}
.y122{bottom:663.952000pt;}
.y46{bottom:664.106667pt;}
.y277{bottom:664.525333pt;}
.y3{bottom:668.977329pt;}
.ydf{bottom:670.992000pt;}
.y2ab{bottom:671.190667pt;}
.y79{bottom:675.376000pt;}
.y217{bottom:675.774667pt;}
.y199{bottom:676.172000pt;}
.y25e{bottom:677.766667pt;}
.y14d{bottom:678.430667pt;}
.y1ba{bottom:680.157333pt;}
.y121{bottom:680.689333pt;}
.y45{bottom:681.401333pt;}
.y2aa{bottom:686.533333pt;}
.yde{bottom:687.729333pt;}
.y78{bottom:692.113333pt;}
.y216{bottom:692.512000pt;}
.y1e8{bottom:692.909333pt;}
.y14c{bottom:695.168000pt;}
.y276{bottom:696.086667pt;}
.y238{bottom:696.496000pt;}
.y198{bottom:696.894667pt;}
.y120{bottom:697.426667pt;}
.y44{bottom:698.697333pt;}
.y2a9{bottom:701.876000pt;}
.ydd{bottom:704.466667pt;}
.y77{bottom:708.850667pt;}
.y215{bottom:709.248000pt;}
.y1e7{bottom:709.646667pt;}
.y25d{bottom:710.444000pt;}
.y14b{bottom:711.905333pt;}
.y275{bottom:712.824000pt;}
.y197{bottom:713.632000pt;}
.y43{bottom:715.992000pt;}
.y2a8{bottom:717.218667pt;}
.y11f{bottom:720.805333pt;}
.ydc{bottom:721.204000pt;}
.y1d9{bottom:725.189333pt;}
.y76{bottom:725.588000pt;}
.y214{bottom:725.985333pt;}
.y237{bottom:726.384000pt;}
.y25c{bottom:727.181333pt;}
.y14a{bottom:728.642667pt;}
.y274{bottom:729.561333pt;}
.y196{bottom:730.369333pt;}
.y2a7{bottom:732.561333pt;}
.y42{bottom:733.286667pt;}
.y11e{bottom:737.542667pt;}
.ydb{bottom:737.941333pt;}
.y75{bottom:742.324000pt;}
.y213{bottom:742.722667pt;}
.y236{bottom:743.121333pt;}
.y2ce{bottom:743.852000pt;}
.y25b{bottom:743.918667pt;}
.y273{bottom:746.298667pt;}
.y2a6{bottom:747.904000pt;}
.y41{bottom:750.582667pt;}
.y195{bottom:751.092000pt;}
.y149{bottom:752.021333pt;}
.y11d{bottom:754.280000pt;}
.yda{bottom:754.678667pt;}
.y1d8{bottom:755.077333pt;}
.y74{bottom:759.061333pt;}
.y2cd{bottom:759.194667pt;}
.y212{bottom:759.460000pt;}
.y25a{bottom:760.656000pt;}
.y272{bottom:763.036000pt;}
.y2a5{bottom:763.246667pt;}
.y194{bottom:767.829333pt;}
.y148{bottom:768.758667pt;}
.y11c{bottom:771.017333pt;}
.yd9{bottom:771.416000pt;}
.y1d7{bottom:771.814667pt;}
.y2cc{bottom:774.537333pt;}
.y73{bottom:775.798667pt;}
.y211{bottom:776.197333pt;}
.y259{bottom:777.393333pt;}
.y2a4{bottom:778.589333pt;}
.y271{bottom:779.773333pt;}
.y2{bottom:781.661334pt;}
.y193{bottom:784.566667pt;}
.y40{bottom:784.880000pt;}
.y147{bottom:785.496000pt;}
.y289{bottom:785.805636pt;}
.y11b{bottom:787.754667pt;}
.yd8{bottom:788.153333pt;}
.y1d6{bottom:788.552000pt;}
.y72{bottom:792.536000pt;}
.y210{bottom:792.934667pt;}
.y2a3{bottom:793.930667pt;}
.y258{bottom:794.130667pt;}
.y270{bottom:796.510667pt;}
.y3f{bottom:799.226667pt;}
.y192{bottom:801.304000pt;}
.y146{bottom:802.233333pt;}
.yd7{bottom:804.890667pt;}
.y1d5{bottom:805.289333pt;}
.y11a{bottom:808.477333pt;}
.y170{bottom:808.874667pt;}
.y71{bottom:809.273333pt;}
.y20f{bottom:809.672000pt;}
.y257{bottom:810.868000pt;}
.y26f{bottom:813.248000pt;}
.y3e{bottom:817.430667pt;}
.y191{bottom:818.041333pt;}
.y288{bottom:818.277240pt;}
.y145{bottom:818.970667pt;}
.yd6{bottom:821.628000pt;}
.y1d4{bottom:822.025333pt;}
.y2a2{bottom:824.616000pt;}
.y70{bottom:826.010667pt;}
.y20e{bottom:826.409333pt;}
.y256{bottom:827.605333pt;}
.y3d{bottom:827.920000pt;}
.y26e{bottom:829.985333pt;}
.y190{bottom:834.778667pt;}
.y119{bottom:838.365333pt;}
.y16f{bottom:838.762667pt;}
.y2a1{bottom:839.958667pt;}
.y287{bottom:841.404036pt;}
.yd5{bottom:842.349333pt;}
.y6f{bottom:842.748000pt;}
.y20d{bottom:843.146667pt;}
.y255{bottom:844.342667pt;}
.y3c{bottom:846.122667pt;}
.y26d{bottom:846.722667pt;}
.y18f{bottom:851.516000pt;}
.y118{bottom:855.102667pt;}
.y2a0{bottom:855.301333pt;}
.y16e{bottom:855.500000pt;}
.y144{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6e{bottom:859.485333pt;}
.y20c{bottom:859.884000pt;}
.y254{bottom:861.080000pt;}
.y1b9{bottom:868.253333pt;}
.y29f{bottom:870.644000pt;}
.y117{bottom:871.840000pt;}
.yd4{bottom:872.237333pt;}
.y143{bottom:875.824000pt;}
.y6d{bottom:876.222667pt;}
.y20b{bottom:876.621333pt;}
.y253{bottom:877.817333pt;}
.y3b{bottom:885.836000pt;}
.y29e{bottom:885.986667pt;}
.y26c{bottom:887.132000pt;}
.y285{bottom:888.211355pt;}
.y116{bottom:888.577333pt;}
.yd3{bottom:888.974667pt;}
.y142{bottom:892.561333pt;}
.y6c{bottom:892.960000pt;}
.y26b{bottom:894.438667pt;}
.y284{bottom:896.685636pt;}
.y20a{bottom:897.344000pt;}
.y29d{bottom:901.329333pt;}
.yd2{bottom:905.712000pt;}
.y115{bottom:909.298667pt;}
.y6b{bottom:909.697333pt;}
.y252{bottom:910.494667pt;}
.y141{bottom:913.284000pt;}
.y26a{bottom:916.356000pt;}
.y29c{bottom:916.670667pt;}
.y3a{bottom:921.320000pt;}
.yd1{bottom:922.449333pt;}
.y6a{bottom:926.434667pt;}
.y209{bottom:927.232000pt;}
.y269{bottom:930.968000pt;}
.y29b{bottom:932.013333pt;}
.y268{bottom:938.274667pt;}
.yd0{bottom:939.186667pt;}
.y69{bottom:943.172000pt;}
.y208{bottom:943.969333pt;}
.y39{bottom:946.425333pt;}
.y29a{bottom:947.356000pt;}
.ycf{bottom:955.924000pt;}
.y68{bottom:959.909333pt;}
.y299{bottom:962.698667pt;}
.y267{bottom:966.594667pt;}
.y38{bottom:971.530667pt;}
.yce{bottom:972.661333pt;}
.y67{bottom:976.646667pt;}
.y298{bottom:978.041333pt;}
.y66{bottom:993.384000pt;}
.y266{bottom:994.700000pt;}
.y35{bottom:1010.186667pt;}
.y65{bottom:1046.810667pt;}
.h14{height:27.184641pt;}
.h7{height:28.560000pt;}
.hf{height:30.063343pt;}
.h15{height:34.430976pt;}
.h1d{height:34.990312pt;}
.h9{height:35.073565pt;}
.h12{height:38.256384pt;}
.h1c{height:38.955881pt;}
.hc{height:39.000258pt;}
.h1a{height:39.356986pt;}
.h10{height:40.084290pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1b{height:44.387578pt;}
.h11{height:45.095014pt;}
.ha{height:45.271688pt;}
.he{height:48.360277pt;}
.h2{height:48.960000pt;}
.h13{height:50.105236pt;}
.hb{height:54.767117pt;}
.hd{height:68.861952pt;}
.h5{height:69.360000pt;}
.h17{height:74.316348pt;}
.h16{height:74.321681pt;}
.h18{height:103.543014pt;}
.h4{height:105.826671pt;}
.h19{height:780.296880pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w2{width:566.928019pt;}
.w5{width:697.605612pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:3.121932pt;}
.x45{left:31.165018pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x46{left:76.309333pt;}
.x1d{left:82.542667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x24{left:117.230667pt;}
.x22{left:130.333333pt;}
.x21{left:138.809333pt;}
.x27{left:140.692000pt;}
.x25{left:143.837333pt;}
.x1e{left:148.385333pt;}
.x29{left:154.244000pt;}
.x40{left:175.223532pt;}
.x4{left:180.874667pt;}
.xb{left:219.865333pt;}
.x9{left:220.912000pt;}
.x7{left:221.858667pt;}
.xc{left:225.886667pt;}
.x3c{left:234.025333pt;}
.x8{left:239.924000pt;}
.x3b{left:242.501333pt;}
.x2b{left:246.884000pt;}
.x33{left:249.314667pt;}
.xa{left:250.204000pt;}
.x39{left:252.077333pt;}
.x2c{left:253.824000pt;}
.x2d{left:269.045333pt;}
.x32{left:271.994667pt;}
.x36{left:280.337333pt;}
.x44{left:295.527538pt;}
.x43{left:303.922058pt;}
.x11{left:309.125333pt;}
.x42{left:313.347337pt;}
.x2e{left:319.246667pt;}
.x1f{left:327.688000pt;}
.x2f{left:337.924000pt;}
.xd{left:338.862667pt;}
.x2a{left:349.172000pt;}
.x34{left:370.042667pt;}
.x10{left:371.748000pt;}
.x3d{left:372.721333pt;}
.x37{left:375.698667pt;}
.x38{left:376.797333pt;}
.x35{left:385.264000pt;}
.x3{left:404.408000pt;}
.x26{left:416.892000pt;}
.x20{left:424.698667pt;}
.x28{left:462.285333pt;}
.x23{left:475.920000pt;}
.x17{left:486.246667pt;}
.xe{left:528.254667pt;}
.x12{left:587.974667pt;}
.x3e{left:641.916000pt;}
.x3a{left:644.009333pt;}
.x19{left:644.985333pt;}
.x14{left:646.264000pt;}
.x1b{left:663.070667pt;}
.x30{left:670.078667pt;}
.x16{left:672.269333pt;}
.x1c{left:677.460000pt;}
.x18{left:684.381333pt;}
.x31{left:685.300000pt;}
.x41{left:694.141932pt;}
.x13{left:713.873333pt;}
.xf{left:718.446667pt;}
.x15{left:740.257333pt;}
.x1a{left:744.770667pt;}
}




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