
    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_048d698695705b37f45595b8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_798afd25cd7968852a9e0abc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a486c022db78e6d2c03d7c74.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b49196465c08ddaffebaf45d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.444000;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_2765c7513e708aa98114fe92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_e2a15e99f4854c6164c7ea44.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_485a962028160a65ec208cd4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5415c078e59e89a3848b21a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m15{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);}
.m1e{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);}
.mf{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);}
.m12{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);}
.m1c{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);}
.m24{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);}
.md{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);}
.mc{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);}
.m17{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);}
.m2{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);}
.m25{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);}
.m6{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);}
.m9{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);}
.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);}
.m26{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);}
.mb{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);}
.m1d{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);}
.me{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);}
.m7{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);}
.m10{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);}
.m13{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);}
.m19{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);}
.m11{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);}
.m20{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);}
.m18{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);}
.m22{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);}
.m5{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1a{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);}
.m27{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m28{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);}
.m14{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);}
.m1{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);}
.ma{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);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.926000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.004800px;}
.ls8{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls6{letter-spacing:11.954850px;}
.ls23{letter-spacing:13.436004px;}
.ls20{letter-spacing:13.448400px;}
.ls21{letter-spacing:13.454400px;}
.ls18{letter-spacing:13.721406px;}
.ls1f{letter-spacing:14.817768px;}
.ls1e{letter-spacing:14.823727px;}
.lsf{letter-spacing:14.824349px;}
.ls10{letter-spacing:14.884124px;}
.lse{letter-spacing:14.928649px;}
.lsb{letter-spacing:14.943900px;}
.ls9{letter-spacing:15.063451px;}
.ls1d{letter-spacing:15.092574px;}
.ls11{letter-spacing:15.183002px;}
.ls16{letter-spacing:15.184671px;}
.ls15{letter-spacing:15.190794px;}
.ls1b{letter-spacing:15.300499px;}
.ls12{letter-spacing:15.756100px;}
.ls1a{letter-spacing:16.420806px;}
.ls17{letter-spacing:16.450218px;}
.lsd{letter-spacing:17.394700px;}
.ls19{letter-spacing:19.150218px;}
.ls14{letter-spacing:20.397276px;}
.ls13{letter-spacing:20.403159px;}
.lsa{letter-spacing:22.296299px;}
.ls1{letter-spacing:22.909200px;}
.ls2{letter-spacing:22.915200px;}
.ls0{letter-spacing:23.426880px;}
.ls1c{letter-spacing:24.687323px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.lsc{letter-spacing:85.042200px;}
.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;}
}
.ws12{word-spacing:-14.943900px;}
.wsd1{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws11d{word-spacing:-3.287658px;}
.ws24{word-spacing:-2.929004px;}
.wsc2{word-spacing:-2.749678px;}
.ws78{word-spacing:-2.689902px;}
.ws2b{word-spacing:-2.630126px;}
.ws92{word-spacing:-2.570351px;}
.ws33{word-spacing:-2.510575px;}
.ws1f{word-spacing:-2.391024px;}
.ws87{word-spacing:-2.271473px;}
.ws88{word-spacing:-2.244935px;}
.ws1d{word-spacing:-2.092146px;}
.wse7{word-spacing:-1.972595px;}
.ws11f{word-spacing:-1.912819px;}
.ws9{word-spacing:-1.908367px;}
.ws29{word-spacing:-1.673717px;}
.wsca{word-spacing:-1.613941px;}
.ws43{word-spacing:-1.554166px;}
.ws41{word-spacing:-1.374839px;}
.ws93{word-spacing:-1.373402px;}
.wsb0{word-spacing:-1.344989px;}
.wsb1{word-spacing:-1.344935px;}
.ws8{word-spacing:-1.322630px;}
.ws11e{word-spacing:-1.315063px;}
.ws135{word-spacing:-1.129766px;}
.wse6{word-spacing:-1.075961px;}
.wsc7{word-spacing:-1.016185px;}
.wsd6{word-spacing:-0.956410px;}
.wse3{word-spacing:-0.950479px;}
.ws5c{word-spacing:-0.896634px;}
.ws5d{word-spacing:-0.880093px;}
.ws5e{word-spacing:-0.836858px;}
.ws5a{word-spacing:-0.717307px;}
.ws140{word-spacing:-0.699379px;}
.ws3d{word-spacing:-0.657532px;}
.wscb{word-spacing:-0.645581px;}
.ws3c{word-spacing:-0.634903px;}
.ws89{word-spacing:-0.597756px;}
.wsba{word-spacing:-0.537980px;}
.wsb3{word-spacing:-0.478205px;}
.ws10b{word-spacing:-0.459232px;}
.ws3b{word-spacing:-0.447070px;}
.ws13a{word-spacing:-0.430387px;}
.ws51{word-spacing:-0.418429px;}
.wscc{word-spacing:-0.376589px;}
.ws50{word-spacing:-0.358654px;}
.ws136{word-spacing:-0.322790px;}
.wsd{word-spacing:-0.298878px;}
.ws127{word-spacing:-0.268992px;}
.wsd8{word-spacing:-0.257796px;}
.wsd9{word-spacing:-0.254851px;}
.wsda{word-spacing:-0.245632px;}
.ws13{word-spacing:-0.239102px;}
.wsf6{word-spacing:-0.215194px;}
.ws1e{word-spacing:-0.179327px;}
.ws98{word-spacing:-0.161395px;}
.ws6b{word-spacing:-0.147611px;}
.ws116{word-spacing:-0.121879px;}
.ws10d{word-spacing:-0.121329px;}
.ws14{word-spacing:-0.119551px;}
.ws10e{word-spacing:-0.118476px;}
.ws133{word-spacing:-0.107597px;}
.ws115{word-spacing:-0.103209px;}
.ws114{word-spacing:-0.100182px;}
.wsdd{word-spacing:-0.095836px;}
.ws2a{word-spacing:-0.059776px;}
.wsf5{word-spacing:-0.053798px;}
.ws117{word-spacing:-0.051069px;}
.ws111{word-spacing:-0.044003px;}
.ws90{word-spacing:-0.030494px;}
.ws10c{word-spacing:-0.028418px;}
.wsad{word-spacing:-0.025256px;}
.ws95{word-spacing:-0.022633px;}
.ws39{word-spacing:-0.022058px;}
.wsae{word-spacing:-0.019618px;}
.ws100{word-spacing:-0.008696px;}
.ws91{word-spacing:-0.003371px;}
.ws6a{word-spacing:-0.002894px;}
.ws26{word-spacing:-0.002857px;}
.wsfc{word-spacing:-0.001991px;}
.ws94{word-spacing:-0.001584px;}
.wscd{word-spacing:-0.001334px;}
.wsfb{word-spacing:-0.000642px;}
.wsd0{word-spacing:-0.000355px;}
.ws1{word-spacing:-0.000308px;}
.wsff{word-spacing:-0.000068px;}
.ws0{word-spacing:0.000000px;}
.ws112{word-spacing:0.001343px;}
.ws82{word-spacing:0.003106px;}
.wsd2{word-spacing:0.010814px;}
.ws11c{word-spacing:0.030038px;}
.wsd7{word-spacing:0.036541px;}
.ws12d{word-spacing:0.042843px;}
.ws109{word-spacing:0.050534px;}
.wsc4{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.ws54{word-spacing:0.078561px;}
.ws10a{word-spacing:0.080442px;}
.wse0{word-spacing:0.084237px;}
.ws101{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws36{word-spacing:0.129441px;}
.ws120{word-spacing:0.142198px;}
.ws13b{word-spacing:0.161395px;}
.ws10f{word-spacing:0.164496px;}
.ws62{word-spacing:0.168692px;}
.ws11a{word-spacing:0.171512px;}
.wse5{word-spacing:0.171567px;}
.ws61{word-spacing:0.178099px;}
.wsb{word-spacing:0.179327px;}
.ws38{word-spacing:0.180148px;}
.wsac{word-spacing:0.185707px;}
.ws79{word-spacing:0.208621px;}
.wsbf{word-spacing:0.215194px;}
.ws110{word-spacing:0.223693px;}
.ws2d{word-spacing:0.227669px;}
.ws84{word-spacing:0.232359px;}
.ws2e{word-spacing:0.237032px;}
.ws28{word-spacing:0.239102px;}
.wscf{word-spacing:0.268992px;}
.wsfe{word-spacing:0.269138px;}
.wse{word-spacing:0.298878px;}
.ws67{word-spacing:0.324594px;}
.ws68{word-spacing:0.341831px;}
.ws21{word-spacing:0.358654px;}
.ws6c{word-spacing:0.418429px;}
.ws69{word-spacing:0.478205px;}
.ws9d{word-spacing:0.504164px;}
.ws9e{word-spacing:0.529391px;}
.wsa9{word-spacing:0.537980px;}
.wsb6{word-spacing:0.597756px;}
.wsfd{word-spacing:0.657532px;}
.wsc{word-spacing:0.717307px;}
.ws10{word-spacing:0.836858px;}
.wse9{word-spacing:0.896634px;}
.ws74{word-spacing:0.956410px;}
.ws75{word-spacing:1.016185px;}
.ws9f{word-spacing:1.051817px;}
.ws83{word-spacing:1.075961px;}
.ws129{word-spacing:1.075968px;}
.wsc0{word-spacing:1.135736px;}
.wsc8{word-spacing:1.195512px;}
.wsc9{word-spacing:1.206550px;}
.ws58{word-spacing:1.234763px;}
.ws55{word-spacing:1.239151px;}
.ws59{word-spacing:1.255288px;}
.ws56{word-spacing:1.260274px;}
.ws57{word-spacing:1.261892px;}
.wsa4{word-spacing:1.291853px;}
.ws42{word-spacing:1.315063px;}
.wsa5{word-spacing:1.335273px;}
.wsdf{word-spacing:1.374839px;}
.ws53{word-spacing:1.434614px;}
.ws3a{word-spacing:1.494390px;}
.ws20{word-spacing:1.554166px;}
.ws48{word-spacing:1.613941px;}
.wse2{word-spacing:1.673717px;}
.ws119{word-spacing:1.730862px;}
.ws5f{word-spacing:1.733492px;}
.ws118{word-spacing:1.735578px;}
.wsde{word-spacing:1.793268px;}
.ws73{word-spacing:1.892400px;}
.ws72{word-spacing:1.912819px;}
.ws70{word-spacing:1.945341px;}
.ws6f{word-spacing:1.955199px;}
.ws71{word-spacing:1.972595px;}
.wse1{word-spacing:1.994299px;}
.ws34{word-spacing:2.032370px;}
.wsbe{word-spacing:2.039241px;}
.wsbd{word-spacing:2.044339px;}
.ws5b{word-spacing:2.092146px;}
.wsaa{word-spacing:2.151922px;}
.wsab{word-spacing:2.188214px;}
.ws97{word-spacing:2.205734px;}
.ws44{word-spacing:2.211697px;}
.wsd4{word-spacing:2.270912px;}
.wsd5{word-spacing:2.271473px;}
.wsd3{word-spacing:2.283109px;}
.ws17{word-spacing:2.331248px;}
.wsbc{word-spacing:2.367130px;}
.ws139{word-spacing:2.420928px;}
.ws99{word-spacing:2.450800px;}
.ws52{word-spacing:2.510575px;}
.ws96{word-spacing:2.528525px;}
.wsf0{word-spacing:2.557760px;}
.wsee{word-spacing:2.558488px;}
.wsef{word-spacing:2.567774px;}
.ws9a{word-spacing:2.570351px;}
.ws86{word-spacing:2.621811px;}
.ws85{word-spacing:2.630126px;}
.wse8{word-spacing:2.689902px;}
.ws11{word-spacing:2.809453px;}
.ws104{word-spacing:2.851315px;}
.wsb5{word-spacing:2.869229px;}
.wsb4{word-spacing:2.929004px;}
.wsf2{word-spacing:2.958912px;}
.ws37{word-spacing:2.988780px;}
.ws9b{word-spacing:3.048556px;}
.wsa3{word-spacing:3.081371px;}
.ws9c{word-spacing:3.088214px;}
.wsa2{word-spacing:3.105861px;}
.wsa0{word-spacing:3.108331px;}
.ws134{word-spacing:3.120307px;}
.ws15{word-spacing:3.168107px;}
.ws124{word-spacing:3.222576px;}
.ws126{word-spacing:3.223363px;}
.ws7{word-spacing:3.227904px;}
.wsf1{word-spacing:3.281702px;}
.ws60{word-spacing:3.287658px;}
.ws49{word-spacing:3.347434px;}
.ws125{word-spacing:3.389299px;}
.wsc3{word-spacing:3.407209px;}
.ws31{word-spacing:3.466985px;}
.ws76{word-spacing:3.498282px;}
.wsc6{word-spacing:3.526760px;}
.ws19{word-spacing:3.586536px;}
.ws32{word-spacing:3.646312px;}
.wse4{word-spacing:3.765863px;}
.wsa8{word-spacing:3.869464px;}
.wsa6{word-spacing:3.885414px;}
.wsa7{word-spacing:3.888214px;}
.wsb7{word-spacing:3.945190px;}
.wsa1{word-spacing:3.945520px;}
.ws12e{word-spacing:4.142477px;}
.ws3f{word-spacing:4.184292px;}
.ws80{word-spacing:4.303843px;}
.ws11b{word-spacing:4.423394px;}
.ws2f{word-spacing:4.483170px;}
.ws45{word-spacing:4.662497px;}
.ws77{word-spacing:4.722272px;}
.ws8b{word-spacing:4.782048px;}
.ws2c{word-spacing:4.841824px;}
.wsb9{word-spacing:4.864887px;}
.wsb8{word-spacing:4.901599px;}
.ws16{word-spacing:5.140702px;}
.ws121{word-spacing:5.200477px;}
.ws106{word-spacing:5.320028px;}
.ws30{word-spacing:5.439580px;}
.ws3e{word-spacing:5.499355px;}
.ws4f{word-spacing:5.559131px;}
.ws4e{word-spacing:5.572038px;}
.ws4d{word-spacing:5.574099px;}
.ws1b{word-spacing:5.738458px;}
.wsaf{word-spacing:5.743309px;}
.ws18{word-spacing:5.798233px;}
.ws40{word-spacing:5.858009px;}
.ws12a{word-spacing:5.971622px;}
.wsce{word-spacing:6.037336px;}
.ws7f{word-spacing:6.933970px;}
.ws107{word-spacing:7.291746px;}
.ws4b{word-spacing:7.292623px;}
.ws108{word-spacing:7.299483px;}
.wsf{word-spacing:7.352399px;}
.ws123{word-spacing:7.531776px;}
.ws137{word-spacing:7.800768px;}
.ws6d{word-spacing:7.950155px;}
.ws6e{word-spacing:7.957106px;}
.wsb2{word-spacing:8.129482px;}
.wsfa{word-spacing:8.189257px;}
.ws130{word-spacing:8.392550px;}
.ws22{word-spacing:8.547911px;}
.ws23{word-spacing:8.597530px;}
.ws4a{word-spacing:8.667462px;}
.ws8a{word-spacing:8.906564px;}
.wsc1{word-spacing:9.085891px;}
.ws12b{word-spacing:9.145478px;}
.ws81{word-spacing:9.145667px;}
.ws128{word-spacing:9.148147px;}
.ws1c{word-spacing:9.205442px;}
.ws46{word-spacing:9.265218px;}
.ws12f{word-spacing:9.360922px;}
.wsc5{word-spacing:9.683647px;}
.wsea{word-spacing:9.743423px;}
.wsa{word-spacing:9.862974px;}
.ws4c{word-spacing:10.102076px;}
.ws7b{word-spacing:10.488994px;}
.ws7a{word-spacing:10.509393px;}
.ws7c{word-spacing:10.520506px;}
.ws13e{word-spacing:10.544486px;}
.ws12c{word-spacing:10.705882px;}
.ws7d{word-spacing:10.759608px;}
.ws7e{word-spacing:10.819384px;}
.ws122{word-spacing:11.512858px;}
.ws65{word-spacing:12.074671px;}
.ws64{word-spacing:12.104164px;}
.ws63{word-spacing:12.109393px;}
.ws113{word-spacing:12.851754px;}
.ws6{word-spacing:13.449600px;}
.ws66{word-spacing:13.867939px;}
.ws138{word-spacing:14.364173px;}
.wseb{word-spacing:14.405920px;}
.wsec{word-spacing:14.444535px;}
.ws131{word-spacing:14.471770px;}
.ws132{word-spacing:15.009754px;}
.ws8e{word-spacing:15.362329px;}
.ws8f{word-spacing:15.374753px;}
.ws47{word-spacing:15.481880px;}
.ws1a{word-spacing:15.507119px;}
.wsbb{word-spacing:15.541656px;}
.ws3{word-spacing:15.764068px;}
.ws4{word-spacing:15.770068px;}
.ws8d{word-spacing:16.133576px;}
.ws8c{word-spacing:16.139412px;}
.ws13c{word-spacing:16.569907px;}
.wsed{word-spacing:20.383480px;}
.ws13f{word-spacing:21.519360px;}
.ws13d{word-spacing:25.554240px;}
.ws5{word-spacing:30.710068px;}
.wsf8{word-spacing:71.713267px;}
.wsf9{word-spacing:71.767066px;}
.wsf4{word-spacing:85.162867px;}
.wsf7{word-spacing:98.612467px;}
.wsf3{word-spacing:112.062067px;}
.ws103{word-spacing:132.384079px;}
.ws105{word-spacing:136.308497px;}
.ws102{word-spacing:144.066402px;}
.wsdc{word-spacing:172.692864px;}
.wsdb{word-spacing:177.534720px;}
._6c{margin-left:-22.284463px;}
._6b{margin-left:-20.192404px;}
._10{margin-left:-7.119234px;}
._3{margin-left:-5.971622px;}
._1{margin-left:-3.981082px;}
._0{margin-left:-2.726440px;}
._2{margin-left:-1.022170px;}
._6{width:1.091170px;}
._20{width:2.510575px;}
._19{width:4.423394px;}
._1b{width:5.445470px;}
._4{width:12.481229px;}
._15{width:13.557139px;}
._1a{width:14.585135px;}
._69{width:15.637976px;}
._5{width:16.677504px;}
._1f{width:17.681663px;}
._7{width:18.715747px;}
._18{width:19.725948px;}
._8{width:20.754149px;}
._e{width:22.176748px;}
._d{width:23.796673px;}
._1d{width:24.938394px;}
._c{width:26.002386px;}
._22{width:27.383209px;}
._b{width:28.417348px;}
._17{width:30.067127px;}
._16{width:32.087482px;}
._a{width:33.312962px;}
._67{width:34.914888px;}
._f{width:36.058405px;}
._23{width:37.186408px;}
._6e{width:39.368676px;}
._9{width:41.012046px;}
._1e{width:43.590270px;}
._12{width:44.771924px;}
._11{width:46.546521px;}
._1c{width:49.255094px;}
._68{width:57.324800px;}
._6d{width:61.868160px;}
._5b{width:71.713267px;}
._5c{width:73.972466px;}
._62{width:83.537108px;}
._21{width:85.060679px;}
._6a{width:88.767360px;}
._66{width:95.978859px;}
._60{width:97.383841px;}
._58{width:98.612467px;}
._5f{width:109.066163px;}
._65{width:110.884984px;}
._59{width:112.169664px;}
._5d{width:120.748486px;}
._63{width:123.168421px;}
._5a{width:125.511667px;}
._61{width:132.430809px;}
._64{width:136.564021px;}
._5e{width:144.066402px;}
._4b{width:150.904512px;}
._43{width:153.002650px;}
._47{width:155.746368px;}
._48{width:157.037530px;}
._30{width:161.018611px;}
._44{width:163.224346px;}
._2f{width:164.354112px;}
._2e{width:166.775040px;}
._2c{width:168.066202px;}
._2d{width:169.195968px;}
._2b{width:170.487130px;}
._2a{width:173.284646px;}
._29{width:176.620147px;}
._52{width:183.775334px;}
._57{width:185.819674px;}
._3c{width:188.617190px;}
._4c{width:194.427418px;}
._54{width:197.224934px;}
._3d{width:199.645862px;}
._42{width:202.066790px;}
._49{width:204.111130px;}
._28{width:205.456090px;}
._27{width:207.877018px;}
._41{width:209.006784px;}
._3f{width:210.566938px;}
._35{width:212.682354px;}
._53{width:214.332826px;}
._34{width:215.929499px;}
._33{width:217.560730px;}
._3e{width:219.120883px;}
._56{width:222.940570px;}
._45{width:224.322049px;}
._38{width:227.728627px;}
._39{width:228.965990px;}
._3a{width:231.924902px;}
._40{width:233.269862px;}
._4d{width:234.453427px;}
._51{width:235.977061px;}
._55{width:237.627533px;}
._36{width:239.295283px;}
._3b{width:242.039002px;}
._32{width:244.190938px;}
._4e{width:245.535898px;}
._31{width:246.558067px;}
._37{width:250.323955px;}
._46{width:255.488602px;}
._4f{width:269.691379px;}
._4a{width:274.479437px;}
._50{width:280.720051px;}
._26{width:285.561907px;}
._25{width:287.929037px;}
._13{width:997.781019px;}
._24{width:2045.288700px;}
._14{width:2069.198700px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,121,123);}
.fs5{font-size:29.887800px;}
.fs6{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:46.729290px;}
.fs8{font-size:47.236800px;}
.fs4{font-size:47.337600px;}
.fsa{font-size:47.820600px;}
.fsd{font-size:52.771389px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.ye{bottom:14.151273px;}
.y2{bottom:16.015847px;}
.y30{bottom:63.780000px;}
.yad{bottom:108.612000px;}
.yc6{bottom:109.596000px;}
.y1d3{bottom:109.779000px;}
.y1db{bottom:112.063500px;}
.y20d{bottom:113.844000px;}
.y2f{bottom:120.579000px;}
.y63{bottom:123.121500px;}
.y79{bottom:123.913500px;}
.y96{bottom:127.098000px;}
.y1da{bottom:127.261500px;}
.y1ce{bottom:128.850000px;}
.yac{bottom:128.875500px;}
.yc5{bottom:129.859500px;}
.y1d2{bottom:130.042500px;}
.y20c{bottom:133.212000px;}
.y2e{bottom:140.842500px;}
.y1d9{bottom:142.459500px;}
.y62{bottom:143.386500px;}
.y95{bottom:147.361500px;}
.y148{bottom:147.373500px;}
.y1cd{bottom:149.115000px;}
.yab{bottom:149.139000px;}
.yc4{bottom:150.124500px;}
.y1d1{bottom:150.306000px;}
.y140{bottom:151.897500px;}
.y20b{bottom:152.578500px;}
.yd3{bottom:160.392000px;}
.y2d{bottom:161.107500px;}
.y61{bottom:163.650000px;}
.yaa{bottom:164.401500px;}
.y1d8{bottom:166.624500px;}
.y147{bottom:167.637000px;}
.y13f{bottom:168.336000px;}
.y1cc{bottom:169.378500px;}
.yef{bottom:169.404000px;}
.yc3{bottom:170.388000px;}
.y1d0{bottom:170.571000px;}
.y20a{bottom:171.946500px;}
.y94{bottom:176.592000px;}
.yd2{bottom:180.657000px;}
.y2c{bottom:181.371000px;}
.y1d7{bottom:181.822500px;}
.y60{bottom:183.913500px;}
.ya9{bottom:184.666500px;}
.y13e{bottom:184.774500px;}
.y19b{bottom:186.309000px;}
.y146{bottom:187.902000px;}
.y1cb{bottom:189.643500px;}
.yee{bottom:189.667500px;}
.yc2{bottom:190.651500px;}
.y209{bottom:191.313000px;}
.y1d6{bottom:197.020500px;}
.yd1{bottom:200.920500px;}
.y13d{bottom:201.213000px;}
.y2b{bottom:201.636000px;}
.y5f{bottom:204.178500px;}
.ya8{bottom:204.930000px;}
.y19a{bottom:206.574000px;}
.y145{bottom:208.165500px;}
.y1ca{bottom:209.907000px;}
.yed{bottom:209.932500px;}
.y208{bottom:210.681000px;}
.yc1{bottom:210.916500px;}
.y93{bottom:211.411500px;}
.yf1{bottom:213.847500px;}
.y1cf{bottom:214.537500px;}
.y13c{bottom:217.651500px;}
.yd0{bottom:221.184000px;}
.y2a{bottom:221.899500px;}
.y5e{bottom:224.442000px;}
.ya7{bottom:225.193500px;}
.y199{bottom:226.837500px;}
.y144{bottom:228.429000px;}
.y16e{bottom:229.762500px;}
.y207{bottom:230.049000px;}
.y1c9{bottom:230.170500px;}
.yec{bottom:230.196000px;}
.yc0{bottom:231.180000px;}
.y92{bottom:231.675000px;}
.yf0{bottom:233.080500px;}
.y13b{bottom:234.088500px;}
.y106{bottom:239.244000px;}
.ycf{bottom:241.449000px;}
.y29{bottom:242.163000px;}
.y5d{bottom:244.707000px;}
.ya6{bottom:245.458500px;}
.y198{bottom:247.101000px;}
.y206{bottom:249.415500px;}
.y16d{bottom:250.026000px;}
.y1c8{bottom:250.435500px;}
.yeb{bottom:250.459500px;}
.y13a{bottom:250.527000px;}
.y91{bottom:251.940000px;}
.y105{bottom:259.507500px;}
.ybf{bottom:260.410500px;}
.yce{bottom:261.712500px;}
.y143{bottom:262.276500px;}
.y28{bottom:262.428000px;}
.y5c{bottom:264.970500px;}
.ya5{bottom:265.722000px;}
.y139{bottom:266.965500px;}
.y197{bottom:267.366000px;}
.y205{bottom:268.783500px;}
.y16c{bottom:270.291000px;}
.y1c7{bottom:270.699000px;}
.yea{bottom:270.724500px;}
.y90{bottom:272.203500px;}
.y104{bottom:279.772500px;}
.ycd{bottom:281.977500px;}
.y142{bottom:282.541500px;}
.y27{bottom:282.691500px;}
.y138{bottom:283.404000px;}
.y5b{bottom:285.234000px;}
.ya4{bottom:285.987000px;}
.y196{bottom:287.629500px;}
.y204{bottom:288.151500px;}
.y16b{bottom:290.554500px;}
.y1c6{bottom:290.964000px;}
.ye9{bottom:290.988000px;}
.y8f{bottom:292.468500px;}
.y137{bottom:299.842500px;}
.y103{bottom:300.036000px;}
.ybe{bottom:301.000500px;}
.ya3{bottom:301.249500px;}
.ycc{bottom:302.241000px;}
.y141{bottom:302.805000px;}
.y26{bottom:302.956500px;}
.y5a{bottom:305.499000px;}
.y203{bottom:307.518000px;}
.y195{bottom:307.894500px;}
.y16a{bottom:310.818000px;}
.y1c5{bottom:311.227500px;}
.ye8{bottom:311.253000px;}
.y136{bottom:316.281000px;}
.ybd{bottom:320.233500px;}
.y102{bottom:320.301000px;}
.ya2{bottom:321.513000px;}
.y8e{bottom:321.699000px;}
.ycb{bottom:322.504500px;}
.y25{bottom:323.220000px;}
.y59{bottom:325.762500px;}
.y202{bottom:326.886000px;}
.y236{bottom:327.783000px;}
.y194{bottom:328.158000px;}
.y169{bottom:331.083000px;}
.y1c4{bottom:331.491000px;}
.ye7{bottom:331.516500px;}
.y135{bottom:332.719500px;}
.ybc{bottom:339.466500px;}
.y101{bottom:340.564500px;}
.ya1{bottom:341.776500px;}
.yca{bottom:342.769500px;}
.y24{bottom:343.483500px;}
.y58{bottom:346.027500px;}
.y201{bottom:346.252500px;}
.y235{bottom:347.151000px;}
.y193{bottom:348.421500px;}
.y134{bottom:349.158000px;}
.y168{bottom:351.346500px;}
.y1c3{bottom:351.756000px;}
.ye6{bottom:351.780000px;}
.y8d{bottom:356.518500px;}
.y100{bottom:360.828000px;}
.ya0{bottom:362.041500px;}
.yc9{bottom:363.033000px;}
.y23{bottom:363.748500px;}
.y133{bottom:365.596500px;}
.y200{bottom:365.620500px;}
.y57{bottom:366.291000px;}
.y234{bottom:366.517500px;}
.y233{bottom:366.924000px;}
.y192{bottom:368.686500px;}
.y167{bottom:371.611500px;}
.y1c2{bottom:372.019500px;}
.ye5{bottom:372.045000px;}
.y8c{bottom:376.782000px;}
.yff{bottom:381.093000px;}
.y132{bottom:382.035000px;}
.y9f{bottom:382.305000px;}
.yc8{bottom:383.298000px;}
.y22{bottom:384.012000px;}
.y1ff{bottom:384.988500px;}
.y56{bottom:386.554500px;}
.y191{bottom:388.950000px;}
.y166{bottom:391.875000px;}
.y1c1{bottom:392.284500px;}
.ye4{bottom:392.308500px;}
.y8b{bottom:397.045500px;}
.y131{bottom:398.473500px;}
.y232{bottom:399.468000px;}
.yfe{bottom:401.356500px;}
.y78{bottom:403.561500px;}
.y1fe{bottom:404.355000px;}
.y55{bottom:406.819500px;}
.y190{bottom:409.213500px;}
.y165{bottom:412.138500px;}
.y1c0{bottom:412.548000px;}
.y21{bottom:413.242500px;}
.y130{bottom:414.910500px;}
.y9e{bottom:415.957500px;}
.y8a{bottom:417.310500px;}
.y231{bottom:418.836000px;}
.yfd{bottom:421.621500px;}
.y1fd{bottom:423.723000px;}
.y77{bottom:423.825000px;}
.y54{bottom:427.083000px;}
.y18f{bottom:429.478500px;}
.y12f{bottom:431.349000px;}
.y164{bottom:432.403500px;}
.y1bf{bottom:432.811500px;}
.ye3{bottom:435.654000px;}
.y9d{bottom:436.221000px;}
.y89{bottom:437.574000px;}
.y230{bottom:438.204000px;}
.yfc{bottom:441.885000px;}
.y1fc{bottom:443.089500px;}
.y76{bottom:444.090000px;}
.y53{bottom:447.348000px;}
.y12e{bottom:447.787500px;}
.y18e{bottom:449.742000px;}
.y163{bottom:452.667000px;}
.y1be{bottom:453.076500px;}
.ye2{bottom:454.887000px;}
.y9c{bottom:456.486000px;}
.y22f{bottom:457.570500px;}
.yfb{bottom:462.148500px;}
.y1fb{bottom:462.457500px;}
.y12d{bottom:464.226000px;}
.y75{bottom:464.353500px;}
.y88{bottom:466.804500px;}
.y52{bottom:467.611500px;}
.y18d{bottom:470.007000px;}
.y162{bottom:472.932000px;}
.y1bd{bottom:473.340000px;}
.y9b{bottom:474.736500px;}
.y22e{bottom:476.938500px;}
.y12c{bottom:480.664500px;}
.y1fa{bottom:481.825500px;}
.yfa{bottom:482.413500px;}
.y74{bottom:484.618500px;}
.y51{bottom:487.875000px;}
.y20{bottom:489.651000px;}
.y18c{bottom:490.270500px;}
.y161{bottom:493.195500px;}
.y1bc{bottom:493.605000px;}
.y9a{bottom:495.001500px;}
.y22d{bottom:496.305000px;}
.y12b{bottom:497.103000px;}
.y1f9{bottom:501.192000px;}
.y87{bottom:501.624000px;}
.yf9{bottom:502.677000px;}
.y73{bottom:504.882000px;}
.y50{bottom:508.140000px;}
.y1f{bottom:509.916000px;}
.y18b{bottom:510.534000px;}
.y160{bottom:513.459000px;}
.y12a{bottom:513.541500px;}
.y99{bottom:515.265000px;}
.y22c{bottom:515.673000px;}
.y1f8{bottom:520.560000px;}
.y86{bottom:521.889000px;}
.yf8{bottom:522.940500px;}
.y72{bottom:525.145500px;}
.y4f{bottom:528.403500px;}
.y129{bottom:529.980000px;}
.y18a{bottom:530.799000px;}
.y15f{bottom:533.724000px;}
.y22b{bottom:535.041000px;}
.y98{bottom:535.528500px;}
.y1f7{bottom:539.926500px;}
.y1bb{bottom:540.335565px;}
.y85{bottom:542.152500px;}
.yf7{bottom:543.205500px;}
.y71{bottom:545.410500px;}
.y128{bottom:546.418500px;}
.y1e{bottom:548.112000px;}
.y4e{bottom:548.667000px;}
.y189{bottom:551.062500px;}
.y15e{bottom:553.987500px;}
.y22a{bottom:554.407500px;}
.y1ba{bottom:556.460254px;}
.y1f6{bottom:559.294500px;}
.y84{bottom:562.416000px;}
.y127{bottom:562.857000px;}
.yf6{bottom:563.469000px;}
.y70{bottom:565.674000px;}
.y1d{bottom:568.377000px;}
.y4d{bottom:568.932000px;}
.y188{bottom:571.327500px;}
.y1b9{bottom:572.584943px;}
.y229{bottom:573.775500px;}
.y15d{bottom:574.252500px;}
.y1f5{bottom:578.662500px;}
.y126{bottom:579.294000px;}
.y83{bottom:582.681000px;}
.yf5{bottom:583.734000px;}
.y6f{bottom:585.939000px;}
.y1c{bottom:588.640500px;}
.y1b8{bottom:588.708160px;}
.y4c{bottom:589.195500px;}
.y187{bottom:591.591000px;}
.y228{bottom:593.142000px;}
.y15c{bottom:594.516000px;}
.y125{bottom:595.732500px;}
.y1f4{bottom:598.029000px;}
.y1b7{bottom:604.832850px;}
.y6e{bottom:606.202500px;}
.y1b{bottom:608.904000px;}
.y4b{bottom:609.460500px;}
.y186{bottom:611.854500px;}
.y82{bottom:611.911500px;}
.y124{bottom:612.171000px;}
.y227{bottom:612.510000px;}
.yf4{bottom:612.964500px;}
.y15b{bottom:614.779500px;}
.y1f3{bottom:617.397000px;}
.y1b6{bottom:620.957539px;}
.y6d{bottom:626.466000px;}
.y123{bottom:628.609500px;}
.y1a{bottom:629.169000px;}
.y4a{bottom:629.724000px;}
.y226{bottom:631.878000px;}
.y185{bottom:632.119500px;}
.y15a{bottom:635.044500px;}
.y1f2{bottom:636.763500px;}
.y1b5{bottom:637.082228px;}
.y122{bottom:645.048000px;}
.y6c{bottom:646.731000px;}
.y19{bottom:649.432500px;}
.y49{bottom:649.987500px;}
.y225{bottom:651.244500px;}
.y184{bottom:652.383000px;}
.y1b4{bottom:653.206917px;}
.yf3{bottom:653.553000px;}
.y159{bottom:655.308000px;}
.y1f1{bottom:656.131500px;}
.y121{bottom:661.486500px;}
.y6b{bottom:666.994500px;}
.y1b3{bottom:669.331606px;}
.y18{bottom:669.697500px;}
.y48{bottom:670.252500px;}
.y224{bottom:670.612500px;}
.yf2{bottom:672.786000px;}
.y1f0{bottom:675.499500px;}
.y158{bottom:675.573000px;}
.yc7{bottom:675.961500px;}
.y120{bottom:677.925000px;}
.ye1{bottom:680.556000px;}
.y1b2{bottom:685.456295px;}
.y6a{bottom:687.258000px;}
.y17{bottom:689.961000px;}
.y223{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y11f{bottom:694.363500px;}
.y1ef{bottom:694.866000px;}
.y157{bottom:695.836500px;}
.y183{bottom:699.280500px;}
.ye0{bottom:700.821000px;}
.y1b1{bottom:701.580984px;}
.y69{bottom:707.523000px;}
.y222{bottom:709.347000px;}
.y16{bottom:710.224500px;}
.y46{bottom:710.781000px;}
.y11e{bottom:710.802000px;}
.y1ee{bottom:714.234000px;}
.y182{bottom:715.719000px;}
.y156{bottom:716.100000px;}
.y1b0{bottom:717.705673px;}
.ydf{bottom:721.084500px;}
.y11d{bottom:727.240500px;}
.y68{bottom:727.786500px;}
.y221{bottom:728.715000px;}
.y15{bottom:730.489500px;}
.y45{bottom:731.044500px;}
.y181{bottom:732.157500px;}
.y1ed{bottom:733.600500px;}
.y1af{bottom:733.830362px;}
.y155{bottom:736.365000px;}
.y97{bottom:736.753500px;}
.yde{bottom:741.348000px;}
.y11c{bottom:743.677500px;}
.y67{bottom:748.051500px;}
.y220{bottom:748.081500px;}
.y180{bottom:748.594500px;}
.y1ae{bottom:749.953579px;}
.y14{bottom:750.753000px;}
.y44{bottom:751.308000px;}
.y1ec{bottom:752.968500px;}
.y154{bottom:756.628500px;}
.y11b{bottom:760.116000px;}
.ydd{bottom:761.613000px;}
.y17f{bottom:765.033000px;}
.y1ad{bottom:766.078268px;}
.y21f{bottom:767.449500px;}
.y66{bottom:768.315000px;}
.y13{bottom:771.018000px;}
.y43{bottom:771.573000px;}
.y1eb{bottom:772.336500px;}
.y11a{bottom:776.554500px;}
.y153{bottom:776.893500px;}
.y17e{bottom:781.471500px;}
.ydc{bottom:781.876500px;}
.y21e{bottom:786.816000px;}
.ybb{bottom:787.353000px;}
.y65{bottom:788.578500px;}
.y12{bottom:791.281500px;}
.y1ea{bottom:791.703000px;}
.y42{bottom:791.836500px;}
.y119{bottom:792.993000px;}
.y152{bottom:797.157000px;}
.y17d{bottom:797.910000px;}
.ydb{bottom:802.141500px;}
.y1ac{bottom:803.353500px;}
.y21d{bottom:806.184000px;}
.y81{bottom:808.843500px;}
.y118{bottom:809.431500px;}
.y1e9{bottom:811.071000px;}
.y11{bottom:811.545000px;}
.y41{bottom:812.101500px;}
.y17c{bottom:814.348500px;}
.yba{bottom:815.089500px;}
.y151{bottom:817.420500px;}
.y64{bottom:817.809000px;}
.yda{bottom:822.405000px;}
.y1ab{bottom:822.586500px;}
.y21c{bottom:825.552000px;}
.y117{bottom:825.870000px;}
.y80{bottom:829.107000px;}
.y1e8{bottom:830.437500px;}
.y17b{bottom:830.787000px;}
.y10{bottom:831.810000px;}
.y40{bottom:832.365000px;}
.yb9{bottom:835.354500px;}
.y150{bottom:837.685500px;}
.y116{bottom:842.308500px;}
.yd9{bottom:842.668500px;}
.y21b{bottom:844.918500px;}
.y7f{bottom:849.372000px;}
.y1e7{bottom:849.805500px;}
.yb8{bottom:851.134500px;}
.y3f{bottom:852.628500px;}
.y14f{bottom:857.949000px;}
.y115{bottom:858.747000px;}
.yd8{bottom:862.933500px;}
.y1aa{bottom:863.033923px;}
.y21a{bottom:864.286500px;}
.yc{bottom:867.241500px;}
.yd{bottom:867.241555px;}
.y17a{bottom:868.384500px;}
.y1e6{bottom:869.173500px;}
.y7e{bottom:869.635500px;}
.yb7{bottom:871.399500px;}
.y3e{bottom:872.893500px;}
.y114{bottom:875.185500px;}
.y1a9{bottom:877.312404px;}
.y14e{bottom:878.214000px;}
.yd7{bottom:883.197000px;}
.y219{bottom:883.653000px;}
.yb6{bottom:887.179500px;}
.y179{bottom:887.617500px;}
.y1e5{bottom:888.540000px;}
.y7d{bottom:889.899000px;}
.y1a8{bottom:891.590885px;}
.y113{bottom:891.624000px;}
.y3d{bottom:893.157000px;}
.y14d{bottom:898.477500px;}
.y218{bottom:903.021000px;}
.y1a7{bottom:905.869366px;}
.yb{bottom:907.008000px;}
.yb5{bottom:907.444500px;}
.y1e4{bottom:907.908000px;}
.y112{bottom:908.061000px;}
.y7c{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y14c{bottom:918.741000px;}
.y1a6{bottom:920.147847px;}
.y217{bottom:922.389000px;}
.y111{bottom:924.499500px;}
.ya{bottom:925.164000px;}
.yd6{bottom:926.542500px;}
.y1e3{bottom:927.274500px;}
.yb4{bottom:927.708000px;}
.y178{bottom:929.206500px;}
.y7b{bottom:930.427500px;}
.y3b{bottom:933.685500px;}
.y1a5{bottom:934.426328px;}
.y14b{bottom:939.006000px;}
.y110{bottom:940.938000px;}
.y216{bottom:941.755500px;}
.yb3{bottom:943.489500px;}
.y177{bottom:945.645000px;}
.yd5{bottom:945.775500px;}
.y1e2{bottom:946.642500px;}
.y9{bottom:948.204000px;}
.y1a4{bottom:948.704810px;}
.y1d5{bottom:950.692500px;}
.y3a{bottom:953.949000px;}
.y10f{bottom:957.376500px;}
.y14a{bottom:959.269500px;}
.y7a{bottom:959.658000px;}
.y215{bottom:961.123500px;}
.y8{bottom:961.479000px;}
.y176{bottom:962.083500px;}
.y1a3{bottom:962.983291px;}
.yb2{bottom:963.753000px;}
.yd4{bottom:965.008500px;}
.y1e1{bottom:966.010500px;}
.y10e{bottom:973.815000px;}
.y39{bottom:974.214000px;}
.y1a2{bottom:977.260469px;}
.y175{bottom:978.522000px;}
.y149{bottom:979.534500px;}
.y1d4{bottom:979.923000px;}
.y214{bottom:980.490000px;}
.yb1{bottom:984.016500px;}
.y7{bottom:984.517500px;}
.y1e0{bottom:985.377000px;}
.y10d{bottom:990.253500px;}
.y1a1{bottom:991.538950px;}
.y38{bottom:994.477500px;}
.y174{bottom:994.960500px;}
.y213{bottom:999.858000px;}
.y6{bottom:1002.675000px;}
.yb0{bottom:1004.281500px;}
.y1df{bottom:1004.745000px;}
.y1a0{bottom:1005.817431px;}
.y10c{bottom:1006.692000px;}
.y173{bottom:1011.399000px;}
.y37{bottom:1014.742500px;}
.y212{bottom:1019.226000px;}
.y19f{bottom:1020.095912px;}
.y10b{bottom:1023.130500px;}
.y1de{bottom:1024.111500px;}
.yaf{bottom:1024.545000px;}
.y5{bottom:1024.915500px;}
.y172{bottom:1027.837500px;}
.y19e{bottom:1034.374393px;}
.y36{bottom:1035.006000px;}
.y211{bottom:1038.592500px;}
.y10a{bottom:1039.569000px;}
.yae{bottom:1040.326500px;}
.y171{bottom:1044.274500px;}
.y19d{bottom:1048.652874px;}
.y1dd{bottom:1052.446500px;}
.y35{bottom:1055.269500px;}
.y109{bottom:1056.007500px;}
.y210{bottom:1057.960500px;}
.y170{bottom:1060.713000px;}
.y19c{bottom:1062.931355px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y20f{bottom:1077.327000px;}
.y108{bottom:1079.946000px;}
.y1dc{bottom:1091.898000px;}
.y33{bottom:1095.798000px;}
.y20e{bottom:1096.695000px;}
.y16f{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y107{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h9{height:25.508090px;}
.hf{height:29.349820px;}
.h7{height:30.461558px;}
.h11{height:30.582721px;}
.hb{height:33.112997px;}
.h13{height:34.018923px;}
.ha{height:34.199443px;}
.he{height:35.052500px;}
.h14{height:38.417571px;}
.h10{height:38.896243px;}
.h8{height:39.165235px;}
.h12{height:39.434227px;}
.hc{height:43.217759px;}
.hd{height:43.516637px;}
.h4{height:43.815515px;}
.h2{height:50.930649px;}
.h6{height:54.547601px;}
.h5{height:77.792486px;}
.h3{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.555600px;}
.x1{left:114.802500px;}
.x2e{left:116.706000px;}
.x12{left:119.187000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x6a{left:125.839957px;}
.x6d{left:127.263519px;}
.x6b{left:128.761059px;}
.x6e{left:130.562319px;}
.x6c{left:137.523061px;}
.x4{left:146.170500px;}
.x2f{left:149.173500px;}
.x32{left:150.330000px;}
.x34{left:166.818000px;}
.x18{left:173.185500px;}
.x33{left:179.062500px;}
.x70{left:180.658500px;}
.x35{left:181.761000px;}
.x36{left:185.572500px;}
.x19{left:188.130000px;}
.x1a{left:191.940000px;}
.x8{left:193.525500px;}
.x63{left:197.476500px;}
.x37{left:200.515500px;}
.x9{left:204.535500px;}
.x1b{left:206.884500px;}
.x25{left:212.254500px;}
.x13{left:215.917500px;}
.x4d{left:222.045000px;}
.x4e{left:225.855000px;}
.x26{left:227.199000px;}
.xc{left:234.868500px;}
.x4f{left:240.799500px;}
.xd{left:242.340000px;}
.x74{left:254.101500px;}
.xe{left:255.843000px;}
.x73{left:258.028500px;}
.xf{left:263.314500px;}
.x47{left:272.505000px;}
.x48{left:287.449500px;}
.x6f{left:290.746500px;}
.x62{left:294.028500px;}
.x64{left:300.753000px;}
.x58{left:302.680500px;}
.x53{left:303.834000px;}
.x57{left:305.038500px;}
.x65{left:307.477500px;}
.x3c{left:310.345500px;}
.x59{left:316.431000px;}
.x5c{left:318.751500px;}
.x52{left:320.791500px;}
.x55{left:323.631000px;}
.x3d{left:325.290000px;}
.x54{left:326.994000px;}
.x3e{left:329.100000px;}
.x5d{left:333.694500px;}
.x29{left:338.188500px;}
.x3f{left:344.044500px;}
.xa{left:345.928500px;}
.xb{left:353.400000px;}
.x68{left:361.738500px;}
.x1c{left:366.819000px;}
.x69{left:374.166000px;}
.x1d{left:381.762000px;}
.x46{left:397.660500px;}
.x56{left:405.483000px;}
.x38{left:412.233000px;}
.x23{left:417.075000px;}
.x2a{left:424.752000px;}
.x39{left:427.176000px;}
.x3a{left:430.987500px;}
.x24{left:432.019500px;}
.x5a{left:435.777000px;}
.x2b{left:439.695000px;}
.x3b{left:445.930500px;}
.x5b{left:452.230500px;}
.x4b{left:457.570500px;}
.x10{left:459.001500px;}
.x21{left:460.539000px;}
.x11{left:466.473000px;}
.x4c{left:472.515000px;}
.x22{left:475.483500px;}
.x14{left:480.958500px;}
.x40{left:484.122000px;}
.x15{left:488.431500px;}
.x16{left:495.753000px;}
.x41{left:499.944000px;}
.x20{left:502.390500px;}
.x17{left:510.697500px;}
.x5e{left:560.310000px;}
.x49{left:574.002000px;}
.x5f{left:576.831000px;}
.x30{left:584.524500px;}
.x4a{left:587.452500px;}
.x60{left:604.110000px;}
.x50{left:608.911500px;}
.x42{left:614.326500px;}
.x61{left:620.629500px;}
.x51{left:623.856000px;}
.x43{left:627.775500px;}
.x44{left:631.206000px;}
.x2c{left:632.299500px;}
.x31{left:637.552500px;}
.x45{left:644.655000px;}
.x2d{left:647.242500px;}
.x1e{left:682.707000px;}
.x1f{left:697.651500px;}
.x6{left:702.742573px;}
.x66{left:713.283000px;}
.x67{left:725.515500px;}
.x71{left:749.473500px;}
.x27{left:756.148500px;}
.x28{left:771.091500px;}
.x72{left:776.371500px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.712000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.004267pt;}
.ls8{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls6{letter-spacing:10.626533pt;}
.ls23{letter-spacing:11.943115pt;}
.ls20{letter-spacing:11.954133pt;}
.ls21{letter-spacing:11.959467pt;}
.ls18{letter-spacing:12.196805pt;}
.ls1f{letter-spacing:13.171350pt;}
.ls1e{letter-spacing:13.176646pt;}
.lsf{letter-spacing:13.177199pt;}
.ls10{letter-spacing:13.230333pt;}
.lse{letter-spacing:13.269911pt;}
.lsb{letter-spacing:13.283467pt;}
.ls9{letter-spacing:13.389734pt;}
.ls1d{letter-spacing:13.415621pt;}
.ls11{letter-spacing:13.496002pt;}
.ls16{letter-spacing:13.497486pt;}
.ls15{letter-spacing:13.502928pt;}
.ls1b{letter-spacing:13.600444pt;}
.ls12{letter-spacing:14.005422pt;}
.ls1a{letter-spacing:14.596272pt;}
.ls17{letter-spacing:14.622416pt;}
.lsd{letter-spacing:15.461955pt;}
.ls19{letter-spacing:17.022416pt;}
.ls14{letter-spacing:18.130912pt;}
.ls13{letter-spacing:18.136141pt;}
.lsa{letter-spacing:19.818932pt;}
.ls1{letter-spacing:20.363733pt;}
.ls2{letter-spacing:20.369067pt;}
.ls0{letter-spacing:20.823893pt;}
.ls1c{letter-spacing:21.944287pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.lsc{letter-spacing:75.593067pt;}
.ws12{word-spacing:-13.283467pt;}
.wsd1{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws11d{word-spacing:-2.922363pt;}
.ws24{word-spacing:-2.603559pt;}
.wsc2{word-spacing:-2.444158pt;}
.ws78{word-spacing:-2.391024pt;}
.ws2b{word-spacing:-2.337890pt;}
.ws92{word-spacing:-2.284756pt;}
.ws33{word-spacing:-2.231622pt;}
.ws1f{word-spacing:-2.125355pt;}
.ws87{word-spacing:-2.019087pt;}
.ws88{word-spacing:-1.995498pt;}
.ws1d{word-spacing:-1.859685pt;}
.wse7{word-spacing:-1.753418pt;}
.ws11f{word-spacing:-1.700284pt;}
.ws9{word-spacing:-1.696326pt;}
.ws29{word-spacing:-1.487748pt;}
.wsca{word-spacing:-1.434614pt;}
.ws43{word-spacing:-1.381481pt;}
.ws41{word-spacing:-1.222079pt;}
.ws93{word-spacing:-1.220801pt;}
.wsb0{word-spacing:-1.195546pt;}
.wsb1{word-spacing:-1.195498pt;}
.ws8{word-spacing:-1.175671pt;}
.ws11e{word-spacing:-1.168945pt;}
.ws135{word-spacing:-1.004237pt;}
.wse6{word-spacing:-0.956410pt;}
.wsc7{word-spacing:-0.903276pt;}
.wsd6{word-spacing:-0.850142pt;}
.wse3{word-spacing:-0.844870pt;}
.ws5c{word-spacing:-0.797008pt;}
.ws5d{word-spacing:-0.782305pt;}
.ws5e{word-spacing:-0.743874pt;}
.ws5a{word-spacing:-0.637606pt;}
.ws140{word-spacing:-0.621670pt;}
.ws3d{word-spacing:-0.584473pt;}
.wscb{word-spacing:-0.573850pt;}
.ws3c{word-spacing:-0.564359pt;}
.ws89{word-spacing:-0.531339pt;}
.wsba{word-spacing:-0.478205pt;}
.wsb3{word-spacing:-0.425071pt;}
.ws10b{word-spacing:-0.408206pt;}
.ws3b{word-spacing:-0.397395pt;}
.ws13a{word-spacing:-0.382566pt;}
.ws51{word-spacing:-0.371937pt;}
.wscc{word-spacing:-0.334746pt;}
.ws50{word-spacing:-0.318803pt;}
.ws136{word-spacing:-0.286925pt;}
.wsd{word-spacing:-0.265669pt;}
.ws127{word-spacing:-0.239104pt;}
.wsd8{word-spacing:-0.229152pt;}
.wsd9{word-spacing:-0.226534pt;}
.wsda{word-spacing:-0.218339pt;}
.ws13{word-spacing:-0.212535pt;}
.wsf6{word-spacing:-0.191283pt;}
.ws1e{word-spacing:-0.159402pt;}
.ws98{word-spacing:-0.143462pt;}
.ws6b{word-spacing:-0.131210pt;}
.ws116{word-spacing:-0.108337pt;}
.ws10d{word-spacing:-0.107848pt;}
.ws14{word-spacing:-0.106268pt;}
.ws10e{word-spacing:-0.105312pt;}
.ws133{word-spacing:-0.095642pt;}
.ws115{word-spacing:-0.091741pt;}
.ws114{word-spacing:-0.089051pt;}
.wsdd{word-spacing:-0.085187pt;}
.ws2a{word-spacing:-0.053134pt;}
.wsf5{word-spacing:-0.047821pt;}
.ws117{word-spacing:-0.045395pt;}
.ws111{word-spacing:-0.039114pt;}
.ws90{word-spacing:-0.027106pt;}
.ws10c{word-spacing:-0.025260pt;}
.wsad{word-spacing:-0.022449pt;}
.ws95{word-spacing:-0.020118pt;}
.ws39{word-spacing:-0.019607pt;}
.wsae{word-spacing:-0.017438pt;}
.ws100{word-spacing:-0.007730pt;}
.ws91{word-spacing:-0.002996pt;}
.ws6a{word-spacing:-0.002573pt;}
.ws26{word-spacing:-0.002540pt;}
.wsfc{word-spacing:-0.001770pt;}
.ws94{word-spacing:-0.001408pt;}
.wscd{word-spacing:-0.001186pt;}
.wsfb{word-spacing:-0.000571pt;}
.wsd0{word-spacing:-0.000316pt;}
.ws1{word-spacing:-0.000274pt;}
.wsff{word-spacing:-0.000060pt;}
.ws0{word-spacing:0.000000pt;}
.ws112{word-spacing:0.001194pt;}
.ws82{word-spacing:0.002761pt;}
.wsd2{word-spacing:0.009612pt;}
.ws11c{word-spacing:0.026701pt;}
.wsd7{word-spacing:0.032481pt;}
.ws12d{word-spacing:0.038083pt;}
.ws109{word-spacing:0.044919pt;}
.wsc4{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.ws54{word-spacing:0.069832pt;}
.ws10a{word-spacing:0.071504pt;}
.wse0{word-spacing:0.074878pt;}
.ws101{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws36{word-spacing:0.115059pt;}
.ws120{word-spacing:0.126398pt;}
.ws13b{word-spacing:0.143462pt;}
.ws10f{word-spacing:0.146219pt;}
.ws62{word-spacing:0.149948pt;}
.ws11a{word-spacing:0.152455pt;}
.wse5{word-spacing:0.152504pt;}
.ws61{word-spacing:0.158310pt;}
.wsb{word-spacing:0.159402pt;}
.ws38{word-spacing:0.160131pt;}
.wsac{word-spacing:0.165073pt;}
.ws79{word-spacing:0.185441pt;}
.wsbf{word-spacing:0.191283pt;}
.ws110{word-spacing:0.198839pt;}
.ws2d{word-spacing:0.202372pt;}
.ws84{word-spacing:0.206541pt;}
.ws2e{word-spacing:0.210695pt;}
.ws28{word-spacing:0.212535pt;}
.wscf{word-spacing:0.239104pt;}
.wsfe{word-spacing:0.239234pt;}
.wse{word-spacing:0.265669pt;}
.ws67{word-spacing:0.288528pt;}
.ws68{word-spacing:0.303849pt;}
.ws21{word-spacing:0.318803pt;}
.ws6c{word-spacing:0.371937pt;}
.ws69{word-spacing:0.425071pt;}
.ws9d{word-spacing:0.448146pt;}
.ws9e{word-spacing:0.470570pt;}
.wsa9{word-spacing:0.478205pt;}
.wsb6{word-spacing:0.531339pt;}
.wsfd{word-spacing:0.584473pt;}
.wsc{word-spacing:0.637606pt;}
.ws10{word-spacing:0.743874pt;}
.wse9{word-spacing:0.797008pt;}
.ws74{word-spacing:0.850142pt;}
.ws75{word-spacing:0.903276pt;}
.ws9f{word-spacing:0.934948pt;}
.ws83{word-spacing:0.956410pt;}
.ws129{word-spacing:0.956416pt;}
.wsc0{word-spacing:1.009543pt;}
.wsc8{word-spacing:1.062677pt;}
.wsc9{word-spacing:1.072489pt;}
.ws58{word-spacing:1.097567pt;}
.ws55{word-spacing:1.101468pt;}
.ws59{word-spacing:1.115811pt;}
.ws56{word-spacing:1.120243pt;}
.ws57{word-spacing:1.121681pt;}
.wsa4{word-spacing:1.148313pt;}
.ws42{word-spacing:1.168945pt;}
.wsa5{word-spacing:1.186909pt;}
.wsdf{word-spacing:1.222079pt;}
.ws53{word-spacing:1.275213pt;}
.ws3a{word-spacing:1.328347pt;}
.ws20{word-spacing:1.381481pt;}
.ws48{word-spacing:1.434614pt;}
.wse2{word-spacing:1.487748pt;}
.ws119{word-spacing:1.538544pt;}
.ws5f{word-spacing:1.540882pt;}
.ws118{word-spacing:1.542736pt;}
.wsde{word-spacing:1.594016pt;}
.ws73{word-spacing:1.682133pt;}
.ws72{word-spacing:1.700284pt;}
.ws70{word-spacing:1.729192pt;}
.ws6f{word-spacing:1.737955pt;}
.ws71{word-spacing:1.753418pt;}
.wse1{word-spacing:1.772710pt;}
.ws34{word-spacing:1.806551pt;}
.wsbe{word-spacing:1.812659pt;}
.wsbd{word-spacing:1.817190pt;}
.ws5b{word-spacing:1.859685pt;}
.wsaa{word-spacing:1.912819pt;}
.wsab{word-spacing:1.945079pt;}
.ws97{word-spacing:1.960653pt;}
.ws44{word-spacing:1.965953pt;}
.wsd4{word-spacing:2.018588pt;}
.wsd5{word-spacing:2.019087pt;}
.wsd3{word-spacing:2.029431pt;}
.ws17{word-spacing:2.072221pt;}
.wsbc{word-spacing:2.104115pt;}
.ws139{word-spacing:2.151936pt;}
.ws99{word-spacing:2.178489pt;}
.ws52{word-spacing:2.231622pt;}
.ws96{word-spacing:2.247578pt;}
.wsf0{word-spacing:2.273564pt;}
.wsee{word-spacing:2.274212pt;}
.wsef{word-spacing:2.282466pt;}
.ws9a{word-spacing:2.284756pt;}
.ws86{word-spacing:2.330499pt;}
.ws85{word-spacing:2.337890pt;}
.wse8{word-spacing:2.391024pt;}
.ws11{word-spacing:2.497292pt;}
.ws104{word-spacing:2.534502pt;}
.wsb5{word-spacing:2.550426pt;}
.wsb4{word-spacing:2.603559pt;}
.wsf2{word-spacing:2.630144pt;}
.ws37{word-spacing:2.656693pt;}
.ws9b{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.738996pt;}
.ws9c{word-spacing:2.745079pt;}
.wsa2{word-spacing:2.760766pt;}
.wsa0{word-spacing:2.762961pt;}
.ws134{word-spacing:2.773606pt;}
.ws15{word-spacing:2.816095pt;}
.ws124{word-spacing:2.864512pt;}
.ws126{word-spacing:2.865212pt;}
.ws7{word-spacing:2.869248pt;}
.wsf1{word-spacing:2.917069pt;}
.ws60{word-spacing:2.922363pt;}
.ws49{word-spacing:2.975497pt;}
.ws125{word-spacing:3.012710pt;}
.wsc3{word-spacing:3.028630pt;}
.ws31{word-spacing:3.081764pt;}
.ws76{word-spacing:3.109584pt;}
.wsc6{word-spacing:3.134898pt;}
.ws19{word-spacing:3.188032pt;}
.ws32{word-spacing:3.241166pt;}
.wse4{word-spacing:3.347434pt;}
.wsa8{word-spacing:3.439523pt;}
.wsa6{word-spacing:3.453701pt;}
.wsa7{word-spacing:3.456190pt;}
.wsb7{word-spacing:3.506835pt;}
.wsa1{word-spacing:3.507129pt;}
.ws12e{word-spacing:3.682202pt;}
.ws3f{word-spacing:3.719371pt;}
.ws80{word-spacing:3.825638pt;}
.ws11b{word-spacing:3.931906pt;}
.ws2f{word-spacing:3.985040pt;}
.ws45{word-spacing:4.144442pt;}
.ws77{word-spacing:4.197575pt;}
.ws8b{word-spacing:4.250709pt;}
.ws2c{word-spacing:4.303843pt;}
.wsb9{word-spacing:4.324344pt;}
.wsb8{word-spacing:4.356977pt;}
.ws16{word-spacing:4.569513pt;}
.ws121{word-spacing:4.622646pt;}
.ws106{word-spacing:4.728914pt;}
.ws30{word-spacing:4.835182pt;}
.ws3e{word-spacing:4.888316pt;}
.ws4f{word-spacing:4.941450pt;}
.ws4e{word-spacing:4.952923pt;}
.ws4d{word-spacing:4.954754pt;}
.ws1b{word-spacing:5.100851pt;}
.wsaf{word-spacing:5.105163pt;}
.ws18{word-spacing:5.153985pt;}
.ws40{word-spacing:5.207119pt;}
.ws12a{word-spacing:5.308109pt;}
.wsce{word-spacing:5.366521pt;}
.ws7f{word-spacing:6.163529pt;}
.ws107{word-spacing:6.481552pt;}
.ws4b{word-spacing:6.482332pt;}
.ws108{word-spacing:6.488430pt;}
.wsf{word-spacing:6.535466pt;}
.ws123{word-spacing:6.694912pt;}
.ws137{word-spacing:6.934016pt;}
.ws6d{word-spacing:7.066804pt;}
.ws6e{word-spacing:7.072983pt;}
.wsb2{word-spacing:7.226206pt;}
.wsfa{word-spacing:7.279340pt;}
.ws130{word-spacing:7.460045pt;}
.ws22{word-spacing:7.598143pt;}
.ws23{word-spacing:7.642249pt;}
.ws4a{word-spacing:7.704411pt;}
.ws8a{word-spacing:7.916946pt;}
.wsc1{word-spacing:8.076348pt;}
.ws12b{word-spacing:8.129314pt;}
.ws81{word-spacing:8.129482pt;}
.ws128{word-spacing:8.131686pt;}
.ws1c{word-spacing:8.182615pt;}
.ws46{word-spacing:8.235749pt;}
.ws12f{word-spacing:8.320819pt;}
.wsc5{word-spacing:8.607686pt;}
.wsea{word-spacing:8.660820pt;}
.wsa{word-spacing:8.767088pt;}
.ws4c{word-spacing:8.979623pt;}
.ws7b{word-spacing:9.323550pt;}
.ws7a{word-spacing:9.341682pt;}
.ws7c{word-spacing:9.351561pt;}
.ws13e{word-spacing:9.372877pt;}
.ws12c{word-spacing:9.516339pt;}
.ws7d{word-spacing:9.564096pt;}
.ws7e{word-spacing:9.617230pt;}
.ws122{word-spacing:10.233651pt;}
.ws65{word-spacing:10.733041pt;}
.ws64{word-spacing:10.759257pt;}
.ws63{word-spacing:10.763905pt;}
.ws113{word-spacing:11.423781pt;}
.ws6{word-spacing:11.955200pt;}
.ws66{word-spacing:12.327057pt;}
.ws138{word-spacing:12.768154pt;}
.wseb{word-spacing:12.805262pt;}
.wsec{word-spacing:12.839587pt;}
.ws131{word-spacing:12.863795pt;}
.ws132{word-spacing:13.342003pt;}
.ws8e{word-spacing:13.655404pt;}
.ws8f{word-spacing:13.666447pt;}
.ws47{word-spacing:13.761671pt;}
.ws1a{word-spacing:13.784106pt;}
.wsbb{word-spacing:13.814805pt;}
.ws3{word-spacing:14.012505pt;}
.ws4{word-spacing:14.017838pt;}
.ws8d{word-spacing:14.340957pt;}
.ws8c{word-spacing:14.346144pt;}
.ws13c{word-spacing:14.728806pt;}
.wsed{word-spacing:18.118649pt;}
.ws13f{word-spacing:19.128320pt;}
.ws13d{word-spacing:22.714880pt;}
.ws5{word-spacing:27.297838pt;}
.wsf8{word-spacing:63.745126pt;}
.wsf9{word-spacing:63.792947pt;}
.wsf4{word-spacing:75.700326pt;}
.wsf7{word-spacing:87.655526pt;}
.wsf3{word-spacing:99.610726pt;}
.ws103{word-spacing:117.674737pt;}
.ws105{word-spacing:121.163108pt;}
.ws102{word-spacing:128.059024pt;}
.wsdc{word-spacing:153.504768pt;}
.wsdb{word-spacing:157.808640pt;}
._6c{margin-left:-19.808412pt;}
._6b{margin-left:-17.948803pt;}
._10{margin-left:-6.328208pt;}
._3{margin-left:-5.308109pt;}
._1{margin-left:-3.538739pt;}
._0{margin-left:-2.423502pt;}
._2{margin-left:-0.908595pt;}
._6{width:0.969929pt;}
._20{width:2.231622pt;}
._19{width:3.931906pt;}
._1b{width:4.840418pt;}
._4{width:11.094426pt;}
._15{width:12.050790pt;}
._1a{width:12.964564pt;}
._69{width:13.900423pt;}
._5{width:14.824448pt;}
._1f{width:15.717034pt;}
._7{width:16.636220pt;}
._18{width:17.534176pt;}
._8{width:18.448132pt;}
._e{width:19.712665pt;}
._d{width:21.152598pt;}
._1d{width:22.167461pt;}
._c{width:23.113232pt;}
._22{width:24.340630pt;}
._b{width:25.259865pt;}
._17{width:26.726335pt;}
._16{width:28.522206pt;}
._a{width:29.611522pt;}
._67{width:31.035456pt;}
._f{width:32.051916pt;}
._23{width:33.054585pt;}
._6e{width:34.994379pt;}
._9{width:36.455152pt;}
._1e{width:38.746907pt;}
._12{width:39.797266pt;}
._11{width:41.374685pt;}
._1c{width:43.782306pt;}
._68{width:50.955378pt;}
._6d{width:54.993920pt;}
._5b{width:63.745126pt;}
._5c{width:65.753304pt;}
._62{width:74.255207pt;}
._21{width:75.609492pt;}
._6a{width:78.904320pt;}
._66{width:85.314541pt;}
._60{width:86.563414pt;}
._58{width:87.655526pt;}
._5f{width:96.947701pt;}
._65{width:98.564430pt;}
._59{width:99.706368pt;}
._5d{width:107.331988pt;}
._63{width:109.483041pt;}
._5a{width:111.565926pt;}
._61{width:117.716274pt;}
._64{width:121.390241pt;}
._5e{width:128.059024pt;}
._4b{width:134.137344pt;}
._43{width:136.002355pt;}
._47{width:138.441216pt;}
._48{width:139.588915pt;}
._30{width:143.127654pt;}
._44{width:145.088307pt;}
._2f{width:146.092544pt;}
._2e{width:148.244480pt;}
._2c{width:149.392179pt;}
._2d{width:150.396416pt;}
._2b{width:151.544115pt;}
._2a{width:154.030797pt;}
._29{width:156.995686pt;}
._52{width:163.355853pt;}
._57{width:165.173043pt;}
._3c{width:167.659725pt;}
._4c{width:172.824371pt;}
._54{width:175.311053pt;}
._3d{width:177.462989pt;}
._42{width:179.614925pt;}
._49{width:181.432115pt;}
._28{width:182.627635pt;}
._27{width:184.779571pt;}
._41{width:185.783808pt;}
._3f{width:187.170611pt;}
._35{width:189.050981pt;}
._53{width:190.518067pt;}
._34{width:191.937332pt;}
._33{width:193.387315pt;}
._3e{width:194.774118pt;}
._56{width:198.169395pt;}
._45{width:199.397377pt;}
._38{width:202.425446pt;}
._39{width:203.525325pt;}
._3a{width:206.155469pt;}
._40{width:207.350989pt;}
._4d{width:208.403046pt;}
._51{width:209.757388pt;}
._55{width:211.224474pt;}
._36{width:212.706918pt;}
._3b{width:215.145779pt;}
._32{width:217.058611pt;}
._4e{width:218.254131pt;}
._31{width:219.162726pt;}
._37{width:222.510182pt;}
._46{width:227.100979pt;}
._4f{width:239.725670pt;}
._4a{width:243.981722pt;}
._50{width:249.528934pt;}
._26{width:253.832806pt;}
._25{width:255.936922pt;}
._13{width:886.916461pt;}
._24{width:1818.034400pt;}
._14{width:1839.287733pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:41.537147pt;}
.fs8{font-size:41.988267pt;}
.fs4{font-size:42.077867pt;}
.fsa{font-size:42.507200pt;}
.fsd{font-size:46.907901pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:14.236308pt;}
.y30{bottom:56.693333pt;}
.yad{bottom:96.544000pt;}
.yc6{bottom:97.418667pt;}
.y1d3{bottom:97.581333pt;}
.y1db{bottom:99.612000pt;}
.y20d{bottom:101.194667pt;}
.y2f{bottom:107.181333pt;}
.y63{bottom:109.441333pt;}
.y79{bottom:110.145333pt;}
.y96{bottom:112.976000pt;}
.y1da{bottom:113.121333pt;}
.y1ce{bottom:114.533333pt;}
.yac{bottom:114.556000pt;}
.yc5{bottom:115.430667pt;}
.y1d2{bottom:115.593333pt;}
.y20c{bottom:118.410667pt;}
.y2e{bottom:125.193333pt;}
.y1d9{bottom:126.630667pt;}
.y62{bottom:127.454667pt;}
.y95{bottom:130.988000pt;}
.y148{bottom:130.998667pt;}
.y1cd{bottom:132.546667pt;}
.yab{bottom:132.568000pt;}
.yc4{bottom:133.444000pt;}
.y1d1{bottom:133.605333pt;}
.y140{bottom:135.020000pt;}
.y20b{bottom:135.625333pt;}
.yd3{bottom:142.570667pt;}
.y2d{bottom:143.206667pt;}
.y61{bottom:145.466667pt;}
.yaa{bottom:146.134667pt;}
.y1d8{bottom:148.110667pt;}
.y147{bottom:149.010667pt;}
.y13f{bottom:149.632000pt;}
.y1cc{bottom:150.558667pt;}
.yef{bottom:150.581333pt;}
.yc3{bottom:151.456000pt;}
.y1d0{bottom:151.618667pt;}
.y20a{bottom:152.841333pt;}
.y94{bottom:156.970667pt;}
.yd2{bottom:160.584000pt;}
.y2c{bottom:161.218667pt;}
.y1d7{bottom:161.620000pt;}
.y60{bottom:163.478667pt;}
.ya9{bottom:164.148000pt;}
.y13e{bottom:164.244000pt;}
.y19b{bottom:165.608000pt;}
.y146{bottom:167.024000pt;}
.y1cb{bottom:168.572000pt;}
.yee{bottom:168.593333pt;}
.yc2{bottom:169.468000pt;}
.y209{bottom:170.056000pt;}
.y1d6{bottom:175.129333pt;}
.yd1{bottom:178.596000pt;}
.y13d{bottom:178.856000pt;}
.y2b{bottom:179.232000pt;}
.y5f{bottom:181.492000pt;}
.ya8{bottom:182.160000pt;}
.y19a{bottom:183.621333pt;}
.y145{bottom:185.036000pt;}
.y1ca{bottom:186.584000pt;}
.yed{bottom:186.606667pt;}
.y208{bottom:187.272000pt;}
.yc1{bottom:187.481333pt;}
.y93{bottom:187.921333pt;}
.yf1{bottom:190.086667pt;}
.y1cf{bottom:190.700000pt;}
.y13c{bottom:193.468000pt;}
.yd0{bottom:196.608000pt;}
.y2a{bottom:197.244000pt;}
.y5e{bottom:199.504000pt;}
.ya7{bottom:200.172000pt;}
.y199{bottom:201.633333pt;}
.y144{bottom:203.048000pt;}
.y16e{bottom:204.233333pt;}
.y207{bottom:204.488000pt;}
.y1c9{bottom:204.596000pt;}
.yec{bottom:204.618667pt;}
.yc0{bottom:205.493333pt;}
.y92{bottom:205.933333pt;}
.yf0{bottom:207.182667pt;}
.y13b{bottom:208.078667pt;}
.y106{bottom:212.661333pt;}
.ycf{bottom:214.621333pt;}
.y29{bottom:215.256000pt;}
.y5d{bottom:217.517333pt;}
.ya6{bottom:218.185333pt;}
.y198{bottom:219.645333pt;}
.y206{bottom:221.702667pt;}
.y16d{bottom:222.245333pt;}
.y1c8{bottom:222.609333pt;}
.yeb{bottom:222.630667pt;}
.y13a{bottom:222.690667pt;}
.y91{bottom:223.946667pt;}
.y105{bottom:230.673333pt;}
.ybf{bottom:231.476000pt;}
.yce{bottom:232.633333pt;}
.y143{bottom:233.134667pt;}
.y28{bottom:233.269333pt;}
.y5c{bottom:235.529333pt;}
.ya5{bottom:236.197333pt;}
.y139{bottom:237.302667pt;}
.y197{bottom:237.658667pt;}
.y205{bottom:238.918667pt;}
.y16c{bottom:240.258667pt;}
.y1c7{bottom:240.621333pt;}
.yea{bottom:240.644000pt;}
.y90{bottom:241.958667pt;}
.y104{bottom:248.686667pt;}
.ycd{bottom:250.646667pt;}
.y142{bottom:251.148000pt;}
.y27{bottom:251.281333pt;}
.y138{bottom:251.914667pt;}
.y5b{bottom:253.541333pt;}
.ya4{bottom:254.210667pt;}
.y196{bottom:255.670667pt;}
.y204{bottom:256.134667pt;}
.y16b{bottom:258.270667pt;}
.y1c6{bottom:258.634667pt;}
.ye9{bottom:258.656000pt;}
.y8f{bottom:259.972000pt;}
.y137{bottom:266.526667pt;}
.y103{bottom:266.698667pt;}
.ybe{bottom:267.556000pt;}
.ya3{bottom:267.777333pt;}
.ycc{bottom:268.658667pt;}
.y141{bottom:269.160000pt;}
.y26{bottom:269.294667pt;}
.y5a{bottom:271.554667pt;}
.y203{bottom:273.349333pt;}
.y195{bottom:273.684000pt;}
.y16a{bottom:276.282667pt;}
.y1c5{bottom:276.646667pt;}
.ye8{bottom:276.669333pt;}
.y136{bottom:281.138667pt;}
.ybd{bottom:284.652000pt;}
.y102{bottom:284.712000pt;}
.ya2{bottom:285.789333pt;}
.y8e{bottom:285.954667pt;}
.ycb{bottom:286.670667pt;}
.y25{bottom:287.306667pt;}
.y59{bottom:289.566667pt;}
.y202{bottom:290.565333pt;}
.y236{bottom:291.362667pt;}
.y194{bottom:291.696000pt;}
.y169{bottom:294.296000pt;}
.y1c4{bottom:294.658667pt;}
.ye7{bottom:294.681333pt;}
.y135{bottom:295.750667pt;}
.ybc{bottom:301.748000pt;}
.y101{bottom:302.724000pt;}
.ya1{bottom:303.801333pt;}
.yca{bottom:304.684000pt;}
.y24{bottom:305.318667pt;}
.y58{bottom:307.580000pt;}
.y201{bottom:307.780000pt;}
.y235{bottom:308.578667pt;}
.y193{bottom:309.708000pt;}
.y134{bottom:310.362667pt;}
.y168{bottom:312.308000pt;}
.y1c3{bottom:312.672000pt;}
.ye6{bottom:312.693333pt;}
.y8d{bottom:316.905333pt;}
.y100{bottom:320.736000pt;}
.ya0{bottom:321.814667pt;}
.yc9{bottom:322.696000pt;}
.y23{bottom:323.332000pt;}
.y133{bottom:324.974667pt;}
.y200{bottom:324.996000pt;}
.y57{bottom:325.592000pt;}
.y234{bottom:325.793333pt;}
.y233{bottom:326.154667pt;}
.y192{bottom:327.721333pt;}
.y167{bottom:330.321333pt;}
.y1c2{bottom:330.684000pt;}
.ye5{bottom:330.706667pt;}
.y8c{bottom:334.917333pt;}
.yff{bottom:338.749333pt;}
.y132{bottom:339.586667pt;}
.y9f{bottom:339.826667pt;}
.yc8{bottom:340.709333pt;}
.y22{bottom:341.344000pt;}
.y1ff{bottom:342.212000pt;}
.y56{bottom:343.604000pt;}
.y191{bottom:345.733333pt;}
.y166{bottom:348.333333pt;}
.y1c1{bottom:348.697333pt;}
.ye4{bottom:348.718667pt;}
.y8b{bottom:352.929333pt;}
.y131{bottom:354.198667pt;}
.y232{bottom:355.082667pt;}
.yfe{bottom:356.761333pt;}
.y78{bottom:358.721333pt;}
.y1fe{bottom:359.426667pt;}
.y55{bottom:361.617333pt;}
.y190{bottom:363.745333pt;}
.y165{bottom:366.345333pt;}
.y1c0{bottom:366.709333pt;}
.y21{bottom:367.326667pt;}
.y130{bottom:368.809333pt;}
.y9e{bottom:369.740000pt;}
.y8a{bottom:370.942667pt;}
.y231{bottom:372.298667pt;}
.yfd{bottom:374.774667pt;}
.y1fd{bottom:376.642667pt;}
.y77{bottom:376.733333pt;}
.y54{bottom:379.629333pt;}
.y18f{bottom:381.758667pt;}
.y12f{bottom:383.421333pt;}
.y164{bottom:384.358667pt;}
.y1bf{bottom:384.721333pt;}
.ye3{bottom:387.248000pt;}
.y9d{bottom:387.752000pt;}
.y89{bottom:388.954667pt;}
.y230{bottom:389.514667pt;}
.yfc{bottom:392.786667pt;}
.y1fc{bottom:393.857333pt;}
.y76{bottom:394.746667pt;}
.y53{bottom:397.642667pt;}
.y12e{bottom:398.033333pt;}
.y18e{bottom:399.770667pt;}
.y163{bottom:402.370667pt;}
.y1be{bottom:402.734667pt;}
.ye2{bottom:404.344000pt;}
.y9c{bottom:405.765333pt;}
.y22f{bottom:406.729333pt;}
.yfb{bottom:410.798667pt;}
.y1fb{bottom:411.073333pt;}
.y12d{bottom:412.645333pt;}
.y75{bottom:412.758667pt;}
.y88{bottom:414.937333pt;}
.y52{bottom:415.654667pt;}
.y18d{bottom:417.784000pt;}
.y162{bottom:420.384000pt;}
.y1bd{bottom:420.746667pt;}
.y9b{bottom:421.988000pt;}
.y22e{bottom:423.945333pt;}
.y12c{bottom:427.257333pt;}
.y1fa{bottom:428.289333pt;}
.yfa{bottom:428.812000pt;}
.y74{bottom:430.772000pt;}
.y51{bottom:433.666667pt;}
.y20{bottom:435.245333pt;}
.y18c{bottom:435.796000pt;}
.y161{bottom:438.396000pt;}
.y1bc{bottom:438.760000pt;}
.y9a{bottom:440.001333pt;}
.y22d{bottom:441.160000pt;}
.y12b{bottom:441.869333pt;}
.y1f9{bottom:445.504000pt;}
.y87{bottom:445.888000pt;}
.yf9{bottom:446.824000pt;}
.y73{bottom:448.784000pt;}
.y50{bottom:451.680000pt;}
.y1f{bottom:453.258667pt;}
.y18b{bottom:453.808000pt;}
.y160{bottom:456.408000pt;}
.y12a{bottom:456.481333pt;}
.y99{bottom:458.013333pt;}
.y22c{bottom:458.376000pt;}
.y1f8{bottom:462.720000pt;}
.y86{bottom:463.901333pt;}
.yf8{bottom:464.836000pt;}
.y72{bottom:466.796000pt;}
.y4f{bottom:469.692000pt;}
.y129{bottom:471.093333pt;}
.y18a{bottom:471.821333pt;}
.y15f{bottom:474.421333pt;}
.y22b{bottom:475.592000pt;}
.y98{bottom:476.025333pt;}
.y1f7{bottom:479.934667pt;}
.y1bb{bottom:480.298280pt;}
.y85{bottom:481.913333pt;}
.yf7{bottom:482.849333pt;}
.y71{bottom:484.809333pt;}
.y128{bottom:485.705333pt;}
.y1e{bottom:487.210667pt;}
.y4e{bottom:487.704000pt;}
.y189{bottom:489.833333pt;}
.y15e{bottom:492.433333pt;}
.y22a{bottom:492.806667pt;}
.y1ba{bottom:494.631337pt;}
.y1f6{bottom:497.150667pt;}
.y84{bottom:499.925333pt;}
.y127{bottom:500.317333pt;}
.yf6{bottom:500.861333pt;}
.y70{bottom:502.821333pt;}
.y1d{bottom:505.224000pt;}
.y4d{bottom:505.717333pt;}
.y188{bottom:507.846667pt;}
.y1b9{bottom:508.964394pt;}
.y229{bottom:510.022667pt;}
.y15d{bottom:510.446667pt;}
.y1f5{bottom:514.366667pt;}
.y126{bottom:514.928000pt;}
.y83{bottom:517.938667pt;}
.yf5{bottom:518.874667pt;}
.y6f{bottom:520.834667pt;}
.y1c{bottom:523.236000pt;}
.y1b8{bottom:523.296143pt;}
.y4c{bottom:523.729333pt;}
.y187{bottom:525.858667pt;}
.y228{bottom:527.237333pt;}
.y15c{bottom:528.458667pt;}
.y125{bottom:529.540000pt;}
.y1f4{bottom:531.581333pt;}
.y1b7{bottom:537.629200pt;}
.y6e{bottom:538.846667pt;}
.y1b{bottom:541.248000pt;}
.y4b{bottom:541.742667pt;}
.y186{bottom:543.870667pt;}
.y82{bottom:543.921333pt;}
.y124{bottom:544.152000pt;}
.y227{bottom:544.453333pt;}
.yf4{bottom:544.857333pt;}
.y15b{bottom:546.470667pt;}
.y1f3{bottom:548.797333pt;}
.y1b6{bottom:551.962256pt;}
.y6d{bottom:556.858667pt;}
.y123{bottom:558.764000pt;}
.y1a{bottom:559.261333pt;}
.y4a{bottom:559.754667pt;}
.y226{bottom:561.669333pt;}
.y185{bottom:561.884000pt;}
.y15a{bottom:564.484000pt;}
.y1f2{bottom:566.012000pt;}
.y1b5{bottom:566.295313pt;}
.y122{bottom:573.376000pt;}
.y6c{bottom:574.872000pt;}
.y19{bottom:577.273333pt;}
.y49{bottom:577.766667pt;}
.y225{bottom:578.884000pt;}
.y184{bottom:579.896000pt;}
.y1b4{bottom:580.628370pt;}
.yf3{bottom:580.936000pt;}
.y159{bottom:582.496000pt;}
.y1f1{bottom:583.228000pt;}
.y121{bottom:587.988000pt;}
.y6b{bottom:592.884000pt;}
.y1b3{bottom:594.961427pt;}
.y18{bottom:595.286667pt;}
.y48{bottom:595.780000pt;}
.y224{bottom:596.100000pt;}
.yf2{bottom:598.032000pt;}
.y1f0{bottom:600.444000pt;}
.y158{bottom:600.509333pt;}
.yc7{bottom:600.854667pt;}
.y120{bottom:602.600000pt;}
.ye1{bottom:604.938667pt;}
.y1b2{bottom:609.294484pt;}
.y6a{bottom:610.896000pt;}
.y17{bottom:613.298667pt;}
.y223{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y11f{bottom:617.212000pt;}
.y1ef{bottom:617.658667pt;}
.y157{bottom:618.521333pt;}
.y183{bottom:621.582667pt;}
.ye0{bottom:622.952000pt;}
.y1b1{bottom:623.627541pt;}
.y69{bottom:628.909333pt;}
.y222{bottom:630.530667pt;}
.y16{bottom:631.310667pt;}
.y46{bottom:631.805333pt;}
.y11e{bottom:631.824000pt;}
.y1ee{bottom:634.874667pt;}
.y182{bottom:636.194667pt;}
.y156{bottom:636.533333pt;}
.y1b0{bottom:637.960598pt;}
.ydf{bottom:640.964000pt;}
.y11d{bottom:646.436000pt;}
.y68{bottom:646.921333pt;}
.y221{bottom:647.746667pt;}
.y15{bottom:649.324000pt;}
.y45{bottom:649.817333pt;}
.y181{bottom:650.806667pt;}
.y1ed{bottom:652.089333pt;}
.y1af{bottom:652.293655pt;}
.y155{bottom:654.546667pt;}
.y97{bottom:654.892000pt;}
.yde{bottom:658.976000pt;}
.y11c{bottom:661.046667pt;}
.y67{bottom:664.934667pt;}
.y220{bottom:664.961333pt;}
.y180{bottom:665.417333pt;}
.y1ae{bottom:666.625404pt;}
.y14{bottom:667.336000pt;}
.y44{bottom:667.829333pt;}
.y1ec{bottom:669.305333pt;}
.y154{bottom:672.558667pt;}
.y11b{bottom:675.658667pt;}
.ydd{bottom:676.989333pt;}
.y17f{bottom:680.029333pt;}
.y1ad{bottom:680.958461pt;}
.y21f{bottom:682.177333pt;}
.y66{bottom:682.946667pt;}
.y13{bottom:685.349333pt;}
.y43{bottom:685.842667pt;}
.y1eb{bottom:686.521333pt;}
.y11a{bottom:690.270667pt;}
.y153{bottom:690.572000pt;}
.y17e{bottom:694.641333pt;}
.ydc{bottom:695.001333pt;}
.y21e{bottom:699.392000pt;}
.ybb{bottom:699.869333pt;}
.y65{bottom:700.958667pt;}
.y12{bottom:703.361333pt;}
.y1ea{bottom:703.736000pt;}
.y42{bottom:703.854667pt;}
.y119{bottom:704.882667pt;}
.y152{bottom:708.584000pt;}
.y17d{bottom:709.253333pt;}
.ydb{bottom:713.014667pt;}
.y1ac{bottom:714.092000pt;}
.y21d{bottom:716.608000pt;}
.y81{bottom:718.972000pt;}
.y118{bottom:719.494667pt;}
.y1e9{bottom:720.952000pt;}
.y11{bottom:721.373333pt;}
.y41{bottom:721.868000pt;}
.y17c{bottom:723.865333pt;}
.yba{bottom:724.524000pt;}
.y151{bottom:726.596000pt;}
.y64{bottom:726.941333pt;}
.yda{bottom:731.026667pt;}
.y1ab{bottom:731.188000pt;}
.y21c{bottom:733.824000pt;}
.y117{bottom:734.106667pt;}
.y80{bottom:736.984000pt;}
.y1e8{bottom:738.166667pt;}
.y17b{bottom:738.477333pt;}
.y10{bottom:739.386667pt;}
.y40{bottom:739.880000pt;}
.yb9{bottom:742.537333pt;}
.y150{bottom:744.609333pt;}
.y116{bottom:748.718667pt;}
.yd9{bottom:749.038667pt;}
.y21b{bottom:751.038667pt;}
.y7f{bottom:754.997333pt;}
.y1e7{bottom:755.382667pt;}
.yb8{bottom:756.564000pt;}
.y3f{bottom:757.892000pt;}
.y14f{bottom:762.621333pt;}
.y115{bottom:763.330667pt;}
.yd8{bottom:767.052000pt;}
.y1aa{bottom:767.141265pt;}
.y21a{bottom:768.254667pt;}
.yc{bottom:770.881333pt;}
.yd{bottom:770.881382pt;}
.y17a{bottom:771.897333pt;}
.y1e6{bottom:772.598667pt;}
.y7e{bottom:773.009333pt;}
.yb7{bottom:774.577333pt;}
.y3e{bottom:775.905333pt;}
.y114{bottom:777.942667pt;}
.y1a9{bottom:779.833248pt;}
.y14e{bottom:780.634667pt;}
.yd7{bottom:785.064000pt;}
.y219{bottom:785.469333pt;}
.yb6{bottom:788.604000pt;}
.y179{bottom:788.993333pt;}
.y1e5{bottom:789.813333pt;}
.y7d{bottom:791.021333pt;}
.y1a8{bottom:792.525231pt;}
.y113{bottom:792.554667pt;}
.y3d{bottom:793.917333pt;}
.y14d{bottom:798.646667pt;}
.y218{bottom:802.685333pt;}
.y1a7{bottom:805.217214pt;}
.yb{bottom:806.229333pt;}
.yb5{bottom:806.617333pt;}
.y1e4{bottom:807.029333pt;}
.y112{bottom:807.165333pt;}
.y7c{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y14c{bottom:816.658667pt;}
.y1a6{bottom:817.909198pt;}
.y217{bottom:819.901333pt;}
.y111{bottom:821.777333pt;}
.ya{bottom:822.368000pt;}
.yd6{bottom:823.593333pt;}
.y1e3{bottom:824.244000pt;}
.yb4{bottom:824.629333pt;}
.y178{bottom:825.961333pt;}
.y7b{bottom:827.046667pt;}
.y3b{bottom:829.942667pt;}
.y1a5{bottom:830.601181pt;}
.y14b{bottom:834.672000pt;}
.y110{bottom:836.389333pt;}
.y216{bottom:837.116000pt;}
.yb3{bottom:838.657333pt;}
.y177{bottom:840.573333pt;}
.yd5{bottom:840.689333pt;}
.y1e2{bottom:841.460000pt;}
.y9{bottom:842.848000pt;}
.y1a4{bottom:843.293164pt;}
.y1d5{bottom:845.060000pt;}
.y3a{bottom:847.954667pt;}
.y10f{bottom:851.001333pt;}
.y14a{bottom:852.684000pt;}
.y7a{bottom:853.029333pt;}
.y215{bottom:854.332000pt;}
.y8{bottom:854.648000pt;}
.y176{bottom:855.185333pt;}
.y1a3{bottom:855.985147pt;}
.yb2{bottom:856.669333pt;}
.yd4{bottom:857.785333pt;}
.y1e1{bottom:858.676000pt;}
.y10e{bottom:865.613333pt;}
.y39{bottom:865.968000pt;}
.y1a2{bottom:868.675972pt;}
.y175{bottom:869.797333pt;}
.y149{bottom:870.697333pt;}
.y1d4{bottom:871.042667pt;}
.y214{bottom:871.546667pt;}
.yb1{bottom:874.681333pt;}
.y7{bottom:875.126667pt;}
.y1e0{bottom:875.890667pt;}
.y10d{bottom:880.225333pt;}
.y1a1{bottom:881.367955pt;}
.y38{bottom:883.980000pt;}
.y174{bottom:884.409333pt;}
.y213{bottom:888.762667pt;}
.y6{bottom:891.266667pt;}
.yb0{bottom:892.694667pt;}
.y1df{bottom:893.106667pt;}
.y1a0{bottom:894.059939pt;}
.y10c{bottom:894.837333pt;}
.y173{bottom:899.021333pt;}
.y37{bottom:901.993333pt;}
.y212{bottom:905.978667pt;}
.y19f{bottom:906.751922pt;}
.y10b{bottom:909.449333pt;}
.y1de{bottom:910.321333pt;}
.yaf{bottom:910.706667pt;}
.y5{bottom:911.036000pt;}
.y172{bottom:913.633333pt;}
.y19e{bottom:919.443905pt;}
.y36{bottom:920.005333pt;}
.y211{bottom:923.193333pt;}
.y10a{bottom:924.061333pt;}
.yae{bottom:924.734667pt;}
.y171{bottom:928.244000pt;}
.y19d{bottom:932.135888pt;}
.y1dd{bottom:935.508000pt;}
.y35{bottom:938.017333pt;}
.y109{bottom:938.673333pt;}
.y210{bottom:940.409333pt;}
.y170{bottom:942.856000pt;}
.y19c{bottom:944.827871pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y20f{bottom:957.624000pt;}
.y108{bottom:959.952000pt;}
.y1dc{bottom:970.576000pt;}
.y33{bottom:974.042667pt;}
.y20e{bottom:974.840000pt;}
.y16f{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y107{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.hf{height:26.088729pt;}
.h7{height:27.076941pt;}
.h11{height:27.184641pt;}
.hb{height:29.433775pt;}
.h13{height:30.239043pt;}
.ha{height:30.399505pt;}
.he{height:31.157778pt;}
.h14{height:34.148952pt;}
.h10{height:34.574438pt;}
.h8{height:34.813542pt;}
.h12{height:35.052646pt;}
.hc{height:38.415786pt;}
.hd{height:38.681455pt;}
.h4{height:38.947124pt;}
.h2{height:45.271688pt;}
.h6{height:48.486756pt;}
.h5{height:69.148877pt;}
.h3{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:52.049422pt;}
.x1{left:102.046667pt;}
.x2e{left:103.738667pt;}
.x12{left:105.944000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x6a{left:111.857740pt;}
.x6d{left:113.123128pt;}
.x6b{left:114.454275pt;}
.x6e{left:116.055395pt;}
.x6c{left:122.242721pt;}
.x4{left:129.929333pt;}
.x2f{left:132.598667pt;}
.x32{left:133.626667pt;}
.x34{left:148.282667pt;}
.x18{left:153.942667pt;}
.x33{left:159.166667pt;}
.x70{left:160.585333pt;}
.x35{left:161.565333pt;}
.x36{left:164.953333pt;}
.x19{left:167.226667pt;}
.x1a{left:170.613333pt;}
.x8{left:172.022667pt;}
.x63{left:175.534667pt;}
.x37{left:178.236000pt;}
.x9{left:181.809333pt;}
.x1b{left:183.897333pt;}
.x25{left:188.670667pt;}
.x13{left:191.926667pt;}
.x4d{left:197.373333pt;}
.x4e{left:200.760000pt;}
.x26{left:201.954667pt;}
.xc{left:208.772000pt;}
.x4f{left:214.044000pt;}
.xd{left:215.413333pt;}
.x74{left:225.868000pt;}
.xe{left:227.416000pt;}
.x73{left:229.358667pt;}
.xf{left:234.057333pt;}
.x47{left:242.226667pt;}
.x48{left:255.510667pt;}
.x6f{left:258.441333pt;}
.x62{left:261.358667pt;}
.x64{left:267.336000pt;}
.x58{left:269.049333pt;}
.x53{left:270.074667pt;}
.x57{left:271.145333pt;}
.x65{left:273.313333pt;}
.x3c{left:275.862667pt;}
.x59{left:281.272000pt;}
.x5c{left:283.334667pt;}
.x52{left:285.148000pt;}
.x55{left:287.672000pt;}
.x3d{left:289.146667pt;}
.x54{left:290.661333pt;}
.x3e{left:292.533333pt;}
.x5d{left:296.617333pt;}
.x29{left:300.612000pt;}
.x3f{left:305.817333pt;}
.xa{left:307.492000pt;}
.xb{left:314.133333pt;}
.x68{left:321.545333pt;}
.x1c{left:326.061333pt;}
.x69{left:332.592000pt;}
.x1d{left:339.344000pt;}
.x46{left:353.476000pt;}
.x56{left:360.429333pt;}
.x38{left:366.429333pt;}
.x23{left:370.733333pt;}
.x2a{left:377.557333pt;}
.x39{left:379.712000pt;}
.x3a{left:383.100000pt;}
.x24{left:384.017333pt;}
.x5a{left:387.357333pt;}
.x2b{left:390.840000pt;}
.x3b{left:396.382667pt;}
.x5b{left:401.982667pt;}
.x4b{left:406.729333pt;}
.x10{left:408.001333pt;}
.x21{left:409.368000pt;}
.x11{left:414.642667pt;}
.x4c{left:420.013333pt;}
.x22{left:422.652000pt;}
.x14{left:427.518667pt;}
.x40{left:430.330667pt;}
.x15{left:434.161333pt;}
.x16{left:440.669333pt;}
.x41{left:444.394667pt;}
.x20{left:446.569333pt;}
.x17{left:453.953333pt;}
.x5e{left:498.053333pt;}
.x49{left:510.224000pt;}
.x5f{left:512.738667pt;}
.x30{left:519.577333pt;}
.x4a{left:522.180000pt;}
.x60{left:536.986667pt;}
.x50{left:541.254667pt;}
.x42{left:546.068000pt;}
.x61{left:551.670667pt;}
.x51{left:554.538667pt;}
.x43{left:558.022667pt;}
.x44{left:561.072000pt;}
.x2c{left:562.044000pt;}
.x31{left:566.713333pt;}
.x45{left:573.026667pt;}
.x2d{left:575.326667pt;}
.x1e{left:606.850667pt;}
.x1f{left:620.134667pt;}
.x6{left:624.660065pt;}
.x66{left:634.029333pt;}
.x67{left:644.902667pt;}
.x71{left:666.198667pt;}
.x27{left:672.132000pt;}
.x28{left:685.414667pt;}
.x72{left:690.108000pt;}
}




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