
    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_671b0476f0f19318d7c4a9d3.woff')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_8c38bce8e1139d9c22e819af.woff')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_073df721d8be37726d039c0c.woff')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_678b67312afb338eed2ff3e9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_bea36632a126fc8f39bc7344.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_16408b5f808f7558d0a2620b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_fc36d83b22ca35fc57e46574.woff')format("woff");}.ff7{font-family:ff7;line-height:0.696777;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_e7bb71f22568ca6d84f99edb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_a70c5027a9c6c08e472f6607.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_65f5f270beb5842834d160a3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;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_2bfff18bb1917bb69233c91c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_48aa3e476c56eb72ced5b7fd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_382c606c4451efc7fda4dded.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_40eb87bce241e4bb58398045.woff')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_e0de8658fa576de53ea6194e.woff')format("woff");}.fff{font-family:fff;line-height:1.206055;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_9eee9fed70e5611dace1f370.woff')format("woff");}.ff10{font-family:ff10;line-height:0.933000;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;}
.mb{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);}
.m23{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);}
.m1e{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);}
.m4{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);}
.m10{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);}
.ma{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);}
.m1a{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);}
.m27{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);}
.m1d{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);}
.m1f{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);}
.md{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);}
.m12{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);}
.m17{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);}
.m24{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);}
.m1b{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);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{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);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m11{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);}
.m19{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);}
.m2a{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);}
.mc{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);}
.m26{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);}
.m18{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);}
.m7{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);}
.m8{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);}
.m28{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);}
.m9{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);}
.m15{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);}
.m13{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);}
.m5{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);}
.m29{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);}
.m22{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);}
.m14{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:32.880000px;}
.ls1f{letter-spacing:-8.418000px;}
.ls1c{letter-spacing:-0.352590px;}
.ls1e{letter-spacing:-0.310500px;}
.lsb{letter-spacing:-0.151502px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000092px;}
.ls27{letter-spacing:0.000568px;}
.ls2f{letter-spacing:0.000676px;}
.ls12{letter-spacing:0.000800px;}
.ls28{letter-spacing:0.001036px;}
.ls17{letter-spacing:0.001727px;}
.ls16{letter-spacing:0.002537px;}
.ls11{letter-spacing:0.002780px;}
.ls21{letter-spacing:0.002841px;}
.ls15{letter-spacing:0.003455px;}
.ls13{letter-spacing:0.003580px;}
.lsa{letter-spacing:0.004614px;}
.ls2b{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.016740px;}
.lsd{letter-spacing:0.100440px;}
.lsf{letter-spacing:0.117180px;}
.ls1d{letter-spacing:0.134550px;}
.ls1b{letter-spacing:0.166980px;}
.lsc{letter-spacing:0.167400px;}
.ls18{letter-spacing:0.207000px;}
.lse{letter-spacing:0.334800px;}
.ls0{letter-spacing:2.998354px;}
.ls19{letter-spacing:3.001500px;}
.ls9{letter-spacing:3.559200px;}
.ls5{letter-spacing:11.954850px;}
.ls20{letter-spacing:12.454482px;}
.ls2a{letter-spacing:13.225910px;}
.ls24{letter-spacing:13.238023px;}
.ls2c{letter-spacing:13.342237px;}
.ls29{letter-spacing:13.385694px;}
.ls22{letter-spacing:13.448400px;}
.ls23{letter-spacing:13.454400px;}
.ls2e{letter-spacing:13.490400px;}
.ls30{letter-spacing:13.611129px;}
.ls26{letter-spacing:13.668941px;}
.ls7{letter-spacing:13.987490px;}
.ls2d{letter-spacing:14.773929px;}
.ls1a{letter-spacing:15.196344px;}
.ls8{letter-spacing:15.703159px;}
.ls4{letter-spacing:17.920988px;}
.ls25{letter-spacing:18.656282px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.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;}
}
.wse6{word-spacing:-62.100000px;}
.wsd5{word-spacing:-50.220000px;}
.wse3{word-spacing:-17.451480px;}
.wse5{word-spacing:-17.419050px;}
.wse4{word-spacing:-16.931910px;}
.wse8{word-spacing:-15.525000px;}
.wse2{word-spacing:-13.972500px;}
.wse1{word-spacing:-13.765500px;}
.wsac{word-spacing:-13.449600px;}
.wsd4{word-spacing:-12.571740px;}
.wsd3{word-spacing:-12.555000px;}
.ws2d{word-spacing:-11.955150px;}
.wsc{word-spacing:-11.357400px;}
.wsd2{word-spacing:-11.299500px;}
.wsd1{word-spacing:-11.132100px;}
.ws4{word-spacing:-10.460700px;}
.wse7{word-spacing:-7.107000px;}
.ws96{word-spacing:-4.961375px;}
.ws41{word-spacing:-3.347434px;}
.wsff{word-spacing:-2.809453px;}
.ws51{word-spacing:-2.630126px;}
.ws92{word-spacing:-2.271473px;}
.ws69{word-spacing:-2.211697px;}
.ws116{word-spacing:-2.044339px;}
.wsc5{word-spacing:-2.032370px;}
.ws4b{word-spacing:-1.853044px;}
.wsa7{word-spacing:-1.673717px;}
.ws11c{word-spacing:-1.667750px;}
.wsc9{word-spacing:-1.613941px;}
.wsc6{word-spacing:-1.434614px;}
.ws3c{word-spacing:-1.374839px;}
.ws3b{word-spacing:-1.315063px;}
.ws110{word-spacing:-1.291162px;}
.ws126{word-spacing:-1.075968px;}
.wsbe{word-spacing:-1.075961px;}
.wsa2{word-spacing:-1.029705px;}
.ws63{word-spacing:-1.016185px;}
.ws112{word-spacing:-0.968371px;}
.ws86{word-spacing:-0.956410px;}
.ws31{word-spacing:-0.896634px;}
.ws109{word-spacing:-0.806976px;}
.ws95{word-spacing:-0.777083px;}
.wsec{word-spacing:-0.753178px;}
.ws64{word-spacing:-0.717307px;}
.wseb{word-spacing:-0.699379px;}
.wsb8{word-spacing:-0.597756px;}
.ws56{word-spacing:-0.537984px;}
.ws10f{word-spacing:-0.484186px;}
.ws28{word-spacing:-0.478205px;}
.ws30{word-spacing:-0.358654px;}
.ws54{word-spacing:-0.322790px;}
.ws90{word-spacing:-0.309671px;}
.ws2b{word-spacing:-0.298878px;}
.wsaa{word-spacing:-0.268992px;}
.wsc0{word-spacing:-0.246680px;}
.ws48{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.wsfc{word-spacing:-0.167800px;}
.ws11{word-spacing:-0.161395px;}
.ws3f{word-spacing:-0.119551px;}
.wse9{word-spacing:-0.107597px;}
.ws33{word-spacing:-0.059776px;}
.wsb0{word-spacing:-0.053798px;}
.ws2e{word-spacing:-0.047821px;}
.ws6d{word-spacing:-0.046668px;}
.ws2{word-spacing:-0.041843px;}
.ws114{word-spacing:-0.010070px;}
.ws1{word-spacing:0.000000px;}
.wsf0{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws5d{word-spacing:0.081109px;}
.ws5b{word-spacing:0.107597px;}
.ws24{word-spacing:0.119551px;}
.ws58{word-spacing:0.138517px;}
.wsf{word-spacing:0.161395px;}
.ws38{word-spacing:0.179327px;}
.ws103{word-spacing:0.186988px;}
.ws53{word-spacing:0.215194px;}
.ws12e{word-spacing:0.216005px;}
.ws65{word-spacing:0.228368px;}
.ws67{word-spacing:0.234169px;}
.ws2f{word-spacing:0.239102px;}
.wsf5{word-spacing:0.246253px;}
.wsee{word-spacing:0.247824px;}
.ws6f{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.ws10{word-spacing:0.322790px;}
.ws84{word-spacing:0.358654px;}
.ws99{word-spacing:0.418429px;}
.ws123{word-spacing:0.430387px;}
.ws13{word-spacing:0.645581px;}
.wsf8{word-spacing:0.656009px;}
.ws87{word-spacing:0.657532px;}
.wsd0{word-spacing:0.717307px;}
.ws6c{word-spacing:0.744044px;}
.ws1c{word-spacing:0.753178px;}
.ws47{word-spacing:0.777083px;}
.wsb6{word-spacing:0.804965px;}
.ws140{word-spacing:0.806976px;}
.ws45{word-spacing:0.820715px;}
.ws43{word-spacing:0.836858px;}
.ws119{word-spacing:0.860774px;}
.wsd7{word-spacing:0.914573px;}
.wsa5{word-spacing:0.956410px;}
.ws138{word-spacing:1.022170px;}
.wsb4{word-spacing:1.032280px;}
.ws25{word-spacing:1.075961px;}
.wsad{word-spacing:1.129766px;}
.ws62{word-spacing:1.135736px;}
.wsba{word-spacing:1.195512px;}
.ws12{word-spacing:1.237363px;}
.wsa{word-spacing:1.380812px;}
.ws52{word-spacing:1.434614px;}
.ws37{word-spacing:1.494390px;}
.ws94{word-spacing:1.554166px;}
.ws21{word-spacing:1.613941px;}
.ws4c{word-spacing:1.733492px;}
.ws106{word-spacing:1.775347px;}
.wsf3{word-spacing:1.793268px;}
.wsce{word-spacing:1.853044px;}
.ws98{word-spacing:1.972595px;}
.wse0{word-spacing:1.990541px;}
.ws42{word-spacing:2.032370px;}
.wsb7{word-spacing:2.092146px;}
.wsd6{word-spacing:2.151936px;}
.ws135{word-spacing:2.205734px;}
.ws10d{word-spacing:2.259533px;}
.ws10e{word-spacing:2.313331px;}
.wsfd{word-spacing:2.331248px;}
.ws8a{word-spacing:2.391024px;}
.wsea{word-spacing:2.420928px;}
.ws83{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws3a{word-spacing:2.689902px;}
.ws10a{word-spacing:2.743718px;}
.ws107{word-spacing:2.770007px;}
.ws20{word-spacing:2.809453px;}
.wscd{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.ws3d{word-spacing:2.929004px;}
.ws40{word-spacing:3.048556px;}
.ws93{word-spacing:3.108331px;}
.ws35{word-spacing:3.168107px;}
.ws1d{word-spacing:3.219667px;}
.ws141{word-spacing:3.220560px;}
.ws11d{word-spacing:3.220848px;}
.ws125{word-spacing:3.221098px;}
.ws127{word-spacing:3.224131px;}
.ws8b{word-spacing:3.227882px;}
.ws13a{word-spacing:3.227904px;}
.ws108{word-spacing:3.281702px;}
.wsf9{word-spacing:3.287658px;}
.ws3e{word-spacing:3.347434px;}
.ws10c{word-spacing:3.389299px;}
.ws27{word-spacing:3.407209px;}
.ws11a{word-spacing:3.443098px;}
.wse{word-spacing:3.478665px;}
.ws143{word-spacing:3.496896px;}
.ws16{word-spacing:3.520695px;}
.ws1e{word-spacing:3.586536px;}
.wsb9{word-spacing:3.646312px;}
.wsca{word-spacing:3.676361px;}
.wscc{word-spacing:3.706087px;}
.ws1a{word-spacing:3.712090px;}
.ws39{word-spacing:3.765863px;}
.ws12b{word-spacing:3.819686px;}
.ws104{word-spacing:4.088678px;}
.ws105{word-spacing:4.142477px;}
.wsc3{word-spacing:4.244068px;}
.ws55{word-spacing:4.250074px;}
.ws15{word-spacing:4.357670px;}
.ws89{word-spacing:4.423394px;}
.ws18{word-spacing:4.451341px;}
.ws97{word-spacing:4.722272px;}
.ws88{word-spacing:4.841824px;}
.ws6a{word-spacing:4.902772px;}
.ws85{word-spacing:4.961375px;}
.wsa4{word-spacing:5.021150px;}
.ws8d{word-spacing:5.080926px;}
.ws101{word-spacing:5.200477px;}
.ws122{word-spacing:5.218445px;}
.ws32{word-spacing:5.320028px;}
.wsd8{word-spacing:5.326042px;}
.wsdc{word-spacing:5.327109px;}
.wsda{word-spacing:5.332992px;}
.ws36{word-spacing:5.379804px;}
.wsc4{word-spacing:5.439580px;}
.ws8{word-spacing:5.481407px;}
.wsab{word-spacing:5.487437px;}
.ws120{word-spacing:5.648832px;}
.ws23{word-spacing:5.678682px;}
.ws8c{word-spacing:5.798233px;}
.ws1f{word-spacing:5.858009px;}
.wsaf{word-spacing:5.971622px;}
.wsfe{word-spacing:5.977560px;}
.ws130{word-spacing:6.079219px;}
.wsc8{word-spacing:6.097111px;}
.ws13f{word-spacing:6.133018px;}
.ws34{word-spacing:6.156887px;}
.ws13c{word-spacing:6.240614px;}
.wsa9{word-spacing:6.294413px;}
.wsdf{word-spacing:6.402010px;}
.wsae{word-spacing:6.455808px;}
.ws9f{word-spacing:6.515540px;}
.ws9c{word-spacing:6.535185px;}
.ws9e{word-spacing:6.538362px;}
.wsf2{word-spacing:6.874194px;}
.wsf1{word-spacing:6.993745px;}
.ws136{word-spacing:7.155187px;}
.wsbb{word-spacing:7.292623px;}
.ws4a{word-spacing:7.471950px;}
.ws12f{word-spacing:7.639373px;}
.ws9b{word-spacing:7.711052px;}
.ws9a{word-spacing:7.770828px;}
.wsfa{word-spacing:7.890379px;}
.ws100{word-spacing:8.009930px;}
.ws22{word-spacing:8.906564px;}
.ws6{word-spacing:9.833058px;}
.ws10b{word-spacing:10.237646px;}
.ws3{word-spacing:10.399198px;}
.ws7{word-spacing:11.841512px;}
.ws2c{word-spacing:11.904964px;}
.ws111{word-spacing:12.104640px;}
.wsde{word-spacing:13.073011px;}
.wsdd{word-spacing:13.091612px;}
.wsa8{word-spacing:13.163665px;}
.ws133{word-spacing:13.192787px;}
.ws11b{word-spacing:13.234406px;}
.ws131{word-spacing:13.288205px;}
.ws12d{word-spacing:13.389514px;}
.ws134{word-spacing:13.390474px;}
.ws117{word-spacing:13.390714px;}
.ws11e{word-spacing:13.391846px;}
.ws115{word-spacing:13.392336px;}
.ws137{word-spacing:13.392403px;}
.ws12c{word-spacing:13.392979px;}
.ws13b{word-spacing:13.393075px;}
.ws60{word-spacing:13.395802px;}
.ws118{word-spacing:13.396714px;}
.ws5c{word-spacing:13.477799px;}
.ws5e{word-spacing:13.503398px;}
.ws57{word-spacing:13.526683px;}
.ws59{word-spacing:13.557197px;}
.ws13e{word-spacing:13.558082px;}
.wsed{word-spacing:13.621220px;}
.wsef{word-spacing:13.639061px;}
.wsbf{word-spacing:13.808164px;}
.wsa3{word-spacing:13.834705px;}
.wsa1{word-spacing:13.837991px;}
.wsbd{word-spacing:14.286368px;}
.wsc1{word-spacing:14.525471px;}
.ws8f{word-spacing:14.567941px;}
.ws91{word-spacing:14.571742px;}
.wsb2{word-spacing:14.585246px;}
.ws49{word-spacing:14.645022px;}
.ws124{word-spacing:14.690861px;}
.wsfb{word-spacing:14.704798px;}
.ws50{word-spacing:14.749970px;}
.ws4e{word-spacing:14.763830px;}
.ws4f{word-spacing:14.764573px;}
.ws6e{word-spacing:14.824349px;}
.ws4d{word-spacing:14.884124px;}
.wscf{word-spacing:14.953476px;}
.wsb1{word-spacing:15.003676px;}
.ws102{word-spacing:15.063451px;}
.ws66{word-spacing:15.101146px;}
.ws68{word-spacing:15.123227px;}
.wsf6{word-spacing:15.133042px;}
.wsa0{word-spacing:15.188492px;}
.ws6b{word-spacing:15.422105px;}
.wsf7{word-spacing:15.541656px;}
.wsb5{word-spacing:15.661207px;}
.ws44{word-spacing:15.678624px;}
.wsb3{word-spacing:15.687712px;}
.ws46{word-spacing:15.720983px;}
.wsa6{word-spacing:15.840534px;}
.ws11f{word-spacing:16.354714px;}
.ws129{word-spacing:16.569907px;}
.ws142{word-spacing:16.616765px;}
.ws12a{word-spacing:16.617802px;}
.ws113{word-spacing:16.623706px;}
.ws13d{word-spacing:16.704883px;}
.ws132{word-spacing:16.731302px;}
.ws128{word-spacing:16.785101px;}
.ws17{word-spacing:16.892698px;}
.ws19{word-spacing:16.946496px;}
.ws1b{word-spacing:17.107891px;}
.ws121{word-spacing:17.538278px;}
.wsf4{word-spacing:18.101241px;}
.ws8e{word-spacing:18.231558px;}
.wscb{word-spacing:18.564098px;}
.wsd9{word-spacing:18.720491px;}
.wsdb{word-spacing:18.721843px;}
.wsc2{word-spacing:19.104725px;}
.ws139{word-spacing:20.120602px;}
.wsc7{word-spacing:21.041011px;}
.ws9d{word-spacing:21.399665px;}
.wsbc{word-spacing:22.184620px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.wsb{word-spacing:40.042186px;}
.ws7d{word-spacing:87.546854px;}
.ws71{word-spacing:125.988029px;}
.ws5a{word-spacing:138.746074px;}
.ws7a{word-spacing:143.195414px;}
.ws75{word-spacing:146.546842px;}
.ws78{word-spacing:157.353629px;}
.ws79{word-spacing:161.502797px;}
.ws74{word-spacing:163.345229px;}
.ws70{word-spacing:174.199219px;}
.ws7b{word-spacing:174.456134px;}
.ws73{word-spacing:178.441469px;}
.ws77{word-spacing:183.091642px;}
.ws72{word-spacing:184.062614px;}
.ws76{word-spacing:215.798669px;}
.ws5f{word-spacing:226.114675px;}
.ws7c{word-spacing:232.247693px;}
.ws81{word-spacing:234.991411px;}
.ws61{word-spacing:238.864896px;}
.ws80{word-spacing:250.895069px;}
.ws7e{word-spacing:252.960077px;}
.ws7f{word-spacing:312.467530px;}
.ws82{word-spacing:1010.399530px;}
._44{margin-left:-9.333630px;}
._48{margin-left:-8.207516px;}
._e{margin-left:-7.179128px;}
._4{margin-left:-5.917824px;}
._49{margin-left:-4.895654px;}
._0{margin-left:-3.849538px;}
._1{margin-left:-2.259511px;}
._6{margin-left:-1.075968px;}
._3c{width:1.056406px;}
._5{width:2.993690px;}
._3f{width:4.062240px;}
._3e{width:5.122440px;}
._40{width:6.132420px;}
._43{width:7.280352px;}
._45{width:8.948438px;}
._2{width:12.238425px;}
._42{width:13.782060px;}
._a{width:15.278724px;}
._12{width:16.623706px;}
._7{width:17.673486px;}
._11{width:18.709763px;}
._8{width:19.851610px;}
._38{width:21.041018px;}
._b{width:22.415850px;}
._10{width:24.327544px;}
._3{width:25.943736px;}
._9{width:28.314795px;}
._f{width:30.366005px;}
._39{width:32.601608px;}
._37{width:34.370977px;}
._3a{width:36.123840px;}
._3b{width:37.442000px;}
._46{width:39.571454px;}
._4a{width:61.868160px;}
._13{width:90.704102px;}
._26{width:161.640245px;}
._1b{width:166.344653px;}
._2d{width:176.927011px;}
._2f{width:179.979595px;}
._16{width:181.300608px;}
._25{width:188.455795px;}
._19{width:196.256563px;}
._2e{width:213.633446px;}
._21{width:220.358246px;}
._30{width:224.969011px;}
._34{width:227.405837px;}
._22{width:241.178227px;}
._24{width:248.441011px;}
._2c{width:261.890611px;}
._28{width:275.340211px;}
._2b{width:281.634624px;}
._33{width:287.821440px;}
._27{width:300.840653px;}
._31{width:318.863117px;}
._2a{width:327.739853px;}
._35{width:352.605907px;}
._32{width:357.183907px;}
._36{width:370.778573px;}
._c{width:378.832927px;}
._29{width:601.705056px;}
._23{width:619.596173px;}
._1e{width:649.023898px;}
._1a{width:659.406989px;}
._1c{width:664.679232px;}
._17{width:675.062323px;}
._1f{width:751.525066px;}
._20{width:790.663488px;}
._1d{width:836.941709px;}
._18{width:845.764646px;}
._14{width:849.853325px;}
._15{width:888.964762px;}
._3d{width:1838.689906px;}
._41{width:2274.148613px;}
._47{width:2390.064970px;}
._d{width:2413.974970px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(34,34,61);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:43.600200px;}
.fsb{font-size:44.528400px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:50.220000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.108000px;}
.fse{font-size:55.062000px;}
.fsc{font-size:55.911600px;}
.fs2{font-size:59.775600px;}
.fs10{font-size:62.100000px;}
.fs9{font-size:62.286600px;}
.fsf{font-size:69.138000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:109.609560px;}
.y150{bottom:-222.518100px;}
.y13d{bottom:-182.431125px;}
.y16e{bottom:-142.616100px;}
.y16d{bottom:-122.537100px;}
.yfe{bottom:-110.183822px;}
.y144{bottom:-105.008625px;}
.y16c{bottom:-102.665100px;}
.yfd{bottom:-91.958895px;}
.y143{bottom:-88.938225px;}
.y16b{bottom:-82.793100px;}
.y142{bottom:-72.867825px;}
.y16a{bottom:-62.921100px;}
.y141{bottom:-56.797425px;}
.y169{bottom:-42.945600px;}
.y140{bottom:-40.643325px;}
.y13f{bottom:-24.572925px;}
.yff{bottom:-20.273911px;}
.y168{bottom:-17.277600px;}
.y13e{bottom:-3.731625px;}
.y0{bottom:0.000000px;}
.y18{bottom:16.704213px;}
.y45{bottom:31.890000px;}
.y18b{bottom:103.621500px;}
.y16{bottom:104.646000px;}
.y44{bottom:105.222000px;}
.yd6{bottom:116.478000px;}
.y7b{bottom:117.802500px;}
.y1a1{bottom:119.709000px;}
.y18a{bottom:122.449500px;}
.y15{bottom:122.535000px;}
.y43{bottom:124.051500px;}
.y1d9{bottom:127.263000px;}
.yd5{bottom:135.307500px;}
.y7a{bottom:136.632000px;}
.y1a0{bottom:137.283000px;}
.y14{bottom:140.422500px;}
.y189{bottom:141.279000px;}
.y42{bottom:142.881000px;}
.y1d8{bottom:144.523500px;}
.y106{bottom:144.627000px;}
.y14c{bottom:145.885500px;}
.y20d{bottom:150.978000px;}
.yd4{bottom:154.137000px;}
.y19f{bottom:154.857000px;}
.y139{bottom:155.461500px;}
.y13{bottom:158.310000px;}
.y79{bottom:159.945000px;}
.y188{bottom:160.108500px;}
.y41{bottom:161.710500px;}
.y1d7{bottom:161.784000px;}
.y105{bottom:163.860000px;}
.y14b{bottom:165.118500px;}
.y20c{bottom:168.238500px;}
.y19e{bottom:172.431000px;}
.yd3{bottom:172.966500px;}
.y137{bottom:174.291000px;}
.y12{bottom:176.199000px;}
.y187{bottom:178.938000px;}
.y1d5{bottom:179.043000px;}
.y1d6{bottom:179.044500px;}
.y138{bottom:179.716500px;}
.y78{bottom:180.120000px;}
.y40{bottom:180.540000px;}
.y104{bottom:183.091500px;}
.y14a{bottom:184.351500px;}
.y20b{bottom:185.499000px;}
.y19d{bottom:190.005000px;}
.yd2{bottom:191.796000px;}
.y136{bottom:193.120500px;}
.y11{bottom:194.086500px;}
.y1d4{bottom:196.303500px;}
.y186{bottom:197.767500px;}
.y3f{bottom:199.369500px;}
.y103{bottom:202.324500px;}
.y20a{bottom:202.759500px;}
.y149{bottom:203.584500px;}
.yd1{bottom:210.625500px;}
.y135{bottom:211.950000px;}
.y10{bottom:211.974000px;}
.y1d3{bottom:213.564000px;}
.y77{bottom:213.744000px;}
.y19c{bottom:216.546000px;}
.y185{bottom:216.597000px;}
.y3e{bottom:218.199000px;}
.y209{bottom:220.020000px;}
.y102{bottom:221.557500px;}
.y148{bottom:222.817500px;}
.ya0{bottom:223.393500px;}
.yd0{bottom:229.455000px;}
.yf{bottom:229.863000px;}
.y134{bottom:230.779500px;}
.y1d2{bottom:230.824500px;}
.y76{bottom:232.573500px;}
.y19b{bottom:234.591000px;}
.y184{bottom:235.426500px;}
.y3d{bottom:237.028500px;}
.y208{bottom:237.280500px;}
.y101{bottom:240.790500px;}
.y147{bottom:242.050500px;}
.y9e{bottom:242.223000px;}
.y9f{bottom:247.648500px;}
.y1d1{bottom:248.085000px;}
.y133{bottom:249.609000px;}
.y75{bottom:251.403000px;}
.y19a{bottom:252.636000px;}
.ycf{bottom:252.768000px;}
.y183{bottom:254.256000px;}
.y207{bottom:254.541000px;}
.y3c{bottom:255.858000px;}
.y100{bottom:260.023500px;}
.y9d{bottom:261.052500px;}
.y146{bottom:261.282000px;}
.y1d0{bottom:265.345500px;}
.y132{bottom:268.438500px;}
.y74{bottom:270.232500px;}
.y206{bottom:271.801500px;}
.y182{bottom:273.085500px;}
.y3b{bottom:274.687500px;}
.y9b{bottom:279.882000px;}
.y145{bottom:280.515000px;}
.yfc{bottom:282.453000px;}
.y1cf{bottom:282.606000px;}
.y9c{bottom:285.307500px;}
.yce{bottom:286.392000px;}
.y131{bottom:287.268000px;}
.y199{bottom:288.613500px;}
.y73{bottom:289.062000px;}
.y181{bottom:291.915000px;}
.y3a{bottom:293.517000px;}
.y9a{bottom:298.711500px;}
.y1ce{bottom:299.866500px;}
.ye{bottom:299.892000px;}
.y13a{bottom:302.944500px;}
.ycd{bottom:305.221500px;}
.y130{bottom:306.097500px;}
.y205{bottom:306.321000px;}
.y198{bottom:307.443000px;}
.y72{bottom:307.891500px;}
.y180{bottom:310.744500px;}
.y39{bottom:312.346500px;}
.y1cd{bottom:317.127000px;}
.y99{bottom:317.541000px;}
.yd{bottom:317.779500px;}
.y204{bottom:323.581500px;}
.ycc{bottom:324.051000px;}
.y12f{bottom:324.927000px;}
.y197{bottom:326.272500px;}
.y71{bottom:326.719500px;}
.y17f{bottom:329.574000px;}
.y38{bottom:331.176000px;}
.y1cc{bottom:334.386000px;}
.yc{bottom:335.667000px;}
.y98{bottom:336.370500px;}
.y203{bottom:340.842000px;}
.ycb{bottom:342.880500px;}
.y12e{bottom:343.756500px;}
.y196{bottom:345.102000px;}
.y70{bottom:345.549000px;}
.yfb{bottom:346.894500px;}
.y17e{bottom:348.403500px;}
.y37{bottom:350.005500px;}
.y1cb{bottom:351.646500px;}
.yb{bottom:353.556000px;}
.y97{bottom:355.200000px;}
.y202{bottom:358.102500px;}
.yc9{bottom:361.710000px;}
.y12d{bottom:362.586000px;}
.y195{bottom:363.931500px;}
.y6f{bottom:364.378500px;}
.yfa{bottom:365.724000px;}
.yca{bottom:367.134000px;}
.y17d{bottom:367.233000px;}
.y36{bottom:368.835000px;}
.y1ca{bottom:368.907000px;}
.y96{bottom:374.029500px;}
.y201{bottom:375.363000px;}
.yc8{bottom:380.539500px;}
.y12c{bottom:381.415500px;}
.ya{bottom:381.904500px;}
.y194{bottom:382.761000px;}
.y6e{bottom:383.208000px;}
.yf9{bottom:384.553500px;}
.y17c{bottom:386.062500px;}
.y1c9{bottom:386.167500px;}
.y35{bottom:392.148000px;}
.y200{bottom:392.623500px;}
.y95{bottom:397.342500px;}
.yc7{bottom:399.369000px;}
.y9{bottom:399.792000px;}
.y12b{bottom:400.245000px;}
.y193{bottom:401.589000px;}
.y6d{bottom:402.037500px;}
.yf8{bottom:403.383000px;}
.y1c8{bottom:403.428000px;}
.y17b{bottom:404.892000px;}
.y1ff{bottom:409.884000px;}
.yc6{bottom:418.198500px;}
.y12a{bottom:419.074500px;}
.y192{bottom:420.418500px;}
.y1c7{bottom:420.688500px;}
.y6c{bottom:420.867000px;}
.yf7{bottom:422.212500px;}
.y17a{bottom:423.721500px;}
.y8{bottom:426.646500px;}
.y1fe{bottom:427.144500px;}
.y94{bottom:430.966500px;}
.yc4{bottom:437.026500px;}
.y129{bottom:437.904000px;}
.y1c6{bottom:437.949000px;}
.y191{bottom:439.248000px;}
.y6b{bottom:439.696500px;}
.yf6{bottom:441.042000px;}
.yc5{bottom:442.452000px;}
.y179{bottom:442.551000px;}
.y1fd{bottom:444.403500px;}
.y7{bottom:444.534000px;}
.y93{bottom:449.796000px;}
.y1c5{bottom:455.209500px;}
.yc3{bottom:455.856000px;}
.y128{bottom:456.733500px;}
.y190{bottom:458.077500px;}
.y6a{bottom:458.526000px;}
.yf5{bottom:459.871500px;}
.y178{bottom:461.380500px;}
.y1fc{bottom:461.664000px;}
.y6{bottom:462.423000px;}
.y34{bottom:467.298000px;}
.y92{bottom:468.625500px;}
.y1c4{bottom:472.470000px;}
.y127{bottom:475.563000px;}
.y18f{bottom:476.907000px;}
.y69{bottom:477.355500px;}
.yf4{bottom:478.701000px;}
.y1fb{bottom:478.924500px;}
.yc2{bottom:479.169000px;}
.y177{bottom:480.210000px;}
.y5{bottom:480.310500px;}
.y91{bottom:487.455000px;}
.y1c3{bottom:489.729000px;}
.y126{bottom:494.392500px;}
.yc1{bottom:494.860500px;}
.y18e{bottom:495.736500px;}
.y68{bottom:496.185000px;}
.yf3{bottom:497.530500px;}
.y4{bottom:498.198000px;}
.y176{bottom:503.523000px;}
.y33{bottom:504.687000px;}
.y90{bottom:506.284500px;}
.y1c2{bottom:506.989500px;}
.y167{bottom:510.951900px;}
.y125{bottom:513.222000px;}
.y1fa{bottom:513.445500px;}
.y18d{bottom:514.566000px;}
.y67{bottom:515.014500px;}
.y3{bottom:516.087000px;}
.yf2{bottom:516.360000px;}
.y32{bottom:524.145000px;}
.y1c1{bottom:524.250000px;}
.y8f{bottom:525.114000px;}
.yc0{bottom:528.484500px;}
.y1f9{bottom:530.706000px;}
.y175{bottom:531.412500px;}
.y166{bottom:533.100900px;}
.y66{bottom:533.844000px;}
.y2{bottom:533.974500px;}
.yf1{bottom:535.189500px;}
.y124{bottom:536.533500px;}
.y18c{bottom:537.879000px;}
.y1c0{bottom:541.510500px;}
.y31{bottom:543.601500px;}
.y8e{bottom:543.943500px;}
.ybf{bottom:547.314000px;}
.y1f8{bottom:547.966500px;}
.y174{bottom:550.645500px;}
.y1{bottom:551.862000px;}
.y65{bottom:552.673500px;}
.yf0{bottom:554.019000px;}
.y165{bottom:555.249900px;}
.y1bf{bottom:558.771000px;}
.y8d{bottom:562.773000px;}
.y30{bottom:563.058000px;}
.y1f7{bottom:565.227000px;}
.ybe{bottom:566.143500px;}
.y173{bottom:569.878500px;}
.y123{bottom:570.157500px;}
.y64{bottom:571.503000px;}
.yef{bottom:572.848500px;}
.y1be{bottom:576.031500px;}
.y164{bottom:577.295400px;}
.y8c{bottom:581.602500px;}
.y1f6{bottom:582.487500px;}
.y2f{bottom:582.516000px;}
.ybc{bottom:584.973000px;}
.y122{bottom:588.987000px;}
.y171{bottom:589.111500px;}
.y63{bottom:590.332500px;}
.ybd{bottom:590.397000px;}
.yee{bottom:591.678000px;}
.y1bd{bottom:593.292000px;}
.y172{bottom:593.994000px;}
.y163{bottom:599.444400px;}
.y1f5{bottom:599.746500px;}
.y2e{bottom:601.972500px;}
.ybb{bottom:603.802500px;}
.y8b{bottom:604.914000px;}
.y121{bottom:607.816500px;}
.y170{bottom:608.344500px;}
.y62{bottom:609.162000px;}
.yed{bottom:610.507500px;}
.y1bc{bottom:610.552500px;}
.y1f4{bottom:617.007000px;}
.y2d{bottom:621.430500px;}
.y162{bottom:621.593400px;}
.yba{bottom:622.632000px;}
.y120{bottom:626.646000px;}
.y16f{bottom:627.577500px;}
.y1bb{bottom:627.811500px;}
.y61{bottom:627.991500px;}
.yec{bottom:629.337000px;}
.y1f3{bottom:634.267500px;}
.y2c{bottom:640.887000px;}
.yb9{bottom:641.461500px;}
.y161{bottom:643.638900px;}
.y1ba{bottom:645.072000px;}
.y11f{bottom:645.475500px;}
.y60{bottom:646.821000px;}
.yeb{bottom:648.166500px;}
.y14d{bottom:650.007000px;}
.y8a{bottom:650.227500px;}
.y1f2{bottom:651.528000px;}
.yb8{bottom:660.291000px;}
.y2b{bottom:660.343500px;}
.y1b9{bottom:662.332500px;}
.y11e{bottom:664.305000px;}
.y5f{bottom:665.650500px;}
.y160{bottom:665.787900px;}
.y89{bottom:666.666000px;}
.yea{bottom:666.994500px;}
.y1f1{bottom:668.788500px;}
.yb6{bottom:679.120500px;}
.y1b8{bottom:679.593000px;}
.y2a{bottom:679.801500px;}
.y11d{bottom:683.134500px;}
.y5e{bottom:684.480000px;}
.yb7{bottom:684.544500px;}
.ye9{bottom:685.824000px;}
.y1f0{bottom:686.049000px;}
.y15f{bottom:687.833400px;}
.y88{bottom:690.306000px;}
.y1b7{bottom:696.853500px;}
.yb5{bottom:697.950000px;}
.y29{bottom:699.258000px;}
.y11c{bottom:701.964000px;}
.y5d{bottom:703.309500px;}
.ye8{bottom:704.653500px;}
.y87{bottom:706.744500px;}
.y15e{bottom:709.982400px;}
.y1b6{bottom:714.114000px;}
.yb4{bottom:716.779500px;}
.y28{bottom:718.714500px;}
.y1ef{bottom:720.570000px;}
.y11b{bottom:720.793500px;}
.y5c{bottom:722.139000px;}
.y86{bottom:723.183000px;}
.ye7{bottom:723.483000px;}
.y1b5{bottom:731.374500px;}
.y15d{bottom:732.131400px;}
.y1ee{bottom:737.829000px;}
.y27{bottom:738.172500px;}
.y11a{bottom:739.623000px;}
.yb3{bottom:740.091000px;}
.y5b{bottom:740.968500px;}
.ye6{bottom:742.312500px;}
.y85{bottom:746.823000px;}
.y1b4{bottom:748.635000px;}
.y15c{bottom:754.176900px;}
.y1ed{bottom:755.089500px;}
.y26{bottom:757.629000px;}
.y119{bottom:758.452500px;}
.y5a{bottom:759.798000px;}
.ye5{bottom:761.142000px;}
.y84{bottom:763.261500px;}
.y1b3{bottom:765.895500px;}
.y1ec{bottom:772.350000px;}
.y15b{bottom:776.325900px;}
.y25{bottom:777.087000px;}
.y118{bottom:777.282000px;}
.y59{bottom:778.627500px;}
.y83{bottom:779.700000px;}
.ye4{bottom:779.971500px;}
.y1b2{bottom:783.154500px;}
.yb2{bottom:785.404500px;}
.y1eb{bottom:789.610500px;}
.y117{bottom:796.111500px;}
.y24{bottom:796.543500px;}
.y58{bottom:797.457000px;}
.y15a{bottom:798.371400px;}
.ye3{bottom:798.801000px;}
.y1b1{bottom:800.415000px;}
.yb1{bottom:801.843000px;}
.y82{bottom:803.341500px;}
.y1ea{bottom:806.871000px;}
.yb0{bottom:810.061500px;}
.y116{bottom:814.941000px;}
.y23{bottom:816.000000px;}
.y57{bottom:816.286500px;}
.ye2{bottom:817.630500px;}
.y1b0{bottom:817.675500px;}
.y159{bottom:820.520400px;}
.y1e9{bottom:824.131500px;}
.y115{bottom:833.770500px;}
.y1af{bottom:834.936000px;}
.y56{bottom:835.114500px;}
.y22{bottom:835.458000px;}
.ye1{bottom:836.460000px;}
.y81{bottom:837.949500px;}
.y1e8{bottom:841.392000px;}
.yaf{bottom:841.921500px;}
.y158{bottom:842.669400px;}
.y1ae{bottom:852.196500px;}
.y114{bottom:852.600000px;}
.y55{bottom:853.944000px;}
.ye0{bottom:855.289500px;}
.y80{bottom:857.182500px;}
.yae{bottom:858.360000px;}
.y1e7{bottom:858.652500px;}
.y157{bottom:864.714900px;}
.y1ad{bottom:869.457000px;}
.y113{bottom:871.429500px;}
.y13c{bottom:872.356275px;}
.y54{bottom:872.773500px;}
.y21{bottom:874.042500px;}
.ydf{bottom:874.119000px;}
.yad{bottom:874.798500px;}
.y1e6{bottom:875.913000px;}
.y7f{bottom:876.415500px;}
.y13b{bottom:881.312175px;}
.y1ac{bottom:886.717500px;}
.y156{bottom:886.863900px;}
.y112{bottom:890.259000px;}
.yac{bottom:891.237000px;}
.y53{bottom:891.603000px;}
.yde{bottom:892.948500px;}
.y1e5{bottom:893.172000px;}
.y20{bottom:894.522000px;}
.y7e{bottom:895.647000px;}
.y1ab{bottom:903.978000px;}
.y1f{bottom:906.322500px;}
.y155{bottom:908.909400px;}
.y111{bottom:909.088500px;}
.y52{bottom:910.432500px;}
.ydd{bottom:911.778000px;}
.yab{bottom:914.877000px;}
.y7d{bottom:914.880000px;}
.y1aa{bottom:921.237000px;}
.y1e{bottom:926.802000px;}
.y1e4{bottom:927.693000px;}
.y110{bottom:927.918000px;}
.y51{bottom:929.262000px;}
.ydc{bottom:930.607500px;}
.y154{bottom:931.058400px;}
.yaa{bottom:931.315500px;}
.y210{bottom:940.395000px;}
.y1a9{bottom:942.981000px;}
.y1e3{bottom:944.953500px;}
.y10f{bottom:946.747500px;}
.ya9{bottom:947.754000px;}
.y50{bottom:948.091500px;}
.ydb{bottom:949.437000px;}
.y20f{bottom:957.655500px;}
.y153{bottom:958.278900px;}
.y1e2{bottom:962.214000px;}
.y10e{bottom:965.577000px;}
.y4f{bottom:966.921000px;}
.yda{bottom:968.266500px;}
.ya8{bottom:971.394000px;}
.y1d{bottom:971.478000px;}
.y7c{bottom:972.346500px;}
.y20e{bottom:974.916000px;}
.y1a8{bottom:976.605000px;}
.y1e1{bottom:979.474500px;}
.y10d{bottom:984.406500px;}
.y4e{bottom:985.750500px;}
.ya7{bottom:987.832500px;}
.yd9{bottom:991.579500px;}
.y1a7{bottom:994.179000px;}
.y1e0{bottom:996.735000px;}
.y152{bottom:1000.748400px;}
.y10c{bottom:1003.236000px;}
.ya6{bottom:1004.271000px;}
.y4d{bottom:1004.580000px;}
.yd8{bottom:1007.269500px;}
.y1c{bottom:1008.240000px;}
.y1a6{bottom:1011.753000px;}
.y1df{bottom:1013.995500px;}
.y151{bottom:1020.723900px;}
.y10b{bottom:1022.064000px;}
.y4c{bottom:1023.409500px;}
.yd7{bottom:1027.444500px;}
.ya5{bottom:1027.912500px;}
.y1a5{bottom:1029.327000px;}
.y1de{bottom:1031.254500px;}
.y1b{bottom:1036.485000px;}
.y10a{bottom:1040.893500px;}
.y4b{bottom:1042.239000px;}
.ya4{bottom:1044.351000px;}
.y1dd{bottom:1048.515000px;}
.y1a4{bottom:1055.868000px;}
.y109{bottom:1059.723000px;}
.ya3{bottom:1060.789500px;}
.y4a{bottom:1061.068500px;}
.y1a{bottom:1064.728500px;}
.y1dc{bottom:1065.775500px;}
.y108{bottom:1078.552500px;}
.y49{bottom:1079.898000px;}
.y14f{bottom:1081.788900px;}
.y1a3{bottom:1082.409000px;}
.y1db{bottom:1083.036000px;}
.ya2{bottom:1084.429500px;}
.y14e{bottom:1092.863400px;}
.y19{bottom:1092.972000px;}
.y48{bottom:1098.727500px;}
.y1a2{bottom:1099.983000px;}
.y1da{bottom:1100.296500px;}
.y107{bottom:1101.865500px;}
.y47{bottom:1117.557000px;}
.ya1{bottom:1119.037500px;}
.y17{bottom:1136.460000px;}
.y46{bottom:1177.662000px;}
.h9{height:26.110157px;}
.h15{height:27.855430px;}
.h21{height:29.037733px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h10{height:31.526842px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.h17{height:37.489869px;}
.h11{height:38.734848px;}
.hb{height:39.165235px;}
.hc{height:39.434227px;}
.h19{height:41.180073px;}
.h12{height:41.482876px;}
.hd{height:43.038432px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h1b{height:46.443691px;}
.h22{height:49.117939px;}
.h20{height:50.671942px;}
.h1d{height:50.921596px;}
.h4{height:50.930649px;}
.h1a{height:51.707310px;}
.h13{height:53.228842px;}
.h8{height:54.405312px;}
.h1f{height:57.430371px;}
.h1e{height:63.939146px;}
.h14{height:72.045235px;}
.h5{height:74.315282px;}
.h7{height:77.469696px;}
.h1c{height:482.498025px;}
.h18{height:829.564650px;}
.h16{height:850.055850px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:240.774407px;}
.w4{width:494.636310px;}
.w5{width:531.424200px;}
.w3{width:561.991095px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6f{left:-238.990125px;}
.x6c{left:-185.689845px;}
.x68{left:-17.407305px;}
.x70{left:-14.050125px;}
.x6e{left:-3.781845px;}
.x0{left:0.000000px;}
.x71{left:22.588875px;}
.x3{left:52.444500px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x4f{left:62.541000px;}
.x43{left:66.841500px;}
.x47{left:79.969500px;}
.x44{left:83.331000px;}
.x88{left:85.848000px;}
.x48{left:90.978000px;}
.x51{left:94.734000px;}
.x53{left:98.097000px;}
.x54{left:99.234000px;}
.x52{left:101.460000px;}
.x45{left:172.369500px;}
.x50{left:186.060000px;}
.x46{left:239.092500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x55{left:259.380000px;}
.x5{left:269.914500px;}
.x7{left:281.479500px;}
.x86{left:318.405000px;}
.x32{left:324.534000px;}
.x2b{left:329.911500px;}
.x87{left:333.348000px;}
.x33{left:339.477000px;}
.x10{left:340.663500px;}
.x2c{left:344.856000px;}
.x11{left:348.135000px;}
.x77{left:350.371500px;}
.x3e{left:352.260000px;}
.x4d{left:353.863500px;}
.x4e{left:360.669000px;}
.x2d{left:363.607500px;}
.x78{left:365.314500px;}
.x79{left:369.679500px;}
.x18{left:372.469500px;}
.x56{left:374.452500px;}
.x36{left:380.422500px;}
.x7a{left:384.624000px;}
.x19{left:387.412500px;}
.x58{left:390.289500px;}
.x37{left:395.365500px;}
.x38{left:399.177000px;}
.x7b{left:403.299000px;}
.x59{left:405.232500px;}
.x39{left:414.120000px;}
.x3a{left:417.931500px;}
.x3b{left:432.876000px;}
.x5f{left:463.705500px;}
.x60{left:470.511000px;}
.x63{left:480.856500px;}
.x84{left:485.934000px;}
.x49{left:493.374000px;}
.x64{left:495.799500px;}
.x85{left:500.877000px;}
.x4a{left:505.665000px;}
.x6d{left:507.848355px;}
.x3c{left:522.829500px;}
.x4b{left:524.601000px;}
.x3d{left:530.301000px;}
.x4c{left:531.406500px;}
.x72{left:535.810875px;}
.x5a{left:541.255500px;}
.x23{left:557.289000px;}
.x24{left:572.233500px;}
.x25{left:576.043500px;}
.x69{left:579.964814px;}
.x21{left:589.207500px;}
.x26{left:590.988000px;}
.x75{left:595.791000px;}
.x3f{left:597.924000px;}
.x22{left:604.152000px;}
.x76{left:610.735500px;}
.x40{left:612.868500px;}
.x41{left:639.220500px;}
.x42{left:646.027500px;}
.x57{left:647.152500px;}
.x12{left:651.669000px;}
.x13{left:659.140500px;}
.x73{left:661.929000px;}
.x65{left:663.201000px;}
.x6a{left:665.379000px;}
.x74{left:668.256000px;}
.x6b{left:669.445500px;}
.x27{left:675.583500px;}
.x1f{left:677.574000px;}
.x20{left:685.045500px;}
.x61{left:688.683000px;}
.x28{left:690.526500px;}
.x2e{left:692.388000px;}
.x62{left:695.488500px;}
.xe{left:697.521000px;}
.x2f{left:700.009500px;}
.x7c{left:703.428000px;}
.xf{left:704.992500px;}
.x7d{left:710.899500px;}
.x31{left:713.389500px;}
.x30{left:714.954000px;}
.x1d{left:716.404500px;}
.x14{left:718.147500px;}
.x15{left:725.619000px;}
.xa{left:727.062000px;}
.x8{left:729.699000px;}
.x1e{left:731.347500px;}
.x16{left:733.218000px;}
.xb{left:734.535000px;}
.x9{left:737.170500px;}
.x17{left:740.689500px;}
.x34{left:743.365500px;}
.x83{left:745.068000px;}
.x7e{left:748.333500px;}
.x5b{left:752.598000px;}
.x5c{left:759.403500px;}
.x7f{left:767.052000px;}
.x80{left:770.824500px;}
.x66{left:773.584500px;}
.x5d{left:780.705000px;}
.x81{left:785.769000px;}
.x67{left:788.527500px;}
.x5e{left:789.934500px;}
.x29{left:795.375000px;}
.x1a{left:799.441500px;}
.x82{left:804.486000px;}
.x2a{left:810.319500px;}
.x1b{left:814.384500px;}
.x1c{left:818.046000px;}
.xc{left:824.770500px;}
.xd{left:832.243500px;}
.x35{left:837.781500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:29.226667pt;}
.ls1f{letter-spacing:-7.482667pt;}
.ls1c{letter-spacing:-0.313413pt;}
.ls1e{letter-spacing:-0.276000pt;}
.lsb{letter-spacing:-0.134669pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000082pt;}
.ls27{letter-spacing:0.000504pt;}
.ls2f{letter-spacing:0.000600pt;}
.ls12{letter-spacing:0.000711pt;}
.ls28{letter-spacing:0.000921pt;}
.ls17{letter-spacing:0.001535pt;}
.ls16{letter-spacing:0.002255pt;}
.ls11{letter-spacing:0.002471pt;}
.ls21{letter-spacing:0.002525pt;}
.ls15{letter-spacing:0.003071pt;}
.ls13{letter-spacing:0.003182pt;}
.lsa{letter-spacing:0.004101pt;}
.ls2b{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.014880pt;}
.lsd{letter-spacing:0.089280pt;}
.lsf{letter-spacing:0.104160pt;}
.ls1d{letter-spacing:0.119600pt;}
.ls1b{letter-spacing:0.148427pt;}
.lsc{letter-spacing:0.148800pt;}
.ls18{letter-spacing:0.184000pt;}
.lse{letter-spacing:0.297600pt;}
.ls0{letter-spacing:2.665203pt;}
.ls19{letter-spacing:2.668000pt;}
.ls9{letter-spacing:3.163733pt;}
.ls5{letter-spacing:10.626533pt;}
.ls20{letter-spacing:11.070650pt;}
.ls2a{letter-spacing:11.756365pt;}
.ls24{letter-spacing:11.767131pt;}
.ls2c{letter-spacing:11.859766pt;}
.ls29{letter-spacing:11.898395pt;}
.ls22{letter-spacing:11.954133pt;}
.ls23{letter-spacing:11.959467pt;}
.ls2e{letter-spacing:11.991467pt;}
.ls30{letter-spacing:12.098781pt;}
.ls26{letter-spacing:12.150170pt;}
.ls7{letter-spacing:12.433325pt;}
.ls2d{letter-spacing:13.132382pt;}
.ls1a{letter-spacing:13.507861pt;}
.ls8{letter-spacing:13.958363pt;}
.ls4{letter-spacing:15.929767pt;}
.ls25{letter-spacing:16.583362pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.wse6{word-spacing:-55.200000pt;}
.wsd5{word-spacing:-44.640000pt;}
.wse3{word-spacing:-15.512427pt;}
.wse5{word-spacing:-15.483600pt;}
.wse4{word-spacing:-15.050587pt;}
.wse8{word-spacing:-13.800000pt;}
.wse2{word-spacing:-12.420000pt;}
.wse1{word-spacing:-12.236000pt;}
.wsac{word-spacing:-11.955200pt;}
.wsd4{word-spacing:-11.174880pt;}
.wsd3{word-spacing:-11.160000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsc{word-spacing:-10.095467pt;}
.wsd2{word-spacing:-10.044000pt;}
.wsd1{word-spacing:-9.895200pt;}
.ws4{word-spacing:-9.298400pt;}
.wse7{word-spacing:-6.317333pt;}
.ws96{word-spacing:-4.410111pt;}
.ws41{word-spacing:-2.975497pt;}
.wsff{word-spacing:-2.497292pt;}
.ws51{word-spacing:-2.337890pt;}
.ws92{word-spacing:-2.019087pt;}
.ws69{word-spacing:-1.965953pt;}
.ws116{word-spacing:-1.817190pt;}
.wsc5{word-spacing:-1.806551pt;}
.ws4b{word-spacing:-1.647150pt;}
.wsa7{word-spacing:-1.487748pt;}
.ws11c{word-spacing:-1.482445pt;}
.wsc9{word-spacing:-1.434614pt;}
.wsc6{word-spacing:-1.275213pt;}
.ws3c{word-spacing:-1.222079pt;}
.ws3b{word-spacing:-1.168945pt;}
.ws110{word-spacing:-1.147699pt;}
.ws126{word-spacing:-0.956416pt;}
.wsbe{word-spacing:-0.956410pt;}
.wsa2{word-spacing:-0.915293pt;}
.ws63{word-spacing:-0.903276pt;}
.ws112{word-spacing:-0.860774pt;}
.ws86{word-spacing:-0.850142pt;}
.ws31{word-spacing:-0.797008pt;}
.ws109{word-spacing:-0.717312pt;}
.ws95{word-spacing:-0.690740pt;}
.wsec{word-spacing:-0.669491pt;}
.ws64{word-spacing:-0.637606pt;}
.wseb{word-spacing:-0.621670pt;}
.wsb8{word-spacing:-0.531339pt;}
.ws56{word-spacing:-0.478208pt;}
.ws10f{word-spacing:-0.430387pt;}
.ws28{word-spacing:-0.425071pt;}
.ws30{word-spacing:-0.318803pt;}
.ws54{word-spacing:-0.286925pt;}
.ws90{word-spacing:-0.275263pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsaa{word-spacing:-0.239104pt;}
.wsc0{word-spacing:-0.219271pt;}
.ws48{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.wsfc{word-spacing:-0.149156pt;}
.ws11{word-spacing:-0.143462pt;}
.ws3f{word-spacing:-0.106268pt;}
.wse9{word-spacing:-0.095642pt;}
.ws33{word-spacing:-0.053134pt;}
.wsb0{word-spacing:-0.047821pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws6d{word-spacing:-0.041483pt;}
.ws2{word-spacing:-0.037194pt;}
.ws114{word-spacing:-0.008951pt;}
.ws1{word-spacing:0.000000pt;}
.wsf0{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws5d{word-spacing:0.072097pt;}
.ws5b{word-spacing:0.095642pt;}
.ws24{word-spacing:0.106268pt;}
.ws58{word-spacing:0.123126pt;}
.wsf{word-spacing:0.143462pt;}
.ws38{word-spacing:0.159402pt;}
.ws103{word-spacing:0.166212pt;}
.ws53{word-spacing:0.191283pt;}
.ws12e{word-spacing:0.192005pt;}
.ws65{word-spacing:0.202994pt;}
.ws67{word-spacing:0.208150pt;}
.ws2f{word-spacing:0.212535pt;}
.wsf5{word-spacing:0.218892pt;}
.wsee{word-spacing:0.220288pt;}
.ws6f{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.ws10{word-spacing:0.286925pt;}
.ws84{word-spacing:0.318803pt;}
.ws99{word-spacing:0.371937pt;}
.ws123{word-spacing:0.382566pt;}
.ws13{word-spacing:0.573850pt;}
.wsf8{word-spacing:0.583119pt;}
.ws87{word-spacing:0.584473pt;}
.wsd0{word-spacing:0.637606pt;}
.ws6c{word-spacing:0.661373pt;}
.ws1c{word-spacing:0.669491pt;}
.ws47{word-spacing:0.690740pt;}
.wsb6{word-spacing:0.715525pt;}
.ws140{word-spacing:0.717312pt;}
.ws45{word-spacing:0.729525pt;}
.ws43{word-spacing:0.743874pt;}
.ws119{word-spacing:0.765133pt;}
.wsd7{word-spacing:0.812954pt;}
.wsa5{word-spacing:0.850142pt;}
.ws138{word-spacing:0.908595pt;}
.wsb4{word-spacing:0.917582pt;}
.ws25{word-spacing:0.956410pt;}
.wsad{word-spacing:1.004237pt;}
.ws62{word-spacing:1.009543pt;}
.wsba{word-spacing:1.062677pt;}
.ws12{word-spacing:1.099878pt;}
.wsa{word-spacing:1.227389pt;}
.ws52{word-spacing:1.275213pt;}
.ws37{word-spacing:1.328347pt;}
.ws94{word-spacing:1.381481pt;}
.ws21{word-spacing:1.434614pt;}
.ws4c{word-spacing:1.540882pt;}
.ws106{word-spacing:1.578086pt;}
.wsf3{word-spacing:1.594016pt;}
.wsce{word-spacing:1.647150pt;}
.ws98{word-spacing:1.753418pt;}
.wse0{word-spacing:1.769370pt;}
.ws42{word-spacing:1.806551pt;}
.wsb7{word-spacing:1.859685pt;}
.wsd6{word-spacing:1.912832pt;}
.ws135{word-spacing:1.960653pt;}
.ws10d{word-spacing:2.008474pt;}
.ws10e{word-spacing:2.056294pt;}
.wsfd{word-spacing:2.072221pt;}
.ws8a{word-spacing:2.125355pt;}
.wsea{word-spacing:2.151936pt;}
.ws83{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws3a{word-spacing:2.391024pt;}
.ws10a{word-spacing:2.438861pt;}
.ws107{word-spacing:2.462229pt;}
.ws20{word-spacing:2.497292pt;}
.wscd{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.ws3d{word-spacing:2.603559pt;}
.ws40{word-spacing:2.709827pt;}
.ws93{word-spacing:2.762961pt;}
.ws35{word-spacing:2.816095pt;}
.ws1d{word-spacing:2.861926pt;}
.ws141{word-spacing:2.862720pt;}
.ws11d{word-spacing:2.862976pt;}
.ws125{word-spacing:2.863198pt;}
.ws127{word-spacing:2.865894pt;}
.ws8b{word-spacing:2.869229pt;}
.ws13a{word-spacing:2.869248pt;}
.ws108{word-spacing:2.917069pt;}
.wsf9{word-spacing:2.922363pt;}
.ws3e{word-spacing:2.975497pt;}
.ws10c{word-spacing:3.012710pt;}
.ws27{word-spacing:3.028630pt;}
.ws11a{word-spacing:3.060531pt;}
.wse{word-spacing:3.092146pt;}
.ws143{word-spacing:3.108352pt;}
.ws16{word-spacing:3.129507pt;}
.ws1e{word-spacing:3.188032pt;}
.wsb9{word-spacing:3.241166pt;}
.wsca{word-spacing:3.267877pt;}
.wscc{word-spacing:3.294300pt;}
.ws1a{word-spacing:3.299635pt;}
.ws39{word-spacing:3.347434pt;}
.ws12b{word-spacing:3.395277pt;}
.ws104{word-spacing:3.634381pt;}
.ws105{word-spacing:3.682202pt;}
.wsc3{word-spacing:3.772505pt;}
.ws55{word-spacing:3.777843pt;}
.ws15{word-spacing:3.873485pt;}
.ws89{word-spacing:3.931906pt;}
.ws18{word-spacing:3.956747pt;}
.ws97{word-spacing:4.197575pt;}
.ws88{word-spacing:4.303843pt;}
.ws6a{word-spacing:4.358020pt;}
.ws85{word-spacing:4.410111pt;}
.wsa4{word-spacing:4.463245pt;}
.ws8d{word-spacing:4.516379pt;}
.ws101{word-spacing:4.622646pt;}
.ws122{word-spacing:4.638618pt;}
.ws32{word-spacing:4.728914pt;}
.wsd8{word-spacing:4.734259pt;}
.wsdc{word-spacing:4.735208pt;}
.wsda{word-spacing:4.740437pt;}
.ws36{word-spacing:4.782048pt;}
.wsc4{word-spacing:4.835182pt;}
.ws8{word-spacing:4.872362pt;}
.wsab{word-spacing:4.877722pt;}
.ws120{word-spacing:5.021184pt;}
.ws23{word-spacing:5.047717pt;}
.ws8c{word-spacing:5.153985pt;}
.ws1f{word-spacing:5.207119pt;}
.wsaf{word-spacing:5.308109pt;}
.wsfe{word-spacing:5.313387pt;}
.ws130{word-spacing:5.403750pt;}
.wsc8{word-spacing:5.419654pt;}
.ws13f{word-spacing:5.451571pt;}
.ws34{word-spacing:5.472788pt;}
.ws13c{word-spacing:5.547213pt;}
.wsa9{word-spacing:5.595034pt;}
.wsdf{word-spacing:5.690675pt;}
.wsae{word-spacing:5.738496pt;}
.ws9f{word-spacing:5.791591pt;}
.ws9c{word-spacing:5.809053pt;}
.ws9e{word-spacing:5.811877pt;}
.wsf2{word-spacing:6.110395pt;}
.wsf1{word-spacing:6.216662pt;}
.ws136{word-spacing:6.360166pt;}
.wsbb{word-spacing:6.482332pt;}
.ws4a{word-spacing:6.641733pt;}
.ws12f{word-spacing:6.790554pt;}
.ws9b{word-spacing:6.854269pt;}
.ws9a{word-spacing:6.907403pt;}
.wsfa{word-spacing:7.013670pt;}
.ws100{word-spacing:7.119938pt;}
.ws22{word-spacing:7.916946pt;}
.ws6{word-spacing:8.740496pt;}
.ws10b{word-spacing:9.100130pt;}
.ws3{word-spacing:9.243732pt;}
.ws7{word-spacing:10.525789pt;}
.ws2c{word-spacing:10.582190pt;}
.ws111{word-spacing:10.759680pt;}
.wsde{word-spacing:11.620454pt;}
.wsdd{word-spacing:11.636989pt;}
.wsa8{word-spacing:11.701036pt;}
.ws133{word-spacing:11.726922pt;}
.ws11b{word-spacing:11.763917pt;}
.ws131{word-spacing:11.811738pt;}
.ws12d{word-spacing:11.901790pt;}
.ws134{word-spacing:11.902643pt;}
.ws117{word-spacing:11.902857pt;}
.ws11e{word-spacing:11.903863pt;}
.ws115{word-spacing:11.904299pt;}
.ws137{word-spacing:11.904358pt;}
.ws12c{word-spacing:11.904870pt;}
.ws13b{word-spacing:11.904956pt;}
.ws60{word-spacing:11.907379pt;}
.ws118{word-spacing:11.908190pt;}
.ws5c{word-spacing:11.980265pt;}
.ws5e{word-spacing:12.003021pt;}
.ws57{word-spacing:12.023718pt;}
.ws59{word-spacing:12.050842pt;}
.ws13e{word-spacing:12.051628pt;}
.wsed{word-spacing:12.107752pt;}
.wsef{word-spacing:12.123610pt;}
.wsbf{word-spacing:12.273923pt;}
.wsa3{word-spacing:12.297515pt;}
.wsa1{word-spacing:12.300436pt;}
.wsbd{word-spacing:12.698994pt;}
.wsc1{word-spacing:12.911530pt;}
.ws8f{word-spacing:12.949281pt;}
.ws91{word-spacing:12.952659pt;}
.wsb2{word-spacing:12.964663pt;}
.ws49{word-spacing:13.017797pt;}
.ws124{word-spacing:13.058543pt;}
.wsfb{word-spacing:13.070931pt;}
.ws50{word-spacing:13.111084pt;}
.ws4e{word-spacing:13.123404pt;}
.ws4f{word-spacing:13.124065pt;}
.ws6e{word-spacing:13.177199pt;}
.ws4d{word-spacing:13.230333pt;}
.wscf{word-spacing:13.291978pt;}
.wsb1{word-spacing:13.336601pt;}
.ws102{word-spacing:13.389734pt;}
.ws66{word-spacing:13.423241pt;}
.ws68{word-spacing:13.442868pt;}
.wsf6{word-spacing:13.451593pt;}
.wsa0{word-spacing:13.500882pt;}
.ws6b{word-spacing:13.708538pt;}
.wsf7{word-spacing:13.814805pt;}
.wsb5{word-spacing:13.921073pt;}
.ws44{word-spacing:13.936554pt;}
.wsb3{word-spacing:13.944632pt;}
.ws46{word-spacing:13.974207pt;}
.wsa6{word-spacing:14.080475pt;}
.ws11f{word-spacing:14.537523pt;}
.ws129{word-spacing:14.728806pt;}
.ws142{word-spacing:14.770458pt;}
.ws12a{word-spacing:14.771379pt;}
.ws113{word-spacing:14.776627pt;}
.ws13d{word-spacing:14.848785pt;}
.ws132{word-spacing:14.872269pt;}
.ws128{word-spacing:14.920090pt;}
.ws17{word-spacing:15.015731pt;}
.ws19{word-spacing:15.063552pt;}
.ws1b{word-spacing:15.207014pt;}
.ws121{word-spacing:15.589581pt;}
.wsf4{word-spacing:16.089992pt;}
.ws8e{word-spacing:16.205829pt;}
.wscb{word-spacing:16.501421pt;}
.wsd9{word-spacing:16.640437pt;}
.wsdb{word-spacing:16.641638pt;}
.wsc2{word-spacing:16.981978pt;}
.ws139{word-spacing:17.884979pt;}
.wsc7{word-spacing:18.703121pt;}
.ws9d{word-spacing:19.021924pt;}
.wsbc{word-spacing:19.719662pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.wsb{word-spacing:35.593054pt;}
.ws7d{word-spacing:77.819426pt;}
.ws71{word-spacing:111.989359pt;}
.ws5a{word-spacing:123.329843pt;}
.ws7a{word-spacing:127.284813pt;}
.ws75{word-spacing:130.263859pt;}
.ws78{word-spacing:139.869892pt;}
.ws79{word-spacing:143.558042pt;}
.ws74{word-spacing:145.195759pt;}
.ws70{word-spacing:154.843750pt;}
.ws7b{word-spacing:155.072119pt;}
.ws73{word-spacing:158.614639pt;}
.ws77{word-spacing:162.748126pt;}
.ws72{word-spacing:163.611213pt;}
.ws76{word-spacing:191.821039pt;}
.ws5f{word-spacing:200.990822pt;}
.ws7c{word-spacing:206.442394pt;}
.ws81{word-spacing:208.881254pt;}
.ws61{word-spacing:212.324352pt;}
.ws80{word-spacing:223.017839pt;}
.ws7e{word-spacing:224.853402pt;}
.ws7f{word-spacing:277.748915pt;}
.ws82{word-spacing:898.132915pt;}
._44{margin-left:-8.296560pt;}
._48{margin-left:-7.295570pt;}
._e{margin-left:-6.381447pt;}
._4{margin-left:-5.260288pt;}
._49{margin-left:-4.351693pt;}
._0{margin-left:-3.421811pt;}
._1{margin-left:-2.008454pt;}
._6{margin-left:-0.956416pt;}
._3c{width:0.939027pt;}
._5{width:2.661058pt;}
._3f{width:3.610880pt;}
._3e{width:4.553280pt;}
._40{width:5.451040pt;}
._43{width:6.471424pt;}
._45{width:7.954167pt;}
._2{width:10.878600pt;}
._42{width:12.250720pt;}
._a{width:13.581088pt;}
._12{width:14.776627pt;}
._7{width:15.709765pt;}
._11{width:16.630900pt;}
._8{width:17.645875pt;}
._38{width:18.703127pt;}
._b{width:19.925200pt;}
._10{width:21.624483pt;}
._3{width:23.061099pt;}
._9{width:25.168707pt;}
._f{width:26.992004pt;}
._39{width:28.979207pt;}
._37{width:30.551980pt;}
._3a{width:32.110080pt;}
._3b{width:33.281778pt;}
._46{width:35.174626pt;}
._4a{width:54.993920pt;}
._13{width:80.625869pt;}
._26{width:143.680218pt;}
._1b{width:147.861914pt;}
._2d{width:157.268454pt;}
._2f{width:159.981862pt;}
._16{width:161.156096pt;}
._25{width:167.516262pt;}
._19{width:174.450278pt;}
._2e{width:189.896397pt;}
._21{width:195.873997pt;}
._30{width:199.972454pt;}
._34{width:202.138522pt;}
._22{width:214.380646pt;}
._24{width:220.836454pt;}
._2c{width:232.791654pt;}
._28{width:244.746854pt;}
._2b{width:250.341888pt;}
._33{width:255.841280pt;}
._27{width:267.413914pt;}
._31{width:283.433882pt;}
._2a{width:291.324314pt;}
._35{width:313.427473pt;}
._32{width:317.496806pt;}
._36{width:329.580954pt;}
._c{width:336.740379pt;}
._29{width:534.848939pt;}
._23{width:550.752154pt;}
._1e{width:576.910131pt;}
._1a{width:586.139546pt;}
._1c{width:590.825984pt;}
._17{width:600.055398pt;}
._1f{width:668.022281pt;}
._20{width:702.811989pt;}
._1d{width:743.948186pt;}
._18{width:751.790797pt;}
._14{width:755.425178pt;}
._15{width:790.190899pt;}
._3d{width:1634.391027pt;}
._41{width:2021.465434pt;}
._47{width:2124.502195pt;}
._d{width:2145.755529pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:38.755733pt;}
.fsb{font-size:39.580800pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:44.640000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.096000pt;}
.fse{font-size:48.944000pt;}
.fsc{font-size:49.699200pt;}
.fs2{font-size:53.133867pt;}
.fs10{font-size:55.200000pt;}
.fs9{font-size:55.365867pt;}
.fsf{font-size:61.456000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:97.430720pt;}
.y150{bottom:-197.793867pt;}
.y13d{bottom:-162.161000pt;}
.y16e{bottom:-126.769867pt;}
.y16d{bottom:-108.921867pt;}
.yfe{bottom:-97.941175pt;}
.y144{bottom:-93.341000pt;}
.y16c{bottom:-91.257867pt;}
.yfd{bottom:-81.741240pt;}
.y143{bottom:-79.056200pt;}
.y16b{bottom:-73.593867pt;}
.y142{bottom:-64.771400pt;}
.y16a{bottom:-55.929867pt;}
.y141{bottom:-50.486600pt;}
.y169{bottom:-38.173867pt;}
.y140{bottom:-36.127400pt;}
.y13f{bottom:-21.842600pt;}
.yff{bottom:-18.021254pt;}
.y168{bottom:-15.357867pt;}
.y13e{bottom:-3.317000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:14.848190pt;}
.y45{bottom:28.346667pt;}
.y18b{bottom:92.108000pt;}
.y16{bottom:93.018667pt;}
.y44{bottom:93.530667pt;}
.yd6{bottom:103.536000pt;}
.y7b{bottom:104.713333pt;}
.y1a1{bottom:106.408000pt;}
.y18a{bottom:108.844000pt;}
.y15{bottom:108.920000pt;}
.y43{bottom:110.268000pt;}
.y1d9{bottom:113.122667pt;}
.yd5{bottom:120.273333pt;}
.y7a{bottom:121.450667pt;}
.y1a0{bottom:122.029333pt;}
.y14{bottom:124.820000pt;}
.y189{bottom:125.581333pt;}
.y42{bottom:127.005333pt;}
.y1d8{bottom:128.465333pt;}
.y106{bottom:128.557333pt;}
.y14c{bottom:129.676000pt;}
.y20d{bottom:134.202667pt;}
.yd4{bottom:137.010667pt;}
.y19f{bottom:137.650667pt;}
.y139{bottom:138.188000pt;}
.y13{bottom:140.720000pt;}
.y79{bottom:142.173333pt;}
.y188{bottom:142.318667pt;}
.y41{bottom:143.742667pt;}
.y1d7{bottom:143.808000pt;}
.y105{bottom:145.653333pt;}
.y14b{bottom:146.772000pt;}
.y20c{bottom:149.545333pt;}
.y19e{bottom:153.272000pt;}
.yd3{bottom:153.748000pt;}
.y137{bottom:154.925333pt;}
.y12{bottom:156.621333pt;}
.y187{bottom:159.056000pt;}
.y1d5{bottom:159.149333pt;}
.y1d6{bottom:159.150667pt;}
.y138{bottom:159.748000pt;}
.y78{bottom:160.106667pt;}
.y40{bottom:160.480000pt;}
.y104{bottom:162.748000pt;}
.y14a{bottom:163.868000pt;}
.y20b{bottom:164.888000pt;}
.y19d{bottom:168.893333pt;}
.yd2{bottom:170.485333pt;}
.y136{bottom:171.662667pt;}
.y11{bottom:172.521333pt;}
.y1d4{bottom:174.492000pt;}
.y186{bottom:175.793333pt;}
.y3f{bottom:177.217333pt;}
.y103{bottom:179.844000pt;}
.y20a{bottom:180.230667pt;}
.y149{bottom:180.964000pt;}
.yd1{bottom:187.222667pt;}
.y135{bottom:188.400000pt;}
.y10{bottom:188.421333pt;}
.y1d3{bottom:189.834667pt;}
.y77{bottom:189.994667pt;}
.y19c{bottom:192.485333pt;}
.y185{bottom:192.530667pt;}
.y3e{bottom:193.954667pt;}
.y209{bottom:195.573333pt;}
.y102{bottom:196.940000pt;}
.y148{bottom:198.060000pt;}
.ya0{bottom:198.572000pt;}
.yd0{bottom:203.960000pt;}
.yf{bottom:204.322667pt;}
.y134{bottom:205.137333pt;}
.y1d2{bottom:205.177333pt;}
.y76{bottom:206.732000pt;}
.y19b{bottom:208.525333pt;}
.y184{bottom:209.268000pt;}
.y3d{bottom:210.692000pt;}
.y208{bottom:210.916000pt;}
.y101{bottom:214.036000pt;}
.y147{bottom:215.156000pt;}
.y9e{bottom:215.309333pt;}
.y9f{bottom:220.132000pt;}
.y1d1{bottom:220.520000pt;}
.y133{bottom:221.874667pt;}
.y75{bottom:223.469333pt;}
.y19a{bottom:224.565333pt;}
.ycf{bottom:224.682667pt;}
.y183{bottom:226.005333pt;}
.y207{bottom:226.258667pt;}
.y3c{bottom:227.429333pt;}
.y100{bottom:231.132000pt;}
.y9d{bottom:232.046667pt;}
.y146{bottom:232.250667pt;}
.y1d0{bottom:235.862667pt;}
.y132{bottom:238.612000pt;}
.y74{bottom:240.206667pt;}
.y206{bottom:241.601333pt;}
.y182{bottom:242.742667pt;}
.y3b{bottom:244.166667pt;}
.y9b{bottom:248.784000pt;}
.y145{bottom:249.346667pt;}
.yfc{bottom:251.069333pt;}
.y1cf{bottom:251.205333pt;}
.y9c{bottom:253.606667pt;}
.yce{bottom:254.570667pt;}
.y131{bottom:255.349333pt;}
.y199{bottom:256.545333pt;}
.y73{bottom:256.944000pt;}
.y181{bottom:259.480000pt;}
.y3a{bottom:260.904000pt;}
.y9a{bottom:265.521333pt;}
.y1ce{bottom:266.548000pt;}
.ye{bottom:266.570667pt;}
.y13a{bottom:269.284000pt;}
.ycd{bottom:271.308000pt;}
.y130{bottom:272.086667pt;}
.y205{bottom:272.285333pt;}
.y198{bottom:273.282667pt;}
.y72{bottom:273.681333pt;}
.y180{bottom:276.217333pt;}
.y39{bottom:277.641333pt;}
.y1cd{bottom:281.890667pt;}
.y99{bottom:282.258667pt;}
.yd{bottom:282.470667pt;}
.y204{bottom:287.628000pt;}
.ycc{bottom:288.045333pt;}
.y12f{bottom:288.824000pt;}
.y197{bottom:290.020000pt;}
.y71{bottom:290.417333pt;}
.y17f{bottom:292.954667pt;}
.y38{bottom:294.378667pt;}
.y1cc{bottom:297.232000pt;}
.yc{bottom:298.370667pt;}
.y98{bottom:298.996000pt;}
.y203{bottom:302.970667pt;}
.ycb{bottom:304.782667pt;}
.y12e{bottom:305.561333pt;}
.y196{bottom:306.757333pt;}
.y70{bottom:307.154667pt;}
.yfb{bottom:308.350667pt;}
.y17e{bottom:309.692000pt;}
.y37{bottom:311.116000pt;}
.y1cb{bottom:312.574667pt;}
.yb{bottom:314.272000pt;}
.y97{bottom:315.733333pt;}
.y202{bottom:318.313333pt;}
.yc9{bottom:321.520000pt;}
.y12d{bottom:322.298667pt;}
.y195{bottom:323.494667pt;}
.y6f{bottom:323.892000pt;}
.yfa{bottom:325.088000pt;}
.yca{bottom:326.341333pt;}
.y17d{bottom:326.429333pt;}
.y36{bottom:327.853333pt;}
.y1ca{bottom:327.917333pt;}
.y96{bottom:332.470667pt;}
.y201{bottom:333.656000pt;}
.yc8{bottom:338.257333pt;}
.y12c{bottom:339.036000pt;}
.ya{bottom:339.470667pt;}
.y194{bottom:340.232000pt;}
.y6e{bottom:340.629333pt;}
.yf9{bottom:341.825333pt;}
.y17c{bottom:343.166667pt;}
.y1c9{bottom:343.260000pt;}
.y35{bottom:348.576000pt;}
.y200{bottom:348.998667pt;}
.y95{bottom:353.193333pt;}
.yc7{bottom:354.994667pt;}
.y9{bottom:355.370667pt;}
.y12b{bottom:355.773333pt;}
.y193{bottom:356.968000pt;}
.y6d{bottom:357.366667pt;}
.yf8{bottom:358.562667pt;}
.y1c8{bottom:358.602667pt;}
.y17b{bottom:359.904000pt;}
.y1ff{bottom:364.341333pt;}
.yc6{bottom:371.732000pt;}
.y12a{bottom:372.510667pt;}
.y192{bottom:373.705333pt;}
.y1c7{bottom:373.945333pt;}
.y6c{bottom:374.104000pt;}
.yf7{bottom:375.300000pt;}
.y17a{bottom:376.641333pt;}
.y8{bottom:379.241333pt;}
.y1fe{bottom:379.684000pt;}
.y94{bottom:383.081333pt;}
.yc4{bottom:388.468000pt;}
.y129{bottom:389.248000pt;}
.y1c6{bottom:389.288000pt;}
.y191{bottom:390.442667pt;}
.y6b{bottom:390.841333pt;}
.yf6{bottom:392.037333pt;}
.yc5{bottom:393.290667pt;}
.y179{bottom:393.378667pt;}
.y1fd{bottom:395.025333pt;}
.y7{bottom:395.141333pt;}
.y93{bottom:399.818667pt;}
.y1c5{bottom:404.630667pt;}
.yc3{bottom:405.205333pt;}
.y128{bottom:405.985333pt;}
.y190{bottom:407.180000pt;}
.y6a{bottom:407.578667pt;}
.yf5{bottom:408.774667pt;}
.y178{bottom:410.116000pt;}
.y1fc{bottom:410.368000pt;}
.y6{bottom:411.042667pt;}
.y34{bottom:415.376000pt;}
.y92{bottom:416.556000pt;}
.y1c4{bottom:419.973333pt;}
.y127{bottom:422.722667pt;}
.y18f{bottom:423.917333pt;}
.y69{bottom:424.316000pt;}
.yf4{bottom:425.512000pt;}
.y1fb{bottom:425.710667pt;}
.yc2{bottom:425.928000pt;}
.y177{bottom:426.853333pt;}
.y5{bottom:426.942667pt;}
.y91{bottom:433.293333pt;}
.y1c3{bottom:435.314667pt;}
.y126{bottom:439.460000pt;}
.yc1{bottom:439.876000pt;}
.y18e{bottom:440.654667pt;}
.y68{bottom:441.053333pt;}
.yf3{bottom:442.249333pt;}
.y4{bottom:442.842667pt;}
.y176{bottom:447.576000pt;}
.y33{bottom:448.610667pt;}
.y90{bottom:450.030667pt;}
.y1c2{bottom:450.657333pt;}
.y167{bottom:454.179467pt;}
.y125{bottom:456.197333pt;}
.y1fa{bottom:456.396000pt;}
.y18d{bottom:457.392000pt;}
.y67{bottom:457.790667pt;}
.y3{bottom:458.744000pt;}
.yf2{bottom:458.986667pt;}
.y32{bottom:465.906667pt;}
.y1c1{bottom:466.000000pt;}
.y8f{bottom:466.768000pt;}
.yc0{bottom:469.764000pt;}
.y1f9{bottom:471.738667pt;}
.y175{bottom:472.366667pt;}
.y166{bottom:473.867467pt;}
.y66{bottom:474.528000pt;}
.y2{bottom:474.644000pt;}
.yf1{bottom:475.724000pt;}
.y124{bottom:476.918667pt;}
.y18c{bottom:478.114667pt;}
.y1c0{bottom:481.342667pt;}
.y31{bottom:483.201333pt;}
.y8e{bottom:483.505333pt;}
.ybf{bottom:486.501333pt;}
.y1f8{bottom:487.081333pt;}
.y174{bottom:489.462667pt;}
.y1{bottom:490.544000pt;}
.y65{bottom:491.265333pt;}
.yf0{bottom:492.461333pt;}
.y165{bottom:493.555467pt;}
.y1bf{bottom:496.685333pt;}
.y8d{bottom:500.242667pt;}
.y30{bottom:500.496000pt;}
.y1f7{bottom:502.424000pt;}
.ybe{bottom:503.238667pt;}
.y173{bottom:506.558667pt;}
.y123{bottom:506.806667pt;}
.y64{bottom:508.002667pt;}
.yef{bottom:509.198667pt;}
.y1be{bottom:512.028000pt;}
.y164{bottom:513.151467pt;}
.y8c{bottom:516.980000pt;}
.y1f6{bottom:517.766667pt;}
.y2f{bottom:517.792000pt;}
.ybc{bottom:519.976000pt;}
.y122{bottom:523.544000pt;}
.y171{bottom:523.654667pt;}
.y63{bottom:524.740000pt;}
.ybd{bottom:524.797333pt;}
.yee{bottom:525.936000pt;}
.y1bd{bottom:527.370667pt;}
.y172{bottom:527.994667pt;}
.y163{bottom:532.839467pt;}
.y1f5{bottom:533.108000pt;}
.y2e{bottom:535.086667pt;}
.ybb{bottom:536.713333pt;}
.y8b{bottom:537.701333pt;}
.y121{bottom:540.281333pt;}
.y170{bottom:540.750667pt;}
.y62{bottom:541.477333pt;}
.yed{bottom:542.673333pt;}
.y1bc{bottom:542.713333pt;}
.y1f4{bottom:548.450667pt;}
.y2d{bottom:552.382667pt;}
.y162{bottom:552.527467pt;}
.yba{bottom:553.450667pt;}
.y120{bottom:557.018667pt;}
.y16f{bottom:557.846667pt;}
.y1bb{bottom:558.054667pt;}
.y61{bottom:558.214667pt;}
.yec{bottom:559.410667pt;}
.y1f3{bottom:563.793333pt;}
.y2c{bottom:569.677333pt;}
.yb9{bottom:570.188000pt;}
.y161{bottom:572.123467pt;}
.y1ba{bottom:573.397333pt;}
.y11f{bottom:573.756000pt;}
.y60{bottom:574.952000pt;}
.yeb{bottom:576.148000pt;}
.y14d{bottom:577.784000pt;}
.y8a{bottom:577.980000pt;}
.y1f2{bottom:579.136000pt;}
.yb8{bottom:586.925333pt;}
.y2b{bottom:586.972000pt;}
.y1b9{bottom:588.740000pt;}
.y11e{bottom:590.493333pt;}
.y5f{bottom:591.689333pt;}
.y160{bottom:591.811467pt;}
.y89{bottom:592.592000pt;}
.yea{bottom:592.884000pt;}
.y1f1{bottom:594.478667pt;}
.yb6{bottom:603.662667pt;}
.y1b8{bottom:604.082667pt;}
.y2a{bottom:604.268000pt;}
.y11d{bottom:607.230667pt;}
.y5e{bottom:608.426667pt;}
.yb7{bottom:608.484000pt;}
.ye9{bottom:609.621333pt;}
.y1f0{bottom:609.821333pt;}
.y15f{bottom:611.407467pt;}
.y88{bottom:613.605333pt;}
.y1b7{bottom:619.425333pt;}
.yb5{bottom:620.400000pt;}
.y29{bottom:621.562667pt;}
.y11c{bottom:623.968000pt;}
.y5d{bottom:625.164000pt;}
.ye8{bottom:626.358667pt;}
.y87{bottom:628.217333pt;}
.y15e{bottom:631.095467pt;}
.y1b6{bottom:634.768000pt;}
.yb4{bottom:637.137333pt;}
.y28{bottom:638.857333pt;}
.y1ef{bottom:640.506667pt;}
.y11b{bottom:640.705333pt;}
.y5c{bottom:641.901333pt;}
.y86{bottom:642.829333pt;}
.ye7{bottom:643.096000pt;}
.y1b5{bottom:650.110667pt;}
.y15d{bottom:650.783467pt;}
.y1ee{bottom:655.848000pt;}
.y27{bottom:656.153333pt;}
.y11a{bottom:657.442667pt;}
.yb3{bottom:657.858667pt;}
.y5b{bottom:658.638667pt;}
.ye6{bottom:659.833333pt;}
.y85{bottom:663.842667pt;}
.y1b4{bottom:665.453333pt;}
.y15c{bottom:670.379467pt;}
.y1ed{bottom:671.190667pt;}
.y26{bottom:673.448000pt;}
.y119{bottom:674.180000pt;}
.y5a{bottom:675.376000pt;}
.ye5{bottom:676.570667pt;}
.y84{bottom:678.454667pt;}
.y1b3{bottom:680.796000pt;}
.y1ec{bottom:686.533333pt;}
.y15b{bottom:690.067467pt;}
.y25{bottom:690.744000pt;}
.y118{bottom:690.917333pt;}
.y59{bottom:692.113333pt;}
.y83{bottom:693.066667pt;}
.ye4{bottom:693.308000pt;}
.y1b2{bottom:696.137333pt;}
.yb2{bottom:698.137333pt;}
.y1eb{bottom:701.876000pt;}
.y117{bottom:707.654667pt;}
.y24{bottom:708.038667pt;}
.y58{bottom:708.850667pt;}
.y15a{bottom:709.663467pt;}
.ye3{bottom:710.045333pt;}
.y1b1{bottom:711.480000pt;}
.yb1{bottom:712.749333pt;}
.y82{bottom:714.081333pt;}
.y1ea{bottom:717.218667pt;}
.yb0{bottom:720.054667pt;}
.y116{bottom:724.392000pt;}
.y23{bottom:725.333333pt;}
.y57{bottom:725.588000pt;}
.ye2{bottom:726.782667pt;}
.y1b0{bottom:726.822667pt;}
.y159{bottom:729.351467pt;}
.y1e9{bottom:732.561333pt;}
.y115{bottom:741.129333pt;}
.y1af{bottom:742.165333pt;}
.y56{bottom:742.324000pt;}
.y22{bottom:742.629333pt;}
.ye1{bottom:743.520000pt;}
.y81{bottom:744.844000pt;}
.y1e8{bottom:747.904000pt;}
.yaf{bottom:748.374667pt;}
.y158{bottom:749.039467pt;}
.y1ae{bottom:757.508000pt;}
.y114{bottom:757.866667pt;}
.y55{bottom:759.061333pt;}
.ye0{bottom:760.257333pt;}
.y80{bottom:761.940000pt;}
.yae{bottom:762.986667pt;}
.y1e7{bottom:763.246667pt;}
.y157{bottom:768.635467pt;}
.y1ad{bottom:772.850667pt;}
.y113{bottom:774.604000pt;}
.y13c{bottom:775.427800pt;}
.y54{bottom:775.798667pt;}
.y21{bottom:776.926667pt;}
.ydf{bottom:776.994667pt;}
.yad{bottom:777.598667pt;}
.y1e6{bottom:778.589333pt;}
.y7f{bottom:779.036000pt;}
.y13b{bottom:783.388600pt;}
.y1ac{bottom:788.193333pt;}
.y156{bottom:788.323467pt;}
.y112{bottom:791.341333pt;}
.yac{bottom:792.210667pt;}
.y53{bottom:792.536000pt;}
.yde{bottom:793.732000pt;}
.y1e5{bottom:793.930667pt;}
.y20{bottom:795.130667pt;}
.y7e{bottom:796.130667pt;}
.y1ab{bottom:803.536000pt;}
.y1f{bottom:805.620000pt;}
.y155{bottom:807.919467pt;}
.y111{bottom:808.078667pt;}
.y52{bottom:809.273333pt;}
.ydd{bottom:810.469333pt;}
.yab{bottom:813.224000pt;}
.y7d{bottom:813.226667pt;}
.y1aa{bottom:818.877333pt;}
.y1e{bottom:823.824000pt;}
.y1e4{bottom:824.616000pt;}
.y110{bottom:824.816000pt;}
.y51{bottom:826.010667pt;}
.ydc{bottom:827.206667pt;}
.y154{bottom:827.607467pt;}
.yaa{bottom:827.836000pt;}
.y210{bottom:835.906667pt;}
.y1a9{bottom:838.205333pt;}
.y1e3{bottom:839.958667pt;}
.y10f{bottom:841.553333pt;}
.ya9{bottom:842.448000pt;}
.y50{bottom:842.748000pt;}
.ydb{bottom:843.944000pt;}
.y20f{bottom:851.249333pt;}
.y153{bottom:851.803467pt;}
.y1e2{bottom:855.301333pt;}
.y10e{bottom:858.290667pt;}
.y4f{bottom:859.485333pt;}
.yda{bottom:860.681333pt;}
.ya8{bottom:863.461333pt;}
.y1d{bottom:863.536000pt;}
.y7c{bottom:864.308000pt;}
.y20e{bottom:866.592000pt;}
.y1a8{bottom:868.093333pt;}
.y1e1{bottom:870.644000pt;}
.y10d{bottom:875.028000pt;}
.y4e{bottom:876.222667pt;}
.ya7{bottom:878.073333pt;}
.yd9{bottom:881.404000pt;}
.y1a7{bottom:883.714667pt;}
.y1e0{bottom:885.986667pt;}
.y152{bottom:889.554133pt;}
.y10c{bottom:891.765333pt;}
.ya6{bottom:892.685333pt;}
.y4d{bottom:892.960000pt;}
.yd8{bottom:895.350667pt;}
.y1c{bottom:896.213333pt;}
.y1a6{bottom:899.336000pt;}
.y1df{bottom:901.329333pt;}
.y151{bottom:907.310133pt;}
.y10b{bottom:908.501333pt;}
.y4c{bottom:909.697333pt;}
.yd7{bottom:913.284000pt;}
.ya5{bottom:913.700000pt;}
.y1a5{bottom:914.957333pt;}
.y1de{bottom:916.670667pt;}
.y1b{bottom:921.320000pt;}
.y10a{bottom:925.238667pt;}
.y4b{bottom:926.434667pt;}
.ya4{bottom:928.312000pt;}
.y1dd{bottom:932.013333pt;}
.y1a4{bottom:938.549333pt;}
.y109{bottom:941.976000pt;}
.ya3{bottom:942.924000pt;}
.y4a{bottom:943.172000pt;}
.y1a{bottom:946.425333pt;}
.y1dc{bottom:947.356000pt;}
.y108{bottom:958.713333pt;}
.y49{bottom:959.909333pt;}
.y14f{bottom:961.590133pt;}
.y1a3{bottom:962.141333pt;}
.y1db{bottom:962.698667pt;}
.ya2{bottom:963.937333pt;}
.y14e{bottom:971.434133pt;}
.y19{bottom:971.530667pt;}
.y48{bottom:976.646667pt;}
.y1a2{bottom:977.762667pt;}
.y1da{bottom:978.041333pt;}
.y107{bottom:979.436000pt;}
.y47{bottom:993.384000pt;}
.ya1{bottom:994.700000pt;}
.y17{bottom:1010.186667pt;}
.y46{bottom:1046.810667pt;}
.h9{height:23.209028pt;}
.h15{height:24.760382pt;}
.h21{height:25.811318pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h10{height:28.023859pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.h17{height:33.324328pt;}
.h11{height:34.430976pt;}
.hb{height:34.813542pt;}
.hc{height:35.052646pt;}
.h19{height:36.604509pt;}
.h12{height:36.873667pt;}
.hd{height:38.256384pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h1b{height:41.283281pt;}
.h22{height:43.660390pt;}
.h20{height:45.041727pt;}
.h1d{height:45.263641pt;}
.h4{height:45.271688pt;}
.h1a{height:45.962053pt;}
.h13{height:47.314526pt;}
.h8{height:48.360277pt;}
.h1f{height:51.049219pt;}
.h1e{height:56.834797pt;}
.h14{height:64.040209pt;}
.h5{height:66.058028pt;}
.h7{height:68.861952pt;}
.h1c{height:428.887133pt;}
.h18{height:737.390800pt;}
.h16{height:755.605200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:214.021695pt;}
.w4{width:439.676720pt;}
.w5{width:472.377067pt;}
.w3{width:499.547640pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6f{left:-212.435667pt;}
.x6c{left:-165.057640pt;}
.x68{left:-15.473160pt;}
.x70{left:-12.489000pt;}
.x6e{left:-3.361640pt;}
.x0{left:0.000000pt;}
.x71{left:20.079000pt;}
.x3{left:46.617333pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x4f{left:55.592000pt;}
.x43{left:59.414667pt;}
.x47{left:71.084000pt;}
.x44{left:74.072000pt;}
.x88{left:76.309333pt;}
.x48{left:80.869333pt;}
.x51{left:84.208000pt;}
.x53{left:87.197333pt;}
.x54{left:88.208000pt;}
.x52{left:90.186667pt;}
.x45{left:153.217333pt;}
.x50{left:165.386667pt;}
.x46{left:212.526667pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x55{left:230.560000pt;}
.x5{left:239.924000pt;}
.x7{left:250.204000pt;}
.x86{left:283.026667pt;}
.x32{left:288.474667pt;}
.x2b{left:293.254667pt;}
.x87{left:296.309333pt;}
.x33{left:301.757333pt;}
.x10{left:302.812000pt;}
.x2c{left:306.538667pt;}
.x11{left:309.453333pt;}
.x77{left:311.441333pt;}
.x3e{left:313.120000pt;}
.x4d{left:314.545333pt;}
.x4e{left:320.594667pt;}
.x2d{left:323.206667pt;}
.x78{left:324.724000pt;}
.x79{left:328.604000pt;}
.x18{left:331.084000pt;}
.x56{left:332.846667pt;}
.x36{left:338.153333pt;}
.x7a{left:341.888000pt;}
.x19{left:344.366667pt;}
.x58{left:346.924000pt;}
.x37{left:351.436000pt;}
.x38{left:354.824000pt;}
.x7b{left:358.488000pt;}
.x59{left:360.206667pt;}
.x39{left:368.106667pt;}
.x3a{left:371.494667pt;}
.x3b{left:384.778667pt;}
.x5f{left:412.182667pt;}
.x60{left:418.232000pt;}
.x63{left:427.428000pt;}
.x84{left:431.941333pt;}
.x49{left:438.554667pt;}
.x64{left:440.710667pt;}
.x85{left:445.224000pt;}
.x4a{left:449.480000pt;}
.x6d{left:451.420760pt;}
.x3c{left:464.737333pt;}
.x4b{left:466.312000pt;}
.x3d{left:471.378667pt;}
.x4c{left:472.361333pt;}
.x72{left:476.276333pt;}
.x5a{left:481.116000pt;}
.x23{left:495.368000pt;}
.x24{left:508.652000pt;}
.x25{left:512.038667pt;}
.x69{left:515.524279pt;}
.x21{left:523.740000pt;}
.x26{left:525.322667pt;}
.x75{left:529.592000pt;}
.x3f{left:531.488000pt;}
.x22{left:537.024000pt;}
.x76{left:542.876000pt;}
.x40{left:544.772000pt;}
.x41{left:568.196000pt;}
.x42{left:574.246667pt;}
.x57{left:575.246667pt;}
.x12{left:579.261333pt;}
.x13{left:585.902667pt;}
.x73{left:588.381333pt;}
.x65{left:589.512000pt;}
.x6a{left:591.448000pt;}
.x74{left:594.005333pt;}
.x6b{left:595.062667pt;}
.x27{left:600.518667pt;}
.x1f{left:602.288000pt;}
.x20{left:608.929333pt;}
.x61{left:612.162667pt;}
.x28{left:613.801333pt;}
.x2e{left:615.456000pt;}
.x62{left:618.212000pt;}
.xe{left:620.018667pt;}
.x2f{left:622.230667pt;}
.x7c{left:625.269333pt;}
.xf{left:626.660000pt;}
.x7d{left:631.910667pt;}
.x31{left:634.124000pt;}
.x30{left:635.514667pt;}
.x1d{left:636.804000pt;}
.x14{left:638.353333pt;}
.x15{left:644.994667pt;}
.xa{left:646.277333pt;}
.x8{left:648.621333pt;}
.x1e{left:650.086667pt;}
.x16{left:651.749333pt;}
.xb{left:652.920000pt;}
.x9{left:655.262667pt;}
.x17{left:658.390667pt;}
.x34{left:660.769333pt;}
.x83{left:662.282667pt;}
.x7e{left:665.185333pt;}
.x5b{left:668.976000pt;}
.x5c{left:675.025333pt;}
.x7f{left:681.824000pt;}
.x80{left:685.177333pt;}
.x66{left:687.630667pt;}
.x5d{left:693.960000pt;}
.x81{left:698.461333pt;}
.x67{left:700.913333pt;}
.x5e{left:702.164000pt;}
.x29{left:707.000000pt;}
.x1a{left:710.614667pt;}
.x82{left:715.098667pt;}
.x2a{left:720.284000pt;}
.x1b{left:723.897333pt;}
.x1c{left:727.152000pt;}
.xc{left:733.129333pt;}
.xd{left:739.772000pt;}
.x35{left:744.694667pt;}
}




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