
    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_66cdfb3e660a3a4bb5715015.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8ff9b194794f4fb86575f4db.woff2')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_4191c7613e3e8135655008e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010000;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_f96bb72b0a6119e9079203e1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_893c55cc1f4ce06dc1513b61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_00712d817ee8a40b01431e5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_028ec1e630f64052fec1fe30.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ee1ab04a79be8a5eb40a997e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ee2554d28137f09020036084.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.746000;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_30a82e7fd532ec35e655884e.woff2')format("woff");}.fff{font-family:fff;line-height:0.664000;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_defe1437d64cce7bd5feb79e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.673000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d0cb9bd2a0473ab355126a21.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_eb3d8d6dca8384aebb85b7dc.woff2')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_16ba12003ded9aba761b74d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m20{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);}
.m14{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);}
.m25{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);}
.m21{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);}
.m11{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);}
.m18{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);}
.m1b{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);}
.m17{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);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m5{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);}
.m26{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);}
.m13{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);}
.m15{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);}
.m10{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);}
.m3{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);}
.m23{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);}
.m12{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);}
.ma{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);}
.m4{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);}
.m1f{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);}
.m27{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);}
.m8{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);}
.m22{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);}
.m16{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);}
.mc{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);}
.m19{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);}
.m6{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);}
.m24{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);}
.mf{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);}
.mb{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);}
.m1d{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);}
.m1{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);}
.v4{vertical-align:-44.754000px;}
.v2{vertical-align:-19.524000px;}
.v9{vertical-align:-10.752000px;}
.v8{vertical-align:-8.070000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.806000px;}
.v3{vertical-align:19.566000px;}
.v1{vertical-align:21.696000px;}
.v7{vertical-align:29.592000px;}
.v5{vertical-align:32.874000px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000800px;}
.ls11{letter-spacing:0.001193px;}
.lsa{letter-spacing:0.002083px;}
.ls25{letter-spacing:0.002168px;}
.ls1e{letter-spacing:0.002239px;}
.ls14{letter-spacing:0.002338px;}
.ls10{letter-spacing:0.002573px;}
.ls12{letter-spacing:0.002808px;}
.ls26{letter-spacing:0.002818px;}
.lsd{letter-spacing:0.002958px;}
.lsc{letter-spacing:0.003494px;}
.lsb{letter-spacing:0.004403px;}
.ls6{letter-spacing:0.004435px;}
.ls20{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.005061px;}
.ls2a{letter-spacing:0.537859px;}
.ls8{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls7{letter-spacing:11.960850px;}
.ls29{letter-spacing:12.987135px;}
.ls22{letter-spacing:13.220988px;}
.ls19{letter-spacing:13.445338px;}
.ls1d{letter-spacing:13.446422px;}
.ls1f{letter-spacing:13.448400px;}
.ls1b{letter-spacing:13.448870px;}
.ls1a{letter-spacing:13.450090px;}
.ls1c{letter-spacing:13.450800px;}
.ls18{letter-spacing:13.451338px;}
.ls17{letter-spacing:13.451510px;}
.ls21{letter-spacing:13.454400px;}
.ls24{letter-spacing:13.657216px;}
.lse{letter-spacing:14.236654px;}
.lsf{letter-spacing:14.940124px;}
.ls13{letter-spacing:15.123227px;}
.ls28{letter-spacing:15.391576px;}
.ls27{letter-spacing:15.638635px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls2{letter-spacing:72.355200px;}
.ls9{letter-spacing:93.543361px;}
.ls16{letter-spacing:140.933510px;}
.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;}
}
.wsf{word-spacing:-17.394700px;}
.ws9c{word-spacing:-16.123380px;}
.wsad{word-spacing:-15.655334px;}
.ws65{word-spacing:-14.943900px;}
.ws19{word-spacing:-13.915795px;}
.ws3{word-spacing:-13.449600px;}
.ws9d{word-spacing:-12.104640px;}
.ws18{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.ws23{word-spacing:-4.423394px;}
.ws21{word-spacing:-4.363619px;}
.ws6c{word-spacing:-4.303843px;}
.ws45{word-spacing:-4.184292px;}
.ws86{word-spacing:-4.124516px;}
.ws80{word-spacing:-4.064741px;}
.ws9a{word-spacing:-4.034880px;}
.ws82{word-spacing:-4.004965px;}
.wsbf{word-spacing:-3.981082px;}
.wsb8{word-spacing:-3.885414px;}
.ws9b{word-spacing:-3.819686px;}
.ws4e{word-spacing:-3.646312px;}
.ws16{word-spacing:-3.586536px;}
.ws15{word-spacing:-3.526760px;}
.wsca{word-spacing:-3.443098px;}
.wsb3{word-spacing:-3.227882px;}
.ws27{word-spacing:-3.108331px;}
.ws38{word-spacing:-2.630126px;}
.ws37{word-spacing:-2.570351px;}
.wsd8{word-spacing:-2.474726px;}
.ws58{word-spacing:-2.450800px;}
.ws57{word-spacing:-2.391024px;}
.ws56{word-spacing:-2.331248px;}
.ws28{word-spacing:-2.271473px;}
.ws5e{word-spacing:-2.151922px;}
.ws49{word-spacing:-2.092146px;}
.ws25{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.ws54{word-spacing:-1.853044px;}
.ws5d{word-spacing:-1.793268px;}
.ws7f{word-spacing:-1.733492px;}
.wsdc{word-spacing:-1.452557px;}
.ws51{word-spacing:-1.436714px;}
.ws33{word-spacing:-1.434614px;}
.ws52{word-spacing:-1.422613px;}
.ws71{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.322630px;}
.wsd{word-spacing:-1.315063px;}
.ws6e{word-spacing:-1.255288px;}
.wsf4{word-spacing:-1.237363px;}
.ws5f{word-spacing:-1.195512px;}
.ws72{word-spacing:-1.135736px;}
.ws6d{word-spacing:-1.075961px;}
.wsa6{word-spacing:-1.022170px;}
.ws6a{word-spacing:-1.016185px;}
.wsc{word-spacing:-0.956410px;}
.ws70{word-spacing:-0.896634px;}
.ws75{word-spacing:-0.836858px;}
.wsbd{word-spacing:-0.777083px;}
.ws8c{word-spacing:-0.717307px;}
.ws8e{word-spacing:-0.657532px;}
.wseb{word-spacing:-0.645581px;}
.ws97{word-spacing:-0.537980px;}
.ws93{word-spacing:-0.484186px;}
.ws84{word-spacing:-0.478205px;}
.ws3f{word-spacing:-0.418429px;}
.wsd3{word-spacing:-0.376589px;}
.ws22{word-spacing:-0.298878px;}
.wsb5{word-spacing:-0.268992px;}
.ws13{word-spacing:-0.239102px;}
.wscd{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.wsd1{word-spacing:-0.161395px;}
.ws30{word-spacing:-0.119551px;}
.wsa5{word-spacing:-0.107597px;}
.ws8{word-spacing:-0.059776px;}
.wsa7{word-spacing:-0.053798px;}
.ws53{word-spacing:-0.019310px;}
.wsf7{word-spacing:-0.009859px;}
.wsc9{word-spacing:-0.009302px;}
.wse1{word-spacing:-0.008198px;}
.ws64{word-spacing:-0.006799px;}
.wsf0{word-spacing:-0.004301px;}
.wsc7{word-spacing:-0.003302px;}
.wsae{word-spacing:-0.003178px;}
.ws1{word-spacing:-0.002501px;}
.wsaa{word-spacing:-0.001690px;}
.ws0{word-spacing:0.000000px;}
.wsf5{word-spacing:0.021410px;}
.wsce{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.wsed{word-spacing:0.088382px;}
.ws92{word-spacing:0.107597px;}
.wsa{word-spacing:0.119551px;}
.wsa4{word-spacing:0.161395px;}
.ws34{word-spacing:0.179327px;}
.wsbe{word-spacing:0.215194px;}
.ws62{word-spacing:0.217226px;}
.ws63{word-spacing:0.220890px;}
.ws3c{word-spacing:0.239102px;}
.wsc0{word-spacing:0.268992px;}
.ws2f{word-spacing:0.298878px;}
.wse0{word-spacing:0.322790px;}
.ws81{word-spacing:0.358654px;}
.ws2e{word-spacing:0.418429px;}
.wsdf{word-spacing:0.430387px;}
.wsbc{word-spacing:0.478205px;}
.wsa2{word-spacing:0.537980px;}
.wsd0{word-spacing:0.699379px;}
.ws1c{word-spacing:0.777083px;}
.ws6b{word-spacing:0.836858px;}
.wse2{word-spacing:0.860774px;}
.wsb4{word-spacing:0.896634px;}
.ws10{word-spacing:0.956410px;}
.wsd6{word-spacing:0.968371px;}
.ws43{word-spacing:1.016185px;}
.wsa0{word-spacing:1.075961px;}
.wsd7{word-spacing:1.075968px;}
.ws50{word-spacing:1.129766px;}
.ws9e{word-spacing:1.135736px;}
.ws8f{word-spacing:1.195512px;}
.wse{word-spacing:1.255288px;}
.wsc1{word-spacing:1.344960px;}
.ws9{word-spacing:1.374839px;}
.ws4f{word-spacing:1.452557px;}
.ws46{word-spacing:1.494390px;}
.wse9{word-spacing:1.506355px;}
.ws59{word-spacing:1.554166px;}
.ws31{word-spacing:1.613941px;}
.wse6{word-spacing:1.667750px;}
.ws7d{word-spacing:1.673717px;}
.ws4d{word-spacing:1.733492px;}
.wsc5{word-spacing:1.775347px;}
.ws48{word-spacing:1.793268px;}
.ws7a{word-spacing:1.853044px;}
.wse8{word-spacing:1.882944px;}
.wsea{word-spacing:1.936742px;}
.ws88{word-spacing:2.092146px;}
.ws41{word-spacing:2.151922px;}
.wse4{word-spacing:2.151936px;}
.wse3{word-spacing:2.174376px;}
.ws24{word-spacing:2.211697px;}
.ws29{word-spacing:2.271473px;}
.ws83{word-spacing:2.331248px;}
.ws94{word-spacing:2.391024px;}
.ws95{word-spacing:2.450800px;}
.ws6f{word-spacing:2.510575px;}
.ws32{word-spacing:2.570351px;}
.ws73{word-spacing:2.630126px;}
.ws76{word-spacing:2.689902px;}
.wsb6{word-spacing:2.749678px;}
.wse5{word-spacing:2.797517px;}
.ws1d{word-spacing:2.809453px;}
.wsdb{word-spacing:3.012710px;}
.ws2d{word-spacing:3.108331px;}
.ws5a{word-spacing:3.168107px;}
.ws5b{word-spacing:3.227882px;}
.ws20{word-spacing:3.347434px;}
.wsb7{word-spacing:3.466985px;}
.wsda{word-spacing:3.712090px;}
.wscf{word-spacing:3.819686px;}
.ws90{word-spacing:3.825638px;}
.wsd4{word-spacing:3.927283px;}
.ws11{word-spacing:3.945190px;}
.ws87{word-spacing:4.004965px;}
.ws4a{word-spacing:4.064741px;}
.ws14{word-spacing:4.124516px;}
.ws5c{word-spacing:4.184292px;}
.wsa3{word-spacing:4.244068px;}
.ws9f{word-spacing:4.722272px;}
.ws17{word-spacing:4.782060px;}
.ws44{word-spacing:4.841824px;}
.wsf6{word-spacing:4.841856px;}
.ws99{word-spacing:4.961375px;}
.ws79{word-spacing:5.080926px;}
.wsb9{word-spacing:5.140702px;}
.wsdd{word-spacing:5.164646px;}
.ws47{word-spacing:5.260253px;}
.wsf3{word-spacing:5.369856px;}
.wsde{word-spacing:5.375578px;}
.wsc2{word-spacing:5.375597px;}
.wsc8{word-spacing:5.378698px;}
.wsd5{word-spacing:5.378707px;}
.ws4{word-spacing:5.379840px;}
.wscb{word-spacing:5.380022px;}
.ws35{word-spacing:5.439580px;}
.wsc3{word-spacing:5.487437px;}
.ws85{word-spacing:5.559131px;}
.wsba{word-spacing:5.678682px;}
.wsd9{word-spacing:5.702630px;}
.wsb2{word-spacing:5.974183px;}
.wsa9{word-spacing:5.974943px;}
.wsa8{word-spacing:5.975700px;}
.wsb1{word-spacing:5.975884px;}
.ws12{word-spacing:5.977560px;}
.wsab{word-spacing:5.981700px;}
.ws3a{word-spacing:6.037336px;}
.ws39{word-spacing:6.097111px;}
.ws74{word-spacing:6.336214px;}
.ws96{word-spacing:6.395989px;}
.wsec{word-spacing:6.402010px;}
.ws40{word-spacing:6.575316px;}
.ws4b{word-spacing:6.694867px;}
.wsd2{word-spacing:6.724800px;}
.ws3b{word-spacing:6.814418px;}
.wsee{word-spacing:6.879808px;}
.wsef{word-spacing:6.886195px;}
.ws98{word-spacing:6.933970px;}
.wsc4{word-spacing:7.370381px;}
.wsf1{word-spacing:7.524444px;}
.wsf2{word-spacing:7.531776px;}
.ws8d{word-spacing:7.591501px;}
.ws7e{word-spacing:7.770828px;}
.wsa1{word-spacing:7.890379px;}
.ws55{word-spacing:8.189257px;}
.ws2b{word-spacing:8.368584px;}
.ws2c{word-spacing:8.667462px;}
.ws77{word-spacing:8.906564px;}
.ws89{word-spacing:8.966340px;}
.ws7b{word-spacing:9.145667px;}
.ws4c{word-spacing:9.205442px;}
.ws66{word-spacing:9.315275px;}
.ws68{word-spacing:9.317964px;}
.ws67{word-spacing:9.324994px;}
.ws78{word-spacing:9.384769px;}
.ws8b{word-spacing:9.982525px;}
.ws1b{word-spacing:10.042301px;}
.wsbb{word-spacing:10.221628px;}
.wsc6{word-spacing:10.490688px;}
.ws2a{word-spacing:10.520506px;}
.wse7{word-spacing:10.867277px;}
.ws3e{word-spacing:11.178037px;}
.ws69{word-spacing:11.716018px;}
.ws7{word-spacing:13.509286px;}
.ws42{word-spacing:14.465695px;}
.ws3d{word-spacing:17.394700px;}
.ws1f{word-spacing:19.008641px;}
.ws1e{word-spacing:19.068416px;}
.ws36{word-spacing:22.774504px;}
.ws8a{word-spacing:23.970016px;}
.wscc{word-spacing:32.978419px;}
.ws7c{word-spacing:35.327380px;}
.ws61{word-spacing:45.788110px;}
.ws60{word-spacing:45.797628px;}
.wsaf{word-spacing:112.492454px;}
.wsac{word-spacing:121.476787px;}
.ws1a{word-spacing:376.109019px;}
.wsb0{word-spacing:376.674758px;}
.ws91{word-spacing:1723.170547px;}
._3{margin-left:-11.943245px;}
._4{margin-left:-9.683712px;}
._1e{margin-left:-8.302668px;}
._5{margin-left:-6.635092px;}
._7{margin-left:-4.949453px;}
._1{margin-left:-3.489596px;}
._a{margin-left:-2.412897px;}
._0{margin-left:-1.241054px;}
._2{width:1.431164px;}
._6{width:3.000854px;}
._2b{width:4.602721px;}
._e{width:11.955150px;}
._1d{width:12.957060px;}
._16{width:14.226593px;}
._1c{width:15.708895px;}
._43{width:16.737210px;}
._8{width:17.861069px;}
._9{width:19.797811px;}
._b{width:20.921460px;}
._15{width:22.162514px;}
._c{width:23.192933px;}
._13{width:24.553538px;}
._d{width:25.904708px;}
._20{width:26.944562px;}
._14{width:28.214083px;}
._17{width:29.618435px;}
._1f{width:31.268178px;}
._1a{width:34.012316px;}
._21{width:38.136833px;}
._11{width:39.700950px;}
._10{width:43.636188px;}
._44{width:52.289417px;}
._45{width:62.667836px;}
._19{width:73.523988px;}
._12{width:78.545138px;}
._2d{width:90.929670px;}
._18{width:107.596080px;}
._31{width:110.975340px;}
._1b{width:112.936627px;}
._33{width:115.042499px;}
._3f{width:124.489498px;}
._38{width:126.856627px;}
._34{width:130.730112px;}
._3c{width:141.285358px;}
._3a{width:142.883171px;}
._3d{width:167.465572px;}
._41{width:201.797798px;}
._36{width:225.315433px;}
._37{width:229.552393px;}
._2f{width:232.941692px;}
._32{width:235.992061px;}
._3b{width:237.686711px;}
._2e{width:239.506200px;}
._30{width:241.657033px;}
._3e{width:253.874650px;}
._39{width:271.967052px;}
._35{width:289.341284px;}
._2c{width:332.877920px;}
._23{width:352.917504px;}
._40{width:469.216564px;}
._24{width:698.321120px;}
._42{width:839.104541px;}
._27{width:956.431613px;}
._28{width:1056.811396px;}
._29{width:1170.692652px;}
._26{width:1191.907210px;}
._25{width:1398.385469px;}
._2a{width:1450.079482px;}
._f{width:1473.989782px;}
._22{width:2953.674434px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(95,159,35);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.962980px;}
.fsb{font-size:41.842800px;}
.fse{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:44.529120px;}
.fsa{font-size:45.429600px;}
.fsd{font-size:47.236800px;}
.fsf{font-size:47.820600px;}
.fs10{font-size:48.418560px;}
.fsc{font-size:53.798400px;}
.fs5{font-size:55.661400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.425340px;}
.y26{bottom:12.664592px;}
.y3c{bottom:14.151273px;}
.y25{bottom:26.023328px;}
.y6{bottom:50.595005px;}
.y54{bottom:63.780000px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y53{bottom:108.612000px;}
.yec{bottom:114.903000px;}
.y111{bottom:115.828500px;}
.y1a0{bottom:120.999000px;}
.y1df{bottom:123.795000px;}
.yc4{bottom:124.708500px;}
.y212{bottom:128.325000px;}
.y52{bottom:128.875500px;}
.yeb{bottom:135.166500px;}
.y110{bottom:136.093500px;}
.y23{bottom:139.264499px;}
.y19f{bottom:141.264000px;}
.y1de{bottom:143.163000px;}
.y86{bottom:143.386500px;}
.yc3{bottom:143.941500px;}
.y161{bottom:145.392000px;}
.y211{bottom:147.691500px;}
.y51{bottom:149.139000px;}
.yea{bottom:155.431500px;}
.y19e{bottom:161.527500px;}
.y1dd{bottom:162.531000px;}
.y85{bottom:163.650000px;}
.y160{bottom:165.655500px;}
.yab{bottom:166.161000px;}
.y210{bottom:167.059500px;}
.y10f{bottom:168.312000px;}
.y50{bottom:169.404000px;}
.ye9{bottom:175.695000px;}
.y19d{bottom:181.792500px;}
.y1dc{bottom:181.897500px;}
.y84{bottom:183.913500px;}
.y15f{bottom:185.920500px;}
.yaa{bottom:186.424500px;}
.y20f{bottom:186.427500px;}
.y139{bottom:189.667500px;}
.y10e{bottom:190.071000px;}
.ye8{bottom:195.960000px;}
.y1a{bottom:196.933500px;}
.y4f{bottom:198.634500px;}
.y1db{bottom:201.265500px;}
.y19c{bottom:202.056000px;}
.y83{bottom:204.178500px;}
.y20e{bottom:205.794000px;}
.y15e{bottom:206.184000px;}
.ya9{bottom:206.689500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y138{bottom:209.932500px;}
.y10d{bottom:210.334500px;}
.ye7{bottom:216.223500px;}
.y1da{bottom:220.632000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y19b{bottom:222.319500px;}
.y82{bottom:224.442000px;}
.y20d{bottom:225.162000px;}
.y15d{bottom:226.447500px;}
.ya8{bottom:226.953000px;}
.y137{bottom:230.196000px;}
.y10c{bottom:232.093500px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y186{bottom:235.192500px;}
.ye6{bottom:236.487000px;}
.y1d9{bottom:240.000000px;}
.y184{bottom:243.411000px;}
.y20c{bottom:244.528500px;}
.y81{bottom:244.707000px;}
.y15c{bottom:246.712500px;}
.ya7{bottom:247.216500px;}
.y136{bottom:250.459500px;}
.y19a{bottom:251.550000px;}
.y185{bottom:251.631000px;}
.y10b{bottom:252.358500px;}
.y1d8{bottom:259.368000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1b5{bottom:262.923000px;}
.y20b{bottom:263.896500px;}
.y80{bottom:264.970500px;}
.y15b{bottom:266.976000px;}
.ya6{bottom:267.481500px;}
.ye5{bottom:268.707000px;}
.y135{bottom:270.724500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y10a{bottom:272.622000px;}
.y4e{bottom:275.050500px;}
.y183{bottom:275.271000px;}
.y1d7{bottom:278.734500px;}
.y1b4{bottom:282.156000px;}
.y20a{bottom:283.264500px;}
.y181{bottom:283.489500px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y7f{bottom:285.234000px;}
.y15a{bottom:287.241000px;}
.ya5{bottom:287.745000px;}
.ye4{bottom:288.970500px;}
.y134{bottom:290.988000px;}
.y182{bottom:291.709500px;}
.y17f{bottom:293.310000px;}
.y109{bottom:294.381000px;}
.y199{bottom:294.520500px;}
.y4d{bottom:295.314000px;}
.y1d6{bottom:298.102500px;}
.y209{bottom:302.631000px;}
.y7e{bottom:305.499000px;}
.y159{bottom:307.504500px;}
.ya4{bottom:308.010000px;}
.ye3{bottom:309.235500px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y133{bottom:311.253000px;}
.y108{bottom:314.644500px;}
.y180{bottom:315.706500px;}
.y198{bottom:316.117800px;}
.y1d5{bottom:317.469000px;}
.y208{bottom:321.999000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y7d{bottom:325.762500px;}
.y158{bottom:327.768000px;}
.ya3{bottom:328.273500px;}
.y4c{bottom:333.511500px;}
.y107{bottom:334.908000px;}
.y1d4{bottom:336.837000px;}
.y197{bottom:337.716450px;}
.ye2{bottom:338.466000px;}
.y17e{bottom:339.705000px;}
.y17c{bottom:340.336500px;}
.y207{bottom:341.367000px;}
.y132{bottom:342.568500px;}
.y7c{bottom:346.027500px;}
.y157{bottom:348.033000px;}
.y11{bottom:348.133500px;}
.ya2{bottom:348.537000px;}
.y4b{bottom:353.775000px;}
.y1d3{bottom:356.205000px;}
.y106{bottom:356.667000px;}
.y17b{bottom:356.775000px;}
.y196{bottom:359.315100px;}
.y206{bottom:360.733500px;}
.y17d{bottom:363.703500px;}
.y131{bottom:364.327500px;}
.y178{bottom:364.557000px;}
.y7b{bottom:366.291000px;}
.y156{bottom:368.296500px;}
.ya1{bottom:368.802000px;}
.y17a{bottom:373.213500px;}
.ye1{bottom:373.285500px;}
.y4a{bottom:374.038500px;}
.y1d2{bottom:375.571500px;}
.y105{bottom:376.930500px;}
.y205{bottom:380.101500px;}
.y195{bottom:380.912400px;}
.y130{bottom:386.086500px;}
.y7a{bottom:386.554500px;}
.y10{bottom:386.785499px;}
.y179{bottom:387.700500px;}
.y155{bottom:388.561500px;}
.ya0{bottom:389.065500px;}
.ye0{bottom:393.549000px;}
.y49{bottom:394.303500px;}
.y1d1{bottom:394.939500px;}
.y104{bottom:398.689500px;}
.y204{bottom:399.468000px;}
.y194{bottom:402.511050px;}
.y79{bottom:406.819500px;}
.y12f{bottom:407.844000px;}
.yf{bottom:408.044999px;}
.y154{bottom:408.825000px;}
.y9f{bottom:409.330500px;}
.y177{bottom:411.342000px;}
.y1d0{bottom:414.306000px;}
.y48{bottom:414.567000px;}
.ydf{bottom:415.308000px;}
.y203{bottom:418.836000px;}
.y103{bottom:418.953000px;}
.y176{bottom:419.560500px;}
.y193{bottom:424.108350px;}
.y78{bottom:427.083000px;}
.y153{bottom:429.088500px;}
.y1cf{bottom:433.674000px;}
.y47{bottom:434.832000px;}
.yde{bottom:437.065500px;}
.y202{bottom:438.204000px;}
.y12e{bottom:439.161000px;}
.y9e{bottom:441.549000px;}
.y192{bottom:445.707000px;}
.y77{bottom:447.348000px;}
.y152{bottom:449.353500px;}
.y102{bottom:451.173000px;}
.y175{bottom:451.420500px;}
.y1ce{bottom:453.042000px;}
.y46{bottom:455.095500px;}
.ydd{bottom:457.330500px;}
.y201{bottom:457.570500px;}
.y12d{bottom:459.426000px;}
.y174{bottom:459.640500px;}
.y171{bottom:461.631000px;}
.y9d{bottom:461.814000px;}
.y191{bottom:467.305650px;}
.y76{bottom:467.611500px;}
.y151{bottom:469.617000px;}
.y101{bottom:471.436500px;}
.y1cd{bottom:472.408500px;}
.y45{bottom:475.359000px;}
.y200{bottom:476.938500px;}
.ydc{bottom:479.088000px;}
.y12c{bottom:479.689500px;}
.y9c{bottom:482.077500px;}
.ye{bottom:484.864502px;}
.y75{bottom:487.875000px;}
.y190{bottom:488.902950px;}
.y150{bottom:489.882000px;}
.y1b3{bottom:490.120500px;}
.y173{bottom:491.500500px;}
.y1cc{bottom:491.776500px;}
.y44{bottom:495.624000px;}
.y1ff{bottom:496.305000px;}
.ydb{bottom:499.353000px;}
.yd{bottom:502.864502px;}
.y100{bottom:503.656500px;}
.y9b{bottom:503.836500px;}
.y172{bottom:507.937500px;}
.y74{bottom:508.140000px;}
.y12b{bottom:508.920000px;}
.y14f{bottom:510.145500px;}
.y1b2{bottom:510.385500px;}
.y18f{bottom:510.501600px;}
.y1fe{bottom:515.673000px;}
.y43{bottom:515.887500px;}
.y1cb{bottom:520.110000px;}
.yc{bottom:520.864502px;}
.yff{bottom:523.920000px;}
.y9a{bottom:525.594000px;}
.yda{bottom:527.088000px;}
.y73{bottom:528.403500px;}
.y14e{bottom:530.409000px;}
.y1b1{bottom:530.649000px;}
.y170{bottom:531.936000px;}
.y18e{bottom:532.098900px;}
.y1fd{bottom:535.041000px;}
.y42{bottom:536.152500px;}
.yb{bottom:538.864499px;}
.y12a{bottom:543.739500px;}
.yfe{bottom:544.185000px;}
.y99{bottom:545.859000px;}
.yd9{bottom:547.353000px;}
.y72{bottom:548.667000px;}
.y14d{bottom:550.674000px;}
.y1b0{bottom:550.912500px;}
.y18d{bottom:553.376250px;}
.y1fc{bottom:554.407500px;}
.y16c{bottom:555.033000px;}
.y16f{bottom:555.934500px;}
.y16e{bottom:556.297500px;}
.y41{bottom:556.416000px;}
.ya{bottom:556.864499px;}
.y1ca{bottom:559.561500px;}
.yfd{bottom:564.448500px;}
.y98{bottom:567.616500px;}
.y18c{bottom:568.170900px;}
.y71{bottom:568.932000px;}
.y14c{bottom:570.937500px;}
.y1af{bottom:571.177500px;}
.y129{bottom:572.970000px;}
.y1fb{bottom:573.775500px;}
.y40{bottom:576.679500px;}
.y16d{bottom:579.931500px;}
.y189{bottom:580.010400px;}
.y1c9{bottom:583.726500px;}
.yfc{bottom:584.712000px;}
.y97{bottom:587.881500px;}
.y70{bottom:589.195500px;}
.y18b{bottom:589.446900px;}
.y1fa{bottom:593.142000px;}
.y3f{bottom:596.944500px;}
.y1c8{bottom:598.924500px;}
.y14b{bottom:600.168000px;}
.y16b{bottom:603.930000px;}
.y18a{bottom:604.241550px;}
.yfb{bottom:604.977000px;}
.yd8{bottom:608.145000px;}
.y1ae{bottom:608.296500px;}
.y6f{bottom:609.460500px;}
.y128{bottom:610.297500px;}
.y217{bottom:612.304500px;}
.y1f9{bottom:612.510000px;}
.yc2{bottom:612.628500px;}
.y3e{bottom:617.208000px;}
.y96{bottom:620.100000px;}
.y1c7{bottom:623.089500px;}
.yfa{bottom:625.240500px;}
.y16a{bottom:627.928500px;}
.yd7{bottom:628.408500px;}
.y6e{bottom:629.724000px;}
.y1ad{bottom:630.354000px;}
.y216{bottom:631.672500px;}
.y1f8{bottom:631.878000px;}
.y127{bottom:632.055000px;}
.yc1{bottom:632.892000px;}
.y188{bottom:634.171500px;}
.y14a{bottom:634.987500px;}
.y1c6{bottom:638.287500px;}
.y95{bottom:640.365000px;}
.yf9{bottom:645.505500px;}
.y9{bottom:645.510000px;}
.yd6{bottom:648.673500px;}
.y165{bottom:648.687000px;}
.y6d{bottom:649.987500px;}
.y215{bottom:651.039000px;}
.y1f7{bottom:651.244500px;}
.y3b{bottom:651.564055px;}
.y169{bottom:651.925500px;}
.y126{bottom:652.320000px;}
.y3a{bottom:652.332000px;}
.yc0{bottom:653.157000px;}
.y187{bottom:653.404500px;}
.y1c5{bottom:653.485500px;}
.y1ac{bottom:653.995500px;}
.y149{bottom:655.252500px;}
.y94{bottom:660.628500px;}
.y1ab{bottom:662.214000px;}
.y168{bottom:664.021500px;}
.yf8{bottom:665.769000px;}
.y8{bottom:666.771000px;}
.y1c4{bottom:668.683500px;}
.yd5{bottom:668.937000px;}
.y6c{bottom:670.252500px;}
.y1f6{bottom:670.612500px;}
.ybf{bottom:673.420500px;}
.y125{bottom:674.077500px;}
.y167{bottom:675.567000px;}
.y214{bottom:680.385000px;}
.y93{bottom:680.892000px;}
.y148{bottom:684.483000px;}
.yf7{bottom:686.032500px;}
.y1f5{bottom:689.979000px;}
.y6b{bottom:690.516000px;}
.yd4{bottom:690.696000px;}
.y39{bottom:691.336500px;}
.y166{bottom:692.005500px;}
.ybe{bottom:693.684000px;}
.y1aa{bottom:694.074000px;}
.y124{bottom:694.342500px;}
.y213{bottom:695.583000px;}
.y92{bottom:701.157000px;}
.y1c3{bottom:701.814000px;}
.yf6{bottom:706.297500px;}
.y1f4{bottom:709.347000px;}
.y38{bottom:709.494000px;}
.y1a9{bottom:710.512500px;}
.y6a{bottom:710.781000px;}
.yd3{bottom:710.959500px;}
.ybd{bottom:713.949000px;}
.y164{bottom:716.002500px;}
.y123{bottom:716.100000px;}
.y147{bottom:719.302500px;}
.y91{bottom:721.420500px;}
.y1c2{bottom:722.077500px;}
.y7{bottom:726.298500px;}
.yf5{bottom:726.561000px;}
.y1f3{bottom:728.715000px;}
.y69{bottom:731.044500px;}
.yd2{bottom:731.224500px;}
.y37{bottom:732.532500px;}
.ybc{bottom:734.212500px;}
.y1a8{bottom:734.511000px;}
.y122{bottom:736.365000px;}
.y146{bottom:739.566000px;}
.y90{bottom:741.685500px;}
.y1c1{bottom:742.342500px;}
.y36{bottom:745.807500px;}
.yf4{bottom:746.826000px;}
.y163{bottom:747.622500px;}
.y1f2{bottom:748.081500px;}
.y68{bottom:751.308000px;}
.yd1{bottom:751.488000px;}
.y3{bottom:752.599495px;}
.ybb{bottom:754.477500px;}
.y121{bottom:758.122500px;}
.y1a6{bottom:758.151000px;}
.y145{bottom:759.829500px;}
.y8f{bottom:761.949000px;}
.y1c0{bottom:762.606000px;}
.yf3{bottom:767.089500px;}
.y1f1{bottom:767.449500px;}
.y35{bottom:768.847500px;}
.y67{bottom:771.573000px;}
.yd0{bottom:771.753000px;}
.y1a5{bottom:774.589500px;}
.yba{bottom:774.741000px;}
.y120{bottom:778.387500px;}
.y144{bottom:780.094500px;}
.y34{bottom:782.122500px;}
.y1a7{bottom:782.809500px;}
.y1bf{bottom:782.871000px;}
.y1f0{bottom:786.816000px;}
.yf2{bottom:788.848500px;}
.y1a4{bottom:791.028000px;}
.y66{bottom:791.836500px;}
.ycf{bottom:792.016500px;}
.y8e{bottom:794.169000px;}
.yb9{bottom:795.004500px;}
.y162{bottom:798.445500px;}
.y11f{bottom:800.146500px;}
.y143{bottom:800.358000px;}
.y1be{bottom:803.134500px;}
.y33{bottom:805.161000px;}
.y1ef{bottom:806.184000px;}
.y1a3{bottom:807.466500px;}
.yf1{bottom:809.112000px;}
.y65{bottom:812.101500px;}
.yce{bottom:813.775500px;}
.y8d{bottom:814.432500px;}
.yb8{bottom:815.269500px;}
.y32{bottom:818.436000px;}
.y11e{bottom:820.410000px;}
.y142{bottom:820.623000px;}
.y1bd{bottom:823.398000px;}
.y1ee{bottom:825.552000px;}
.yf0{bottom:829.377000px;}
.y64{bottom:832.365000px;}
.ycd{bottom:834.039000px;}
.yb7{bottom:835.533000px;}
.y8c{bottom:836.191500px;}
.y1a2{bottom:839.086500px;}
.y31{bottom:841.474500px;}
.y11d{bottom:842.169000px;}
.y1bc{bottom:843.663000px;}
.y1ed{bottom:844.918500px;}
.yef{bottom:849.640500px;}
.y141{bottom:849.852000px;}
.y63{bottom:852.628500px;}
.ycc{bottom:854.302500px;}
.yb6{bottom:855.798000px;}
.y8b{bottom:856.455000px;}
.y1a1{bottom:858.319500px;}
.y30{bottom:859.632000px;}
.y11c{bottom:863.926500px;}
.y1ec{bottom:864.286500px;}
.yee{bottom:871.399500px;}
.y62{bottom:872.893500px;}
.y2f{bottom:872.907000px;}
.yb5{bottom:876.061500px;}
.y8a{bottom:878.214000px;}
.y2{bottom:879.369000px;}
.y1eb{bottom:883.653000px;}
.y11b{bottom:884.191500px;}
.y140{bottom:887.179500px;}
.yed{bottom:891.663000px;}
.y61{bottom:893.157000px;}
.y2e{bottom:895.945500px;}
.ycb{bottom:896.325000px;}
.y89{bottom:898.477500px;}
.y1ea{bottom:903.021000px;}
.y1bb{bottom:904.455000px;}
.y11a{bottom:905.949000px;}
.yb4{bottom:908.281500px;}
.y13f{bottom:908.938500px;}
.y60{bottom:913.422000px;}
.yca{bottom:916.590000px;}
.y2d{bottom:917.112000px;}
.y88{bottom:920.236500px;}
.y1e9{bottom:922.389000px;}
.y1ba{bottom:924.718500px;}
.y119{bottom:926.214000px;}
.y13e{bottom:929.202000px;}
.yb3{bottom:930.039000px;}
.y5f{bottom:933.685500px;}
.y2c{bottom:937.375500px;}
.y1e8{bottom:941.755500px;}
.y87{bottom:941.994000px;}
.y1b9{bottom:944.983500px;}
.y118{bottom:947.971500px;}
.y13d{bottom:949.467000px;}
.yb2{bottom:950.304000px;}
.yc9{bottom:951.798000px;}
.y5e{bottom:953.949000px;}
.y1e7{bottom:961.123500px;}
.y1b8{bottom:965.247000px;}
.y1{bottom:966.726000px;}
.y117{bottom:968.236500px;}
.y13c{bottom:971.224500px;}
.yb1{bottom:972.061500px;}
.y5d{bottom:974.214000px;}
.y2b{bottom:980.055000px;}
.y1e6{bottom:980.490000px;}
.y1b7{bottom:985.512000px;}
.y116{bottom:989.994000px;}
.y13b{bottom:991.489500px;}
.yc8{bottom:992.326500px;}
.yb0{bottom:993.820500px;}
.y5c{bottom:994.477500px;}
.y1e5{bottom:999.858000px;}
.y1b6{bottom:1005.775500px;}
.y2a{bottom:1010.451000px;}
.y115{bottom:1011.753000px;}
.yc7{bottom:1014.084000px;}
.y5b{bottom:1014.742500px;}
.y1e4{bottom:1019.226000px;}
.yaf{bottom:1026.039000px;}
.y114{bottom:1032.018000px;}
.yc6{bottom:1034.349000px;}
.y5a{bottom:1035.006000px;}
.y1e3{bottom:1038.592500px;}
.y29{bottom:1040.848500px;}
.yae{bottom:1046.304000px;}
.y113{bottom:1053.775500px;}
.yc5{bottom:1054.612500px;}
.y59{bottom:1055.269500px;}
.y1e2{bottom:1057.960500px;}
.yad{bottom:1066.567500px;}
.y28{bottom:1071.244500px;}
.y112{bottom:1074.040500px;}
.y58{bottom:1075.534500px;}
.y1e1{bottom:1077.327000px;}
.yac{bottom:1086.832500px;}
.y13a{bottom:1094.304000px;}
.y57{bottom:1095.798000px;}
.y1e0{bottom:1096.695000px;}
.y27{bottom:1100.145000px;}
.y56{bottom:1116.063000px;}
.y24{bottom:1137.954000px;}
.y55{bottom:1168.366500px;}
.h24{height:25.123853px;}
.h11{height:25.508090px;}
.hb{height:30.190743px;}
.hf{height:30.461558px;}
.h7{height:32.130000px;}
.h13{height:33.112997px;}
.h12{height:34.199443px;}
.h27{height:34.813397px;}
.h1f{height:35.006619px;}
.h16{height:35.100320px;}
.h23{height:35.248712px;}
.h17{height:36.104462px;}
.ha{height:37.738429px;}
.h29{height:37.927872px;}
.h18{height:38.896243px;}
.h10{height:39.165235px;}
.h25{height:39.488026px;}
.h14{height:43.217759px;}
.h15{height:43.516637px;}
.hc{height:43.875290px;}
.h6{height:45.900000px;}
.h1e{height:46.971235px;}
.h3{height:48.195000px;}
.h28{height:49.117939px;}
.h9{height:51.022950px;}
.he{height:54.541601px;}
.h2{height:55.080000px;}
.h1b{height:58.731235px;}
.h5{height:64.260000px;}
.h22{height:64.593219px;}
.h20{height:64.598619px;}
.h1c{height:72.039235px;}
.h1d{height:72.045235px;}
.h26{height:72.368026px;}
.hd{height:77.792486px;}
.h21{height:94.185219px;}
.h4{height:119.055004px;}
.h19{height:892.914000px;}
.h1a{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:233.211061px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:29.274117px;}
.x6{left:56.951817px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1f{left:112.561500px;}
.x5{left:114.802500px;}
.x32{left:115.804500px;}
.x3a{left:117.298500px;}
.x9{left:122.110500px;}
.x7{left:123.307500px;}
.x52{left:141.142050px;}
.x40{left:144.720000px;}
.x8{left:146.170500px;}
.x33{left:147.679500px;}
.x35{left:149.397000px;}
.x44{left:153.684000px;}
.x53{left:154.862100px;}
.x5b{left:156.832500px;}
.x58{left:161.404500px;}
.x65{left:164.476500px;}
.x3d{left:166.590000px;}
.x60{left:175.900500px;}
.x41{left:177.523500px;}
.x36{left:179.284500px;}
.x45{left:180.522000px;}
.x4b{left:183.876300px;}
.xf{left:186.645000px;}
.x5c{left:190.996500px;}
.x46{left:192.612000px;}
.x10{left:194.116500px;}
.xc{left:195.996000px;}
.x55{left:198.193500px;}
.x11{left:201.439500px;}
.x4{left:203.484001px;}
.x34{left:205.897500px;}
.x12{left:208.911000px;}
.x69{left:211.539000px;}
.x5d{left:213.562500px;}
.x26{left:218.220000px;}
.x22{left:220.236000px;}
.x25{left:224.722500px;}
.x5e{left:228.505500px;}
.x70{left:251.667000px;}
.x72{left:254.101500px;}
.x5f{left:256.432500px;}
.x71{left:267.238500px;}
.x3f{left:276.366000px;}
.x3e{left:288.694500px;}
.x42{left:290.277000px;}
.x4c{left:294.380550px;}
.xd{left:315.351000px;}
.xe{left:322.822500px;}
.x59{left:330.600000px;}
.x29{left:338.403000px;}
.x2a{left:353.346000px;}
.x2b{left:357.030000px;}
.x4d{left:362.262600px;}
.x2c{left:371.974500px;}
.x17{left:375.933000px;}
.x54{left:383.915250px;}
.x51{left:387.957150px;}
.x18{left:390.877500px;}
.x5a{left:394.492500px;}
.x19{left:398.431500px;}
.x1a{left:413.376000px;}
.x3{left:454.959000px;}
.x13{left:460.738500px;}
.x14{left:468.211500px;}
.x15{left:475.533000px;}
.x61{left:477.262500px;}
.x62{left:483.987000px;}
.x16{left:490.477500px;}
.x50{left:502.884000px;}
.x4e{left:506.844900px;}
.x47{left:548.584500px;}
.x49{left:553.179000px;}
.x1b{left:557.142000px;}
.x30{left:559.984500px;}
.x4f{left:564.475050px;}
.x4a{left:568.123500px;}
.x2d{left:569.152500px;}
.x1c{left:572.086500px;}
.x31{left:574.929000px;}
.x1d{left:579.708000px;}
.x2e{left:584.097000px;}
.x56{left:585.199500px;}
.x27{left:588.318000px;}
.x1e{left:594.651000px;}
.x28{left:603.262500px;}
.x6e{left:610.050000px;}
.x39{left:612.363000px;}
.x23{left:627.832500px;}
.x6f{left:636.948000px;}
.x24{left:642.777000px;}
.x57{left:659.809500px;}
.x48{left:676.128000px;}
.x37{left:677.386500px;}
.x2f{left:686.431500px;}
.x38{left:691.882500px;}
.x3c{left:692.916000px;}
.xa{left:701.339982px;}
.x6c{left:714.849000px;}
.x3b{left:719.292000px;}
.x6a{left:728.326500px;}
.x68{left:729.705000px;}
.x66{left:735.802500px;}
.x6d{left:741.748500px;}
.x63{left:749.463000px;}
.x6b{left:755.226000px;}
.x20{left:756.895500px;}
.x67{left:762.702000px;}
.x21{left:771.838500px;}
.x64{left:776.362500px;}
.x43{left:806.890500px;}
@media print{
.v4{vertical-align:-39.781333pt;}
.v2{vertical-align:-17.354667pt;}
.v9{vertical-align:-9.557333pt;}
.v8{vertical-align:-7.173333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.938667pt;}
.v3{vertical-align:17.392000pt;}
.v1{vertical-align:19.285333pt;}
.v7{vertical-align:26.304000pt;}
.v5{vertical-align:29.221333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000711pt;}
.ls11{letter-spacing:0.001061pt;}
.lsa{letter-spacing:0.001852pt;}
.ls25{letter-spacing:0.001928pt;}
.ls1e{letter-spacing:0.001990pt;}
.ls14{letter-spacing:0.002078pt;}
.ls10{letter-spacing:0.002287pt;}
.ls12{letter-spacing:0.002496pt;}
.ls26{letter-spacing:0.002505pt;}
.lsd{letter-spacing:0.002630pt;}
.lsc{letter-spacing:0.003106pt;}
.lsb{letter-spacing:0.003914pt;}
.ls6{letter-spacing:0.003942pt;}
.ls20{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.004499pt;}
.ls2a{letter-spacing:0.478097pt;}
.ls8{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls7{letter-spacing:10.631867pt;}
.ls29{letter-spacing:11.544120pt;}
.ls22{letter-spacing:11.751990pt;}
.ls19{letter-spacing:11.951411pt;}
.ls1d{letter-spacing:11.952375pt;}
.ls1f{letter-spacing:11.954133pt;}
.ls1b{letter-spacing:11.954551pt;}
.ls1a{letter-spacing:11.955635pt;}
.ls1c{letter-spacing:11.956267pt;}
.ls18{letter-spacing:11.956745pt;}
.ls17{letter-spacing:11.956898pt;}
.ls21{letter-spacing:11.959467pt;}
.ls24{letter-spacing:12.139747pt;}
.lse{letter-spacing:12.654804pt;}
.lsf{letter-spacing:13.280110pt;}
.ls13{letter-spacing:13.442868pt;}
.ls28{letter-spacing:13.681401pt;}
.ls27{letter-spacing:13.901009pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls2{letter-spacing:64.315733pt;}
.ls9{letter-spacing:83.149654pt;}
.ls16{letter-spacing:125.274231pt;}
.wsf{word-spacing:-15.461955pt;}
.ws9c{word-spacing:-14.331894pt;}
.wsad{word-spacing:-13.915853pt;}
.ws65{word-spacing:-13.283467pt;}
.ws19{word-spacing:-12.369595pt;}
.ws3{word-spacing:-11.955200pt;}
.ws9d{word-spacing:-10.759680pt;}
.ws18{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.ws23{word-spacing:-3.931906pt;}
.ws21{word-spacing:-3.878772pt;}
.ws6c{word-spacing:-3.825638pt;}
.ws45{word-spacing:-3.719371pt;}
.ws86{word-spacing:-3.666237pt;}
.ws80{word-spacing:-3.613103pt;}
.ws9a{word-spacing:-3.586560pt;}
.ws82{word-spacing:-3.559969pt;}
.wsbf{word-spacing:-3.538739pt;}
.wsb8{word-spacing:-3.453701pt;}
.ws9b{word-spacing:-3.395277pt;}
.ws4e{word-spacing:-3.241166pt;}
.ws16{word-spacing:-3.188032pt;}
.ws15{word-spacing:-3.134898pt;}
.wsca{word-spacing:-3.060531pt;}
.wsb3{word-spacing:-2.869229pt;}
.ws27{word-spacing:-2.762961pt;}
.ws38{word-spacing:-2.337890pt;}
.ws37{word-spacing:-2.284756pt;}
.wsd8{word-spacing:-2.199757pt;}
.ws58{word-spacing:-2.178489pt;}
.ws57{word-spacing:-2.125355pt;}
.ws56{word-spacing:-2.072221pt;}
.ws28{word-spacing:-2.019087pt;}
.ws5e{word-spacing:-1.912819pt;}
.ws49{word-spacing:-1.859685pt;}
.ws25{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.ws54{word-spacing:-1.647150pt;}
.ws5d{word-spacing:-1.594016pt;}
.ws7f{word-spacing:-1.540882pt;}
.wsdc{word-spacing:-1.291162pt;}
.ws51{word-spacing:-1.277080pt;}
.ws33{word-spacing:-1.275213pt;}
.ws52{word-spacing:-1.264545pt;}
.ws71{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.175671pt;}
.wsd{word-spacing:-1.168945pt;}
.ws6e{word-spacing:-1.115811pt;}
.wsf4{word-spacing:-1.099878pt;}
.ws5f{word-spacing:-1.062677pt;}
.ws72{word-spacing:-1.009543pt;}
.ws6d{word-spacing:-0.956410pt;}
.wsa6{word-spacing:-0.908595pt;}
.ws6a{word-spacing:-0.903276pt;}
.wsc{word-spacing:-0.850142pt;}
.ws70{word-spacing:-0.797008pt;}
.ws75{word-spacing:-0.743874pt;}
.wsbd{word-spacing:-0.690740pt;}
.ws8c{word-spacing:-0.637606pt;}
.ws8e{word-spacing:-0.584473pt;}
.wseb{word-spacing:-0.573850pt;}
.ws97{word-spacing:-0.478205pt;}
.ws93{word-spacing:-0.430387pt;}
.ws84{word-spacing:-0.425071pt;}
.ws3f{word-spacing:-0.371937pt;}
.wsd3{word-spacing:-0.334746pt;}
.ws22{word-spacing:-0.265669pt;}
.wsb5{word-spacing:-0.239104pt;}
.ws13{word-spacing:-0.212535pt;}
.wscd{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.wsd1{word-spacing:-0.143462pt;}
.ws30{word-spacing:-0.106268pt;}
.wsa5{word-spacing:-0.095642pt;}
.ws8{word-spacing:-0.053134pt;}
.wsa7{word-spacing:-0.047821pt;}
.ws53{word-spacing:-0.017164pt;}
.wsf7{word-spacing:-0.008764pt;}
.wsc9{word-spacing:-0.008269pt;}
.wse1{word-spacing:-0.007287pt;}
.ws64{word-spacing:-0.006044pt;}
.wsf0{word-spacing:-0.003823pt;}
.wsc7{word-spacing:-0.002935pt;}
.wsae{word-spacing:-0.002825pt;}
.ws1{word-spacing:-0.002223pt;}
.wsaa{word-spacing:-0.001502pt;}
.ws0{word-spacing:0.000000pt;}
.wsf5{word-spacing:0.019031pt;}
.wsce{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.wsed{word-spacing:0.078562pt;}
.ws92{word-spacing:0.095642pt;}
.wsa{word-spacing:0.106268pt;}
.wsa4{word-spacing:0.143462pt;}
.ws34{word-spacing:0.159402pt;}
.wsbe{word-spacing:0.191283pt;}
.ws62{word-spacing:0.193090pt;}
.ws63{word-spacing:0.196346pt;}
.ws3c{word-spacing:0.212535pt;}
.wsc0{word-spacing:0.239104pt;}
.ws2f{word-spacing:0.265669pt;}
.wse0{word-spacing:0.286925pt;}
.ws81{word-spacing:0.318803pt;}
.ws2e{word-spacing:0.371937pt;}
.wsdf{word-spacing:0.382566pt;}
.wsbc{word-spacing:0.425071pt;}
.wsa2{word-spacing:0.478205pt;}
.wsd0{word-spacing:0.621670pt;}
.ws1c{word-spacing:0.690740pt;}
.ws6b{word-spacing:0.743874pt;}
.wse2{word-spacing:0.765133pt;}
.wsb4{word-spacing:0.797008pt;}
.ws10{word-spacing:0.850142pt;}
.wsd6{word-spacing:0.860774pt;}
.ws43{word-spacing:0.903276pt;}
.wsa0{word-spacing:0.956410pt;}
.wsd7{word-spacing:0.956416pt;}
.ws50{word-spacing:1.004237pt;}
.ws9e{word-spacing:1.009543pt;}
.ws8f{word-spacing:1.062677pt;}
.wse{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.195520pt;}
.ws9{word-spacing:1.222079pt;}
.ws4f{word-spacing:1.291162pt;}
.ws46{word-spacing:1.328347pt;}
.wse9{word-spacing:1.338982pt;}
.ws59{word-spacing:1.381481pt;}
.ws31{word-spacing:1.434614pt;}
.wse6{word-spacing:1.482445pt;}
.ws7d{word-spacing:1.487748pt;}
.ws4d{word-spacing:1.540882pt;}
.wsc5{word-spacing:1.578086pt;}
.ws48{word-spacing:1.594016pt;}
.ws7a{word-spacing:1.647150pt;}
.wse8{word-spacing:1.673728pt;}
.wsea{word-spacing:1.721549pt;}
.ws88{word-spacing:1.859685pt;}
.ws41{word-spacing:1.912819pt;}
.wse4{word-spacing:1.912832pt;}
.wse3{word-spacing:1.932779pt;}
.ws24{word-spacing:1.965953pt;}
.ws29{word-spacing:2.019087pt;}
.ws83{word-spacing:2.072221pt;}
.ws94{word-spacing:2.125355pt;}
.ws95{word-spacing:2.178489pt;}
.ws6f{word-spacing:2.231622pt;}
.ws32{word-spacing:2.284756pt;}
.ws73{word-spacing:2.337890pt;}
.ws76{word-spacing:2.391024pt;}
.wsb6{word-spacing:2.444158pt;}
.wse5{word-spacing:2.486682pt;}
.ws1d{word-spacing:2.497292pt;}
.wsdb{word-spacing:2.677965pt;}
.ws2d{word-spacing:2.762961pt;}
.ws5a{word-spacing:2.816095pt;}
.ws5b{word-spacing:2.869229pt;}
.ws20{word-spacing:2.975497pt;}
.wsb7{word-spacing:3.081764pt;}
.wsda{word-spacing:3.299635pt;}
.wscf{word-spacing:3.395277pt;}
.ws90{word-spacing:3.400567pt;}
.wsd4{word-spacing:3.490918pt;}
.ws11{word-spacing:3.506835pt;}
.ws87{word-spacing:3.559969pt;}
.ws4a{word-spacing:3.613103pt;}
.ws14{word-spacing:3.666237pt;}
.ws5c{word-spacing:3.719371pt;}
.wsa3{word-spacing:3.772505pt;}
.ws9f{word-spacing:4.197575pt;}
.ws17{word-spacing:4.250720pt;}
.ws44{word-spacing:4.303843pt;}
.wsf6{word-spacing:4.303872pt;}
.ws99{word-spacing:4.410111pt;}
.ws79{word-spacing:4.516379pt;}
.wsb9{word-spacing:4.569513pt;}
.wsdd{word-spacing:4.590797pt;}
.ws47{word-spacing:4.675780pt;}
.wsf3{word-spacing:4.773205pt;}
.wsde{word-spacing:4.778291pt;}
.wsc2{word-spacing:4.778308pt;}
.wsc8{word-spacing:4.781065pt;}
.wsd5{word-spacing:4.781073pt;}
.ws4{word-spacing:4.782080pt;}
.wscb{word-spacing:4.782242pt;}
.ws35{word-spacing:4.835182pt;}
.wsc3{word-spacing:4.877722pt;}
.ws85{word-spacing:4.941450pt;}
.wsba{word-spacing:5.047717pt;}
.wsd9{word-spacing:5.069005pt;}
.wsb2{word-spacing:5.310385pt;}
.wsa9{word-spacing:5.311060pt;}
.wsa8{word-spacing:5.311733pt;}
.wsb1{word-spacing:5.311897pt;}
.ws12{word-spacing:5.313387pt;}
.wsab{word-spacing:5.317067pt;}
.ws3a{word-spacing:5.366521pt;}
.ws39{word-spacing:5.419654pt;}
.ws74{word-spacing:5.632190pt;}
.ws96{word-spacing:5.685324pt;}
.wsec{word-spacing:5.690675pt;}
.ws40{word-spacing:5.844725pt;}
.ws4b{word-spacing:5.950993pt;}
.wsd2{word-spacing:5.977600pt;}
.ws3b{word-spacing:6.057261pt;}
.wsee{word-spacing:6.115385pt;}
.wsef{word-spacing:6.121062pt;}
.ws98{word-spacing:6.163529pt;}
.wsc4{word-spacing:6.551450pt;}
.wsf1{word-spacing:6.688395pt;}
.wsf2{word-spacing:6.694912pt;}
.ws8d{word-spacing:6.748001pt;}
.ws7e{word-spacing:6.907403pt;}
.wsa1{word-spacing:7.013670pt;}
.ws55{word-spacing:7.279340pt;}
.ws2b{word-spacing:7.438741pt;}
.ws2c{word-spacing:7.704411pt;}
.ws77{word-spacing:7.916946pt;}
.ws89{word-spacing:7.970080pt;}
.ws7b{word-spacing:8.129482pt;}
.ws4c{word-spacing:8.182615pt;}
.ws66{word-spacing:8.280244pt;}
.ws68{word-spacing:8.282634pt;}
.ws67{word-spacing:8.288883pt;}
.ws78{word-spacing:8.342017pt;}
.ws8b{word-spacing:8.873356pt;}
.ws1b{word-spacing:8.926490pt;}
.wsbb{word-spacing:9.085891pt;}
.wsc6{word-spacing:9.325056pt;}
.ws2a{word-spacing:9.351561pt;}
.wse7{word-spacing:9.659802pt;}
.ws3e{word-spacing:9.936033pt;}
.ws69{word-spacing:10.414238pt;}
.ws7{word-spacing:12.008254pt;}
.ws42{word-spacing:12.858396pt;}
.ws3d{word-spacing:15.461955pt;}
.ws1f{word-spacing:16.896570pt;}
.ws1e{word-spacing:16.949703pt;}
.ws36{word-spacing:20.244003pt;}
.ws8a{word-spacing:21.306681pt;}
.wscc{word-spacing:29.314150pt;}
.ws7c{word-spacing:31.402115pt;}
.ws61{word-spacing:40.700542pt;}
.ws60{word-spacing:40.709003pt;}
.wsaf{word-spacing:99.993293pt;}
.wsac{word-spacing:107.979366pt;}
.ws1a{word-spacing:334.319128pt;}
.wsb0{word-spacing:334.822007pt;}
.ws91{word-spacing:1531.707153pt;}
._3{margin-left:-10.616218pt;}
._4{margin-left:-8.607744pt;}
._1e{margin-left:-7.380149pt;}
._5{margin-left:-5.897859pt;}
._7{margin-left:-4.399514pt;}
._1{margin-left:-3.101863pt;}
._a{margin-left:-2.144797pt;}
._0{margin-left:-1.103159pt;}
._2{width:1.272146pt;}
._6{width:2.667426pt;}
._2b{width:4.091308pt;}
._e{width:10.626800pt;}
._1d{width:11.517387pt;}
._16{width:12.645860pt;}
._1c{width:13.963462pt;}
._43{width:14.877520pt;}
._8{width:15.876506pt;}
._9{width:17.598054pt;}
._b{width:18.596853pt;}
._15{width:19.700013pt;}
._c{width:20.615940pt;}
._13{width:21.825367pt;}
._d{width:23.026407pt;}
._20{width:23.950722pt;}
._14{width:25.079185pt;}
._17{width:26.327498pt;}
._1f{width:27.793936pt;}
._1a{width:30.233170pt;}
._21{width:33.899407pt;}
._11{width:35.289733pt;}
._10{width:38.787723pt;}
._44{width:46.479482pt;}
._45{width:55.704743pt;}
._19{width:65.354656pt;}
._12{width:69.817901pt;}
._2d{width:80.826373pt;}
._18{width:95.640960pt;}
._31{width:98.644746pt;}
._1b{width:100.388113pt;}
._33{width:102.259999pt;}
._3f{width:110.657331pt;}
._38{width:112.761446pt;}
._34{width:116.204544pt;}
._3c{width:125.586985pt;}
._3a{width:127.007263pt;}
._3d{width:148.858286pt;}
._41{width:179.375821pt;}
._36{width:200.280385pt;}
._37{width:204.046572pt;}
._2f{width:207.059282pt;}
._32{width:209.770721pt;}
._3b{width:211.277076pt;}
._2e{width:212.894400pt;}
._30{width:214.806252pt;}
._3e{width:225.666355pt;}
._39{width:241.748490pt;}
._35{width:257.192252pt;}
._2c{width:295.891484pt;}
._23{width:313.704448pt;}
._40{width:417.081390pt;}
._24{width:620.729885pt;}
._42{width:745.870703pt;}
._27{width:850.161434pt;}
._28{width:939.387908pt;}
._29{width:1040.615691pt;}
._26{width:1059.473075pt;}
._25{width:1243.009306pt;}
._2a{width:1288.959540pt;}
._f{width:1310.213140pt;}
._22{width:2625.488386pt;}
.fs6{font-size:34.633760pt;}
.fsb{font-size:37.193600pt;}
.fse{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:39.581440pt;}
.fsa{font-size:40.381867pt;}
.fsd{font-size:41.988267pt;}
.fsf{font-size:42.507200pt;}
.fs10{font-size:43.038720pt;}
.fsc{font-size:47.820800pt;}
.fs5{font-size:49.476800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs9{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:3.044747pt;}
.y26{bottom:11.257415pt;}
.y3c{bottom:12.578910pt;}
.y25{bottom:23.131847pt;}
.y6{bottom:44.973338pt;}
.y54{bottom:56.693333pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y53{bottom:96.544000pt;}
.yec{bottom:102.136000pt;}
.y111{bottom:102.958667pt;}
.y1a0{bottom:107.554667pt;}
.y1df{bottom:110.040000pt;}
.yc4{bottom:110.852000pt;}
.y212{bottom:114.066667pt;}
.y52{bottom:114.556000pt;}
.yeb{bottom:120.148000pt;}
.y110{bottom:120.972000pt;}
.y23{bottom:123.790666pt;}
.y19f{bottom:125.568000pt;}
.y1de{bottom:127.256000pt;}
.y86{bottom:127.454667pt;}
.yc3{bottom:127.948000pt;}
.y161{bottom:129.237333pt;}
.y211{bottom:131.281333pt;}
.y51{bottom:132.568000pt;}
.yea{bottom:138.161333pt;}
.y19e{bottom:143.580000pt;}
.y1dd{bottom:144.472000pt;}
.y85{bottom:145.466667pt;}
.y160{bottom:147.249333pt;}
.yab{bottom:147.698667pt;}
.y210{bottom:148.497333pt;}
.y10f{bottom:149.610667pt;}
.y50{bottom:150.581333pt;}
.ye9{bottom:156.173333pt;}
.y19d{bottom:161.593333pt;}
.y1dc{bottom:161.686667pt;}
.y84{bottom:163.478667pt;}
.y15f{bottom:165.262667pt;}
.yaa{bottom:165.710667pt;}
.y20f{bottom:165.713333pt;}
.y139{bottom:168.593333pt;}
.y10e{bottom:168.952000pt;}
.ye8{bottom:174.186667pt;}
.y1a{bottom:175.052000pt;}
.y4f{bottom:176.564000pt;}
.y1db{bottom:178.902667pt;}
.y19c{bottom:179.605333pt;}
.y83{bottom:181.492000pt;}
.y20e{bottom:182.928000pt;}
.y15e{bottom:183.274667pt;}
.ya9{bottom:183.724000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y138{bottom:186.606667pt;}
.y10d{bottom:186.964000pt;}
.ye7{bottom:192.198667pt;}
.y1da{bottom:196.117333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y19b{bottom:197.617333pt;}
.y82{bottom:199.504000pt;}
.y20d{bottom:200.144000pt;}
.y15d{bottom:201.286667pt;}
.ya8{bottom:201.736000pt;}
.y137{bottom:204.618667pt;}
.y10c{bottom:206.305333pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y186{bottom:209.060000pt;}
.ye6{bottom:210.210667pt;}
.y1d9{bottom:213.333333pt;}
.y184{bottom:216.365333pt;}
.y20c{bottom:217.358667pt;}
.y81{bottom:217.517333pt;}
.y15c{bottom:219.300000pt;}
.ya7{bottom:219.748000pt;}
.y136{bottom:222.630667pt;}
.y19a{bottom:223.600000pt;}
.y185{bottom:223.672000pt;}
.y10b{bottom:224.318667pt;}
.y1d8{bottom:230.549333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1b5{bottom:233.709333pt;}
.y20b{bottom:234.574667pt;}
.y80{bottom:235.529333pt;}
.y15b{bottom:237.312000pt;}
.ya6{bottom:237.761333pt;}
.ye5{bottom:238.850667pt;}
.y135{bottom:240.644000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y10a{bottom:242.330667pt;}
.y4e{bottom:244.489333pt;}
.y183{bottom:244.685333pt;}
.y1d7{bottom:247.764000pt;}
.y1b4{bottom:250.805333pt;}
.y20a{bottom:251.790667pt;}
.y181{bottom:251.990667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y7f{bottom:253.541333pt;}
.y15a{bottom:255.325333pt;}
.ya5{bottom:255.773333pt;}
.ye4{bottom:256.862667pt;}
.y134{bottom:258.656000pt;}
.y182{bottom:259.297333pt;}
.y17f{bottom:260.720000pt;}
.y109{bottom:261.672000pt;}
.y199{bottom:261.796000pt;}
.y4d{bottom:262.501333pt;}
.y1d6{bottom:264.980000pt;}
.y209{bottom:269.005333pt;}
.y7e{bottom:271.554667pt;}
.y159{bottom:273.337333pt;}
.ya4{bottom:273.786667pt;}
.ye3{bottom:274.876000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y133{bottom:276.669333pt;}
.y108{bottom:279.684000pt;}
.y180{bottom:280.628000pt;}
.y198{bottom:280.993600pt;}
.y1d5{bottom:282.194667pt;}
.y208{bottom:286.221333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y7d{bottom:289.566667pt;}
.y158{bottom:291.349333pt;}
.ya3{bottom:291.798667pt;}
.y4c{bottom:296.454667pt;}
.y107{bottom:297.696000pt;}
.y1d4{bottom:299.410667pt;}
.y197{bottom:300.192400pt;}
.ye2{bottom:300.858667pt;}
.y17e{bottom:301.960000pt;}
.y17c{bottom:302.521333pt;}
.y207{bottom:303.437333pt;}
.y132{bottom:304.505333pt;}
.y7c{bottom:307.580000pt;}
.y157{bottom:309.362667pt;}
.y11{bottom:309.452000pt;}
.ya2{bottom:309.810667pt;}
.y4b{bottom:314.466667pt;}
.y1d3{bottom:316.626667pt;}
.y106{bottom:317.037333pt;}
.y17b{bottom:317.133333pt;}
.y196{bottom:319.391200pt;}
.y206{bottom:320.652000pt;}
.y17d{bottom:323.292000pt;}
.y131{bottom:323.846667pt;}
.y178{bottom:324.050667pt;}
.y7b{bottom:325.592000pt;}
.y156{bottom:327.374667pt;}
.ya1{bottom:327.824000pt;}
.y17a{bottom:331.745333pt;}
.ye1{bottom:331.809333pt;}
.y4a{bottom:332.478667pt;}
.y1d2{bottom:333.841333pt;}
.y105{bottom:335.049333pt;}
.y205{bottom:337.868000pt;}
.y195{bottom:338.588800pt;}
.y130{bottom:343.188000pt;}
.y7a{bottom:343.604000pt;}
.y10{bottom:343.809333pt;}
.y179{bottom:344.622667pt;}
.y155{bottom:345.388000pt;}
.ya0{bottom:345.836000pt;}
.ye0{bottom:349.821333pt;}
.y49{bottom:350.492000pt;}
.y1d1{bottom:351.057333pt;}
.y104{bottom:354.390667pt;}
.y204{bottom:355.082667pt;}
.y194{bottom:357.787600pt;}
.y79{bottom:361.617333pt;}
.y12f{bottom:362.528000pt;}
.yf{bottom:362.706666pt;}
.y154{bottom:363.400000pt;}
.y9f{bottom:363.849333pt;}
.y177{bottom:365.637333pt;}
.y1d0{bottom:368.272000pt;}
.y48{bottom:368.504000pt;}
.ydf{bottom:369.162667pt;}
.y203{bottom:372.298667pt;}
.y103{bottom:372.402667pt;}
.y176{bottom:372.942667pt;}
.y193{bottom:376.985200pt;}
.y78{bottom:379.629333pt;}
.y153{bottom:381.412000pt;}
.y1cf{bottom:385.488000pt;}
.y47{bottom:386.517333pt;}
.yde{bottom:388.502667pt;}
.y202{bottom:389.514667pt;}
.y12e{bottom:390.365333pt;}
.y9e{bottom:392.488000pt;}
.y192{bottom:396.184000pt;}
.y77{bottom:397.642667pt;}
.y152{bottom:399.425333pt;}
.y102{bottom:401.042667pt;}
.y175{bottom:401.262667pt;}
.y1ce{bottom:402.704000pt;}
.y46{bottom:404.529333pt;}
.ydd{bottom:406.516000pt;}
.y201{bottom:406.729333pt;}
.y12d{bottom:408.378667pt;}
.y174{bottom:408.569333pt;}
.y171{bottom:410.338667pt;}
.y9d{bottom:410.501333pt;}
.y191{bottom:415.382800pt;}
.y76{bottom:415.654667pt;}
.y151{bottom:417.437333pt;}
.y101{bottom:419.054667pt;}
.y1cd{bottom:419.918667pt;}
.y45{bottom:422.541333pt;}
.y200{bottom:423.945333pt;}
.ydc{bottom:425.856000pt;}
.y12c{bottom:426.390667pt;}
.y9c{bottom:428.513333pt;}
.ye{bottom:430.990669pt;}
.y75{bottom:433.666667pt;}
.y190{bottom:434.580400pt;}
.y150{bottom:435.450667pt;}
.y1b3{bottom:435.662667pt;}
.y173{bottom:436.889333pt;}
.y1cc{bottom:437.134667pt;}
.y44{bottom:440.554667pt;}
.y1ff{bottom:441.160000pt;}
.ydb{bottom:443.869333pt;}
.yd{bottom:446.990669pt;}
.y100{bottom:447.694667pt;}
.y9b{bottom:447.854667pt;}
.y172{bottom:451.500000pt;}
.y74{bottom:451.680000pt;}
.y12b{bottom:452.373333pt;}
.y14f{bottom:453.462667pt;}
.y1b2{bottom:453.676000pt;}
.y18f{bottom:453.779200pt;}
.y1fe{bottom:458.376000pt;}
.y43{bottom:458.566667pt;}
.y1cb{bottom:462.320000pt;}
.yc{bottom:462.990669pt;}
.yff{bottom:465.706667pt;}
.y9a{bottom:467.194667pt;}
.yda{bottom:468.522667pt;}
.y73{bottom:469.692000pt;}
.y14e{bottom:471.474667pt;}
.y1b1{bottom:471.688000pt;}
.y170{bottom:472.832000pt;}
.y18e{bottom:472.976800pt;}
.y1fd{bottom:475.592000pt;}
.y42{bottom:476.580000pt;}
.yb{bottom:478.990666pt;}
.y12a{bottom:483.324000pt;}
.yfe{bottom:483.720000pt;}
.y99{bottom:485.208000pt;}
.yd9{bottom:486.536000pt;}
.y72{bottom:487.704000pt;}
.y14d{bottom:489.488000pt;}
.y1b0{bottom:489.700000pt;}
.y18d{bottom:491.890000pt;}
.y1fc{bottom:492.806667pt;}
.y16c{bottom:493.362667pt;}
.y16f{bottom:494.164000pt;}
.y16e{bottom:494.486667pt;}
.y41{bottom:494.592000pt;}
.ya{bottom:494.990666pt;}
.y1ca{bottom:497.388000pt;}
.yfd{bottom:501.732000pt;}
.y98{bottom:504.548000pt;}
.y18c{bottom:505.040800pt;}
.y71{bottom:505.717333pt;}
.y14c{bottom:507.500000pt;}
.y1af{bottom:507.713333pt;}
.y129{bottom:509.306667pt;}
.y1fb{bottom:510.022667pt;}
.y40{bottom:512.604000pt;}
.y16d{bottom:515.494667pt;}
.y189{bottom:515.564800pt;}
.y1c9{bottom:518.868000pt;}
.yfc{bottom:519.744000pt;}
.y97{bottom:522.561333pt;}
.y70{bottom:523.729333pt;}
.y18b{bottom:523.952800pt;}
.y1fa{bottom:527.237333pt;}
.y3f{bottom:530.617333pt;}
.y1c8{bottom:532.377333pt;}
.y14b{bottom:533.482667pt;}
.y16b{bottom:536.826667pt;}
.y18a{bottom:537.103600pt;}
.yfb{bottom:537.757333pt;}
.yd8{bottom:540.573333pt;}
.y1ae{bottom:540.708000pt;}
.y6f{bottom:541.742667pt;}
.y128{bottom:542.486667pt;}
.y217{bottom:544.270667pt;}
.y1f9{bottom:544.453333pt;}
.yc2{bottom:544.558667pt;}
.y3e{bottom:548.629333pt;}
.y96{bottom:551.200000pt;}
.y1c7{bottom:553.857333pt;}
.yfa{bottom:555.769333pt;}
.y16a{bottom:558.158667pt;}
.yd7{bottom:558.585333pt;}
.y6e{bottom:559.754667pt;}
.y1ad{bottom:560.314667pt;}
.y216{bottom:561.486667pt;}
.y1f8{bottom:561.669333pt;}
.y127{bottom:561.826667pt;}
.yc1{bottom:562.570667pt;}
.y188{bottom:563.708000pt;}
.y14a{bottom:564.433333pt;}
.y1c6{bottom:567.366667pt;}
.y95{bottom:569.213333pt;}
.yf9{bottom:573.782667pt;}
.y9{bottom:573.786667pt;}
.yd6{bottom:576.598667pt;}
.y165{bottom:576.610667pt;}
.y6d{bottom:577.766667pt;}
.y215{bottom:578.701333pt;}
.y1f7{bottom:578.884000pt;}
.y3b{bottom:579.168048pt;}
.y169{bottom:579.489333pt;}
.y126{bottom:579.840000pt;}
.y3a{bottom:579.850667pt;}
.yc0{bottom:580.584000pt;}
.y187{bottom:580.804000pt;}
.y1c5{bottom:580.876000pt;}
.y1ac{bottom:581.329333pt;}
.y149{bottom:582.446667pt;}
.y94{bottom:587.225333pt;}
.y1ab{bottom:588.634667pt;}
.y168{bottom:590.241333pt;}
.yf8{bottom:591.794667pt;}
.y8{bottom:592.685334pt;}
.y1c4{bottom:594.385333pt;}
.yd5{bottom:594.610667pt;}
.y6c{bottom:595.780000pt;}
.y1f6{bottom:596.100000pt;}
.ybf{bottom:598.596000pt;}
.y125{bottom:599.180000pt;}
.y167{bottom:600.504000pt;}
.y214{bottom:604.786667pt;}
.y93{bottom:605.237333pt;}
.y148{bottom:608.429333pt;}
.yf7{bottom:609.806667pt;}
.y1f5{bottom:613.314667pt;}
.y6b{bottom:613.792000pt;}
.yd4{bottom:613.952000pt;}
.y39{bottom:614.521333pt;}
.y166{bottom:615.116000pt;}
.ybe{bottom:616.608000pt;}
.y1aa{bottom:616.954667pt;}
.y124{bottom:617.193333pt;}
.y213{bottom:618.296000pt;}
.y92{bottom:623.250667pt;}
.y1c3{bottom:623.834667pt;}
.yf6{bottom:627.820000pt;}
.y1f4{bottom:630.530667pt;}
.y38{bottom:630.661333pt;}
.y1a9{bottom:631.566667pt;}
.y6a{bottom:631.805333pt;}
.yd3{bottom:631.964000pt;}
.ybd{bottom:634.621333pt;}
.y164{bottom:636.446667pt;}
.y123{bottom:636.533333pt;}
.y147{bottom:639.380000pt;}
.y91{bottom:641.262667pt;}
.y1c2{bottom:641.846667pt;}
.y7{bottom:645.598667pt;}
.yf5{bottom:645.832000pt;}
.y1f3{bottom:647.746667pt;}
.y69{bottom:649.817333pt;}
.yd2{bottom:649.977333pt;}
.y37{bottom:651.140000pt;}
.ybc{bottom:652.633333pt;}
.y1a8{bottom:652.898667pt;}
.y122{bottom:654.546667pt;}
.y146{bottom:657.392000pt;}
.y90{bottom:659.276000pt;}
.y1c1{bottom:659.860000pt;}
.y36{bottom:662.940000pt;}
.yf4{bottom:663.845333pt;}
.y163{bottom:664.553333pt;}
.y1f2{bottom:664.961333pt;}
.y68{bottom:667.829333pt;}
.yd1{bottom:667.989333pt;}
.y3{bottom:668.977329pt;}
.ybb{bottom:670.646667pt;}
.y121{bottom:673.886667pt;}
.y1a6{bottom:673.912000pt;}
.y145{bottom:675.404000pt;}
.y8f{bottom:677.288000pt;}
.y1c0{bottom:677.872000pt;}
.yf3{bottom:681.857333pt;}
.y1f1{bottom:682.177333pt;}
.y35{bottom:683.420000pt;}
.y67{bottom:685.842667pt;}
.yd0{bottom:686.002667pt;}
.y1a5{bottom:688.524000pt;}
.yba{bottom:688.658667pt;}
.y120{bottom:691.900000pt;}
.y144{bottom:693.417333pt;}
.y34{bottom:695.220000pt;}
.y1a7{bottom:695.830667pt;}
.y1bf{bottom:695.885333pt;}
.y1f0{bottom:699.392000pt;}
.yf2{bottom:701.198667pt;}
.y1a4{bottom:703.136000pt;}
.y66{bottom:703.854667pt;}
.ycf{bottom:704.014667pt;}
.y8e{bottom:705.928000pt;}
.yb9{bottom:706.670667pt;}
.y162{bottom:709.729333pt;}
.y11f{bottom:711.241333pt;}
.y143{bottom:711.429333pt;}
.y1be{bottom:713.897333pt;}
.y33{bottom:715.698667pt;}
.y1ef{bottom:716.608000pt;}
.y1a3{bottom:717.748000pt;}
.yf1{bottom:719.210667pt;}
.y65{bottom:721.868000pt;}
.yce{bottom:723.356000pt;}
.y8d{bottom:723.940000pt;}
.yb8{bottom:724.684000pt;}
.y32{bottom:727.498667pt;}
.y11e{bottom:729.253333pt;}
.y142{bottom:729.442667pt;}
.y1bd{bottom:731.909333pt;}
.y1ee{bottom:733.824000pt;}
.yf0{bottom:737.224000pt;}
.y64{bottom:739.880000pt;}
.ycd{bottom:741.368000pt;}
.yb7{bottom:742.696000pt;}
.y8c{bottom:743.281333pt;}
.y1a2{bottom:745.854667pt;}
.y31{bottom:747.977333pt;}
.y11d{bottom:748.594667pt;}
.y1bc{bottom:749.922667pt;}
.y1ed{bottom:751.038667pt;}
.yef{bottom:755.236000pt;}
.y141{bottom:755.424000pt;}
.y63{bottom:757.892000pt;}
.ycc{bottom:759.380000pt;}
.yb6{bottom:760.709333pt;}
.y8b{bottom:761.293333pt;}
.y1a1{bottom:762.950667pt;}
.y30{bottom:764.117333pt;}
.y11c{bottom:767.934667pt;}
.y1ec{bottom:768.254667pt;}
.yee{bottom:774.577333pt;}
.y62{bottom:775.905333pt;}
.y2f{bottom:775.917333pt;}
.yb5{bottom:778.721333pt;}
.y8a{bottom:780.634667pt;}
.y2{bottom:781.661334pt;}
.y1eb{bottom:785.469333pt;}
.y11b{bottom:785.948000pt;}
.y140{bottom:788.604000pt;}
.yed{bottom:792.589333pt;}
.y61{bottom:793.917333pt;}
.y2e{bottom:796.396000pt;}
.ycb{bottom:796.733333pt;}
.y89{bottom:798.646667pt;}
.y1ea{bottom:802.685333pt;}
.y1bb{bottom:803.960000pt;}
.y11a{bottom:805.288000pt;}
.yb4{bottom:807.361333pt;}
.y13f{bottom:807.945333pt;}
.y60{bottom:811.930667pt;}
.yca{bottom:814.746667pt;}
.y2d{bottom:815.210667pt;}
.y88{bottom:817.988000pt;}
.y1e9{bottom:819.901333pt;}
.y1ba{bottom:821.972000pt;}
.y119{bottom:823.301333pt;}
.y13e{bottom:825.957333pt;}
.yb3{bottom:826.701333pt;}
.y5f{bottom:829.942667pt;}
.y2c{bottom:833.222667pt;}
.y1e8{bottom:837.116000pt;}
.y87{bottom:837.328000pt;}
.y1b9{bottom:839.985333pt;}
.y118{bottom:842.641333pt;}
.y13d{bottom:843.970667pt;}
.yb2{bottom:844.714667pt;}
.yc9{bottom:846.042667pt;}
.y5e{bottom:847.954667pt;}
.y1e7{bottom:854.332000pt;}
.y1b8{bottom:857.997333pt;}
.y1{bottom:859.312000pt;}
.y117{bottom:860.654667pt;}
.y13c{bottom:863.310667pt;}
.yb1{bottom:864.054667pt;}
.y5d{bottom:865.968000pt;}
.y2b{bottom:871.160000pt;}
.y1e6{bottom:871.546667pt;}
.y1b7{bottom:876.010667pt;}
.y116{bottom:879.994667pt;}
.y13b{bottom:881.324000pt;}
.yc8{bottom:882.068000pt;}
.yb0{bottom:883.396000pt;}
.y5c{bottom:883.980000pt;}
.y1e5{bottom:888.762667pt;}
.y1b6{bottom:894.022667pt;}
.y2a{bottom:898.178667pt;}
.y115{bottom:899.336000pt;}
.yc7{bottom:901.408000pt;}
.y5b{bottom:901.993333pt;}
.y1e4{bottom:905.978667pt;}
.yaf{bottom:912.034667pt;}
.y114{bottom:917.349333pt;}
.yc6{bottom:919.421333pt;}
.y5a{bottom:920.005333pt;}
.y1e3{bottom:923.193333pt;}
.y29{bottom:925.198667pt;}
.yae{bottom:930.048000pt;}
.y113{bottom:936.689333pt;}
.yc5{bottom:937.433333pt;}
.y59{bottom:938.017333pt;}
.y1e2{bottom:940.409333pt;}
.yad{bottom:948.060000pt;}
.y28{bottom:952.217333pt;}
.y112{bottom:954.702667pt;}
.y58{bottom:956.030667pt;}
.y1e1{bottom:957.624000pt;}
.yac{bottom:966.073333pt;}
.y13a{bottom:972.714667pt;}
.y57{bottom:974.042667pt;}
.y1e0{bottom:974.840000pt;}
.y27{bottom:977.906667pt;}
.y56{bottom:992.056000pt;}
.y24{bottom:1011.514667pt;}
.y55{bottom:1038.548000pt;}
.h24{height:22.332314pt;}
.h11{height:22.673858pt;}
.hb{height:26.836216pt;}
.hf{height:27.076941pt;}
.h7{height:28.560000pt;}
.h13{height:29.433775pt;}
.h12{height:30.399505pt;}
.h27{height:30.945242pt;}
.h1f{height:31.116995pt;}
.h16{height:31.200285pt;}
.h23{height:31.332188pt;}
.h17{height:32.092855pt;}
.ha{height:33.545270pt;}
.h29{height:33.713664pt;}
.h18{height:34.574438pt;}
.h10{height:34.813542pt;}
.h25{height:35.100467pt;}
.h14{height:38.415786pt;}
.h15{height:38.681455pt;}
.hc{height:39.000258pt;}
.h6{height:40.800000pt;}
.h1e{height:41.752209pt;}
.h3{height:42.840000pt;}
.h28{height:43.660390pt;}
.h9{height:45.353733pt;}
.he{height:48.481423pt;}
.h2{height:48.960000pt;}
.h1b{height:52.205542pt;}
.h5{height:57.120000pt;}
.h22{height:57.416195pt;}
.h20{height:57.420995pt;}
.h1c{height:64.034876pt;}
.h1d{height:64.040209pt;}
.h26{height:64.327134pt;}
.hd{height:69.148877pt;}
.h21{height:83.720195pt;}
.h4{height:105.826671pt;}
.h19{height:793.701333pt;}
.h1a{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:207.298721pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:26.021437pt;}
.x6{left:50.623837pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1f{left:100.054667pt;}
.x5{left:102.046667pt;}
.x32{left:102.937333pt;}
.x3a{left:104.265333pt;}
.x9{left:108.542667pt;}
.x7{left:109.606667pt;}
.x52{left:125.459600pt;}
.x40{left:128.640000pt;}
.x8{left:129.929333pt;}
.x33{left:131.270667pt;}
.x35{left:132.797333pt;}
.x44{left:136.608000pt;}
.x53{left:137.655200pt;}
.x5b{left:139.406667pt;}
.x58{left:143.470667pt;}
.x65{left:146.201333pt;}
.x3d{left:148.080000pt;}
.x60{left:156.356000pt;}
.x41{left:157.798667pt;}
.x36{left:159.364000pt;}
.x45{left:160.464000pt;}
.x4b{left:163.445600pt;}
.xf{left:165.906667pt;}
.x5c{left:169.774667pt;}
.x46{left:171.210667pt;}
.x10{left:172.548000pt;}
.xc{left:174.218667pt;}
.x55{left:176.172000pt;}
.x11{left:179.057333pt;}
.x4{left:180.874667pt;}
.x34{left:183.020000pt;}
.x12{left:185.698667pt;}
.x69{left:188.034667pt;}
.x5d{left:189.833333pt;}
.x26{left:193.973333pt;}
.x22{left:195.765333pt;}
.x25{left:199.753333pt;}
.x5e{left:203.116000pt;}
.x70{left:223.704000pt;}
.x72{left:225.868000pt;}
.x5f{left:227.940000pt;}
.x71{left:237.545333pt;}
.x3f{left:245.658667pt;}
.x3e{left:256.617333pt;}
.x42{left:258.024000pt;}
.x4c{left:261.671600pt;}
.xd{left:280.312000pt;}
.xe{left:286.953333pt;}
.x59{left:293.866667pt;}
.x29{left:300.802667pt;}
.x2a{left:314.085333pt;}
.x2b{left:317.360000pt;}
.x4d{left:322.011200pt;}
.x2c{left:330.644000pt;}
.x17{left:334.162667pt;}
.x54{left:341.258000pt;}
.x51{left:344.850800pt;}
.x18{left:347.446667pt;}
.x5a{left:350.660000pt;}
.x19{left:354.161333pt;}
.x1a{left:367.445333pt;}
.x3{left:404.408000pt;}
.x13{left:409.545333pt;}
.x14{left:416.188000pt;}
.x15{left:422.696000pt;}
.x61{left:424.233333pt;}
.x62{left:430.210667pt;}
.x16{left:435.980000pt;}
.x50{left:447.008000pt;}
.x4e{left:450.528800pt;}
.x47{left:487.630667pt;}
.x49{left:491.714667pt;}
.x1b{left:495.237333pt;}
.x30{left:497.764000pt;}
.x4f{left:501.755600pt;}
.x4a{left:504.998667pt;}
.x2d{left:505.913333pt;}
.x1c{left:508.521333pt;}
.x31{left:511.048000pt;}
.x1d{left:515.296000pt;}
.x2e{left:519.197333pt;}
.x56{left:520.177333pt;}
.x27{left:522.949333pt;}
.x1e{left:528.578667pt;}
.x28{left:536.233333pt;}
.x6e{left:542.266667pt;}
.x39{left:544.322667pt;}
.x23{left:558.073333pt;}
.x6f{left:566.176000pt;}
.x24{left:571.357333pt;}
.x57{left:586.497333pt;}
.x48{left:601.002667pt;}
.x37{left:602.121333pt;}
.x2f{left:610.161333pt;}
.x38{left:615.006667pt;}
.x3c{left:615.925333pt;}
.xa{left:623.413317pt;}
.x6c{left:635.421333pt;}
.x3b{left:639.370667pt;}
.x6a{left:647.401333pt;}
.x68{left:648.626667pt;}
.x66{left:654.046667pt;}
.x6d{left:659.332000pt;}
.x63{left:666.189333pt;}
.x6b{left:671.312000pt;}
.x20{left:672.796000pt;}
.x67{left:677.957333pt;}
.x21{left:686.078667pt;}
.x64{left:690.100000pt;}
.x43{left:717.236000pt;}
}




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