
    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_840969df96a73a5178e47796.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_fd22a7f52c6ec59dafa83612.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1bc056f89e9296f90090fe16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f498709af3575e3e93494271.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.773000;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_2df85402fc7a48716d5fb2af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_c7c91cac8b033435b4eed442.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.954000;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_c81db1755f0a3050b0f811d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.211426;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_c81db1755f0a3050b0f811d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.211426;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_9cbef8a70071b18769afaa7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_db431c514a2fcc16b450eb26.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_480b9b548d2ca815e272ae5f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_db431c514a2fcc16b450eb26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211426;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_480b9b548d2ca815e272ae5f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006836;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;}
.m36{transform:matrix(0.000000,-0.249450,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249450,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249450,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.249534,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249534,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249534,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.249974,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249974,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249974,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,-0.250396,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250396,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250396,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.251651,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251651,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251651,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m16{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);}
.m12{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);}
.m17{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);}
.m3{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);}
.m38{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);}
.m13{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);}
.ma{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);}
.m10{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);}
.m22{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);}
.m9{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);}
.m1d{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);}
.m1f{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);}
.m18{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);}
.m4{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);}
.m35{transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m2b{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m39{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);}
.m27{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);}
.m2c{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m23{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);}
.m32{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250396,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.mc{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);}
.m25{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);}
.m11{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);}
.m1a{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);}
.m31{transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251651,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m28{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m15{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);}
.m24{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);}
.m26{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);}
.m14{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.me{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);}
.m5{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);}
.mf{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.952000px;}
.v5{vertical-align:-10.920000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.521800px;}
.v4{vertical-align:10.920000px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls3d{letter-spacing:-0.340200px;}
.ls49{letter-spacing:-0.334800px;}
.ls39{letter-spacing:-0.282579px;}
.ls34{letter-spacing:-0.237448px;}
.ls3e{letter-spacing:-0.201845px;}
.ls38{letter-spacing:-0.162225px;}
.ls35{letter-spacing:-0.106663px;}
.ls3a{letter-spacing:-0.096703px;}
.ls30{letter-spacing:-0.084678px;}
.ls3c{letter-spacing:-0.080358px;}
.ls42{letter-spacing:-0.075162px;}
.ls3b{letter-spacing:-0.068628px;}
.ls45{letter-spacing:-0.061898px;}
.ls3f{letter-spacing:-0.044213px;}
.ls32{letter-spacing:-0.029084px;}
.ls44{letter-spacing:-0.022106px;}
.ls43{letter-spacing:-0.017685px;}
.ls33{letter-spacing:-0.008310px;}
.ls7{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000104px;}
.ls16{letter-spacing:0.000145px;}
.ls1{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.000612px;}
.ls4f{letter-spacing:0.000800px;}
.ls2e{letter-spacing:0.002796px;}
.ls51{letter-spacing:0.003437px;}
.ls2f{letter-spacing:0.003668px;}
.ls41{letter-spacing:0.004421px;}
.ls2b{letter-spacing:0.006012px;}
.ls2c{letter-spacing:0.008843px;}
.ls2a{letter-spacing:0.011480px;}
.ls48{letter-spacing:0.012024px;}
.ls31{letter-spacing:0.012465px;}
.ls23{letter-spacing:0.013375px;}
.ls24{letter-spacing:0.016200px;}
.ls40{letter-spacing:0.017685px;}
.ls22{letter-spacing:0.018000px;}
.ls27{letter-spacing:0.023880px;}
.ls2d{letter-spacing:0.026658px;}
.ls47{letter-spacing:0.027000px;}
.ls25{letter-spacing:0.031840px;}
.ls29{letter-spacing:0.045919px;}
.ls21{letter-spacing:0.065639px;}
.ls28{letter-spacing:0.068878px;}
.ls26{letter-spacing:0.123379px;}
.ls37{letter-spacing:0.180507px;}
.ls20{letter-spacing:0.203589px;}
.ls36{letter-spacing:0.242044px;}
.ls19{letter-spacing:0.520800px;}
.lsd{letter-spacing:0.562200px;}
.lse{letter-spacing:0.568200px;}
.ls13{letter-spacing:0.642088px;}
.ls14{letter-spacing:0.648088px;}
.lsa{letter-spacing:0.717483px;}
.lsf{letter-spacing:2.983200px;}
.ls9{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls1a{letter-spacing:3.531945px;}
.ls11{letter-spacing:3.559200px;}
.lsc{letter-spacing:3.578160px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.ls1c{letter-spacing:12.014896px;}
.ls1b{letter-spacing:13.150632px;}
.ls4c{letter-spacing:13.193468px;}
.ls4a{letter-spacing:13.448400px;}
.ls4b{letter-spacing:13.454400px;}
.ls50{letter-spacing:13.586911px;}
.ls18{letter-spacing:14.124000px;}
.ls12{letter-spacing:14.405920px;}
.ls1e{letter-spacing:14.704798px;}
.ls1d{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.663483px;}
.ls4e{letter-spacing:15.738635px;}
.ls4d{letter-spacing:17.191576px;}
.ls1f{letter-spacing:17.334924px;}
.ls17{letter-spacing:17.649945px;}
.lsb{letter-spacing:17.695200px;}
.ls10{letter-spacing:18.679200px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{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;}
}
.ws98{word-spacing:-15.036012px;}
.ws52{word-spacing:-14.943900px;}
.ws9{word-spacing:-14.355754px;}
.ws79{word-spacing:-13.449600px;}
.ws9f{word-spacing:-12.246946px;}
.ws20{word-spacing:-11.955150px;}
.ws97{word-spacing:-11.646827px;}
.ws6{word-spacing:-11.357400px;}
.ws96{word-spacing:-11.298120px;}
.ws9b{word-spacing:-11.096184px;}
.ws9a{word-spacing:-10.781766px;}
.ws9d{word-spacing:-10.557479px;}
.ws4{word-spacing:-10.460700px;}
.ws95{word-spacing:-9.059817px;}
.ws6e{word-spacing:-3.227882px;}
.ws84{word-spacing:-2.869229px;}
.ws8b{word-spacing:-2.749678px;}
.ws8c{word-spacing:-2.630126px;}
.ws12{word-spacing:-2.570351px;}
.ws64{word-spacing:-2.211697px;}
.ws3c{word-spacing:-2.151922px;}
.ws6d{word-spacing:-2.092146px;}
.ws5d{word-spacing:-2.032370px;}
.wsca{word-spacing:-1.990541px;}
.ws15{word-spacing:-1.972595px;}
.ws37{word-spacing:-1.793268px;}
.ws5e{word-spacing:-1.733492px;}
.wsb4{word-spacing:-1.721549px;}
.ws8f{word-spacing:-1.673717px;}
.ws49{word-spacing:-1.613941px;}
.ws34{word-spacing:-1.554166px;}
.ws90{word-spacing:-1.494390px;}
.wsba{word-spacing:-1.434614px;}
.ws66{word-spacing:-1.135736px;}
.ws38{word-spacing:-0.896634px;}
.ws4a{word-spacing:-0.777083px;}
.ws50{word-spacing:-0.717307px;}
.ws18{word-spacing:-0.657532px;}
.ws55{word-spacing:-0.597756px;}
.ws65{word-spacing:-0.537980px;}
.ws41{word-spacing:-0.478205px;}
.wsa3{word-spacing:-0.418449px;}
.ws1e{word-spacing:-0.418429px;}
.ws3f{word-spacing:-0.358654px;}
.wse0{word-spacing:-0.322790px;}
.wsa4{word-spacing:-0.303581px;}
.ws17{word-spacing:-0.298878px;}
.ws6a{word-spacing:-0.268992px;}
.wsaa{word-spacing:-0.252553px;}
.wse{word-spacing:-0.239102px;}
.ws8a{word-spacing:-0.215194px;}
.wsa1{word-spacing:-0.203589px;}
.ws29{word-spacing:-0.179327px;}
.ws7d{word-spacing:-0.161395px;}
.wsf{word-spacing:-0.119551px;}
.wsa6{word-spacing:-0.095520px;}
.ws19{word-spacing:-0.059776px;}
.ws69{word-spacing:-0.053798px;}
.wsb{word-spacing:-0.047821px;}
.wsad{word-spacing:-0.035370px;}
.wsb0{word-spacing:-0.026528px;}
.wsae{word-spacing:-0.022106px;}
.wsd4{word-spacing:-0.007267px;}
.wsc8{word-spacing:-0.005818px;}
.wscf{word-spacing:-0.002429px;}
.ws71{word-spacing:-0.001500px;}
.ws3{word-spacing:-0.000970px;}
.wsc5{word-spacing:-0.000806px;}
.ws0{word-spacing:0.000000px;}
.ws1f{word-spacing:0.002741px;}
.wsa7{word-spacing:0.003980px;}
.wsb1{word-spacing:0.004421px;}
.wsa2{word-spacing:0.008310px;}
.wsb2{word-spacing:0.044213px;}
.wsbf{word-spacing:0.053798px;}
.wsaf{word-spacing:0.057477px;}
.ws1d{word-spacing:0.059776px;}
.wsa9{word-spacing:0.084184px;}
.ws85{word-spacing:0.107597px;}
.ws13{word-spacing:0.119551px;}
.wsd1{word-spacing:0.132656px;}
.wsab{word-spacing:0.141583px;}
.wsa{word-spacing:0.143462px;}
.ws7c{word-spacing:0.161395px;}
.ws11{word-spacing:0.179327px;}
.ws2{word-spacing:0.209214px;}
.wsd2{word-spacing:0.215194px;}
.wsa8{word-spacing:0.233420px;}
.ws35{word-spacing:0.239102px;}
.ws89{word-spacing:0.268992px;}
.ws3e{word-spacing:0.298878px;}
.ws88{word-spacing:0.322790px;}
.ws3d{word-spacing:0.358654px;}
.ws4c{word-spacing:0.418429px;}
.wsbe{word-spacing:0.484186px;}
.ws6c{word-spacing:0.537980px;}
.ws60{word-spacing:0.568500px;}
.wsc6{word-spacing:0.591782px;}
.ws23{word-spacing:0.657532px;}
.ws76{word-spacing:0.717307px;}
.ws40{word-spacing:0.742500px;}
.ws70{word-spacing:0.748500px;}
.ws68{word-spacing:0.806976px;}
.ws24{word-spacing:0.836858px;}
.wsda{word-spacing:0.860774px;}
.wsb3{word-spacing:1.022170px;}
.ws33{word-spacing:1.075961px;}
.ws10{word-spacing:1.135736px;}
.wsd{word-spacing:1.195512px;}
.wsc4{word-spacing:1.237363px;}
.ws54{word-spacing:1.255288px;}
.ws75{word-spacing:1.315063px;}
.ws67{word-spacing:1.434614px;}
.ws62{word-spacing:1.494390px;}
.ws7e{word-spacing:1.506355px;}
.ws14{word-spacing:1.613941px;}
.ws1c{word-spacing:1.673717px;}
.wsd0{word-spacing:1.721549px;}
.ws30{word-spacing:1.733492px;}
.wsdb{word-spacing:1.775347px;}
.ws5f{word-spacing:1.853044px;}
.ws44{word-spacing:1.972595px;}
.ws32{word-spacing:2.032370px;}
.ws39{word-spacing:2.092146px;}
.ws28{word-spacing:2.151922px;}
.ws74{word-spacing:2.211697px;}
.wsdd{word-spacing:2.313331px;}
.ws92{word-spacing:2.331248px;}
.ws56{word-spacing:2.391024px;}
.ws53{word-spacing:2.450800px;}
.ws5{word-spacing:2.510252px;}
.wsb7{word-spacing:2.510575px;}
.ws45{word-spacing:2.630126px;}
.ws5c{word-spacing:2.689902px;}
.wsa0{word-spacing:2.689920px;}
.ws7b{word-spacing:2.743718px;}
.ws72{word-spacing:2.749678px;}
.ws2a{word-spacing:2.809453px;}
.ws2e{word-spacing:2.869229px;}
.wsc{word-spacing:2.869236px;}
.ws2f{word-spacing:2.929004px;}
.wsd7{word-spacing:2.958912px;}
.wscc{word-spacing:3.012710px;}
.ws8d{word-spacing:3.048556px;}
.ws5b{word-spacing:3.168107px;}
.ws86{word-spacing:3.174106px;}
.wsde{word-spacing:3.219101px;}
.wsd6{word-spacing:3.219965px;}
.wscd{word-spacing:3.222134px;}
.wsc7{word-spacing:3.222739px;}
.wsdf{word-spacing:3.223565px;}
.wsce{word-spacing:3.224064px;}
.wsc9{word-spacing:3.224832px;}
.wsd9{word-spacing:3.225571px;}
.ws58{word-spacing:3.227882px;}
.wscb{word-spacing:3.227904px;}
.ws16{word-spacing:3.287658px;}
.ws1a{word-spacing:3.365890px;}
.ws2b{word-spacing:3.466985px;}
.wsbd{word-spacing:3.496896px;}
.ws77{word-spacing:3.586536px;}
.ws78{word-spacing:3.712090px;}
.ws22{word-spacing:3.765863px;}
.wsbc{word-spacing:3.825638px;}
.ws48{word-spacing:3.945190px;}
.ws4e{word-spacing:4.004965px;}
.ws57{word-spacing:4.064741px;}
.ws47{word-spacing:4.184292px;}
.ws36{word-spacing:4.244068px;}
.ws1b{word-spacing:4.303872px;}
.ws46{word-spacing:4.363619px;}
.ws42{word-spacing:4.423394px;}
.wsb8{word-spacing:4.483170px;}
.ws5a{word-spacing:4.542946px;}
.ws2c{word-spacing:4.662497px;}
.ws3a{word-spacing:4.841824px;}
.ws91{word-spacing:4.901599px;}
.ws4b{word-spacing:4.944854px;}
.wsb9{word-spacing:5.021150px;}
.ws4f{word-spacing:5.080926px;}
.ws25{word-spacing:5.140702px;}
.ws61{word-spacing:5.200477px;}
.ws21{word-spacing:5.260253px;}
.ws7a{word-spacing:5.272243px;}
.ws87{word-spacing:5.326042px;}
.wsc3{word-spacing:5.433638px;}
.wsd5{word-spacing:5.487437px;}
.ws26{word-spacing:5.618906px;}
.ws27{word-spacing:5.678682px;}
.ws59{word-spacing:5.738458px;}
.ws4d{word-spacing:5.858009px;}
.ws63{word-spacing:5.917784px;}
.ws2d{word-spacing:6.156887px;}
.ws31{word-spacing:6.336214px;}
.ws6f{word-spacing:6.575316px;}
.wsbb{word-spacing:6.933970px;}
.ws73{word-spacing:7.173072px;}
.ws8e{word-spacing:7.232848px;}
.wsc1{word-spacing:7.262784px;}
.ws43{word-spacing:7.471950px;}
.ws3b{word-spacing:8.249033px;}
.wsd3{word-spacing:8.338752px;}
.wsdc{word-spacing:9.026333px;}
.wsd8{word-spacing:12.481229px;}
.wsc2{word-spacing:14.296576px;}
.ws51{word-spacing:14.884124px;}
.wsc0{word-spacing:18.008234px;}
.ws1{word-spacing:28.492652px;}
.ws7{word-spacing:40.042186px;}
.ws8{word-spacing:54.988186px;}
.ws6b{word-spacing:68.646758px;}
.ws9c{word-spacing:91.705884px;}
.ws99{word-spacing:95.569991px;}
.ws94{word-spacing:98.594488px;}
.ws93{word-spacing:99.591487px;}
.ws9e{word-spacing:106.361651px;}
.ws83{word-spacing:276.577574px;}
.ws81{word-spacing:547.022131px;}
.ws82{word-spacing:583.282253px;}
.ws80{word-spacing:631.485619px;}
.ws7f{word-spacing:667.745741px;}
.wsb6{word-spacing:944.470800px;}
.wsb5{word-spacing:978.685200px;}
.wsac{word-spacing:1372.118362px;}
.wsa5{word-spacing:1406.321960px;}
._2d{margin-left:-20.785771px;}
._4{margin-left:-11.943245px;}
._25{margin-left:-7.878428px;}
._a{margin-left:-6.850292px;}
._7{margin-left:-5.260266px;}
._24{margin-left:-4.160513px;}
._2{margin-left:-3.096367px;}
._1{margin-left:-1.506341px;}
._15{width:1.040045px;}
._5{width:3.002363px;}
._2c{width:9.994602px;}
._0{width:12.971268px;}
._29{width:14.238544px;}
._8{width:15.242800px;}
._17{width:16.623706px;}
._9{width:18.052231px;}
._13{width:19.415098px;}
._14{width:20.562806px;}
._e{width:21.638767px;}
._2f{width:22.816646px;}
._b{width:23.922191px;}
._3{width:25.944936px;}
._11{width:27.795654px;}
._10{width:29.959526px;}
._16{width:31.693019px;}
._12{width:33.366736px;}
._f{width:35.387168px;}
._22{width:38.196595px;}
._6{width:54.400717px;}
._2e{width:61.868160px;}
._21{width:76.985496px;}
._2b{width:88.767360px;}
._26{width:108.734525px;}
._1f{width:125.888242px;}
._1e{width:174.360600px;}
._19{width:225.522893px;}
._1d{width:229.234982px;}
._1b{width:234.507226px;}
._20{width:237.466138px;}
._1c{width:637.188235px;}
._1a{width:685.875787px;}
._23{width:775.396339px;}
._18{width:1143.915379px;}
._27{width:1436.205600px;}
._c{width:1775.231186px;}
._28{width:2525.249186px;}
._2a{width:2526.253442px;}
._d{width:2549.159186px;}
.fc4{color:transparent;}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(255,192,0);}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:31.194600px;}
.fs12{font-size:32.444999px;}
.fsf{font-size:33.443400px;}
.fsd{font-size:33.871199px;}
.fs4{font-size:35.865600px;}
.fs16{font-size:36.043800px;}
.fs15{font-size:38.265600px;}
.fs13{font-size:39.799799px;}
.fs10{font-size:41.024400px;}
.fse{font-size:41.548800px;}
.fs0{font-size:41.842800px;}
.fsb{font-size:43.600200px;}
.fs17{font-size:44.212800px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs7{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y122{bottom:2.032286px;}
.y139{bottom:4.260596px;}
.y1b0{bottom:6.389094px;}
.y1a4{bottom:7.396941px;}
.y1af{bottom:22.139094px;}
.y19b{bottom:41.686942px;}
.y42{bottom:45.921000px;}
.y191{bottom:58.696960px;}
.y192{bottom:70.037240px;}
.yb3{bottom:96.990000px;}
.yb2{bottom:99.720000px;}
.y16{bottom:100.260000px;}
.y193{bottom:100.367197px;}
.yd7{bottom:101.388000px;}
.y1fb{bottom:103.912500px;}
.y109{bottom:105.693000px;}
.y41{bottom:108.444000px;}
.y1ab{bottom:109.228500px;}
.y1c7{bottom:110.037000px;}
.y1d2{bottom:114.882000px;}
.y75{bottom:116.407500px;}
.yb1{bottom:117.880500px;}
.y15{bottom:118.147500px;}
.yb0{bottom:120.610500px;}
.yd6{bottom:122.280000px;}
.y1fa{bottom:123.063000px;}
.y108{bottom:126.583500px;}
.y1aa{bottom:128.461500px;}
.y40{bottom:129.336000px;}
.y194{bottom:130.697153px;}
.y1c6{bottom:130.927500px;}
.y1d1{bottom:135.774000px;}
.y14{bottom:136.035000px;}
.y74{bottom:137.298000px;}
.yaf{bottom:138.772500px;}
.yad{bottom:141.502500px;}
.y1f9{bottom:142.213500px;}
.yd5{bottom:143.170500px;}
.yae{bottom:146.928000px;}
.y107{bottom:147.475500px;}
.y1a9{bottom:147.694500px;}
.y3f{bottom:150.228000px;}
.y1c5{bottom:151.819500px;}
.y13{bottom:153.924000px;}
.y11e{bottom:156.636000px;}
.y1d0{bottom:156.666000px;}
.y73{bottom:158.190000px;}
.y195{bottom:161.027110px;}
.y1f8{bottom:161.364000px;}
.yac{bottom:162.394500px;}
.y19a{bottom:162.646941px;}
.yd4{bottom:164.062500px;}
.y1a3{bottom:165.617095px;}
.y1a8{bottom:166.927500px;}
.y106{bottom:168.367500px;}
.y3e{bottom:171.118500px;}
.y12{bottom:171.811500px;}
.y1c4{bottom:172.711500px;}
.y11d{bottom:177.528000px;}
.y1cf{bottom:177.556500px;}
.y72{bottom:179.082000px;}
.y1f7{bottom:180.514500px;}
.yab{bottom:180.556500px;}
.yaa{bottom:183.285000px;}
.yd3{bottom:184.954500px;}
.y1a7{bottom:186.159000px;}
.y105{bottom:189.258000px;}
.y11{bottom:189.699000px;}
.y196{bottom:191.357067px;}
.y3d{bottom:192.010500px;}
.y1c3{bottom:193.602000px;}
.y137{bottom:193.825500px;}
.y11c{bottom:198.418500px;}
.y1ce{bottom:198.448500px;}
.y1f6{bottom:199.665000px;}
.y71{bottom:199.972500px;}
.ya9{bottom:201.447000px;}
.ya8{bottom:204.177000px;}
.y1a6{bottom:205.392000px;}
.yd2{bottom:205.845000px;}
.y10{bottom:207.586500px;}
.y104{bottom:210.150000px;}
.y159{bottom:212.272500px;}
.y3c{bottom:212.902500px;}
.y1c2{bottom:214.494000px;}
.y136{bottom:214.716000px;}
.y1f5{bottom:218.815500px;}
.y11b{bottom:219.310500px;}
.y1cd{bottom:219.340500px;}
.y70{bottom:220.864500px;}
.y197{bottom:221.687023px;}
.y1a5{bottom:224.625000px;}
.ya7{bottom:225.069000px;}
.yf{bottom:225.475500px;}
.y1a2{bottom:225.647079px;}
.yd1{bottom:226.737000px;}
.y103{bottom:231.042000px;}
.y158{bottom:233.164500px;}
.y3b{bottom:233.793000px;}
.y1c1{bottom:235.386000px;}
.y135{bottom:235.608000px;}
.y1f4{bottom:237.966000px;}
.y1a1{bottom:239.237121px;}
.y1cc{bottom:240.232500px;}
.y6f{bottom:241.756500px;}
.ya6{bottom:245.961000px;}
.yd0{bottom:247.629000px;}
.y15a{bottom:250.044000px;}
.y102{bottom:251.932500px;}
.y198{bottom:252.016980px;}
.ye{bottom:252.330000px;}
.y1a0{bottom:252.827117px;}
.y157{bottom:254.055000px;}
.y1c0{bottom:256.276500px;}
.y134{bottom:256.500000px;}
.y1f3{bottom:257.116500px;}
.y3a{bottom:259.168500px;}
.y1cb{bottom:261.123000px;}
.y6e{bottom:262.647000px;}
.y1ae{bottom:263.338961px;}
.ya5{bottom:264.121500px;}
.y19f{bottom:266.416930px;}
.ya4{bottom:266.851500px;}
.ycf{bottom:268.521000px;}
.y11a{bottom:269.823000px;}
.y101{bottom:270.094500px;}
.yd{bottom:270.217500px;}
.y100{bottom:272.824500px;}
.y156{bottom:274.947000px;}
.y1f2{bottom:276.267000px;}
.y1bf{bottom:277.168500px;}
.y133{bottom:277.390500px;}
.y1ad{bottom:279.901149px;}
.y19e{bottom:280.006972px;}
.y1ca{bottom:282.015000px;}
.y199{bottom:282.346936px;}
.y6d{bottom:283.539000px;}
.yc{bottom:288.105000px;}
.yce{bottom:289.411500px;}
.y119{bottom:293.464500px;}
.y19d{bottom:293.596969px;}
.yff{bottom:293.716500px;}
.ya3{bottom:294.033000px;}
.y1f1{bottom:295.417500px;}
.y155{bottom:295.839000px;}
.y1be{bottom:298.060500px;}
.y132{bottom:298.282500px;}
.y1c9{bottom:302.907000px;}
.y6c{bottom:304.431000px;}
.yb{bottom:305.994000px;}
.y19c{bottom:307.096969px;}
.yfe{bottom:311.878500px;}
.y1f0{bottom:314.568000px;}
.yfd{bottom:314.608500px;}
.ycd{bottom:314.787000px;}
.ya2{bottom:314.925000px;}
.y154{bottom:316.729500px;}
.y118{bottom:317.104500px;}
.y1bd{bottom:318.951000px;}
.y131{bottom:319.174500px;}
.y190{bottom:323.836928px;}
.ya{bottom:323.881500px;}
.y6b{bottom:325.323000px;}
.y1c8{bottom:328.281000px;}
.y1ef{bottom:333.718500px;}
.yfc{bottom:335.499000px;}
.ya1{bottom:335.815500px;}
.y153{bottom:337.621500px;}
.y39{bottom:338.380500px;}
.y184{bottom:339.586928px;}
.y1bc{bottom:339.843000px;}
.y130{bottom:340.065000px;}
.y117{bottom:340.746000px;}
.y9{bottom:341.769000px;}
.y6a{bottom:346.213500px;}
.ycc{bottom:350.128500px;}
.y1ee{bottom:352.870500px;}
.y181{bottom:356.326934px;}
.yfb{bottom:356.391000px;}
.ya0{bottom:356.707500px;}
.y152{bottom:358.513500px;}
.y38{bottom:359.271000px;}
.y8{bottom:359.658000px;}
.y1bb{bottom:360.735000px;}
.y18d{bottom:360.826934px;}
.y12f{bottom:360.957000px;}
.y116{bottom:364.386000px;}
.y69{bottom:367.105500px;}
.ycb{bottom:371.020500px;}
.y177{bottom:371.626952px;}
.y1ed{bottom:372.021000px;}
.y185{bottom:375.496932px;}
.yfa{bottom:377.283000px;}
.y7{bottom:377.545500px;}
.y9f{bottom:377.599500px;}
.y151{bottom:379.404000px;}
.y1ba{bottom:381.627000px;}
.y178{bottom:381.796837px;}
.y12e{bottom:381.849000px;}
.y186{bottom:385.396538px;}
.y68{bottom:387.997500px;}
.y115{bottom:388.027500px;}
.y1ec{bottom:391.171500px;}
.yc9{bottom:391.912500px;}
.yca{bottom:397.336500px;}
.y37{bottom:398.095500px;}
.yf9{bottom:398.173500px;}
.y150{bottom:400.296000px;}
.y6{bottom:401.410500px;}
.y1b9{bottom:402.517500px;}
.y12d{bottom:402.739500px;}
.y9e{bottom:404.779500px;}
.y67{bottom:408.888000px;}
.y179{bottom:409.156893px;}
.y1eb{bottom:410.322000px;}
.y114{bottom:411.667500px;}
.yc8{bottom:412.803000px;}
.y36{bottom:418.987500px;}
.yf8{bottom:419.065500px;}
.y5{bottom:419.299500px;}
.y14f{bottom:421.188000px;}
.y187{bottom:422.116482px;}
.y9d{bottom:422.941500px;}
.y1b8{bottom:423.409500px;}
.y12c{bottom:423.631500px;}
.y9c{bottom:425.671500px;}
.y1ea{bottom:429.472500px;}
.y66{bottom:429.780000px;}
.yc7{bottom:433.695000px;}
.y17a{bottom:436.426915px;}
.y4{bottom:437.187000px;}
.y35{bottom:439.878000px;}
.yf7{bottom:439.957500px;}
.y14e{bottom:442.078500px;}
.y9b{bottom:443.833500px;}
.y1b7{bottom:444.301500px;}
.y12b{bottom:444.523500px;}
.y113{bottom:446.275500px;}
.y9a{bottom:446.563500px;}
.y1e9{bottom:448.623000px;}
.y65{bottom:450.672000px;}
.y18c{bottom:451.996932px;}
.yc6{bottom:454.587000px;}
.y3{bottom:455.074500px;}
.y188{bottom:458.836425px;}
.y34{bottom:460.770000px;}
.yf6{bottom:460.848000px;}
.y14d{bottom:462.970500px;}
.y17b{bottom:463.786971px;}
.y99{bottom:464.725500px;}
.y1b6{bottom:465.192000px;}
.y180{bottom:465.226943px;}
.y12a{bottom:465.415500px;}
.y112{bottom:465.508500px;}
.y98{bottom:467.454000px;}
.y1e8{bottom:467.773500px;}
.y64{bottom:471.562500px;}
.yc5{bottom:475.477500px;}
.y2{bottom:478.941000px;}
.y33{bottom:481.662000px;}
.yf5{bottom:481.740000px;}
.y14c{bottom:483.862500px;}
.y111{bottom:484.741500px;}
.y97{bottom:485.616000px;}
.y1b5{bottom:486.084000px;}
.y1e7{bottom:486.924000px;}
.y96{bottom:488.346000px;}
.y17c{bottom:491.056993px;}
.y63{bottom:492.454500px;}
.yc4{bottom:493.639500px;}
.y189{bottom:495.556369px;}
.yc3{bottom:496.369500px;}
.y1{bottom:496.828500px;}
.y129{bottom:501.042000px;}
.y32{bottom:502.554000px;}
.yf4{bottom:502.632000px;}
.y110{bottom:503.974500px;}
.y14b{bottom:504.754500px;}
.y1e6{bottom:506.074500px;}
.y95{bottom:509.238000px;}
.y1b4{bottom:511.458000px;}
.y62{bottom:513.346500px;}
.yc2{bottom:517.261500px;}
.y17d{bottom:518.327014px;}
.y128{bottom:520.275000px;}
.y10f{bottom:523.207500px;}
.y31{bottom:523.444500px;}
.yf3{bottom:523.522500px;}
.y1e5{bottom:525.225000px;}
.y14a{bottom:525.645000px;}
.y94{bottom:530.130000px;}
.y18a{bottom:532.365995px;}
.y61{bottom:534.237000px;}
.y127{bottom:539.508000px;}
.y10e{bottom:542.440500px;}
.yc1{bottom:542.635500px;}
.y30{bottom:544.336500px;}
.yf2{bottom:544.414500px;}
.y17e{bottom:545.597036px;}
.y149{bottom:546.537000px;}
.y1b3{bottom:547.086000px;}
.y1e4{bottom:548.859000px;}
.y60{bottom:555.129000px;}
.y93{bottom:555.504000px;}
.y18f{bottom:558.736983px;}
.y126{bottom:558.741000px;}
.y217{bottom:560.845500px;}
.y2f{bottom:565.228500px;}
.yf1{bottom:565.306500px;}
.y1b2{bottom:566.319000px;}
.y148{bottom:567.429000px;}
.y18b{bottom:569.085939px;}
.y18e{bottom:570.526961px;}
.y10d{bottom:572.133000px;}
.y17f{bottom:572.957092px;}
.y5f{bottom:576.021000px;}
.y125{bottom:577.974000px;}
.yc0{bottom:577.978500px;}
.y216{bottom:579.996000px;}
.y183{bottom:582.227126px;}
.y1b1{bottom:585.552000px;}
.y2e{bottom:586.119000px;}
.y1e3{bottom:587.683500px;}
.y147{bottom:588.319500px;}
.yf0{bottom:590.680500px;}
.y92{bottom:590.847000px;}
.y10c{bottom:591.366000px;}
.y182{bottom:594.466994px;}
.y5e{bottom:596.913000px;}
.y124{bottom:597.207000px;}
.ybe{bottom:598.870500px;}
.y215{bottom:599.146500px;}
.ybf{bottom:604.294500px;}
.y2d{bottom:607.011000px;}
.y1ac{bottom:607.981500px;}
.y146{bottom:609.211500px;}
.y10b{bottom:610.599000px;}
.y176{bottom:610.666976px;}
.y91{bottom:611.737500px;}
.y1e2{bottom:616.147500px;}
.y123{bottom:616.440000px;}
.y5d{bottom:617.803500px;}
.ybc{bottom:619.761000px;}
.ybd{bottom:625.186500px;}
.y168{bottom:626.416976px;}
.y2c{bottom:627.903000px;}
.yef{bottom:629.505000px;}
.y10a{bottom:629.832000px;}
.y145{bottom:630.103500px;}
.y90{bottom:632.629500px;}
.y1e1{bottom:635.647500px;}
.y5c{bottom:638.695500px;}
.y121{bottom:638.869500px;}
.ybb{bottom:640.653000px;}
.y214{bottom:642.177000px;}
.y165{bottom:643.786910px;}
.y173{bottom:645.316939px;}
.y2b{bottom:648.793500px;}
.yee{bottom:650.397000px;}
.y8f{bottom:650.791500px;}
.y144{bottom:650.994000px;}
.y8e{bottom:653.521500px;}
.y1e0{bottom:655.146000px;}
.y5b{bottom:659.587500px;}
.y15b{bottom:659.716994px;}
.y169{bottom:661.157119px;}
.y213{bottom:661.327500px;}
.yba{bottom:661.545000px;}
.y2a{bottom:669.685500px;}
.y15c{bottom:670.427067px;}
.yed{bottom:671.289000px;}
.y16a{bottom:671.686773px;}
.y143{bottom:671.886000px;}
.y8d{bottom:674.412000px;}
.y5a{bottom:680.478000px;}
.yb9{bottom:682.435500px;}
.y1df{bottom:683.610000px;}
.y29{bottom:690.577500px;}
.yeb{bottom:692.179500px;}
.y142{bottom:692.778000px;}
.y8b{bottom:695.304000px;}
.yec{bottom:697.605000px;}
.y15d{bottom:698.957624px;}
.y212{bottom:699.628500px;}
.y16b{bottom:699.766688px;}
.y8c{bottom:700.728000px;}
.y59{bottom:701.370000px;}
.y1de{bottom:703.110000px;}
.yb8{bottom:707.811000px;}
.yea{bottom:710.341500px;}
.y28{bottom:711.468000px;}
.ye9{bottom:713.071500px;}
.y141{bottom:713.668500px;}
.y8a{bottom:716.196000px;}
.y211{bottom:718.779000px;}
.y58{bottom:722.262000px;}
.y15e{bottom:727.397576px;}
.y16c{bottom:727.936899px;}
.y1dd{bottom:731.574000px;}
.y27{bottom:732.360000px;}
.ye8{bottom:733.963500px;}
.y140{bottom:734.560500px;}
.y89{bottom:737.086500px;}
.y210{bottom:737.929500px;}
.y57{bottom:743.152500px;}
.y1dc{bottom:751.074000px;}
.ye7{bottom:754.854000px;}
.y13f{bottom:755.452500px;}
.y15f{bottom:755.927286px;}
.y16d{bottom:756.107110px;}
.y20f{bottom:757.081500px;}
.y164{bottom:757.456954px;}
.y172{bottom:757.636947px;}
.y88{bottom:757.978500px;}
.y26{bottom:762.217500px;}
.y56{bottom:764.044500px;}
.yb7{bottom:769.468500px;}
.y1db{bottom:770.572500px;}
.ye6{bottom:775.746000px;}
.y87{bottom:776.140500px;}
.y20e{bottom:776.232000px;}
.y13e{bottom:776.344500px;}
.y86{bottom:778.870500px;}
.y16e{bottom:784.187025px;}
.y160{bottom:784.367238px;}
.y55{bottom:784.936500px;}
.y1da{bottom:790.071000px;}
.y20d{bottom:795.382500px;}
.ye5{bottom:796.638000px;}
.y13d{bottom:797.235000px;}
.y85{bottom:799.762500px;}
.y25{bottom:802.237500px;}
.y54{bottom:805.827000px;}
.y120{bottom:808.033500px;}
.y16f{bottom:812.357236px;}
.y161{bottom:812.896949px;}
.y20c{bottom:814.533000px;}
.ye4{bottom:817.528500px;}
.y13c{bottom:818.127000px;}
.y1d9{bottom:818.536500px;}
.y84{bottom:820.653000px;}
.y24{bottom:822.717000px;}
.y53{bottom:826.719000px;}
.y11f{bottom:827.266500px;}
.y20b{bottom:833.683500px;}
.y23{bottom:834.517500px;}
.y1d8{bottom:838.035000px;}
.y22{bottom:838.857000px;}
.y170{bottom:840.527447px;}
.y162{bottom:841.426660px;}
.ye3{bottom:842.904000px;}
.y83{bottom:846.028500px;}
.y52{bottom:847.611000px;}
.y21{bottom:850.656000px;}
.y20a{bottom:852.834000px;}
.y13b{bottom:853.755000px;}
.y1d7{bottom:857.533500px;}
.y167{bottom:859.966994px;}
.yb6{bottom:865.773000px;}
.y20{bottom:866.796000px;}
.y51{bottom:868.503000px;}
.y171{bottom:868.607361px;}
.y163{bottom:869.956370px;}
.y209{bottom:871.984500px;}
.y166{bottom:872.656936px;}
.y13a{bottom:872.988000px;}
.y175{bottom:876.526961px;}
.y1d6{bottom:877.032000px;}
.y82{bottom:881.370000px;}
.ye2{bottom:886.945500px;}
.y1f{bottom:887.275500px;}
.y208{bottom:888.511500px;}
.y174{bottom:889.126906px;}
.y50{bottom:889.393500px;}
.y207{bottom:891.135000px;}
.y138{bottom:895.417500px;}
.y1d5{bottom:896.530500px;}
.y1e{bottom:899.076000px;}
.y81{bottom:902.262000px;}
.ye1{bottom:903.384000px;}
.y4f{bottom:910.285500px;}
.y1d{bottom:915.214500px;}
.y1d4{bottom:916.029000px;}
.ye0{bottom:919.822500px;}
.y80{bottom:923.154000px;}
.y206{bottom:929.436000px;}
.y4e{bottom:931.177500px;}
.y1d3{bottom:935.529000px;}
.y1c{bottom:935.694000px;}
.ydf{bottom:936.261000px;}
.yb5{bottom:936.601500px;}
.y7f{bottom:944.044500px;}
.y205{bottom:948.586500px;}
.y4d{bottom:952.068000px;}
.yde{bottom:952.699500px;}
.y7e{bottom:964.936500px;}
.y204{bottom:967.737000px;}
.ydd{bottom:969.138000px;}
.y4c{bottom:972.960000px;}
.y1b{bottom:980.370000px;}
.y7d{bottom:985.828500px;}
.y203{bottom:986.887500px;}
.ydc{bottom:992.778000px;}
.y4b{bottom:993.852000px;}
.y1a{bottom:1001.262000px;}
.y202{bottom:1006.038000px;}
.y7c{bottom:1006.719000px;}
.y4a{bottom:1014.742500px;}
.ydb{bottom:1024.398000px;}
.y201{bottom:1025.188500px;}
.y7b{bottom:1027.611000px;}
.y49{bottom:1035.634500px;}
.y19{bottom:1040.086500px;}
.yda{bottom:1043.631000px;}
.y200{bottom:1044.339000px;}
.y7a{bottom:1048.503000px;}
.y48{bottom:1056.526500px;}
.yd9{bottom:1062.864000px;}
.y1ff{bottom:1063.489500px;}
.y78{bottom:1069.393500px;}
.y18{bottom:1071.424500px;}
.y79{bottom:1074.819000px;}
.y47{bottom:1077.417000px;}
.yd8{bottom:1082.097000px;}
.y1fe{bottom:1082.640000px;}
.y77{bottom:1090.285500px;}
.y46{bottom:1098.309000px;}
.y1fd{bottom:1101.790500px;}
.y17{bottom:1102.761000px;}
.y76{bottom:1115.661000px;}
.y45{bottom:1119.201000px;}
.y1fc{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.yb4{bottom:1145.517000px;}
.y43{bottom:1200.196500px;}
.h20{height:22.725754px;}
.h1e{height:23.636689px;}
.h1b{height:24.364039px;}
.h19{height:24.675697px;}
.h22{height:26.258471px;}
.he{height:27.855430px;}
.h21{height:27.877087px;}
.h1f{height:28.994775px;}
.h1c{height:29.886916px;}
.hf{height:30.106714px;}
.h1a{height:30.268950px;}
.h23{height:32.209716px;}
.h6{height:32.565965px;}
.h12{height:35.652888px;}
.h2{height:37.993262px;}
.h13{height:38.896243px;}
.hb{height:39.614278px;}
.hc{height:41.250077px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.h26{height:44.268047px;}
.h14{height:47.259727px;}
.h11{height:48.848947px;}
.h1d{height:50.229492px;}
.h10{height:50.534278px;}
.ha{height:51.861658px;}
.h24{height:52.751292px;}
.h9{height:54.276245px;}
.h5{height:54.547601px;}
.h16{height:55.922168px;}
.hd{height:62.946077px;}
.h4{height:77.792486px;}
.h15{height:152.934000px;}
.h17{height:259.620000px;}
.h25{height:547.056000px;}
.h18{height:904.995000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:306.394500px;}
.w2{width:404.409000px;}
.w5{width:538.207500px;}
.w4{width:682.163700px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa4{left:11.080199px;}
.xa3{left:15.760543px;}
.x93{left:20.170195px;}
.x92{left:24.490309px;}
.x9c{left:29.170103px;}
.xa2{left:30.250197px;}
.x91{left:38.170195px;}
.x9b{left:42.310198px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x84{left:62.541000px;}
.xb7{left:85.848000px;}
.x90{left:105.162300px;}
.xac{left:122.901007px;}
.xad{left:127.401007px;}
.xa8{left:128.750998px;}
.xa9{left:133.250998px;}
.xaa{left:139.100989px;}
.xa5{left:141.490191px;}
.x94{left:142.750208px;}
.xae{left:144.951003px;}
.xa1{left:148.510203px;}
.xa7{left:151.390200px;}
.x9a{left:154.360194px;}
.x9d{left:198.370211px;}
.xa6{left:205.120211px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x95{left:251.920206px;}
.x76{left:258.556500px;}
.x5f{left:267.484500px;}
.x4{left:269.914500px;}
.x27{left:273.565500px;}
.x2b{left:278.946000px;}
.x6{left:281.479500px;}
.x28{left:282.796500px;}
.x61{left:286.288500px;}
.x38{left:289.849500px;}
.x53{left:293.989500px;}
.x2f{left:300.279000px;}
.x8c{left:303.183618px;}
.x54{left:304.840500px;}
.x30{left:309.510000px;}
.x7{left:311.475000px;}
.x8{left:318.946500px;}
.x19{left:322.236000px;}
.x47{left:323.824500px;}
.x9{left:326.359500px;}
.xa{left:333.831000px;}
.x4d{left:334.974000px;}
.x1a{left:337.180500px;}
.x24{left:338.938500px;}
.x4e{left:341.779500px;}
.x35{left:343.155000px;}
.xb{left:352.867500px;}
.x66{left:354.241500px;}
.xc{left:360.340500px;}
.x55{left:362.361000px;}
.x67{left:363.471000px;}
.x7b{left:364.884000px;}
.x81{left:366.022500px;}
.x6b{left:370.411500px;}
.x56{left:371.592000px;}
.x82{left:376.434000px;}
.x7c{left:380.883000px;}
.x6c{left:382.702500px;}
.x7d{left:391.914000px;}
.xaf{left:393.170996px;}
.x98{left:394.390200px;}
.xab{left:396.051016px;}
.x97{left:398.709966px;}
.x7e{left:401.145000px;}
.x85{left:402.535173px;}
.xa0{left:405.730196px;}
.x5b{left:407.373000px;}
.x9f{left:409.780086px;}
.x96{left:412.210207px;}
.x5c{left:414.178500px;}
.x40{left:415.627500px;}
.x9e{left:420.220202px;}
.x41{left:422.053500px;}
.x7a{left:424.434000px;}
.x6e{left:426.132000px;}
.x89{left:427.585500px;}
.x60{left:428.593500px;}
.x59{left:434.902500px;}
.x6f{left:438.423000px;}
.xf{left:439.942500px;}
.x48{left:442.821000px;}
.x5a{left:444.132000px;}
.x83{left:445.401000px;}
.x10{left:447.414000px;}
.x49{left:449.245500px;}
.x11{left:451.225500px;}
.x70{left:457.162500px;}
.x12{left:458.697000px;}
.x42{left:460.336500px;}
.x71{left:463.968000px;}
.x43{left:486.219000px;}
.x36{left:488.733000px;}
.x37{left:495.159000px;}
.x72{left:499.209000px;}
.x44{left:505.726500px;}
.x86{left:507.201000px;}
.x79{left:508.660500px;}
.x73{left:510.271500px;}
.x45{left:512.152500px;}
.x57{left:515.383500px;}
.x87{left:516.432000px;}
.x4f{left:521.269500px;}
.x65{left:526.599000px;}
.x15{left:530.245500px;}
.x58{left:533.184000px;}
.x1b{left:535.462500px;}
.x3c{left:537.927000px;}
.x1e{left:539.631000px;}
.x1c{left:542.934000px;}
.x16{left:545.188500px;}
.x25{left:546.780000px;}
.x2c{left:552.159000px;}
.x1f{left:557.076000px;}
.x26{left:561.724500px;}
.x99{left:565.300204px;}
.x62{left:571.708500px;}
.xb4{left:572.866500px;}
.x20{left:577.659000px;}
.x3d{left:583.777500px;}
.xb5{left:588.880500px;}
.x21{left:595.104000px;}
.x63{left:603.312000px;}
.x3e{left:604.585500px;}
.x64{left:609.738000px;}
.x3f{left:616.878000px;}
.x39{left:619.836000px;}
.x3a{left:626.262000px;}
.x22{left:630.210000px;}
.x46{left:631.756500px;}
.x29{left:632.791500px;}
.x2a{left:639.216000px;}
.x23{left:641.788500px;}
.x6a{left:645.510000px;}
.x17{left:653.737500px;}
.x68{left:654.829500px;}
.x69{left:664.059000px;}
.x8e{left:667.164000px;}
.x18{left:668.682000px;}
.x6d{left:670.818000px;}
.x4c{left:674.473500px;}
.x8f{left:682.108500px;}
.x1d{left:683.856000px;}
.x31{left:690.301500px;}
.x32{left:697.107000px;}
.x8d{left:701.313000px;}
.xb0{left:704.029500px;}
.x50{left:707.175000px;}
.x2d{left:716.442000px;}
.xb1{left:718.972500px;}
.xb2{left:722.634000px;}
.x2e{left:725.673000px;}
.x3b{left:730.647000px;}
.xb3{left:737.578500px;}
.x13{left:742.119000px;}
.x33{left:747.453000px;}
.x14{left:749.592000px;}
.x4a{left:752.629500px;}
.x34{left:754.258500px;}
.x74{left:755.875500px;}
.x7f{left:760.425000px;}
.x88{left:762.151500px;}
.x4b{left:763.183500px;}
.x75{left:766.938000px;}
.x80{left:771.228000px;}
.x51{left:773.601000px;}
.x77{left:778.714500px;}
.x52{left:782.830500px;}
.xb6{left:783.883500px;}
.x78{left:787.944000px;}
.x8a{left:793.645500px;}
.x8b{left:802.876500px;}
.xd{left:804.613500px;}
.xe{left:812.085000px;}
.x5d{left:820.833000px;}
.x5e{left:830.062500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.706667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.241600pt;}
.v4{vertical-align:9.706667pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls3d{letter-spacing:-0.302400pt;}
.ls49{letter-spacing:-0.297600pt;}
.ls39{letter-spacing:-0.251181pt;}
.ls34{letter-spacing:-0.211065pt;}
.ls3e{letter-spacing:-0.179418pt;}
.ls38{letter-spacing:-0.144200pt;}
.ls35{letter-spacing:-0.094812pt;}
.ls3a{letter-spacing:-0.085958pt;}
.ls30{letter-spacing:-0.075269pt;}
.ls3c{letter-spacing:-0.071429pt;}
.ls42{letter-spacing:-0.066810pt;}
.ls3b{letter-spacing:-0.061003pt;}
.ls45{letter-spacing:-0.055020pt;}
.ls3f{letter-spacing:-0.039300pt;}
.ls32{letter-spacing:-0.025853pt;}
.ls44{letter-spacing:-0.019650pt;}
.ls43{letter-spacing:-0.015720pt;}
.ls33{letter-spacing:-0.007386pt;}
.ls7{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000093pt;}
.ls16{letter-spacing:0.000129pt;}
.ls1{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.000544pt;}
.ls4f{letter-spacing:0.000711pt;}
.ls2e{letter-spacing:0.002485pt;}
.ls51{letter-spacing:0.003055pt;}
.ls2f{letter-spacing:0.003261pt;}
.ls41{letter-spacing:0.003930pt;}
.ls2b{letter-spacing:0.005344pt;}
.ls2c{letter-spacing:0.007860pt;}
.ls2a{letter-spacing:0.010204pt;}
.ls48{letter-spacing:0.010688pt;}
.ls31{letter-spacing:0.011080pt;}
.ls23{letter-spacing:0.011889pt;}
.ls24{letter-spacing:0.014400pt;}
.ls40{letter-spacing:0.015720pt;}
.ls22{letter-spacing:0.016000pt;}
.ls27{letter-spacing:0.021227pt;}
.ls2d{letter-spacing:0.023696pt;}
.ls47{letter-spacing:0.024000pt;}
.ls25{letter-spacing:0.028302pt;}
.ls29{letter-spacing:0.040817pt;}
.ls21{letter-spacing:0.058346pt;}
.ls28{letter-spacing:0.061225pt;}
.ls26{letter-spacing:0.109671pt;}
.ls37{letter-spacing:0.160451pt;}
.ls20{letter-spacing:0.180968pt;}
.ls36{letter-spacing:0.215150pt;}
.ls19{letter-spacing:0.462933pt;}
.lsd{letter-spacing:0.499733pt;}
.lse{letter-spacing:0.505067pt;}
.ls13{letter-spacing:0.570745pt;}
.ls14{letter-spacing:0.576078pt;}
.lsa{letter-spacing:0.637762pt;}
.lsf{letter-spacing:2.651733pt;}
.ls9{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls1a{letter-spacing:3.139507pt;}
.ls11{letter-spacing:3.163733pt;}
.lsc{letter-spacing:3.180587pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls1c{letter-spacing:10.679907pt;}
.ls1b{letter-spacing:11.689451pt;}
.ls4c{letter-spacing:11.727527pt;}
.ls4a{letter-spacing:11.954133pt;}
.ls4b{letter-spacing:11.959467pt;}
.ls50{letter-spacing:12.077254pt;}
.ls18{letter-spacing:12.554667pt;}
.ls12{letter-spacing:12.805262pt;}
.ls1e{letter-spacing:13.070931pt;}
.ls1d{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.923096pt;}
.ls4e{letter-spacing:13.989898pt;}
.ls4d{letter-spacing:15.281401pt;}
.ls1f{letter-spacing:15.408821pt;}
.ls17{letter-spacing:15.688840pt;}
.lsb{letter-spacing:15.729067pt;}
.ls10{letter-spacing:16.603733pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ws98{word-spacing:-13.365344pt;}
.ws52{word-spacing:-13.283467pt;}
.ws9{word-spacing:-12.760670pt;}
.ws79{word-spacing:-11.955200pt;}
.ws9f{word-spacing:-10.886174pt;}
.ws20{word-spacing:-10.626800pt;}
.ws97{word-spacing:-10.352735pt;}
.ws6{word-spacing:-10.095467pt;}
.ws96{word-spacing:-10.042773pt;}
.ws9b{word-spacing:-9.863275pt;}
.ws9a{word-spacing:-9.583792pt;}
.ws9d{word-spacing:-9.384426pt;}
.ws4{word-spacing:-9.298400pt;}
.ws95{word-spacing:-8.053171pt;}
.ws6e{word-spacing:-2.869229pt;}
.ws84{word-spacing:-2.550426pt;}
.ws8b{word-spacing:-2.444158pt;}
.ws8c{word-spacing:-2.337890pt;}
.ws12{word-spacing:-2.284756pt;}
.ws64{word-spacing:-1.965953pt;}
.ws3c{word-spacing:-1.912819pt;}
.ws6d{word-spacing:-1.859685pt;}
.ws5d{word-spacing:-1.806551pt;}
.wsca{word-spacing:-1.769370pt;}
.ws15{word-spacing:-1.753418pt;}
.ws37{word-spacing:-1.594016pt;}
.ws5e{word-spacing:-1.540882pt;}
.wsb4{word-spacing:-1.530266pt;}
.ws8f{word-spacing:-1.487748pt;}
.ws49{word-spacing:-1.434614pt;}
.ws34{word-spacing:-1.381481pt;}
.ws90{word-spacing:-1.328347pt;}
.wsba{word-spacing:-1.275213pt;}
.ws66{word-spacing:-1.009543pt;}
.ws38{word-spacing:-0.797008pt;}
.ws4a{word-spacing:-0.690740pt;}
.ws50{word-spacing:-0.637606pt;}
.ws18{word-spacing:-0.584473pt;}
.ws55{word-spacing:-0.531339pt;}
.ws65{word-spacing:-0.478205pt;}
.ws41{word-spacing:-0.425071pt;}
.wsa3{word-spacing:-0.371955pt;}
.ws1e{word-spacing:-0.371937pt;}
.ws3f{word-spacing:-0.318803pt;}
.wse0{word-spacing:-0.286925pt;}
.wsa4{word-spacing:-0.269849pt;}
.ws17{word-spacing:-0.265669pt;}
.ws6a{word-spacing:-0.239104pt;}
.wsaa{word-spacing:-0.224492pt;}
.wse{word-spacing:-0.212535pt;}
.ws8a{word-spacing:-0.191283pt;}
.wsa1{word-spacing:-0.180968pt;}
.ws29{word-spacing:-0.159402pt;}
.ws7d{word-spacing:-0.143462pt;}
.wsf{word-spacing:-0.106268pt;}
.wsa6{word-spacing:-0.084906pt;}
.ws19{word-spacing:-0.053134pt;}
.ws69{word-spacing:-0.047821pt;}
.wsb{word-spacing:-0.042507pt;}
.wsad{word-spacing:-0.031440pt;}
.wsb0{word-spacing:-0.023580pt;}
.wsae{word-spacing:-0.019650pt;}
.wsd4{word-spacing:-0.006460pt;}
.wsc8{word-spacing:-0.005171pt;}
.wscf{word-spacing:-0.002159pt;}
.ws71{word-spacing:-0.001333pt;}
.ws3{word-spacing:-0.000862pt;}
.wsc5{word-spacing:-0.000717pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.002436pt;}
.wsa7{word-spacing:0.003538pt;}
.wsb1{word-spacing:0.003930pt;}
.wsa2{word-spacing:0.007386pt;}
.wsb2{word-spacing:0.039300pt;}
.wsbf{word-spacing:0.047821pt;}
.wsaf{word-spacing:0.051090pt;}
.ws1d{word-spacing:0.053134pt;}
.wsa9{word-spacing:0.074831pt;}
.ws85{word-spacing:0.095642pt;}
.ws13{word-spacing:0.106268pt;}
.wsd1{word-spacing:0.117916pt;}
.wsab{word-spacing:0.125851pt;}
.wsa{word-spacing:0.127522pt;}
.ws7c{word-spacing:0.143462pt;}
.ws11{word-spacing:0.159402pt;}
.ws2{word-spacing:0.185968pt;}
.wsd2{word-spacing:0.191283pt;}
.wsa8{word-spacing:0.207485pt;}
.ws35{word-spacing:0.212535pt;}
.ws89{word-spacing:0.239104pt;}
.ws3e{word-spacing:0.265669pt;}
.ws88{word-spacing:0.286925pt;}
.ws3d{word-spacing:0.318803pt;}
.ws4c{word-spacing:0.371937pt;}
.wsbe{word-spacing:0.430387pt;}
.ws6c{word-spacing:0.478205pt;}
.ws60{word-spacing:0.505333pt;}
.wsc6{word-spacing:0.526029pt;}
.ws23{word-spacing:0.584473pt;}
.ws76{word-spacing:0.637606pt;}
.ws40{word-spacing:0.660000pt;}
.ws70{word-spacing:0.665333pt;}
.ws68{word-spacing:0.717312pt;}
.ws24{word-spacing:0.743874pt;}
.wsda{word-spacing:0.765133pt;}
.wsb3{word-spacing:0.908595pt;}
.ws33{word-spacing:0.956410pt;}
.ws10{word-spacing:1.009543pt;}
.wsd{word-spacing:1.062677pt;}
.wsc4{word-spacing:1.099878pt;}
.ws54{word-spacing:1.115811pt;}
.ws75{word-spacing:1.168945pt;}
.ws67{word-spacing:1.275213pt;}
.ws62{word-spacing:1.328347pt;}
.ws7e{word-spacing:1.338982pt;}
.ws14{word-spacing:1.434614pt;}
.ws1c{word-spacing:1.487748pt;}
.wsd0{word-spacing:1.530266pt;}
.ws30{word-spacing:1.540882pt;}
.wsdb{word-spacing:1.578086pt;}
.ws5f{word-spacing:1.647150pt;}
.ws44{word-spacing:1.753418pt;}
.ws32{word-spacing:1.806551pt;}
.ws39{word-spacing:1.859685pt;}
.ws28{word-spacing:1.912819pt;}
.ws74{word-spacing:1.965953pt;}
.wsdd{word-spacing:2.056294pt;}
.ws92{word-spacing:2.072221pt;}
.ws56{word-spacing:2.125355pt;}
.ws53{word-spacing:2.178489pt;}
.ws5{word-spacing:2.231335pt;}
.wsb7{word-spacing:2.231622pt;}
.ws45{word-spacing:2.337890pt;}
.ws5c{word-spacing:2.391024pt;}
.wsa0{word-spacing:2.391040pt;}
.ws7b{word-spacing:2.438861pt;}
.ws72{word-spacing:2.444158pt;}
.ws2a{word-spacing:2.497292pt;}
.ws2e{word-spacing:2.550426pt;}
.wsc{word-spacing:2.550432pt;}
.ws2f{word-spacing:2.603559pt;}
.wsd7{word-spacing:2.630144pt;}
.wscc{word-spacing:2.677965pt;}
.ws8d{word-spacing:2.709827pt;}
.ws5b{word-spacing:2.816095pt;}
.ws86{word-spacing:2.821427pt;}
.wsde{word-spacing:2.861423pt;}
.wsd6{word-spacing:2.862191pt;}
.wscd{word-spacing:2.864119pt;}
.wsc7{word-spacing:2.864657pt;}
.wsdf{word-spacing:2.865391pt;}
.wsce{word-spacing:2.865835pt;}
.wsc9{word-spacing:2.866517pt;}
.wsd9{word-spacing:2.867174pt;}
.ws58{word-spacing:2.869229pt;}
.wscb{word-spacing:2.869248pt;}
.ws16{word-spacing:2.922363pt;}
.ws1a{word-spacing:2.991902pt;}
.ws2b{word-spacing:3.081764pt;}
.wsbd{word-spacing:3.108352pt;}
.ws77{word-spacing:3.188032pt;}
.ws78{word-spacing:3.299635pt;}
.ws22{word-spacing:3.347434pt;}
.wsbc{word-spacing:3.400567pt;}
.ws48{word-spacing:3.506835pt;}
.ws4e{word-spacing:3.559969pt;}
.ws57{word-spacing:3.613103pt;}
.ws47{word-spacing:3.719371pt;}
.ws36{word-spacing:3.772505pt;}
.ws1b{word-spacing:3.825664pt;}
.ws46{word-spacing:3.878772pt;}
.ws42{word-spacing:3.931906pt;}
.wsb8{word-spacing:3.985040pt;}
.ws5a{word-spacing:4.038174pt;}
.ws2c{word-spacing:4.144442pt;}
.ws3a{word-spacing:4.303843pt;}
.ws91{word-spacing:4.356977pt;}
.ws4b{word-spacing:4.395426pt;}
.wsb9{word-spacing:4.463245pt;}
.ws4f{word-spacing:4.516379pt;}
.ws25{word-spacing:4.569513pt;}
.ws61{word-spacing:4.622646pt;}
.ws21{word-spacing:4.675780pt;}
.ws7a{word-spacing:4.686438pt;}
.ws87{word-spacing:4.734259pt;}
.wsc3{word-spacing:4.829901pt;}
.wsd5{word-spacing:4.877722pt;}
.ws26{word-spacing:4.994583pt;}
.ws27{word-spacing:5.047717pt;}
.ws59{word-spacing:5.100851pt;}
.ws4d{word-spacing:5.207119pt;}
.ws63{word-spacing:5.260253pt;}
.ws2d{word-spacing:5.472788pt;}
.ws31{word-spacing:5.632190pt;}
.ws6f{word-spacing:5.844725pt;}
.wsbb{word-spacing:6.163529pt;}
.ws73{word-spacing:6.376064pt;}
.ws8e{word-spacing:6.429198pt;}
.wsc1{word-spacing:6.455808pt;}
.ws43{word-spacing:6.641733pt;}
.ws3b{word-spacing:7.332474pt;}
.wsd3{word-spacing:7.412224pt;}
.wsdc{word-spacing:8.023407pt;}
.wsd8{word-spacing:11.094426pt;}
.wsc2{word-spacing:12.708068pt;}
.ws51{word-spacing:13.230333pt;}
.wsc0{word-spacing:16.007319pt;}
.ws1{word-spacing:25.326802pt;}
.ws7{word-spacing:35.593054pt;}
.ws8{word-spacing:48.878387pt;}
.ws6b{word-spacing:61.019341pt;}
.ws9c{word-spacing:81.516341pt;}
.ws99{word-spacing:84.951104pt;}
.ws94{word-spacing:87.639544pt;}
.ws93{word-spacing:88.525766pt;}
.ws9e{word-spacing:94.543690pt;}
.ws83{word-spacing:245.846733pt;}
.ws81{word-spacing:486.241894pt;}
.ws82{word-spacing:518.473114pt;}
.ws80{word-spacing:561.320550pt;}
.ws7f{word-spacing:593.551770pt;}
.wsb6{word-spacing:839.529600pt;}
.wsb5{word-spacing:869.942400pt;}
.wsac{word-spacing:1219.660767pt;}
.wsa5{word-spacing:1250.063965pt;}
._2d{margin-left:-18.476241pt;}
._4{margin-left:-10.616218pt;}
._25{margin-left:-7.003047pt;}
._a{margin-left:-6.089149pt;}
._7{margin-left:-4.675792pt;}
._24{margin-left:-3.698234pt;}
._2{margin-left:-2.752326pt;}
._1{margin-left:-1.338970pt;}
._15{width:0.924484pt;}
._5{width:2.668767pt;}
._2c{width:8.884091pt;}
._0{width:11.530016pt;}
._29{width:12.656483pt;}
._8{width:13.549155pt;}
._17{width:14.776627pt;}
._9{width:16.046428pt;}
._13{width:17.257865pt;}
._14{width:18.278050pt;}
._e{width:19.234460pt;}
._2f{width:20.281463pt;}
._b{width:21.264170pt;}
._3{width:23.062165pt;}
._11{width:24.707248pt;}
._10{width:26.630690pt;}
._16{width:28.171572pt;}
._12{width:29.659321pt;}
._f{width:31.455261pt;}
._22{width:33.952529pt;}
._6{width:48.356193pt;}
._2e{width:54.993920pt;}
._21{width:68.431552pt;}
._2b{width:78.904320pt;}
._26{width:96.652911pt;}
._1f{width:111.900659pt;}
._1e{width:154.987200pt;}
._19{width:200.464794pt;}
._1d{width:203.764429pt;}
._1b{width:208.450867pt;}
._20{width:211.081011pt;}
._1c{width:566.389542pt;}
._1a{width:609.667366pt;}
._23{width:689.241190pt;}
._18{width:1016.813670pt;}
._27{width:1276.627200pt;}
._c{width:1577.983277pt;}
._28{width:2244.665943pt;}
._2a{width:2245.558615pt;}
._d{width:2265.919277pt;}
.fs14{font-size:27.728533pt;}
.fs12{font-size:28.839999pt;}
.fsf{font-size:29.727467pt;}
.fsd{font-size:30.107732pt;}
.fs4{font-size:31.880533pt;}
.fs16{font-size:32.038933pt;}
.fs15{font-size:34.013867pt;}
.fs13{font-size:35.377599pt;}
.fs10{font-size:36.466133pt;}
.fse{font-size:36.932267pt;}
.fs0{font-size:37.193600pt;}
.fsb{font-size:38.755733pt;}
.fs17{font-size:39.300267pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs7{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:1.806477pt;}
.y139{bottom:3.787196pt;}
.y1b0{bottom:5.679195pt;}
.y1a4{bottom:6.575059pt;}
.y1af{bottom:19.679195pt;}
.y19b{bottom:37.055060pt;}
.y42{bottom:40.818667pt;}
.y191{bottom:52.175075pt;}
.y192{bottom:62.255325pt;}
.yb3{bottom:86.213333pt;}
.yb2{bottom:88.640000pt;}
.y16{bottom:89.120000pt;}
.y193{bottom:89.215286pt;}
.yd7{bottom:90.122667pt;}
.y1fb{bottom:92.366667pt;}
.y109{bottom:93.949333pt;}
.y41{bottom:96.394667pt;}
.y1ab{bottom:97.092000pt;}
.y1c7{bottom:97.810667pt;}
.y1d2{bottom:102.117333pt;}
.y75{bottom:103.473333pt;}
.yb1{bottom:104.782667pt;}
.y15{bottom:105.020000pt;}
.yb0{bottom:107.209333pt;}
.yd6{bottom:108.693333pt;}
.y1fa{bottom:109.389333pt;}
.y108{bottom:112.518667pt;}
.y1aa{bottom:114.188000pt;}
.y40{bottom:114.965333pt;}
.y194{bottom:116.175247pt;}
.y1c6{bottom:116.380000pt;}
.y1d1{bottom:120.688000pt;}
.y14{bottom:120.920000pt;}
.y74{bottom:122.042667pt;}
.yaf{bottom:123.353333pt;}
.yad{bottom:125.780000pt;}
.y1f9{bottom:126.412000pt;}
.yd5{bottom:127.262667pt;}
.yae{bottom:130.602667pt;}
.y107{bottom:131.089333pt;}
.y1a9{bottom:131.284000pt;}
.y3f{bottom:133.536000pt;}
.y1c5{bottom:134.950667pt;}
.y13{bottom:136.821333pt;}
.y11e{bottom:139.232000pt;}
.y1d0{bottom:139.258667pt;}
.y73{bottom:140.613333pt;}
.y195{bottom:143.135209pt;}
.y1f8{bottom:143.434667pt;}
.yac{bottom:144.350667pt;}
.y19a{bottom:144.575059pt;}
.yd4{bottom:145.833333pt;}
.y1a3{bottom:147.215196pt;}
.y1a8{bottom:148.380000pt;}
.y106{bottom:149.660000pt;}
.y3e{bottom:152.105333pt;}
.y12{bottom:152.721333pt;}
.y1c4{bottom:153.521333pt;}
.y11d{bottom:157.802667pt;}
.y1cf{bottom:157.828000pt;}
.y72{bottom:159.184000pt;}
.y1f7{bottom:160.457333pt;}
.yab{bottom:160.494667pt;}
.yaa{bottom:162.920000pt;}
.yd3{bottom:164.404000pt;}
.y1a7{bottom:165.474667pt;}
.y105{bottom:168.229333pt;}
.y11{bottom:168.621333pt;}
.y196{bottom:170.095170pt;}
.y3d{bottom:170.676000pt;}
.y1c3{bottom:172.090667pt;}
.y137{bottom:172.289333pt;}
.y11c{bottom:176.372000pt;}
.y1ce{bottom:176.398667pt;}
.y1f6{bottom:177.480000pt;}
.y71{bottom:177.753333pt;}
.ya9{bottom:179.064000pt;}
.ya8{bottom:181.490667pt;}
.y1a6{bottom:182.570667pt;}
.yd2{bottom:182.973333pt;}
.y10{bottom:184.521333pt;}
.y104{bottom:186.800000pt;}
.y159{bottom:188.686667pt;}
.y3c{bottom:189.246667pt;}
.y1c2{bottom:190.661333pt;}
.y136{bottom:190.858667pt;}
.y1f5{bottom:194.502667pt;}
.y11b{bottom:194.942667pt;}
.y1cd{bottom:194.969333pt;}
.y70{bottom:196.324000pt;}
.y197{bottom:197.055132pt;}
.y1a5{bottom:199.666667pt;}
.ya7{bottom:200.061333pt;}
.yf{bottom:200.422667pt;}
.y1a2{bottom:200.575181pt;}
.yd1{bottom:201.544000pt;}
.y103{bottom:205.370667pt;}
.y158{bottom:207.257333pt;}
.y3b{bottom:207.816000pt;}
.y1c1{bottom:209.232000pt;}
.y135{bottom:209.429333pt;}
.y1f4{bottom:211.525333pt;}
.y1a1{bottom:212.655218pt;}
.y1cc{bottom:213.540000pt;}
.y6f{bottom:214.894667pt;}
.ya6{bottom:218.632000pt;}
.yd0{bottom:220.114667pt;}
.y15a{bottom:222.261333pt;}
.y102{bottom:223.940000pt;}
.y198{bottom:224.015093pt;}
.ye{bottom:224.293333pt;}
.y1a0{bottom:224.735215pt;}
.y157{bottom:225.826667pt;}
.y1c0{bottom:227.801333pt;}
.y134{bottom:228.000000pt;}
.y1f3{bottom:228.548000pt;}
.y3a{bottom:230.372000pt;}
.y1cb{bottom:232.109333pt;}
.y6e{bottom:233.464000pt;}
.y1ae{bottom:234.079077pt;}
.ya5{bottom:234.774667pt;}
.y19f{bottom:236.815049pt;}
.ya4{bottom:237.201333pt;}
.ycf{bottom:238.685333pt;}
.y11a{bottom:239.842667pt;}
.y101{bottom:240.084000pt;}
.yd{bottom:240.193333pt;}
.y100{bottom:242.510667pt;}
.y156{bottom:244.397333pt;}
.y1f2{bottom:245.570667pt;}
.y1bf{bottom:246.372000pt;}
.y133{bottom:246.569333pt;}
.y1ad{bottom:248.801022pt;}
.y19e{bottom:248.895087pt;}
.y1ca{bottom:250.680000pt;}
.y199{bottom:250.975055pt;}
.y6d{bottom:252.034667pt;}
.yc{bottom:256.093333pt;}
.yce{bottom:257.254667pt;}
.y119{bottom:260.857333pt;}
.y19d{bottom:260.975083pt;}
.yff{bottom:261.081333pt;}
.ya3{bottom:261.362667pt;}
.y1f1{bottom:262.593333pt;}
.y155{bottom:262.968000pt;}
.y1be{bottom:264.942667pt;}
.y132{bottom:265.140000pt;}
.y1c9{bottom:269.250667pt;}
.y6c{bottom:270.605333pt;}
.yb{bottom:271.994667pt;}
.y19c{bottom:272.975083pt;}
.yfe{bottom:277.225333pt;}
.y1f0{bottom:279.616000pt;}
.yfd{bottom:279.652000pt;}
.ycd{bottom:279.810667pt;}
.ya2{bottom:279.933333pt;}
.y154{bottom:281.537333pt;}
.y118{bottom:281.870667pt;}
.y1bd{bottom:283.512000pt;}
.y131{bottom:283.710667pt;}
.y190{bottom:287.855048pt;}
.ya{bottom:287.894667pt;}
.y6b{bottom:289.176000pt;}
.y1c8{bottom:291.805333pt;}
.y1ef{bottom:296.638667pt;}
.yfc{bottom:298.221333pt;}
.ya1{bottom:298.502667pt;}
.y153{bottom:300.108000pt;}
.y39{bottom:300.782667pt;}
.y184{bottom:301.855048pt;}
.y1bc{bottom:302.082667pt;}
.y130{bottom:302.280000pt;}
.y117{bottom:302.885333pt;}
.y9{bottom:303.794667pt;}
.y6a{bottom:307.745333pt;}
.ycc{bottom:311.225333pt;}
.y1ee{bottom:313.662667pt;}
.y181{bottom:316.735052pt;}
.yfb{bottom:316.792000pt;}
.ya0{bottom:317.073333pt;}
.y152{bottom:318.678667pt;}
.y38{bottom:319.352000pt;}
.y8{bottom:319.696000pt;}
.y1bb{bottom:320.653333pt;}
.y18d{bottom:320.735052pt;}
.y12f{bottom:320.850667pt;}
.y116{bottom:323.898667pt;}
.y69{bottom:326.316000pt;}
.ycb{bottom:329.796000pt;}
.y177{bottom:330.335069pt;}
.y1ed{bottom:330.685333pt;}
.y185{bottom:333.775051pt;}
.yfa{bottom:335.362667pt;}
.y7{bottom:335.596000pt;}
.y9f{bottom:335.644000pt;}
.y151{bottom:337.248000pt;}
.y1ba{bottom:339.224000pt;}
.y178{bottom:339.374966pt;}
.y12e{bottom:339.421333pt;}
.y186{bottom:342.574701pt;}
.y68{bottom:344.886667pt;}
.y115{bottom:344.913333pt;}
.y1ec{bottom:347.708000pt;}
.yc9{bottom:348.366667pt;}
.yca{bottom:353.188000pt;}
.y37{bottom:353.862667pt;}
.yf9{bottom:353.932000pt;}
.y150{bottom:355.818667pt;}
.y6{bottom:356.809333pt;}
.y1b9{bottom:357.793333pt;}
.y12d{bottom:357.990667pt;}
.y9e{bottom:359.804000pt;}
.y67{bottom:363.456000pt;}
.y179{bottom:363.695016pt;}
.y1eb{bottom:364.730667pt;}
.y114{bottom:365.926667pt;}
.yc8{bottom:366.936000pt;}
.y36{bottom:372.433333pt;}
.yf8{bottom:372.502667pt;}
.y5{bottom:372.710667pt;}
.y14f{bottom:374.389333pt;}
.y187{bottom:375.214651pt;}
.y9d{bottom:375.948000pt;}
.y1b8{bottom:376.364000pt;}
.y12c{bottom:376.561333pt;}
.y9c{bottom:378.374667pt;}
.y1ea{bottom:381.753333pt;}
.y66{bottom:382.026667pt;}
.yc7{bottom:385.506667pt;}
.y17a{bottom:387.935035pt;}
.y4{bottom:388.610667pt;}
.y35{bottom:391.002667pt;}
.yf7{bottom:391.073333pt;}
.y14e{bottom:392.958667pt;}
.y9b{bottom:394.518667pt;}
.y1b7{bottom:394.934667pt;}
.y12b{bottom:395.132000pt;}
.y113{bottom:396.689333pt;}
.y9a{bottom:396.945333pt;}
.y1e9{bottom:398.776000pt;}
.y65{bottom:400.597333pt;}
.y18c{bottom:401.775051pt;}
.yc6{bottom:404.077333pt;}
.y3{bottom:404.510667pt;}
.y188{bottom:407.854600pt;}
.y34{bottom:409.573333pt;}
.yf6{bottom:409.642667pt;}
.y14d{bottom:411.529333pt;}
.y17b{bottom:412.255086pt;}
.y99{bottom:413.089333pt;}
.y1b6{bottom:413.504000pt;}
.y180{bottom:413.535061pt;}
.y12a{bottom:413.702667pt;}
.y112{bottom:413.785333pt;}
.y98{bottom:415.514667pt;}
.y1e8{bottom:415.798667pt;}
.y64{bottom:419.166667pt;}
.yc5{bottom:422.646667pt;}
.y2{bottom:425.725333pt;}
.y33{bottom:428.144000pt;}
.yf5{bottom:428.213333pt;}
.y14c{bottom:430.100000pt;}
.y111{bottom:430.881333pt;}
.y97{bottom:431.658667pt;}
.y1b5{bottom:432.074667pt;}
.y1e7{bottom:432.821333pt;}
.y96{bottom:434.085333pt;}
.y17c{bottom:436.495105pt;}
.y63{bottom:437.737333pt;}
.yc4{bottom:438.790667pt;}
.y189{bottom:440.494550pt;}
.yc3{bottom:441.217333pt;}
.y1{bottom:441.625333pt;}
.y129{bottom:445.370667pt;}
.y32{bottom:446.714667pt;}
.yf4{bottom:446.784000pt;}
.y110{bottom:447.977333pt;}
.y14b{bottom:448.670667pt;}
.y1e6{bottom:449.844000pt;}
.y95{bottom:452.656000pt;}
.y1b4{bottom:454.629333pt;}
.y62{bottom:456.308000pt;}
.yc2{bottom:459.788000pt;}
.y17d{bottom:460.735124pt;}
.y128{bottom:462.466667pt;}
.y10f{bottom:465.073333pt;}
.y31{bottom:465.284000pt;}
.yf3{bottom:465.353333pt;}
.y1e5{bottom:466.866667pt;}
.y14a{bottom:467.240000pt;}
.y94{bottom:471.226667pt;}
.y18a{bottom:473.214218pt;}
.y61{bottom:474.877333pt;}
.y127{bottom:479.562667pt;}
.y10e{bottom:482.169333pt;}
.yc1{bottom:482.342667pt;}
.y30{bottom:483.854667pt;}
.yf2{bottom:483.924000pt;}
.y17e{bottom:484.975143pt;}
.y149{bottom:485.810667pt;}
.y1b3{bottom:486.298667pt;}
.y1e4{bottom:487.874667pt;}
.y60{bottom:493.448000pt;}
.y93{bottom:493.781333pt;}
.y18f{bottom:496.655096pt;}
.y126{bottom:496.658667pt;}
.y217{bottom:498.529333pt;}
.y2f{bottom:502.425333pt;}
.yf1{bottom:502.494667pt;}
.y1b2{bottom:503.394667pt;}
.y148{bottom:504.381333pt;}
.y18b{bottom:505.854168pt;}
.y18e{bottom:507.135077pt;}
.y10d{bottom:508.562667pt;}
.y17f{bottom:509.295193pt;}
.y5f{bottom:512.018667pt;}
.y125{bottom:513.754667pt;}
.yc0{bottom:513.758667pt;}
.y216{bottom:515.552000pt;}
.y183{bottom:517.535223pt;}
.y1b1{bottom:520.490667pt;}
.y2e{bottom:520.994667pt;}
.y1e3{bottom:522.385333pt;}
.y147{bottom:522.950667pt;}
.yf0{bottom:525.049333pt;}
.y92{bottom:525.197333pt;}
.y10c{bottom:525.658667pt;}
.y182{bottom:528.415106pt;}
.y5e{bottom:530.589333pt;}
.y124{bottom:530.850667pt;}
.ybe{bottom:532.329333pt;}
.y215{bottom:532.574667pt;}
.ybf{bottom:537.150667pt;}
.y2d{bottom:539.565333pt;}
.y1ac{bottom:540.428000pt;}
.y146{bottom:541.521333pt;}
.y10b{bottom:542.754667pt;}
.y176{bottom:542.815090pt;}
.y91{bottom:543.766667pt;}
.y1e2{bottom:547.686667pt;}
.y123{bottom:547.946667pt;}
.y5d{bottom:549.158667pt;}
.ybc{bottom:550.898667pt;}
.ybd{bottom:555.721333pt;}
.y168{bottom:556.815090pt;}
.y2c{bottom:558.136000pt;}
.yef{bottom:559.560000pt;}
.y10a{bottom:559.850667pt;}
.y145{bottom:560.092000pt;}
.y90{bottom:562.337333pt;}
.y1e1{bottom:565.020000pt;}
.y5c{bottom:567.729333pt;}
.y121{bottom:567.884000pt;}
.ybb{bottom:569.469333pt;}
.y214{bottom:570.824000pt;}
.y165{bottom:572.255031pt;}
.y173{bottom:573.615057pt;}
.y2b{bottom:576.705333pt;}
.yee{bottom:578.130667pt;}
.y8f{bottom:578.481333pt;}
.y144{bottom:578.661333pt;}
.y8e{bottom:580.908000pt;}
.y1e0{bottom:582.352000pt;}
.y5b{bottom:586.300000pt;}
.y15b{bottom:586.415106pt;}
.y169{bottom:587.695217pt;}
.y213{bottom:587.846667pt;}
.yba{bottom:588.040000pt;}
.y2a{bottom:595.276000pt;}
.y15c{bottom:595.935171pt;}
.yed{bottom:596.701333pt;}
.y16a{bottom:597.054910pt;}
.y143{bottom:597.232000pt;}
.y8d{bottom:599.477333pt;}
.y5a{bottom:604.869333pt;}
.yb9{bottom:606.609333pt;}
.y1df{bottom:607.653333pt;}
.y29{bottom:613.846667pt;}
.yeb{bottom:615.270667pt;}
.y142{bottom:615.802667pt;}
.y8b{bottom:618.048000pt;}
.yec{bottom:620.093333pt;}
.y15d{bottom:621.295666pt;}
.y212{bottom:621.892000pt;}
.y16b{bottom:622.014834pt;}
.y8c{bottom:622.869333pt;}
.y59{bottom:623.440000pt;}
.y1de{bottom:624.986667pt;}
.yb8{bottom:629.165333pt;}
.yea{bottom:631.414667pt;}
.y28{bottom:632.416000pt;}
.ye9{bottom:633.841333pt;}
.y141{bottom:634.372000pt;}
.y8a{bottom:636.618667pt;}
.y211{bottom:638.914667pt;}
.y58{bottom:642.010667pt;}
.y15e{bottom:646.575623pt;}
.y16c{bottom:647.055021pt;}
.y1dd{bottom:650.288000pt;}
.y27{bottom:650.986667pt;}
.ye8{bottom:652.412000pt;}
.y140{bottom:652.942667pt;}
.y89{bottom:655.188000pt;}
.y210{bottom:655.937333pt;}
.y57{bottom:660.580000pt;}
.y1dc{bottom:667.621333pt;}
.ye7{bottom:670.981333pt;}
.y13f{bottom:671.513333pt;}
.y15f{bottom:671.935366pt;}
.y16d{bottom:672.095209pt;}
.y20f{bottom:672.961333pt;}
.y164{bottom:673.295070pt;}
.y172{bottom:673.455064pt;}
.y88{bottom:673.758667pt;}
.y26{bottom:677.526667pt;}
.y56{bottom:679.150667pt;}
.yb7{bottom:683.972000pt;}
.y1db{bottom:684.953333pt;}
.ye6{bottom:689.552000pt;}
.y87{bottom:689.902667pt;}
.y20e{bottom:689.984000pt;}
.y13e{bottom:690.084000pt;}
.y86{bottom:692.329333pt;}
.y16e{bottom:697.055133pt;}
.y160{bottom:697.215323pt;}
.y55{bottom:697.721333pt;}
.y1da{bottom:702.285333pt;}
.y20d{bottom:707.006667pt;}
.ye5{bottom:708.122667pt;}
.y13d{bottom:708.653333pt;}
.y85{bottom:710.900000pt;}
.y25{bottom:713.100000pt;}
.y54{bottom:716.290667pt;}
.y120{bottom:718.252000pt;}
.y16f{bottom:722.095321pt;}
.y161{bottom:722.575066pt;}
.y20c{bottom:724.029333pt;}
.ye4{bottom:726.692000pt;}
.y13c{bottom:727.224000pt;}
.y1d9{bottom:727.588000pt;}
.y84{bottom:729.469333pt;}
.y24{bottom:731.304000pt;}
.y53{bottom:734.861333pt;}
.y11f{bottom:735.348000pt;}
.y20b{bottom:741.052000pt;}
.y23{bottom:741.793333pt;}
.y1d8{bottom:744.920000pt;}
.y22{bottom:745.650667pt;}
.y170{bottom:747.135508pt;}
.y162{bottom:747.934809pt;}
.ye3{bottom:749.248000pt;}
.y83{bottom:752.025333pt;}
.y52{bottom:753.432000pt;}
.y21{bottom:756.138667pt;}
.y20a{bottom:758.074667pt;}
.y13b{bottom:758.893333pt;}
.y1d7{bottom:762.252000pt;}
.y167{bottom:764.415106pt;}
.yb6{bottom:769.576000pt;}
.y20{bottom:770.485333pt;}
.y51{bottom:772.002667pt;}
.y171{bottom:772.095432pt;}
.y163{bottom:773.294551pt;}
.y209{bottom:775.097333pt;}
.y166{bottom:775.695054pt;}
.y13a{bottom:775.989333pt;}
.y175{bottom:779.135077pt;}
.y1d6{bottom:779.584000pt;}
.y82{bottom:783.440000pt;}
.ye2{bottom:788.396000pt;}
.y1f{bottom:788.689333pt;}
.y208{bottom:789.788000pt;}
.y174{bottom:790.335028pt;}
.y50{bottom:790.572000pt;}
.y207{bottom:792.120000pt;}
.y138{bottom:795.926667pt;}
.y1d5{bottom:796.916000pt;}
.y1e{bottom:799.178667pt;}
.y81{bottom:802.010667pt;}
.ye1{bottom:803.008000pt;}
.y4f{bottom:809.142667pt;}
.y1d{bottom:813.524000pt;}
.y1d4{bottom:814.248000pt;}
.ye0{bottom:817.620000pt;}
.y80{bottom:820.581333pt;}
.y206{bottom:826.165333pt;}
.y4e{bottom:827.713333pt;}
.y1d3{bottom:831.581333pt;}
.y1c{bottom:831.728000pt;}
.ydf{bottom:832.232000pt;}
.yb5{bottom:832.534667pt;}
.y7f{bottom:839.150667pt;}
.y205{bottom:843.188000pt;}
.y4d{bottom:846.282667pt;}
.yde{bottom:846.844000pt;}
.y7e{bottom:857.721333pt;}
.y204{bottom:860.210667pt;}
.ydd{bottom:861.456000pt;}
.y4c{bottom:864.853333pt;}
.y1b{bottom:871.440000pt;}
.y7d{bottom:876.292000pt;}
.y203{bottom:877.233333pt;}
.ydc{bottom:882.469333pt;}
.y4b{bottom:883.424000pt;}
.y1a{bottom:890.010667pt;}
.y202{bottom:894.256000pt;}
.y7c{bottom:894.861333pt;}
.y4a{bottom:901.993333pt;}
.ydb{bottom:910.576000pt;}
.y201{bottom:911.278667pt;}
.y7b{bottom:913.432000pt;}
.y49{bottom:920.564000pt;}
.y19{bottom:924.521333pt;}
.yda{bottom:927.672000pt;}
.y200{bottom:928.301333pt;}
.y7a{bottom:932.002667pt;}
.y48{bottom:939.134667pt;}
.yd9{bottom:944.768000pt;}
.y1ff{bottom:945.324000pt;}
.y78{bottom:950.572000pt;}
.y18{bottom:952.377333pt;}
.y79{bottom:955.394667pt;}
.y47{bottom:957.704000pt;}
.yd8{bottom:961.864000pt;}
.y1fe{bottom:962.346667pt;}
.y77{bottom:969.142667pt;}
.y46{bottom:976.274667pt;}
.y1fd{bottom:979.369333pt;}
.y17{bottom:980.232000pt;}
.y76{bottom:991.698667pt;}
.y45{bottom:994.845333pt;}
.y1fc{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.yb4{bottom:1018.237333pt;}
.y43{bottom:1066.841333pt;}
.h20{height:20.200670pt;}
.h1e{height:21.010390pt;}
.h1b{height:21.656924pt;}
.h19{height:21.933953pt;}
.h22{height:23.340864pt;}
.he{height:24.760382pt;}
.h21{height:24.779633pt;}
.h1f{height:25.773134pt;}
.h1c{height:26.566148pt;}
.hf{height:26.761523pt;}
.h1a{height:26.905733pt;}
.h23{height:28.630858pt;}
.h6{height:28.947524pt;}
.h12{height:31.691456pt;}
.h2{height:33.771789pt;}
.h13{height:34.574438pt;}
.hb{height:35.212691pt;}
.hc{height:36.666735pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.h26{height:39.349375pt;}
.h14{height:42.008646pt;}
.h11{height:43.421286pt;}
.h1d{height:44.648438pt;}
.h10{height:44.919358pt;}
.ha{height:46.099251pt;}
.h24{height:46.890037pt;}
.h9{height:48.245551pt;}
.h5{height:48.486756pt;}
.h16{height:49.708594pt;}
.hd{height:55.952068pt;}
.h4{height:69.148877pt;}
.h15{height:135.941333pt;}
.h17{height:230.773333pt;}
.h25{height:486.272000pt;}
.h18{height:804.440000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:272.350667pt;}
.w2{width:359.474667pt;}
.w5{width:478.406667pt;}
.w4{width:606.367733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa4{left:9.849065pt;}
.xa3{left:14.009372pt;}
.x93{left:17.929062pt;}
.x92{left:21.769164pt;}
.x9c{left:25.928980pt;}
.xa2{left:26.889064pt;}
.x91{left:33.929062pt;}
.x9b{left:37.609065pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x84{left:55.592000pt;}
.xb7{left:76.309333pt;}
.x90{left:93.477600pt;}
.xac{left:109.245340pt;}
.xad{left:113.245340pt;}
.xa8{left:114.445332pt;}
.xa9{left:118.445332pt;}
.xaa{left:123.645324pt;}
.xa5{left:125.769059pt;}
.x94{left:126.889074pt;}
.xae{left:128.845336pt;}
.xa1{left:132.009069pt;}
.xa7{left:134.569067pt;}
.x9a{left:137.209061pt;}
.x9d{left:176.329076pt;}
.xa6{left:182.329076pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x95{left:223.929072pt;}
.x76{left:229.828000pt;}
.x5f{left:237.764000pt;}
.x4{left:239.924000pt;}
.x27{left:243.169333pt;}
.x2b{left:247.952000pt;}
.x6{left:250.204000pt;}
.x28{left:251.374667pt;}
.x61{left:254.478667pt;}
.x38{left:257.644000pt;}
.x53{left:261.324000pt;}
.x2f{left:266.914667pt;}
.x8c{left:269.496549pt;}
.x54{left:270.969333pt;}
.x30{left:275.120000pt;}
.x7{left:276.866667pt;}
.x8{left:283.508000pt;}
.x19{left:286.432000pt;}
.x47{left:287.844000pt;}
.x9{left:290.097333pt;}
.xa{left:296.738667pt;}
.x4d{left:297.754667pt;}
.x1a{left:299.716000pt;}
.x24{left:301.278667pt;}
.x4e{left:303.804000pt;}
.x35{left:305.026667pt;}
.xb{left:313.660000pt;}
.x66{left:314.881333pt;}
.xc{left:320.302667pt;}
.x55{left:322.098667pt;}
.x67{left:323.085333pt;}
.x7b{left:324.341333pt;}
.x81{left:325.353333pt;}
.x6b{left:329.254667pt;}
.x56{left:330.304000pt;}
.x82{left:334.608000pt;}
.x7c{left:338.562667pt;}
.x6c{left:340.180000pt;}
.x7d{left:348.368000pt;}
.xaf{left:349.485330pt;}
.x98{left:350.569067pt;}
.xab{left:352.045348pt;}
.x97{left:354.408859pt;}
.x7e{left:356.573333pt;}
.x85{left:357.809043pt;}
.xa0{left:360.649063pt;}
.x5b{left:362.109333pt;}
.x9f{left:364.248965pt;}
.x96{left:366.409073pt;}
.x5c{left:368.158667pt;}
.x40{left:369.446667pt;}
.x9e{left:373.529068pt;}
.x41{left:375.158667pt;}
.x7a{left:377.274667pt;}
.x6e{left:378.784000pt;}
.x89{left:380.076000pt;}
.x60{left:380.972000pt;}
.x59{left:386.580000pt;}
.x6f{left:389.709333pt;}
.xf{left:391.060000pt;}
.x48{left:393.618667pt;}
.x5a{left:394.784000pt;}
.x83{left:395.912000pt;}
.x10{left:397.701333pt;}
.x49{left:399.329333pt;}
.x11{left:401.089333pt;}
.x70{left:406.366667pt;}
.x12{left:407.730667pt;}
.x42{left:409.188000pt;}
.x71{left:412.416000pt;}
.x43{left:432.194667pt;}
.x36{left:434.429333pt;}
.x37{left:440.141333pt;}
.x72{left:443.741333pt;}
.x44{left:449.534667pt;}
.x86{left:450.845333pt;}
.x79{left:452.142667pt;}
.x73{left:453.574667pt;}
.x45{left:455.246667pt;}
.x57{left:458.118667pt;}
.x87{left:459.050667pt;}
.x4f{left:463.350667pt;}
.x65{left:468.088000pt;}
.x15{left:471.329333pt;}
.x58{left:473.941333pt;}
.x1b{left:475.966667pt;}
.x3c{left:478.157333pt;}
.x1e{left:479.672000pt;}
.x1c{left:482.608000pt;}
.x16{left:484.612000pt;}
.x25{left:486.026667pt;}
.x2c{left:490.808000pt;}
.x1f{left:495.178667pt;}
.x26{left:499.310667pt;}
.x99{left:502.489070pt;}
.x62{left:508.185333pt;}
.xb4{left:509.214667pt;}
.x20{left:513.474667pt;}
.x3d{left:518.913333pt;}
.xb5{left:523.449333pt;}
.x21{left:528.981333pt;}
.x63{left:536.277333pt;}
.x3e{left:537.409333pt;}
.x64{left:541.989333pt;}
.x3f{left:548.336000pt;}
.x39{left:550.965333pt;}
.x3a{left:556.677333pt;}
.x22{left:560.186667pt;}
.x46{left:561.561333pt;}
.x29{left:562.481333pt;}
.x2a{left:568.192000pt;}
.x23{left:570.478667pt;}
.x6a{left:573.786667pt;}
.x17{left:581.100000pt;}
.x68{left:582.070667pt;}
.x69{left:590.274667pt;}
.x8e{left:593.034667pt;}
.x18{left:594.384000pt;}
.x6d{left:596.282667pt;}
.x4c{left:599.532000pt;}
.x8f{left:606.318667pt;}
.x1d{left:607.872000pt;}
.x31{left:613.601333pt;}
.x32{left:619.650667pt;}
.x8d{left:623.389333pt;}
.xb0{left:625.804000pt;}
.x50{left:628.600000pt;}
.x2d{left:636.837333pt;}
.xb1{left:639.086667pt;}
.xb2{left:642.341333pt;}
.x2e{left:645.042667pt;}
.x3b{left:649.464000pt;}
.xb3{left:655.625333pt;}
.x13{left:659.661333pt;}
.x33{left:664.402667pt;}
.x14{left:666.304000pt;}
.x4a{left:669.004000pt;}
.x34{left:670.452000pt;}
.x74{left:671.889333pt;}
.x7f{left:675.933333pt;}
.x88{left:677.468000pt;}
.x4b{left:678.385333pt;}
.x75{left:681.722667pt;}
.x80{left:685.536000pt;}
.x51{left:687.645333pt;}
.x77{left:692.190667pt;}
.x52{left:695.849333pt;}
.xb6{left:696.785333pt;}
.x78{left:700.394667pt;}
.x8a{left:705.462667pt;}
.x8b{left:713.668000pt;}
.xd{left:715.212000pt;}
.xe{left:721.853333pt;}
.x5d{left:729.629333pt;}
.x5e{left:737.833333pt;}
}




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