
    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_1c6bc11242515d6688846b06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b7877470d2c341e246fb89d4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_aac1ee57839db1ffd600f3a5.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_f575271967f4343963faca44.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0112a1931db3d41ed31430b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131836;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_d0112a1931db3d41ed31430b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.131836;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_8b8811de680935443189ab25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_6603659d34a35baa4dd30b4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_633b5123d999b3dfb2443d63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_1bff1815579e2f32bb6f9821.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940918;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_5cb44fc5c6488195140c5617.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.845000;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_fb3e04829b75b42c999d06c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_871c788eae801457f7c8834d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666000;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:ffe;src:url('chunks/assets/font_58814e6e9985a912b6cf75c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_604182be73684bfc31acf223.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0fc3d4b7c6ca72676e5dd1f9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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:ff11;src:url('chunks/assets/font_0fc3d4b7c6ca72676e5dd1f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_9f5e2f0f821f3ea1545e0d33.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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;}
.ma{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);}
.m1d{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);}
.m27{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mc{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);}
.mb{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);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m11{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);}
.m12{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);}
.m25{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.me{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);}
.m10{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);}
.m20{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);}
.m17{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);}
.m7{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);}
.m15{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);}
.md{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);}
.m29{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);}
.m1e{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);}
.m2{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);}
.m1{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);}
.m14{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);}
.m21{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);}
.m23{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);}
.m28{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);}
.m24{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);}
.m1a{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);}
.m1c{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);}
.m26{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);}
.m6{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);}
.m16{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);}
.vf{vertical-align:-34.524000px;}
.v2{vertical-align:-17.358000px;}
.v6{vertical-align:-11.760000px;}
.v5{vertical-align:-8.970000px;}
.vb{vertical-align:-3.198000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.233699px;}
.va{vertical-align:8.964000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:41.010000px;}
.v7{vertical-align:49.434000px;}
.vd{vertical-align:65.772000px;}
.v4{vertical-align:84.312000px;}
.ve{vertical-align:100.296000px;}
.vc{vertical-align:114.216000px;}
.v8{vertical-align:125.322000px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001133px;}
.ls54{letter-spacing:0.003178px;}
.lsd{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.168813px;}
.ls4d{letter-spacing:0.542815px;}
.ls47{letter-spacing:0.632467px;}
.ls36{letter-spacing:0.695675px;}
.ls2c{letter-spacing:0.701675px;}
.ls51{letter-spacing:0.705507px;}
.ls18{letter-spacing:0.748200px;}
.ls4e{letter-spacing:0.751200px;}
.ls50{letter-spacing:0.862200px;}
.ls4c{letter-spacing:1.363258px;}
.ls3b{letter-spacing:1.414741px;}
.ls12{letter-spacing:1.420741px;}
.ls30{letter-spacing:1.444438px;}
.ls4f{letter-spacing:1.449507px;}
.ls31{letter-spacing:1.491292px;}
.ls11{letter-spacing:1.492200px;}
.ls1a{letter-spacing:1.492766px;}
.ls49{letter-spacing:1.494390px;}
.ls3a{letter-spacing:1.497292px;}
.ls4a{letter-spacing:1.498200px;}
.ls27{letter-spacing:1.498766px;}
.ls28{letter-spacing:1.510438px;}
.ls13{letter-spacing:1.791634px;}
.ls1b{letter-spacing:1.797634px;}
.ls3c{letter-spacing:2.091292px;}
.ls44{letter-spacing:3.224467px;}
.ls29{letter-spacing:3.509675px;}
.ls34{letter-spacing:3.515675px;}
.ls2d{letter-spacing:5.394571px;}
.ls2f{letter-spacing:7.924200px;}
.ls0{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls17{letter-spacing:12.339483px;}
.ls3d{letter-spacing:13.042741px;}
.ls15{letter-spacing:13.086783px;}
.ls3e{letter-spacing:13.089483px;}
.ls19{letter-spacing:13.117897px;}
.ls14{letter-spacing:13.119634px;}
.ls2b{letter-spacing:13.149483px;}
.ls16{letter-spacing:13.419634px;}
.ls57{letter-spacing:13.448400px;}
.ls56{letter-spacing:13.454400px;}
.ls53{letter-spacing:14.645022px;}
.lsf{letter-spacing:14.704798px;}
.ls8{letter-spacing:14.824349px;}
.ls9{letter-spacing:14.884124px;}
.lsc{letter-spacing:14.943900px;}
.ls7{letter-spacing:15.123227px;}
.lsb{letter-spacing:15.183002px;}
.lsa{letter-spacing:15.422105px;}
.ls46{letter-spacing:15.588088px;}
.ls43{letter-spacing:15.594088px;}
.ls3f{letter-spacing:15.616741px;}
.ls1f{letter-spacing:15.688200px;}
.ls1e{letter-spacing:15.688766px;}
.ls24{letter-spacing:15.691897px;}
.ls21{letter-spacing:15.693634px;}
.ls55{letter-spacing:15.840534px;}
.ls2a{letter-spacing:15.925200px;}
.ls23{letter-spacing:17.319483px;}
.ls26{letter-spacing:17.325483px;}
.ls4b{letter-spacing:18.069483px;}
.ls25{letter-spacing:18.097897px;}
.ls22{letter-spacing:18.099634px;}
.ls39{letter-spacing:18.495886px;}
.ls35{letter-spacing:18.499200px;}
.ls37{letter-spacing:18.822571px;}
.ls42{letter-spacing:19.123151px;}
.ls45{letter-spacing:19.128600px;}
.ls48{letter-spacing:19.423702px;}
.ls41{letter-spacing:21.399665px;}
.ls1{letter-spacing:57.415200px;}
.ls2e{letter-spacing:61.329886px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls40{letter-spacing:93.687986px;}
.ls1d{letter-spacing:94.287986px;}
.ls33{letter-spacing:94.347986px;}
.ls38{letter-spacing:95.061986px;}
.ls20{letter-spacing:95.181986px;}
.ls52{letter-spacing:702.169200px;}
.ls32{letter-spacing:724.186741px;}
.ls1c{letter-spacing:740.710741px;}
.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;}
}
.wsb{word-spacing:-99.147741px;}
.ws5f{word-spacing:-36.487951px;}
.ws6b{word-spacing:-14.943900px;}
.ws4f{word-spacing:-14.845061px;}
.ws51{word-spacing:-14.661043px;}
.ws50{word-spacing:-13.449600px;}
.wsd{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws5e{word-spacing:-9.706756px;}
.ws5d{word-spacing:-9.537943px;}
.ws5c{word-spacing:-8.246277px;}
.ws93{word-spacing:-4.315812px;}
.ws54{word-spacing:-3.287658px;}
.ws82{word-spacing:-3.108331px;}
.ws74{word-spacing:-2.689902px;}
.ws29{word-spacing:-2.510575px;}
.ws55{word-spacing:-2.391024px;}
.ws45{word-spacing:-2.331248px;}
.ws5a{word-spacing:-2.271473px;}
.ws6c{word-spacing:-2.032370px;}
.ws85{word-spacing:-1.793268px;}
.ws47{word-spacing:-1.733492px;}
.ws95{word-spacing:-1.673717px;}
.wsa3{word-spacing:-1.613941px;}
.wsbc{word-spacing:-1.560154px;}
.ws59{word-spacing:-1.554166px;}
.ws1c{word-spacing:-1.494390px;}
.ws91{word-spacing:-1.434614px;}
.ws32{word-spacing:-1.255288px;}
.ws87{word-spacing:-1.195512px;}
.ws81{word-spacing:-1.135736px;}
.wsa2{word-spacing:-1.075961px;}
.ws53{word-spacing:-1.022170px;}
.ws34{word-spacing:-1.016185px;}
.ws8a{word-spacing:-0.956410px;}
.ws90{word-spacing:-0.836858px;}
.ws5b{word-spacing:-0.777083px;}
.ws94{word-spacing:-0.717307px;}
.ws42{word-spacing:-0.657532px;}
.ws66{word-spacing:-0.597756px;}
.ws6f{word-spacing:-0.537980px;}
.ws60{word-spacing:-0.418429px;}
.ws28{word-spacing:-0.358654px;}
.wsbb{word-spacing:-0.322790px;}
.ws1b{word-spacing:-0.298878px;}
.ws38{word-spacing:-0.239102px;}
.ws13{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws52{word-spacing:-0.161395px;}
.ws2b{word-spacing:-0.119551px;}
.ws10{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.wsb2{word-spacing:-0.009610px;}
.wsb9{word-spacing:-0.009014px;}
.wsba{word-spacing:-0.003610px;}
.ws2{word-spacing:-0.003116px;}
.ws63{word-spacing:-0.001991px;}
.ws23{word-spacing:-0.000488px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.ws12{word-spacing:0.107597px;}
.ws1f{word-spacing:0.119551px;}
.wsbe{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.wsb1{word-spacing:0.215194px;}
.ws8c{word-spacing:0.229152px;}
.ws26{word-spacing:0.239102px;}
.wsbd{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.ws2c{word-spacing:0.358654px;}
.ws27{word-spacing:0.478205px;}
.ws4b{word-spacing:0.537980px;}
.ws46{word-spacing:0.657532px;}
.wsb0{word-spacing:0.699379px;}
.ws56{word-spacing:0.717307px;}
.wsa4{word-spacing:0.753178px;}
.ws8e{word-spacing:0.777083px;}
.ws8b{word-spacing:0.787549px;}
.ws8d{word-spacing:0.789938px;}
.ws37{word-spacing:0.836858px;}
.ws36{word-spacing:0.896634px;}
.ws3b{word-spacing:0.956410px;}
.ws1d{word-spacing:1.016185px;}
.ws84{word-spacing:1.135736px;}
.ws73{word-spacing:1.195512px;}
.wsb5{word-spacing:1.237363px;}
.ws41{word-spacing:1.255288px;}
.wsa0{word-spacing:1.315063px;}
.ws39{word-spacing:1.374839px;}
.ws7f{word-spacing:1.434614px;}
.ws58{word-spacing:1.494390px;}
.ws1e{word-spacing:1.554166px;}
.ws3e{word-spacing:1.613941px;}
.ws16{word-spacing:1.613952px;}
.ws14{word-spacing:1.667750px;}
.ws6d{word-spacing:1.673717px;}
.ws71{word-spacing:1.733492px;}
.ws9b{word-spacing:1.793268px;}
.ws75{word-spacing:1.912819px;}
.ws6a{word-spacing:1.972595px;}
.ws7e{word-spacing:2.032370px;}
.ws31{word-spacing:2.092146px;}
.ws40{word-spacing:2.151922px;}
.ws9c{word-spacing:2.211697px;}
.ws48{word-spacing:2.331248px;}
.ws4e{word-spacing:2.391024px;}
.ws49{word-spacing:2.450800px;}
.ws2f{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws44{word-spacing:2.630126px;}
.ws67{word-spacing:2.689902px;}
.ws9a{word-spacing:2.749678px;}
.ws86{word-spacing:2.809453px;}
.ws24{word-spacing:2.869229px;}
.wse{word-spacing:2.869236px;}
.ws3c{word-spacing:2.988780px;}
.ws4c{word-spacing:3.048556px;}
.ws70{word-spacing:3.108331px;}
.wsb7{word-spacing:3.220186px;}
.ws4a{word-spacing:3.227882px;}
.wsae{word-spacing:3.227904px;}
.wsaf{word-spacing:3.281702px;}
.ws6e{word-spacing:3.287658px;}
.wsb8{word-spacing:3.389299px;}
.ws89{word-spacing:3.466985px;}
.ws15{word-spacing:3.496896px;}
.ws33{word-spacing:3.526760px;}
.ws18{word-spacing:3.586536px;}
.ws57{word-spacing:3.646312px;}
.ws43{word-spacing:3.706087px;}
.ws92{word-spacing:3.746951px;}
.ws7a{word-spacing:3.765863px;}
.wsa6{word-spacing:3.819686px;}
.wsa1{word-spacing:4.004965px;}
.wsbf{word-spacing:4.034880px;}
.wsc1{word-spacing:4.250074px;}
.ws64{word-spacing:4.303843px;}
.ws9d{word-spacing:4.363619px;}
.ws2d{word-spacing:4.423394px;}
.ws8f{word-spacing:4.483170px;}
.ws17{word-spacing:4.572864px;}
.wsc0{word-spacing:4.626662px;}
.ws9{word-spacing:4.770079px;}
.ws7d{word-spacing:4.841824px;}
.wsa{word-spacing:4.853765px;}
.wsa5{word-spacing:4.895654px;}
.ws3d{word-spacing:5.021150px;}
.ws72{word-spacing:5.320028px;}
.ws65{word-spacing:5.499355px;}
.ws3a{word-spacing:5.559131px;}
.ws30{word-spacing:5.618906px;}
.ws3f{word-spacing:5.678682px;}
.ws4d{word-spacing:5.858009px;}
.ws80{word-spacing:5.917784px;}
.ws99{word-spacing:5.917824px;}
.ws2e{word-spacing:6.037336px;}
.ws83{word-spacing:6.276438px;}
.ws98{word-spacing:6.294413px;}
.ws7b{word-spacing:6.455765px;}
.wsb3{word-spacing:6.563405px;}
.ws35{word-spacing:6.694867px;}
.ws2a{word-spacing:6.814418px;}
.ws61{word-spacing:6.874194px;}
.ws68{word-spacing:7.113296px;}
.ws76{word-spacing:7.232848px;}
.ws21{word-spacing:7.412174px;}
.wsb6{word-spacing:7.424179px;}
.ws7{word-spacing:7.782761px;}
.ws7c{word-spacing:8.129482px;}
.wsb4{word-spacing:9.145728px;}
.ws5{word-spacing:12.176255px;}
.ws78{word-spacing:12.955613px;}
.ws69{word-spacing:14.866312px;}
.ws62{word-spacing:14.877375px;}
.ws6{word-spacing:16.109478px;}
.ws79{word-spacing:17.429110px;}
.ws77{word-spacing:17.938541px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.wsad{word-spacing:91.941466px;}
.ws97{word-spacing:101.287722px;}
.wsa8{word-spacing:101.678976px;}
.wsab{word-spacing:107.811994px;}
.wsa7{word-spacing:116.688730px;}
.wsaa{word-spacing:120.078029px;}
.ws9f{word-spacing:121.660694px;}
.wsa9{word-spacing:124.328102px;}
.ws96{word-spacing:125.250236px;}
.wsac{word-spacing:136.647936px;}
.ws9e{word-spacing:172.303171px;}
.ws88{word-spacing:389.520000px;}
._6{margin-left:-11.943245px;}
._e{margin-left:-7.280672px;}
._7{margin-left:-5.917824px;}
._1{margin-left:-4.602708px;}
._0{margin-left:-3.096367px;}
._3{margin-left:-1.506341px;}
._19{width:1.139489px;}
._8{width:2.989834px;}
._1a{width:7.198461px;}
._24{width:11.206754px;}
._4{width:12.971268px;}
._1f{width:14.104893px;}
._3a{width:15.345944px;}
._a{width:16.408512px;}
._20{width:17.466426px;}
._d{width:18.470660px;}
._c{width:19.528819px;}
._b{width:21.519331px;}
._1b{width:22.911502px;}
._11{width:23.981966px;}
._2{width:25.192966px;}
._14{width:26.994648px;}
._16{width:28.704239px;}
._5{width:30.587087px;}
._12{width:32.398375px;}
._21{width:33.653650px;}
._13{width:37.240199px;}
._15{width:38.256384px;}
._1c{width:39.571447px;}
._1e{width:41.316890px;}
._3b{width:44.545075px;}
._9{width:54.429634px;}
._39{width:61.868160px;}
._37{width:71.713267px;}
._38{width:88.767360px;}
._32{width:91.618675px;}
._1d{width:93.548814px;}
._34{width:96.030144px;}
._35{width:101.033395px;}
._31{width:104.745485px;}
._33{width:118.141286px;}
._36{width:121.369176px;}
._2e{width:153.803261px;}
._2d{width:155.081894px;}
._18{width:175.897387px;}
._17{width:178.094173px;}
._2a{width:196.579354px;}
._30{width:202.437089px;}
._28{width:223.478554px;}
._2f{width:232.045599px;}
._27{width:233.646451px;}
._26{width:252.798682px;}
._22{width:275.240525px;}
._23{width:362.091036px;}
._2c{width:371.424154px;}
._2b{width:400.744282px;}
._29{width:408.491251px;}
._f{width:691.233088px;}
._25{width:2468.093929px;}
._10{width:2492.003929px;}
.fc7{color:transparent;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(112,48,160);}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(80,109,50);}
.fc8{color:rgb(38,38,38);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:30.001050px;}
.fs5{font-size:35.865600px;}
.fsd{font-size:36.487951px;}
.fs16{font-size:38.165747px;}
.fs0{font-size:41.842800px;}
.fs13{font-size:42.003270px;}
.fsb{font-size:42.203289px;}
.fsc{font-size:45.280640px;}
.fs4{font-size:45.429600px;}
.fs12{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fse{font-size:48.357991px;}
.fs7{font-size:53.798400px;}
.fs15{font-size:53.882640px;}
.fsa{font-size:54.512694px;}
.fs10{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fsf{font-size:62.286600px;}
.fs9{font-size:64.871873px;}
.fs8{font-size:65.686109px;}
.fs11{font-size:83.686200px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:127.439256px;}
.y0{bottom:0.000000px;}
.ycd{bottom:10.036635px;}
.y16{bottom:16.623424px;}
.y19d{bottom:20.442566px;}
.ycc{bottom:22.674567px;}
.y1bb{bottom:26.834804px;}
.y19e{bottom:30.793184px;}
.y44{bottom:31.890000px;}
.ycb{bottom:36.191833px;}
.y1a4{bottom:39.043673px;}
.y1ab{bottom:39.043690px;}
.y1bc{bottom:40.614169px;}
.y1a5{bottom:46.825395px;}
.yc2{bottom:59.828091px;}
.y19f{bottom:62.993400px;}
.yd3{bottom:66.420147px;}
.yd1{bottom:66.531500px;}
.yd9{bottom:66.642852px;}
.y1a6{bottom:70.451813px;}
.yd2{bottom:77.302043px;}
.yd0{bottom:77.413396px;}
.yd8{bottom:77.519202px;}
.y9f{bottom:77.533120px;}
.y9b{bottom:77.744226px;}
.y1ac{bottom:78.327285px;}
.yc3{bottom:79.721185px;}
.y18c{bottom:91.665000px;}
.y1a7{bottom:94.078230px;}
.y1a0{bottom:95.193598px;}
.y1bd{bottom:97.696080px;}
.yc9{bottom:99.611725px;}
.y15b{bottom:100.863000px;}
.yc4{bottom:101.148174px;}
.yf6{bottom:101.893500px;}
.y1c9{bottom:104.106000px;}
.y14{bottom:104.646000px;}
.y43{bottom:105.114000px;}
.y7a{bottom:107.193000px;}
.y8f{bottom:107.641500px;}
.yd5{bottom:108.074287px;}
.y1ad{bottom:109.829175px;}
.y18b{bottom:110.494500px;}
.y145{bottom:111.175500px;}
.yc8{bottom:112.249028px;}
.y1a8{bottom:117.704648px;}
.y218{bottom:118.102500px;}
.yd4{bottom:118.956211px;}
.y15a{bottom:119.692500px;}
.yf5{bottom:120.723000px;}
.yc5{bottom:121.592457px;}
.y13{bottom:122.535000px;}
.y1c8{bottom:122.935500px;}
.y42{bottom:123.943500px;}
.yc7{bottom:124.999656px;}
.y79{bottom:126.022500px;}
.y8e{bottom:126.471000px;}
.y1a1{bottom:127.393806px;}
.y1b9{bottom:129.324000px;}
.y144{bottom:130.005000px;}
.y217{bottom:135.363000px;}
.y18a{bottom:138.424500px;}
.y159{bottom:138.522000px;}
.ya0{bottom:139.918474px;}
.y12{bottom:140.422500px;}
.y11b{bottom:140.817000px;}
.ya1{bottom:141.225093px;}
.y1a9{bottom:141.331065px;}
.y9c{bottom:141.578091px;}
.y1c7{bottom:141.765000px;}
.yc0{bottom:142.474374px;}
.yb3{bottom:142.578000px;}
.y41{bottom:142.773000px;}
.y187{bottom:144.615000px;}
.y78{bottom:144.852000px;}
.y8d{bottom:145.300500px;}
.yf4{bottom:147.024000px;}
.y1b8{bottom:148.153500px;}
.y143{bottom:148.834500px;}
.ycf{bottom:149.070888px;}
.yd7{bottom:149.177782px;}
.y189{bottom:151.758000px;}
.y216{bottom:152.623500px;}
.y1be{bottom:154.778017px;}
.y182{bottom:154.867500px;}
.y158{bottom:157.351500px;}
.y11{bottom:158.310000px;}
.y1a2{bottom:159.594013px;}
.y11a{bottom:159.646500px;}
.yce{bottom:159.947809px;}
.y185{bottom:159.990000px;}
.yd6{bottom:160.059162px;}
.yca{bottom:160.388760px;}
.yb2{bottom:161.407500px;}
.y40{bottom:161.602500px;}
.yc1{bottom:163.025577px;}
.y77{bottom:163.681500px;}
.y8c{bottom:164.130000px;}
.y186{bottom:164.983500px;}
.yf3{bottom:165.853500px;}
.y1b7{bottom:166.983000px;}
.y142{bottom:167.664000px;}
.y184{bottom:168.955500px;}
.y215{bottom:169.884000px;}
.y188{bottom:171.006000px;}
.y157{bottom:176.181000px;}
.y10{bottom:176.199000px;}
.y183{bottom:177.922500px;}
.y1c6{bottom:178.320000px;}
.y119{bottom:178.476000px;}
.yb1{bottom:180.237000px;}
.y3f{bottom:180.432000px;}
.y76{bottom:182.511000px;}
.y8b{bottom:182.959500px;}
.yf2{bottom:184.683000px;}
.y1b6{bottom:185.812500px;}
.y141{bottom:186.493500px;}
.y214{bottom:187.144500px;}
.y1a3{bottom:191.794221px;}
.yf{bottom:194.086500px;}
.y156{bottom:195.010500px;}
.y118{bottom:197.305500px;}
.y181{bottom:197.647500px;}
.y1c2{bottom:198.529605px;}
.yb0{bottom:199.066500px;}
.y3e{bottom:199.261500px;}
.y1ba{bottom:200.749500px;}
.y75{bottom:201.340500px;}
.y8a{bottom:201.789000px;}
.yf1{bottom:203.512500px;}
.y213{bottom:204.405000px;}
.y1b5{bottom:204.642000px;}
.y140{bottom:205.323000px;}
.yc6{bottom:205.445665px;}
.y1e0{bottom:206.719500px;}
.y1bf{bottom:211.859929px;}
.ye{bottom:211.974000px;}
.y155{bottom:213.840000px;}
.y117{bottom:216.135000px;}
.ybe{bottom:216.330212px;}
.y180{bottom:216.477000px;}
.yaf{bottom:217.896000px;}
.y3d{bottom:218.091000px;}
.y74{bottom:220.170000px;}
.y89{bottom:220.618500px;}
.y212{bottom:221.664000px;}
.yf0{bottom:222.342000px;}
.y1b4{bottom:223.471500px;}
.y13f{bottom:224.152500px;}
.ybd{bottom:228.967500px;}
.y1c3{bottom:229.707651px;}
.yd{bottom:229.863000px;}
.y154{bottom:232.669500px;}
.y1df{bottom:233.260500px;}
.y116{bottom:234.964500px;}
.y17f{bottom:235.306500px;}
.yae{bottom:236.725500px;}
.y3c{bottom:236.920500px;}
.y211{bottom:238.924500px;}
.y73{bottom:238.999500px;}
.y88{bottom:239.446500px;}
.yef{bottom:241.171500px;}
.y1b3{bottom:242.301000px;}
.ybc{bottom:242.484307px;}
.y13e{bottom:242.982000px;}
.y1de{bottom:250.834500px;}
.y153{bottom:251.499000px;}
.y115{bottom:253.794000px;}
.y17e{bottom:254.136000px;}
.yad{bottom:255.555000px;}
.y3b{bottom:255.750000px;}
.y210{bottom:256.185000px;}
.y72{bottom:257.829000px;}
.y87{bottom:258.276000px;}
.ybf{bottom:258.859839px;}
.yee{bottom:260.001000px;}
.y1b2{bottom:261.130500px;}
.y13d{bottom:261.811500px;}
.y1c4{bottom:262.536951px;}
.y1c0{bottom:268.941853px;}
.y152{bottom:270.328500px;}
.y114{bottom:272.623500px;}
.y17d{bottom:272.965500px;}
.y20f{bottom:273.445500px;}
.yac{bottom:274.384500px;}
.y3a{bottom:274.579500px;}
.y71{bottom:276.658500px;}
.y86{bottom:277.105500px;}
.y1dd{bottom:277.375500px;}
.yed{bottom:278.830500px;}
.y1b1{bottom:279.960000px;}
.y13c{bottom:280.641000px;}
.y151{bottom:289.158000px;}
.y20e{bottom:290.706000px;}
.y113{bottom:291.453000px;}
.y17c{bottom:291.795000px;}
.yab{bottom:293.214000px;}
.y39{bottom:293.409000px;}
.y1dc{bottom:294.949500px;}
.y1c5{bottom:295.366251px;}
.y70{bottom:295.488000px;}
.y85{bottom:295.935000px;}
.yc{bottom:297.166500px;}
.yec{bottom:297.660000px;}
.y13b{bottom:299.470500px;}
.y1b0{bottom:303.273000px;}
.y20d{bottom:307.966500px;}
.y150{bottom:307.987500px;}
.y112{bottom:310.282500px;}
.y17b{bottom:310.624500px;}
.yaa{bottom:312.043500px;}
.y38{bottom:312.238500px;}
.y1db{bottom:312.523500px;}
.y6f{bottom:314.317500px;}
.y84{bottom:314.764500px;}
.yb{bottom:315.054000px;}
.yeb{bottom:316.489500px;}
.y13a{bottom:318.300000px;}
.y20c{bottom:325.227000px;}
.y1c1{bottom:326.023777px;}
.y14f{bottom:326.817000px;}
.ya9{bottom:330.873000px;}
.y37{bottom:331.068000px;}
.ya{bottom:332.943000px;}
.y6e{bottom:333.145500px;}
.y83{bottom:333.594000px;}
.y17a{bottom:333.937500px;}
.yea{bottom:335.319000px;}
.y111{bottom:336.583500px;}
.y1af{bottom:337.009500px;}
.y139{bottom:337.129500px;}
.y1da{bottom:339.064500px;}
.y20b{bottom:342.487500px;}
.y14e{bottom:345.646500px;}
.ya8{bottom:349.702500px;}
.y36{bottom:349.897500px;}
.y9{bottom:350.830500px;}
.y6d{bottom:351.975000px;}
.y82{bottom:352.423500px;}
.ye9{bottom:354.148500px;}
.y110{bottom:355.413000px;}
.y138{bottom:355.959000px;}
.y1ae{bottom:356.242500px;}
.y1d9{bottom:356.638500px;}
.y20a{bottom:359.748000px;}
.y14d{bottom:364.476000px;}
.y179{bottom:367.561500px;}
.ya7{bottom:368.532000px;}
.y35{bottom:368.727000px;}
.y6c{bottom:370.804500px;}
.y81{bottom:371.253000px;}
.ye8{bottom:372.978000px;}
.y1d8{bottom:374.212500px;}
.y10f{bottom:374.242500px;}
.y137{bottom:374.788500px;}
.y1aa{bottom:375.474000px;}
.y209{bottom:377.007000px;}
.y8{bottom:379.179000px;}
.y14c{bottom:383.305500px;}
.y178{bottom:386.391000px;}
.y34{bottom:387.556500px;}
.y6b{bottom:389.634000px;}
.y80{bottom:390.082500px;}
.y1d7{bottom:391.786500px;}
.ye7{bottom:391.806000px;}
.y10e{bottom:393.072000px;}
.y136{bottom:393.618000px;}
.y208{bottom:394.267500px;}
.y19c{bottom:397.903500px;}
.ya6{bottom:402.097500px;}
.y14b{bottom:402.135000px;}
.y177{bottom:405.220500px;}
.y7{bottom:406.033500px;}
.y33{bottom:406.384500px;}
.y6a{bottom:408.463500px;}
.y7f{bottom:408.912000px;}
.ye6{bottom:410.635500px;}
.y207{bottom:411.528000px;}
.y10d{bottom:411.901500px;}
.y135{bottom:412.447500px;}
.y14a{bottom:420.964500px;}
.ya5{bottom:421.330500px;}
.y6{bottom:423.921000px;}
.y176{bottom:424.050000px;}
.y32{bottom:425.214000px;}
.y69{bottom:427.293000px;}
.y7e{bottom:427.741500px;}
.y206{bottom:428.788500px;}
.ye5{bottom:429.465000px;}
.y134{bottom:431.277000px;}
.y10c{bottom:438.202500px;}
.y149{bottom:439.794000px;}
.ya4{bottom:440.563500px;}
.y5{bottom:441.810000px;}
.y175{bottom:442.879500px;}
.y31{bottom:444.043500px;}
.y205{bottom:446.049000px;}
.y68{bottom:446.122500px;}
.y7d{bottom:446.571000px;}
.ye4{bottom:448.294500px;}
.y133{bottom:450.106500px;}
.y10b{bottom:457.032000px;}
.y4{bottom:459.697500px;}
.ya3{bottom:459.795000px;}
.y174{bottom:461.709000px;}
.y30{bottom:462.873000px;}
.y204{bottom:463.309500px;}
.y1d6{bottom:464.952000px;}
.y7c{bottom:465.400500px;}
.ye3{bottom:467.124000px;}
.y132{bottom:468.934500px;}
.y67{bottom:469.435500px;}
.y148{bottom:473.359500px;}
.y10a{bottom:475.861500px;}
.y3{bottom:477.585000px;}
.y9d{bottom:479.028000px;}
.ya2{bottom:479.178000px;}
.y173{bottom:480.538500px;}
.y203{bottom:480.570000px;}
.y2f{bottom:481.702500px;}
.y1d5{bottom:483.781500px;}
.y7b{bottom:484.230000px;}
.ye2{bottom:485.953500px;}
.y131{bottom:487.764000px;}
.y2{bottom:495.474000px;}
.y202{bottom:497.830500px;}
.y109{bottom:499.174500px;}
.y172{bottom:499.368000px;}
.y9a{bottom:501.457500px;}
.y9e{bottom:501.607500px;}
.y1d4{bottom:502.611000px;}
.y66{bottom:503.059500px;}
.ye1{bottom:504.783000px;}
.y2e{bottom:505.015500px;}
.y130{bottom:506.593500px;}
.y1{bottom:513.361500px;}
.y201{bottom:515.089500px;}
.y171{bottom:518.197500px;}
.y1d3{bottom:521.440500px;}
.y65{bottom:521.889000px;}
.ye0{bottom:523.612500px;}
.y12f{bottom:525.423000px;}
.y200{bottom:532.350000px;}
.y108{bottom:532.798500px;}
.y170{bottom:537.027000px;}
.y1d2{bottom:540.270000px;}
.y64{bottom:540.718500px;}
.ydf{bottom:542.442000px;}
.y12e{bottom:544.252500px;}
.y1ff{bottom:549.610500px;}
.y107{bottom:551.628000px;}
.y16f{bottom:555.856500px;}
.y1d1{bottom:559.099500px;}
.y63{bottom:559.548000px;}
.y1fe{bottom:566.871000px;}
.y12d{bottom:567.565500px;}
.yde{bottom:568.743000px;}
.y106{bottom:570.457500px;}
.y16e{bottom:574.684500px;}
.y1d0{bottom:577.929000px;}
.y62{bottom:578.377500px;}
.y2d{bottom:580.165500px;}
.y1fd{bottom:584.131500px;}
.ydd{bottom:587.572500px;}
.y105{bottom:589.287000px;}
.y16d{bottom:593.514000px;}
.y1cf{bottom:596.758500px;}
.y61{bottom:597.207000px;}
.y2c{bottom:599.623500px;}
.y1fc{bottom:601.392000px;}
.y12c{bottom:603.625500px;}
.ydc{bottom:606.402000px;}
.y104{bottom:608.116500px;}
.y16c{bottom:612.343500px;}
.y1ce{bottom:615.588000px;}
.y60{bottom:616.036500px;}
.y1fb{bottom:618.652500px;}
.y12b{bottom:622.455000px;}
.ydb{bottom:625.231500px;}
.y103{bottom:626.946000px;}
.y16b{bottom:631.173000px;}
.y1cd{bottom:634.417500px;}
.y5f{bottom:634.866000px;}
.y1fa{bottom:635.913000px;}
.y2b{bottom:637.012500px;}
.y12a{bottom:641.284500px;}
.y102{bottom:645.775500px;}
.y16a{bottom:650.002500px;}
.y1f9{bottom:653.173500px;}
.y1cc{bottom:653.247000px;}
.y5e{bottom:653.695500px;}
.y2a{bottom:656.469000px;}
.yda{bottom:658.798500px;}
.y129{bottom:660.114000px;}
.y101{bottom:664.603500px;}
.y19b{bottom:666.370500px;}
.y169{bottom:668.832000px;}
.y1f8{bottom:670.432500px;}
.y1f7{bottom:670.434000px;}
.y1cb{bottom:672.076500px;}
.y5d{bottom:672.525000px;}
.y29{bottom:675.927000px;}
.y128{bottom:678.943500px;}
.ybb{bottom:681.226500px;}
.y19a{bottom:682.807500px;}
.y168{bottom:687.661500px;}
.y1f6{bottom:687.693000px;}
.y100{bottom:687.916500px;}
.y99{bottom:690.906000px;}
.y5c{bottom:691.354500px;}
.y28{bottom:695.383500px;}
.y127{bottom:697.773000px;}
.y1f5{bottom:704.953500px;}
.y199{bottom:706.747500px;}
.y98{bottom:709.735500px;}
.y5b{bottom:710.184000px;}
.y167{bottom:712.876500px;}
.y27{bottom:714.841500px;}
.y126{bottom:716.602500px;}
.yff{bottom:721.540500px;}
.y198{bottom:723.186000px;}
.y1f4{bottom:726.697500px;}
.y97{bottom:728.565000px;}
.y5a{bottom:729.013500px;}
.y166{bottom:731.706000px;}
.y26{bottom:734.298000px;}
.y125{bottom:739.914000px;}
.yfe{bottom:740.370000px;}
.y197{bottom:747.126000px;}
.y96{bottom:747.394500px;}
.y59{bottom:747.843000px;}
.y165{bottom:750.535500px;}
.y25{bottom:753.754500px;}
.yfd{bottom:759.199500px;}
.y1f3{bottom:762.381000px;}
.y196{bottom:763.564500px;}
.y124{bottom:765.573000px;}
.y95{bottom:766.224000px;}
.y58{bottom:766.671000px;}
.y24{bottom:773.212500px;}
.y123{bottom:775.825500px;}
.yfc{bottom:778.029000px;}
.y1f2{bottom:779.955000px;}
.y94{bottom:785.053500px;}
.y57{bottom:785.500500px;}
.y195{bottom:787.503000px;}
.y23{bottom:792.669000px;}
.y164{bottom:793.822500px;}
.yfb{bottom:796.858500px;}
.y1f1{bottom:797.529000px;}
.y93{bottom:803.883000px;}
.y194{bottom:803.941500px;}
.y56{bottom:804.330000px;}
.y1ca{bottom:808.365000px;}
.y122{bottom:809.112000px;}
.y147{bottom:811.204500px;}
.y22{bottom:812.125500px;}
.y1f0{bottom:815.103000px;}
.yfa{bottom:815.688000px;}
.y92{bottom:822.712500px;}
.y55{bottom:823.159500px;}
.y163{bottom:825.441000px;}
.y193{bottom:827.881500px;}
.y121{bottom:827.941500px;}
.y146{bottom:830.034000px;}
.y1ef{bottom:832.677000px;}
.yf9{bottom:834.517500px;}
.y91{bottom:841.540500px;}
.y54{bottom:841.989000px;}
.y192{bottom:844.320000px;}
.y120{bottom:846.771000px;}
.y1ee{bottom:850.251000px;}
.y21{bottom:850.711500px;}
.yf8{bottom:853.347000px;}
.y162{bottom:860.370000px;}
.y53{bottom:860.818500px;}
.y225{bottom:862.387500px;}
.y90{bottom:864.853500px;}
.y11f{bottom:865.600500px;}
.y20{bottom:866.851500px;}
.y1ed{bottom:867.825000px;}
.y191{bottom:868.260000px;}
.yf7{bottom:872.176500px;}
.y161{bottom:879.199500px;}
.y52{bottom:879.648000px;}
.y190{bottom:884.698500px;}
.y1ec{bottom:885.399000px;}
.y1f{bottom:887.331000px;}
.y11e{bottom:888.913500px;}
.y224{bottom:896.908500px;}
.y160{bottom:898.029000px;}
.y51{bottom:898.477500px;}
.y1e{bottom:899.130000px;}
.y1eb{bottom:902.973000px;}
.y18f{bottom:908.637000px;}
.y11d{bottom:915.963000px;}
.y15f{bottom:916.858500px;}
.y50{bottom:917.307000px;}
.y1d{bottom:919.609500px;}
.y1ea{bottom:920.547000px;}
.y18e{bottom:925.075500px;}
.y1c{bottom:931.410000px;}
.y223{bottom:932.998500px;}
.y15e{bottom:935.688000px;}
.y4f{bottom:936.136500px;}
.y1e9{bottom:938.121000px;}
.y222{bottom:950.259000px;}
.y11c{bottom:950.482500px;}
.y1b{bottom:951.888000px;}
.y15d{bottom:954.517500px;}
.y4e{bottom:954.966000px;}
.y1e8{bottom:955.696500px;}
.y18d{bottom:956.695500px;}
.y221{bottom:967.519500px;}
.yba{bottom:969.312000px;}
.y1e7{bottom:973.270500px;}
.y4d{bottom:973.795500px;}
.y15c{bottom:977.830500px;}
.y220{bottom:984.780000px;}
.yb9{bottom:988.141500px;}
.y1e6{bottom:990.844500px;}
.y4c{bottom:992.625000px;}
.y1a{bottom:996.565500px;}
.y21e{bottom:1002.039000px;}
.y21f{bottom:1002.040500px;}
.yb8{bottom:1006.971000px;}
.y1e5{bottom:1008.418500px;}
.y4b{bottom:1011.454500px;}
.y21d{bottom:1019.299500px;}
.yb7{bottom:1025.800500px;}
.y1e4{bottom:1025.992500px;}
.y4a{bottom:1030.284000px;}
.y19{bottom:1036.485000px;}
.y21c{bottom:1036.560000px;}
.y1e3{bottom:1043.566500px;}
.yb6{bottom:1044.630000px;}
.y49{bottom:1049.113500px;}
.y21b{bottom:1053.820500px;}
.y1e2{bottom:1061.140500px;}
.yb5{bottom:1063.459500px;}
.y18{bottom:1064.728500px;}
.y48{bottom:1067.943000px;}
.y21a{bottom:1071.081000px;}
.yb4{bottom:1082.289000px;}
.y1e1{bottom:1083.544500px;}
.y47{bottom:1086.772500px;}
.y219{bottom:1088.341500px;}
.y17{bottom:1092.972000px;}
.y46{bottom:1105.602000px;}
.y15{bottom:1136.460000px;}
.y45{bottom:1168.366500px;}
.h24{height:2.391024px;}
.h9{height:26.110157px;}
.h1d{height:27.829189px;}
.h1a{height:27.864822px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h2b{height:31.290158px;}
.h25{height:33.299897px;}
.h19{height:34.579551px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.h1b{height:36.291970px;}
.h1c{height:36.929638px;}
.h1e{height:36.941321px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h30{height:39.434227px;}
.h2f{height:39.805682px;}
.h2c{height:41.482876px;}
.h22{height:42.043500px;}
.hd{height:43.038432px;}
.h18{height:43.213035px;}
.he{height:43.516637px;}
.h2a{height:43.808098px;}
.h6{height:43.815515px;}
.h1f{height:46.714950px;}
.h4{height:50.930649px;}
.h17{height:54.219901px;}
.h8{height:54.405312px;}
.h28{height:55.001897px;}
.h2e{height:56.197910px;}
.h14{height:64.523440px;}
.h26{height:65.024177px;}
.h11{height:65.333302px;}
.h15{height:68.704562px;}
.h12{height:69.567001px;}
.h7{height:77.469696px;}
.h5{height:86.403815px;}
.h20{height:86.703024px;}
.h21{height:127.713024px;}
.h23{height:128.085024px;}
.h27{height:133.368749px;}
.h13{height:165.507952px;}
.h10{height:165.806320px;}
.h29{height:241.512990px;}
.h16{height:267.432208px;}
.h2d{height:361.460465px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:188.585624px;}
.w2{width:199.400578px;}
.w6{width:288.766575px;}
.w4{width:288.782788px;}
.w7{width:471.471977px;}
.w5{width:542.193208px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x95{left:16.379316px;}
.x35{left:19.368304px;}
.x59{left:20.515491px;}
.x57{left:22.931664px;}
.x58{left:26.228801px;}
.x94{left:28.698806px;}
.xa0{left:36.749956px;}
.x33{left:44.491446px;}
.x9f{left:51.904449px;}
.x1{left:53.574000px;}
.x32{left:55.612882px;}
.x2{left:57.836618px;}
.x9e{left:60.632315px;}
.x56{left:63.268365px;}
.xa2{left:70.370453px;}
.x37{left:82.149580px;}
.xa5{left:85.848000px;}
.x5a{left:106.899897px;}
.xa1{left:114.050049px;}
.x96{left:118.797948px;}
.x5b{left:124.481181px;}
.x5c{left:125.804048px;}
.x61{left:127.340703px;}
.x5d{left:133.825865px;}
.x36{left:146.498813px;}
.x5e{left:179.106203px;}
.x60{left:183.502393px;}
.x5f{left:184.820815px;}
.x62{left:191.083816px;}
.x41{left:208.785146px;}
.x42{left:229.991568px;}
.xa6{left:238.488000px;}
.x46{left:239.992581px;}
.x44{left:244.059716px;}
.x48{left:246.367505px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x47{left:258.237681px;}
.x45{left:262.633300px;}
.x4{left:269.914500px;}
.x2d{left:273.070500px;}
.x43{left:276.594565px;}
.x8{left:281.479500px;}
.x22{left:283.078500px;}
.x8d{left:293.199000px;}
.x23{left:298.021500px;}
.x80{left:305.335500px;}
.x39{left:306.790500px;}
.x6{left:308.182500px;}
.xa3{left:309.936000px;}
.x81{left:312.807000px;}
.x4e{left:314.842685px;}
.x7{left:322.365000px;}
.x25{left:325.705500px;}
.x4f{left:331.760870px;}
.x50{left:333.080406px;}
.x54{left:334.617047px;}
.x26{left:340.650000px;}
.x8f{left:349.956000px;}
.x27{left:351.081000px;}
.x49{left:354.733443px;}
.x28{left:358.552500px;}
.x74{left:359.806500px;}
.x90{left:361.041000px;}
.x64{left:368.313000px;}
.x86{left:370.492500px;}
.x6f{left:376.156500px;}
.x97{left:384.232500px;}
.x51{left:386.381990px;}
.x77{left:388.332000px;}
.x1c{left:389.518500px;}
.x53{left:390.777636px;}
.x52{left:392.097173px;}
.xa4{left:393.534000px;}
.x6b{left:396.169500px;}
.x55{left:398.363518px;}
.x6d{left:402.355500px;}
.x17{left:404.220000px;}
.x93{left:408.091500px;}
.x3e{left:410.370000px;}
.x18{left:411.691500px;}
.x3c{left:416.997000px;}
.x9b{left:420.577500px;}
.x3d{left:425.214000px;}
.x7a{left:428.079000px;}
.x7c{left:431.242500px;}
.x7b{left:435.552000px;}
.x7d{left:438.714000px;}
.x8a{left:441.997500px;}
.x78{left:443.238000px;}
.x15{left:445.246500px;}
.x4d{left:447.052351px;}
.x7e{left:448.080000px;}
.x16{left:452.719500px;}
.x9{left:454.911000px;}
.xa{left:462.384000px;}
.x6e{left:465.105000px;}
.x4b{left:470.796163px;}
.x75{left:473.338500px;}
.x4c{left:478.266228px;}
.x4a{left:480.027527px;}
.x88{left:481.785000px;}
.x34{left:489.052500px;}
.x2e{left:496.903500px;}
.x82{left:499.666500px;}
.x8b{left:501.840000px;}
.x83{left:507.138000px;}
.x29{left:508.720500px;}
.x2f{left:511.846500px;}
.x2a{left:516.192000px;}
.x8c{left:518.601000px;}
.x65{left:520.272000px;}
.x68{left:522.262500px;}
.x1a{left:535.477500px;}
.x1b{left:550.420500px;}
.x91{left:566.137500px;}
.x7f{left:571.891500px;}
.x89{left:593.389500px;}
.x72{left:596.667000px;}
.x84{left:602.092500px;}
.x85{left:609.564000px;}
.x92{left:614.287500px;}
.x66{left:621.621000px;}
.x38{left:622.947000px;}
.xf{left:625.476000px;}
.x8e{left:627.024000px;}
.x2b{left:630.685500px;}
.x10{left:632.947500px;}
.x2c{left:638.157000px;}
.x69{left:641.097000px;}
.x70{left:643.567500px;}
.x19{left:646.830000px;}
.x11{left:654.571500px;}
.x12{left:662.043000px;}
.x3f{left:670.218000px;}
.x21{left:677.967000px;}
.x30{left:680.221500px;}
.x98{left:684.037500px;}
.x40{left:685.161000px;}
.x1f{left:689.596500px;}
.xb{left:693.538500px;}
.x31{left:695.164500px;}
.x71{left:698.473500px;}
.xc{left:701.010000px;}
.x20{left:704.541000px;}
.x67{left:711.636000px;}
.x73{left:717.891000px;}
.x76{left:727.909500px;}
.x6c{left:729.102000px;}
.x63{left:739.011000px;}
.x3a{left:742.890000px;}
.x3b{left:749.616000px;}
.x87{left:769.917000px;}
.x79{left:784.008000px;}
.x9c{left:787.452000px;}
.x99{left:794.323500px;}
.x9d{left:799.743000px;}
.xd{left:805.555500px;}
.x9a{left:806.614500px;}
.xe{left:813.027000px;}
.x24{left:817.116000px;}
.x1d{left:819.003000px;}
.x13{left:824.667000px;}
.x14{left:832.138500px;}
.x1e{left:833.947500px;}
.x6a{left:837.717000px;}
@media print{
.vf{vertical-align:-30.688000pt;}
.v2{vertical-align:-15.429333pt;}
.v6{vertical-align:-10.453333pt;}
.v5{vertical-align:-7.973333pt;}
.vb{vertical-align:-2.842667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.763288pt;}
.va{vertical-align:7.968000pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:36.453333pt;}
.v7{vertical-align:43.941333pt;}
.vd{vertical-align:58.464000pt;}
.v4{vertical-align:74.944000pt;}
.ve{vertical-align:89.152000pt;}
.vc{vertical-align:101.525333pt;}
.v8{vertical-align:111.397333pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.001007pt;}
.ls54{letter-spacing:0.002825pt;}
.lsd{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.150056pt;}
.ls4d{letter-spacing:0.482502pt;}
.ls47{letter-spacing:0.562193pt;}
.ls36{letter-spacing:0.618378pt;}
.ls2c{letter-spacing:0.623711pt;}
.ls51{letter-spacing:0.627118pt;}
.ls18{letter-spacing:0.665067pt;}
.ls4e{letter-spacing:0.667733pt;}
.ls50{letter-spacing:0.766400pt;}
.ls4c{letter-spacing:1.211785pt;}
.ls3b{letter-spacing:1.257548pt;}
.ls12{letter-spacing:1.262881pt;}
.ls30{letter-spacing:1.283945pt;}
.ls4f{letter-spacing:1.288451pt;}
.ls31{letter-spacing:1.325593pt;}
.ls11{letter-spacing:1.326400pt;}
.ls1a{letter-spacing:1.326903pt;}
.ls49{letter-spacing:1.328347pt;}
.ls3a{letter-spacing:1.330926pt;}
.ls4a{letter-spacing:1.331733pt;}
.ls27{letter-spacing:1.332237pt;}
.ls28{letter-spacing:1.342612pt;}
.ls13{letter-spacing:1.592563pt;}
.ls1b{letter-spacing:1.597897pt;}
.ls3c{letter-spacing:1.858926pt;}
.ls44{letter-spacing:2.866193pt;}
.ls29{letter-spacing:3.119711pt;}
.ls34{letter-spacing:3.125044pt;}
.ls2d{letter-spacing:4.795174pt;}
.ls2f{letter-spacing:7.043733pt;}
.ls0{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls17{letter-spacing:10.968429pt;}
.ls3d{letter-spacing:11.593548pt;}
.ls15{letter-spacing:11.632696pt;}
.ls3e{letter-spacing:11.635096pt;}
.ls19{letter-spacing:11.660353pt;}
.ls14{letter-spacing:11.661897pt;}
.ls2b{letter-spacing:11.688429pt;}
.ls16{letter-spacing:11.928563pt;}
.ls57{letter-spacing:11.954133pt;}
.ls56{letter-spacing:11.959467pt;}
.ls53{letter-spacing:13.017797pt;}
.lsf{letter-spacing:13.070931pt;}
.ls8{letter-spacing:13.177199pt;}
.ls9{letter-spacing:13.230333pt;}
.lsc{letter-spacing:13.283467pt;}
.ls7{letter-spacing:13.442868pt;}
.lsb{letter-spacing:13.496002pt;}
.lsa{letter-spacing:13.708538pt;}
.ls46{letter-spacing:13.856078pt;}
.ls43{letter-spacing:13.861411pt;}
.ls3f{letter-spacing:13.881548pt;}
.ls1f{letter-spacing:13.945067pt;}
.ls1e{letter-spacing:13.945570pt;}
.ls24{letter-spacing:13.948353pt;}
.ls21{letter-spacing:13.949897pt;}
.ls55{letter-spacing:14.080475pt;}
.ls2a{letter-spacing:14.155733pt;}
.ls23{letter-spacing:15.395096pt;}
.ls26{letter-spacing:15.400429pt;}
.ls4b{letter-spacing:16.061762pt;}
.ls25{letter-spacing:16.087020pt;}
.ls22{letter-spacing:16.088563pt;}
.ls39{letter-spacing:16.440787pt;}
.ls35{letter-spacing:16.443733pt;}
.ls37{letter-spacing:16.731174pt;}
.ls42{letter-spacing:16.998356pt;}
.ls45{letter-spacing:17.003200pt;}
.ls48{letter-spacing:17.265513pt;}
.ls41{letter-spacing:19.021924pt;}
.ls1{letter-spacing:51.035733pt;}
.ls2e{letter-spacing:54.515454pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls40{letter-spacing:83.278210pt;}
.ls1d{letter-spacing:83.811543pt;}
.ls33{letter-spacing:83.864877pt;}
.ls38{letter-spacing:84.499543pt;}
.ls20{letter-spacing:84.606210pt;}
.ls52{letter-spacing:624.150400pt;}
.ls32{letter-spacing:643.721548pt;}
.ls1c{letter-spacing:658.409548pt;}
.wsb{word-spacing:-88.131325pt;}
.ws5f{word-spacing:-32.433734pt;}
.ws6b{word-spacing:-13.283467pt;}
.ws4f{word-spacing:-13.195609pt;}
.ws51{word-spacing:-13.032039pt;}
.ws50{word-spacing:-11.955200pt;}
.wsd{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws5e{word-spacing:-8.628228pt;}
.ws5d{word-spacing:-8.478172pt;}
.ws5c{word-spacing:-7.330024pt;}
.ws93{word-spacing:-3.836277pt;}
.ws54{word-spacing:-2.922363pt;}
.ws82{word-spacing:-2.762961pt;}
.ws74{word-spacing:-2.391024pt;}
.ws29{word-spacing:-2.231622pt;}
.ws55{word-spacing:-2.125355pt;}
.ws45{word-spacing:-2.072221pt;}
.ws5a{word-spacing:-2.019087pt;}
.ws6c{word-spacing:-1.806551pt;}
.ws85{word-spacing:-1.594016pt;}
.ws47{word-spacing:-1.540882pt;}
.ws95{word-spacing:-1.487748pt;}
.wsa3{word-spacing:-1.434614pt;}
.wsbc{word-spacing:-1.386803pt;}
.ws59{word-spacing:-1.381481pt;}
.ws1c{word-spacing:-1.328347pt;}
.ws91{word-spacing:-1.275213pt;}
.ws32{word-spacing:-1.115811pt;}
.ws87{word-spacing:-1.062677pt;}
.ws81{word-spacing:-1.009543pt;}
.wsa2{word-spacing:-0.956410pt;}
.ws53{word-spacing:-0.908595pt;}
.ws34{word-spacing:-0.903276pt;}
.ws8a{word-spacing:-0.850142pt;}
.ws90{word-spacing:-0.743874pt;}
.ws5b{word-spacing:-0.690740pt;}
.ws94{word-spacing:-0.637606pt;}
.ws42{word-spacing:-0.584473pt;}
.ws66{word-spacing:-0.531339pt;}
.ws6f{word-spacing:-0.478205pt;}
.ws60{word-spacing:-0.371937pt;}
.ws28{word-spacing:-0.318803pt;}
.wsbb{word-spacing:-0.286925pt;}
.ws1b{word-spacing:-0.265669pt;}
.ws38{word-spacing:-0.212535pt;}
.ws13{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws52{word-spacing:-0.143462pt;}
.ws2b{word-spacing:-0.106268pt;}
.ws10{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047821pt;}
.wsb2{word-spacing:-0.008542pt;}
.wsb9{word-spacing:-0.008013pt;}
.wsba{word-spacing:-0.003209pt;}
.ws2{word-spacing:-0.002770pt;}
.ws63{word-spacing:-0.001770pt;}
.ws23{word-spacing:-0.000434pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.ws12{word-spacing:0.095642pt;}
.ws1f{word-spacing:0.106268pt;}
.wsbe{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.wsb1{word-spacing:0.191283pt;}
.ws8c{word-spacing:0.203691pt;}
.ws26{word-spacing:0.212535pt;}
.wsbd{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.ws2c{word-spacing:0.318803pt;}
.ws27{word-spacing:0.425071pt;}
.ws4b{word-spacing:0.478205pt;}
.ws46{word-spacing:0.584473pt;}
.wsb0{word-spacing:0.621670pt;}
.ws56{word-spacing:0.637606pt;}
.wsa4{word-spacing:0.669491pt;}
.ws8e{word-spacing:0.690740pt;}
.ws8b{word-spacing:0.700044pt;}
.ws8d{word-spacing:0.702167pt;}
.ws37{word-spacing:0.743874pt;}
.ws36{word-spacing:0.797008pt;}
.ws3b{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.903276pt;}
.ws84{word-spacing:1.009543pt;}
.ws73{word-spacing:1.062677pt;}
.wsb5{word-spacing:1.099878pt;}
.ws41{word-spacing:1.115811pt;}
.wsa0{word-spacing:1.168945pt;}
.ws39{word-spacing:1.222079pt;}
.ws7f{word-spacing:1.275213pt;}
.ws58{word-spacing:1.328347pt;}
.ws1e{word-spacing:1.381481pt;}
.ws3e{word-spacing:1.434614pt;}
.ws16{word-spacing:1.434624pt;}
.ws14{word-spacing:1.482445pt;}
.ws6d{word-spacing:1.487748pt;}
.ws71{word-spacing:1.540882pt;}
.ws9b{word-spacing:1.594016pt;}
.ws75{word-spacing:1.700284pt;}
.ws6a{word-spacing:1.753418pt;}
.ws7e{word-spacing:1.806551pt;}
.ws31{word-spacing:1.859685pt;}
.ws40{word-spacing:1.912819pt;}
.ws9c{word-spacing:1.965953pt;}
.ws48{word-spacing:2.072221pt;}
.ws4e{word-spacing:2.125355pt;}
.ws49{word-spacing:2.178489pt;}
.ws2f{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws44{word-spacing:2.337890pt;}
.ws67{word-spacing:2.391024pt;}
.ws9a{word-spacing:2.444158pt;}
.ws86{word-spacing:2.497292pt;}
.ws24{word-spacing:2.550426pt;}
.wse{word-spacing:2.550432pt;}
.ws3c{word-spacing:2.656693pt;}
.ws4c{word-spacing:2.709827pt;}
.ws70{word-spacing:2.762961pt;}
.wsb7{word-spacing:2.862387pt;}
.ws4a{word-spacing:2.869229pt;}
.wsae{word-spacing:2.869248pt;}
.wsaf{word-spacing:2.917069pt;}
.ws6e{word-spacing:2.922363pt;}
.wsb8{word-spacing:3.012710pt;}
.ws89{word-spacing:3.081764pt;}
.ws15{word-spacing:3.108352pt;}
.ws33{word-spacing:3.134898pt;}
.ws18{word-spacing:3.188032pt;}
.ws57{word-spacing:3.241166pt;}
.ws43{word-spacing:3.294300pt;}
.ws92{word-spacing:3.330623pt;}
.ws7a{word-spacing:3.347434pt;}
.wsa6{word-spacing:3.395277pt;}
.wsa1{word-spacing:3.559969pt;}
.wsbf{word-spacing:3.586560pt;}
.wsc1{word-spacing:3.777843pt;}
.ws64{word-spacing:3.825638pt;}
.ws9d{word-spacing:3.878772pt;}
.ws2d{word-spacing:3.931906pt;}
.ws8f{word-spacing:3.985040pt;}
.ws17{word-spacing:4.064768pt;}
.wsc0{word-spacing:4.112589pt;}
.ws9{word-spacing:4.240070pt;}
.ws7d{word-spacing:4.303843pt;}
.wsa{word-spacing:4.314458pt;}
.wsa5{word-spacing:4.351693pt;}
.ws3d{word-spacing:4.463245pt;}
.ws72{word-spacing:4.728914pt;}
.ws65{word-spacing:4.888316pt;}
.ws3a{word-spacing:4.941450pt;}
.ws30{word-spacing:4.994583pt;}
.ws3f{word-spacing:5.047717pt;}
.ws4d{word-spacing:5.207119pt;}
.ws80{word-spacing:5.260253pt;}
.ws99{word-spacing:5.260288pt;}
.ws2e{word-spacing:5.366521pt;}
.ws83{word-spacing:5.579056pt;}
.ws98{word-spacing:5.595034pt;}
.ws7b{word-spacing:5.738458pt;}
.wsb3{word-spacing:5.834138pt;}
.ws35{word-spacing:5.950993pt;}
.ws2a{word-spacing:6.057261pt;}
.ws61{word-spacing:6.110395pt;}
.ws68{word-spacing:6.322930pt;}
.ws76{word-spacing:6.429198pt;}
.ws21{word-spacing:6.588599pt;}
.wsb6{word-spacing:6.599270pt;}
.ws7{word-spacing:6.918010pt;}
.ws7c{word-spacing:7.226206pt;}
.wsb4{word-spacing:8.129536pt;}
.ws5{word-spacing:10.823338pt;}
.ws78{word-spacing:11.516100pt;}
.ws69{word-spacing:13.214500pt;}
.ws62{word-spacing:13.224333pt;}
.ws6{word-spacing:14.319536pt;}
.ws79{word-spacing:15.492542pt;}
.ws77{word-spacing:15.945370pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.wsad{word-spacing:81.725747pt;}
.ws97{word-spacing:90.033531pt;}
.wsa8{word-spacing:90.381312pt;}
.wsab{word-spacing:95.832883pt;}
.wsa7{word-spacing:103.723315pt;}
.wsaa{word-spacing:106.736026pt;}
.ws9f{word-spacing:108.142839pt;}
.wsa9{word-spacing:110.513869pt;}
.ws96{word-spacing:111.333543pt;}
.wsac{word-spacing:121.464832pt;}
.ws9e{word-spacing:153.158374pt;}
.ws88{word-spacing:346.240000pt;}
._6{margin-left:-10.616218pt;}
._e{margin-left:-6.471709pt;}
._7{margin-left:-5.260288pt;}
._1{margin-left:-4.091296pt;}
._0{margin-left:-2.752326pt;}
._3{margin-left:-1.338970pt;}
._19{width:1.012879pt;}
._8{width:2.657630pt;}
._1a{width:6.398632pt;}
._24{width:9.961559pt;}
._4{width:11.530016pt;}
._1f{width:12.537683pt;}
._3a{width:13.640839pt;}
._a{width:14.585344pt;}
._20{width:15.525712pt;}
._d{width:16.418365pt;}
._c{width:17.358950pt;}
._b{width:19.128294pt;}
._1b{width:20.365779pt;}
._11{width:21.317303pt;}
._2{width:22.393747pt;}
._14{width:23.995243pt;}
._16{width:25.514879pt;}
._5{width:27.188522pt;}
._12{width:28.798556pt;}
._21{width:29.914355pt;}
._13{width:33.102399pt;}
._15{width:34.005675pt;}
._1c{width:35.174620pt;}
._1e{width:36.726125pt;}
._3b{width:39.595622pt;}
._9{width:48.381897pt;}
._39{width:54.993920pt;}
._37{width:63.745126pt;}
._38{width:78.904320pt;}
._32{width:81.438822pt;}
._1d{width:83.154501pt;}
._34{width:85.360128pt;}
._35{width:89.807462pt;}
._31{width:93.107098pt;}
._33{width:105.014477pt;}
._36{width:107.883712pt;}
._2e{width:136.714009pt;}
._2d{width:137.850573pt;}
._18{width:156.353232pt;}
._17{width:158.305932pt;}
._2a{width:174.737203pt;}
._30{width:179.944079pt;}
._28{width:198.647603pt;}
._2f{width:206.262755pt;}
._27{width:207.685734pt;}
._26{width:224.709939pt;}
._22{width:244.658244pt;}
._23{width:321.858699pt;}
._2c{width:330.154803pt;}
._2b{width:356.217139pt;}
._29{width:363.103334pt;}
._f{width:614.429411pt;}
._25{width:2193.861270pt;}
._10{width:2215.114604pt;}
.fs14{font-size:26.667600pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:32.433734pt;}
.fs16{font-size:33.925109pt;}
.fs0{font-size:37.193600pt;}
.fs13{font-size:37.336240pt;}
.fsb{font-size:37.514034pt;}
.fsc{font-size:40.249458pt;}
.fs4{font-size:40.381867pt;}
.fs12{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fse{font-size:42.984881pt;}
.fs7{font-size:47.820800pt;}
.fs15{font-size:47.895680pt;}
.fsa{font-size:48.455728pt;}
.fs10{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fsf{font-size:55.365867pt;}
.fs9{font-size:57.663887pt;}
.fs8{font-size:58.387652pt;}
.fs11{font-size:74.387733pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:113.279338pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:8.921453pt;}
.y16{bottom:14.776377pt;}
.y19d{bottom:18.171170pt;}
.ycc{bottom:20.155171pt;}
.y1bb{bottom:23.853159pt;}
.y19e{bottom:27.371719pt;}
.y44{bottom:28.346667pt;}
.ycb{bottom:32.170519pt;}
.y1a4{bottom:34.705487pt;}
.y1ab{bottom:34.705502pt;}
.y1bc{bottom:36.101483pt;}
.y1a5{bottom:41.622574pt;}
.yc2{bottom:53.180525pt;}
.y19f{bottom:55.994133pt;}
.yd3{bottom:59.040131pt;}
.yd1{bottom:59.139111pt;}
.yd9{bottom:59.238091pt;}
.y1a6{bottom:62.623834pt;}
.yd2{bottom:68.712927pt;}
.yd0{bottom:68.811907pt;}
.yd8{bottom:68.905958pt;}
.y9f{bottom:68.918329pt;}
.y9b{bottom:69.105979pt;}
.y1ac{bottom:69.624254pt;}
.yc3{bottom:70.863275pt;}
.y18c{bottom:81.480000pt;}
.y1a7{bottom:83.625094pt;}
.y1a0{bottom:84.616532pt;}
.y1bd{bottom:86.840960pt;}
.yc9{bottom:88.543755pt;}
.y15b{bottom:89.656000pt;}
.yc4{bottom:89.909488pt;}
.yf6{bottom:90.572000pt;}
.y1c9{bottom:92.538667pt;}
.y14{bottom:93.018667pt;}
.y43{bottom:93.434667pt;}
.y7a{bottom:95.282667pt;}
.y8f{bottom:95.681333pt;}
.yd5{bottom:96.066033pt;}
.y1ad{bottom:97.625934pt;}
.y18b{bottom:98.217333pt;}
.y145{bottom:98.822667pt;}
.yc8{bottom:99.776914pt;}
.y1a8{bottom:104.626354pt;}
.y218{bottom:104.980000pt;}
.yd4{bottom:105.738854pt;}
.y15a{bottom:106.393333pt;}
.yf5{bottom:107.309333pt;}
.yc5{bottom:108.082184pt;}
.y13{bottom:108.920000pt;}
.y1c8{bottom:109.276000pt;}
.y42{bottom:110.172000pt;}
.yc7{bottom:111.110805pt;}
.y79{bottom:112.020000pt;}
.y8e{bottom:112.418667pt;}
.y1a1{bottom:113.238939pt;}
.y1b9{bottom:114.954667pt;}
.y144{bottom:115.560000pt;}
.y217{bottom:120.322667pt;}
.y18a{bottom:123.044000pt;}
.y159{bottom:123.130667pt;}
.ya0{bottom:124.371977pt;}
.y12{bottom:124.820000pt;}
.y11b{bottom:125.170667pt;}
.ya1{bottom:125.533416pt;}
.y1a9{bottom:125.627614pt;}
.y9c{bottom:125.847192pt;}
.y1c7{bottom:126.013333pt;}
.yc0{bottom:126.643888pt;}
.yb3{bottom:126.736000pt;}
.y41{bottom:126.909333pt;}
.y187{bottom:128.546667pt;}
.y78{bottom:128.757333pt;}
.y8d{bottom:129.156000pt;}
.yf4{bottom:130.688000pt;}
.y1b8{bottom:131.692000pt;}
.y143{bottom:132.297333pt;}
.ycf{bottom:132.507456pt;}
.yd7{bottom:132.602473pt;}
.y189{bottom:134.896000pt;}
.y216{bottom:135.665333pt;}
.y1be{bottom:137.580460pt;}
.y182{bottom:137.660000pt;}
.y158{bottom:139.868000pt;}
.y11{bottom:140.720000pt;}
.y1a2{bottom:141.861345pt;}
.y11a{bottom:141.908000pt;}
.yce{bottom:142.175830pt;}
.y185{bottom:142.213333pt;}
.yd6{bottom:142.274810pt;}
.yca{bottom:142.567787pt;}
.yb2{bottom:143.473333pt;}
.y40{bottom:143.646667pt;}
.yc1{bottom:144.911624pt;}
.y77{bottom:145.494667pt;}
.y8c{bottom:145.893333pt;}
.y186{bottom:146.652000pt;}
.yf3{bottom:147.425333pt;}
.y1b7{bottom:148.429333pt;}
.y142{bottom:149.034667pt;}
.y184{bottom:150.182667pt;}
.y215{bottom:151.008000pt;}
.y188{bottom:152.005333pt;}
.y157{bottom:156.605333pt;}
.y10{bottom:156.621333pt;}
.y183{bottom:158.153333pt;}
.y1c6{bottom:158.506667pt;}
.y119{bottom:158.645333pt;}
.yb1{bottom:160.210667pt;}
.y3f{bottom:160.384000pt;}
.y76{bottom:162.232000pt;}
.y8b{bottom:162.630667pt;}
.yf2{bottom:164.162667pt;}
.y1b6{bottom:165.166667pt;}
.y141{bottom:165.772000pt;}
.y214{bottom:166.350667pt;}
.y1a3{bottom:170.483752pt;}
.yf{bottom:172.521333pt;}
.y156{bottom:173.342667pt;}
.y118{bottom:175.382667pt;}
.y181{bottom:175.686667pt;}
.y1c2{bottom:176.470760pt;}
.yb0{bottom:176.948000pt;}
.y3e{bottom:177.121333pt;}
.y1ba{bottom:178.444000pt;}
.y75{bottom:178.969333pt;}
.y8a{bottom:179.368000pt;}
.yf1{bottom:180.900000pt;}
.y213{bottom:181.693333pt;}
.y1b5{bottom:181.904000pt;}
.y140{bottom:182.509333pt;}
.yc6{bottom:182.618369pt;}
.y1e0{bottom:183.750667pt;}
.y1bf{bottom:188.319937pt;}
.ye{bottom:188.421333pt;}
.y155{bottom:190.080000pt;}
.y117{bottom:192.120000pt;}
.ybe{bottom:192.293522pt;}
.y180{bottom:192.424000pt;}
.yaf{bottom:193.685333pt;}
.y3d{bottom:193.858667pt;}
.y74{bottom:195.706667pt;}
.y89{bottom:196.105333pt;}
.y212{bottom:197.034667pt;}
.yf0{bottom:197.637333pt;}
.y1b4{bottom:198.641333pt;}
.y13f{bottom:199.246667pt;}
.ybd{bottom:203.526667pt;}
.y1c3{bottom:204.184579pt;}
.yd{bottom:204.322667pt;}
.y154{bottom:206.817333pt;}
.y1df{bottom:207.342667pt;}
.y116{bottom:208.857333pt;}
.y17f{bottom:209.161333pt;}
.yae{bottom:210.422667pt;}
.y3c{bottom:210.596000pt;}
.y211{bottom:212.377333pt;}
.y73{bottom:212.444000pt;}
.y88{bottom:212.841333pt;}
.yef{bottom:214.374667pt;}
.y1b3{bottom:215.378667pt;}
.ybc{bottom:215.541606pt;}
.y13e{bottom:215.984000pt;}
.y1de{bottom:222.964000pt;}
.y153{bottom:223.554667pt;}
.y115{bottom:225.594667pt;}
.y17e{bottom:225.898667pt;}
.yad{bottom:227.160000pt;}
.y3b{bottom:227.333333pt;}
.y210{bottom:227.720000pt;}
.y72{bottom:229.181333pt;}
.y87{bottom:229.578667pt;}
.ybf{bottom:230.097635pt;}
.yee{bottom:231.112000pt;}
.y1b2{bottom:232.116000pt;}
.y13d{bottom:232.721333pt;}
.y1c4{bottom:233.366179pt;}
.y1c0{bottom:239.059425pt;}
.y152{bottom:240.292000pt;}
.y114{bottom:242.332000pt;}
.y17d{bottom:242.636000pt;}
.y20f{bottom:243.062667pt;}
.yac{bottom:243.897333pt;}
.y3a{bottom:244.070667pt;}
.y71{bottom:245.918667pt;}
.y86{bottom:246.316000pt;}
.y1dd{bottom:246.556000pt;}
.yed{bottom:247.849333pt;}
.y1b1{bottom:248.853333pt;}
.y13c{bottom:249.458667pt;}
.y151{bottom:257.029333pt;}
.y20e{bottom:258.405333pt;}
.y113{bottom:259.069333pt;}
.y17c{bottom:259.373333pt;}
.yab{bottom:260.634667pt;}
.y39{bottom:260.808000pt;}
.y1dc{bottom:262.177333pt;}
.y1c5{bottom:262.547778pt;}
.y70{bottom:262.656000pt;}
.y85{bottom:263.053333pt;}
.yc{bottom:264.148000pt;}
.yec{bottom:264.586667pt;}
.y13b{bottom:266.196000pt;}
.y1b0{bottom:269.576000pt;}
.y20d{bottom:273.748000pt;}
.y150{bottom:273.766667pt;}
.y112{bottom:275.806667pt;}
.y17b{bottom:276.110667pt;}
.yaa{bottom:277.372000pt;}
.y38{bottom:277.545333pt;}
.y1db{bottom:277.798667pt;}
.y6f{bottom:279.393333pt;}
.y84{bottom:279.790667pt;}
.yb{bottom:280.048000pt;}
.yeb{bottom:281.324000pt;}
.y13a{bottom:282.933333pt;}
.y20c{bottom:289.090667pt;}
.y1c1{bottom:289.798913pt;}
.y14f{bottom:290.504000pt;}
.ya9{bottom:294.109333pt;}
.y37{bottom:294.282667pt;}
.ya{bottom:295.949333pt;}
.y6e{bottom:296.129333pt;}
.y83{bottom:296.528000pt;}
.y17a{bottom:296.833333pt;}
.yea{bottom:298.061333pt;}
.y111{bottom:299.185333pt;}
.y1af{bottom:299.564000pt;}
.y139{bottom:299.670667pt;}
.y1da{bottom:301.390667pt;}
.y20b{bottom:304.433333pt;}
.y14e{bottom:307.241333pt;}
.ya8{bottom:310.846667pt;}
.y36{bottom:311.020000pt;}
.y9{bottom:311.849333pt;}
.y6d{bottom:312.866667pt;}
.y82{bottom:313.265333pt;}
.ye9{bottom:314.798667pt;}
.y110{bottom:315.922667pt;}
.y138{bottom:316.408000pt;}
.y1ae{bottom:316.660000pt;}
.y1d9{bottom:317.012000pt;}
.y20a{bottom:319.776000pt;}
.y14d{bottom:323.978667pt;}
.y179{bottom:326.721333pt;}
.ya7{bottom:327.584000pt;}
.y35{bottom:327.757333pt;}
.y6c{bottom:329.604000pt;}
.y81{bottom:330.002667pt;}
.ye8{bottom:331.536000pt;}
.y1d8{bottom:332.633333pt;}
.y10f{bottom:332.660000pt;}
.y137{bottom:333.145333pt;}
.y1aa{bottom:333.754667pt;}
.y209{bottom:335.117333pt;}
.y8{bottom:337.048000pt;}
.y14c{bottom:340.716000pt;}
.y178{bottom:343.458667pt;}
.y34{bottom:344.494667pt;}
.y6b{bottom:346.341333pt;}
.y80{bottom:346.740000pt;}
.y1d7{bottom:348.254667pt;}
.ye7{bottom:348.272000pt;}
.y10e{bottom:349.397333pt;}
.y136{bottom:349.882667pt;}
.y208{bottom:350.460000pt;}
.y19c{bottom:353.692000pt;}
.ya6{bottom:357.420000pt;}
.y14b{bottom:357.453333pt;}
.y177{bottom:360.196000pt;}
.y7{bottom:360.918667pt;}
.y33{bottom:361.230667pt;}
.y6a{bottom:363.078667pt;}
.y7f{bottom:363.477333pt;}
.ye6{bottom:365.009333pt;}
.y207{bottom:365.802667pt;}
.y10d{bottom:366.134667pt;}
.y135{bottom:366.620000pt;}
.y14a{bottom:374.190667pt;}
.ya5{bottom:374.516000pt;}
.y6{bottom:376.818667pt;}
.y176{bottom:376.933333pt;}
.y32{bottom:377.968000pt;}
.y69{bottom:379.816000pt;}
.y7e{bottom:380.214667pt;}
.y206{bottom:381.145333pt;}
.ye5{bottom:381.746667pt;}
.y134{bottom:383.357333pt;}
.y10c{bottom:389.513333pt;}
.y149{bottom:390.928000pt;}
.ya4{bottom:391.612000pt;}
.y5{bottom:392.720000pt;}
.y175{bottom:393.670667pt;}
.y31{bottom:394.705333pt;}
.y205{bottom:396.488000pt;}
.y68{bottom:396.553333pt;}
.y7d{bottom:396.952000pt;}
.ye4{bottom:398.484000pt;}
.y133{bottom:400.094667pt;}
.y10b{bottom:406.250667pt;}
.y4{bottom:408.620000pt;}
.ya3{bottom:408.706667pt;}
.y174{bottom:410.408000pt;}
.y30{bottom:411.442667pt;}
.y204{bottom:411.830667pt;}
.y1d6{bottom:413.290667pt;}
.y7c{bottom:413.689333pt;}
.ye3{bottom:415.221333pt;}
.y132{bottom:416.830667pt;}
.y67{bottom:417.276000pt;}
.y148{bottom:420.764000pt;}
.y10a{bottom:422.988000pt;}
.y3{bottom:424.520000pt;}
.y9d{bottom:425.802667pt;}
.ya2{bottom:425.936000pt;}
.y173{bottom:427.145333pt;}
.y203{bottom:427.173333pt;}
.y2f{bottom:428.180000pt;}
.y1d5{bottom:430.028000pt;}
.y7b{bottom:430.426667pt;}
.ye2{bottom:431.958667pt;}
.y131{bottom:433.568000pt;}
.y2{bottom:440.421333pt;}
.y202{bottom:442.516000pt;}
.y109{bottom:443.710667pt;}
.y172{bottom:443.882667pt;}
.y9a{bottom:445.740000pt;}
.y9e{bottom:445.873333pt;}
.y1d4{bottom:446.765333pt;}
.y66{bottom:447.164000pt;}
.ye1{bottom:448.696000pt;}
.y2e{bottom:448.902667pt;}
.y130{bottom:450.305333pt;}
.y1{bottom:456.321333pt;}
.y201{bottom:457.857333pt;}
.y171{bottom:460.620000pt;}
.y1d3{bottom:463.502667pt;}
.y65{bottom:463.901333pt;}
.ye0{bottom:465.433333pt;}
.y12f{bottom:467.042667pt;}
.y200{bottom:473.200000pt;}
.y108{bottom:473.598667pt;}
.y170{bottom:477.357333pt;}
.y1d2{bottom:480.240000pt;}
.y64{bottom:480.638667pt;}
.ydf{bottom:482.170667pt;}
.y12e{bottom:483.780000pt;}
.y1ff{bottom:488.542667pt;}
.y107{bottom:490.336000pt;}
.y16f{bottom:494.094667pt;}
.y1d1{bottom:496.977333pt;}
.y63{bottom:497.376000pt;}
.y1fe{bottom:503.885333pt;}
.y12d{bottom:504.502667pt;}
.yde{bottom:505.549333pt;}
.y106{bottom:507.073333pt;}
.y16e{bottom:510.830667pt;}
.y1d0{bottom:513.714667pt;}
.y62{bottom:514.113333pt;}
.y2d{bottom:515.702667pt;}
.y1fd{bottom:519.228000pt;}
.ydd{bottom:522.286667pt;}
.y105{bottom:523.810667pt;}
.y16d{bottom:527.568000pt;}
.y1cf{bottom:530.452000pt;}
.y61{bottom:530.850667pt;}
.y2c{bottom:532.998667pt;}
.y1fc{bottom:534.570667pt;}
.y12c{bottom:536.556000pt;}
.ydc{bottom:539.024000pt;}
.y104{bottom:540.548000pt;}
.y16c{bottom:544.305333pt;}
.y1ce{bottom:547.189333pt;}
.y60{bottom:547.588000pt;}
.y1fb{bottom:549.913333pt;}
.y12b{bottom:553.293333pt;}
.ydb{bottom:555.761333pt;}
.y103{bottom:557.285333pt;}
.y16b{bottom:561.042667pt;}
.y1cd{bottom:563.926667pt;}
.y5f{bottom:564.325333pt;}
.y1fa{bottom:565.256000pt;}
.y2b{bottom:566.233333pt;}
.y12a{bottom:570.030667pt;}
.y102{bottom:574.022667pt;}
.y16a{bottom:577.780000pt;}
.y1f9{bottom:580.598667pt;}
.y1cc{bottom:580.664000pt;}
.y5e{bottom:581.062667pt;}
.y2a{bottom:583.528000pt;}
.yda{bottom:585.598667pt;}
.y129{bottom:586.768000pt;}
.y101{bottom:590.758667pt;}
.y19b{bottom:592.329333pt;}
.y169{bottom:594.517333pt;}
.y1f8{bottom:595.940000pt;}
.y1f7{bottom:595.941333pt;}
.y1cb{bottom:597.401333pt;}
.y5d{bottom:597.800000pt;}
.y29{bottom:600.824000pt;}
.y128{bottom:603.505333pt;}
.ybb{bottom:605.534667pt;}
.y19a{bottom:606.940000pt;}
.y168{bottom:611.254667pt;}
.y1f6{bottom:611.282667pt;}
.y100{bottom:611.481333pt;}
.y99{bottom:614.138667pt;}
.y5c{bottom:614.537333pt;}
.y28{bottom:618.118667pt;}
.y127{bottom:620.242667pt;}
.y1f5{bottom:626.625333pt;}
.y199{bottom:628.220000pt;}
.y98{bottom:630.876000pt;}
.y5b{bottom:631.274667pt;}
.y167{bottom:633.668000pt;}
.y27{bottom:635.414667pt;}
.y126{bottom:636.980000pt;}
.yff{bottom:641.369333pt;}
.y198{bottom:642.832000pt;}
.y1f4{bottom:645.953333pt;}
.y97{bottom:647.613333pt;}
.y5a{bottom:648.012000pt;}
.y166{bottom:650.405333pt;}
.y26{bottom:652.709333pt;}
.y125{bottom:657.701333pt;}
.yfe{bottom:658.106667pt;}
.y197{bottom:664.112000pt;}
.y96{bottom:664.350667pt;}
.y59{bottom:664.749333pt;}
.y165{bottom:667.142667pt;}
.y25{bottom:670.004000pt;}
.yfd{bottom:674.844000pt;}
.y1f3{bottom:677.672000pt;}
.y196{bottom:678.724000pt;}
.y124{bottom:680.509333pt;}
.y95{bottom:681.088000pt;}
.y58{bottom:681.485333pt;}
.y24{bottom:687.300000pt;}
.y123{bottom:689.622667pt;}
.yfc{bottom:691.581333pt;}
.y1f2{bottom:693.293333pt;}
.y94{bottom:697.825333pt;}
.y57{bottom:698.222667pt;}
.y195{bottom:700.002667pt;}
.y23{bottom:704.594667pt;}
.y164{bottom:705.620000pt;}
.yfb{bottom:708.318667pt;}
.y1f1{bottom:708.914667pt;}
.y93{bottom:714.562667pt;}
.y194{bottom:714.614667pt;}
.y56{bottom:714.960000pt;}
.y1ca{bottom:718.546667pt;}
.y122{bottom:719.210667pt;}
.y147{bottom:721.070667pt;}
.y22{bottom:721.889333pt;}
.y1f0{bottom:724.536000pt;}
.yfa{bottom:725.056000pt;}
.y92{bottom:731.300000pt;}
.y55{bottom:731.697333pt;}
.y163{bottom:733.725333pt;}
.y193{bottom:735.894667pt;}
.y121{bottom:735.948000pt;}
.y146{bottom:737.808000pt;}
.y1ef{bottom:740.157333pt;}
.yf9{bottom:741.793333pt;}
.y91{bottom:748.036000pt;}
.y54{bottom:748.434667pt;}
.y192{bottom:750.506667pt;}
.y120{bottom:752.685333pt;}
.y1ee{bottom:755.778667pt;}
.y21{bottom:756.188000pt;}
.yf8{bottom:758.530667pt;}
.y162{bottom:764.773333pt;}
.y53{bottom:765.172000pt;}
.y225{bottom:766.566667pt;}
.y90{bottom:768.758667pt;}
.y11f{bottom:769.422667pt;}
.y20{bottom:770.534667pt;}
.y1ed{bottom:771.400000pt;}
.y191{bottom:771.786667pt;}
.yf7{bottom:775.268000pt;}
.y161{bottom:781.510667pt;}
.y52{bottom:781.909333pt;}
.y190{bottom:786.398667pt;}
.y1ec{bottom:787.021333pt;}
.y1f{bottom:788.738667pt;}
.y11e{bottom:790.145333pt;}
.y224{bottom:797.252000pt;}
.y160{bottom:798.248000pt;}
.y51{bottom:798.646667pt;}
.y1e{bottom:799.226667pt;}
.y1eb{bottom:802.642667pt;}
.y18f{bottom:807.677333pt;}
.y11d{bottom:814.189333pt;}
.y15f{bottom:814.985333pt;}
.y50{bottom:815.384000pt;}
.y1d{bottom:817.430667pt;}
.y1ea{bottom:818.264000pt;}
.y18e{bottom:822.289333pt;}
.y1c{bottom:827.920000pt;}
.y223{bottom:829.332000pt;}
.y15e{bottom:831.722667pt;}
.y4f{bottom:832.121333pt;}
.y1e9{bottom:833.885333pt;}
.y222{bottom:844.674667pt;}
.y11c{bottom:844.873333pt;}
.y1b{bottom:846.122667pt;}
.y15d{bottom:848.460000pt;}
.y4e{bottom:848.858667pt;}
.y1e8{bottom:849.508000pt;}
.y18d{bottom:850.396000pt;}
.y221{bottom:860.017333pt;}
.yba{bottom:861.610667pt;}
.y1e7{bottom:865.129333pt;}
.y4d{bottom:865.596000pt;}
.y15c{bottom:869.182667pt;}
.y220{bottom:875.360000pt;}
.yb9{bottom:878.348000pt;}
.y1e6{bottom:880.750667pt;}
.y4c{bottom:882.333333pt;}
.y1a{bottom:885.836000pt;}
.y21e{bottom:890.701333pt;}
.y21f{bottom:890.702667pt;}
.yb8{bottom:895.085333pt;}
.y1e5{bottom:896.372000pt;}
.y4b{bottom:899.070667pt;}
.y21d{bottom:906.044000pt;}
.yb7{bottom:911.822667pt;}
.y1e4{bottom:911.993333pt;}
.y4a{bottom:915.808000pt;}
.y19{bottom:921.320000pt;}
.y21c{bottom:921.386667pt;}
.y1e3{bottom:927.614667pt;}
.yb6{bottom:928.560000pt;}
.y49{bottom:932.545333pt;}
.y21b{bottom:936.729333pt;}
.y1e2{bottom:943.236000pt;}
.yb5{bottom:945.297333pt;}
.y18{bottom:946.425333pt;}
.y48{bottom:949.282667pt;}
.y21a{bottom:952.072000pt;}
.yb4{bottom:962.034667pt;}
.y1e1{bottom:963.150667pt;}
.y47{bottom:966.020000pt;}
.y219{bottom:967.414667pt;}
.y17{bottom:971.530667pt;}
.y46{bottom:982.757333pt;}
.y15{bottom:1010.186667pt;}
.y45{bottom:1038.548000pt;}
.h24{height:2.125355pt;}
.h9{height:23.209028pt;}
.h1d{height:24.737057pt;}
.h1a{height:24.768730pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h2b{height:27.813473pt;}
.h25{height:29.599908pt;}
.h19{height:30.737379pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.h1b{height:32.259529pt;}
.h1c{height:32.826345pt;}
.h1e{height:32.836730pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h30{height:35.052646pt;}
.h2f{height:35.382828pt;}
.h2c{height:36.873667pt;}
.h22{height:37.372000pt;}
.hd{height:38.256384pt;}
.h18{height:38.411587pt;}
.he{height:38.681455pt;}
.h2a{height:38.940532pt;}
.h6{height:38.947124pt;}
.h1f{height:41.524400pt;}
.h4{height:45.271688pt;}
.h17{height:48.195468pt;}
.h8{height:48.360277pt;}
.h28{height:48.890575pt;}
.h2e{height:49.953698pt;}
.h14{height:57.354169pt;}
.h26{height:57.799269pt;}
.h11{height:58.074047pt;}
.h15{height:61.070722pt;}
.h12{height:61.837334pt;}
.h7{height:68.861952pt;}
.h5{height:76.803391pt;}
.h20{height:77.069355pt;}
.h21{height:113.522688pt;}
.h23{height:113.853355pt;}
.h27{height:118.549999pt;}
.h13{height:147.118180pt;}
.h10{height:147.383396pt;}
.h29{height:214.678213pt;}
.h16{height:237.717518pt;}
.h2d{height:321.298191pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:167.631666pt;}
.w2{width:177.244958pt;}
.w6{width:256.681400pt;}
.w4{width:256.695812pt;}
.w7{width:419.086202pt;}
.w5{width:481.949518pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x95{left:14.559392pt;}
.x35{left:17.216270pt;}
.x59{left:18.235992pt;}
.x57{left:20.383701pt;}
.x58{left:23.314490pt;}
.x94{left:25.510050pt;}
.xa0{left:32.666628pt;}
.x33{left:39.547952pt;}
.x9f{left:46.137288pt;}
.x1{left:47.621333pt;}
.x32{left:49.433673pt;}
.x2{left:51.410327pt;}
.x9e{left:53.895391pt;}
.x56{left:56.238546pt;}
.xa2{left:62.551514pt;}
.x37{left:73.021849pt;}
.xa5{left:76.309333pt;}
.x5a{left:95.022130pt;}
.xa1{left:101.377821pt;}
.x96{left:105.598176pt;}
.x5b{left:110.649939pt;}
.x5c{left:111.825821pt;}
.x61{left:113.191736pt;}
.x5d{left:118.956325pt;}
.x36{left:130.221167pt;}
.x5e{left:159.205514pt;}
.x60{left:163.113238pt;}
.x5f{left:164.285169pt;}
.x62{left:169.852281pt;}
.x41{left:185.586796pt;}
.x42{left:204.436950pt;}
.xa6{left:211.989333pt;}
.x46{left:213.326738pt;}
.x44{left:216.941970pt;}
.x48{left:218.993338pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x47{left:229.544605pt;}
.x45{left:233.451822pt;}
.x4{left:239.924000pt;}
.x2d{left:242.729333pt;}
.x43{left:245.861836pt;}
.x8{left:250.204000pt;}
.x22{left:251.625333pt;}
.x8d{left:260.621333pt;}
.x23{left:264.908000pt;}
.x80{left:271.409333pt;}
.x39{left:272.702667pt;}
.x6{left:273.940000pt;}
.xa3{left:275.498667pt;}
.x81{left:278.050667pt;}
.x4e{left:279.860164pt;}
.x7{left:286.546667pt;}
.x25{left:289.516000pt;}
.x4f{left:294.898551pt;}
.x50{left:296.071472pt;}
.x54{left:297.437376pt;}
.x26{left:302.800000pt;}
.x8f{left:311.072000pt;}
.x27{left:312.072000pt;}
.x49{left:315.318616pt;}
.x28{left:318.713333pt;}
.x74{left:319.828000pt;}
.x90{left:320.925333pt;}
.x64{left:327.389333pt;}
.x86{left:329.326667pt;}
.x6f{left:334.361333pt;}
.x97{left:341.540000pt;}
.x51{left:343.450658pt;}
.x77{left:345.184000pt;}
.x1c{left:346.238667pt;}
.x53{left:347.357899pt;}
.x52{left:348.530821pt;}
.xa4{left:349.808000pt;}
.x6b{left:352.150667pt;}
.x55{left:354.100905pt;}
.x6d{left:357.649333pt;}
.x17{left:359.306667pt;}
.x93{left:362.748000pt;}
.x3e{left:364.773333pt;}
.x18{left:365.948000pt;}
.x3c{left:370.664000pt;}
.x9b{left:373.846667pt;}
.x3d{left:377.968000pt;}
.x7a{left:380.514667pt;}
.x7c{left:383.326667pt;}
.x7b{left:387.157333pt;}
.x7d{left:389.968000pt;}
.x8a{left:392.886667pt;}
.x78{left:393.989333pt;}
.x15{left:395.774667pt;}
.x4d{left:397.379867pt;}
.x7e{left:398.293333pt;}
.x16{left:402.417333pt;}
.x9{left:404.365333pt;}
.xa{left:411.008000pt;}
.x6e{left:413.426667pt;}
.x4b{left:418.485479pt;}
.x75{left:420.745333pt;}
.x4c{left:425.125536pt;}
.x4a{left:426.691135pt;}
.x88{left:428.253333pt;}
.x34{left:434.713333pt;}
.x2e{left:441.692000pt;}
.x82{left:444.148000pt;}
.x8b{left:446.080000pt;}
.x83{left:450.789333pt;}
.x29{left:452.196000pt;}
.x2f{left:454.974667pt;}
.x2a{left:458.837333pt;}
.x8c{left:460.978667pt;}
.x65{left:462.464000pt;}
.x68{left:464.233333pt;}
.x1a{left:475.980000pt;}
.x1b{left:489.262667pt;}
.x91{left:503.233333pt;}
.x7f{left:508.348000pt;}
.x89{left:527.457333pt;}
.x72{left:530.370667pt;}
.x84{left:535.193333pt;}
.x85{left:541.834667pt;}
.x92{left:546.033333pt;}
.x66{left:552.552000pt;}
.x38{left:553.730667pt;}
.xf{left:555.978667pt;}
.x8e{left:557.354667pt;}
.x2b{left:560.609333pt;}
.x10{left:562.620000pt;}
.x2c{left:567.250667pt;}
.x69{left:569.864000pt;}
.x70{left:572.060000pt;}
.x19{left:574.960000pt;}
.x11{left:581.841333pt;}
.x12{left:588.482667pt;}
.x3f{left:595.749333pt;}
.x21{left:602.637333pt;}
.x30{left:604.641333pt;}
.x98{left:608.033333pt;}
.x40{left:609.032000pt;}
.x1f{left:612.974667pt;}
.xb{left:616.478667pt;}
.x31{left:617.924000pt;}
.x71{left:620.865333pt;}
.xc{left:623.120000pt;}
.x20{left:626.258667pt;}
.x67{left:632.565333pt;}
.x73{left:638.125333pt;}
.x76{left:647.030667pt;}
.x6c{left:648.090667pt;}
.x63{left:656.898667pt;}
.x3a{left:660.346667pt;}
.x3b{left:666.325333pt;}
.x87{left:684.370667pt;}
.x79{left:696.896000pt;}
.x9c{left:699.957333pt;}
.x99{left:706.065333pt;}
.x9d{left:710.882667pt;}
.xd{left:716.049333pt;}
.x9a{left:716.990667pt;}
.xe{left:722.690667pt;}
.x24{left:726.325333pt;}
.x1d{left:728.002667pt;}
.x13{left:733.037333pt;}
.x14{left:739.678667pt;}
.x1e{left:741.286667pt;}
.x6a{left:744.637333pt;}
}




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