
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb5561c2f1c7d75b75b149eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_733a3f79738583ec3b16f3a8.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_75b05bc654926604180d43ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914000;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_c63d72b76a4f4adaed5440a6.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_d9e58669d05aaa64948d9d16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2a6bbad47911af8fc5a6a696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.663000;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_c8b15c24da97ecaf3ca6c260.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1e4cb1686582b33d0d579b3a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869000;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;}
.m3{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);}
.m16{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);}
.m1f{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);}
.m1c{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);}
.m8{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m23{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);}
.m22{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);}
.m1d{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);}
.m14{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);}
.m1e{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);}
.m4{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);}
.m21{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);}
.m13{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);}
.m6{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);}
.m10{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);}
.m27{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);}
.mc{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);}
.m26{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);}
.m28{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);}
.m25{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);}
.m9{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);}
.ma{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);}
.m18{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);}
.m2{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);}
.m12{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);}
.m1b{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);}
.m15{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);}
.m17{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);}
.md{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);}
.m29{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);}
.m20{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);}
.m11{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);}
.m5{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);}
.m24{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);}
.mb{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);}
.m1a{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);}
.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);}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.358000px;}
.v1{vertical-align:19.530000px;}
.v7{vertical-align:21.702000px;}
.v3{vertical-align:31.260000px;}
.v2{vertical-align:32.874000px;}
.v4{vertical-align:50.790000px;}
.v8{vertical-align:52.404000px;}
.v5{vertical-align:65.748000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000240px;}
.ls64{letter-spacing:0.000447px;}
.ls9{letter-spacing:0.000649px;}
.ls26{letter-spacing:0.000676px;}
.lsc{letter-spacing:0.001226px;}
.ls35{letter-spacing:0.001331px;}
.ls5b{letter-spacing:0.001518px;}
.lsb{letter-spacing:0.001979px;}
.ls4c{letter-spacing:0.001996px;}
.ls63{letter-spacing:0.002338px;}
.ls44{letter-spacing:0.002360px;}
.ls6b{letter-spacing:0.002573px;}
.ls1b{letter-spacing:0.002782px;}
.ls52{letter-spacing:0.002870px;}
.ls5a{letter-spacing:0.002940px;}
.ls48{letter-spacing:0.003049px;}
.ls38{letter-spacing:0.003389px;}
.ls8{letter-spacing:0.003394px;}
.ls5{letter-spacing:0.003488px;}
.lsa{letter-spacing:0.003494px;}
.ls5c{letter-spacing:0.004435px;}
.ls5d{letter-spacing:0.005133px;}
.ls65{letter-spacing:0.005148px;}
.ls62{letter-spacing:0.005424px;}
.ls68{letter-spacing:0.524565px;}
.ls67{letter-spacing:0.530447px;}
.ls5e{letter-spacing:0.535835px;}
.ls69{letter-spacing:0.537859px;}
.ls5f{letter-spacing:0.541841px;}
.ls7{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls24{letter-spacing:2.988600px;}
.ls25{letter-spacing:2.994600px;}
.ls2a{letter-spacing:11.952019px;}
.ls4{letter-spacing:11.954850px;}
.ls2b{letter-spacing:11.958019px;}
.ls51{letter-spacing:11.966013px;}
.ls50{letter-spacing:11.966106px;}
.ls57{letter-spacing:11.972136px;}
.ls54{letter-spacing:12.032261px;}
.ls55{letter-spacing:12.038322px;}
.ls58{letter-spacing:12.138232px;}
.ls59{letter-spacing:12.144336px;}
.ls66{letter-spacing:12.166727px;}
.ls2e{letter-spacing:12.672427px;}
.ls6c{letter-spacing:13.270164px;}
.ls61{letter-spacing:13.448400px;}
.ls23{letter-spacing:13.448870px;}
.ls60{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.454870px;}
.ls4f{letter-spacing:13.633617px;}
.ls4e{letter-spacing:13.634269px;}
.ls56{letter-spacing:13.639702px;}
.ls6a{letter-spacing:13.657216px;}
.ls49{letter-spacing:13.746858px;}
.ls4a{letter-spacing:13.746894px;}
.ls6e{letter-spacing:13.989859px;}
.ls20{letter-spacing:14.071348px;}
.ls1f{letter-spacing:14.077471px;}
.ls11{letter-spacing:14.652560px;}
.ls3f{letter-spacing:14.739535px;}
.ls13{letter-spacing:14.744817px;}
.ls46{letter-spacing:14.756422px;}
.ls15{letter-spacing:14.785272px;}
.ls16{letter-spacing:14.791189px;}
.ls18{letter-spacing:14.800654px;}
.ls3{letter-spacing:14.827221px;}
.ls34{letter-spacing:14.830738px;}
.ls43{letter-spacing:14.892827px;}
.ls19{letter-spacing:14.900100px;}
.ls17{letter-spacing:14.940124px;}
.ls2d{letter-spacing:14.942323px;}
.ls3d{letter-spacing:14.944200px;}
.ls10{letter-spacing:14.946124px;}
.ls2c{letter-spacing:14.947200px;}
.ls36{letter-spacing:14.975918px;}
.ls42{letter-spacing:14.985048px;}
.lsf{letter-spacing:15.001960px;}
.ls22{letter-spacing:15.032573px;}
.lsd{letter-spacing:15.036366px;}
.ls21{letter-spacing:15.038695px;}
.ls31{letter-spacing:15.051300px;}
.ls1c{letter-spacing:15.063451px;}
.ls1d{letter-spacing:15.067525px;}
.ls47{letter-spacing:15.071430px;}
.ls1e{letter-spacing:15.073568px;}
.ls2f{letter-spacing:15.157182px;}
.ls30{letter-spacing:15.170043px;}
.ls1a{letter-spacing:15.239773px;}
.lse{letter-spacing:15.288671px;}
.ls14{letter-spacing:15.300643px;}
.ls37{letter-spacing:15.368947px;}
.ls45{letter-spacing:15.739535px;}
.ls3b{letter-spacing:16.433653px;}
.ls28{letter-spacing:16.436932px;}
.ls39{letter-spacing:16.439535px;}
.ls3a{letter-spacing:16.441612px;}
.ls29{letter-spacing:16.442932px;}
.ls33{letter-spacing:16.486594px;}
.ls32{letter-spacing:17.751300px;}
.ls40{letter-spacing:17.810124px;}
.ls41{letter-spacing:17.816006px;}
.ls3c{letter-spacing:17.929200px;}
.ls4b{letter-spacing:17.935200px;}
.ls12{letter-spacing:18.004241px;}
.ls3e{letter-spacing:18.530436px;}
.ls6d{letter-spacing:21.273929px;}
.ls1{letter-spacing:32.009510px;}
.ls27{letter-spacing:124.164600px;}
.ls4d{letter-spacing:178.794600px;}
.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;}
}
.ws63{word-spacing:-17.914867px;}
.ws7{word-spacing:-17.394700px;}
.ws2{word-spacing:-15.655334px;}
.ws36{word-spacing:-14.943900px;}
.ws62{word-spacing:-13.449600px;}
.ws1d{word-spacing:-11.955150px;}
.ws44{word-spacing:-4.303843px;}
.wsb7{word-spacing:-4.244068px;}
.wse5{word-spacing:-4.142477px;}
.ws3a{word-spacing:-3.646312px;}
.wsac{word-spacing:-3.526760px;}
.ws59{word-spacing:-3.466985px;}
.wsae{word-spacing:-3.168107px;}
.wsb1{word-spacing:-3.048556px;}
.wsaf{word-spacing:-2.570351px;}
.ws4b{word-spacing:-2.510575px;}
.ws31{word-spacing:-2.391024px;}
.ws75{word-spacing:-2.271473px;}
.wsfd{word-spacing:-2.044339px;}
.wsfb{word-spacing:-1.990541px;}
.ws58{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws45{word-spacing:-1.673717px;}
.wsd5{word-spacing:-1.667750px;}
.ws93{word-spacing:-1.506355px;}
.wsa6{word-spacing:-1.494036px;}
.ws92{word-spacing:-1.487913px;}
.ws94{word-spacing:-1.452557px;}
.ws3{word-spacing:-1.322630px;}
.ws2d{word-spacing:-1.315063px;}
.wsd8{word-spacing:-1.291162px;}
.ws88{word-spacing:-1.255288px;}
.ws8b{word-spacing:-1.199392px;}
.ws49{word-spacing:-1.195512px;}
.wsb9{word-spacing:-1.135736px;}
.wsad{word-spacing:-1.075961px;}
.wsa7{word-spacing:-1.022170px;}
.ws11{word-spacing:-1.016185px;}
.wsf{word-spacing:-0.896634px;}
.ws8c{word-spacing:-0.891018px;}
.ws5a{word-spacing:-0.840222px;}
.wsf1{word-spacing:-0.772554px;}
.wsb0{word-spacing:-0.717307px;}
.ws20{word-spacing:-0.657532px;}
.wsc{word-spacing:-0.597756px;}
.ws51{word-spacing:-0.478205px;}
.wsf3{word-spacing:-0.430387px;}
.ws5d{word-spacing:-0.418429px;}
.wsd2{word-spacing:-0.376589px;}
.ws2e{word-spacing:-0.358654px;}
.ws10{word-spacing:-0.298878px;}
.wsa2{word-spacing:-0.286924px;}
.wsa3{word-spacing:-0.268992px;}
.ws28{word-spacing:-0.239102px;}
.wsbe{word-spacing:-0.215194px;}
.ws4a{word-spacing:-0.201021px;}
.ws89{word-spacing:-0.183970px;}
.ws19{word-spacing:-0.179327px;}
.wse0{word-spacing:-0.161395px;}
.wsb{word-spacing:-0.119551px;}
.wsbd{word-spacing:-0.107597px;}
.ws15{word-spacing:-0.059776px;}
.ws4d{word-spacing:-0.055991px;}
.ws8e{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.wsfe{word-spacing:-0.042700px;}
.ws98{word-spacing:-0.031046px;}
.ws95{word-spacing:-0.028493px;}
.wsf6{word-spacing:-0.026314px;}
.ws97{word-spacing:-0.024461px;}
.wsa4{word-spacing:-0.018902px;}
.ws6c{word-spacing:-0.017904px;}
.ws1{word-spacing:-0.016205px;}
.ws6b{word-spacing:-0.011904px;}
.wsa5{word-spacing:-0.005280px;}
.ws8f{word-spacing:-0.004800px;}
.ws90{word-spacing:-0.004176px;}
.ws9a{word-spacing:-0.003936px;}
.ws96{word-spacing:-0.003917px;}
.ws71{word-spacing:-0.003790px;}
.ws6a{word-spacing:-0.003734px;}
.ws73{word-spacing:-0.003713px;}
.ws99{word-spacing:-0.003350px;}
.ws91{word-spacing:-0.001680px;}
.wsf8{word-spacing:-0.001632px;}
.ws82{word-spacing:-0.000900px;}
.ws81{word-spacing:-0.000250px;}
.ws72{word-spacing:-0.000227px;}
.ws0{word-spacing:0.000000px;}
.ws8d{word-spacing:0.000900px;}
.ws9f{word-spacing:0.047821px;}
.wsce{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws9c{word-spacing:0.068435px;}
.ws9d{word-spacing:0.071858px;}
.ws9e{word-spacing:0.077350px;}
.ws9b{word-spacing:0.080634px;}
.ws5b{word-spacing:0.087830px;}
.wsa0{word-spacing:0.095641px;}
.ws8a{word-spacing:0.098380px;}
.wsc1{word-spacing:0.107597px;}
.ws5c{word-spacing:0.109226px;}
.ws79{word-spacing:0.111592px;}
.wsd{word-spacing:0.119551px;}
.ws60{word-spacing:0.161395px;}
.ws41{word-spacing:0.179327px;}
.wsaa{word-spacing:0.179928px;}
.wsab{word-spacing:0.183407px;}
.wsa9{word-spacing:0.184378px;}
.wsa8{word-spacing:0.185311px;}
.wsa1{word-spacing:0.191282px;}
.wsd3{word-spacing:0.215194px;}
.ws78{word-spacing:0.225084px;}
.ws1b{word-spacing:0.239102px;}
.wsc4{word-spacing:0.268992px;}
.ws50{word-spacing:0.286621px;}
.ws13{word-spacing:0.298878px;}
.wsff{word-spacing:0.322790px;}
.ws39{word-spacing:0.358654px;}
.ws12{word-spacing:0.418429px;}
.ws54{word-spacing:0.478205px;}
.ws5f{word-spacing:0.484186px;}
.wsb4{word-spacing:0.537980px;}
.ws53{word-spacing:0.597756px;}
.wsec{word-spacing:0.699379px;}
.ws32{word-spacing:0.717307px;}
.ws5e{word-spacing:0.753178px;}
.ws22{word-spacing:0.777083px;}
.ws85{word-spacing:0.896634px;}
.ws107{word-spacing:0.914573px;}
.ws76{word-spacing:1.075961px;}
.ws1a{word-spacing:1.135736px;}
.ws18{word-spacing:1.195512px;}
.wsee{word-spacing:1.291162px;}
.ws5{word-spacing:1.315063px;}
.wse2{word-spacing:1.344960px;}
.ws7f{word-spacing:1.493045px;}
.ws7e{word-spacing:1.494390px;}
.ws24{word-spacing:1.554166px;}
.wsbb{word-spacing:1.673717px;}
.ws109{word-spacing:1.721549px;}
.wsb8{word-spacing:1.793268px;}
.ws29{word-spacing:1.912819px;}
.ws80{word-spacing:1.940629px;}
.ws34{word-spacing:2.032370px;}
.wsb3{word-spacing:2.092146px;}
.wsc6{word-spacing:2.151936px;}
.ws10f{word-spacing:2.205734px;}
.ws6{word-spacing:2.271473px;}
.ws86{word-spacing:2.331248px;}
.ws77{word-spacing:2.630126px;}
.ws7c{word-spacing:2.796273px;}
.ws7d{word-spacing:2.809453px;}
.ws7b{word-spacing:2.811592px;}
.ws108{word-spacing:2.851315px;}
.ws87{word-spacing:2.869229px;}
.wsb6{word-spacing:2.929004px;}
.ws23{word-spacing:3.048556px;}
.ws48{word-spacing:3.068258px;}
.ws33{word-spacing:3.168107px;}
.wse9{word-spacing:3.174106px;}
.ws40{word-spacing:3.227882px;}
.wsda{word-spacing:3.281702px;}
.ws3b{word-spacing:3.347434px;}
.ws25{word-spacing:3.466985px;}
.wsba{word-spacing:3.526760px;}
.ws83{word-spacing:3.586536px;}
.ws38{word-spacing:3.646312px;}
.ws2c{word-spacing:3.706087px;}
.ws2b{word-spacing:3.765863px;}
.wsd0{word-spacing:3.765888px;}
.ws21{word-spacing:3.945190px;}
.ws7a{word-spacing:4.004965px;}
.ws101{word-spacing:4.088678px;}
.ws74{word-spacing:4.124516px;}
.ws3c{word-spacing:4.244068px;}
.wsdc{word-spacing:4.303872px;}
.wscd{word-spacing:4.357670px;}
.wsc9{word-spacing:4.572864px;}
.ws57{word-spacing:4.662497px;}
.wsa{word-spacing:4.722272px;}
.wsdf{word-spacing:4.895654px;}
.wsc3{word-spacing:5.003251px;}
.ws35{word-spacing:5.021150px;}
.ws110{word-spacing:5.057050px;}
.wsd6{word-spacing:5.113947px;}
.ws16{word-spacing:5.140702px;}
.ws17{word-spacing:5.200477px;}
.wsbc{word-spacing:5.320028px;}
.wsc0{word-spacing:5.370576px;}
.ws111{word-spacing:5.376307px;}
.wsed{word-spacing:5.376768px;}
.wsc8{word-spacing:5.377786px;}
.wsf5{word-spacing:5.378266px;}
.wsbf{word-spacing:5.378822px;}
.wsb2{word-spacing:5.379804px;}
.wsf4{word-spacing:5.379840px;}
.wsea{word-spacing:5.379878px;}
.ws100{word-spacing:5.381501px;}
.ws10e{word-spacing:5.541235px;}
.ws56{word-spacing:5.858009px;}
.ws14{word-spacing:5.977560px;}
.ws84{word-spacing:6.097111px;}
.ws55{word-spacing:6.156887px;}
.ws10b{word-spacing:6.240614px;}
.ws46{word-spacing:6.336214px;}
.ws9{word-spacing:6.455765px;}
.wscc{word-spacing:6.671002px;}
.ws105{word-spacing:6.832397px;}
.ws8{word-spacing:7.232848px;}
.ws10d{word-spacing:7.800768px;}
.wsb5{word-spacing:7.950155px;}
.ws2a{word-spacing:8.906564px;}
.ws2f{word-spacing:9.803198px;}
.ws30{word-spacing:9.862974px;}
.ws10a{word-spacing:10.383091px;}
.ws26{word-spacing:10.580281px;}
.wsfc{word-spacing:11.405261px;}
.wsd7{word-spacing:11.728051px;}
.wsf2{word-spacing:12.642624px;}
.wsdb{word-spacing:12.911616px;}
.wsf0{word-spacing:13.180608px;}
.wse1{word-spacing:13.234406px;}
.ws104{word-spacing:13.387296px;}
.wse8{word-spacing:13.389024px;}
.wsd1{word-spacing:13.390090px;}
.wse6{word-spacing:13.394957px;}
.wseb{word-spacing:13.395024px;}
.wscf{word-spacing:13.395802px;}
.wsf9{word-spacing:13.449600px;}
.ws106{word-spacing:13.503398px;}
.ws3d{word-spacing:13.867939px;}
.ws47{word-spacing:13.987490px;}
.ws52{word-spacing:14.405920px;}
.ws4c{word-spacing:14.704798px;}
.wse3{word-spacing:14.740762px;}
.ws3f{word-spacing:14.764573px;}
.ws4e{word-spacing:14.824349px;}
.ws37{word-spacing:14.884124px;}
.ws42{word-spacing:15.003676px;}
.ws43{word-spacing:15.123227px;}
.ws4f{word-spacing:15.183002px;}
.wsd9{word-spacing:16.677504px;}
.ws1c{word-spacing:16.689389px;}
.wsdd{word-spacing:17.699674px;}
.wse4{word-spacing:18.399053px;}
.wsca{word-spacing:18.452851px;}
.wsfa{word-spacing:18.560448px;}
.wsd4{word-spacing:18.766224px;}
.wscb{word-spacing:18.767453px;}
.ws102{word-spacing:18.768634px;}
.wsde{word-spacing:18.771600px;}
.wsc2{word-spacing:18.772224px;}
.wsc7{word-spacing:18.775642px;}
.wse7{word-spacing:18.883238px;}
.ws103{word-spacing:18.990835px;}
.wsef{word-spacing:19.098432px;}
.wsc5{word-spacing:19.152230px;}
.ws10c{word-spacing:19.582618px;}
.ws3e{word-spacing:20.861684px;}
.ws27{word-spacing:23.073382px;}
.wsf7{word-spacing:48.418560px;}
.ws6f{word-spacing:151.418400px;}
.ws6d{word-spacing:161.961667px;}
.ws69{word-spacing:164.864400px;}
.ws65{word-spacing:198.462298px;}
.ws68{word-spacing:198.516096px;}
.ws67{word-spacing:235.902998px;}
.ws70{word-spacing:238.197667px;}
.ws61{word-spacing:249.732173px;}
.ws6e{word-spacing:260.189606px;}
.ws64{word-spacing:267.482400px;}
.ws66{word-spacing:277.108800px;}
.ws1f{word-spacing:430.815785px;}
._67{margin-left:-21.872960px;}
._2{margin-left:-11.943245px;}
._68{margin-left:-10.813478px;}
._3{margin-left:-7.962163px;}
._6{margin-left:-6.939994px;}
._5{margin-left:-4.949453px;}
._12{margin-left:-3.477295px;}
._9{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._a{width:1.091170px;}
._64{width:3.958093px;}
._0{width:10.165172px;}
._11{width:11.955150px;}
._4a{width:13.197523px;}
._65{width:14.414112px;}
._f{width:15.649511px;}
._16{width:16.750331px;}
._7{width:17.861069px;}
._8{width:19.797811px;}
._e{width:20.968299px;}
._17{width:22.595177px;}
._b{width:23.777752px;}
._d{width:25.511244px;}
._62{width:26.622121px;}
._c{width:28.273859px;}
._14{width:30.545332px;}
._18{width:31.561517px;}
._15{width:32.637478px;}
._10{width:36.821770px;}
._19{width:39.392120px;}
._3b{width:53.798400px;}
._66{width:61.868160px;}
._4{width:69.372718px;}
._3a{width:112.653850px;}
._58{width:120.885005px;}
._39{width:127.394611px;}
._5e{width:132.613056px;}
._3f{width:138.423283px;}
._32{width:142.189171px;}
._44{width:148.860173px;}
._1a{width:153.433037px;}
._2e{width:155.100787px;}
._5d{width:156.822336px;}
._36{width:159.397949px;}
._3d{width:164.085120px;}
._1f{width:168.335194px;}
._56{width:174.737203px;}
._3e{width:175.920768px;}
._31{width:178.718285px;}
._21{width:181.730995px;}
._30{width:183.398746px;}
._43{width:186.411456px;}
._2c{width:192.221683px;}
._4c{width:194.481216px;}
._28{width:196.848346px;}
._23{width:198.462298px;}
._2b{width:210.889728px;}
._1b{width:211.911898px;}
._4b{width:214.792416px;}
._1e{width:219.874061px;}
._29{width:222.079795px;}
._5b{width:226.114675px;}
._24{width:230.472346px;}
._20{width:233.323661px;}
._25{width:240.048461px;}
._27{width:244.675123px;}
._47{width:248.601446px;}
._2a{width:253.659456px;}
._34{width:258.017126px;}
._1c{width:261.890611px;}
._26{width:267.700838px;}
._35{width:271.270886px;}
._22{width:279.590285px;}
._1d{width:284.862528px;}
._2f{width:285.992294px;}
._2d{width:293.039885px;}
._33{width:299.979878px;}
._57{width:307.190544px;}
._5a{width:317.254445px;}
._55{width:320.638416px;}
._59{width:344.257642px;}
._5c{width:354.316982px;}
._4e{width:360.449280px;}
._54{width:364.161370px;}
._46{width:374.598259px;}
._41{width:377.610970px;}
._45{width:379.117325px;}
._4d{width:385.041859px;}
._60{width:388.801037px;}
._40{width:392.566925px;}
._3c{width:399.562397px;}
._42{width:408.708125px;}
._49{width:418.767466px;}
._5f{width:453.143923px;}
._51{width:463.665658px;}
._4f{width:466.593523px;}
._53{width:474.075437px;}
._38{width:476.145312px;}
._61{width:485.369165px;}
._50{width:562.941715px;}
._52{width:573.357494px;}
._48{width:804.447475px;}
._63{width:1515.546193px;}
._13{width:1539.456493px;}
._37{width:3019.150829px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fsa{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs7{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.yf{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y30{bottom:63.780000px;}
.y1ba{bottom:108.957000px;}
.y15e{bottom:114.156000px;}
.y2f{bottom:124.060500px;}
.y1b9{bottom:128.325000px;}
.y15d{bottom:134.419500px;}
.yee{bottom:135.408000px;}
.y86{bottom:142.579500px;}
.yfc{bottom:143.386500px;}
.y2e{bottom:144.324000px;}
.y60{bottom:145.837500px;}
.y1b8{bottom:147.691500px;}
.yb3{bottom:148.168500px;}
.y15c{bottom:154.683000px;}
.yed{bottom:155.671500px;}
.y186{bottom:158.062500px;}
.y85{bottom:162.843000px;}
.yfb{bottom:163.650000px;}
.y11f{bottom:164.550000px;}
.y2d{bottom:164.587500px;}
.y5f{bottom:166.101000px;}
.y1b7{bottom:167.059500px;}
.yb2{bottom:168.432000px;}
.y15b{bottom:174.948000px;}
.yec{bottom:175.936500px;}
.y185{bottom:177.430500px;}
.y11e{bottom:178.747500px;}
.y132{bottom:180.600000px;}
.y84{bottom:183.108000px;}
.yfa{bottom:183.913500px;}
.y2c{bottom:184.852500px;}
.y5e{bottom:186.364500px;}
.y1b6{bottom:186.427500px;}
.yb1{bottom:188.697000px;}
.y11c{bottom:192.943500px;}
.y131{bottom:194.796000px;}
.y15a{bottom:195.211500px;}
.y184{bottom:196.797000px;}
.y11d{bottom:197.283000px;}
.y83{bottom:203.371500px;}
.yf9{bottom:204.178500px;}
.y2b{bottom:205.116000px;}
.y1b5{bottom:205.794000px;}
.y5d{bottom:206.629500px;}
.y11a{bottom:207.141000px;}
.yb0{bottom:208.960500px;}
.y12f{bottom:208.993500px;}
.y11b{bottom:211.480500px;}
.y130{bottom:213.333000px;}
.yeb{bottom:215.328000px;}
.y159{bottom:215.476500px;}
.y183{bottom:216.165000px;}
.y12d{bottom:223.189500px;}
.y82{bottom:223.635000px;}
.yf8{bottom:224.442000px;}
.y1b4{bottom:225.162000px;}
.y2a{bottom:225.381000px;}
.y5c{bottom:226.893000px;}
.y12e{bottom:227.529000px;}
.y119{bottom:229.198500px;}
.yaf{bottom:229.224000px;}
.y182{bottom:235.531500px;}
.y158{bottom:235.740000px;}
.yea{bottom:237.030000px;}
.y81{bottom:243.900000px;}
.y1b3{bottom:244.528500px;}
.yf7{bottom:244.707000px;}
.y12c{bottom:245.248500px;}
.y29{bottom:245.644500px;}
.y118{bottom:245.994000px;}
.y5b{bottom:247.158000px;}
.yae{bottom:249.489000px;}
.ye9{bottom:253.467000px;}
.y181{bottom:254.899500px;}
.y157{bottom:256.003500px;}
.y12b{bottom:262.044000px;}
.y117{bottom:262.789500px;}
.y1b2{bottom:263.896500px;}
.y80{bottom:264.163500px;}
.yf6{bottom:264.970500px;}
.y28{bottom:265.908000px;}
.y5a{bottom:267.421500px;}
.yad{bottom:269.752500px;}
.ye8{bottom:269.905500px;}
.y180{bottom:274.267500px;}
.y156{bottom:276.268500px;}
.y12a{bottom:278.839500px;}
.y116{bottom:279.585000px;}
.y1b1{bottom:283.264500px;}
.y7f{bottom:284.428500px;}
.yf5{bottom:285.234000px;}
.y27{bottom:286.173000px;}
.ye7{bottom:286.344000px;}
.y59{bottom:287.685000px;}
.yac{bottom:290.017500px;}
.y17f{bottom:293.634000px;}
.y129{bottom:295.635000px;}
.y155{bottom:296.532000px;}
.y1b0{bottom:302.631000px;}
.ye6{bottom:302.782500px;}
.y115{bottom:303.226500px;}
.y7e{bottom:304.692000px;}
.yf4{bottom:305.499000px;}
.y26{bottom:306.436500px;}
.y58{bottom:307.950000px;}
.yab{bottom:310.281000px;}
.y17e{bottom:313.002000px;}
.y154{bottom:316.797000px;}
.ye5{bottom:319.221000px;}
.y128{bottom:319.275000px;}
.y114{bottom:319.665000px;}
.y1af{bottom:321.999000px;}
.y7d{bottom:324.955500px;}
.yf3{bottom:325.762500px;}
.y57{bottom:328.213500px;}
.yaa{bottom:330.544500px;}
.y17d{bottom:332.368500px;}
.ye4{bottom:335.659500px;}
.y25{bottom:335.667000px;}
.y127{bottom:335.713500px;}
.y113{bottom:336.103500px;}
.y153{bottom:337.060500px;}
.y1ae{bottom:341.367000px;}
.y7c{bottom:345.220500px;}
.yf2{bottom:346.027500px;}
.ya9{bottom:350.809500px;}
.y17c{bottom:351.736500px;}
.ye3{bottom:352.098000px;}
.y126{bottom:352.152000px;}
.y152{bottom:357.324000px;}
.y56{bottom:357.444000px;}
.y112{bottom:360.100500px;}
.y1ad{bottom:360.733500px;}
.y7b{bottom:365.484000px;}
.yf1{bottom:366.291000px;}
.ye2{bottom:368.536500px;}
.ya8{bottom:371.073000px;}
.y17b{bottom:371.104500px;}
.y125{bottom:376.150500px;}
.y111{bottom:376.896000px;}
.y151{bottom:377.589000px;}
.y1ac{bottom:380.101500px;}
.ye0{bottom:384.975000px;}
.y7a{bottom:385.749000px;}
.yf0{bottom:386.554500px;}
.y17a{bottom:390.471000px;}
.ya7{bottom:391.338000px;}
.y55{bottom:392.263500px;}
.y124{bottom:392.946000px;}
.ye1{bottom:393.193500px;}
.y110{bottom:393.691500px;}
.y150{bottom:397.852500px;}
.y1ab{bottom:399.468000px;}
.ydf{bottom:401.413500px;}
.y79{bottom:406.012500px;}
.yef{bottom:406.819500px;}
.y123{bottom:409.741500px;}
.y179{bottom:409.839000px;}
.y10f{bottom:410.487000px;}
.ya6{bottom:411.601500px;}
.y24{bottom:412.083000px;}
.yde{bottom:417.852000px;}
.y14f{bottom:418.117500px;}
.y1aa{bottom:418.836000px;}
.y78{bottom:426.276000px;}
.y122{bottom:426.537000px;}
.y54{bottom:427.083000px;}
.y178{bottom:429.205500px;}
.ya5{bottom:431.865000px;}
.y23{bottom:432.346500px;}
.y10e{bottom:434.128500px;}
.ydd{bottom:434.289000px;}
.y1a9{bottom:438.204000px;}
.y14e{bottom:438.381000px;}
.y77{bottom:446.541000px;}
.y53{bottom:447.348000px;}
.y177{bottom:448.573500px;}
.y121{bottom:450.177000px;}
.y10d{bottom:450.567000px;}
.ydc{bottom:450.727500px;}
.ya4{bottom:452.130000px;}
.y1a8{bottom:457.570500px;}
.y14d{bottom:458.644500px;}
.y120{bottom:466.615500px;}
.y76{bottom:466.804500px;}
.y10c{bottom:467.005500px;}
.ydb{bottom:467.166000px;}
.y52{bottom:467.611500px;}
.y176{bottom:467.941500px;}
.y22{bottom:470.544000px;}
.ya3{bottom:472.393500px;}
.y1a7{bottom:476.938500px;}
.y14c{bottom:478.909500px;}
.yda{bottom:483.604500px;}
.y75{bottom:487.069500px;}
.y175{bottom:487.308000px;}
.y51{bottom:487.875000px;}
.y21{bottom:490.807500px;}
.y10b{bottom:491.002500px;}
.ya2{bottom:492.658500px;}
.y1a6{bottom:496.305000px;}
.y14b{bottom:499.173000px;}
.yd9{bottom:500.043000px;}
.y174{bottom:506.676000px;}
.y74{bottom:507.333000px;}
.y10a{bottom:507.798000px;}
.y50{bottom:508.140000px;}
.y20{bottom:511.072500px;}
.ya1{bottom:512.922000px;}
.y1a5{bottom:515.673000px;}
.yd8{bottom:516.481500px;}
.y14a{bottom:519.438000px;}
.y109{bottom:524.593500px;}
.y173{bottom:526.042500px;}
.y73{bottom:527.596500px;}
.y4f{bottom:528.403500px;}
.y1f{bottom:531.336000px;}
.yd7{bottom:533.277000px;}
.y1a4{bottom:535.041000px;}
.y149{bottom:539.701500px;}
.y108{bottom:541.389000px;}
.ya0{bottom:542.152500px;}
.y172{bottom:545.410500px;}
.y72{bottom:547.861500px;}
.y4e{bottom:548.667000px;}
.yd6{bottom:550.072500px;}
.y1e{bottom:551.601000px;}
.y1a3{bottom:554.407500px;}
.y148{bottom:559.965000px;}
.y107{bottom:565.030500px;}
.yd5{bottom:566.868000px;}
.y71{bottom:568.125000px;}
.y4d{bottom:568.932000px;}
.y1d{bottom:571.864500px;}
.y171{bottom:573.744000px;}
.y1a2{bottom:573.775500px;}
.y9f{bottom:576.972000px;}
.y147{bottom:580.230000px;}
.y106{bottom:581.469000px;}
.yd4{bottom:583.306500px;}
.y70{bottom:588.390000px;}
.y4c{bottom:589.195500px;}
.y1c{bottom:592.128000px;}
.y1a1{bottom:593.142000px;}
.y9e{bottom:597.235500px;}
.yd3{bottom:599.745000px;}
.y146{bottom:600.493500px;}
.y105{bottom:605.856000px;}
.y6f{bottom:608.653500px;}
.y4b{bottom:609.460500px;}
.y1b{bottom:612.393000px;}
.y1a0{bottom:612.510000px;}
.y170{bottom:613.197000px;}
.yd2{bottom:616.540500px;}
.y9d{bottom:617.500500px;}
.y145{bottom:620.758500px;}
.y104{bottom:622.651500px;}
.y6e{bottom:628.917000px;}
.y4a{bottom:629.724000px;}
.y19f{bottom:631.878000px;}
.y1a{bottom:632.656500px;}
.yd1{bottom:633.336000px;}
.y16f{bottom:637.360500px;}
.y9c{bottom:637.764000px;}
.y103{bottom:639.447000px;}
.y144{bottom:641.022000px;}
.y6d{bottom:649.182000px;}
.y49{bottom:649.987500px;}
.yd0{bottom:650.131500px;}
.y19e{bottom:651.244500px;}
.y19{bottom:652.921500px;}
.y102{bottom:656.242500px;}
.y9b{bottom:658.029000px;}
.y143{bottom:661.285500px;}
.y16e{bottom:661.525500px;}
.ycf{bottom:666.927000px;}
.y6c{bottom:669.445500px;}
.y48{bottom:670.252500px;}
.y19d{bottom:670.612500px;}
.y18{bottom:673.185000px;}
.y9a{bottom:678.292500px;}
.y101{bottom:679.884000px;}
.y142{bottom:681.550500px;}
.yce{bottom:683.722500px;}
.y16d{bottom:685.689000px;}
.y19c{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y17{bottom:693.448500px;}
.y100{bottom:696.321000px;}
.y99{bottom:698.556000px;}
.y6b{bottom:698.676000px;}
.ycd{bottom:700.518000px;}
.y16c{bottom:700.888500px;}
.y141{bottom:701.814000px;}
.y19b{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y16{bottom:713.713500px;}
.ycc{bottom:716.956500px;}
.y98{bottom:718.821000px;}
.y140{bottom:722.077500px;}
.y16b{bottom:725.052000px;}
.yff{bottom:728.389500px;}
.y19a{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.ycb{bottom:733.395000px;}
.y6a{bottom:733.495500px;}
.y15{bottom:733.977000px;}
.y97{bottom:739.084500px;}
.y16a{bottom:740.250000px;}
.y13f{bottom:742.342500px;}
.yfe{bottom:747.622500px;}
.y199{bottom:748.081500px;}
.yca{bottom:749.833500px;}
.y44{bottom:751.308000px;}
.y69{bottom:753.759000px;}
.y14{bottom:754.242000px;}
.y169{bottom:755.448000px;}
.y96{bottom:759.349500px;}
.y13e{bottom:762.606000px;}
.yc9{bottom:766.272000px;}
.y198{bottom:767.449500px;}
.y43{bottom:771.573000px;}
.y68{bottom:774.024000px;}
.y13{bottom:774.505500px;}
.y95{bottom:779.613000px;}
.yc7{bottom:782.710500px;}
.y13d{bottom:782.871000px;}
.y197{bottom:786.816000px;}
.y168{bottom:788.578500px;}
.yc8{bottom:790.929000px;}
.y42{bottom:791.836500px;}
.y67{bottom:794.287500px;}
.y12{bottom:794.769000px;}
.yfd{bottom:798.445500px;}
.yc6{bottom:799.149000px;}
.y94{bottom:799.876500px;}
.y13c{bottom:803.134500px;}
.y196{bottom:806.184000px;}
.y167{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y66{bottom:814.552500px;}
.y11{bottom:815.034000px;}
.yc5{bottom:815.944500px;}
.y93{bottom:820.141500px;}
.y13b{bottom:823.398000px;}
.y195{bottom:825.552000px;}
.y166{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.yc4{bottom:832.740000px;}
.y65{bottom:834.816000px;}
.y92{bottom:840.405000px;}
.y13a{bottom:843.663000px;}
.y194{bottom:844.918500px;}
.y165{bottom:849.372000px;}
.yc3{bottom:849.535500px;}
.ye{bottom:850.465555px;}
.yd{bottom:851.232000px;}
.y3f{bottom:852.628500px;}
.y64{bottom:855.079500px;}
.y91{bottom:860.668500px;}
.y139{bottom:863.926500px;}
.y193{bottom:864.286500px;}
.yc2{bottom:865.974000px;}
.y164{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.y63{bottom:875.344500px;}
.y90{bottom:880.933500px;}
.yc1{bottom:882.412500px;}
.y192{bottom:883.653000px;}
.y138{bottom:884.191500px;}
.y163{bottom:889.899000px;}
.yc{bottom:890.238000px;}
.y3d{bottom:893.157000px;}
.yc0{bottom:899.208000px;}
.y8f{bottom:901.197000px;}
.y191{bottom:903.021000px;}
.y137{bottom:904.455000px;}
.y62{bottom:904.575000px;}
.yb{bottom:908.395500px;}
.y162{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y8e{bottom:921.462000px;}
.y190{bottom:922.389000px;}
.ybf{bottom:922.848000px;}
.y136{bottom:924.718500px;}
.y161{bottom:930.427500px;}
.ybd{bottom:930.873000px;}
.y3b{bottom:933.685500px;}
.ya{bottom:935.518500px;}
.yb9{bottom:939.286500px;}
.y61{bottom:939.394500px;}
.y8d{bottom:941.725500px;}
.y18f{bottom:941.755500px;}
.y135{bottom:944.983500px;}
.ybc{bottom:947.311500px;}
.y160{bottom:950.692500px;}
.y3a{bottom:953.949000px;}
.yb7{bottom:955.725000px;}
.y18e{bottom:961.123500px;}
.ybb{bottom:963.750000px;}
.y134{bottom:965.247000px;}
.y1bd{bottom:968.541000px;}
.y8c{bottom:970.956000px;}
.yb8{bottom:972.163500px;}
.y39{bottom:974.214000px;}
.y15f{bottom:979.923000px;}
.y9{bottom:980.055000px;}
.yba{bottom:980.187000px;}
.y18d{bottom:980.490000px;}
.y133{bottom:985.512000px;}
.y1bc{bottom:987.909000px;}
.ybe{bottom:988.602000px;}
.y38{bottom:994.477500px;}
.y18c{bottom:999.858000px;}
.y8b{bottom:1005.775500px;}
.y1bb{bottom:1007.277000px;}
.y8{bottom:1010.451000px;}
.y37{bottom:1014.742500px;}
.y18b{bottom:1019.226000px;}
.yb6{bottom:1020.220500px;}
.y8a{bottom:1026.039000px;}
.y36{bottom:1035.006000px;}
.y18a{bottom:1038.592500px;}
.yb5{bottom:1039.453500px;}
.y7{bottom:1040.848500px;}
.y89{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y189{bottom:1057.960500px;}
.yb4{bottom:1058.686500px;}
.y88{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y188{bottom:1077.327000px;}
.y87{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y187{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h1d{height:26.110157px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h1c{height:34.813397px;}
.he{height:35.052500px;}
.h21{height:37.927872px;}
.h20{height:38.412058px;}
.hf{height:38.896243px;}
.h9{height:39.165235px;}
.h3{height:39.402747px;}
.h1f{height:39.434227px;}
.h4{height:41.001535px;}
.h8{height:43.217759px;}
.h15{height:43.468157px;}
.hd{height:43.516637px;}
.h5{height:43.815515px;}
.h10{height:49.782344px;}
.h2{height:50.931027px;}
.h17{height:54.768749px;}
.h16{height:54.774749px;}
.h11{height:72.039235px;}
.h12{height:72.045235px;}
.h1b{height:72.550243px;}
.h1e{height:72.556243px;}
.h7{height:77.792486px;}
.h6{height:78.438067px;}
.h13{height:81.251558px;}
.h1a{height:82.656344px;}
.h14{height:104.913235px;}
.h18{height:892.914000px;}
.h19{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:59.014071px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x4{left:123.307500px;}
.x48{left:128.725500px;}
.x51{left:129.768000px;}
.x4f{left:132.061500px;}
.x54{left:133.588500px;}
.x44{left:135.430500px;}
.x59{left:140.286000px;}
.x57{left:141.328500px;}
.x47{left:142.747500px;}
.x52{left:144.819000px;}
.xa{left:146.692500px;}
.x45{left:150.273000px;}
.x4c{left:152.592000px;}
.x34{left:155.020500px;}
.x50{left:158.140500px;}
.x4b{left:159.411000px;}
.x4d{left:160.494000px;}
.x55{left:165.019500px;}
.x46{left:166.633500px;}
.x58{left:167.844000px;}
.x4a{left:169.270500px;}
.x4e{left:170.332500px;}
.x65{left:172.579500px;}
.x23{left:176.590500px;}
.x89{left:179.821500px;}
.x6e{left:186.165000px;}
.x8{left:189.783000px;}
.x24{left:191.535000px;}
.x71{left:193.167000px;}
.x8a{left:194.764500px;}
.x33{left:198.769500px;}
.x70{left:199.911000px;}
.x9{left:202.003500px;}
.x90{left:207.829500px;}
.x9e{left:209.421000px;}
.x72{left:212.569500px;}
.x30{left:217.323000px;}
.x5f{left:219.138000px;}
.x60{left:221.424000px;}
.x62{left:223.945500px;}
.x5e{left:230.442000px;}
.x15{left:239.088000px;}
.x11{left:242.542500px;}
.x12{left:250.014000px;}
.xa7{left:251.667000px;}
.x16{left:254.031000px;}
.x63{left:255.313500px;}
.x98{left:256.408500px;}
.x13{left:257.635500px;}
.x5a{left:261.322500px;}
.x49{left:267.129000px;}
.x53{left:270.490500px;}
.x14{left:272.580000px;}
.x97{left:279.357000px;}
.x9f{left:286.942500px;}
.xa0{left:293.667000px;}
.x86{left:295.207500px;}
.x66{left:303.013500px;}
.x74{left:308.022000px;}
.x87{left:310.150500px;}
.x67{left:311.221500px;}
.x75{left:316.236000px;}
.x88{left:317.772000px;}
.x26{left:323.059500px;}
.x56{left:332.598000px;}
.xa1{left:336.406500px;}
.x27{left:338.004000px;}
.x36{left:339.540000px;}
.x93{left:341.245500px;}
.x35{left:343.212000px;}
.x28{left:345.625500px;}
.x7d{left:355.131000px;}
.x94{left:356.190000px;}
.x7e{left:358.941000px;}
.x29{left:360.570000px;}
.xa2{left:363.399000px;}
.x7f{left:373.885500px;}
.x80{left:377.695500px;}
.x8d{left:379.279500px;}
.x81{left:392.640000px;}
.x8e{left:394.222500px;}
.x39{left:411.172500px;}
.x38{left:412.201500px;}
.x37{left:413.295000px;}
.x8b{left:416.209500px;}
.x82{left:418.851000px;}
.xa3{left:424.645500px;}
.x3a{left:428.731500px;}
.x8c{left:431.154000px;}
.x19{left:432.285000px;}
.x83{left:433.795500px;}
.x84{left:437.455500px;}
.x1a{left:439.756500px;}
.x1b{left:447.378000px;}
.x77{left:450.628500px;}
.x85{left:452.400000px;}
.x68{left:457.234500px;}
.x1c{left:462.321000px;}
.x69{left:465.442500px;}
.x76{left:469.566000px;}
.x78{left:476.778000px;}
.x79{left:480.510000px;}
.x2a{left:492.615000px;}
.x7a{left:495.453000px;}
.x5b{left:498.264000px;}
.x64{left:503.409000px;}
.x2b{left:507.559500px;}
.x2c{left:511.224000px;}
.x3b{left:517.141500px;}
.x2d{left:526.168500px;}
.x73{left:530.407500px;}
.x17{left:535.701000px;}
.x9c{left:546.885000px;}
.x18{left:550.645500px;}
.x31{left:554.803500px;}
.xa4{left:567.526500px;}
.x32{left:569.746500px;}
.x9d{left:573.783000px;}
.x1d{left:591.102000px;}
.x3e{left:593.971500px;}
.x3f{left:595.651500px;}
.x3d{left:601.717500px;}
.x3c{left:602.811000px;}
.x1e{left:606.045000px;}
.x95{left:607.053000px;}
.x8f{left:609.921000px;}
.x1f{left:613.666500px;}
.x96{left:621.996000px;}
.x20{left:628.611000px;}
.x5c{left:633.168000px;}
.xb{left:634.321500px;}
.x7b{left:640.161000px;}
.xc{left:641.794500px;}
.xa6{left:642.898500px;}
.xd{left:649.416000px;}
.x5d{left:651.579000px;}
.xe{left:656.887500px;}
.xf{left:668.377500px;}
.xa5{left:670.692000px;}
.x21{left:673.149000px;}
.x10{left:675.850500px;}
.x9a{left:678.405000px;}
.x22{left:688.093500px;}
.x43{left:691.701000px;}
.x41{left:697.317000px;}
.x42{left:698.452500px;}
.x6{left:701.339982px;}
.x9b{left:705.304500px;}
.x40{left:707.026500px;}
.x7c{left:713.788500px;}
.x91{left:734.556000px;}
.x92{left:749.500500px;}
.x25{left:753.781500px;}
.x2e{left:757.243500px;}
.x2f{left:772.188000px;}
.x99{left:776.482500px;}
.x61{left:966.193500px;}
.x6f{left:976.993500px;}
.x6a{left:1059.810000px;}
.x6b{left:1068.019500px;}
.x6c{left:1081.365000px;}
.x6d{left:1089.586500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.429333pt;}
.v1{vertical-align:17.360000pt;}
.v7{vertical-align:19.290667pt;}
.v3{vertical-align:27.786667pt;}
.v2{vertical-align:29.221333pt;}
.v4{vertical-align:45.146667pt;}
.v8{vertical-align:46.581333pt;}
.v5{vertical-align:58.442667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000213pt;}
.ls64{letter-spacing:0.000397pt;}
.ls9{letter-spacing:0.000577pt;}
.ls26{letter-spacing:0.000600pt;}
.lsc{letter-spacing:0.001089pt;}
.ls35{letter-spacing:0.001183pt;}
.ls5b{letter-spacing:0.001349pt;}
.lsb{letter-spacing:0.001759pt;}
.ls4c{letter-spacing:0.001774pt;}
.ls63{letter-spacing:0.002078pt;}
.ls44{letter-spacing:0.002097pt;}
.ls6b{letter-spacing:0.002287pt;}
.ls1b{letter-spacing:0.002473pt;}
.ls52{letter-spacing:0.002551pt;}
.ls5a{letter-spacing:0.002613pt;}
.ls48{letter-spacing:0.002710pt;}
.ls38{letter-spacing:0.003012pt;}
.ls8{letter-spacing:0.003017pt;}
.ls5{letter-spacing:0.003100pt;}
.lsa{letter-spacing:0.003106pt;}
.ls5c{letter-spacing:0.003942pt;}
.ls5d{letter-spacing:0.004562pt;}
.ls65{letter-spacing:0.004576pt;}
.ls62{letter-spacing:0.004822pt;}
.ls68{letter-spacing:0.466280pt;}
.ls67{letter-spacing:0.471509pt;}
.ls5e{letter-spacing:0.476298pt;}
.ls69{letter-spacing:0.478097pt;}
.ls5f{letter-spacing:0.481637pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls24{letter-spacing:2.656533pt;}
.ls25{letter-spacing:2.661867pt;}
.ls2a{letter-spacing:10.624017pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2b{letter-spacing:10.629350pt;}
.ls51{letter-spacing:10.636456pt;}
.ls50{letter-spacing:10.636539pt;}
.ls57{letter-spacing:10.641898pt;}
.ls54{letter-spacing:10.695343pt;}
.ls55{letter-spacing:10.700730pt;}
.ls58{letter-spacing:10.789540pt;}
.ls59{letter-spacing:10.794965pt;}
.ls66{letter-spacing:10.814868pt;}
.ls2e{letter-spacing:11.264380pt;}
.ls6c{letter-spacing:11.795701pt;}
.ls61{letter-spacing:11.954133pt;}
.ls23{letter-spacing:11.954551pt;}
.ls60{letter-spacing:11.959467pt;}
.ls53{letter-spacing:11.959885pt;}
.ls4f{letter-spacing:12.118771pt;}
.ls4e{letter-spacing:12.119350pt;}
.ls56{letter-spacing:12.124180pt;}
.ls6a{letter-spacing:12.139747pt;}
.ls49{letter-spacing:12.219430pt;}
.ls4a{letter-spacing:12.219461pt;}
.ls6e{letter-spacing:12.435430pt;}
.ls20{letter-spacing:12.507865pt;}
.ls1f{letter-spacing:12.513307pt;}
.ls11{letter-spacing:13.024498pt;}
.ls3f{letter-spacing:13.101809pt;}
.ls13{letter-spacing:13.106504pt;}
.ls46{letter-spacing:13.116819pt;}
.ls15{letter-spacing:13.142464pt;}
.ls16{letter-spacing:13.147723pt;}
.ls18{letter-spacing:13.156137pt;}
.ls3{letter-spacing:13.179752pt;}
.ls34{letter-spacing:13.182878pt;}
.ls43{letter-spacing:13.238069pt;}
.ls19{letter-spacing:13.244533pt;}
.ls17{letter-spacing:13.280110pt;}
.ls2d{letter-spacing:13.282065pt;}
.ls3d{letter-spacing:13.283733pt;}
.ls10{letter-spacing:13.285443pt;}
.ls2c{letter-spacing:13.286400pt;}
.ls36{letter-spacing:13.311927pt;}
.ls42{letter-spacing:13.320043pt;}
.lsf{letter-spacing:13.335076pt;}
.ls22{letter-spacing:13.362287pt;}
.lsd{letter-spacing:13.365659pt;}
.ls21{letter-spacing:13.367729pt;}
.ls31{letter-spacing:13.378933pt;}
.ls1c{letter-spacing:13.389734pt;}
.ls1d{letter-spacing:13.393356pt;}
.ls47{letter-spacing:13.396827pt;}
.ls1e{letter-spacing:13.398727pt;}
.ls2f{letter-spacing:13.473051pt;}
.ls30{letter-spacing:13.484482pt;}
.ls1a{letter-spacing:13.546465pt;}
.lse{letter-spacing:13.589929pt;}
.ls14{letter-spacing:13.600572pt;}
.ls37{letter-spacing:13.661286pt;}
.ls45{letter-spacing:13.990698pt;}
.ls3b{letter-spacing:14.607692pt;}
.ls28{letter-spacing:14.610606pt;}
.ls39{letter-spacing:14.612920pt;}
.ls3a{letter-spacing:14.614766pt;}
.ls29{letter-spacing:14.615939pt;}
.ls33{letter-spacing:14.654750pt;}
.ls32{letter-spacing:15.778933pt;}
.ls40{letter-spacing:15.831221pt;}
.ls41{letter-spacing:15.836450pt;}
.ls3c{letter-spacing:15.937067pt;}
.ls4b{letter-spacing:15.942400pt;}
.ls12{letter-spacing:16.003770pt;}
.ls3e{letter-spacing:16.471499pt;}
.ls6d{letter-spacing:18.910159pt;}
.ls1{letter-spacing:28.452898pt;}
.ls27{letter-spacing:110.368533pt;}
.ls4d{letter-spacing:158.928533pt;}
.ws63{word-spacing:-15.924326pt;}
.ws7{word-spacing:-15.461955pt;}
.ws2{word-spacing:-13.915853pt;}
.ws36{word-spacing:-13.283467pt;}
.ws62{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws44{word-spacing:-3.825638pt;}
.wsb7{word-spacing:-3.772505pt;}
.wse5{word-spacing:-3.682202pt;}
.ws3a{word-spacing:-3.241166pt;}
.wsac{word-spacing:-3.134898pt;}
.ws59{word-spacing:-3.081764pt;}
.wsae{word-spacing:-2.816095pt;}
.wsb1{word-spacing:-2.709827pt;}
.wsaf{word-spacing:-2.284756pt;}
.ws4b{word-spacing:-2.231622pt;}
.ws31{word-spacing:-2.125355pt;}
.ws75{word-spacing:-2.019087pt;}
.wsfd{word-spacing:-1.817190pt;}
.wsfb{word-spacing:-1.769370pt;}
.ws58{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws45{word-spacing:-1.487748pt;}
.wsd5{word-spacing:-1.482445pt;}
.ws93{word-spacing:-1.338982pt;}
.wsa6{word-spacing:-1.328032pt;}
.ws92{word-spacing:-1.322590pt;}
.ws94{word-spacing:-1.291162pt;}
.ws3{word-spacing:-1.175671pt;}
.ws2d{word-spacing:-1.168945pt;}
.wsd8{word-spacing:-1.147699pt;}
.ws88{word-spacing:-1.115811pt;}
.ws8b{word-spacing:-1.066127pt;}
.ws49{word-spacing:-1.062677pt;}
.wsb9{word-spacing:-1.009543pt;}
.wsad{word-spacing:-0.956410pt;}
.wsa7{word-spacing:-0.908595pt;}
.ws11{word-spacing:-0.903276pt;}
.wsf{word-spacing:-0.797008pt;}
.ws8c{word-spacing:-0.792016pt;}
.ws5a{word-spacing:-0.746864pt;}
.wsf1{word-spacing:-0.686715pt;}
.wsb0{word-spacing:-0.637606pt;}
.ws20{word-spacing:-0.584473pt;}
.wsc{word-spacing:-0.531339pt;}
.ws51{word-spacing:-0.425071pt;}
.wsf3{word-spacing:-0.382566pt;}
.ws5d{word-spacing:-0.371937pt;}
.wsd2{word-spacing:-0.334746pt;}
.ws2e{word-spacing:-0.318803pt;}
.ws10{word-spacing:-0.265669pt;}
.wsa2{word-spacing:-0.255043pt;}
.wsa3{word-spacing:-0.239104pt;}
.ws28{word-spacing:-0.212535pt;}
.wsbe{word-spacing:-0.191283pt;}
.ws4a{word-spacing:-0.178686pt;}
.ws89{word-spacing:-0.163529pt;}
.ws19{word-spacing:-0.159402pt;}
.wse0{word-spacing:-0.143462pt;}
.wsb{word-spacing:-0.106268pt;}
.wsbd{word-spacing:-0.095642pt;}
.ws15{word-spacing:-0.053134pt;}
.ws4d{word-spacing:-0.049770pt;}
.ws8e{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.wsfe{word-spacing:-0.037956pt;}
.ws98{word-spacing:-0.027597pt;}
.ws95{word-spacing:-0.025327pt;}
.wsf6{word-spacing:-0.023390pt;}
.ws97{word-spacing:-0.021743pt;}
.wsa4{word-spacing:-0.016802pt;}
.ws6c{word-spacing:-0.015915pt;}
.ws1{word-spacing:-0.014404pt;}
.ws6b{word-spacing:-0.010581pt;}
.wsa5{word-spacing:-0.004693pt;}
.ws8f{word-spacing:-0.004267pt;}
.ws90{word-spacing:-0.003712pt;}
.ws9a{word-spacing:-0.003499pt;}
.ws96{word-spacing:-0.003482pt;}
.ws71{word-spacing:-0.003369pt;}
.ws6a{word-spacing:-0.003319pt;}
.ws73{word-spacing:-0.003301pt;}
.ws99{word-spacing:-0.002978pt;}
.ws91{word-spacing:-0.001493pt;}
.wsf8{word-spacing:-0.001451pt;}
.ws82{word-spacing:-0.000800pt;}
.ws81{word-spacing:-0.000222pt;}
.ws72{word-spacing:-0.000202pt;}
.ws0{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.000800pt;}
.ws9f{word-spacing:0.042507pt;}
.wsce{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws9c{word-spacing:0.060831pt;}
.ws9d{word-spacing:0.063873pt;}
.ws9e{word-spacing:0.068755pt;}
.ws9b{word-spacing:0.071675pt;}
.ws5b{word-spacing:0.078071pt;}
.wsa0{word-spacing:0.085014pt;}
.ws8a{word-spacing:0.087449pt;}
.wsc1{word-spacing:0.095642pt;}
.ws5c{word-spacing:0.097090pt;}
.ws79{word-spacing:0.099193pt;}
.wsd{word-spacing:0.106268pt;}
.ws60{word-spacing:0.143462pt;}
.ws41{word-spacing:0.159402pt;}
.wsaa{word-spacing:0.159936pt;}
.wsab{word-spacing:0.163029pt;}
.wsa9{word-spacing:0.163892pt;}
.wsa8{word-spacing:0.164720pt;}
.wsa1{word-spacing:0.170029pt;}
.wsd3{word-spacing:0.191283pt;}
.ws78{word-spacing:0.200075pt;}
.ws1b{word-spacing:0.212535pt;}
.wsc4{word-spacing:0.239104pt;}
.ws50{word-spacing:0.254775pt;}
.ws13{word-spacing:0.265669pt;}
.wsff{word-spacing:0.286925pt;}
.ws39{word-spacing:0.318803pt;}
.ws12{word-spacing:0.371937pt;}
.ws54{word-spacing:0.425071pt;}
.ws5f{word-spacing:0.430387pt;}
.wsb4{word-spacing:0.478205pt;}
.ws53{word-spacing:0.531339pt;}
.wsec{word-spacing:0.621670pt;}
.ws32{word-spacing:0.637606pt;}
.ws5e{word-spacing:0.669491pt;}
.ws22{word-spacing:0.690740pt;}
.ws85{word-spacing:0.797008pt;}
.ws107{word-spacing:0.812954pt;}
.ws76{word-spacing:0.956410pt;}
.ws1a{word-spacing:1.009543pt;}
.ws18{word-spacing:1.062677pt;}
.wsee{word-spacing:1.147699pt;}
.ws5{word-spacing:1.168945pt;}
.wse2{word-spacing:1.195520pt;}
.ws7f{word-spacing:1.327151pt;}
.ws7e{word-spacing:1.328347pt;}
.ws24{word-spacing:1.381481pt;}
.wsbb{word-spacing:1.487748pt;}
.ws109{word-spacing:1.530266pt;}
.wsb8{word-spacing:1.594016pt;}
.ws29{word-spacing:1.700284pt;}
.ws80{word-spacing:1.725004pt;}
.ws34{word-spacing:1.806551pt;}
.wsb3{word-spacing:1.859685pt;}
.wsc6{word-spacing:1.912832pt;}
.ws10f{word-spacing:1.960653pt;}
.ws6{word-spacing:2.019087pt;}
.ws86{word-spacing:2.072221pt;}
.ws77{word-spacing:2.337890pt;}
.ws7c{word-spacing:2.485576pt;}
.ws7d{word-spacing:2.497292pt;}
.ws7b{word-spacing:2.499193pt;}
.ws108{word-spacing:2.534502pt;}
.ws87{word-spacing:2.550426pt;}
.wsb6{word-spacing:2.603559pt;}
.ws23{word-spacing:2.709827pt;}
.ws48{word-spacing:2.727341pt;}
.ws33{word-spacing:2.816095pt;}
.wse9{word-spacing:2.821427pt;}
.ws40{word-spacing:2.869229pt;}
.wsda{word-spacing:2.917069pt;}
.ws3b{word-spacing:2.975497pt;}
.ws25{word-spacing:3.081764pt;}
.wsba{word-spacing:3.134898pt;}
.ws83{word-spacing:3.188032pt;}
.ws38{word-spacing:3.241166pt;}
.ws2c{word-spacing:3.294300pt;}
.ws2b{word-spacing:3.347434pt;}
.wsd0{word-spacing:3.347456pt;}
.ws21{word-spacing:3.506835pt;}
.ws7a{word-spacing:3.559969pt;}
.ws101{word-spacing:3.634381pt;}
.ws74{word-spacing:3.666237pt;}
.ws3c{word-spacing:3.772505pt;}
.wsdc{word-spacing:3.825664pt;}
.wscd{word-spacing:3.873485pt;}
.wsc9{word-spacing:4.064768pt;}
.ws57{word-spacing:4.144442pt;}
.wsa{word-spacing:4.197575pt;}
.wsdf{word-spacing:4.351693pt;}
.wsc3{word-spacing:4.447334pt;}
.ws35{word-spacing:4.463245pt;}
.ws110{word-spacing:4.495155pt;}
.wsd6{word-spacing:4.545731pt;}
.ws16{word-spacing:4.569513pt;}
.ws17{word-spacing:4.622646pt;}
.wsbc{word-spacing:4.728914pt;}
.wsc0{word-spacing:4.773845pt;}
.ws111{word-spacing:4.778940pt;}
.wsed{word-spacing:4.779349pt;}
.wsc8{word-spacing:4.780254pt;}
.wsf5{word-spacing:4.780681pt;}
.wsbf{word-spacing:4.781175pt;}
.wsb2{word-spacing:4.782048pt;}
.wsf4{word-spacing:4.782080pt;}
.wsea{word-spacing:4.782114pt;}
.ws100{word-spacing:4.783556pt;}
.ws10e{word-spacing:4.925542pt;}
.ws56{word-spacing:5.207119pt;}
.ws14{word-spacing:5.313387pt;}
.ws84{word-spacing:5.419654pt;}
.ws55{word-spacing:5.472788pt;}
.ws10b{word-spacing:5.547213pt;}
.ws46{word-spacing:5.632190pt;}
.ws9{word-spacing:5.738458pt;}
.wscc{word-spacing:5.929779pt;}
.ws105{word-spacing:6.073242pt;}
.ws8{word-spacing:6.429198pt;}
.ws10d{word-spacing:6.934016pt;}
.wsb5{word-spacing:7.066804pt;}
.ws2a{word-spacing:7.916946pt;}
.ws2f{word-spacing:8.713954pt;}
.ws30{word-spacing:8.767088pt;}
.ws10a{word-spacing:9.229414pt;}
.ws26{word-spacing:9.404694pt;}
.wsfc{word-spacing:10.138010pt;}
.wsd7{word-spacing:10.424934pt;}
.wsf2{word-spacing:11.237888pt;}
.wsdb{word-spacing:11.476992pt;}
.wsf0{word-spacing:11.716096pt;}
.wse1{word-spacing:11.763917pt;}
.ws104{word-spacing:11.899819pt;}
.wse8{word-spacing:11.901355pt;}
.wsd1{word-spacing:11.902302pt;}
.wse6{word-spacing:11.906628pt;}
.wseb{word-spacing:11.906688pt;}
.wscf{word-spacing:11.907379pt;}
.wsf9{word-spacing:11.955200pt;}
.ws106{word-spacing:12.003021pt;}
.ws3d{word-spacing:12.327057pt;}
.ws47{word-spacing:12.433325pt;}
.ws52{word-spacing:12.805262pt;}
.ws4c{word-spacing:13.070931pt;}
.wse3{word-spacing:13.102899pt;}
.ws3f{word-spacing:13.124065pt;}
.ws4e{word-spacing:13.177199pt;}
.ws37{word-spacing:13.230333pt;}
.ws42{word-spacing:13.336601pt;}
.ws43{word-spacing:13.442868pt;}
.ws4f{word-spacing:13.496002pt;}
.wsd9{word-spacing:14.824448pt;}
.ws1c{word-spacing:14.835013pt;}
.wsdd{word-spacing:15.733043pt;}
.wse4{word-spacing:16.354714pt;}
.wsca{word-spacing:16.402534pt;}
.wsfa{word-spacing:16.498176pt;}
.wsd4{word-spacing:16.681088pt;}
.wscb{word-spacing:16.682180pt;}
.ws102{word-spacing:16.683230pt;}
.wsde{word-spacing:16.685867pt;}
.wsc2{word-spacing:16.686421pt;}
.wsc7{word-spacing:16.689459pt;}
.wse7{word-spacing:16.785101pt;}
.ws103{word-spacing:16.880742pt;}
.wsef{word-spacing:16.976384pt;}
.wsc5{word-spacing:17.024205pt;}
.ws10c{word-spacing:17.406771pt;}
.ws3e{word-spacing:18.543719pt;}
.ws27{word-spacing:20.509673pt;}
.wsf7{word-spacing:43.038720pt;}
.ws6f{word-spacing:134.594133pt;}
.ws6d{word-spacing:143.965926pt;}
.ws69{word-spacing:146.546133pt;}
.ws65{word-spacing:176.410931pt;}
.ws68{word-spacing:176.458752pt;}
.ws67{word-spacing:209.691554pt;}
.ws70{word-spacing:211.731260pt;}
.ws61{word-spacing:221.984154pt;}
.ws6e{word-spacing:231.279650pt;}
.ws64{word-spacing:237.762133pt;}
.ws66{word-spacing:246.318933pt;}
.ws1f{word-spacing:382.947365pt;}
._67{margin-left:-19.442631pt;}
._2{margin-left:-10.616218pt;}
._68{margin-left:-9.611981pt;}
._3{margin-left:-7.077478pt;}
._6{margin-left:-6.168883pt;}
._5{margin-left:-4.399514pt;}
._12{margin-left:-3.090929pt;}
._9{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._a{width:0.969929pt;}
._64{width:3.518305pt;}
._0{width:9.035708pt;}
._11{width:10.626800pt;}
._4a{width:11.731131pt;}
._65{width:12.812544pt;}
._f{width:13.910676pt;}
._16{width:14.889183pt;}
._7{width:15.876506pt;}
._8{width:17.598054pt;}
._e{width:18.638488pt;}
._17{width:20.084602pt;}
._b{width:21.135779pt;}
._d{width:22.676661pt;}
._62{width:23.664108pt;}
._c{width:25.132319pt;}
._14{width:27.151406pt;}
._18{width:28.054682pt;}
._15{width:29.011091pt;}
._10{width:32.730462pt;}
._19{width:35.015218pt;}
._3b{width:47.820800pt;}
._66{width:54.993920pt;}
._4{width:61.664638pt;}
._3a{width:100.136755pt;}
._58{width:107.453338pt;}
._39{width:113.239654pt;}
._5e{width:117.878272pt;}
._3f{width:123.042918pt;}
._32{width:126.390374pt;}
._44{width:132.320154pt;}
._1a{width:136.384922pt;}
._2e{width:137.867366pt;}
._5d{width:139.397632pt;}
._36{width:141.687066pt;}
._3d{width:145.853440pt;}
._1f{width:149.631283pt;}
._56{width:155.321958pt;}
._3e{width:156.374016pt;}
._31{width:158.860698pt;}
._21{width:161.538662pt;}
._30{width:163.021107pt;}
._43{width:165.699072pt;}
._2c{width:170.863718pt;}
._4c{width:172.872192pt;}
._28{width:174.976307pt;}
._23{width:176.410931pt;}
._2b{width:187.457536pt;}
._1b{width:188.366131pt;}
._4b{width:190.926592pt;}
._1e{width:195.443610pt;}
._29{width:197.404262pt;}
._5b{width:200.990822pt;}
._24{width:204.864307pt;}
._20{width:207.398810pt;}
._25{width:213.376410pt;}
._27{width:217.488998pt;}
._47{width:220.979063pt;}
._2a{width:225.475072pt;}
._34{width:229.348557pt;}
._1c{width:232.791654pt;}
._26{width:237.956301pt;}
._35{width:241.129677pt;}
._22{width:248.524698pt;}
._1d{width:253.211136pt;}
._2f{width:254.215373pt;}
._2d{width:260.479898pt;}
._33{width:266.648781pt;}
._57{width:273.058261pt;}
._5a{width:282.003951pt;}
._55{width:285.011925pt;}
._59{width:306.006793pt;}
._5c{width:314.948429pt;}
._4e{width:320.399360pt;}
._54{width:323.698995pt;}
._46{width:332.976230pt;}
._41{width:335.654195pt;}
._45{width:336.993178pt;}
._4d{width:342.259430pt;}
._60{width:345.600922pt;}
._40{width:348.948378pt;}
._3c{width:355.166575pt;}
._42{width:363.296111pt;}
._49{width:372.237747pt;}
._5f{width:402.794598pt;}
._51{width:412.147251pt;}
._4f{width:414.749798pt;}
._53{width:421.400388pt;}
._38{width:423.240277pt;}
._61{width:431.439258pt;}
._50{width:500.392636pt;}
._52{width:509.651106pt;}
._48{width:715.064422pt;}
._63{width:1347.152171pt;}
._13{width:1368.405771pt;}
._37{width:2683.689626pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fsa{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs7{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.yf{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y30{bottom:56.693333pt;}
.y1ba{bottom:96.850667pt;}
.y15e{bottom:101.472000pt;}
.y2f{bottom:110.276000pt;}
.y1b9{bottom:114.066667pt;}
.y15d{bottom:119.484000pt;}
.yee{bottom:120.362667pt;}
.y86{bottom:126.737333pt;}
.yfc{bottom:127.454667pt;}
.y2e{bottom:128.288000pt;}
.y60{bottom:129.633333pt;}
.y1b8{bottom:131.281333pt;}
.yb3{bottom:131.705333pt;}
.y15c{bottom:137.496000pt;}
.yed{bottom:138.374667pt;}
.y186{bottom:140.500000pt;}
.y85{bottom:144.749333pt;}
.yfb{bottom:145.466667pt;}
.y11f{bottom:146.266667pt;}
.y2d{bottom:146.300000pt;}
.y5f{bottom:147.645333pt;}
.y1b7{bottom:148.497333pt;}
.yb2{bottom:149.717333pt;}
.y15b{bottom:155.509333pt;}
.yec{bottom:156.388000pt;}
.y185{bottom:157.716000pt;}
.y11e{bottom:158.886667pt;}
.y132{bottom:160.533333pt;}
.y84{bottom:162.762667pt;}
.yfa{bottom:163.478667pt;}
.y2c{bottom:164.313333pt;}
.y5e{bottom:165.657333pt;}
.y1b6{bottom:165.713333pt;}
.yb1{bottom:167.730667pt;}
.y11c{bottom:171.505333pt;}
.y131{bottom:173.152000pt;}
.y15a{bottom:173.521333pt;}
.y184{bottom:174.930667pt;}
.y11d{bottom:175.362667pt;}
.y83{bottom:180.774667pt;}
.yf9{bottom:181.492000pt;}
.y2b{bottom:182.325333pt;}
.y1b5{bottom:182.928000pt;}
.y5d{bottom:183.670667pt;}
.y11a{bottom:184.125333pt;}
.yb0{bottom:185.742667pt;}
.y12f{bottom:185.772000pt;}
.y11b{bottom:187.982667pt;}
.y130{bottom:189.629333pt;}
.yeb{bottom:191.402667pt;}
.y159{bottom:191.534667pt;}
.y183{bottom:192.146667pt;}
.y12d{bottom:198.390667pt;}
.y82{bottom:198.786667pt;}
.yf8{bottom:199.504000pt;}
.y1b4{bottom:200.144000pt;}
.y2a{bottom:200.338667pt;}
.y5c{bottom:201.682667pt;}
.y12e{bottom:202.248000pt;}
.y119{bottom:203.732000pt;}
.yaf{bottom:203.754667pt;}
.y182{bottom:209.361333pt;}
.y158{bottom:209.546667pt;}
.yea{bottom:210.693333pt;}
.y81{bottom:216.800000pt;}
.y1b3{bottom:217.358667pt;}
.yf7{bottom:217.517333pt;}
.y12c{bottom:217.998667pt;}
.y29{bottom:218.350667pt;}
.y118{bottom:218.661333pt;}
.y5b{bottom:219.696000pt;}
.yae{bottom:221.768000pt;}
.ye9{bottom:225.304000pt;}
.y181{bottom:226.577333pt;}
.y157{bottom:227.558667pt;}
.y12b{bottom:232.928000pt;}
.y117{bottom:233.590667pt;}
.y1b2{bottom:234.574667pt;}
.y80{bottom:234.812000pt;}
.yf6{bottom:235.529333pt;}
.y28{bottom:236.362667pt;}
.y5a{bottom:237.708000pt;}
.yad{bottom:239.780000pt;}
.ye8{bottom:239.916000pt;}
.y180{bottom:243.793333pt;}
.y156{bottom:245.572000pt;}
.y12a{bottom:247.857333pt;}
.y116{bottom:248.520000pt;}
.y1b1{bottom:251.790667pt;}
.y7f{bottom:252.825333pt;}
.yf5{bottom:253.541333pt;}
.y27{bottom:254.376000pt;}
.ye7{bottom:254.528000pt;}
.y59{bottom:255.720000pt;}
.yac{bottom:257.793333pt;}
.y17f{bottom:261.008000pt;}
.y129{bottom:262.786667pt;}
.y155{bottom:263.584000pt;}
.y1b0{bottom:269.005333pt;}
.ye6{bottom:269.140000pt;}
.y115{bottom:269.534667pt;}
.y7e{bottom:270.837333pt;}
.yf4{bottom:271.554667pt;}
.y26{bottom:272.388000pt;}
.y58{bottom:273.733333pt;}
.yab{bottom:275.805333pt;}
.y17e{bottom:278.224000pt;}
.y154{bottom:281.597333pt;}
.ye5{bottom:283.752000pt;}
.y128{bottom:283.800000pt;}
.y114{bottom:284.146667pt;}
.y1af{bottom:286.221333pt;}
.y7d{bottom:288.849333pt;}
.yf3{bottom:289.566667pt;}
.y57{bottom:291.745333pt;}
.yaa{bottom:293.817333pt;}
.y17d{bottom:295.438667pt;}
.ye4{bottom:298.364000pt;}
.y25{bottom:298.370667pt;}
.y127{bottom:298.412000pt;}
.y113{bottom:298.758667pt;}
.y153{bottom:299.609333pt;}
.y1ae{bottom:303.437333pt;}
.y7c{bottom:306.862667pt;}
.yf2{bottom:307.580000pt;}
.ya9{bottom:311.830667pt;}
.y17c{bottom:312.654667pt;}
.ye3{bottom:312.976000pt;}
.y126{bottom:313.024000pt;}
.y152{bottom:317.621333pt;}
.y56{bottom:317.728000pt;}
.y112{bottom:320.089333pt;}
.y1ad{bottom:320.652000pt;}
.y7b{bottom:324.874667pt;}
.yf1{bottom:325.592000pt;}
.ye2{bottom:327.588000pt;}
.ya8{bottom:329.842667pt;}
.y17b{bottom:329.870667pt;}
.y125{bottom:334.356000pt;}
.y111{bottom:335.018667pt;}
.y151{bottom:335.634667pt;}
.y1ac{bottom:337.868000pt;}
.ye0{bottom:342.200000pt;}
.y7a{bottom:342.888000pt;}
.yf0{bottom:343.604000pt;}
.y17a{bottom:347.085333pt;}
.ya7{bottom:347.856000pt;}
.y55{bottom:348.678667pt;}
.y124{bottom:349.285333pt;}
.ye1{bottom:349.505333pt;}
.y110{bottom:349.948000pt;}
.y150{bottom:353.646667pt;}
.y1ab{bottom:355.082667pt;}
.ydf{bottom:356.812000pt;}
.y79{bottom:360.900000pt;}
.yef{bottom:361.617333pt;}
.y123{bottom:364.214667pt;}
.y179{bottom:364.301333pt;}
.y10f{bottom:364.877333pt;}
.ya6{bottom:365.868000pt;}
.y24{bottom:366.296000pt;}
.yde{bottom:371.424000pt;}
.y14f{bottom:371.660000pt;}
.y1aa{bottom:372.298667pt;}
.y78{bottom:378.912000pt;}
.y122{bottom:379.144000pt;}
.y54{bottom:379.629333pt;}
.y178{bottom:381.516000pt;}
.ya5{bottom:383.880000pt;}
.y23{bottom:384.308000pt;}
.y10e{bottom:385.892000pt;}
.ydd{bottom:386.034667pt;}
.y1a9{bottom:389.514667pt;}
.y14e{bottom:389.672000pt;}
.y77{bottom:396.925333pt;}
.y53{bottom:397.642667pt;}
.y177{bottom:398.732000pt;}
.y121{bottom:400.157333pt;}
.y10d{bottom:400.504000pt;}
.ydc{bottom:400.646667pt;}
.ya4{bottom:401.893333pt;}
.y1a8{bottom:406.729333pt;}
.y14d{bottom:407.684000pt;}
.y120{bottom:414.769333pt;}
.y76{bottom:414.937333pt;}
.y10c{bottom:415.116000pt;}
.ydb{bottom:415.258667pt;}
.y52{bottom:415.654667pt;}
.y176{bottom:415.948000pt;}
.y22{bottom:418.261333pt;}
.ya3{bottom:419.905333pt;}
.y1a7{bottom:423.945333pt;}
.y14c{bottom:425.697333pt;}
.yda{bottom:429.870667pt;}
.y75{bottom:432.950667pt;}
.y175{bottom:433.162667pt;}
.y51{bottom:433.666667pt;}
.y21{bottom:436.273333pt;}
.y10b{bottom:436.446667pt;}
.ya2{bottom:437.918667pt;}
.y1a6{bottom:441.160000pt;}
.y14b{bottom:443.709333pt;}
.yd9{bottom:444.482667pt;}
.y174{bottom:450.378667pt;}
.y74{bottom:450.962667pt;}
.y10a{bottom:451.376000pt;}
.y50{bottom:451.680000pt;}
.y20{bottom:454.286667pt;}
.ya1{bottom:455.930667pt;}
.y1a5{bottom:458.376000pt;}
.yd8{bottom:459.094667pt;}
.y14a{bottom:461.722667pt;}
.y109{bottom:466.305333pt;}
.y173{bottom:467.593333pt;}
.y73{bottom:468.974667pt;}
.y4f{bottom:469.692000pt;}
.y1f{bottom:472.298667pt;}
.yd7{bottom:474.024000pt;}
.y1a4{bottom:475.592000pt;}
.y149{bottom:479.734667pt;}
.y108{bottom:481.234667pt;}
.ya0{bottom:481.913333pt;}
.y172{bottom:484.809333pt;}
.y72{bottom:486.988000pt;}
.y4e{bottom:487.704000pt;}
.yd6{bottom:488.953333pt;}
.y1e{bottom:490.312000pt;}
.y1a3{bottom:492.806667pt;}
.y148{bottom:497.746667pt;}
.y107{bottom:502.249333pt;}
.yd5{bottom:503.882667pt;}
.y71{bottom:505.000000pt;}
.y4d{bottom:505.717333pt;}
.y1d{bottom:508.324000pt;}
.y171{bottom:509.994667pt;}
.y1a2{bottom:510.022667pt;}
.y9f{bottom:512.864000pt;}
.y147{bottom:515.760000pt;}
.y106{bottom:516.861333pt;}
.yd4{bottom:518.494667pt;}
.y70{bottom:523.013333pt;}
.y4c{bottom:523.729333pt;}
.y1c{bottom:526.336000pt;}
.y1a1{bottom:527.237333pt;}
.y9e{bottom:530.876000pt;}
.yd3{bottom:533.106667pt;}
.y146{bottom:533.772000pt;}
.y105{bottom:538.538667pt;}
.y6f{bottom:541.025333pt;}
.y4b{bottom:541.742667pt;}
.y1b{bottom:544.349333pt;}
.y1a0{bottom:544.453333pt;}
.y170{bottom:545.064000pt;}
.yd2{bottom:548.036000pt;}
.y9d{bottom:548.889333pt;}
.y145{bottom:551.785333pt;}
.y104{bottom:553.468000pt;}
.y6e{bottom:559.037333pt;}
.y4a{bottom:559.754667pt;}
.y19f{bottom:561.669333pt;}
.y1a{bottom:562.361333pt;}
.yd1{bottom:562.965333pt;}
.y16f{bottom:566.542667pt;}
.y9c{bottom:566.901333pt;}
.y103{bottom:568.397333pt;}
.y144{bottom:569.797333pt;}
.y6d{bottom:577.050667pt;}
.y49{bottom:577.766667pt;}
.yd0{bottom:577.894667pt;}
.y19e{bottom:578.884000pt;}
.y19{bottom:580.374667pt;}
.y102{bottom:583.326667pt;}
.y9b{bottom:584.914667pt;}
.y143{bottom:587.809333pt;}
.y16e{bottom:588.022667pt;}
.ycf{bottom:592.824000pt;}
.y6c{bottom:595.062667pt;}
.y48{bottom:595.780000pt;}
.y19d{bottom:596.100000pt;}
.y18{bottom:598.386667pt;}
.y9a{bottom:602.926667pt;}
.y101{bottom:604.341333pt;}
.y142{bottom:605.822667pt;}
.yce{bottom:607.753333pt;}
.y16d{bottom:609.501333pt;}
.y19c{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y17{bottom:616.398667pt;}
.y100{bottom:618.952000pt;}
.y99{bottom:620.938667pt;}
.y6b{bottom:621.045333pt;}
.ycd{bottom:622.682667pt;}
.y16c{bottom:623.012000pt;}
.y141{bottom:623.834667pt;}
.y19b{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y16{bottom:634.412000pt;}
.ycc{bottom:637.294667pt;}
.y98{bottom:638.952000pt;}
.y140{bottom:641.846667pt;}
.y16b{bottom:644.490667pt;}
.yff{bottom:647.457333pt;}
.y19a{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.ycb{bottom:651.906667pt;}
.y6a{bottom:651.996000pt;}
.y15{bottom:652.424000pt;}
.y97{bottom:656.964000pt;}
.y16a{bottom:658.000000pt;}
.y13f{bottom:659.860000pt;}
.yfe{bottom:664.553333pt;}
.y199{bottom:664.961333pt;}
.yca{bottom:666.518667pt;}
.y44{bottom:667.829333pt;}
.y69{bottom:670.008000pt;}
.y14{bottom:670.437333pt;}
.y169{bottom:671.509333pt;}
.y96{bottom:674.977333pt;}
.y13e{bottom:677.872000pt;}
.yc9{bottom:681.130667pt;}
.y198{bottom:682.177333pt;}
.y43{bottom:685.842667pt;}
.y68{bottom:688.021333pt;}
.y13{bottom:688.449333pt;}
.y95{bottom:692.989333pt;}
.yc7{bottom:695.742667pt;}
.y13d{bottom:695.885333pt;}
.y197{bottom:699.392000pt;}
.y168{bottom:700.958667pt;}
.yc8{bottom:703.048000pt;}
.y42{bottom:703.854667pt;}
.y67{bottom:706.033333pt;}
.y12{bottom:706.461333pt;}
.yfd{bottom:709.729333pt;}
.yc6{bottom:710.354667pt;}
.y94{bottom:711.001333pt;}
.y13c{bottom:713.897333pt;}
.y196{bottom:716.608000pt;}
.y167{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y66{bottom:724.046667pt;}
.y11{bottom:724.474667pt;}
.yc5{bottom:725.284000pt;}
.y93{bottom:729.014667pt;}
.y13b{bottom:731.909333pt;}
.y195{bottom:733.824000pt;}
.y166{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.yc4{bottom:740.213333pt;}
.y65{bottom:742.058667pt;}
.y92{bottom:747.026667pt;}
.y13a{bottom:749.922667pt;}
.y194{bottom:751.038667pt;}
.y165{bottom:754.997333pt;}
.yc3{bottom:755.142667pt;}
.ye{bottom:755.969382pt;}
.yd{bottom:756.650667pt;}
.y3f{bottom:757.892000pt;}
.y64{bottom:760.070667pt;}
.y91{bottom:765.038667pt;}
.y139{bottom:767.934667pt;}
.y193{bottom:768.254667pt;}
.yc2{bottom:769.754667pt;}
.y164{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.y63{bottom:778.084000pt;}
.y90{bottom:783.052000pt;}
.yc1{bottom:784.366667pt;}
.y192{bottom:785.469333pt;}
.y138{bottom:785.948000pt;}
.y163{bottom:791.021333pt;}
.yc{bottom:791.322667pt;}
.y3d{bottom:793.917333pt;}
.yc0{bottom:799.296000pt;}
.y8f{bottom:801.064000pt;}
.y191{bottom:802.685333pt;}
.y137{bottom:803.960000pt;}
.y62{bottom:804.066667pt;}
.yb{bottom:807.462667pt;}
.y162{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y8e{bottom:819.077333pt;}
.y190{bottom:819.901333pt;}
.ybf{bottom:820.309333pt;}
.y136{bottom:821.972000pt;}
.y161{bottom:827.046667pt;}
.ybd{bottom:827.442667pt;}
.y3b{bottom:829.942667pt;}
.ya{bottom:831.572000pt;}
.yb9{bottom:834.921333pt;}
.y61{bottom:835.017333pt;}
.y8d{bottom:837.089333pt;}
.y18f{bottom:837.116000pt;}
.y135{bottom:839.985333pt;}
.ybc{bottom:842.054667pt;}
.y160{bottom:845.060000pt;}
.y3a{bottom:847.954667pt;}
.yb7{bottom:849.533333pt;}
.y18e{bottom:854.332000pt;}
.ybb{bottom:856.666667pt;}
.y134{bottom:857.997333pt;}
.y1bd{bottom:860.925333pt;}
.y8c{bottom:863.072000pt;}
.yb8{bottom:864.145333pt;}
.y39{bottom:865.968000pt;}
.y15f{bottom:871.042667pt;}
.y9{bottom:871.160000pt;}
.yba{bottom:871.277333pt;}
.y18d{bottom:871.546667pt;}
.y133{bottom:876.010667pt;}
.y1bc{bottom:878.141333pt;}
.ybe{bottom:878.757333pt;}
.y38{bottom:883.980000pt;}
.y18c{bottom:888.762667pt;}
.y8b{bottom:894.022667pt;}
.y1bb{bottom:895.357333pt;}
.y8{bottom:898.178667pt;}
.y37{bottom:901.993333pt;}
.y18b{bottom:905.978667pt;}
.yb6{bottom:906.862667pt;}
.y8a{bottom:912.034667pt;}
.y36{bottom:920.005333pt;}
.y18a{bottom:923.193333pt;}
.yb5{bottom:923.958667pt;}
.y7{bottom:925.198667pt;}
.y89{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y189{bottom:940.409333pt;}
.yb4{bottom:941.054667pt;}
.y88{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y188{bottom:957.624000pt;}
.y87{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y187{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h1d{height:23.209028pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h1c{height:30.945242pt;}
.he{height:31.157778pt;}
.h21{height:33.713664pt;}
.h20{height:34.144051pt;}
.hf{height:34.574438pt;}
.h9{height:34.813542pt;}
.h3{height:35.024664pt;}
.h1f{height:35.052646pt;}
.h4{height:36.445809pt;}
.h8{height:38.415786pt;}
.h15{height:38.638362pt;}
.hd{height:38.681455pt;}
.h5{height:38.947124pt;}
.h10{height:44.250973pt;}
.h2{height:45.272024pt;}
.h17{height:48.683332pt;}
.h16{height:48.688666pt;}
.h11{height:64.034876pt;}
.h12{height:64.040209pt;}
.h1b{height:64.489105pt;}
.h1e{height:64.494438pt;}
.h7{height:69.148877pt;}
.h6{height:69.722726pt;}
.h13{height:72.223607pt;}
.h1a{height:73.472306pt;}
.h14{height:93.256209pt;}
.h18{height:793.701333pt;}
.h19{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:52.456952pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x4{left:109.606667pt;}
.x48{left:114.422667pt;}
.x51{left:115.349333pt;}
.x4f{left:117.388000pt;}
.x54{left:118.745333pt;}
.x44{left:120.382667pt;}
.x59{left:124.698667pt;}
.x57{left:125.625333pt;}
.x47{left:126.886667pt;}
.x52{left:128.728000pt;}
.xa{left:130.393333pt;}
.x45{left:133.576000pt;}
.x4c{left:135.637333pt;}
.x34{left:137.796000pt;}
.x50{left:140.569333pt;}
.x4b{left:141.698667pt;}
.x4d{left:142.661333pt;}
.x55{left:146.684000pt;}
.x46{left:148.118667pt;}
.x58{left:149.194667pt;}
.x4a{left:150.462667pt;}
.x4e{left:151.406667pt;}
.x65{left:153.404000pt;}
.x23{left:156.969333pt;}
.x89{left:159.841333pt;}
.x6e{left:165.480000pt;}
.x8{left:168.696000pt;}
.x24{left:170.253333pt;}
.x71{left:171.704000pt;}
.x8a{left:173.124000pt;}
.x33{left:176.684000pt;}
.x70{left:177.698667pt;}
.x9{left:179.558667pt;}
.x90{left:184.737333pt;}
.x9e{left:186.152000pt;}
.x72{left:188.950667pt;}
.x30{left:193.176000pt;}
.x5f{left:194.789333pt;}
.x60{left:196.821333pt;}
.x62{left:199.062667pt;}
.x5e{left:204.837333pt;}
.x15{left:212.522667pt;}
.x11{left:215.593333pt;}
.x12{left:222.234667pt;}
.xa7{left:223.704000pt;}
.x16{left:225.805333pt;}
.x63{left:226.945333pt;}
.x98{left:227.918667pt;}
.x13{left:229.009333pt;}
.x5a{left:232.286667pt;}
.x49{left:237.448000pt;}
.x53{left:240.436000pt;}
.x14{left:242.293333pt;}
.x97{left:248.317333pt;}
.x9f{left:255.060000pt;}
.xa0{left:261.037333pt;}
.x86{left:262.406667pt;}
.x66{left:269.345333pt;}
.x74{left:273.797333pt;}
.x87{left:275.689333pt;}
.x67{left:276.641333pt;}
.x75{left:281.098667pt;}
.x88{left:282.464000pt;}
.x26{left:287.164000pt;}
.x56{left:295.642667pt;}
.xa1{left:299.028000pt;}
.x27{left:300.448000pt;}
.x36{left:301.813333pt;}
.x93{left:303.329333pt;}
.x35{left:305.077333pt;}
.x28{left:307.222667pt;}
.x7d{left:315.672000pt;}
.x94{left:316.613333pt;}
.x7e{left:319.058667pt;}
.x29{left:320.506667pt;}
.xa2{left:323.021333pt;}
.x7f{left:332.342667pt;}
.x80{left:335.729333pt;}
.x8d{left:337.137333pt;}
.x81{left:349.013333pt;}
.x8e{left:350.420000pt;}
.x39{left:365.486667pt;}
.x38{left:366.401333pt;}
.x37{left:367.373333pt;}
.x8b{left:369.964000pt;}
.x82{left:372.312000pt;}
.xa3{left:377.462667pt;}
.x3a{left:381.094667pt;}
.x8c{left:383.248000pt;}
.x19{left:384.253333pt;}
.x83{left:385.596000pt;}
.x84{left:388.849333pt;}
.x1a{left:390.894667pt;}
.x1b{left:397.669333pt;}
.x77{left:400.558667pt;}
.x85{left:402.133333pt;}
.x68{left:406.430667pt;}
.x1c{left:410.952000pt;}
.x69{left:413.726667pt;}
.x76{left:417.392000pt;}
.x78{left:423.802667pt;}
.x79{left:427.120000pt;}
.x2a{left:437.880000pt;}
.x7a{left:440.402667pt;}
.x5b{left:442.901333pt;}
.x64{left:447.474667pt;}
.x2b{left:451.164000pt;}
.x2c{left:454.421333pt;}
.x3b{left:459.681333pt;}
.x2d{left:467.705333pt;}
.x73{left:471.473333pt;}
.x17{left:476.178667pt;}
.x9c{left:486.120000pt;}
.x18{left:489.462667pt;}
.x31{left:493.158667pt;}
.xa4{left:504.468000pt;}
.x32{left:506.441333pt;}
.x9d{left:510.029333pt;}
.x1d{left:525.424000pt;}
.x3e{left:527.974667pt;}
.x3f{left:529.468000pt;}
.x3d{left:534.860000pt;}
.x3c{left:535.832000pt;}
.x1e{left:538.706667pt;}
.x95{left:539.602667pt;}
.x8f{left:542.152000pt;}
.x1f{left:545.481333pt;}
.x96{left:552.885333pt;}
.x20{left:558.765333pt;}
.x5c{left:562.816000pt;}
.xb{left:563.841333pt;}
.x7b{left:569.032000pt;}
.xc{left:570.484000pt;}
.xa6{left:571.465333pt;}
.xd{left:577.258667pt;}
.x5d{left:579.181333pt;}
.xe{left:583.900000pt;}
.xf{left:594.113333pt;}
.xa5{left:596.170667pt;}
.x21{left:598.354667pt;}
.x10{left:600.756000pt;}
.x9a{left:603.026667pt;}
.x22{left:611.638667pt;}
.x43{left:614.845333pt;}
.x41{left:619.837333pt;}
.x42{left:620.846667pt;}
.x6{left:623.413317pt;}
.x9b{left:626.937333pt;}
.x40{left:628.468000pt;}
.x7c{left:634.478667pt;}
.x91{left:652.938667pt;}
.x92{left:666.222667pt;}
.x25{left:670.028000pt;}
.x2e{left:673.105333pt;}
.x2f{left:686.389333pt;}
.x99{left:690.206667pt;}
.x61{left:858.838667pt;}
.x6f{left:868.438667pt;}
.x6a{left:942.053333pt;}
.x6b{left:949.350667pt;}
.x6c{left:961.213333pt;}
.x6d{left:968.521333pt;}
}




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