
    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_bb55582867fbd25b1a743f07.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_41eecedf467991816eca8f0a.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_ce86e0b3b57da325d77e8207.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b595a2ea67f5331baf032d21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_db8e504cbf44363492a1a688.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.481000;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_54612c2feeee1f8784514b64.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;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_9f9aac1ff0aa4d63ad8d7a7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;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_b157410a691743c98382dfc6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000977;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_ab8181b2a0782993e7fd1354.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.174316;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_a6c354296ad45d623d9dc51b.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m2{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m19{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);}
.m2d{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);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m28{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);}
.m14{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);}
.m5{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);}
.m22{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);}
.m27{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);}
.m1d{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);}
.m17{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);}
.m13{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);}
.m16{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);}
.m23{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);}
.m7{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);}
.m8{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.md{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);}
.m25{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);}
.m20{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);}
.m1b{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);}
.m1f{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);}
.mf{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);}
.m9{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);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m12{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);}
.m15{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);}
.m11{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);}
.me{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);}
.m6{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);}
.mb{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v8{vertical-align:-14.072520px;}
.v4{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.248000px;}
.v9{vertical-align:10.279500px;}
.v7{vertical-align:15.033480px;}
.v5{vertical-align:18.282000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.va{vertical-align:32.880000px;}
.vb{vertical-align:65.754000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002470px;}
.ls25{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.494407px;}
.lsf{letter-spacing:0.499027px;}
.ls1e{letter-spacing:0.642088px;}
.ls1d{letter-spacing:0.648088px;}
.ls7{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls13{letter-spacing:2.823282px;}
.ls0{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls14{letter-spacing:10.852447px;}
.ls1a{letter-spacing:11.951700px;}
.ls19{letter-spacing:11.957700px;}
.ls5{letter-spacing:11.960850px;}
.ls18{letter-spacing:12.654642px;}
.ls16{letter-spacing:12.659262px;}
.ls2e{letter-spacing:12.754482px;}
.ls2a{letter-spacing:12.760604px;}
.ls31{letter-spacing:13.257789px;}
.ls2f{letter-spacing:13.434073px;}
.ls23{letter-spacing:13.448400px;}
.ls1c{letter-spacing:13.450090px;}
.ls22{letter-spacing:13.454400px;}
.ls29{letter-spacing:13.632467px;}
.ls2c{letter-spacing:13.660604px;}
.ls30{letter-spacing:13.685694px;}
.ls21{letter-spacing:14.668706px;}
.ls26{letter-spacing:14.709224px;}
.ls24{letter-spacing:14.720988px;}
.lsb{letter-spacing:14.943292px;}
.lsc{letter-spacing:14.944200px;}
.ls20{letter-spacing:15.003676px;}
.ls1b{letter-spacing:15.063451px;}
.ls2b{letter-spacing:15.238635px;}
.ls8{letter-spacing:16.856719px;}
.ls1f{letter-spacing:17.215373px;}
.lsa{letter-spacing:17.394700px;}
.lsd{letter-spacing:17.454475px;}
.ls2d{letter-spacing:19.962165px;}
.ls28{letter-spacing:20.156282px;}
.ls27{letter-spacing:22.226871px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls9{letter-spacing:292.836600px;}
.lse{letter-spacing:765.185804px;}
.ls11{letter-spacing:1062.836082px;}
.ls12{letter-spacing:1288.079562px;}
.ls15{letter-spacing:1795.226202px;}
.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;}
}
.ws73{word-spacing:-13.449600px;}
.ws17{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa1{word-spacing:-11.337000px;}
.ws7d{word-spacing:-10.356192px;}
.ws68{word-spacing:-3.526760px;}
.wsb2{word-spacing:-2.988780px;}
.ws32{word-spacing:-2.929004px;}
.ws90{word-spacing:-2.749678px;}
.ws52{word-spacing:-2.570351px;}
.wse5{word-spacing:-2.528525px;}
.wse3{word-spacing:-2.525749px;}
.wsd{word-spacing:-2.510575px;}
.ws112{word-spacing:-2.474726px;}
.ws94{word-spacing:-2.391024px;}
.ws23{word-spacing:-2.211697px;}
.ws107{word-spacing:-2.151936px;}
.wsb6{word-spacing:-1.972595px;}
.wsc0{word-spacing:-1.936742px;}
.wsb3{word-spacing:-1.912819px;}
.ws5{word-spacing:-1.908367px;}
.wsfe{word-spacing:-1.882944px;}
.ws31{word-spacing:-1.853044px;}
.ws6d{word-spacing:-1.793268px;}
.ws5b{word-spacing:-1.673717px;}
.wsa4{word-spacing:-1.667750px;}
.ws1a{word-spacing:-1.554166px;}
.wsb8{word-spacing:-1.506355px;}
.ws9f{word-spacing:-1.494390px;}
.ws4a{word-spacing:-1.434614px;}
.ws4{word-spacing:-1.322630px;}
.wsb9{word-spacing:-1.291162px;}
.ws41{word-spacing:-1.255288px;}
.ws1b{word-spacing:-1.195512px;}
.ws61{word-spacing:-1.135736px;}
.ws65{word-spacing:-1.075961px;}
.wsb0{word-spacing:-1.016185px;}
.ws9d{word-spacing:-0.956412px;}
.ws5f{word-spacing:-0.956410px;}
.wse8{word-spacing:-0.914573px;}
.ws62{word-spacing:-0.836858px;}
.wsf1{word-spacing:-0.806976px;}
.ws51{word-spacing:-0.777083px;}
.wsea{word-spacing:-0.699379px;}
.ws8d{word-spacing:-0.621668px;}
.wsa0{word-spacing:-0.597756px;}
.ws24{word-spacing:-0.537980px;}
.wsb5{word-spacing:-0.478205px;}
.wsf9{word-spacing:-0.430387px;}
.ws4c{word-spacing:-0.418429px;}
.ws21{word-spacing:-0.358654px;}
.ws15{word-spacing:-0.298878px;}
.wse2{word-spacing:-0.268992px;}
.wsf{word-spacing:-0.239102px;}
.wsa6{word-spacing:-0.215194px;}
.ws1c{word-spacing:-0.179327px;}
.wsbb{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.wsfd{word-spacing:-0.107597px;}
.ws77{word-spacing:-0.095641px;}
.ws1d{word-spacing:-0.059776px;}
.wsc8{word-spacing:-0.053798px;}
.ws18{word-spacing:-0.047821px;}
.ws84{word-spacing:-0.041425px;}
.ws10d{word-spacing:-0.029078px;}
.ws111{word-spacing:-0.026064px;}
.wsd8{word-spacing:-0.024221px;}
.ws72{word-spacing:-0.008890px;}
.ws81{word-spacing:-0.005529px;}
.ws7f{word-spacing:-0.005064px;}
.ws7c{word-spacing:-0.003156px;}
.ws1{word-spacing:-0.001699px;}
.ws0{word-spacing:0.000000px;}
.wsa5{word-spacing:0.053798px;}
.ws2b{word-spacing:0.059776px;}
.ws80{word-spacing:0.082850px;}
.wsc5{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.wsbc{word-spacing:0.161395px;}
.ws8a{word-spacing:0.165699px;}
.wse{word-spacing:0.179327px;}
.wsc9{word-spacing:0.215194px;}
.ws13{word-spacing:0.239102px;}
.wsbf{word-spacing:0.268992px;}
.wsc{word-spacing:0.298878px;}
.ws7b{word-spacing:0.322790px;}
.wsa{word-spacing:0.358654px;}
.ws8c{word-spacing:0.382565px;}
.ws7a{word-spacing:0.591782px;}
.wsc1{word-spacing:0.645581px;}
.ws6e{word-spacing:0.657532px;}
.ws56{word-spacing:0.717307px;}
.ws76{word-spacing:0.717309px;}
.wsbd{word-spacing:0.753178px;}
.ws8f{word-spacing:0.836858px;}
.ws1f{word-spacing:0.896634px;}
.ws4b{word-spacing:0.956410px;}
.wscb{word-spacing:0.968371px;}
.ws4f{word-spacing:1.016185px;}
.ws55{word-spacing:1.075961px;}
.ws58{word-spacing:1.135736px;}
.ws69{word-spacing:1.195512px;}
.ws37{word-spacing:1.255288px;}
.ws6c{word-spacing:1.374839px;}
.wsf7{word-spacing:1.398758px;}
.ws29{word-spacing:1.434614px;}
.wsba{word-spacing:1.452557px;}
.ws19{word-spacing:1.494390px;}
.ws7{word-spacing:1.554166px;}
.ws93{word-spacing:1.613941px;}
.wsec{word-spacing:1.667750px;}
.ws4d{word-spacing:1.673717px;}
.ws5a{word-spacing:1.733492px;}
.wsd2{word-spacing:1.775347px;}
.ws64{word-spacing:1.793268px;}
.wsed{word-spacing:1.808467px;}
.wsef{word-spacing:1.829146px;}
.ws48{word-spacing:1.912819px;}
.wsc2{word-spacing:1.936742px;}
.ws27{word-spacing:1.972595px;}
.wsaa{word-spacing:2.032370px;}
.wsa9{word-spacing:2.151922px;}
.ws26{word-spacing:2.211697px;}
.ws9e{word-spacing:2.271473px;}
.wsd4{word-spacing:2.367130px;}
.ws6b{word-spacing:2.391024px;}
.ws40{word-spacing:2.450800px;}
.ws79{word-spacing:2.570351px;}
.wsd9{word-spacing:2.743718px;}
.ws20{word-spacing:2.749678px;}
.ws34{word-spacing:2.809453px;}
.ws35{word-spacing:2.869229px;}
.ws92{word-spacing:2.988780px;}
.wsb4{word-spacing:3.048556px;}
.wsa3{word-spacing:3.066509px;}
.ws57{word-spacing:3.108331px;}
.ws59{word-spacing:3.168107px;}
.ws114{word-spacing:3.219744px;}
.ws115{word-spacing:3.225552px;}
.ws116{word-spacing:3.226454px;}
.wse7{word-spacing:3.227059px;}
.ws50{word-spacing:3.227882px;}
.wscd{word-spacing:3.227904px;}
.wscf{word-spacing:3.228202px;}
.ws2a{word-spacing:3.287658px;}
.wsb1{word-spacing:3.347434px;}
.wsa2{word-spacing:3.389299px;}
.ws6f{word-spacing:3.407209px;}
.ws22{word-spacing:3.466985px;}
.ws11{word-spacing:3.586536px;}
.ws74{word-spacing:3.586545px;}
.ws2e{word-spacing:3.706087px;}
.ws78{word-spacing:3.765863px;}
.ws53{word-spacing:3.825638px;}
.wsa8{word-spacing:3.885414px;}
.wsaf{word-spacing:3.945190px;}
.wsb7{word-spacing:4.004965px;}
.ws60{word-spacing:4.064741px;}
.ws109{word-spacing:4.142477px;}
.ws46{word-spacing:4.184292px;}
.ws5e{word-spacing:4.303843px;}
.wsfb{word-spacing:4.303872px;}
.ws3d{word-spacing:4.363619px;}
.ws9{word-spacing:4.423394px;}
.wsab{word-spacing:4.542946px;}
.ws2d{word-spacing:4.602721px;}
.ws25{word-spacing:4.662497px;}
.ws10e{word-spacing:4.680461px;}
.ws91{word-spacing:4.782048px;}
.ws54{word-spacing:4.901599px;}
.ws49{word-spacing:4.961375px;}
.ws10{word-spacing:5.140702px;}
.ws102{word-spacing:5.164646px;}
.wsde{word-spacing:5.326042px;}
.ws42{word-spacing:5.439580px;}
.wsbe{word-spacing:5.541235px;}
.ws38{word-spacing:5.559131px;}
.ws75{word-spacing:5.595010px;}
.ws2c{word-spacing:5.618906px;}
.ws28{word-spacing:6.037336px;}
.ws6a{word-spacing:6.097111px;}
.ws104{word-spacing:6.509606px;}
.wse0{word-spacing:6.724800px;}
.wsad{word-spacing:6.874194px;}
.wsdb{word-spacing:6.939994px;}
.ws39{word-spacing:6.993745px;}
.wsae{word-spacing:7.053521px;}
.wsc3{word-spacing:7.155187px;}
.ws36{word-spacing:7.173072px;}
.ws8e{word-spacing:7.292623px;}
.ws30{word-spacing:7.352399px;}
.wsc4{word-spacing:7.477978px;}
.ws33{word-spacing:7.950155px;}
.ws43{word-spacing:8.069706px;}
.ws8{word-spacing:8.129482px;}
.ws3a{word-spacing:8.368584px;}
.ws2f{word-spacing:8.607686px;}
.wsdd{word-spacing:8.769139px;}
.ws44{word-spacing:9.026116px;}
.ws45{word-spacing:9.085891px;}
.wsac{word-spacing:9.205442px;}
.ws47{word-spacing:9.743423px;}
.ws6{word-spacing:9.922750px;}
.wse1{word-spacing:10.114099px;}
.wse4{word-spacing:10.867277px;}
.ws113{word-spacing:10.921075px;}
.wsd0{word-spacing:11.120507px;}
.ws4e{word-spacing:11.178037px;}
.ws3c{word-spacing:11.775793px;}
.ws3b{word-spacing:11.835569px;}
.ws3e{word-spacing:12.134447px;}
.wsa7{word-spacing:12.313774px;}
.wse9{word-spacing:12.481229px;}
.wsfa{word-spacing:12.965414px;}
.ws10f{word-spacing:13.180608px;}
.ws10b{word-spacing:13.234406px;}
.wsf3{word-spacing:13.288205px;}
.wsf0{word-spacing:13.342003px;}
.ws117{word-spacing:13.394726px;}
.wsd7{word-spacing:13.395802px;}
.wsc6{word-spacing:13.449600px;}
.ws110{word-spacing:13.503398px;}
.wsd5{word-spacing:13.557197px;}
.ws10a{word-spacing:13.610995px;}
.ws5d{word-spacing:13.628837px;}
.wsf4{word-spacing:13.664794px;}
.ws14{word-spacing:13.688612px;}
.ws3f{word-spacing:14.286368px;}
.wscc{word-spacing:14.364173px;}
.ws67{word-spacing:14.704798px;}
.wse6{word-spacing:14.740762px;}
.ws16{word-spacing:14.776565px;}
.ws66{word-spacing:14.824349px;}
.ws1e{word-spacing:14.884124px;}
.wsee{word-spacing:15.171149px;}
.wsda{word-spacing:16.139520px;}
.wsf5{word-spacing:16.408512px;}
.ws108{word-spacing:16.569907px;}
.ws106{word-spacing:16.614422px;}
.ws10c{word-spacing:16.614826px;}
.wsff{word-spacing:16.615920px;}
.ws100{word-spacing:16.616659px;}
.wsd6{word-spacing:16.617408px;}
.wseb{word-spacing:16.618704px;}
.wsf6{word-spacing:16.619914px;}
.wsf2{word-spacing:16.623245px;}
.wsca{word-spacing:16.623706px;}
.wsc7{word-spacing:16.626787px;}
.ws105{word-spacing:16.677504px;}
.wsd3{word-spacing:16.892698px;}
.ws101{word-spacing:16.946496px;}
.wsfc{word-spacing:17.645875px;}
.wsce{word-spacing:17.861069px;}
.ws5c{word-spacing:18.470660px;}
.wsdc{word-spacing:20.389594px;}
.wsf8{word-spacing:21.196570px;}
.ws63{word-spacing:23.491811px;}
.wsd1{word-spacing:24.532070px;}
.ws103{word-spacing:32.548032px;}
.wsdf{word-spacing:33.032218px;}
.ws3{word-spacing:40.042186px;}
.ws9a{word-spacing:91.026893px;}
.ws96{word-spacing:104.261309px;}
.ws98{word-spacing:113.514624px;}
.ws95{word-spacing:147.291245px;}
.ws97{word-spacing:173.680934px;}
.ws99{word-spacing:178.879680px;}
.ws9c{word-spacing:183.237350px;}
.ws88{word-spacing:261.721684px;}
.ws8b{word-spacing:272.740673px;}
.ws86{word-spacing:286.825094px;}
.ws82{word-spacing:297.181286px;}
.ws83{word-spacing:317.893670px;}
.ws9b{word-spacing:342.449078px;}
.ws87{word-spacing:367.875979px;}
.ws89{word-spacing:373.815998px;}
.ws85{word-spacing:386.036711px;}
.ws70{word-spacing:401.874048px;}
.ws71{word-spacing:401.927846px;}
.ws7e{word-spacing:646.717065px;}
._4{margin-left:-6.939994px;}
._3{margin-left:-5.003251px;}
._5{margin-left:-3.012710px;}
._1{margin-left:-1.063024px;}
._8{width:1.091170px;}
._2{width:3.000053px;}
._57{width:4.237236px;}
._58{width:5.282527px;}
._56{width:6.456621px;}
._59{width:7.496836px;}
._55{width:8.661468px;}
._0{width:10.165172px;}
._e{width:11.955150px;}
._5a{width:13.019213px;}
._19{width:14.704544px;}
._6{width:15.709133px;}
._7{width:17.645875px;}
._c{width:19.115255px;}
._12{width:20.305805px;}
._d{width:21.882779px;}
._9{width:23.726004px;}
._a{width:25.696595px;}
._15{width:27.556552px;}
._1c{width:28.931390px;}
._11{width:30.671796px;}
._b{width:32.159273px;}
._1b{width:34.012316px;}
._16{width:35.745809px;}
._1e{width:36.881545px;}
._5c{width:39.003840px;}
._13{width:41.185388px;}
._14{width:42.799330px;}
._17{width:44.233944px;}
._1a{width:46.206539px;}
._5b{width:50.516698px;}
._18{width:55.531532px;}
._5d{width:61.868160px;}
._45{width:81.151121px;}
._1d{width:89.530912px;}
._4d{width:105.144507px;}
._37{width:114.107730px;}
._38{width:115.270547px;}
._40{width:122.748728px;}
._4e{width:126.211046px;}
._3d{width:130.801388px;}
._3a{width:144.037688px;}
._3e{width:146.919918px;}
._34{width:148.756342px;}
._47{width:152.937335px;}
._4c{width:154.532064px;}
._3b{width:173.390345px;}
._35{width:190.181110px;}
._4f{width:201.981946px;}
._36{width:207.455238px;}
._4a{width:214.817011px;}
._44{width:220.482123px;}
._52{width:225.307699px;}
._31{width:234.073610px;}
._1f{width:235.529395px;}
._2f{width:242.953574px;}
._50{width:257.674933px;}
._32{width:276.510326px;}
._29{width:283.194778px;}
._4b{width:308.130641px;}
._23{width:309.179405px;}
._2d{width:327.362947px;}
._33{width:328.374136px;}
._49{width:330.106982px;}
._21{width:331.451942px;}
._30{width:339.306509px;}
._46{width:343.146675px;}
._25{width:346.784486px;}
._2b{width:366.205709px;}
._2e{width:379.664198px;}
._51{width:383.851584px;}
._41{width:387.843999px;}
._48{width:389.529168px;}
._f{width:403.665894px;}
._2a{width:405.855130px;}
._43{width:411.041869px;}
._22{width:415.323648px;}
._42{width:416.634213px;}
._24{width:429.687821px;}
._26{width:442.222848px;}
._39{width:497.984670px;}
._3f{width:527.144683px;}
._2c{width:530.613619px;}
._3c{width:555.419712px;}
._27{width:597.000845px;}
._28{width:604.263629px;}
._20{width:611.741606px;}
._54{width:1032.837337px;}
._53{width:1521.281137px;}
._10{width:1545.191437px;}
.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);}
.fsc{font-size:32.218956px;}
.fsa{font-size:35.865600px;}
.fsb{font-size:41.424768px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsd{font-size:43.164660px;}
.fs10{font-size:45.348000px;}
.fs4{font-size:45.429600px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fs11{font-size:50.760000px;}
.fs6{font-size:53.798400px;}
.fsf{font-size:56.058000px;}
.fs13{font-size:56.172000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fse{font-size:62.286600px;}
.fs12{font-size:67.680000px;}
.fs3{font-size:107.596800px;}
.y12c{bottom:-545.493510px;}
.y147{bottom:-527.128665px;}
.y146{bottom:-508.240830px;}
.y145{bottom:-489.156393px;}
.y144{bottom:-470.071956px;}
.y143{bottom:-451.170078px;}
.y142{bottom:-432.099684px;}
.y141{bottom:-413.015247px;}
.y140{bottom:-393.944853px;}
.y13f{bottom:-375.042975px;}
.y13e{bottom:-356.141097px;}
.y13d{bottom:-336.888144px;}
.y13c{bottom:-317.986266px;}
.y13b{bottom:-298.901829px;}
.y13a{bottom:-279.999951px;}
.y139{bottom:-260.746998px;}
.y138{bottom:-241.845120px;}
.y137{bottom:-222.943242px;}
.y136{bottom:-203.872848px;}
.y135{bottom:-176.334525px;}
.y134{bottom:-140.847480px;}
.y133{bottom:-122.485050px;}
.y132{bottom:-104.312970px;}
.y131{bottom:-85.772880px;}
.y130{bottom:-67.588110px;}
.y12f{bottom:-49.225680px;}
.y12e{bottom:-30.875940px;}
.y12d{bottom:-6.028920px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y1a{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y32{bottom:63.780000px;}
.y111{bottom:108.612000px;}
.y1c6{bottom:108.957000px;}
.y63{bottom:116.607000px;}
.y161{bottom:116.743500px;}
.y31{bottom:116.991000px;}
.y96{bottom:119.058000px;}
.yda{bottom:119.760000px;}
.y73{bottom:119.863500px;}
.y1c5{bottom:128.325000px;}
.y110{bottom:128.875500px;}
.y62{bottom:136.870500px;}
.y160{bottom:137.007000px;}
.y30{bottom:137.254500px;}
.y95{bottom:139.321500px;}
.yd9{bottom:140.023500px;}
.y72{bottom:140.128500px;}
.y1c4{bottom:147.691500px;}
.y10f{bottom:149.139000px;}
.y129{bottom:156.613500px;}
.y61{bottom:157.134000px;}
.y15f{bottom:157.272000px;}
.y2f{bottom:157.519500px;}
.yd8{bottom:160.288500px;}
.y71{bottom:160.392000px;}
.y192{bottom:166.072500px;}
.y1c3{bottom:167.059500px;}
.y94{bottom:168.552000px;}
.y10e{bottom:169.404000px;}
.y128{bottom:176.878500px;}
.y60{bottom:177.399000px;}
.y15e{bottom:177.535500px;}
.y2e{bottom:177.783000px;}
.yd7{bottom:180.552000px;}
.y70{bottom:180.657000px;}
.y191{bottom:185.439000px;}
.y1c2{bottom:186.427500px;}
.y10d{bottom:189.667500px;}
.y127{bottom:197.142000px;}
.y5f{bottom:197.662500px;}
.y15d{bottom:197.800500px;}
.y2d{bottom:198.046500px;}
.yd6{bottom:200.815500px;}
.y6f{bottom:200.920500px;}
.y93{bottom:203.371500px;}
.y190{bottom:204.807000px;}
.y1c1{bottom:205.794000px;}
.y10c{bottom:209.932500px;}
.y126{bottom:217.405500px;}
.y5e{bottom:217.927500px;}
.y15c{bottom:218.064000px;}
.y2c{bottom:218.311500px;}
.yd5{bottom:221.080500px;}
.y6e{bottom:221.184000px;}
.y92{bottom:223.635000px;}
.y18f{bottom:224.173500px;}
.y1c0{bottom:225.162000px;}
.y125{bottom:237.670500px;}
.y5d{bottom:238.191000px;}
.y15b{bottom:238.327500px;}
.yd4{bottom:241.344000px;}
.y6d{bottom:241.449000px;}
.y18e{bottom:243.541500px;}
.y91{bottom:243.900000px;}
.y1bf{bottom:244.528500px;}
.y2b{bottom:247.542000px;}
.y10b{bottom:251.356500px;}
.ya5{bottom:255.198000px;}
.y124{bottom:257.934000px;}
.y5c{bottom:258.454500px;}
.y15a{bottom:258.592500px;}
.yd3{bottom:261.609000px;}
.y6c{bottom:261.712500px;}
.y18d{bottom:262.909500px;}
.y1be{bottom:263.896500px;}
.y90{bottom:264.163500px;}
.y10a{bottom:265.552500px;}
.ya4{bottom:275.461500px;}
.y123{bottom:278.199000px;}
.y5b{bottom:278.719500px;}
.y159{bottom:278.856000px;}
.y108{bottom:279.750000px;}
.yd2{bottom:281.872500px;}
.y6b{bottom:281.977500px;}
.y18c{bottom:282.276000px;}
.y1bd{bottom:283.264500px;}
.y109{bottom:284.089500px;}
.y8f{bottom:284.428500px;}
.y107{bottom:293.946000px;}
.ya3{bottom:295.725000px;}
.y122{bottom:298.462500px;}
.y158{bottom:299.121000px;}
.y18b{bottom:301.644000px;}
.yd1{bottom:302.136000px;}
.y6a{bottom:302.241000px;}
.y1bc{bottom:302.631000px;}
.y8e{bottom:304.692000px;}
.y5a{bottom:307.950000px;}
.y105{bottom:308.143500px;}
.y16f{bottom:311.208000px;}
.y106{bottom:312.483000px;}
.ya2{bottom:315.990000px;}
.y121{bottom:318.726000px;}
.y157{bottom:319.384500px;}
.y18a{bottom:321.010500px;}
.y1bb{bottom:321.999000px;}
.y104{bottom:322.339500px;}
.yd0{bottom:322.401000px;}
.y69{bottom:322.504500px;}
.y2a{bottom:323.950500px;}
.y8d{bottom:324.955500px;}
.ya1{bottom:336.253500px;}
.y120{bottom:338.991000px;}
.y156{bottom:339.648000px;}
.y189{bottom:340.378500px;}
.y1ba{bottom:341.367000px;}
.y103{bottom:342.098685px;}
.ycf{bottom:342.664500px;}
.y59{bottom:342.769500px;}
.y29{bottom:344.214000px;}
.y16e{bottom:346.027500px;}
.y8c{bottom:354.186000px;}
.y102{bottom:354.814080px;}
.ya0{bottom:356.518500px;}
.y11f{bottom:359.254500px;}
.y188{bottom:359.746500px;}
.y155{bottom:359.913000px;}
.y1b9{bottom:360.733500px;}
.yce{bottom:362.929500px;}
.y58{bottom:363.033000px;}
.y16d{bottom:366.291000px;}
.y101{bottom:373.016880px;}
.y9f{bottom:376.782000px;}
.y187{bottom:379.113000px;}
.y11e{bottom:379.519500px;}
.y1b8{bottom:380.101500px;}
.y154{bottom:380.176500px;}
.y28{bottom:382.411500px;}
.ycd{bottom:383.193000px;}
.y57{bottom:383.298000px;}
.y100{bottom:386.075310px;}
.y16c{bottom:386.554500px;}
.y8b{bottom:389.005500px;}
.y9e{bottom:397.045500px;}
.y186{bottom:398.481000px;}
.yff{bottom:399.132585px;}
.y1b7{bottom:399.468000px;}
.y11d{bottom:399.783000px;}
.y153{bottom:400.441500px;}
.y27{bottom:402.675000px;}
.ycc{bottom:403.456500px;}
.y56{bottom:403.561500px;}
.y16b{bottom:406.819500px;}
.yfe{bottom:417.793920px;}
.y185{bottom:417.849000px;}
.y1b6{bottom:418.836000px;}
.y152{bottom:420.705000px;}
.y26{bottom:422.938500px;}
.ycb{bottom:423.721500px;}
.y55{bottom:423.825000px;}
.y9d{bottom:426.276000px;}
.y16a{bottom:427.083000px;}
.yfd{bottom:430.509315px;}
.y184{bottom:437.215500px;}
.y1b5{bottom:438.204000px;}
.y151{bottom:440.968500px;}
.y11c{bottom:442.911000px;}
.y25{bottom:443.203500px;}
.yfc{bottom:443.224710px;}
.yca{bottom:443.985000px;}
.y54{bottom:444.090000px;}
.y169{bottom:447.348000px;}
.y11b{bottom:457.108500px;}
.y1b4{bottom:457.570500px;}
.y9c{bottom:461.095500px;}
.y150{bottom:461.233500px;}
.y24{bottom:463.467000px;}
.yc9{bottom:464.250000px;}
.y53{bottom:464.353500px;}
.yfb{bottom:465.187035px;}
.y183{bottom:465.549000px;}
.y168{bottom:467.611500px;}
.yfa{bottom:474.085155px;}
.y1b3{bottom:476.938500px;}
.y11a{bottom:478.884000px;}
.y9b{bottom:481.360500px;}
.y23{bottom:483.732000px;}
.yc8{bottom:484.513500px;}
.y52{bottom:484.618500px;}
.yf9{bottom:486.800550px;}
.y167{bottom:487.875000px;}
.y14f{bottom:490.464000px;}
.y12b{bottom:495.149844px;}
.y119{bottom:495.397500px;}
.y1b2{bottom:496.305000px;}
.yf7{bottom:499.458195px;}
.y9a{bottom:501.624000px;}
.yf8{bottom:503.216565px;}
.y22{bottom:503.995500px;}
.yc7{bottom:504.777000px;}
.y51{bottom:504.882000px;}
.y182{bottom:505.002000px;}
.y166{bottom:508.140000px;}
.y118{bottom:511.909500px;}
.yf6{bottom:512.654070px;}
.y1b1{bottom:515.673000px;}
.y99{bottom:521.889000px;}
.y14e{bottom:522.087000px;}
.y21{bottom:524.259000px;}
.yc6{bottom:525.042000px;}
.y50{bottom:525.145500px;}
.y165{bottom:528.403500px;}
.y117{bottom:528.423000px;}
.y181{bottom:529.165500px;}
.yf5{bottom:530.856870px;}
.y1b0{bottom:535.041000px;}
.y14d{bottom:541.320000px;}
.yf4{bottom:544.053900px;}
.y180{bottom:544.363500px;}
.y20{bottom:544.524000px;}
.y116{bottom:544.936500px;}
.yc5{bottom:545.305500px;}
.y4f{bottom:545.410500px;}
.y164{bottom:548.667000px;}
.y98{bottom:551.119500px;}
.y1af{bottom:554.407500px;}
.yf3{bottom:556.768140px;}
.y17f{bottom:559.561500px;}
.y14c{bottom:560.553000px;}
.y115{bottom:561.450000px;}
.y1f{bottom:564.787500px;}
.yc4{bottom:565.569000px;}
.y4e{bottom:565.674000px;}
.y163{bottom:568.932000px;}
.yf2{bottom:569.483535px;}
.y1ae{bottom:573.775500px;}
.y82{bottom:574.641000px;}
.y17e{bottom:574.759500px;}
.y14b{bottom:579.786000px;}
.yf1{bottom:582.141180px;}
.y1e{bottom:585.052500px;}
.y114{bottom:585.090000px;}
.y4d{bottom:585.939000px;}
.y162{bottom:589.195500px;}
.y17d{bottom:589.959000px;}
.y1ad{bottom:593.142000px;}
.yf0{bottom:594.798825px;}
.yc3{bottom:594.799500px;}
.y14a{bottom:599.017500px;}
.y113{bottom:601.528500px;}
.y1d{bottom:605.316000px;}
.y4c{bottom:606.202500px;}
.yef{bottom:607.456470px;}
.y81{bottom:609.460500px;}
.y1ac{bottom:612.510000px;}
.y17c{bottom:614.122500px;}
.y149{bottom:618.250500px;}
.yee{bottom:620.898360px;}
.y1c{bottom:625.579500px;}
.y4b{bottom:626.466000px;}
.y17b{bottom:629.320500px;}
.y80{bottom:629.724000px;}
.y1ab{bottom:631.878000px;}
.y112{bottom:633.148500px;}
.yed{bottom:633.612600px;}
.yc2{bottom:634.551000px;}
.y148{bottom:637.483500px;}
.y17a{bottom:644.518500px;}
.y4a{bottom:646.731000px;}
.yc0{bottom:648.748500px;}
.y7f{bottom:649.987500px;}
.y1aa{bottom:651.244500px;}
.yec{bottom:651.874305px;}
.yc1{bottom:653.088000px;}
.y179{bottom:659.716500px;}
.y12a{bottom:659.913000px;}
.y19{bottom:661.012464px;}
.y18{bottom:661.405500px;}
.ybf{bottom:662.944500px;}
.y49{bottom:666.994500px;}
.yeb{bottom:670.134855px;}
.y7e{bottom:670.252500px;}
.y1a9{bottom:670.612500px;}
.y178{bottom:674.914500px;}
.y170{bottom:675.961500px;}
.ybe{bottom:677.142000px;}
.y48{bottom:687.258000px;}
.yea{bottom:688.395405px;}
.y1a8{bottom:689.979000px;}
.y7d{bottom:690.516000px;}
.ybd{bottom:691.338000px;}
.y177{bottom:699.079500px;}
.y17{bottom:700.777500px;}
.ybc{bottom:705.535500px;}
.y47{bottom:707.523000px;}
.y1a7{bottom:709.347000px;}
.ybb{bottom:709.875000px;}
.y7c{bottom:710.781000px;}
.y176{bottom:714.277500px;}
.ye9{bottom:716.133000px;}
.y16{bottom:723.817500px;}
.yba{bottom:727.311000px;}
.y46{bottom:727.786500px;}
.y1a6{bottom:728.715000px;}
.y175{bottom:729.475500px;}
.y7b{bottom:731.044500px;}
.ye8{bottom:735.366000px;}
.y15{bottom:741.973500px;}
.yb9{bottom:743.824500px;}
.y174{bottom:744.673500px;}
.y45{bottom:748.051500px;}
.y1a5{bottom:748.081500px;}
.y7a{bottom:751.308000px;}
.y14{bottom:755.248500px;}
.yb8{bottom:760.263000px;}
.y1a4{bottom:767.449500px;}
.y44{bottom:768.315000px;}
.y173{bottom:768.838500px;}
.ye7{bottom:770.766000px;}
.y79{bottom:771.573000px;}
.y97{bottom:777.282000px;}
.yb7{bottom:777.637500px;}
.y13{bottom:778.288500px;}
.y172{bottom:784.036500px;}
.y1a3{bottom:786.816000px;}
.y43{bottom:788.578500px;}
.ye6{bottom:791.029500px;}
.y12{bottom:791.563500px;}
.y78{bottom:791.836500px;}
.yb6{bottom:794.463000px;}
.y171{bottom:799.234500px;}
.y1a2{bottom:806.184000px;}
.y42{bottom:808.843500px;}
.yb5{bottom:810.976500px;}
.ye5{bottom:811.294500px;}
.y77{bottom:812.101500px;}
.y11{bottom:814.602000px;}
.y1a1{bottom:825.552000px;}
.y10{bottom:827.877000px;}
.y41{bottom:829.107000px;}
.ye4{bottom:831.558000px;}
.y76{bottom:832.365000px;}
.yb4{bottom:834.691500px;}
.y1a0{bottom:844.918500px;}
.yf{bottom:846.034500px;}
.y40{bottom:849.372000px;}
.ye3{bottom:851.823000px;}
.y75{bottom:852.628500px;}
.y68{bottom:858.337500px;}
.yb3{bottom:858.406500px;}
.y19f{bottom:864.286500px;}
.ye{bottom:869.073000px;}
.y3f{bottom:869.635500px;}
.y74{bottom:872.893500px;}
.yb2{bottom:874.920000px;}
.ye2{bottom:881.053500px;}
.yd{bottom:882.348000px;}
.y19e{bottom:883.653000px;}
.y3e{bottom:889.899000px;}
.yb1{bottom:891.358500px;}
.y67{bottom:893.157000px;}
.y19d{bottom:903.021000px;}
.yc{bottom:905.386500px;}
.y3d{bottom:910.164000px;}
.y66{bottom:913.422000px;}
.yb0{bottom:915.699000px;}
.ye1{bottom:915.873000px;}
.y19c{bottom:922.389000px;}
.yb{bottom:923.544000px;}
.y8a{bottom:930.427500px;}
.yaf{bottom:932.212500px;}
.y65{bottom:933.685500px;}
.ye0{bottom:936.136500px;}
.y3c{bottom:939.394500px;}
.y19b{bottom:941.755500px;}
.ya{bottom:945.786000px;}
.yae{bottom:948.724500px;}
.y89{bottom:950.692500px;}
.y64{bottom:953.949000px;}
.ydf{bottom:956.400000px;}
.y19a{bottom:961.123500px;}
.yad{bottom:965.238000px;}
.y9{bottom:966.049500px;}
.y1c9{bottom:966.907500px;}
.y88{bottom:970.956000px;}
.y3b{bottom:974.214000px;}
.yde{bottom:976.665000px;}
.y199{bottom:980.490000px;}
.yac{bottom:981.751500px;}
.y1c8{bottom:986.275500px;}
.y87{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.ydd{bottom:996.928500px;}
.y198{bottom:999.858000px;}
.yab{bottom:1005.466500px;}
.y1c7{bottom:1005.642000px;}
.y8{bottom:1010.451000px;}
.y86{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y197{bottom:1019.226000px;}
.yaa{bottom:1021.980000px;}
.ydc{bottom:1026.159000px;}
.y85{bottom:1031.748000px;}
.y38{bottom:1035.006000px;}
.ya9{bottom:1038.493500px;}
.y196{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y84{bottom:1052.013000px;}
.y37{bottom:1055.269500px;}
.y195{bottom:1057.960500px;}
.ydb{bottom:1060.978500px;}
.ya8{bottom:1062.208500px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y194{bottom:1077.327000px;}
.y83{bottom:1081.243500px;}
.ya7{bottom:1085.923500px;}
.y35{bottom:1095.798000px;}
.y193{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.ya6{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h19{height:27.966054px;}
.h15{height:29.950107px;}
.h1b{height:30.582721px;}
.h14{height:31.131341px;}
.hc{height:33.112997px;}
.h20{height:33.831738px;}
.hb{height:34.199443px;}
.h16{height:35.956699px;}
.h8{height:36.319550px;}
.h10{height:38.896243px;}
.h3{height:39.402747px;}
.h25{height:39.434227px;}
.h1f{height:40.498775px;}
.h4{height:41.001535px;}
.h23{height:41.031891px;}
.hf{height:41.508281px;}
.h17{height:42.999534px;}
.h18{height:43.004154px;}
.hd{height:43.217759px;}
.h5{height:43.815515px;}
.h22{height:45.332051px;}
.h1a{height:46.236199px;}
.h9{height:46.697011px;}
.h24{height:50.165326px;}
.h2{height:50.931027px;}
.he{height:51.885221px;}
.h7{height:54.541601px;}
.h12{height:54.601550px;}
.h13{height:55.843550px;}
.h11{height:55.849550px;}
.h21{height:60.442734px;}
.h1d{height:71.776243px;}
.h6{height:77.792486px;}
.h1c{height:104.650243px;}
.h1e{height:471.094500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:460.729500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9c{left:-86.370993px;}
.x9e{left:-56.487971px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:59.014071px;}
.x72{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x8a{left:125.230020px;}
.x8b{left:128.320800px;}
.x95{left:129.688500px;}
.x88{left:130.816755px;}
.x89{left:138.108270px;}
.x87{left:140.954190px;}
.x85{left:143.596830px;}
.x4{left:146.170500px;}
.x96{left:150.327000px;}
.x7d{left:155.881500px;}
.x8c{left:161.755740px;}
.x8e{left:163.174080px;}
.xc{left:164.388000px;}
.x86{left:169.436490px;}
.xd{left:171.859500px;}
.xbb{left:175.171500px;}
.x26{left:176.181000px;}
.x8d{left:177.213105px;}
.xe{left:179.481000px;}
.x84{left:182.001735px;}
.xf{left:186.952500px;}
.x48{left:189.646500px;}
.x12{left:191.092500px;}
.x8{left:193.557000px;}
.x27{left:194.935500px;}
.x13{left:198.564000px;}
.x5f{left:202.371000px;}
.x9{left:204.190500px;}
.x30{left:205.606500px;}
.x66{left:207.604500px;}
.x28{left:209.878500px;}
.x44{left:211.305000px;}
.x29{left:213.690000px;}
.x9b{left:216.093000px;}
.x60{left:217.315500px;}
.x3a{left:220.944000px;}
.x31{left:222.432000px;}
.x78{left:224.595000px;}
.x45{left:226.248000px;}
.x3c{left:227.599500px;}
.x2a{left:228.634500px;}
.x77{left:230.163000px;}
.x7c{left:232.537500px;}
.x79{left:236.011500px;}
.x32{left:237.376500px;}
.xa7{left:240.526500px;}
.x3d{left:242.542500px;}
.x46{left:247.753500px;}
.x3e{left:250.164000px;}
.x50{left:251.583000px;}
.xc4{left:254.101500px;}
.x47{left:255.225000px;}
.xa8{left:258.171000px;}
.x69{left:262.849500px;}
.x3f{left:265.108500px;}
.x51{left:268.017000px;}
.x73{left:269.623500px;}
.x67{left:270.751500px;}
.xa9{left:273.114000px;}
.x6e{left:275.218500px;}
.x6a{left:277.794000px;}
.x6b{left:281.604000px;}
.x52{left:282.960000px;}
.x97{left:284.088000px;}
.x68{left:285.696000px;}
.x98{left:288.285000px;}
.x6f{left:290.163000px;}
.xaa{left:291.868500px;}
.x93{left:293.584500px;}
.x6c{left:296.548500px;}
.x7a{left:298.365000px;}
.x76{left:300.235500px;}
.x49{left:302.250000px;}
.x82{left:315.984045px;}
.x4a{left:317.193000px;}
.x83{left:321.166530px;}
.x70{left:323.365500px;}
.x71{left:338.308500px;}
.x64{left:344.862000px;}
.xab{left:350.173500px;}
.x33{left:353.553000px;}
.xac{left:357.646500px;}
.x65{left:359.806500px;}
.x34{left:368.496000px;}
.x35{left:372.307500px;}
.x94{left:378.012000px;}
.x36{left:387.250500px;}
.x61{left:391.510500px;}
.x62{left:406.453500px;}
.x63{left:410.115000px;}
.x3b{left:424.441500px;}
.x40{left:428.121000px;}
.x4e{left:430.416000px;}
.x14{left:438.648000px;}
.x41{left:443.065500px;}
.x15{left:446.119500px;}
.x53{left:448.099500px;}
.x75{left:451.372500px;}
.x16{left:453.718500px;}
.x7b{left:457.902000px;}
.x42{left:461.820000px;}
.x54{left:463.042500px;}
.x9d{left:464.622078px;}
.x17{left:468.663000px;}
.x55{left:470.365500px;}
.x4f{left:473.418000px;}
.x9f{left:478.156500px;}
.x2c{left:480.543000px;}
.x56{left:485.308500px;}
.x8f{left:488.702745px;}
.xa0{left:493.101000px;}
.x2d{left:495.487500px;}
.x99{left:500.961000px;}
.x6d{left:507.139500px;}
.x81{left:509.716500px;}
.xb6{left:510.969000px;}
.x37{left:514.567500px;}
.x74{left:520.029000px;}
.x2e{left:522.307500px;}
.xb7{left:525.913500px;}
.x4b{left:530.745000px;}
.x2f{left:537.250500px;}
.xba{left:545.898000px;}
.x38{left:561.670500px;}
.x39{left:576.615000px;}
.x7e{left:584.476500px;}
.xbe{left:590.148000px;}
.x43{left:591.921000px;}
.xb4{left:599.068500px;}
.xb5{left:602.767500px;}
.xb0{left:604.560000px;}
.xa5{left:610.480500px;}
.xa6{left:617.952000px;}
.xb1{left:619.504500px;}
.xb8{left:621.921000px;}
.xa1{left:629.413500px;}
.x59{left:630.972000px;}
.xb9{left:636.865500px;}
.xad{left:642.322500px;}
.xa2{left:644.358000px;}
.x5a{left:645.915000px;}
.xa3{left:648.019500px;}
.x5b{left:649.726500px;}
.x10{left:652.879500px;}
.xae{left:657.265500px;}
.x11{left:660.351000px;}
.xa4{left:662.964000px;}
.x5c{left:664.671000px;}
.x5d{left:668.481000px;}
.xc1{left:671.362500px;}
.x91{left:674.022000px;}
.xc3{left:675.166500px;}
.x4c{left:678.531000px;}
.x7f{left:679.690500px;}
.x92{left:682.029000px;}
.x5e{left:683.425500px;}
.x90{left:684.544545px;}
.x4d{left:693.475500px;}
.x9a{left:696.597000px;}
.xc2{left:698.260500px;}
.x6{left:701.339982px;}
.x1d{left:704.292000px;}
.xaf{left:707.188500px;}
.x1e{left:711.765000px;}
.x57{left:714.097500px;}
.x20{left:716.770500px;}
.x1f{left:719.385000px;}
.x21{left:720.582000px;}
.xbd{left:721.705500px;}
.xbf{left:722.979000px;}
.x2b{left:727.230000px;}
.x58{left:729.042000px;}
.xb2{left:732.012000px;}
.x1b{left:734.329500px;}
.x22{left:735.525000px;}
.x18{left:737.890500px;}
.x23{left:739.336500px;}
.x1c{left:749.274000px;}
.xb3{left:750.741000px;}
.x19{left:752.835000px;}
.x24{left:754.279500px;}
.xbc{left:755.460000px;}
.x1a{left:756.496500px;}
.x25{left:758.091000px;}
.xa{left:764.646000px;}
.xb{left:772.117500px;}
.x80{left:773.128500px;}
.xc0{left:776.473500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v8{vertical-align:-12.508907pt;}
.v4{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.109333pt;}
.v9{vertical-align:9.137333pt;}
.v7{vertical-align:13.363093pt;}
.v5{vertical-align:16.250667pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.va{vertical-align:29.226667pt;}
.vb{vertical-align:58.448000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002196pt;}
.ls25{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.439473pt;}
.lsf{letter-spacing:0.443580pt;}
.ls1e{letter-spacing:0.570745pt;}
.ls1d{letter-spacing:0.576078pt;}
.ls7{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls13{letter-spacing:2.509584pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls14{letter-spacing:9.646620pt;}
.ls1a{letter-spacing:10.623733pt;}
.ls19{letter-spacing:10.629067pt;}
.ls5{letter-spacing:10.631867pt;}
.ls18{letter-spacing:11.248571pt;}
.ls16{letter-spacing:11.252677pt;}
.ls2e{letter-spacing:11.337317pt;}
.ls2a{letter-spacing:11.342759pt;}
.ls31{letter-spacing:11.784701pt;}
.ls2f{letter-spacing:11.941399pt;}
.ls23{letter-spacing:11.954133pt;}
.ls1c{letter-spacing:11.955635pt;}
.ls22{letter-spacing:11.959467pt;}
.ls29{letter-spacing:12.117748pt;}
.ls2c{letter-spacing:12.142759pt;}
.ls30{letter-spacing:12.165061pt;}
.ls21{letter-spacing:13.038850pt;}
.ls26{letter-spacing:13.074865pt;}
.ls24{letter-spacing:13.085323pt;}
.lsb{letter-spacing:13.282926pt;}
.lsc{letter-spacing:13.283733pt;}
.ls20{letter-spacing:13.336601pt;}
.ls1b{letter-spacing:13.389734pt;}
.ls2b{letter-spacing:13.545454pt;}
.ls8{letter-spacing:14.983750pt;}
.ls1f{letter-spacing:15.302554pt;}
.lsa{letter-spacing:15.461955pt;}
.lsd{letter-spacing:15.515089pt;}
.ls2d{letter-spacing:17.744146pt;}
.ls28{letter-spacing:17.916695pt;}
.ls27{letter-spacing:19.757218pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls9{letter-spacing:260.299200pt;}
.lse{letter-spacing:680.165159pt;}
.ls11{letter-spacing:944.743184pt;}
.ls12{letter-spacing:1144.959611pt;}
.ls15{letter-spacing:1595.756624pt;}
.ws73{word-spacing:-11.955200pt;}
.ws17{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa1{word-spacing:-10.077333pt;}
.ws7d{word-spacing:-9.205504pt;}
.ws68{word-spacing:-3.134898pt;}
.wsb2{word-spacing:-2.656693pt;}
.ws32{word-spacing:-2.603559pt;}
.ws90{word-spacing:-2.444158pt;}
.ws52{word-spacing:-2.284756pt;}
.wse5{word-spacing:-2.247578pt;}
.wse3{word-spacing:-2.245110pt;}
.wsd{word-spacing:-2.231622pt;}
.ws112{word-spacing:-2.199757pt;}
.ws94{word-spacing:-2.125355pt;}
.ws23{word-spacing:-1.965953pt;}
.ws107{word-spacing:-1.912832pt;}
.wsb6{word-spacing:-1.753418pt;}
.wsc0{word-spacing:-1.721549pt;}
.wsb3{word-spacing:-1.700284pt;}
.ws5{word-spacing:-1.696326pt;}
.wsfe{word-spacing:-1.673728pt;}
.ws31{word-spacing:-1.647150pt;}
.ws6d{word-spacing:-1.594016pt;}
.ws5b{word-spacing:-1.487748pt;}
.wsa4{word-spacing:-1.482445pt;}
.ws1a{word-spacing:-1.381481pt;}
.wsb8{word-spacing:-1.338982pt;}
.ws9f{word-spacing:-1.328347pt;}
.ws4a{word-spacing:-1.275213pt;}
.ws4{word-spacing:-1.175671pt;}
.wsb9{word-spacing:-1.147699pt;}
.ws41{word-spacing:-1.115811pt;}
.ws1b{word-spacing:-1.062677pt;}
.ws61{word-spacing:-1.009543pt;}
.ws65{word-spacing:-0.956410pt;}
.wsb0{word-spacing:-0.903276pt;}
.ws9d{word-spacing:-0.850144pt;}
.ws5f{word-spacing:-0.850142pt;}
.wse8{word-spacing:-0.812954pt;}
.ws62{word-spacing:-0.743874pt;}
.wsf1{word-spacing:-0.717312pt;}
.ws51{word-spacing:-0.690740pt;}
.wsea{word-spacing:-0.621670pt;}
.ws8d{word-spacing:-0.552594pt;}
.wsa0{word-spacing:-0.531339pt;}
.ws24{word-spacing:-0.478205pt;}
.wsb5{word-spacing:-0.425071pt;}
.wsf9{word-spacing:-0.382566pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws21{word-spacing:-0.318803pt;}
.ws15{word-spacing:-0.265669pt;}
.wse2{word-spacing:-0.239104pt;}
.wsf{word-spacing:-0.212535pt;}
.wsa6{word-spacing:-0.191283pt;}
.ws1c{word-spacing:-0.159402pt;}
.wsbb{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.wsfd{word-spacing:-0.095642pt;}
.ws77{word-spacing:-0.085014pt;}
.ws1d{word-spacing:-0.053134pt;}
.wsc8{word-spacing:-0.047821pt;}
.ws18{word-spacing:-0.042507pt;}
.ws84{word-spacing:-0.036822pt;}
.ws10d{word-spacing:-0.025847pt;}
.ws111{word-spacing:-0.023168pt;}
.wsd8{word-spacing:-0.021530pt;}
.ws72{word-spacing:-0.007902pt;}
.ws81{word-spacing:-0.004915pt;}
.ws7f{word-spacing:-0.004501pt;}
.ws7c{word-spacing:-0.002806pt;}
.ws1{word-spacing:-0.001510pt;}
.ws0{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.047821pt;}
.ws2b{word-spacing:0.053134pt;}
.ws80{word-spacing:0.073644pt;}
.wsc5{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.wsbc{word-spacing:0.143462pt;}
.ws8a{word-spacing:0.147288pt;}
.wse{word-spacing:0.159402pt;}
.wsc9{word-spacing:0.191283pt;}
.ws13{word-spacing:0.212535pt;}
.wsbf{word-spacing:0.239104pt;}
.wsc{word-spacing:0.265669pt;}
.ws7b{word-spacing:0.286925pt;}
.wsa{word-spacing:0.318803pt;}
.ws8c{word-spacing:0.340058pt;}
.ws7a{word-spacing:0.526029pt;}
.wsc1{word-spacing:0.573850pt;}
.ws6e{word-spacing:0.584473pt;}
.ws56{word-spacing:0.637606pt;}
.ws76{word-spacing:0.637608pt;}
.wsbd{word-spacing:0.669491pt;}
.ws8f{word-spacing:0.743874pt;}
.ws1f{word-spacing:0.797008pt;}
.ws4b{word-spacing:0.850142pt;}
.wscb{word-spacing:0.860774pt;}
.ws4f{word-spacing:0.903276pt;}
.ws55{word-spacing:0.956410pt;}
.ws58{word-spacing:1.009543pt;}
.ws69{word-spacing:1.062677pt;}
.ws37{word-spacing:1.115811pt;}
.ws6c{word-spacing:1.222079pt;}
.wsf7{word-spacing:1.243341pt;}
.ws29{word-spacing:1.275213pt;}
.wsba{word-spacing:1.291162pt;}
.ws19{word-spacing:1.328347pt;}
.ws7{word-spacing:1.381481pt;}
.ws93{word-spacing:1.434614pt;}
.wsec{word-spacing:1.482445pt;}
.ws4d{word-spacing:1.487748pt;}
.ws5a{word-spacing:1.540882pt;}
.wsd2{word-spacing:1.578086pt;}
.ws64{word-spacing:1.594016pt;}
.wsed{word-spacing:1.607526pt;}
.wsef{word-spacing:1.625907pt;}
.ws48{word-spacing:1.700284pt;}
.wsc2{word-spacing:1.721549pt;}
.ws27{word-spacing:1.753418pt;}
.wsaa{word-spacing:1.806551pt;}
.wsa9{word-spacing:1.912819pt;}
.ws26{word-spacing:1.965953pt;}
.ws9e{word-spacing:2.019087pt;}
.wsd4{word-spacing:2.104115pt;}
.ws6b{word-spacing:2.125355pt;}
.ws40{word-spacing:2.178489pt;}
.ws79{word-spacing:2.284756pt;}
.wsd9{word-spacing:2.438861pt;}
.ws20{word-spacing:2.444158pt;}
.ws34{word-spacing:2.497292pt;}
.ws35{word-spacing:2.550426pt;}
.ws92{word-spacing:2.656693pt;}
.wsb4{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.725786pt;}
.ws57{word-spacing:2.762961pt;}
.ws59{word-spacing:2.816095pt;}
.ws114{word-spacing:2.861995pt;}
.ws115{word-spacing:2.867157pt;}
.ws116{word-spacing:2.867959pt;}
.wse7{word-spacing:2.868497pt;}
.ws50{word-spacing:2.869229pt;}
.wscd{word-spacing:2.869248pt;}
.wscf{word-spacing:2.869513pt;}
.ws2a{word-spacing:2.922363pt;}
.wsb1{word-spacing:2.975497pt;}
.wsa2{word-spacing:3.012710pt;}
.ws6f{word-spacing:3.028630pt;}
.ws22{word-spacing:3.081764pt;}
.ws11{word-spacing:3.188032pt;}
.ws74{word-spacing:3.188040pt;}
.ws2e{word-spacing:3.294300pt;}
.ws78{word-spacing:3.347434pt;}
.ws53{word-spacing:3.400567pt;}
.wsa8{word-spacing:3.453701pt;}
.wsaf{word-spacing:3.506835pt;}
.wsb7{word-spacing:3.559969pt;}
.ws60{word-spacing:3.613103pt;}
.ws109{word-spacing:3.682202pt;}
.ws46{word-spacing:3.719371pt;}
.ws5e{word-spacing:3.825638pt;}
.wsfb{word-spacing:3.825664pt;}
.ws3d{word-spacing:3.878772pt;}
.ws9{word-spacing:3.931906pt;}
.wsab{word-spacing:4.038174pt;}
.ws2d{word-spacing:4.091308pt;}
.ws25{word-spacing:4.144442pt;}
.ws10e{word-spacing:4.160410pt;}
.ws91{word-spacing:4.250709pt;}
.ws54{word-spacing:4.356977pt;}
.ws49{word-spacing:4.410111pt;}
.ws10{word-spacing:4.569513pt;}
.ws102{word-spacing:4.590797pt;}
.wsde{word-spacing:4.734259pt;}
.ws42{word-spacing:4.835182pt;}
.wsbe{word-spacing:4.925542pt;}
.ws38{word-spacing:4.941450pt;}
.ws75{word-spacing:4.973342pt;}
.ws2c{word-spacing:4.994583pt;}
.ws28{word-spacing:5.366521pt;}
.ws6a{word-spacing:5.419654pt;}
.ws104{word-spacing:5.786317pt;}
.wse0{word-spacing:5.977600pt;}
.wsad{word-spacing:6.110395pt;}
.wsdb{word-spacing:6.168883pt;}
.ws39{word-spacing:6.216662pt;}
.wsae{word-spacing:6.269796pt;}
.wsc3{word-spacing:6.360166pt;}
.ws36{word-spacing:6.376064pt;}
.ws8e{word-spacing:6.482332pt;}
.ws30{word-spacing:6.535466pt;}
.wsc4{word-spacing:6.647091pt;}
.ws33{word-spacing:7.066804pt;}
.ws43{word-spacing:7.173072pt;}
.ws8{word-spacing:7.226206pt;}
.ws3a{word-spacing:7.438741pt;}
.ws2f{word-spacing:7.651277pt;}
.wsdd{word-spacing:7.794790pt;}
.ws44{word-spacing:8.023214pt;}
.ws45{word-spacing:8.076348pt;}
.wsac{word-spacing:8.182615pt;}
.ws47{word-spacing:8.660820pt;}
.ws6{word-spacing:8.820222pt;}
.wse1{word-spacing:8.990310pt;}
.wse4{word-spacing:9.659802pt;}
.ws113{word-spacing:9.707622pt;}
.wsd0{word-spacing:9.884896pt;}
.ws4e{word-spacing:9.936033pt;}
.ws3c{word-spacing:10.467372pt;}
.ws3b{word-spacing:10.520506pt;}
.ws3e{word-spacing:10.786175pt;}
.wsa7{word-spacing:10.945577pt;}
.wse9{word-spacing:11.094426pt;}
.wsfa{word-spacing:11.524813pt;}
.ws10f{word-spacing:11.716096pt;}
.ws10b{word-spacing:11.763917pt;}
.wsf3{word-spacing:11.811738pt;}
.wsf0{word-spacing:11.859558pt;}
.ws117{word-spacing:11.906423pt;}
.wsd7{word-spacing:11.907379pt;}
.wsc6{word-spacing:11.955200pt;}
.ws110{word-spacing:12.003021pt;}
.wsd5{word-spacing:12.050842pt;}
.ws10a{word-spacing:12.098662pt;}
.ws5d{word-spacing:12.114522pt;}
.wsf4{word-spacing:12.146483pt;}
.ws14{word-spacing:12.167655pt;}
.ws3f{word-spacing:12.698994pt;}
.wscc{word-spacing:12.768154pt;}
.ws67{word-spacing:13.070931pt;}
.wse6{word-spacing:13.102899pt;}
.ws16{word-spacing:13.134725pt;}
.ws66{word-spacing:13.177199pt;}
.ws1e{word-spacing:13.230333pt;}
.wsee{word-spacing:13.485466pt;}
.wsda{word-spacing:14.346240pt;}
.wsf5{word-spacing:14.585344pt;}
.ws108{word-spacing:14.728806pt;}
.ws106{word-spacing:14.768375pt;}
.ws10c{word-spacing:14.768734pt;}
.wsff{word-spacing:14.769707pt;}
.ws100{word-spacing:14.770364pt;}
.wsd6{word-spacing:14.771029pt;}
.wseb{word-spacing:14.772181pt;}
.wsf6{word-spacing:14.773257pt;}
.wsf2{word-spacing:14.776218pt;}
.wsca{word-spacing:14.776627pt;}
.wsc7{word-spacing:14.779366pt;}
.ws105{word-spacing:14.824448pt;}
.wsd3{word-spacing:15.015731pt;}
.ws101{word-spacing:15.063552pt;}
.wsfc{word-spacing:15.685222pt;}
.wsce{word-spacing:15.876506pt;}
.ws5c{word-spacing:16.418365pt;}
.wsdc{word-spacing:18.124083pt;}
.wsf8{word-spacing:18.841395pt;}
.ws63{word-spacing:20.881610pt;}
.wsd1{word-spacing:21.806285pt;}
.ws103{word-spacing:28.931584pt;}
.wsdf{word-spacing:29.361971pt;}
.ws3{word-spacing:35.593054pt;}
.ws9a{word-spacing:80.912794pt;}
.ws96{word-spacing:92.676719pt;}
.ws98{word-spacing:100.901888pt;}
.ws95{word-spacing:130.925551pt;}
.ws97{word-spacing:154.383053pt;}
.ws99{word-spacing:159.004160pt;}
.ws9c{word-spacing:162.877645pt;}
.ws88{word-spacing:232.641497pt;}
.ws8b{word-spacing:242.436153pt;}
.ws86{word-spacing:254.955639pt;}
.ws82{word-spacing:264.161143pt;}
.ws83{word-spacing:282.572151pt;}
.ws9b{word-spacing:304.399181pt;}
.ws87{word-spacing:327.000870pt;}
.ws89{word-spacing:332.280887pt;}
.ws85{word-spacing:343.143743pt;}
.ws70{word-spacing:357.221376pt;}
.ws71{word-spacing:357.269197pt;}
.ws7e{word-spacing:574.859614pt;}
._4{margin-left:-6.168883pt;}
._3{margin-left:-4.447334pt;}
._5{margin-left:-2.677965pt;}
._1{margin-left:-0.944910pt;}
._8{width:0.969929pt;}
._2{width:2.666714pt;}
._57{width:3.766432pt;}
._58{width:4.695580pt;}
._56{width:5.739219pt;}
._59{width:6.663854pt;}
._55{width:7.699083pt;}
._0{width:9.035708pt;}
._e{width:10.626800pt;}
._5a{width:11.572634pt;}
._19{width:13.070706pt;}
._6{width:13.963674pt;}
._7{width:15.685222pt;}
._c{width:16.991338pt;}
._12{width:18.049604pt;}
._d{width:19.451359pt;}
._9{width:21.089781pt;}
._a{width:22.841418pt;}
._15{width:24.494713pt;}
._1c{width:25.716791pt;}
._11{width:27.263819pt;}
._b{width:28.586020pt;}
._1b{width:30.233170pt;}
._16{width:31.774052pt;}
._1e{width:32.783596pt;}
._5c{width:34.670080pt;}
._13{width:36.609234pt;}
._14{width:38.043849pt;}
._17{width:39.319061pt;}
._1a{width:41.072479pt;}
._5b{width:44.903731pt;}
._18{width:49.361362pt;}
._5d{width:54.993920pt;}
._45{width:72.134329pt;}
._1d{width:79.583033pt;}
._4d{width:93.461784pt;}
._37{width:101.429093pt;}
._38{width:102.462708pt;}
._40{width:109.109981pt;}
._4e{width:112.187597pt;}
._3d{width:116.267901pt;}
._3a{width:128.033501pt;}
._3e{width:130.595482pt;}
._34{width:132.227859pt;}
._47{width:135.944298pt;}
._4c{width:137.361835pt;}
._3b{width:154.124751pt;}
._35{width:169.049875pt;}
._4f{width:179.539507pt;}
._36{width:184.404656pt;}
._4a{width:190.948454pt;}
._44{width:195.984109pt;}
._52{width:200.273510pt;}
._31{width:208.065432pt;}
._1f{width:209.359462pt;}
._2f{width:215.958733pt;}
._50{width:229.044385pt;}
._32{width:245.786957pt;}
._29{width:251.728691pt;}
._4b{width:273.893903pt;}
._23{width:274.826138pt;}
._2d{width:290.989286pt;}
._33{width:291.888121pt;}
._49{width:293.428429pt;}
._21{width:294.623949pt;}
._30{width:301.605786pt;}
._46{width:305.019266pt;}
._25{width:308.252877pt;}
._2b{width:325.516186pt;}
._2e{width:337.479287pt;}
._51{width:341.201408pt;}
._41{width:344.750222pt;}
._48{width:346.248149pt;}
._f{width:358.814128pt;}
._2a{width:360.760115pt;}
._43{width:365.370551pt;}
._22{width:369.176576pt;}
._42{width:370.341523pt;}
._24{width:381.944730pt;}
._26{width:393.086976pt;}
._39{width:442.653040pt;}
._3f{width:468.573052pt;}
._2c{width:471.656550pt;}
._3c{width:493.706410pt;}
._27{width:530.667418pt;}
._28{width:537.123226pt;}
._20{width:543.770317pt;}
._54{width:918.077633pt;}
._53{width:1352.249899pt;}
._10{width:1373.503499pt;}
.fsc{font-size:28.639072pt;}
.fsa{font-size:31.880533pt;}
.fsb{font-size:36.822016pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsd{font-size:38.368587pt;}
.fs10{font-size:40.309333pt;}
.fs4{font-size:40.381867pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fs11{font-size:45.120000pt;}
.fs6{font-size:47.820800pt;}
.fsf{font-size:49.829333pt;}
.fs13{font-size:49.930667pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fse{font-size:55.365867pt;}
.fs12{font-size:60.160000pt;}
.fs3{font-size:95.641600pt;}
.y12c{bottom:-484.883120pt;}
.y147{bottom:-468.558813pt;}
.y146{bottom:-451.769627pt;}
.y145{bottom:-434.805683pt;}
.y144{bottom:-417.841739pt;}
.y143{bottom:-401.040069pt;}
.y142{bottom:-384.088608pt;}
.y141{bottom:-367.124664pt;}
.y140{bottom:-350.173203pt;}
.y13f{bottom:-333.371533pt;}
.y13e{bottom:-316.569864pt;}
.y13d{bottom:-299.456128pt;}
.y13c{bottom:-282.654459pt;}
.y13b{bottom:-265.690515pt;}
.y13a{bottom:-248.888845pt;}
.y139{bottom:-231.775109pt;}
.y138{bottom:-214.973440pt;}
.y137{bottom:-198.171771pt;}
.y136{bottom:-181.220309pt;}
.y135{bottom:-156.741800pt;}
.y134{bottom:-125.197760pt;}
.y133{bottom:-108.875600pt;}
.y132{bottom:-92.722640pt;}
.y131{bottom:-76.242560pt;}
.y130{bottom:-60.078320pt;}
.y12f{bottom:-43.756160pt;}
.y12e{bottom:-27.445280pt;}
.y12d{bottom:-5.359040pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y1a{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y32{bottom:56.693333pt;}
.y111{bottom:96.544000pt;}
.y1c6{bottom:96.850667pt;}
.y63{bottom:103.650667pt;}
.y161{bottom:103.772000pt;}
.y31{bottom:103.992000pt;}
.y96{bottom:105.829333pt;}
.yda{bottom:106.453333pt;}
.y73{bottom:106.545333pt;}
.y1c5{bottom:114.066667pt;}
.y110{bottom:114.556000pt;}
.y62{bottom:121.662667pt;}
.y160{bottom:121.784000pt;}
.y30{bottom:122.004000pt;}
.y95{bottom:123.841333pt;}
.yd9{bottom:124.465333pt;}
.y72{bottom:124.558667pt;}
.y1c4{bottom:131.281333pt;}
.y10f{bottom:132.568000pt;}
.y129{bottom:139.212000pt;}
.y61{bottom:139.674667pt;}
.y15f{bottom:139.797333pt;}
.y2f{bottom:140.017333pt;}
.yd8{bottom:142.478667pt;}
.y71{bottom:142.570667pt;}
.y192{bottom:147.620000pt;}
.y1c3{bottom:148.497333pt;}
.y94{bottom:149.824000pt;}
.y10e{bottom:150.581333pt;}
.y128{bottom:157.225333pt;}
.y60{bottom:157.688000pt;}
.y15e{bottom:157.809333pt;}
.y2e{bottom:158.029333pt;}
.yd7{bottom:160.490667pt;}
.y70{bottom:160.584000pt;}
.y191{bottom:164.834667pt;}
.y1c2{bottom:165.713333pt;}
.y10d{bottom:168.593333pt;}
.y127{bottom:175.237333pt;}
.y5f{bottom:175.700000pt;}
.y15d{bottom:175.822667pt;}
.y2d{bottom:176.041333pt;}
.yd6{bottom:178.502667pt;}
.y6f{bottom:178.596000pt;}
.y93{bottom:180.774667pt;}
.y190{bottom:182.050667pt;}
.y1c1{bottom:182.928000pt;}
.y10c{bottom:186.606667pt;}
.y126{bottom:193.249333pt;}
.y5e{bottom:193.713333pt;}
.y15c{bottom:193.834667pt;}
.y2c{bottom:194.054667pt;}
.yd5{bottom:196.516000pt;}
.y6e{bottom:196.608000pt;}
.y92{bottom:198.786667pt;}
.y18f{bottom:199.265333pt;}
.y1c0{bottom:200.144000pt;}
.y125{bottom:211.262667pt;}
.y5d{bottom:211.725333pt;}
.y15b{bottom:211.846667pt;}
.yd4{bottom:214.528000pt;}
.y6d{bottom:214.621333pt;}
.y18e{bottom:216.481333pt;}
.y91{bottom:216.800000pt;}
.y1bf{bottom:217.358667pt;}
.y2b{bottom:220.037333pt;}
.y10b{bottom:223.428000pt;}
.ya5{bottom:226.842667pt;}
.y124{bottom:229.274667pt;}
.y5c{bottom:229.737333pt;}
.y15a{bottom:229.860000pt;}
.yd3{bottom:232.541333pt;}
.y6c{bottom:232.633333pt;}
.y18d{bottom:233.697333pt;}
.y1be{bottom:234.574667pt;}
.y90{bottom:234.812000pt;}
.y10a{bottom:236.046667pt;}
.ya4{bottom:244.854667pt;}
.y123{bottom:247.288000pt;}
.y5b{bottom:247.750667pt;}
.y159{bottom:247.872000pt;}
.y108{bottom:248.666667pt;}
.yd2{bottom:250.553333pt;}
.y6b{bottom:250.646667pt;}
.y18c{bottom:250.912000pt;}
.y1bd{bottom:251.790667pt;}
.y109{bottom:252.524000pt;}
.y8f{bottom:252.825333pt;}
.y107{bottom:261.285333pt;}
.ya3{bottom:262.866667pt;}
.y122{bottom:265.300000pt;}
.y158{bottom:265.885333pt;}
.y18b{bottom:268.128000pt;}
.yd1{bottom:268.565333pt;}
.y6a{bottom:268.658667pt;}
.y1bc{bottom:269.005333pt;}
.y8e{bottom:270.837333pt;}
.y5a{bottom:273.733333pt;}
.y105{bottom:273.905333pt;}
.y16f{bottom:276.629333pt;}
.y106{bottom:277.762667pt;}
.ya2{bottom:280.880000pt;}
.y121{bottom:283.312000pt;}
.y157{bottom:283.897333pt;}
.y18a{bottom:285.342667pt;}
.y1bb{bottom:286.221333pt;}
.y104{bottom:286.524000pt;}
.yd0{bottom:286.578667pt;}
.y69{bottom:286.670667pt;}
.y2a{bottom:287.956000pt;}
.y8d{bottom:288.849333pt;}
.ya1{bottom:298.892000pt;}
.y120{bottom:301.325333pt;}
.y156{bottom:301.909333pt;}
.y189{bottom:302.558667pt;}
.y1ba{bottom:303.437333pt;}
.y103{bottom:304.087720pt;}
.ycf{bottom:304.590667pt;}
.y59{bottom:304.684000pt;}
.y29{bottom:305.968000pt;}
.y16e{bottom:307.580000pt;}
.y8c{bottom:314.832000pt;}
.y102{bottom:315.390293pt;}
.ya0{bottom:316.905333pt;}
.y11f{bottom:319.337333pt;}
.y188{bottom:319.774667pt;}
.y155{bottom:319.922667pt;}
.y1b9{bottom:320.652000pt;}
.yce{bottom:322.604000pt;}
.y58{bottom:322.696000pt;}
.y16d{bottom:325.592000pt;}
.y101{bottom:331.570560pt;}
.y9f{bottom:334.917333pt;}
.y187{bottom:336.989333pt;}
.y11e{bottom:337.350667pt;}
.y1b8{bottom:337.868000pt;}
.y154{bottom:337.934667pt;}
.y28{bottom:339.921333pt;}
.ycd{bottom:340.616000pt;}
.y57{bottom:340.709333pt;}
.y100{bottom:343.178053pt;}
.y16c{bottom:343.604000pt;}
.y8b{bottom:345.782667pt;}
.y9e{bottom:352.929333pt;}
.y186{bottom:354.205333pt;}
.yff{bottom:354.784520pt;}
.y1b7{bottom:355.082667pt;}
.y11d{bottom:355.362667pt;}
.y153{bottom:355.948000pt;}
.y27{bottom:357.933333pt;}
.ycc{bottom:358.628000pt;}
.y56{bottom:358.721333pt;}
.y16b{bottom:361.617333pt;}
.yfe{bottom:371.372373pt;}
.y185{bottom:371.421333pt;}
.y1b6{bottom:372.298667pt;}
.y152{bottom:373.960000pt;}
.y26{bottom:375.945333pt;}
.ycb{bottom:376.641333pt;}
.y55{bottom:376.733333pt;}
.y9d{bottom:378.912000pt;}
.y16a{bottom:379.629333pt;}
.yfd{bottom:382.674947pt;}
.y184{bottom:388.636000pt;}
.y1b5{bottom:389.514667pt;}
.y151{bottom:391.972000pt;}
.y11c{bottom:393.698667pt;}
.y25{bottom:393.958667pt;}
.yfc{bottom:393.977520pt;}
.yca{bottom:394.653333pt;}
.y54{bottom:394.746667pt;}
.y169{bottom:397.642667pt;}
.y11b{bottom:406.318667pt;}
.y1b4{bottom:406.729333pt;}
.y9c{bottom:409.862667pt;}
.y150{bottom:409.985333pt;}
.y24{bottom:411.970667pt;}
.yc9{bottom:412.666667pt;}
.y53{bottom:412.758667pt;}
.yfb{bottom:413.499587pt;}
.y183{bottom:413.821333pt;}
.y168{bottom:415.654667pt;}
.yfa{bottom:421.409027pt;}
.y1b3{bottom:423.945333pt;}
.y11a{bottom:425.674667pt;}
.y9b{bottom:427.876000pt;}
.y23{bottom:429.984000pt;}
.yc8{bottom:430.678667pt;}
.y52{bottom:430.772000pt;}
.yf9{bottom:432.711600pt;}
.y167{bottom:433.666667pt;}
.y14f{bottom:435.968000pt;}
.y12b{bottom:440.133195pt;}
.y119{bottom:440.353333pt;}
.y1b2{bottom:441.160000pt;}
.yf7{bottom:443.962840pt;}
.y9a{bottom:445.888000pt;}
.yf8{bottom:447.303613pt;}
.y22{bottom:447.996000pt;}
.yc7{bottom:448.690667pt;}
.y51{bottom:448.784000pt;}
.y182{bottom:448.890667pt;}
.y166{bottom:451.680000pt;}
.y118{bottom:455.030667pt;}
.yf6{bottom:455.692507pt;}
.y1b1{bottom:458.376000pt;}
.y99{bottom:463.901333pt;}
.y14e{bottom:464.077333pt;}
.y21{bottom:466.008000pt;}
.yc6{bottom:466.704000pt;}
.y50{bottom:466.796000pt;}
.y165{bottom:469.692000pt;}
.y117{bottom:469.709333pt;}
.y181{bottom:470.369333pt;}
.yf5{bottom:471.872773pt;}
.y1b0{bottom:475.592000pt;}
.y14d{bottom:481.173333pt;}
.yf4{bottom:483.603467pt;}
.y180{bottom:483.878667pt;}
.y20{bottom:484.021333pt;}
.y116{bottom:484.388000pt;}
.yc5{bottom:484.716000pt;}
.y4f{bottom:484.809333pt;}
.y164{bottom:487.704000pt;}
.y98{bottom:489.884000pt;}
.y1af{bottom:492.806667pt;}
.yf3{bottom:494.905013pt;}
.y17f{bottom:497.388000pt;}
.y14c{bottom:498.269333pt;}
.y115{bottom:499.066667pt;}
.y1f{bottom:502.033333pt;}
.yc4{bottom:502.728000pt;}
.y4e{bottom:502.821333pt;}
.y163{bottom:505.717333pt;}
.yf2{bottom:506.207587pt;}
.y1ae{bottom:510.022667pt;}
.y82{bottom:510.792000pt;}
.y17e{bottom:510.897333pt;}
.y14b{bottom:515.365333pt;}
.yf1{bottom:517.458827pt;}
.y1e{bottom:520.046667pt;}
.y114{bottom:520.080000pt;}
.y4d{bottom:520.834667pt;}
.y162{bottom:523.729333pt;}
.y17d{bottom:524.408000pt;}
.y1ad{bottom:527.237333pt;}
.yf0{bottom:528.710067pt;}
.yc3{bottom:528.710667pt;}
.y14a{bottom:532.460000pt;}
.y113{bottom:534.692000pt;}
.y1d{bottom:538.058667pt;}
.y4c{bottom:538.846667pt;}
.yef{bottom:539.961307pt;}
.y81{bottom:541.742667pt;}
.y1ac{bottom:544.453333pt;}
.y17c{bottom:545.886667pt;}
.y149{bottom:549.556000pt;}
.yee{bottom:551.909653pt;}
.y1c{bottom:556.070667pt;}
.y4b{bottom:556.858667pt;}
.y17b{bottom:559.396000pt;}
.y80{bottom:559.754667pt;}
.y1ab{bottom:561.669333pt;}
.y112{bottom:562.798667pt;}
.yed{bottom:563.211200pt;}
.yc2{bottom:564.045333pt;}
.y148{bottom:566.652000pt;}
.y17a{bottom:572.905333pt;}
.y4a{bottom:574.872000pt;}
.yc0{bottom:576.665333pt;}
.y7f{bottom:577.766667pt;}
.y1aa{bottom:578.884000pt;}
.yec{bottom:579.443827pt;}
.yc1{bottom:580.522667pt;}
.y179{bottom:586.414667pt;}
.y12a{bottom:586.589333pt;}
.y19{bottom:587.566634pt;}
.y18{bottom:587.916000pt;}
.ybf{bottom:589.284000pt;}
.y49{bottom:592.884000pt;}
.yeb{bottom:595.675427pt;}
.y7e{bottom:595.780000pt;}
.y1a9{bottom:596.100000pt;}
.y178{bottom:599.924000pt;}
.y170{bottom:600.854667pt;}
.ybe{bottom:601.904000pt;}
.y48{bottom:610.896000pt;}
.yea{bottom:611.907027pt;}
.y1a8{bottom:613.314667pt;}
.y7d{bottom:613.792000pt;}
.ybd{bottom:614.522667pt;}
.y177{bottom:621.404000pt;}
.y17{bottom:622.913333pt;}
.ybc{bottom:627.142667pt;}
.y47{bottom:628.909333pt;}
.y1a7{bottom:630.530667pt;}
.ybb{bottom:631.000000pt;}
.y7c{bottom:631.805333pt;}
.y176{bottom:634.913333pt;}
.ye9{bottom:636.562667pt;}
.y16{bottom:643.393333pt;}
.yba{bottom:646.498667pt;}
.y46{bottom:646.921333pt;}
.y1a6{bottom:647.746667pt;}
.y175{bottom:648.422667pt;}
.y7b{bottom:649.817333pt;}
.ye8{bottom:653.658667pt;}
.y15{bottom:659.532000pt;}
.yb9{bottom:661.177333pt;}
.y174{bottom:661.932000pt;}
.y45{bottom:664.934667pt;}
.y1a5{bottom:664.961333pt;}
.y7a{bottom:667.829333pt;}
.y14{bottom:671.332000pt;}
.yb8{bottom:675.789333pt;}
.y1a4{bottom:682.177333pt;}
.y44{bottom:682.946667pt;}
.y173{bottom:683.412000pt;}
.ye7{bottom:685.125333pt;}
.y79{bottom:685.842667pt;}
.y97{bottom:690.917333pt;}
.yb7{bottom:691.233333pt;}
.y13{bottom:691.812000pt;}
.y172{bottom:696.921333pt;}
.y1a3{bottom:699.392000pt;}
.y43{bottom:700.958667pt;}
.ye6{bottom:703.137333pt;}
.y12{bottom:703.612000pt;}
.y78{bottom:703.854667pt;}
.yb6{bottom:706.189333pt;}
.y171{bottom:710.430667pt;}
.y1a2{bottom:716.608000pt;}
.y42{bottom:718.972000pt;}
.yb5{bottom:720.868000pt;}
.ye5{bottom:721.150667pt;}
.y77{bottom:721.868000pt;}
.y11{bottom:724.090667pt;}
.y1a1{bottom:733.824000pt;}
.y10{bottom:735.890667pt;}
.y41{bottom:736.984000pt;}
.ye4{bottom:739.162667pt;}
.y76{bottom:739.880000pt;}
.yb4{bottom:741.948000pt;}
.y1a0{bottom:751.038667pt;}
.yf{bottom:752.030667pt;}
.y40{bottom:754.997333pt;}
.ye3{bottom:757.176000pt;}
.y75{bottom:757.892000pt;}
.y68{bottom:762.966667pt;}
.yb3{bottom:763.028000pt;}
.y19f{bottom:768.254667pt;}
.ye{bottom:772.509333pt;}
.y3f{bottom:773.009333pt;}
.y74{bottom:775.905333pt;}
.yb2{bottom:777.706667pt;}
.ye2{bottom:783.158667pt;}
.yd{bottom:784.309333pt;}
.y19e{bottom:785.469333pt;}
.y3e{bottom:791.021333pt;}
.yb1{bottom:792.318667pt;}
.y67{bottom:793.917333pt;}
.y19d{bottom:802.685333pt;}
.yc{bottom:804.788000pt;}
.y3d{bottom:809.034667pt;}
.y66{bottom:811.930667pt;}
.yb0{bottom:813.954667pt;}
.ye1{bottom:814.109333pt;}
.y19c{bottom:819.901333pt;}
.yb{bottom:820.928000pt;}
.y8a{bottom:827.046667pt;}
.yaf{bottom:828.633333pt;}
.y65{bottom:829.942667pt;}
.ye0{bottom:832.121333pt;}
.y3c{bottom:835.017333pt;}
.y19b{bottom:837.116000pt;}
.ya{bottom:840.698667pt;}
.yae{bottom:843.310667pt;}
.y89{bottom:845.060000pt;}
.y64{bottom:847.954667pt;}
.ydf{bottom:850.133333pt;}
.y19a{bottom:854.332000pt;}
.yad{bottom:857.989333pt;}
.y9{bottom:858.710667pt;}
.y1c9{bottom:859.473333pt;}
.y88{bottom:863.072000pt;}
.y3b{bottom:865.968000pt;}
.yde{bottom:868.146667pt;}
.y199{bottom:871.546667pt;}
.yac{bottom:872.668000pt;}
.y1c8{bottom:876.689333pt;}
.y87{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.ydd{bottom:886.158667pt;}
.y198{bottom:888.762667pt;}
.yab{bottom:893.748000pt;}
.y1c7{bottom:893.904000pt;}
.y8{bottom:898.178667pt;}
.y86{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y197{bottom:905.978667pt;}
.yaa{bottom:908.426667pt;}
.ydc{bottom:912.141333pt;}
.y85{bottom:917.109333pt;}
.y38{bottom:920.005333pt;}
.ya9{bottom:923.105333pt;}
.y196{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y84{bottom:935.122667pt;}
.y37{bottom:938.017333pt;}
.y195{bottom:940.409333pt;}
.ydb{bottom:943.092000pt;}
.ya8{bottom:944.185333pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y194{bottom:957.624000pt;}
.y83{bottom:961.105333pt;}
.ya7{bottom:965.265333pt;}
.y35{bottom:974.042667pt;}
.y193{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.ya6{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h19{height:24.858714pt;}
.h15{height:26.622318pt;}
.h1b{height:27.184641pt;}
.h14{height:27.672303pt;}
.hc{height:29.433775pt;}
.h20{height:30.072656pt;}
.hb{height:30.399505pt;}
.h16{height:31.961510pt;}
.h8{height:32.284045pt;}
.h10{height:34.574438pt;}
.h3{height:35.024664pt;}
.h25{height:35.052646pt;}
.h1f{height:35.998911pt;}
.h4{height:36.445809pt;}
.h23{height:36.472792pt;}
.hf{height:36.896250pt;}
.h17{height:38.221808pt;}
.h18{height:38.225914pt;}
.hd{height:38.415786pt;}
.h5{height:38.947124pt;}
.h22{height:40.295156pt;}
.h1a{height:41.098843pt;}
.h9{height:41.508454pt;}
.h24{height:44.591401pt;}
.h2{height:45.272024pt;}
.he{height:46.120196pt;}
.h7{height:48.481423pt;}
.h12{height:48.534711pt;}
.h13{height:49.638711pt;}
.h11{height:49.644045pt;}
.h21{height:53.726875pt;}
.h1d{height:63.801105pt;}
.h6{height:69.148877pt;}
.h1c{height:93.022438pt;}
.h1e{height:418.750667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:409.537333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9c{left:-76.774216pt;}
.x9e{left:-50.211529pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:52.456952pt;}
.x72{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x8a{left:111.315573pt;}
.x8b{left:114.062933pt;}
.x95{left:115.278667pt;}
.x88{left:116.281560pt;}
.x89{left:122.762907pt;}
.x87{left:125.292613pt;}
.x85{left:127.641627pt;}
.x4{left:129.929333pt;}
.x96{left:133.624000pt;}
.x7d{left:138.561333pt;}
.x8c{left:143.782880pt;}
.x8e{left:145.043627pt;}
.xc{left:146.122667pt;}
.x86{left:150.610213pt;}
.xd{left:152.764000pt;}
.xbb{left:155.708000pt;}
.x26{left:156.605333pt;}
.x8d{left:157.522760pt;}
.xe{left:159.538667pt;}
.x84{left:161.779320pt;}
.xf{left:166.180000pt;}
.x48{left:168.574667pt;}
.x12{left:169.860000pt;}
.x8{left:172.050667pt;}
.x27{left:173.276000pt;}
.x13{left:176.501333pt;}
.x5f{left:179.885333pt;}
.x9{left:181.502667pt;}
.x30{left:182.761333pt;}
.x66{left:184.537333pt;}
.x28{left:186.558667pt;}
.x44{left:187.826667pt;}
.x29{left:189.946667pt;}
.x9b{left:192.082667pt;}
.x60{left:193.169333pt;}
.x3a{left:196.394667pt;}
.x31{left:197.717333pt;}
.x78{left:199.640000pt;}
.x45{left:201.109333pt;}
.x3c{left:202.310667pt;}
.x2a{left:203.230667pt;}
.x77{left:204.589333pt;}
.x7c{left:206.700000pt;}
.x79{left:209.788000pt;}
.x32{left:211.001333pt;}
.xa7{left:213.801333pt;}
.x3d{left:215.593333pt;}
.x46{left:220.225333pt;}
.x3e{left:222.368000pt;}
.x50{left:223.629333pt;}
.xc4{left:225.868000pt;}
.x47{left:226.866667pt;}
.xa8{left:229.485333pt;}
.x69{left:233.644000pt;}
.x3f{left:235.652000pt;}
.x51{left:238.237333pt;}
.x73{left:239.665333pt;}
.x67{left:240.668000pt;}
.xa9{left:242.768000pt;}
.x6e{left:244.638667pt;}
.x6a{left:246.928000pt;}
.x6b{left:250.314667pt;}
.x52{left:251.520000pt;}
.x97{left:252.522667pt;}
.x68{left:253.952000pt;}
.x98{left:256.253333pt;}
.x6f{left:257.922667pt;}
.xaa{left:259.438667pt;}
.x93{left:260.964000pt;}
.x6c{left:263.598667pt;}
.x7a{left:265.213333pt;}
.x76{left:266.876000pt;}
.x49{left:268.666667pt;}
.x82{left:280.874707pt;}
.x4a{left:281.949333pt;}
.x83{left:285.481360pt;}
.x70{left:287.436000pt;}
.x71{left:300.718667pt;}
.x64{left:306.544000pt;}
.xab{left:311.265333pt;}
.x33{left:314.269333pt;}
.xac{left:317.908000pt;}
.x65{left:319.828000pt;}
.x34{left:327.552000pt;}
.x35{left:330.940000pt;}
.x94{left:336.010667pt;}
.x36{left:344.222667pt;}
.x61{left:348.009333pt;}
.x62{left:361.292000pt;}
.x63{left:364.546667pt;}
.x3b{left:377.281333pt;}
.x40{left:380.552000pt;}
.x4e{left:382.592000pt;}
.x14{left:389.909333pt;}
.x41{left:393.836000pt;}
.x15{left:396.550667pt;}
.x53{left:398.310667pt;}
.x75{left:401.220000pt;}
.x16{left:403.305333pt;}
.x7b{left:407.024000pt;}
.x42{left:410.506667pt;}
.x54{left:411.593333pt;}
.x9d{left:412.997403pt;}
.x17{left:416.589333pt;}
.x55{left:418.102667pt;}
.x4f{left:420.816000pt;}
.x9f{left:425.028000pt;}
.x2c{left:427.149333pt;}
.x56{left:431.385333pt;}
.x8f{left:434.402440pt;}
.xa0{left:438.312000pt;}
.x2d{left:440.433333pt;}
.x99{left:445.298667pt;}
.x6d{left:450.790667pt;}
.x81{left:453.081333pt;}
.xb6{left:454.194667pt;}
.x37{left:457.393333pt;}
.x74{left:462.248000pt;}
.x2e{left:464.273333pt;}
.xb7{left:467.478667pt;}
.x4b{left:471.773333pt;}
.x2f{left:477.556000pt;}
.xba{left:485.242667pt;}
.x38{left:499.262667pt;}
.x39{left:512.546667pt;}
.x7e{left:519.534667pt;}
.xbe{left:524.576000pt;}
.x43{left:526.152000pt;}
.xb4{left:532.505333pt;}
.xb5{left:535.793333pt;}
.xb0{left:537.386667pt;}
.xa5{left:542.649333pt;}
.xa6{left:549.290667pt;}
.xb1{left:550.670667pt;}
.xb8{left:552.818667pt;}
.xa1{left:559.478667pt;}
.x59{left:560.864000pt;}
.xb9{left:566.102667pt;}
.xad{left:570.953333pt;}
.xa2{left:572.762667pt;}
.x5a{left:574.146667pt;}
.xa3{left:576.017333pt;}
.x5b{left:577.534667pt;}
.x10{left:580.337333pt;}
.xae{left:584.236000pt;}
.x11{left:586.978667pt;}
.xa4{left:589.301333pt;}
.x5c{left:590.818667pt;}
.x5d{left:594.205333pt;}
.xc1{left:596.766667pt;}
.x91{left:599.130667pt;}
.xc3{left:600.148000pt;}
.x4c{left:603.138667pt;}
.x7f{left:604.169333pt;}
.x92{left:606.248000pt;}
.x5e{left:607.489333pt;}
.x90{left:608.484040pt;}
.x4d{left:616.422667pt;}
.x9a{left:619.197333pt;}
.xc2{left:620.676000pt;}
.x6{left:623.413317pt;}
.x1d{left:626.037333pt;}
.xaf{left:628.612000pt;}
.x1e{left:632.680000pt;}
.x57{left:634.753333pt;}
.x20{left:637.129333pt;}
.x1f{left:639.453333pt;}
.x21{left:640.517333pt;}
.xbd{left:641.516000pt;}
.xbf{left:642.648000pt;}
.x2b{left:646.426667pt;}
.x58{left:648.037333pt;}
.xb2{left:650.677333pt;}
.x1b{left:652.737333pt;}
.x22{left:653.800000pt;}
.x18{left:655.902667pt;}
.x23{left:657.188000pt;}
.x1c{left:666.021333pt;}
.xb3{left:667.325333pt;}
.x19{left:669.186667pt;}
.x24{left:670.470667pt;}
.xbc{left:671.520000pt;}
.x1a{left:672.441333pt;}
.x25{left:673.858667pt;}
.xa{left:679.685333pt;}
.xb{left:686.326667pt;}
.x80{left:687.225333pt;}
.xc0{left:690.198667pt;}
}




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