
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_02972ee3487b88eb90c0df7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fdbf710feb895381e09e0316.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_ce91056425ae5962e6f09817.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638000;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_12bb631da9706b222835f0df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c5813df475d46c15a048128.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_e5392228c216f727448212dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_c34739d82ccb688fd686dffd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_12a42165dd940370619504c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_b7d11e728dd41044ab98582e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m17{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);}
.m1a{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);}
.m26{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);}
.m29{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m19{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m1d{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);}
.m15{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);}
.m16{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);}
.m1e{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);}
.m1b{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);}
.m23{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);}
.m12{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);}
.m27{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.md{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);}
.m1f{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);}
.m10{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);}
.mb{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);}
.me{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);}
.m6{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);}
.m11{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);}
.m18{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);}
.m7{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);}
.m25{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);}
.m1c{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);}
.m4{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);}
.m9{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);}
.m22{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);}
.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);}
.v14{vertical-align:-84.312000px;}
.v3{vertical-align:-58.536000px;}
.v2{vertical-align:-46.776000px;}
.v4{vertical-align:-19.128000px;}
.v1{vertical-align:-11.760000px;}
.va{vertical-align:-10.464000px;}
.v9{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:8.964000px;}
.v10{vertical-align:11.760000px;}
.vf{vertical-align:22.404000px;}
.v16{vertical-align:35.268000px;}
.v15{vertical-align:36.462000px;}
.v6{vertical-align:37.776000px;}
.vb{vertical-align:40.470000px;}
.v8{vertical-align:63.780000px;}
.v17{vertical-align:71.730000px;}
.v7{vertical-align:75.318000px;}
.v12{vertical-align:84.312000px;}
.ve{vertical-align:91.554000px;}
.vd{vertical-align:103.314000px;}
.v5{vertical-align:122.094000px;}
.v13{vertical-align:133.848000px;}
.vc{vertical-align:150.084000px;}
.ls5{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.004800px;}
.ls1c{letter-spacing:0.244766px;}
.ls1b{letter-spacing:0.247790px;}
.ls10{letter-spacing:0.250766px;}
.lsf{letter-spacing:0.253790px;}
.lsc{letter-spacing:0.542815px;}
.ls9{letter-spacing:0.548815px;}
.ls26{letter-spacing:0.565142px;}
.ls29{letter-spacing:0.571142px;}
.ls39{letter-spacing:0.571790px;}
.ls47{letter-spacing:0.699292px;}
.ls16{letter-spacing:0.700438px;}
.ls32{letter-spacing:0.748200px;}
.ls2c{letter-spacing:0.748766px;}
.ls7{letter-spacing:0.994200px;}
.ls3c{letter-spacing:1.000200px;}
.ls34{letter-spacing:1.135142px;}
.ls2a{letter-spacing:1.135740px;}
.ls27{letter-spacing:1.188172px;}
.ls4{letter-spacing:1.275394px;}
.ls42{letter-spacing:1.309331px;}
.ls3d{letter-spacing:1.312200px;}
.ls4d{letter-spacing:1.314017px;}
.ls2d{letter-spacing:1.315331px;}
.ls35{letter-spacing:1.363258px;}
.ls17{letter-spacing:1.420741px;}
.ls8{letter-spacing:1.452571px;}
.lsb{letter-spacing:1.458571px;}
.ls2b{letter-spacing:1.494390px;}
.ls21{letter-spacing:1.495694px;}
.ls0{letter-spacing:1.861130px;}
.lse{letter-spacing:1.894438px;}
.ls28{letter-spacing:2.674200px;}
.ls25{letter-spacing:2.680200px;}
.ls38{letter-spacing:2.878438px;}
.ls37{letter-spacing:2.884438px;}
.lsd{letter-spacing:2.989200px;}
.ls36{letter-spacing:3.175200px;}
.ls4b{letter-spacing:3.685363px;}
.ls1d{letter-spacing:3.739200px;}
.ls49{letter-spacing:3.870571px;}
.ls3a{letter-spacing:4.531258px;}
.ls11{letter-spacing:4.620571px;}
.ls18{letter-spacing:4.918741px;}
.ls1{letter-spacing:9.981300px;}
.ls3{letter-spacing:11.960850px;}
.ls31{letter-spacing:12.339483px;}
.ls14{letter-spacing:12.371108px;}
.ls19{letter-spacing:13.066438px;}
.ls15{letter-spacing:13.086783px;}
.ls1a{letter-spacing:13.089483px;}
.ls22{letter-spacing:13.116172px;}
.ls30{letter-spacing:13.120766px;}
.ls5c{letter-spacing:13.158840px;}
.ls5b{letter-spacing:13.448400px;}
.ls58{letter-spacing:13.509286px;}
.ls55{letter-spacing:14.226593px;}
.ls5a{letter-spacing:14.585246px;}
.ls56{letter-spacing:14.824349px;}
.ls57{letter-spacing:15.063451px;}
.ls6{letter-spacing:15.123227px;}
.ls54{letter-spacing:15.242778px;}
.ls24{letter-spacing:15.694200px;}
.ls13{letter-spacing:17.319483px;}
.lsa{letter-spacing:17.935200px;}
.ls12{letter-spacing:18.052438px;}
.ls20{letter-spacing:18.069483px;}
.ls4e{letter-spacing:18.501943px;}
.ls59{letter-spacing:18.829314px;}
.ls44{letter-spacing:19.045363px;}
.ls33{letter-spacing:20.218741px;}
.ls45{letter-spacing:20.859483px;}
.ls4f{letter-spacing:20.907943px;}
.ls46{letter-spacing:21.188383px;}
.ls4a{letter-spacing:21.222571px;}
.ls1f{letter-spacing:21.228571px;}
.ls2e{letter-spacing:24.031363px;}
.ls2{letter-spacing:25.105654px;}
.ls50{letter-spacing:31.330438px;}
.ls3e{letter-spacing:31.386300px;}
.ls53{letter-spacing:34.506571px;}
.ls40{letter-spacing:60.495483px;}
.ls43{letter-spacing:61.239483px;}
.ls3f{letter-spacing:67.201363px;}
.ls52{letter-spacing:69.286200px;}
.ls51{letter-spacing:72.414571px;}
.ls2f{letter-spacing:104.079483px;}
.ls48{letter-spacing:124.170571px;}
.ls41{letter-spacing:446.338200px;}
.ls3b{letter-spacing:653.704438px;}
.ls1e{letter-spacing:719.050438px;}
.ls4c{letter-spacing:897.954600px;}
.ls23{letter-spacing:912.211200px;}
.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;}
}
.ws6d{word-spacing:-14.943900px;}
.wsb9{word-spacing:-13.449600px;}
.ws85{word-spacing:-12.493140px;}
.ws2f{word-spacing:-11.955150px;}
.ws87{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws48{word-spacing:-3.227882px;}
.ws4d{word-spacing:-3.048556px;}
.ws60{word-spacing:-2.988780px;}
.ws1e{word-spacing:-2.809453px;}
.ws37{word-spacing:-2.749678px;}
.ws49{word-spacing:-2.689902px;}
.ws52{word-spacing:-2.630126px;}
.ws50{word-spacing:-2.510575px;}
.ws58{word-spacing:-2.450800px;}
.ws27{word-spacing:-2.271473px;}
.wscc{word-spacing:-2.205734px;}
.ws4a{word-spacing:-2.151922px;}
.ws84{word-spacing:-2.032370px;}
.ws41{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws64{word-spacing:-1.853044px;}
.ws82{word-spacing:-1.793268px;}
.wsaa{word-spacing:-1.667750px;}
.ws3b{word-spacing:-1.613941px;}
.ws8f{word-spacing:-1.554166px;}
.wsa5{word-spacing:-1.494390px;}
.wsab{word-spacing:-1.398758px;}
.ws0{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.315063px;}
.ws8e{word-spacing:-1.195512px;}
.ws8{word-spacing:-1.171598px;}
.wsbe{word-spacing:-1.075968px;}
.wsa{word-spacing:-1.046070px;}
.ws33{word-spacing:-1.016185px;}
.wsb3{word-spacing:-0.956410px;}
.wsc9{word-spacing:-0.914573px;}
.ws4f{word-spacing:-0.836858px;}
.ws47{word-spacing:-0.777083px;}
.ws3a{word-spacing:-0.717307px;}
.ws9a{word-spacing:-0.657532px;}
.ws4{word-spacing:-0.627642px;}
.ws5{word-spacing:-0.599494px;}
.ws25{word-spacing:-0.597756px;}
.ws26{word-spacing:-0.537980px;}
.wsc6{word-spacing:-0.484186px;}
.ws3e{word-spacing:-0.478205px;}
.ws7{word-spacing:-0.460271px;}
.ws29{word-spacing:-0.418429px;}
.wsa9{word-spacing:-0.358654px;}
.wsb7{word-spacing:-0.322790px;}
.ws1f{word-spacing:-0.298878px;}
.ws1a{word-spacing:-0.268992px;}
.ws3c{word-spacing:-0.239102px;}
.wsa6{word-spacing:-0.215194px;}
.ws2d{word-spacing:-0.179327px;}
.ws16{word-spacing:-0.161395px;}
.ws22{word-spacing:-0.119551px;}
.wsa8{word-spacing:-0.107597px;}
.ws3d{word-spacing:-0.059776px;}
.ws90{word-spacing:-0.053798px;}
.wsd0{word-spacing:-0.009264px;}
.wsc8{word-spacing:-0.007267px;}
.wsce{word-spacing:-0.006221px;}
.ws2e{word-spacing:-0.002857px;}
.wscb{word-spacing:-0.000221px;}
.ws3{word-spacing:0.000000px;}
.ws91{word-spacing:0.053798px;}
.ws39{word-spacing:0.059776px;}
.wscd{word-spacing:0.107597px;}
.ws21{word-spacing:0.119551px;}
.ws18{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.wsb2{word-spacing:0.215194px;}
.ws31{word-spacing:0.239102px;}
.wsbf{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.wsaf{word-spacing:0.322790px;}
.ws38{word-spacing:0.358654px;}
.ws56{word-spacing:0.418429px;}
.ws61{word-spacing:0.478205px;}
.wsc0{word-spacing:0.484186px;}
.ws9e{word-spacing:0.537980px;}
.ws15{word-spacing:0.537984px;}
.ws71{word-spacing:0.597756px;}
.ws59{word-spacing:0.657532px;}
.wsad{word-spacing:0.699379px;}
.ws46{word-spacing:0.717307px;}
.ws6c{word-spacing:0.742009px;}
.ws6e{word-spacing:0.745424px;}
.ws76{word-spacing:0.777083px;}
.ws97{word-spacing:0.836858px;}
.wsb6{word-spacing:0.860774px;}
.wsb0{word-spacing:0.914573px;}
.ws53{word-spacing:0.956410px;}
.wsac{word-spacing:0.968371px;}
.ws9{word-spacing:1.004227px;}
.ws2a{word-spacing:1.016185px;}
.ws3f{word-spacing:1.075961px;}
.wsbd{word-spacing:1.075968px;}
.wsa7{word-spacing:1.129766px;}
.ws57{word-spacing:1.135736px;}
.wsae{word-spacing:1.183565px;}
.ws98{word-spacing:1.195512px;}
.ws65{word-spacing:1.255288px;}
.wsc7{word-spacing:1.291162px;}
.ws89{word-spacing:1.315063px;}
.ws79{word-spacing:1.374839px;}
.ws7b{word-spacing:1.494390px;}
.ws54{word-spacing:1.613941px;}
.ws2c{word-spacing:1.673717px;}
.ws43{word-spacing:1.733492px;}
.wscf{word-spacing:1.829146px;}
.ws75{word-spacing:1.853044px;}
.ws9d{word-spacing:1.912819px;}
.ws72{word-spacing:1.972595px;}
.ws51{word-spacing:2.032370px;}
.ws5d{word-spacing:2.092146px;}
.ws1b{word-spacing:2.098138px;}
.wsa1{word-spacing:2.151922px;}
.ws8b{word-spacing:2.211697px;}
.ws5a{word-spacing:2.271473px;}
.ws7c{word-spacing:2.331248px;}
.ws69{word-spacing:2.391024px;}
.ws2b{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws4e{word-spacing:2.630126px;}
.ws81{word-spacing:2.689902px;}
.wsca{word-spacing:2.743718px;}
.wsb4{word-spacing:2.797517px;}
.ws42{word-spacing:2.809453px;}
.ws12{word-spacing:2.869236px;}
.ws36{word-spacing:2.929004px;}
.ws78{word-spacing:2.988780px;}
.ws8c{word-spacing:3.108331px;}
.wsb5{word-spacing:3.120307px;}
.ws63{word-spacing:3.168107px;}
.ws1c{word-spacing:3.219667px;}
.wsc4{word-spacing:3.221645px;}
.wsbb{word-spacing:3.221741px;}
.wsbc{word-spacing:3.224035px;}
.ws32{word-spacing:3.227882px;}
.wsb8{word-spacing:3.227904px;}
.ws66{word-spacing:3.287658px;}
.wsc3{word-spacing:3.335501px;}
.ws45{word-spacing:3.407209px;}
.ws5e{word-spacing:3.466985px;}
.wsba{word-spacing:3.496896px;}
.ws23{word-spacing:3.526760px;}
.wsc1{word-spacing:3.550694px;}
.ws1d{word-spacing:3.586536px;}
.ws74{word-spacing:3.706087px;}
.ws80{word-spacing:3.765863px;}
.ws19{word-spacing:3.873485px;}
.ws67{word-spacing:3.885414px;}
.ws14{word-spacing:3.927283px;}
.wsa2{word-spacing:4.004965px;}
.ws62{word-spacing:4.064741px;}
.ws68{word-spacing:4.184292px;}
.ws5c{word-spacing:4.303843px;}
.ws5b{word-spacing:4.363619px;}
.ws30{word-spacing:4.483170px;}
.ws34{word-spacing:4.722272px;}
.ws13{word-spacing:4.734259px;}
.ws10{word-spacing:4.770079px;}
.ws44{word-spacing:4.782048px;}
.ws4b{word-spacing:4.841824px;}
.ws7a{word-spacing:4.845631px;}
.ws11{word-spacing:4.853765px;}
.ws55{word-spacing:4.901599px;}
.ws35{word-spacing:4.961375px;}
.ws5f{word-spacing:5.200477px;}
.wsa4{word-spacing:5.439580px;}
.ws9b{word-spacing:5.559131px;}
.ws70{word-spacing:5.678682px;}
.ws7d{word-spacing:5.738458px;}
.wsc5{word-spacing:5.756429px;}
.ws99{word-spacing:5.798233px;}
.ws17{word-spacing:5.971622px;}
.ws73{word-spacing:5.977560px;}
.ws6a{word-spacing:6.097111px;}
.wsb1{word-spacing:6.336214px;}
.ws4c{word-spacing:6.515540px;}
.ws7e{word-spacing:6.754643px;}
.ws6f{word-spacing:6.814418px;}
.ws86{word-spacing:6.993745px;}
.ws77{word-spacing:7.173072px;}
.ws40{word-spacing:7.412174px;}
.wsa3{word-spacing:7.471950px;}
.ws24{word-spacing:7.591501px;}
.wse{word-spacing:7.782761px;}
.ws8d{word-spacing:7.950155px;}
.ws6b{word-spacing:8.249033px;}
.ws7f{word-spacing:8.308808px;}
.wsc2{word-spacing:9.139786px;}
.ws83{word-spacing:11.058486px;}
.wsc{word-spacing:12.176255px;}
.wsd{word-spacing:16.109478px;}
.wsf{word-spacing:26.109907px;}
.wsb{word-spacing:26.840252px;}
.ws96{word-spacing:175.740264px;}
.ws95{word-spacing:216.871042px;}
.ws93{word-spacing:221.921801px;}
.ws94{word-spacing:236.871059px;}
.wsa0{word-spacing:294.813259px;}
.ws9f{word-spacing:301.508126px;}
.ws88{word-spacing:501.060362px;}
.ws92{word-spacing:550.808750px;}
.ws8a{word-spacing:872.843311px;}
._6{margin-left:-11.943245px;}
._12{margin-left:-7.583934px;}
._9{margin-left:-6.168857px;}
._2{margin-left:-4.644551px;}
._7{margin-left:-3.287658px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._3{width:12.076784px;}
._18{width:13.158199px;}
._17{width:14.234160px;}
._e{width:15.493939px;}
._c{width:16.759158px;}
._f{width:18.231558px;}
._a{width:19.273337px;}
._d{width:20.497190px;}
._14{width:21.501270px;}
._19{width:22.846250px;}
._15{width:24.455788px;}
._1a{width:25.539316px;}
._1e{width:26.547934px;}
._16{width:27.556552px;}
._b{width:28.943539px;}
._5{width:30.587087px;}
._1b{width:32.212992px;}
._13{width:33.302576px;}
._1d{width:35.387155px;}
._1c{width:37.299974px;}
._3e{width:39.111736px;}
._3b{width:40.935907px;}
._3d{width:42.016550px;}
._3f{width:61.868160px;}
._8{width:69.373450px;}
._3c{width:88.767360px;}
._36{width:92.405510px;}
._27{width:164.980656px;}
._22{width:185.423911px;}
._37{width:206.091850px;}
._23{width:220.392637px;}
._20{width:221.575154px;}
._25{width:222.970555px;}
._26{width:225.951768px;}
._24{width:239.737420px;}
._3a{width:316.452026px;}
._38{width:324.701059px;}
._2f{width:371.684681px;}
._29{width:386.628581px;}
._34{width:390.753097px;}
._31{width:398.225047px;}
._32{width:399.779213px;}
._39{width:404.919914px;}
._33{width:408.207572px;}
._28{width:413.168947px;}
._2d{width:439.888640px;}
._2c{width:446.463956px;}
._30{width:507.016639px;}
._2a{width:521.960539px;}
._2b{width:536.904439px;}
._21{width:558.602982px;}
._2e{width:561.771089px;}
._1f{width:580.600403px;}
._10{width:1027.263918px;}
._35{width:2533.412700px;}
._11{width:2557.322700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(54,121,123);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fsb{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs8{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fsa{font-size:62.286600px;}
.fsc{font-size:83.686200px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1b{bottom:16.015847px;}
.y48{bottom:31.890000px;}
.y115{bottom:91.800000px;}
.yf7{bottom:96.774000px;}
.y1ba{bottom:100.035000px;}
.y14a{bottom:101.385000px;}
.y19{bottom:104.646000px;}
.ya8{bottom:107.193000px;}
.y7f{bottom:107.641500px;}
.y114{bottom:110.629500px;}
.y47{bottom:113.740500px;}
.yf6{bottom:115.603500px;}
.y214{bottom:115.621500px;}
.y178{bottom:118.060500px;}
.y136{bottom:118.450500px;}
.y1b9{bottom:118.864500px;}
.y149{bottom:120.213000px;}
.y18{bottom:122.535000px;}
.y1ce{bottom:124.723500px;}
.ya7{bottom:126.022500px;}
.y7e{bottom:126.471000px;}
.y113{bottom:129.459000px;}
.y46{bottom:132.570000px;}
.y213{bottom:132.882000px;}
.yf5{bottom:134.433000px;}
.y177{bottom:136.888500px;}
.y135{bottom:137.280000px;}
.y1dc{bottom:137.341500px;}
.y1b8{bottom:137.694000px;}
.y148{bottom:139.042500px;}
.y17{bottom:140.422500px;}
.y1cd{bottom:143.553000px;}
.ya6{bottom:144.852000px;}
.y1ab{bottom:144.988500px;}
.y7d{bottom:145.300500px;}
.y112{bottom:148.288500px;}
.y212{bottom:150.142500px;}
.y45{bottom:151.399500px;}
.yf4{bottom:153.262500px;}
.y176{bottom:155.718000px;}
.y134{bottom:156.109500px;}
.y1db{bottom:156.171000px;}
.y1b7{bottom:156.523500px;}
.y147{bottom:157.872000px;}
.y16{bottom:158.310000px;}
.y1cc{bottom:162.382500px;}
.ya5{bottom:163.681500px;}
.y1aa{bottom:163.818000px;}
.y7c{bottom:164.130000px;}
.y111{bottom:167.118000px;}
.y211{bottom:167.403000px;}
.y44{bottom:170.229000px;}
.yf3{bottom:172.092000px;}
.y175{bottom:174.547500px;}
.y133{bottom:174.939000px;}
.y1da{bottom:175.000500px;}
.y1b6{bottom:175.353000px;}
.y15{bottom:176.199000px;}
.y146{bottom:176.701500px;}
.y1cb{bottom:181.212000px;}
.ya4{bottom:182.511000px;}
.y1a9{bottom:182.647500px;}
.y7b{bottom:182.959500px;}
.y210{bottom:184.662000px;}
.y110{bottom:185.947500px;}
.y43{bottom:189.058500px;}
.yf2{bottom:190.921500px;}
.y174{bottom:193.377000px;}
.y1d9{bottom:193.830000px;}
.y14{bottom:194.086500px;}
.y1b5{bottom:194.182500px;}
.y145{bottom:195.531000px;}
.y1ca{bottom:200.041500px;}
.ya3{bottom:201.340500px;}
.y1a8{bottom:201.477000px;}
.y7a{bottom:201.789000px;}
.y20f{bottom:201.922500px;}
.y132{bottom:202.309500px;}
.y10f{bottom:204.777000px;}
.y42{bottom:207.888000px;}
.yf1{bottom:209.751000px;}
.y131{bottom:211.753500px;}
.y13{bottom:211.974000px;}
.y173{bottom:212.206500px;}
.y1d8{bottom:212.659500px;}
.y1b4{bottom:213.010500px;}
.y1c9{bottom:218.871000px;}
.y20e{bottom:219.183000px;}
.ya2{bottom:220.170000px;}
.y1a7{bottom:220.306500px;}
.y79{bottom:220.618500px;}
.y10e{bottom:223.606500px;}
.y41{bottom:226.717500px;}
.yf0{bottom:228.580500px;}
.y12{bottom:229.863000px;}
.y172{bottom:231.036000px;}
.y1d7{bottom:231.487500px;}
.y1b3{bottom:231.840000px;}
.y20d{bottom:236.443500px;}
.y1c8{bottom:237.700500px;}
.y130{bottom:238.696500px;}
.ya1{bottom:238.999500px;}
.y1a6{bottom:239.136000px;}
.y78{bottom:239.446500px;}
.y143{bottom:241.441500px;}
.y10d{bottom:242.436000px;}
.y40{bottom:245.547000px;}
.y1bf{bottom:249.412500px;}
.y171{bottom:249.865500px;}
.y1d6{bottom:250.317000px;}
.yef{bottom:251.892000px;}
.y20c{bottom:253.704000px;}
.y1c7{bottom:256.530000px;}
.y12f{bottom:257.526000px;}
.ya0{bottom:257.829000px;}
.y1a5{bottom:257.965500px;}
.y77{bottom:258.276000px;}
.y144{bottom:259.225500px;}
.y142{bottom:259.374000px;}
.y242{bottom:259.846500px;}
.y3f{bottom:264.376500px;}
.y1b2{bottom:265.407000px;}
.y1be{bottom:268.645500px;}
.y170{bottom:268.695000px;}
.y10c{bottom:268.737000px;}
.y1d5{bottom:269.146500px;}
.y20b{bottom:270.964500px;}
.y1c6{bottom:275.359500px;}
.y9f{bottom:276.658500px;}
.y1a4{bottom:276.795000px;}
.y76{bottom:277.105500px;}
.y141{bottom:277.308000px;}
.y3e{bottom:283.206000px;}
.y1b1{bottom:284.640000px;}
.yee{bottom:285.516000px;}
.y16f{bottom:287.524500px;}
.y10b{bottom:287.566500px;}
.y1bd{bottom:287.878500px;}
.y1d4{bottom:287.976000px;}
.y20a{bottom:288.225000px;}
.y12e{bottom:292.047000px;}
.y241{bottom:294.366000px;}
.y9e{bottom:295.488000px;}
.y1a3{bottom:295.624500px;}
.y75{bottom:295.935000px;}
.y11{bottom:300.154500px;}
.y3d{bottom:302.035500px;}
.y140{bottom:302.742000px;}
.y1b0{bottom:303.871500px;}
.yed{bottom:304.345500px;}
.y209{bottom:305.485500px;}
.y16e{bottom:306.354000px;}
.y10a{bottom:306.396000px;}
.y1d3{bottom:306.805500px;}
.y1c5{bottom:308.925000px;}
.yd0{bottom:309.834000px;}
.y240{bottom:311.626500px;}
.y9d{bottom:314.317500px;}
.y1a2{bottom:314.454000px;}
.y74{bottom:314.764500px;}
.y10{bottom:318.043500px;}
.y13f{bottom:320.674500px;}
.y3c{bottom:320.865000px;}
.y208{bottom:322.746000px;}
.yec{bottom:323.175000px;}
.y16d{bottom:325.183500px;}
.y109{bottom:325.225500px;}
.y12d{bottom:326.568000px;}
.y1c4{bottom:328.158000px;}
.ycf{bottom:328.663500px;}
.y23f{bottom:328.887000px;}
.y1d2{bottom:330.118500px;}
.y9c{bottom:333.145500px;}
.y1a1{bottom:333.283500px;}
.y73{bottom:333.594000px;}
.yf{bottom:335.931000px;}
.y3b{bottom:339.694500px;}
.y207{bottom:340.005000px;}
.yeb{bottom:342.004500px;}
.y108{bottom:344.055000px;}
.y12c{bottom:345.397500px;}
.y13e{bottom:346.108500px;}
.y23e{bottom:346.147500px;}
.y1c3{bottom:347.391000px;}
.yce{bottom:347.493000px;}
.y16c{bottom:348.496500px;}
.y9b{bottom:351.975000px;}
.y1a0{bottom:352.113000px;}
.y72{bottom:352.423500px;}
.ye{bottom:353.818500px;}
.y206{bottom:357.265500px;}
.y3a{bottom:358.524000px;}
.y1d1{bottom:360.546000px;}
.yea{bottom:360.834000px;}
.y107{bottom:362.884500px;}
.y23d{bottom:363.408000px;}
.y12b{bottom:364.227000px;}
.ycd{bottom:366.322500px;}
.y9a{bottom:370.804500px;}
.y19f{bottom:370.942500px;}
.y71{bottom:371.253000px;}
.y13d{bottom:371.542500px;}
.y205{bottom:374.526000px;}
.y39{bottom:377.353500px;}
.ye9{bottom:379.663500px;}
.y1d0{bottom:379.779000px;}
.y13c{bottom:380.359500px;}
.y23c{bottom:380.668500px;}
.yd{bottom:380.673000px;}
.y106{bottom:381.714000px;}
.y12a{bottom:383.056500px;}
.ycc{bottom:385.152000px;}
.y99{bottom:389.634000px;}
.y19e{bottom:389.772000px;}
.y70{bottom:390.082500px;}
.y16b{bottom:391.269000px;}
.y204{bottom:391.786500px;}
.y38{bottom:396.183000px;}
.y23b{bottom:397.929000px;}
.ye8{bottom:398.493000px;}
.yc{bottom:398.562000px;}
.y105{bottom:400.543500px;}
.y129{bottom:401.886000px;}
.ycb{bottom:403.981500px;}
.y98{bottom:408.463500px;}
.y19d{bottom:408.601500px;}
.y6f{bottom:408.912000px;}
.y203{bottom:409.047000px;}
.y16a{bottom:409.201500px;}
.y13b{bottom:414.909000px;}
.y37{bottom:415.012500px;}
.y23a{bottom:415.188000px;}
.yb{bottom:416.449500px;}
.ye7{bottom:417.322500px;}
.y104{bottom:419.373000px;}
.y128{bottom:420.715500px;}
.yca{bottom:422.811000px;}
.y13a{bottom:423.726000px;}
.y202{bottom:426.307500px;}
.y169{bottom:427.134000px;}
.y97{bottom:427.293000px;}
.y19c{bottom:427.431000px;}
.y6e{bottom:427.741500px;}
.y239{bottom:432.448500px;}
.y36{bottom:433.842000px;}
.ye6{bottom:436.152000px;}
.y103{bottom:438.202500px;}
.yc9{bottom:441.639000px;}
.y201{bottom:443.568000px;}
.ya{bottom:444.798000px;}
.y168{bottom:445.066500px;}
.y96{bottom:446.122500px;}
.y19b{bottom:446.260500px;}
.y6d{bottom:446.571000px;}
.y238{bottom:449.709000px;}
.y35{bottom:452.670000px;}
.y127{bottom:454.465500px;}
.ye5{bottom:454.981500px;}
.y102{bottom:457.032000px;}
.yc8{bottom:460.468500px;}
.y200{bottom:460.828500px;}
.y9{bottom:462.685500px;}
.y167{bottom:462.999000px;}
.y95{bottom:464.952000px;}
.y19a{bottom:465.088500px;}
.y6c{bottom:465.400500px;}
.y139{bottom:465.507000px;}
.y237{bottom:466.969500px;}
.y34{bottom:471.499500px;}
.y101{bottom:475.861500px;}
.y1ff{bottom:478.087500px;}
.yc7{bottom:479.298000px;}
.y166{bottom:480.931500px;}
.y94{bottom:483.781500px;}
.y199{bottom:483.918000px;}
.y6b{bottom:484.230000px;}
.y126{bottom:484.987500px;}
.ye4{bottom:489.502500px;}
.y8{bottom:489.540000px;}
.y33{bottom:490.329000px;}
.y1fe{bottom:495.348000px;}
.yc6{bottom:498.127500px;}
.y165{bottom:498.865500px;}
.y236{bottom:501.490500px;}
.y100{bottom:502.162500px;}
.y93{bottom:502.611000px;}
.y198{bottom:502.747500px;}
.y6a{bottom:503.059500px;}
.y125{bottom:504.018000px;}
.y7{bottom:507.429000px;}
.y1fd{bottom:512.608500px;}
.y32{bottom:513.642000px;}
.y164{bottom:516.798000px;}
.yc5{bottom:516.957000px;}
.y235{bottom:518.751000px;}
.yff{bottom:520.992000px;}
.y92{bottom:521.440500px;}
.y197{bottom:521.577000px;}
.y69{bottom:521.889000px;}
.y124{bottom:522.847500px;}
.y6{bottom:525.316500px;}
.y1fc{bottom:529.869000px;}
.y31{bottom:533.817000px;}
.y163{bottom:534.730500px;}
.yc4{bottom:535.786500px;}
.y234{bottom:536.011500px;}
.yfe{bottom:539.821500px;}
.y91{bottom:540.270000px;}
.y196{bottom:540.406500px;}
.y68{bottom:540.718500px;}
.ye2{bottom:541.263000px;}
.ye3{bottom:541.318500px;}
.y123{bottom:541.677000px;}
.y5{bottom:543.204000px;}
.y1fb{bottom:547.129500px;}
.y233{bottom:553.272000px;}
.yc3{bottom:554.616000px;}
.yfd{bottom:558.651000px;}
.y90{bottom:559.099500px;}
.y195{bottom:559.236000px;}
.y67{bottom:559.548000px;}
.y162{bottom:560.164500px;}
.y122{bottom:560.506500px;}
.y4{bottom:561.093000px;}
.y1fa{bottom:564.390000px;}
.y232{bottom:570.531000px;}
.ye1{bottom:571.786500px;}
.yc2{bottom:573.445500px;}
.yfc{bottom:577.480500px;}
.y8f{bottom:577.929000px;}
.y194{bottom:578.065500px;}
.y66{bottom:578.377500px;}
.y1{bottom:578.980464px;}
.y1f9{bottom:581.650500px;}
.y231{bottom:587.791500px;}
.yc1{bottom:592.275000px;}
.y161{bottom:592.830000px;}
.y121{bottom:594.072000px;}
.ye0{bottom:594.727500px;}
.yfb{bottom:596.310000px;}
.y8e{bottom:596.758500px;}
.y193{bottom:596.895000px;}
.y65{bottom:597.207000px;}
.y1f8{bottom:598.911000px;}
.y230{bottom:605.052000px;}
.y30{bottom:608.967000px;}
.ydf{bottom:613.557000px;}
.y8d{bottom:615.588000px;}
.y192{bottom:615.724500px;}
.y64{bottom:616.036500px;}
.y1f7{bottom:616.171500px;}
.yfa{bottom:619.623000px;}
.y22f{bottom:622.312500px;}
.y160{bottom:629.934000px;}
.yde{bottom:632.386500px;}
.y1f6{bottom:633.430500px;}
.y8c{bottom:634.417500px;}
.y191{bottom:634.554000px;}
.y63{bottom:634.866000px;}
.y22e{bottom:639.573000px;}
.y2f{bottom:646.356000px;}
.y15f{bottom:648.763500px;}
.yc0{bottom:649.212000px;}
.y1f5{bottom:650.691000px;}
.ydd{bottom:651.216000px;}
.y8b{bottom:653.247000px;}
.y190{bottom:653.383500px;}
.y62{bottom:653.695500px;}
.y22d{bottom:656.833500px;}
.y2e{bottom:665.814000px;}
.y15e{bottom:667.593000px;}
.y1f4{bottom:667.951500px;}
.ybf{bottom:668.041500px;}
.ydc{bottom:670.045500px;}
.y1bc{bottom:671.409000px;}
.y8a{bottom:672.076500px;}
.y18f{bottom:672.213000px;}
.y61{bottom:672.525000px;}
.y22c{bottom:674.094000px;}
.y1f3{bottom:685.212000px;}
.y2d{bottom:685.270500px;}
.y15d{bottom:686.422500px;}
.ybe{bottom:686.871000px;}
.ydb{bottom:688.875000px;}
.y1af{bottom:689.079000px;}
.y1bb{bottom:690.642000px;}
.y89{bottom:690.906000px;}
.y18e{bottom:691.042500px;}
.y60{bottom:691.354500px;}
.y1f2{bottom:702.472500px;}
.y2c{bottom:704.727000px;}
.y15c{bottom:705.252000px;}
.ybd{bottom:705.700500px;}
.yda{bottom:707.704500px;}
.y1ae{bottom:708.312000px;}
.y22b{bottom:708.613500px;}
.y88{bottom:709.735500px;}
.y18d{bottom:709.872000px;}
.y5f{bottom:710.184000px;}
.y1f1{bottom:719.733000px;}
.y15b{bottom:724.081500px;}
.y2b{bottom:724.185000px;}
.ybc{bottom:724.530000px;}
.y22a{bottom:725.874000px;}
.yd9{bottom:726.534000px;}
.y1ad{bottom:727.545000px;}
.y87{bottom:728.565000px;}
.y18c{bottom:728.701500px;}
.y5e{bottom:729.013500px;}
.y1c2{bottom:729.621000px;}
.y1f0{bottom:736.993500px;}
.y15a{bottom:742.911000px;}
.y229{bottom:743.134500px;}
.ybb{bottom:743.359500px;}
.y2a{bottom:743.641500px;}
.yd8{bottom:745.363500px;}
.y1ac{bottom:746.776500px;}
.y86{bottom:747.394500px;}
.y18b{bottom:747.531000px;}
.y5d{bottom:747.843000px;}
.y1c1{bottom:748.854000px;}
.y1ef{bottom:754.254000px;}
.y228{bottom:760.395000px;}
.y159{bottom:761.740500px;}
.yba{bottom:762.189000px;}
.y29{bottom:763.099500px;}
.yd7{bottom:764.193000px;}
.y1cf{bottom:765.595500px;}
.y85{bottom:766.224000px;}
.y18a{bottom:766.360500px;}
.y5c{bottom:766.671000px;}
.y1c0{bottom:768.087000px;}
.y1ed{bottom:771.513000px;}
.y1ee{bottom:771.514500px;}
.y227{bottom:777.655500px;}
.y158{bottom:780.570000px;}
.yb9{bottom:781.018500px;}
.y28{bottom:782.556000px;}
.yd6{bottom:783.022500px;}
.y84{bottom:785.053500px;}
.y189{bottom:785.190000px;}
.y5b{bottom:785.500500px;}
.y1ec{bottom:788.773500px;}
.y226{bottom:794.916000px;}
.y157{bottom:799.399500px;}
.yb8{bottom:799.848000px;}
.yd5{bottom:801.852000px;}
.y27{bottom:802.012500px;}
.y83{bottom:803.883000px;}
.y188{bottom:804.019500px;}
.y5a{bottom:804.330000px;}
.y1eb{bottom:806.034000px;}
.y225{bottom:812.176500px;}
.y156{bottom:818.229000px;}
.yb7{bottom:818.677500px;}
.yd4{bottom:820.681500px;}
.y26{bottom:821.470500px;}
.y82{bottom:822.712500px;}
.y187{bottom:822.849000px;}
.y59{bottom:823.159500px;}
.y1ea{bottom:823.294500px;}
.y224{bottom:829.437000px;}
.y155{bottom:837.058500px;}
.yb6{bottom:837.507000px;}
.yd3{bottom:839.511000px;}
.y1e9{bottom:840.555000px;}
.y25{bottom:840.927000px;}
.y81{bottom:841.540500px;}
.y186{bottom:841.678500px;}
.y58{bottom:841.989000px;}
.y223{bottom:846.697500px;}
.y120{bottom:850.486500px;}
.y154{bottom:855.888000px;}
.yb5{bottom:856.335000px;}
.y1e8{bottom:857.815500px;}
.yf9{bottom:860.370000px;}
.y24{bottom:860.383500px;}
.y57{bottom:860.818500px;}
.yd2{bottom:862.822500px;}
.y222{bottom:863.956500px;}
.y80{bottom:864.853500px;}
.y11f{bottom:869.316000px;}
.y153{bottom:874.717500px;}
.y1e7{bottom:875.076000px;}
.yb4{bottom:875.164500px;}
.y138{bottom:879.199500px;}
.y56{bottom:879.648000px;}
.y23{bottom:879.841500px;}
.y221{bottom:881.217000px;}
.yf8{bottom:883.683000px;}
.y185{bottom:887.589000px;}
.y11e{bottom:888.145500px;}
.y1e6{bottom:892.336500px;}
.yd1{bottom:893.250000px;}
.y152{bottom:893.547000px;}
.yb3{bottom:893.994000px;}
.y55{bottom:898.477500px;}
.y137{bottom:902.512500px;}
.y184{bottom:905.521500px;}
.y11d{bottom:906.973500px;}
.y1e5{bottom:909.597000px;}
.y151{bottom:912.376500px;}
.yb2{bottom:912.823500px;}
.y220{bottom:915.738000px;}
.y54{bottom:917.307000px;}
.y22{bottom:918.426000px;}
.y183{bottom:923.454000px;}
.y11c{bottom:925.803000px;}
.y1e4{bottom:926.856000px;}
.y150{bottom:931.206000px;}
.yb1{bottom:931.653000px;}
.y21f{bottom:932.998500px;}
.y21{bottom:934.566000px;}
.y53{bottom:936.136500px;}
.y182{bottom:941.386500px;}
.y1e3{bottom:948.600000px;}
.y11a{bottom:949.126500px;}
.y14f{bottom:950.034000px;}
.y21e{bottom:950.259000px;}
.yb0{bottom:950.482500px;}
.y20{bottom:950.706000px;}
.y52{bottom:954.966000px;}
.y117{bottom:955.318500px;}
.y11b{bottom:956.125500px;}
.y181{bottom:959.319000px;}
.y119{bottom:962.461500px;}
.y116{bottom:965.569500px;}
.y21d{bottom:967.519500px;}
.y14e{bottom:968.863500px;}
.yaf{bottom:969.312000px;}
.y51{bottom:973.795500px;}
.y180{bottom:977.251500px;}
.y118{bottom:981.709500px;}
.y1e2{bottom:982.224000px;}
.y21c{bottom:984.780000px;}
.y14d{bottom:987.693000px;}
.yae{bottom:988.141500px;}
.y50{bottom:992.625000px;}
.y17f{bottom:995.185500px;}
.y1f{bottom:999.721500px;}
.y21a{bottom:1002.039000px;}
.y21b{bottom:1002.040500px;}
.y14c{bottom:1006.522500px;}
.yad{bottom:1006.971000px;}
.y1e1{bottom:1008.765000px;}
.y4f{bottom:1011.454500px;}
.y17e{bottom:1013.118000px;}
.y219{bottom:1019.299500px;}
.yac{bottom:1025.800500px;}
.y1e0{bottom:1026.339000px;}
.y14b{bottom:1029.835500px;}
.y4e{bottom:1030.284000px;}
.y17d{bottom:1031.050500px;}
.y1e{bottom:1036.485000px;}
.y218{bottom:1036.560000px;}
.y1df{bottom:1043.913000px;}
.yab{bottom:1044.630000px;}
.y4d{bottom:1049.113500px;}
.y217{bottom:1053.820500px;}
.y17b{bottom:1056.484500px;}
.yaa{bottom:1063.459500px;}
.y1d{bottom:1064.728500px;}
.y17a{bottom:1065.301500px;}
.y4c{bottom:1067.943000px;}
.y1de{bottom:1070.454000px;}
.y216{bottom:1071.081000px;}
.y17c{bottom:1074.417000px;}
.ya9{bottom:1082.289000px;}
.y4b{bottom:1086.772500px;}
.y1dd{bottom:1088.028000px;}
.y215{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4a{bottom:1105.602000px;}
.y179{bottom:1107.082500px;}
.y1a{bottom:1136.460000px;}
.y49{bottom:1168.366500px;}
.hf{height:5.109221px;}
.h1a{height:5.259221px;}
.h2{height:25.508090px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.h5{height:36.319550px;}
.h13{height:38.615038px;}
.hc{height:38.896243px;}
.h16{height:39.432893px;}
.hb{height:41.508281px;}
.ha{height:43.217759px;}
.h8{height:43.815515px;}
.hd{height:46.697011px;}
.h6{height:50.930649px;}
.he{height:51.885221px;}
.h17{height:65.024177px;}
.h9{height:77.792486px;}
.h1d{height:79.679759px;}
.h15{height:80.618278px;}
.h21{height:87.147221px;}
.h20{height:87.153221px;}
.h1f{height:88.347221px;}
.h1c{height:89.427221px;}
.h1b{height:89.661221px;}
.h14{height:92.355221px;}
.h7{height:94.491000px;}
.h1e{height:114.947759px;}
.h12{height:124.263024px;}
.h19{height:124.479024px;}
.h10{height:127.203221px;}
.h11{height:127.425221px;}
.h18{height:155.199221px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:58.555600px;}
.x95{left:85.848000px;}
.x7e{left:247.348500px;}
.x6{left:248.526000px;}
.x5{left:249.591000px;}
.x8c{left:262.893000px;}
.x7d{left:269.149500px;}
.x86{left:273.948000px;}
.x8{left:281.479500px;}
.x25{left:286.291500px;}
.x69{left:290.989500px;}
.x5f{left:295.915500px;}
.x90{left:298.587000px;}
.x38{left:300.207000px;}
.x26{left:301.234500px;}
.x8f{left:302.322000px;}
.x27{left:305.046000px;}
.x91{left:306.820500px;}
.x7{left:308.136000px;}
.x94{left:310.992000px;}
.x51{left:312.220500px;}
.x92{left:313.578000px;}
.x39{left:315.150000px;}
.x58{left:317.887500px;}
.x28{left:319.989000px;}
.x3a{left:326.445000px;}
.x87{left:328.522500px;}
.x7f{left:331.350000px;}
.x41{left:333.040500px;}
.x3b{left:341.389500px;}
.x60{left:342.904500px;}
.x80{left:346.293000px;}
.x42{left:347.983500px;}
.x61{left:360.283500px;}
.x78{left:362.967000px;}
.x31{left:364.152000px;}
.x7b{left:366.636000px;}
.x7c{left:368.503500px;}
.x4d{left:370.171500px;}
.x7a{left:372.142500px;}
.x32{left:379.096500px;}
.x19{left:382.249500px;}
.x2e{left:384.091500px;}
.x6c{left:385.606500px;}
.x93{left:390.679500px;}
.x4e{left:392.152500px;}
.x1a{left:397.194000px;}
.x2f{left:399.034500px;}
.x1b{left:400.876500px;}
.x6d{left:404.661000px;}
.x36{left:407.908500px;}
.x1c{left:415.821000px;}
.x37{left:422.853000px;}
.x5a{left:430.453500px;}
.x52{left:437.172000px;}
.x3c{left:443.637000px;}
.x46{left:446.790000px;}
.xb{left:450.379500px;}
.x47{left:454.852500px;}
.xc{left:457.852500px;}
.x44{left:463.804500px;}
.x77{left:473.476500px;}
.x45{left:475.651500px;}
.x4f{left:480.979500px;}
.x88{left:483.949500px;}
.x75{left:489.145500px;}
.x74{left:490.944000px;}
.x4a{left:494.506500px;}
.x50{left:495.922500px;}
.x89{left:498.894000px;}
.x8a{left:502.555500px;}
.x8b{left:517.498500px;}
.x48{left:525.136500px;}
.x67{left:526.173000px;}
.x76{left:543.627000px;}
.x79{left:554.422500px;}
.x65{left:555.814500px;}
.x5b{left:557.410500px;}
.x5c{left:560.124000px;}
.x68{left:567.387000px;}
.x53{left:578.448000px;}
.x2b{left:582.802500px;}
.x64{left:583.929000px;}
.x54{left:585.919500px;}
.x5d{left:587.466000px;}
.x59{left:590.338500px;}
.x3e{left:591.603000px;}
.x55{left:594.684000px;}
.x2c{left:597.747000px;}
.x70{left:599.802000px;}
.x66{left:600.864000px;}
.x49{left:605.992500px;}
.x1e{left:607.060500px;}
.x71{left:609.915000px;}
.x6e{left:613.272000px;}
.x56{left:615.708000px;}
.x13{left:618.853500px;}
.x1f{left:622.003500px;}
.x6f{left:623.380500px;}
.x23{left:625.233000px;}
.x14{left:626.325000px;}
.x5e{left:635.242500px;}
.x22{left:636.912000px;}
.x24{left:640.176000px;}
.x81{left:642.574500px;}
.x3f{left:643.759500px;}
.x9{left:648.367500px;}
.x82{left:650.046000px;}
.x83{left:653.857500px;}
.xa{left:655.839000px;}
.x40{left:658.704000px;}
.x15{left:664.041000px;}
.x84{left:668.800500px;}
.x16{left:671.512500px;}
.x85{left:672.612000px;}
.x72{left:678.396000px;}
.x33{left:681.913500px;}
.x73{left:688.479000px;}
.x29{left:697.077000px;}
.x34{left:700.519500px;}
.x2a{left:712.021500px;}
.x35{left:715.462500px;}
.x62{left:716.602500px;}
.x20{left:719.493000px;}
.x8e{left:721.303500px;}
.x3d{left:729.937500px;}
.x21{left:734.437500px;}
.x8d{left:737.494500px;}
.xf{left:740.890500px;}
.x2d{left:742.468500px;}
.x43{left:744.490500px;}
.x10{left:748.362000px;}
.x11{left:752.173500px;}
.x1d{left:755.130000px;}
.xd{left:757.906500px;}
.x12{left:759.645000px;}
.xe{left:765.379500px;}
.x63{left:767.179500px;}
.x96{left:776.082000px;}
.x57{left:781.182000px;}
.x4b{left:788.359500px;}
.x6a{left:796.069500px;}
.x97{left:802.980000px;}
.x98{left:810.400500px;}
.x4c{left:813.132000px;}
.x17{left:818.037000px;}
.x30{left:825.169500px;}
.x6b{left:828.015000px;}
.x18{left:832.981500px;}
.x99{left:837.300000px;}
@media print{
.v14{vertical-align:-74.944000pt;}
.v3{vertical-align:-52.032000pt;}
.v2{vertical-align:-41.578667pt;}
.v4{vertical-align:-17.002667pt;}
.v1{vertical-align:-10.453333pt;}
.va{vertical-align:-9.301333pt;}
.v9{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:7.968000pt;}
.v10{vertical-align:10.453333pt;}
.vf{vertical-align:19.914667pt;}
.v16{vertical-align:31.349333pt;}
.v15{vertical-align:32.410667pt;}
.v6{vertical-align:33.578667pt;}
.vb{vertical-align:35.973333pt;}
.v8{vertical-align:56.693333pt;}
.v17{vertical-align:63.760000pt;}
.v7{vertical-align:66.949333pt;}
.v12{vertical-align:74.944000pt;}
.ve{vertical-align:81.381333pt;}
.vd{vertical-align:91.834667pt;}
.v5{vertical-align:108.528000pt;}
.v13{vertical-align:118.976000pt;}
.vc{vertical-align:133.408000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.004267pt;}
.ls1c{letter-spacing:0.217570pt;}
.ls1b{letter-spacing:0.220258pt;}
.ls10{letter-spacing:0.222903pt;}
.lsf{letter-spacing:0.225591pt;}
.lsc{letter-spacing:0.482502pt;}
.ls9{letter-spacing:0.487835pt;}
.ls26{letter-spacing:0.502349pt;}
.ls29{letter-spacing:0.507682pt;}
.ls39{letter-spacing:0.508258pt;}
.ls47{letter-spacing:0.621593pt;}
.ls16{letter-spacing:0.622612pt;}
.ls32{letter-spacing:0.665067pt;}
.ls2c{letter-spacing:0.665570pt;}
.ls7{letter-spacing:0.883733pt;}
.ls3c{letter-spacing:0.889067pt;}
.ls34{letter-spacing:1.009015pt;}
.ls2a{letter-spacing:1.009547pt;}
.ls27{letter-spacing:1.056153pt;}
.ls4{letter-spacing:1.133683pt;}
.ls42{letter-spacing:1.163850pt;}
.ls3d{letter-spacing:1.166400pt;}
.ls4d{letter-spacing:1.168015pt;}
.ls2d{letter-spacing:1.169183pt;}
.ls35{letter-spacing:1.211785pt;}
.ls17{letter-spacing:1.262881pt;}
.ls8{letter-spacing:1.291174pt;}
.lsb{letter-spacing:1.296508pt;}
.ls2b{letter-spacing:1.328347pt;}
.ls21{letter-spacing:1.329506pt;}
.ls0{letter-spacing:1.654338pt;}
.lse{letter-spacing:1.683945pt;}
.ls28{letter-spacing:2.377067pt;}
.ls25{letter-spacing:2.382400pt;}
.ls38{letter-spacing:2.558612pt;}
.ls37{letter-spacing:2.563945pt;}
.lsd{letter-spacing:2.657067pt;}
.ls36{letter-spacing:2.822400pt;}
.ls4b{letter-spacing:3.275878pt;}
.ls1d{letter-spacing:3.323733pt;}
.ls49{letter-spacing:3.440508pt;}
.ls3a{letter-spacing:4.027785pt;}
.ls11{letter-spacing:4.107174pt;}
.ls18{letter-spacing:4.372214pt;}
.ls1{letter-spacing:8.872267pt;}
.ls3{letter-spacing:10.631867pt;}
.ls31{letter-spacing:10.968429pt;}
.ls14{letter-spacing:10.996541pt;}
.ls19{letter-spacing:11.614612pt;}
.ls15{letter-spacing:11.632696pt;}
.ls1a{letter-spacing:11.635096pt;}
.ls22{letter-spacing:11.658819pt;}
.ls30{letter-spacing:11.662903pt;}
.ls5c{letter-spacing:11.696746pt;}
.ls5b{letter-spacing:11.954133pt;}
.ls58{letter-spacing:12.008254pt;}
.ls55{letter-spacing:12.645860pt;}
.ls5a{letter-spacing:12.964663pt;}
.ls56{letter-spacing:13.177199pt;}
.ls57{letter-spacing:13.389734pt;}
.ls6{letter-spacing:13.442868pt;}
.ls54{letter-spacing:13.549136pt;}
.ls24{letter-spacing:13.950400pt;}
.ls13{letter-spacing:15.395096pt;}
.lsa{letter-spacing:15.942400pt;}
.ls12{letter-spacing:16.046612pt;}
.ls20{letter-spacing:16.061762pt;}
.ls4e{letter-spacing:16.446172pt;}
.ls59{letter-spacing:16.737168pt;}
.ls44{letter-spacing:16.929212pt;}
.ls33{letter-spacing:17.972214pt;}
.ls45{letter-spacing:18.541762pt;}
.ls4f{letter-spacing:18.584838pt;}
.ls46{letter-spacing:18.834118pt;}
.ls4a{letter-spacing:18.864508pt;}
.ls1f{letter-spacing:18.869841pt;}
.ls2e{letter-spacing:21.361212pt;}
.ls2{letter-spacing:22.316137pt;}
.ls50{letter-spacing:27.849279pt;}
.ls3e{letter-spacing:27.898933pt;}
.ls53{letter-spacing:30.672508pt;}
.ls40{letter-spacing:53.773762pt;}
.ls43{letter-spacing:54.435096pt;}
.ls3f{letter-spacing:59.734545pt;}
.ls52{letter-spacing:61.587733pt;}
.ls51{letter-spacing:64.368508pt;}
.ls2f{letter-spacing:92.515096pt;}
.ls48{letter-spacing:110.373841pt;}
.ls41{letter-spacing:396.745067pt;}
.ls3b{letter-spacing:581.070612pt;}
.ls1e{letter-spacing:639.155945pt;}
.ls4c{letter-spacing:798.181867pt;}
.ls23{letter-spacing:810.854400pt;}
.ws6d{word-spacing:-13.283467pt;}
.wsb9{word-spacing:-11.955200pt;}
.ws85{word-spacing:-11.105013pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws87{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws48{word-spacing:-2.869229pt;}
.ws4d{word-spacing:-2.709827pt;}
.ws60{word-spacing:-2.656693pt;}
.ws1e{word-spacing:-2.497292pt;}
.ws37{word-spacing:-2.444158pt;}
.ws49{word-spacing:-2.391024pt;}
.ws52{word-spacing:-2.337890pt;}
.ws50{word-spacing:-2.231622pt;}
.ws58{word-spacing:-2.178489pt;}
.ws27{word-spacing:-2.019087pt;}
.wscc{word-spacing:-1.960653pt;}
.ws4a{word-spacing:-1.912819pt;}
.ws84{word-spacing:-1.806551pt;}
.ws41{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws64{word-spacing:-1.647150pt;}
.ws82{word-spacing:-1.594016pt;}
.wsaa{word-spacing:-1.482445pt;}
.ws3b{word-spacing:-1.434614pt;}
.ws8f{word-spacing:-1.381481pt;}
.wsa5{word-spacing:-1.328347pt;}
.wsab{word-spacing:-1.243341pt;}
.ws0{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.168945pt;}
.ws8e{word-spacing:-1.062677pt;}
.ws8{word-spacing:-1.041421pt;}
.wsbe{word-spacing:-0.956416pt;}
.wsa{word-spacing:-0.929840pt;}
.ws33{word-spacing:-0.903276pt;}
.wsb3{word-spacing:-0.850142pt;}
.wsc9{word-spacing:-0.812954pt;}
.ws4f{word-spacing:-0.743874pt;}
.ws47{word-spacing:-0.690740pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws9a{word-spacing:-0.584473pt;}
.ws4{word-spacing:-0.557904pt;}
.ws5{word-spacing:-0.532883pt;}
.ws25{word-spacing:-0.531339pt;}
.ws26{word-spacing:-0.478205pt;}
.wsc6{word-spacing:-0.430387pt;}
.ws3e{word-spacing:-0.425071pt;}
.ws7{word-spacing:-0.409130pt;}
.ws29{word-spacing:-0.371937pt;}
.wsa9{word-spacing:-0.318803pt;}
.wsb7{word-spacing:-0.286925pt;}
.ws1f{word-spacing:-0.265669pt;}
.ws1a{word-spacing:-0.239104pt;}
.ws3c{word-spacing:-0.212535pt;}
.wsa6{word-spacing:-0.191283pt;}
.ws2d{word-spacing:-0.159402pt;}
.ws16{word-spacing:-0.143462pt;}
.ws22{word-spacing:-0.106268pt;}
.wsa8{word-spacing:-0.095642pt;}
.ws3d{word-spacing:-0.053134pt;}
.ws90{word-spacing:-0.047821pt;}
.wsd0{word-spacing:-0.008235pt;}
.wsc8{word-spacing:-0.006460pt;}
.wsce{word-spacing:-0.005530pt;}
.ws2e{word-spacing:-0.002540pt;}
.wscb{word-spacing:-0.000196pt;}
.ws3{word-spacing:0.000000pt;}
.ws91{word-spacing:0.047821pt;}
.ws39{word-spacing:0.053134pt;}
.wscd{word-spacing:0.095642pt;}
.ws21{word-spacing:0.106268pt;}
.ws18{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.wsb2{word-spacing:0.191283pt;}
.ws31{word-spacing:0.212535pt;}
.wsbf{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.wsaf{word-spacing:0.286925pt;}
.ws38{word-spacing:0.318803pt;}
.ws56{word-spacing:0.371937pt;}
.ws61{word-spacing:0.425071pt;}
.wsc0{word-spacing:0.430387pt;}
.ws9e{word-spacing:0.478205pt;}
.ws15{word-spacing:0.478208pt;}
.ws71{word-spacing:0.531339pt;}
.ws59{word-spacing:0.584473pt;}
.wsad{word-spacing:0.621670pt;}
.ws46{word-spacing:0.637606pt;}
.ws6c{word-spacing:0.659564pt;}
.ws6e{word-spacing:0.662599pt;}
.ws76{word-spacing:0.690740pt;}
.ws97{word-spacing:0.743874pt;}
.wsb6{word-spacing:0.765133pt;}
.wsb0{word-spacing:0.812954pt;}
.ws53{word-spacing:0.850142pt;}
.wsac{word-spacing:0.860774pt;}
.ws9{word-spacing:0.892646pt;}
.ws2a{word-spacing:0.903276pt;}
.ws3f{word-spacing:0.956410pt;}
.wsbd{word-spacing:0.956416pt;}
.wsa7{word-spacing:1.004237pt;}
.ws57{word-spacing:1.009543pt;}
.wsae{word-spacing:1.052058pt;}
.ws98{word-spacing:1.062677pt;}
.ws65{word-spacing:1.115811pt;}
.wsc7{word-spacing:1.147699pt;}
.ws89{word-spacing:1.168945pt;}
.ws79{word-spacing:1.222079pt;}
.ws7b{word-spacing:1.328347pt;}
.ws54{word-spacing:1.434614pt;}
.ws2c{word-spacing:1.487748pt;}
.ws43{word-spacing:1.540882pt;}
.wscf{word-spacing:1.625907pt;}
.ws75{word-spacing:1.647150pt;}
.ws9d{word-spacing:1.700284pt;}
.ws72{word-spacing:1.753418pt;}
.ws51{word-spacing:1.806551pt;}
.ws5d{word-spacing:1.859685pt;}
.ws1b{word-spacing:1.865011pt;}
.wsa1{word-spacing:1.912819pt;}
.ws8b{word-spacing:1.965953pt;}
.ws5a{word-spacing:2.019087pt;}
.ws7c{word-spacing:2.072221pt;}
.ws69{word-spacing:2.125355pt;}
.ws2b{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws4e{word-spacing:2.337890pt;}
.ws81{word-spacing:2.391024pt;}
.wsca{word-spacing:2.438861pt;}
.wsb4{word-spacing:2.486682pt;}
.ws42{word-spacing:2.497292pt;}
.ws12{word-spacing:2.550432pt;}
.ws36{word-spacing:2.603559pt;}
.ws78{word-spacing:2.656693pt;}
.ws8c{word-spacing:2.762961pt;}
.wsb5{word-spacing:2.773606pt;}
.ws63{word-spacing:2.816095pt;}
.ws1c{word-spacing:2.861926pt;}
.wsc4{word-spacing:2.863684pt;}
.wsbb{word-spacing:2.863770pt;}
.wsbc{word-spacing:2.865809pt;}
.ws32{word-spacing:2.869229pt;}
.wsb8{word-spacing:2.869248pt;}
.ws66{word-spacing:2.922363pt;}
.wsc3{word-spacing:2.964890pt;}
.ws45{word-spacing:3.028630pt;}
.ws5e{word-spacing:3.081764pt;}
.wsba{word-spacing:3.108352pt;}
.ws23{word-spacing:3.134898pt;}
.wsc1{word-spacing:3.156173pt;}
.ws1d{word-spacing:3.188032pt;}
.ws74{word-spacing:3.294300pt;}
.ws80{word-spacing:3.347434pt;}
.ws19{word-spacing:3.443098pt;}
.ws67{word-spacing:3.453701pt;}
.ws14{word-spacing:3.490918pt;}
.wsa2{word-spacing:3.559969pt;}
.ws62{word-spacing:3.613103pt;}
.ws68{word-spacing:3.719371pt;}
.ws5c{word-spacing:3.825638pt;}
.ws5b{word-spacing:3.878772pt;}
.ws30{word-spacing:3.985040pt;}
.ws34{word-spacing:4.197575pt;}
.ws13{word-spacing:4.208230pt;}
.ws10{word-spacing:4.240070pt;}
.ws44{word-spacing:4.250709pt;}
.ws4b{word-spacing:4.303843pt;}
.ws7a{word-spacing:4.307228pt;}
.ws11{word-spacing:4.314458pt;}
.ws55{word-spacing:4.356977pt;}
.ws35{word-spacing:4.410111pt;}
.ws5f{word-spacing:4.622646pt;}
.wsa4{word-spacing:4.835182pt;}
.ws9b{word-spacing:4.941450pt;}
.ws70{word-spacing:5.047717pt;}
.ws7d{word-spacing:5.100851pt;}
.wsc5{word-spacing:5.116826pt;}
.ws99{word-spacing:5.153985pt;}
.ws17{word-spacing:5.308109pt;}
.ws73{word-spacing:5.313387pt;}
.ws6a{word-spacing:5.419654pt;}
.wsb1{word-spacing:5.632190pt;}
.ws4c{word-spacing:5.791591pt;}
.ws7e{word-spacing:6.004127pt;}
.ws6f{word-spacing:6.057261pt;}
.ws86{word-spacing:6.216662pt;}
.ws77{word-spacing:6.376064pt;}
.ws40{word-spacing:6.588599pt;}
.wsa3{word-spacing:6.641733pt;}
.ws24{word-spacing:6.748001pt;}
.wse{word-spacing:6.918010pt;}
.ws8d{word-spacing:7.066804pt;}
.ws6b{word-spacing:7.332474pt;}
.ws7f{word-spacing:7.385607pt;}
.wsc2{word-spacing:8.124254pt;}
.ws83{word-spacing:9.829765pt;}
.wsc{word-spacing:10.823338pt;}
.wsd{word-spacing:14.319536pt;}
.wsf{word-spacing:23.208806pt;}
.wsb{word-spacing:23.858002pt;}
.ws96{word-spacing:156.213568pt;}
.ws95{word-spacing:192.774259pt;}
.ws93{word-spacing:197.263823pt;}
.ws94{word-spacing:210.552052pt;}
.wsa0{word-spacing:262.056230pt;}
.ws9f{word-spacing:268.007223pt;}
.ws88{word-spacing:445.386989pt;}
.ws92{word-spacing:489.607778pt;}
.ws8a{word-spacing:775.860721pt;}
._6{margin-left:-10.616218pt;}
._12{margin-left:-6.741275pt;}
._9{margin-left:-5.483429pt;}
._2{margin-left:-4.128490pt;}
._7{margin-left:-2.922363pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._3{width:10.734919pt;}
._18{width:11.696177pt;}
._17{width:12.652587pt;}
._e{width:13.772390pt;}
._c{width:14.897029pt;}
._f{width:16.205829pt;}
._a{width:17.131855pt;}
._d{width:18.219725pt;}
._14{width:19.112240pt;}
._19{width:20.307778pt;}
._15{width:21.738478pt;}
._1a{width:22.701614pt;}
._1e{width:23.598163pt;}
._16{width:24.494713pt;}
._b{width:25.727590pt;}
._5{width:27.188522pt;}
._1b{width:28.633771pt;}
._13{width:29.602290pt;}
._1d{width:31.455249pt;}
._1c{width:33.155533pt;}
._3e{width:34.765987pt;}
._3b{width:36.387473pt;}
._3d{width:37.348045pt;}
._3f{width:54.993920pt;}
._8{width:61.665289pt;}
._3c{width:78.904320pt;}
._36{width:82.138231pt;}
._27{width:146.649472pt;}
._22{width:164.821254pt;}
._37{width:183.192755pt;}
._23{width:195.904566pt;}
._20{width:196.955693pt;}
._25{width:198.196049pt;}
._26{width:200.846016pt;}
._24{width:213.099929pt;}
._3a{width:281.290690pt;}
._38{width:288.623164pt;}
._2f{width:330.386383pt;}
._29{width:343.669850pt;}
._34{width:347.336086pt;}
._31{width:353.977820pt;}
._32{width:355.359300pt;}
._39{width:359.928813pt;}
._33{width:362.851175pt;}
._28{width:367.261286pt;}
._2d{width:391.012125pt;}
._2c{width:396.856850pt;}
._30{width:450.681457pt;}
._2a{width:463.964924pt;}
._2b{width:477.248390pt;}
._21{width:496.535984pt;}
._2e{width:499.352079pt;}
._1f{width:516.089247pt;}
._10{width:913.123483pt;}
._35{width:2251.922400pt;}
._11{width:2273.175733pt;}
.fsb{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs8{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fsa{font-size:55.365867pt;}
.fsc{font-size:74.387733pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1b{bottom:14.236308pt;}
.y48{bottom:28.346667pt;}
.y115{bottom:81.600000pt;}
.yf7{bottom:86.021333pt;}
.y1ba{bottom:88.920000pt;}
.y14a{bottom:90.120000pt;}
.y19{bottom:93.018667pt;}
.ya8{bottom:95.282667pt;}
.y7f{bottom:95.681333pt;}
.y114{bottom:98.337333pt;}
.y47{bottom:101.102667pt;}
.yf6{bottom:102.758667pt;}
.y214{bottom:102.774667pt;}
.y178{bottom:104.942667pt;}
.y136{bottom:105.289333pt;}
.y1b9{bottom:105.657333pt;}
.y149{bottom:106.856000pt;}
.y18{bottom:108.920000pt;}
.y1ce{bottom:110.865333pt;}
.ya7{bottom:112.020000pt;}
.y7e{bottom:112.418667pt;}
.y113{bottom:115.074667pt;}
.y46{bottom:117.840000pt;}
.y213{bottom:118.117333pt;}
.yf5{bottom:119.496000pt;}
.y177{bottom:121.678667pt;}
.y135{bottom:122.026667pt;}
.y1dc{bottom:122.081333pt;}
.y1b8{bottom:122.394667pt;}
.y148{bottom:123.593333pt;}
.y17{bottom:124.820000pt;}
.y1cd{bottom:127.602667pt;}
.ya6{bottom:128.757333pt;}
.y1ab{bottom:128.878667pt;}
.y7d{bottom:129.156000pt;}
.y112{bottom:131.812000pt;}
.y212{bottom:133.460000pt;}
.y45{bottom:134.577333pt;}
.yf4{bottom:136.233333pt;}
.y176{bottom:138.416000pt;}
.y134{bottom:138.764000pt;}
.y1db{bottom:138.818667pt;}
.y1b7{bottom:139.132000pt;}
.y147{bottom:140.330667pt;}
.y16{bottom:140.720000pt;}
.y1cc{bottom:144.340000pt;}
.ya5{bottom:145.494667pt;}
.y1aa{bottom:145.616000pt;}
.y7c{bottom:145.893333pt;}
.y111{bottom:148.549333pt;}
.y211{bottom:148.802667pt;}
.y44{bottom:151.314667pt;}
.yf3{bottom:152.970667pt;}
.y175{bottom:155.153333pt;}
.y133{bottom:155.501333pt;}
.y1da{bottom:155.556000pt;}
.y1b6{bottom:155.869333pt;}
.y15{bottom:156.621333pt;}
.y146{bottom:157.068000pt;}
.y1cb{bottom:161.077333pt;}
.ya4{bottom:162.232000pt;}
.y1a9{bottom:162.353333pt;}
.y7b{bottom:162.630667pt;}
.y210{bottom:164.144000pt;}
.y110{bottom:165.286667pt;}
.y43{bottom:168.052000pt;}
.yf2{bottom:169.708000pt;}
.y174{bottom:171.890667pt;}
.y1d9{bottom:172.293333pt;}
.y14{bottom:172.521333pt;}
.y1b5{bottom:172.606667pt;}
.y145{bottom:173.805333pt;}
.y1ca{bottom:177.814667pt;}
.ya3{bottom:178.969333pt;}
.y1a8{bottom:179.090667pt;}
.y7a{bottom:179.368000pt;}
.y20f{bottom:179.486667pt;}
.y132{bottom:179.830667pt;}
.y10f{bottom:182.024000pt;}
.y42{bottom:184.789333pt;}
.yf1{bottom:186.445333pt;}
.y131{bottom:188.225333pt;}
.y13{bottom:188.421333pt;}
.y173{bottom:188.628000pt;}
.y1d8{bottom:189.030667pt;}
.y1b4{bottom:189.342667pt;}
.y1c9{bottom:194.552000pt;}
.y20e{bottom:194.829333pt;}
.ya2{bottom:195.706667pt;}
.y1a7{bottom:195.828000pt;}
.y79{bottom:196.105333pt;}
.y10e{bottom:198.761333pt;}
.y41{bottom:201.526667pt;}
.yf0{bottom:203.182667pt;}
.y12{bottom:204.322667pt;}
.y172{bottom:205.365333pt;}
.y1d7{bottom:205.766667pt;}
.y1b3{bottom:206.080000pt;}
.y20d{bottom:210.172000pt;}
.y1c8{bottom:211.289333pt;}
.y130{bottom:212.174667pt;}
.ya1{bottom:212.444000pt;}
.y1a6{bottom:212.565333pt;}
.y78{bottom:212.841333pt;}
.y143{bottom:214.614667pt;}
.y10d{bottom:215.498667pt;}
.y40{bottom:218.264000pt;}
.y1bf{bottom:221.700000pt;}
.y171{bottom:222.102667pt;}
.y1d6{bottom:222.504000pt;}
.yef{bottom:223.904000pt;}
.y20c{bottom:225.514667pt;}
.y1c7{bottom:228.026667pt;}
.y12f{bottom:228.912000pt;}
.ya0{bottom:229.181333pt;}
.y1a5{bottom:229.302667pt;}
.y77{bottom:229.578667pt;}
.y144{bottom:230.422667pt;}
.y142{bottom:230.554667pt;}
.y242{bottom:230.974667pt;}
.y3f{bottom:235.001333pt;}
.y1b2{bottom:235.917333pt;}
.y1be{bottom:238.796000pt;}
.y170{bottom:238.840000pt;}
.y10c{bottom:238.877333pt;}
.y1d5{bottom:239.241333pt;}
.y20b{bottom:240.857333pt;}
.y1c6{bottom:244.764000pt;}
.y9f{bottom:245.918667pt;}
.y1a4{bottom:246.040000pt;}
.y76{bottom:246.316000pt;}
.y141{bottom:246.496000pt;}
.y3e{bottom:251.738667pt;}
.y1b1{bottom:253.013333pt;}
.yee{bottom:253.792000pt;}
.y16f{bottom:255.577333pt;}
.y10b{bottom:255.614667pt;}
.y1bd{bottom:255.892000pt;}
.y1d4{bottom:255.978667pt;}
.y20a{bottom:256.200000pt;}
.y12e{bottom:259.597333pt;}
.y241{bottom:261.658667pt;}
.y9e{bottom:262.656000pt;}
.y1a3{bottom:262.777333pt;}
.y75{bottom:263.053333pt;}
.y11{bottom:266.804000pt;}
.y3d{bottom:268.476000pt;}
.y140{bottom:269.104000pt;}
.y1b0{bottom:270.108000pt;}
.yed{bottom:270.529333pt;}
.y209{bottom:271.542667pt;}
.y16e{bottom:272.314667pt;}
.y10a{bottom:272.352000pt;}
.y1d3{bottom:272.716000pt;}
.y1c5{bottom:274.600000pt;}
.yd0{bottom:275.408000pt;}
.y240{bottom:277.001333pt;}
.y9d{bottom:279.393333pt;}
.y1a2{bottom:279.514667pt;}
.y74{bottom:279.790667pt;}
.y10{bottom:282.705333pt;}
.y13f{bottom:285.044000pt;}
.y3c{bottom:285.213333pt;}
.y208{bottom:286.885333pt;}
.yec{bottom:287.266667pt;}
.y16d{bottom:289.052000pt;}
.y109{bottom:289.089333pt;}
.y12d{bottom:290.282667pt;}
.y1c4{bottom:291.696000pt;}
.ycf{bottom:292.145333pt;}
.y23f{bottom:292.344000pt;}
.y1d2{bottom:293.438667pt;}
.y9c{bottom:296.129333pt;}
.y1a1{bottom:296.252000pt;}
.y73{bottom:296.528000pt;}
.yf{bottom:298.605333pt;}
.y3b{bottom:301.950667pt;}
.y207{bottom:302.226667pt;}
.yeb{bottom:304.004000pt;}
.y108{bottom:305.826667pt;}
.y12c{bottom:307.020000pt;}
.y13e{bottom:307.652000pt;}
.y23e{bottom:307.686667pt;}
.y1c3{bottom:308.792000pt;}
.yce{bottom:308.882667pt;}
.y16c{bottom:309.774667pt;}
.y9b{bottom:312.866667pt;}
.y1a0{bottom:312.989333pt;}
.y72{bottom:313.265333pt;}
.ye{bottom:314.505333pt;}
.y206{bottom:317.569333pt;}
.y3a{bottom:318.688000pt;}
.y1d1{bottom:320.485333pt;}
.yea{bottom:320.741333pt;}
.y107{bottom:322.564000pt;}
.y23d{bottom:323.029333pt;}
.y12b{bottom:323.757333pt;}
.ycd{bottom:325.620000pt;}
.y9a{bottom:329.604000pt;}
.y19f{bottom:329.726667pt;}
.y71{bottom:330.002667pt;}
.y13d{bottom:330.260000pt;}
.y205{bottom:332.912000pt;}
.y39{bottom:335.425333pt;}
.ye9{bottom:337.478667pt;}
.y1d0{bottom:337.581333pt;}
.y13c{bottom:338.097333pt;}
.y23c{bottom:338.372000pt;}
.yd{bottom:338.376000pt;}
.y106{bottom:339.301333pt;}
.y12a{bottom:340.494667pt;}
.ycc{bottom:342.357333pt;}
.y99{bottom:346.341333pt;}
.y19e{bottom:346.464000pt;}
.y70{bottom:346.740000pt;}
.y16b{bottom:347.794667pt;}
.y204{bottom:348.254667pt;}
.y38{bottom:352.162667pt;}
.y23b{bottom:353.714667pt;}
.ye8{bottom:354.216000pt;}
.yc{bottom:354.277333pt;}
.y105{bottom:356.038667pt;}
.y129{bottom:357.232000pt;}
.ycb{bottom:359.094667pt;}
.y98{bottom:363.078667pt;}
.y19d{bottom:363.201333pt;}
.y6f{bottom:363.477333pt;}
.y203{bottom:363.597333pt;}
.y16a{bottom:363.734667pt;}
.y13b{bottom:368.808000pt;}
.y37{bottom:368.900000pt;}
.y23a{bottom:369.056000pt;}
.yb{bottom:370.177333pt;}
.ye7{bottom:370.953333pt;}
.y104{bottom:372.776000pt;}
.y128{bottom:373.969333pt;}
.yca{bottom:375.832000pt;}
.y13a{bottom:376.645333pt;}
.y202{bottom:378.940000pt;}
.y169{bottom:379.674667pt;}
.y97{bottom:379.816000pt;}
.y19c{bottom:379.938667pt;}
.y6e{bottom:380.214667pt;}
.y239{bottom:384.398667pt;}
.y36{bottom:385.637333pt;}
.ye6{bottom:387.690667pt;}
.y103{bottom:389.513333pt;}
.yc9{bottom:392.568000pt;}
.y201{bottom:394.282667pt;}
.ya{bottom:395.376000pt;}
.y168{bottom:395.614667pt;}
.y96{bottom:396.553333pt;}
.y19b{bottom:396.676000pt;}
.y6d{bottom:396.952000pt;}
.y238{bottom:399.741333pt;}
.y35{bottom:402.373333pt;}
.y127{bottom:403.969333pt;}
.ye5{bottom:404.428000pt;}
.y102{bottom:406.250667pt;}
.yc8{bottom:409.305333pt;}
.y200{bottom:409.625333pt;}
.y9{bottom:411.276000pt;}
.y167{bottom:411.554667pt;}
.y95{bottom:413.290667pt;}
.y19a{bottom:413.412000pt;}
.y6c{bottom:413.689333pt;}
.y139{bottom:413.784000pt;}
.y237{bottom:415.084000pt;}
.y34{bottom:419.110667pt;}
.y101{bottom:422.988000pt;}
.y1ff{bottom:424.966667pt;}
.yc7{bottom:426.042667pt;}
.y166{bottom:427.494667pt;}
.y94{bottom:430.028000pt;}
.y199{bottom:430.149333pt;}
.y6b{bottom:430.426667pt;}
.y126{bottom:431.100000pt;}
.ye4{bottom:435.113333pt;}
.y8{bottom:435.146667pt;}
.y33{bottom:435.848000pt;}
.y1fe{bottom:440.309333pt;}
.yc6{bottom:442.780000pt;}
.y165{bottom:443.436000pt;}
.y236{bottom:445.769333pt;}
.y100{bottom:446.366667pt;}
.y93{bottom:446.765333pt;}
.y198{bottom:446.886667pt;}
.y6a{bottom:447.164000pt;}
.y125{bottom:448.016000pt;}
.y7{bottom:451.048000pt;}
.y1fd{bottom:455.652000pt;}
.y32{bottom:456.570667pt;}
.y164{bottom:459.376000pt;}
.yc5{bottom:459.517333pt;}
.y235{bottom:461.112000pt;}
.yff{bottom:463.104000pt;}
.y92{bottom:463.502667pt;}
.y197{bottom:463.624000pt;}
.y69{bottom:463.901333pt;}
.y124{bottom:464.753333pt;}
.y6{bottom:466.948000pt;}
.y1fc{bottom:470.994667pt;}
.y31{bottom:474.504000pt;}
.y163{bottom:475.316000pt;}
.yc4{bottom:476.254667pt;}
.y234{bottom:476.454667pt;}
.yfe{bottom:479.841333pt;}
.y91{bottom:480.240000pt;}
.y196{bottom:480.361333pt;}
.y68{bottom:480.638667pt;}
.ye2{bottom:481.122667pt;}
.ye3{bottom:481.172000pt;}
.y123{bottom:481.490667pt;}
.y5{bottom:482.848000pt;}
.y1fb{bottom:486.337333pt;}
.y233{bottom:491.797333pt;}
.yc3{bottom:492.992000pt;}
.yfd{bottom:496.578667pt;}
.y90{bottom:496.977333pt;}
.y195{bottom:497.098667pt;}
.y67{bottom:497.376000pt;}
.y162{bottom:497.924000pt;}
.y122{bottom:498.228000pt;}
.y4{bottom:498.749333pt;}
.y1fa{bottom:501.680000pt;}
.y232{bottom:507.138667pt;}
.ye1{bottom:508.254667pt;}
.yc2{bottom:509.729333pt;}
.yfc{bottom:513.316000pt;}
.y8f{bottom:513.714667pt;}
.y194{bottom:513.836000pt;}
.y66{bottom:514.113333pt;}
.y1{bottom:514.649301pt;}
.y1f9{bottom:517.022667pt;}
.y231{bottom:522.481333pt;}
.yc1{bottom:526.466667pt;}
.y161{bottom:526.960000pt;}
.y121{bottom:528.064000pt;}
.ye0{bottom:528.646667pt;}
.yfb{bottom:530.053333pt;}
.y8e{bottom:530.452000pt;}
.y193{bottom:530.573333pt;}
.y65{bottom:530.850667pt;}
.y1f8{bottom:532.365333pt;}
.y230{bottom:537.824000pt;}
.y30{bottom:541.304000pt;}
.ydf{bottom:545.384000pt;}
.y8d{bottom:547.189333pt;}
.y192{bottom:547.310667pt;}
.y64{bottom:547.588000pt;}
.y1f7{bottom:547.708000pt;}
.yfa{bottom:550.776000pt;}
.y22f{bottom:553.166667pt;}
.y160{bottom:559.941333pt;}
.yde{bottom:562.121333pt;}
.y1f6{bottom:563.049333pt;}
.y8c{bottom:563.926667pt;}
.y191{bottom:564.048000pt;}
.y63{bottom:564.325333pt;}
.y22e{bottom:568.509333pt;}
.y2f{bottom:574.538667pt;}
.y15f{bottom:576.678667pt;}
.yc0{bottom:577.077333pt;}
.y1f5{bottom:578.392000pt;}
.ydd{bottom:578.858667pt;}
.y8b{bottom:580.664000pt;}
.y190{bottom:580.785333pt;}
.y62{bottom:581.062667pt;}
.y22d{bottom:583.852000pt;}
.y2e{bottom:591.834667pt;}
.y15e{bottom:593.416000pt;}
.y1f4{bottom:593.734667pt;}
.ybf{bottom:593.814667pt;}
.ydc{bottom:595.596000pt;}
.y1bc{bottom:596.808000pt;}
.y8a{bottom:597.401333pt;}
.y18f{bottom:597.522667pt;}
.y61{bottom:597.800000pt;}
.y22c{bottom:599.194667pt;}
.y1f3{bottom:609.077333pt;}
.y2d{bottom:609.129333pt;}
.y15d{bottom:610.153333pt;}
.ybe{bottom:610.552000pt;}
.ydb{bottom:612.333333pt;}
.y1af{bottom:612.514667pt;}
.y1bb{bottom:613.904000pt;}
.y89{bottom:614.138667pt;}
.y18e{bottom:614.260000pt;}
.y60{bottom:614.537333pt;}
.y1f2{bottom:624.420000pt;}
.y2c{bottom:626.424000pt;}
.y15c{bottom:626.890667pt;}
.ybd{bottom:627.289333pt;}
.yda{bottom:629.070667pt;}
.y1ae{bottom:629.610667pt;}
.y22b{bottom:629.878667pt;}
.y88{bottom:630.876000pt;}
.y18d{bottom:630.997333pt;}
.y5f{bottom:631.274667pt;}
.y1f1{bottom:639.762667pt;}
.y15b{bottom:643.628000pt;}
.y2b{bottom:643.720000pt;}
.ybc{bottom:644.026667pt;}
.y22a{bottom:645.221333pt;}
.yd9{bottom:645.808000pt;}
.y1ad{bottom:646.706667pt;}
.y87{bottom:647.613333pt;}
.y18c{bottom:647.734667pt;}
.y5e{bottom:648.012000pt;}
.y1c2{bottom:648.552000pt;}
.y1f0{bottom:655.105333pt;}
.y15a{bottom:660.365333pt;}
.y229{bottom:660.564000pt;}
.ybb{bottom:660.764000pt;}
.y2a{bottom:661.014667pt;}
.yd8{bottom:662.545333pt;}
.y1ac{bottom:663.801333pt;}
.y86{bottom:664.350667pt;}
.y18b{bottom:664.472000pt;}
.y5d{bottom:664.749333pt;}
.y1c1{bottom:665.648000pt;}
.y1ef{bottom:670.448000pt;}
.y228{bottom:675.906667pt;}
.y159{bottom:677.102667pt;}
.yba{bottom:677.501333pt;}
.y29{bottom:678.310667pt;}
.yd7{bottom:679.282667pt;}
.y1cf{bottom:680.529333pt;}
.y85{bottom:681.088000pt;}
.y18a{bottom:681.209333pt;}
.y5c{bottom:681.485333pt;}
.y1c0{bottom:682.744000pt;}
.y1ed{bottom:685.789333pt;}
.y1ee{bottom:685.790667pt;}
.y227{bottom:691.249333pt;}
.y158{bottom:693.840000pt;}
.yb9{bottom:694.238667pt;}
.y28{bottom:695.605333pt;}
.yd6{bottom:696.020000pt;}
.y84{bottom:697.825333pt;}
.y189{bottom:697.946667pt;}
.y5b{bottom:698.222667pt;}
.y1ec{bottom:701.132000pt;}
.y226{bottom:706.592000pt;}
.y157{bottom:710.577333pt;}
.yb8{bottom:710.976000pt;}
.yd5{bottom:712.757333pt;}
.y27{bottom:712.900000pt;}
.y83{bottom:714.562667pt;}
.y188{bottom:714.684000pt;}
.y5a{bottom:714.960000pt;}
.y1eb{bottom:716.474667pt;}
.y225{bottom:721.934667pt;}
.y156{bottom:727.314667pt;}
.yb7{bottom:727.713333pt;}
.yd4{bottom:729.494667pt;}
.y26{bottom:730.196000pt;}
.y82{bottom:731.300000pt;}
.y187{bottom:731.421333pt;}
.y59{bottom:731.697333pt;}
.y1ea{bottom:731.817333pt;}
.y224{bottom:737.277333pt;}
.y155{bottom:744.052000pt;}
.yb6{bottom:744.450667pt;}
.yd3{bottom:746.232000pt;}
.y1e9{bottom:747.160000pt;}
.y25{bottom:747.490667pt;}
.y81{bottom:748.036000pt;}
.y186{bottom:748.158667pt;}
.y58{bottom:748.434667pt;}
.y223{bottom:752.620000pt;}
.y120{bottom:755.988000pt;}
.y154{bottom:760.789333pt;}
.yb5{bottom:761.186667pt;}
.y1e8{bottom:762.502667pt;}
.yf9{bottom:764.773333pt;}
.y24{bottom:764.785333pt;}
.y57{bottom:765.172000pt;}
.yd2{bottom:766.953333pt;}
.y222{bottom:767.961333pt;}
.y80{bottom:768.758667pt;}
.y11f{bottom:772.725333pt;}
.y153{bottom:777.526667pt;}
.y1e7{bottom:777.845333pt;}
.yb4{bottom:777.924000pt;}
.y138{bottom:781.510667pt;}
.y56{bottom:781.909333pt;}
.y23{bottom:782.081333pt;}
.y221{bottom:783.304000pt;}
.yf8{bottom:785.496000pt;}
.y185{bottom:788.968000pt;}
.y11e{bottom:789.462667pt;}
.y1e6{bottom:793.188000pt;}
.yd1{bottom:794.000000pt;}
.y152{bottom:794.264000pt;}
.yb3{bottom:794.661333pt;}
.y55{bottom:798.646667pt;}
.y137{bottom:802.233333pt;}
.y184{bottom:804.908000pt;}
.y11d{bottom:806.198667pt;}
.y1e5{bottom:808.530667pt;}
.y151{bottom:811.001333pt;}
.yb2{bottom:811.398667pt;}
.y220{bottom:813.989333pt;}
.y54{bottom:815.384000pt;}
.y22{bottom:816.378667pt;}
.y183{bottom:820.848000pt;}
.y11c{bottom:822.936000pt;}
.y1e4{bottom:823.872000pt;}
.y150{bottom:827.738667pt;}
.yb1{bottom:828.136000pt;}
.y21f{bottom:829.332000pt;}
.y21{bottom:830.725333pt;}
.y53{bottom:832.121333pt;}
.y182{bottom:836.788000pt;}
.y1e3{bottom:843.200000pt;}
.y11a{bottom:843.668000pt;}
.y14f{bottom:844.474667pt;}
.y21e{bottom:844.674667pt;}
.yb0{bottom:844.873333pt;}
.y20{bottom:845.072000pt;}
.y52{bottom:848.858667pt;}
.y117{bottom:849.172000pt;}
.y11b{bottom:849.889333pt;}
.y181{bottom:852.728000pt;}
.y119{bottom:855.521333pt;}
.y116{bottom:858.284000pt;}
.y21d{bottom:860.017333pt;}
.y14e{bottom:861.212000pt;}
.yaf{bottom:861.610667pt;}
.y51{bottom:865.596000pt;}
.y180{bottom:868.668000pt;}
.y118{bottom:872.630667pt;}
.y1e2{bottom:873.088000pt;}
.y21c{bottom:875.360000pt;}
.y14d{bottom:877.949333pt;}
.yae{bottom:878.348000pt;}
.y50{bottom:882.333333pt;}
.y17f{bottom:884.609333pt;}
.y1f{bottom:888.641333pt;}
.y21a{bottom:890.701333pt;}
.y21b{bottom:890.702667pt;}
.y14c{bottom:894.686667pt;}
.yad{bottom:895.085333pt;}
.y1e1{bottom:896.680000pt;}
.y4f{bottom:899.070667pt;}
.y17e{bottom:900.549333pt;}
.y219{bottom:906.044000pt;}
.yac{bottom:911.822667pt;}
.y1e0{bottom:912.301333pt;}
.y14b{bottom:915.409333pt;}
.y4e{bottom:915.808000pt;}
.y17d{bottom:916.489333pt;}
.y1e{bottom:921.320000pt;}
.y218{bottom:921.386667pt;}
.y1df{bottom:927.922667pt;}
.yab{bottom:928.560000pt;}
.y4d{bottom:932.545333pt;}
.y217{bottom:936.729333pt;}
.y17b{bottom:939.097333pt;}
.yaa{bottom:945.297333pt;}
.y1d{bottom:946.425333pt;}
.y17a{bottom:946.934667pt;}
.y4c{bottom:949.282667pt;}
.y1de{bottom:951.514667pt;}
.y216{bottom:952.072000pt;}
.y17c{bottom:955.037333pt;}
.ya9{bottom:962.034667pt;}
.y4b{bottom:966.020000pt;}
.y1dd{bottom:967.136000pt;}
.y215{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4a{bottom:982.757333pt;}
.y179{bottom:984.073333pt;}
.y1a{bottom:1010.186667pt;}
.y49{bottom:1038.548000pt;}
.hf{height:4.541530pt;}
.h1a{height:4.674863pt;}
.h2{height:22.673858pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.h5{height:32.284045pt;}
.h13{height:34.324478pt;}
.hc{height:34.574438pt;}
.h16{height:35.051460pt;}
.hb{height:36.896250pt;}
.ha{height:38.415786pt;}
.h8{height:38.947124pt;}
.hd{height:41.508454pt;}
.h6{height:45.271688pt;}
.he{height:46.120196pt;}
.h17{height:57.799269pt;}
.h9{height:69.148877pt;}
.h1d{height:70.826452pt;}
.h15{height:71.660691pt;}
.h21{height:77.464196pt;}
.h20{height:77.469530pt;}
.h1f{height:78.530863pt;}
.h1c{height:79.490863pt;}
.h1b{height:79.698863pt;}
.h14{height:82.093530pt;}
.h7{height:83.992000pt;}
.h1e{height:102.175786pt;}
.h12{height:110.456021pt;}
.h19{height:110.648021pt;}
.h10{height:113.069530pt;}
.h11{height:113.266863pt;}
.h18{height:137.954863pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:52.049422pt;}
.x95{left:76.309333pt;}
.x7e{left:219.865333pt;}
.x6{left:220.912000pt;}
.x5{left:221.858667pt;}
.x8c{left:233.682667pt;}
.x7d{left:239.244000pt;}
.x86{left:243.509333pt;}
.x8{left:250.204000pt;}
.x25{left:254.481333pt;}
.x69{left:258.657333pt;}
.x5f{left:263.036000pt;}
.x90{left:265.410667pt;}
.x38{left:266.850667pt;}
.x26{left:267.764000pt;}
.x8f{left:268.730667pt;}
.x27{left:271.152000pt;}
.x91{left:272.729333pt;}
.x7{left:273.898667pt;}
.x94{left:276.437333pt;}
.x51{left:277.529333pt;}
.x92{left:278.736000pt;}
.x39{left:280.133333pt;}
.x58{left:282.566667pt;}
.x28{left:284.434667pt;}
.x3a{left:290.173333pt;}
.x87{left:292.020000pt;}
.x7f{left:294.533333pt;}
.x41{left:296.036000pt;}
.x3b{left:303.457333pt;}
.x60{left:304.804000pt;}
.x80{left:307.816000pt;}
.x42{left:309.318667pt;}
.x61{left:320.252000pt;}
.x78{left:322.637333pt;}
.x31{left:323.690667pt;}
.x7b{left:325.898667pt;}
.x7c{left:327.558667pt;}
.x4d{left:329.041333pt;}
.x7a{left:330.793333pt;}
.x32{left:336.974667pt;}
.x19{left:339.777333pt;}
.x2e{left:341.414667pt;}
.x6c{left:342.761333pt;}
.x93{left:347.270667pt;}
.x4e{left:348.580000pt;}
.x1a{left:353.061333pt;}
.x2f{left:354.697333pt;}
.x1b{left:356.334667pt;}
.x6d{left:359.698667pt;}
.x36{left:362.585333pt;}
.x1c{left:369.618667pt;}
.x37{left:375.869333pt;}
.x5a{left:382.625333pt;}
.x52{left:388.597333pt;}
.x3c{left:394.344000pt;}
.x46{left:397.146667pt;}
.xb{left:400.337333pt;}
.x47{left:404.313333pt;}
.xc{left:406.980000pt;}
.x44{left:412.270667pt;}
.x77{left:420.868000pt;}
.x45{left:422.801333pt;}
.x4f{left:427.537333pt;}
.x88{left:430.177333pt;}
.x75{left:434.796000pt;}
.x74{left:436.394667pt;}
.x4a{left:439.561333pt;}
.x50{left:440.820000pt;}
.x89{left:443.461333pt;}
.x8a{left:446.716000pt;}
.x8b{left:459.998667pt;}
.x48{left:466.788000pt;}
.x67{left:467.709333pt;}
.x76{left:483.224000pt;}
.x79{left:492.820000pt;}
.x65{left:494.057333pt;}
.x5b{left:495.476000pt;}
.x5c{left:497.888000pt;}
.x68{left:504.344000pt;}
.x53{left:514.176000pt;}
.x2b{left:518.046667pt;}
.x64{left:519.048000pt;}
.x54{left:520.817333pt;}
.x5d{left:522.192000pt;}
.x59{left:524.745333pt;}
.x3e{left:525.869333pt;}
.x55{left:528.608000pt;}
.x2c{left:531.330667pt;}
.x70{left:533.157333pt;}
.x66{left:534.101333pt;}
.x49{left:538.660000pt;}
.x1e{left:539.609333pt;}
.x71{left:542.146667pt;}
.x6e{left:545.130667pt;}
.x56{left:547.296000pt;}
.x13{left:550.092000pt;}
.x1f{left:552.892000pt;}
.x6f{left:554.116000pt;}
.x23{left:555.762667pt;}
.x14{left:556.733333pt;}
.x5e{left:564.660000pt;}
.x22{left:566.144000pt;}
.x24{left:569.045333pt;}
.x81{left:571.177333pt;}
.x3f{left:572.230667pt;}
.x9{left:576.326667pt;}
.x82{left:577.818667pt;}
.x83{left:581.206667pt;}
.xa{left:582.968000pt;}
.x40{left:585.514667pt;}
.x15{left:590.258667pt;}
.x84{left:594.489333pt;}
.x16{left:596.900000pt;}
.x85{left:597.877333pt;}
.x72{left:603.018667pt;}
.x33{left:606.145333pt;}
.x73{left:611.981333pt;}
.x29{left:619.624000pt;}
.x34{left:622.684000pt;}
.x2a{left:632.908000pt;}
.x35{left:635.966667pt;}
.x62{left:636.980000pt;}
.x20{left:639.549333pt;}
.x8e{left:641.158667pt;}
.x3d{left:648.833333pt;}
.x21{left:652.833333pt;}
.x8d{left:655.550667pt;}
.xf{left:658.569333pt;}
.x2d{left:659.972000pt;}
.x43{left:661.769333pt;}
.x10{left:665.210667pt;}
.x11{left:668.598667pt;}
.x1d{left:671.226667pt;}
.xd{left:673.694667pt;}
.x12{left:675.240000pt;}
.xe{left:680.337333pt;}
.x63{left:681.937333pt;}
.x96{left:689.850667pt;}
.x57{left:694.384000pt;}
.x4b{left:700.764000pt;}
.x6a{left:707.617333pt;}
.x97{left:713.760000pt;}
.x98{left:720.356000pt;}
.x4c{left:722.784000pt;}
.x17{left:727.144000pt;}
.x30{left:733.484000pt;}
.x6b{left:736.013333pt;}
.x18{left:740.428000pt;}
.x99{left:744.266667pt;}
}




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