
    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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_523cd8b856bacc45432bea4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a4ab79b700eeb81d56cc6ac.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74b535e33a03cf8e3aa93d53.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c6cd0a0e8ede2e64d878c8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7c5bef4fd9f931d44eae0c22.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;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_4eb5a091ead55e7c1ad778f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.514000;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_0d1118100d6079101d577035.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58dabfff62489e71e2443df8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ee21a181fbf5a9f4cfdde453.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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_f8d1de20609dcfa160767937.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ffd88cdbf68d37f1cb3a3b3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7f2dcc5873498c6abea07969.woff2')format("woff");}.fff{font-family:fff;line-height:0.726000;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;}
.m8{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);}
.m17{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);}
.mf{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);}
.mb{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);}
.m5{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);}
.m25{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);}
.m9{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);}
.mc{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);}
.m29{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);}
.m1c{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);}
.me{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);}
.md{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);}
.m27{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m7{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);}
.m16{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);}
.m1a{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);}
.m1b{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);}
.m20{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);}
.m10{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);}
.m18{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);}
.m15{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);}
.m4{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);}
.m2{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);}
.m12{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);}
.m24{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);}
.m14{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);}
.m19{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);}
.m1f{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);}
.m28{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);}
.m23{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);}
.m3{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);}
.m13{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);}
.ma{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);}
.m1e{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);}
.m1d{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);}
.m26{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);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.878000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.880000px;}
.ls3a{letter-spacing:-2.068128px;}
.ls3b{letter-spacing:-0.318636px;}
.ls45{letter-spacing:-0.288576px;}
.ls3d{letter-spacing:-0.102204px;}
.ls44{letter-spacing:-0.078156px;}
.ls43{letter-spacing:-0.072144px;}
.ls40{letter-spacing:-0.066132px;}
.ls3c{letter-spacing:-0.042084px;}
.ls41{letter-spacing:-0.036072px;}
.ls42{letter-spacing:-0.024048px;}
.ls3e{letter-spacing:-0.018036px;}
.ls38{letter-spacing:-0.012024px;}
.ls3f{letter-spacing:-0.006012px;}
.ls8{letter-spacing:0.000000px;}
.ls5b{letter-spacing:0.000002px;}
.ls77{letter-spacing:0.000190px;}
.ls6f{letter-spacing:0.000253px;}
.ls11{letter-spacing:0.000435px;}
.ls26{letter-spacing:0.000466px;}
.ls59{letter-spacing:0.000489px;}
.ls4d{letter-spacing:0.000566px;}
.ls20{letter-spacing:0.000583px;}
.ls1c{letter-spacing:0.000706px;}
.ls1b{letter-spacing:0.000741px;}
.ls66{letter-spacing:0.000800px;}
.ls1e{letter-spacing:0.000845px;}
.ls6c{letter-spacing:0.000973px;}
.ls67{letter-spacing:0.001036px;}
.ls4c{letter-spacing:0.001123px;}
.ls6e{letter-spacing:0.001195px;}
.ls69{letter-spacing:0.001484px;}
.ls1f{letter-spacing:0.001574px;}
.ls62{letter-spacing:0.001584px;}
.ls27{letter-spacing:0.001673px;}
.ls78{letter-spacing:0.001704px;}
.ls6d{letter-spacing:0.001746px;}
.ls15{letter-spacing:0.001996px;}
.lsf{letter-spacing:0.002108px;}
.ls5c{letter-spacing:0.002401px;}
.ls47{letter-spacing:0.002422px;}
.ls60{letter-spacing:0.002544px;}
.ls65{letter-spacing:0.002683px;}
.ls64{letter-spacing:0.002872px;}
.ls6b{letter-spacing:0.003284px;}
.ls63{letter-spacing:0.003306px;}
.ls4e{letter-spacing:0.003334px;}
.ls79{letter-spacing:0.003668px;}
.ls71{letter-spacing:0.003830px;}
.ls24{letter-spacing:0.003859px;}
.ls1{letter-spacing:0.004200px;}
.ls6a{letter-spacing:0.004754px;}
.ls76{letter-spacing:0.004800px;}
.ls75{letter-spacing:0.005077px;}
.ls74{letter-spacing:0.005384px;}
.ls33{letter-spacing:0.012024px;}
.ls2c{letter-spacing:0.016200px;}
.ls30{letter-spacing:0.018036px;}
.ls34{letter-spacing:0.024048px;}
.ls2f{letter-spacing:0.030060px;}
.ls32{letter-spacing:0.036072px;}
.ls35{letter-spacing:0.042084px;}
.ls2a{letter-spacing:0.043092px;}
.ls28{letter-spacing:0.047880px;}
.ls36{letter-spacing:0.048096px;}
.ls2d{letter-spacing:0.054108px;}
.ls31{letter-spacing:0.090180px;}
.ls2b{letter-spacing:0.172368px;}
.ls39{letter-spacing:0.180360px;}
.ls29{letter-spacing:0.181944px;}
.ls37{letter-spacing:1.195512px;}
.ls7{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls6{letter-spacing:11.954850px;}
.ls5f{letter-spacing:12.889176px;}
.ls51{letter-spacing:13.233516px;}
.ls52{letter-spacing:13.236493px;}
.lsb{letter-spacing:13.270183px;}
.ls9{letter-spacing:13.275465px;}
.lsa{letter-spacing:13.275986px;}
.ls49{letter-spacing:13.412927px;}
.ls48{letter-spacing:13.415457px;}
.ls23{letter-spacing:13.444800px;}
.ls1a{letter-spacing:13.448170px;}
.ls61{letter-spacing:13.448400px;}
.ls54{letter-spacing:13.449600px;}
.ls19{letter-spacing:13.450800px;}
.ls72{letter-spacing:13.454400px;}
.ls70{letter-spacing:13.532218px;}
.ls4a{letter-spacing:13.572645px;}
.ls4b{letter-spacing:13.581123px;}
.ls73{letter-spacing:13.697459px;}
.ls50{letter-spacing:14.083153px;}
.ls4f{letter-spacing:14.083508px;}
.ls21{letter-spacing:14.645022px;}
.ls58{letter-spacing:14.764573px;}
.ls16{letter-spacing:14.916282px;}
.ls18{letter-spacing:14.921114px;}
.ls17{letter-spacing:14.922925px;}
.ls53{letter-spacing:14.943900px;}
.ls57{letter-spacing:14.943986px;}
.ls56{letter-spacing:14.944200px;}
.ls5d{letter-spacing:15.063451px;}
.ls12{letter-spacing:15.165141px;}
.ls14{letter-spacing:15.183002px;}
.ls10{letter-spacing:15.249815px;}
.ls68{letter-spacing:15.297459px;}
.ls13{letter-spacing:15.420806px;}
.ls46{letter-spacing:16.199188px;}
.lsd{letter-spacing:16.940692px;}
.lsc{letter-spacing:16.941612px;}
.lse{letter-spacing:17.509041px;}
.ls3{letter-spacing:17.929200px;}
.ls5e{letter-spacing:19.307519px;}
.ls22{letter-spacing:21.937645px;}
.ls5a{letter-spacing:27.785512px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls1d{letter-spacing:94.286700px;}
.ls2e{letter-spacing:118.286100px;}
.ls55{letter-spacing:422.168074px;}
.ls25{letter-spacing:458.642074px;}
.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;}
}
.wsd7{word-spacing:-34.251419px;}
.ws4b{word-spacing:-30.126902px;}
.wsd6{word-spacing:-30.007351px;}
.wscb{word-spacing:-29.887800px;}
.wscc{word-spacing:-29.708473px;}
.ws40{word-spacing:-28.214083px;}
.wsc3{word-spacing:-26.899200px;}
.ws9b{word-spacing:-15.210360px;}
.ws10{word-spacing:-14.943900px;}
.ws91{word-spacing:-13.449600px;}
.ws99{word-spacing:-12.151944px;}
.ws9a{word-spacing:-11.970000px;}
.ws31{word-spacing:-11.955150px;}
.ws12{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws7e{word-spacing:-3.526760px;}
.wsce{word-spacing:-3.174106px;}
.wsde{word-spacing:-2.869229px;}
.ws79{word-spacing:-2.570351px;}
.wsbd{word-spacing:-2.458908px;}
.ws60{word-spacing:-2.331248px;}
.ws61{word-spacing:-2.271473px;}
.wsa3{word-spacing:-2.098188px;}
.wsaa{word-spacing:-2.092176px;}
.wse5{word-spacing:-1.990541px;}
.ws1{word-spacing:-1.908367px;}
.ws86{word-spacing:-1.853044px;}
.wsc9{word-spacing:-1.793268px;}
.wse6{word-spacing:-1.775347px;}
.ws3f{word-spacing:-1.673717px;}
.wse7{word-spacing:-1.667750px;}
.wse8{word-spacing:-1.452557px;}
.ws75{word-spacing:-1.434614px;}
.wsbc{word-spacing:-1.376748px;}
.ws0{word-spacing:-1.322630px;}
.wsc0{word-spacing:-1.291162px;}
.wsd2{word-spacing:-1.255288px;}
.ws34{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.171598px;}
.ws5c{word-spacing:-1.135736px;}
.ws8{word-spacing:-1.046070px;}
.wsc1{word-spacing:-1.022170px;}
.ws27{word-spacing:-1.016185px;}
.wsd4{word-spacing:-0.956410px;}
.ws5b{word-spacing:-0.896634px;}
.wse2{word-spacing:-0.860774px;}
.wse9{word-spacing:-0.753178px;}
.ws7f{word-spacing:-0.717307px;}
.wse1{word-spacing:-0.699379px;}
.wsa2{word-spacing:-0.685368px;}
.ws73{word-spacing:-0.597756px;}
.wseb{word-spacing:-0.537984px;}
.ws98{word-spacing:-0.537980px;}
.ws1d{word-spacing:-0.430387px;}
.ws82{word-spacing:-0.418429px;}
.ws52{word-spacing:-0.358654px;}
.ws108{word-spacing:-0.322790px;}
.wsbb{word-spacing:-0.312624px;}
.wsa6{word-spacing:-0.306612px;}
.wsb9{word-spacing:-0.300600px;}
.ws37{word-spacing:-0.298878px;}
.ws9d{word-spacing:-0.272916px;}
.wsfc{word-spacing:-0.268992px;}
.wsaf{word-spacing:-0.258516px;}
.wsac{word-spacing:-0.252504px;}
.wsfd{word-spacing:-0.241163px;}
.ws33{word-spacing:-0.239102px;}
.wsb0{word-spacing:-0.234468px;}
.ws1c{word-spacing:-0.215194px;}
.wsae{word-spacing:-0.204408px;}
.ws32{word-spacing:-0.179327px;}
.ws17{word-spacing:-0.161395px;}
.wsf5{word-spacing:-0.136134px;}
.ws9e{word-spacing:-0.134064px;}
.ws109{word-spacing:-0.129280px;}
.ws21{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws11{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws10a{word-spacing:-0.028253px;}
.ws66{word-spacing:-0.026913px;}
.wsef{word-spacing:-0.026602px;}
.ws68{word-spacing:-0.025623px;}
.ws105{word-spacing:-0.010733px;}
.ws107{word-spacing:-0.007325px;}
.wsee{word-spacing:-0.004090px;}
.wsed{word-spacing:-0.004022px;}
.ws67{word-spacing:-0.002947px;}
.ws10d{word-spacing:-0.002861px;}
.ws4{word-spacing:-0.001129px;}
.ws3{word-spacing:0.000000px;}
.ws30{word-spacing:0.000727px;}
.wsfe{word-spacing:0.001978px;}
.wsa9{word-spacing:0.036072px;}
.wsbe{word-spacing:0.042084px;}
.wsa5{word-spacing:0.048096px;}
.ws1a{word-spacing:0.053798px;}
.wsb2{word-spacing:0.054108px;}
.ws26{word-spacing:0.059776px;}
.wsa8{word-spacing:0.078156px;}
.wsad{word-spacing:0.096192px;}
.wsba{word-spacing:0.102204px;}
.ws1b{word-spacing:0.107597px;}
.wsb1{word-spacing:0.108216px;}
.wsb3{word-spacing:0.114228px;}
.ws20{word-spacing:0.119551px;}
.wsa7{word-spacing:0.132264px;}
.wscd{word-spacing:0.161395px;}
.wsa1{word-spacing:0.162000px;}
.wsb4{word-spacing:0.162324px;}
.wsb5{word-spacing:0.168336px;}
.wsa0{word-spacing:0.178200px;}
.ws29{word-spacing:0.179327px;}
.ws44{word-spacing:0.196578px;}
.ws4a{word-spacing:0.197186px;}
.ws48{word-spacing:0.202460px;}
.ws46{word-spacing:0.202633px;}
.ws45{word-spacing:0.203068px;}
.ws6c{word-spacing:0.215194px;}
.ws49{word-spacing:0.220757px;}
.ws4c{word-spacing:0.235646px;}
.ws22{word-spacing:0.239102px;}
.ws19{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.ws104{word-spacing:0.322790px;}
.ws2f{word-spacing:0.358654px;}
.wsb6{word-spacing:0.378756px;}
.ws8c{word-spacing:0.418429px;}
.ws47{word-spacing:0.477341px;}
.ws6e{word-spacing:0.478205px;}
.wsec{word-spacing:0.484186px;}
.ws83{word-spacing:0.537980px;}
.ws24{word-spacing:0.597756px;}
.wsc2{word-spacing:0.645581px;}
.wsdd{word-spacing:0.657532px;}
.ws3a{word-spacing:0.717307px;}
.wse0{word-spacing:0.753178px;}
.ws36{word-spacing:0.777083px;}
.ws57{word-spacing:0.836858px;}
.ws77{word-spacing:0.896634px;}
.ws71{word-spacing:0.956410px;}
.wsf4{word-spacing:0.968371px;}
.ws7{word-spacing:1.004227px;}
.ws3c{word-spacing:1.016185px;}
.ws43{word-spacing:1.075961px;}
.ws42{word-spacing:1.135736px;}
.ws7a{word-spacing:1.195512px;}
.ws3e{word-spacing:1.255288px;}
.ws2d{word-spacing:1.315063px;}
.ws53{word-spacing:1.374839px;}
.wsf0{word-spacing:1.452557px;}
.ws35{word-spacing:1.494390px;}
.wsbf{word-spacing:1.554166px;}
.ws23{word-spacing:1.673717px;}
.ws56{word-spacing:1.733492px;}
.ws14{word-spacing:1.775347px;}
.ws84{word-spacing:1.793268px;}
.wsf1{word-spacing:1.829146px;}
.ws2e{word-spacing:1.853044px;}
.ws4e{word-spacing:1.912819px;}
.ws41{word-spacing:1.972595px;}
.wsf9{word-spacing:1.990541px;}
.wsd3{word-spacing:2.032370px;}
.wsf8{word-spacing:2.044339px;}
.wsda{word-spacing:2.092146px;}
.ws6b{word-spacing:2.151922px;}
.ws6a{word-spacing:2.211697px;}
.ws85{word-spacing:2.271473px;}
.wsdb{word-spacing:2.331248px;}
.wse3{word-spacing:2.474726px;}
.ws64{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws63{word-spacing:2.570351px;}
.ws55{word-spacing:2.689902px;}
.wsd0{word-spacing:2.749678px;}
.ws13{word-spacing:2.869236px;}
.ws6d{word-spacing:2.905114px;}
.wscf{word-spacing:2.929004px;}
.wsd1{word-spacing:2.988780px;}
.ws5a{word-spacing:3.108331px;}
.ws54{word-spacing:3.168107px;}
.ws103{word-spacing:3.217853px;}
.ws100{word-spacing:3.219494px;}
.ws1e{word-spacing:3.219667px;}
.wsf3{word-spacing:3.223037px;}
.wsf2{word-spacing:3.223498px;}
.ws106{word-spacing:3.223862px;}
.ws101{word-spacing:3.225984px;}
.wsea{word-spacing:3.227904px;}
.ws3b{word-spacing:3.287658px;}
.ws72{word-spacing:3.347434px;}
.ws81{word-spacing:3.466985px;}
.wsd9{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws65{word-spacing:3.646312px;}
.wsd8{word-spacing:3.885414px;}
.ws5e{word-spacing:3.945190px;}
.ws51{word-spacing:4.004965px;}
.ws6f{word-spacing:4.064741px;}
.ws39{word-spacing:4.124516px;}
.ws102{word-spacing:4.142477px;}
.ws62{word-spacing:4.184292px;}
.ws9c{word-spacing:4.303843px;}
.ws3d{word-spacing:4.363619px;}
.ws4d{word-spacing:4.423394px;}
.ws59{word-spacing:4.483170px;}
.ws7c{word-spacing:4.602721px;}
.ws50{word-spacing:4.662497px;}
.wsf6{word-spacing:4.734259px;}
.wse{word-spacing:4.770079px;}
.ws93{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws2a{word-spacing:4.961375px;}
.wsf7{word-spacing:5.003251px;}
.ws2b{word-spacing:5.200477px;}
.ws58{word-spacing:5.260253px;}
.ws38{word-spacing:5.320028px;}
.wsd5{word-spacing:5.379804px;}
.wsca{word-spacing:5.439580px;}
.wsfb{word-spacing:5.487437px;}
.ws7b{word-spacing:5.499355px;}
.wsff{word-spacing:5.541235px;}
.ws74{word-spacing:5.559131px;}
.ws15{word-spacing:5.702630px;}
.wsdc{word-spacing:5.738458px;}
.ws25{word-spacing:5.917784px;}
.ws70{word-spacing:6.097111px;}
.ws4f{word-spacing:6.156887px;}
.wsab{word-spacing:6.210396px;}
.ws7d{word-spacing:6.395989px;}
.wsb7{word-spacing:6.517008px;}
.wsb8{word-spacing:6.577128px;}
.ws97{word-spacing:6.694867px;}
.wse4{word-spacing:6.724800px;}
.ws96{word-spacing:6.725883px;}
.ws8d{word-spacing:6.754643px;}
.ws95{word-spacing:6.874194px;}
.wsfa{word-spacing:6.939994px;}
.ws8e{word-spacing:6.993745px;}
.ws8a{word-spacing:7.113296px;}
.ws2c{word-spacing:7.173072px;}
.ws76{word-spacing:7.471950px;}
.ws10c{word-spacing:7.492177px;}
.ws10b{word-spacing:7.531776px;}
.wsdf{word-spacing:7.591501px;}
.ws5f{word-spacing:7.651277px;}
.ws5d{word-spacing:7.711052px;}
.wsc{word-spacing:7.782761px;}
.ws8b{word-spacing:8.009930px;}
.ws94{word-spacing:8.189257px;}
.ws80{word-spacing:8.249033px;}
.ws78{word-spacing:8.607686px;}
.wsa4{word-spacing:9.432828px;}
.ws87{word-spacing:10.400954px;}
.ws9f{word-spacing:11.615688px;}
.wsa{word-spacing:12.176255px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
.ws89{word-spacing:78.596400px;}
.ws88{word-spacing:78.604914px;}
.wsc5{word-spacing:349.259213px;}
.wsc4{word-spacing:403.773053px;}
.wsc8{word-spacing:410.255539px;}
.wsc7{word-spacing:418.942195px;}
.wsc6{word-spacing:423.623117px;}
.ws8f{word-spacing:440.247053px;}
.ws92{word-spacing:455.416195px;}
.ws90{word-spacing:460.097117px;}
.ws69{word-spacing:960.516634px;}
._32{margin-left:-19.260786px;}
._19{margin-left:-15.183002px;}
._18{margin-left:-13.249659px;}
._8{margin-left:-11.943245px;}
._9{margin-left:-6.634475px;}
._e{margin-left:-5.504708px;}
._2{margin-left:-3.849538px;}
._1c{margin-left:-2.666438px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._5{width:2.301354px;}
._a{width:3.677921px;}
._23{width:9.861904px;}
._6{width:11.398711px;}
._3{width:12.969416px;}
._12{width:14.293936px;}
._c{width:16.425784px;}
._15{width:17.640752px;}
._f{width:18.769538px;}
._1b{width:19.972618px;}
._16{width:21.041011px;}
._d{width:22.218739px;}
._10{width:23.970016px;}
._4{width:25.943736px;}
._31{width:27.046626px;}
._17{width:28.991166px;}
._7{width:30.587087px;}
._1a{width:32.465718px;}
._2e{width:33.541679px;}
._2f{width:35.088277px;}
._33{width:36.164238px;}
._11{width:40.587632px;}
._24{width:43.516637px;}
._27{width:49.682089px;}
._b{width:54.423634px;}
._35{width:61.868160px;}
._34{width:88.767360px;}
._25{width:93.548814px;}
._26{width:96.537594px;}
._2b{width:241.178227px;}
._2a{width:307.726848px;}
._29{width:383.152205px;}
._2d{width:455.834314px;}
._2c{width:485.623814px;}
._13{width:769.579540px;}
._20{width:851.557602px;}
._1e{width:907.752632px;}
._22{width:945.818418px;}
._21{width:1048.829309px;}
._1d{width:1057.581176px;}
._1f{width:1156.139845px;}
._30{width:2020.377996px;}
._28{width:2478.183300px;}
._14{width:2502.093300px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(50,38,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:113.389200px;}
.y195{bottom:-844.966050px;}
.y1b5{bottom:-768.910641px;}
.y1b4{bottom:-744.519957px;}
.y1b3{bottom:-720.040596px;}
.y1b2{bottom:-695.561235px;}
.y1b1{bottom:-671.170551px;}
.y1b0{bottom:-646.691190px;}
.y1af{bottom:-622.211829px;}
.y1ae{bottom:-597.821145px;}
.y1ad{bottom:-573.341784px;}
.y1ac{bottom:-548.862423px;}
.y1ab{bottom:-524.471739px;}
.y1aa{bottom:-499.992378px;}
.y1a9{bottom:-475.513017px;}
.y1a8{bottom:-451.122333px;}
.y1a7{bottom:-426.642972px;}
.y1a6{bottom:-402.163611px;}
.y1a5{bottom:-377.772927px;}
.y1a4{bottom:-353.293566px;}
.y1a3{bottom:-328.814205px;}
.y1a2{bottom:-304.423521px;}
.y1a1{bottom:-279.944160px;}
.y1a0{bottom:-255.464799px;}
.y19f{bottom:-231.075618px;}
.y19e{bottom:-206.596257px;}
.y19d{bottom:-182.116896px;}
.y19c{bottom:-157.726212px;}
.y19b{bottom:-133.246851px;}
.y19a{bottom:-108.767490px;}
.y199{bottom:-82.126815px;}
.y198{bottom:-62.956050px;}
.y197{bottom:-26.146050px;}
.y196{bottom:-3.645267px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1d{bottom:18.595167px;}
.y4b{bottom:31.890000px;}
.yb4{bottom:91.665000px;}
.y128{bottom:92.974500px;}
.yf1{bottom:97.144500px;}
.y223{bottom:103.489500px;}
.y4a{bottom:103.621500px;}
.y1b{bottom:104.646000px;}
.y13d{bottom:104.761500px;}
.y81{bottom:107.193000px;}
.y1e0{bottom:109.312500px;}
.yb3{bottom:110.494500px;}
.y127{bottom:111.804000px;}
.y191{bottom:112.639500px;}
.yf0{bottom:115.974000px;}
.y242{bottom:116.877000px;}
.y222{bottom:122.319000px;}
.y49{bottom:122.449500px;}
.y1a{bottom:122.535000px;}
.yd7{bottom:123.130500px;}
.y279{bottom:123.288000px;}
.y13c{bottom:125.734500px;}
.y80{bottom:126.022500px;}
.y1df{bottom:128.142000px;}
.yb2{bottom:129.324000px;}
.y1cf{bottom:132.615000px;}
.y190{bottom:133.614000px;}
.y241{bottom:134.451000px;}
.yef{bottom:134.803500px;}
.y126{bottom:135.117000px;}
.y19{bottom:140.422500px;}
.y278{bottom:140.548500px;}
.y221{bottom:141.148500px;}
.y48{bottom:141.279000px;}
.yd6{bottom:141.960000px;}
.y13b{bottom:144.564000px;}
.y7f{bottom:144.852000px;}
.y1de{bottom:146.971500px;}
.yb1{bottom:148.153500px;}
.y15f{bottom:148.524000px;}
.y1ce{bottom:151.444500px;}
.y240{bottom:152.025000px;}
.y18f{bottom:152.443500px;}
.yee{bottom:153.633000px;}
.y277{bottom:157.809000px;}
.y18{bottom:158.310000px;}
.y220{bottom:159.978000px;}
.y47{bottom:160.108500px;}
.yd5{bottom:160.789500px;}
.y13a{bottom:163.393500px;}
.y7e{bottom:163.681500px;}
.y1dd{bottom:165.801000px;}
.yb0{bottom:166.983000px;}
.y15e{bottom:167.353500px;}
.y125{bottom:168.741000px;}
.y23f{bottom:169.599000px;}
.y1cd{bottom:170.272500px;}
.y18e{bottom:171.273000px;}
.yed{bottom:172.462500px;}
.y276{bottom:175.068000px;}
.y17{bottom:176.199000px;}
.y109{bottom:178.230000px;}
.y21f{bottom:178.807500px;}
.y46{bottom:178.938000px;}
.yd4{bottom:179.619000px;}
.y139{bottom:182.223000px;}
.y7d{bottom:182.511000px;}
.yaf{bottom:185.812500px;}
.y15d{bottom:186.183000px;}
.y23e{bottom:187.173000px;}
.y124{bottom:187.570500px;}
.y1cc{bottom:189.102000px;}
.y18d{bottom:190.101000px;}
.yec{bottom:191.292000px;}
.y275{bottom:192.328500px;}
.y16{bottom:194.086500px;}
.y108{bottom:197.059500px;}
.y21e{bottom:197.637000px;}
.y45{bottom:197.767500px;}
.yd3{bottom:198.448500px;}
.y1dc{bottom:199.366500px;}
.y138{bottom:201.052500px;}
.y7c{bottom:201.340500px;}
.yae{bottom:204.642000px;}
.y23d{bottom:204.747000px;}
.y123{bottom:206.400000px;}
.y1cb{bottom:207.931500px;}
.y18c{bottom:208.930500px;}
.y274{bottom:209.589000px;}
.yeb{bottom:210.121500px;}
.y15{bottom:211.974000px;}
.y107{bottom:215.889000px;}
.y21d{bottom:216.466500px;}
.y44{bottom:216.597000px;}
.yd2{bottom:217.278000px;}
.y1db{bottom:218.599500px;}
.y15c{bottom:219.748500px;}
.y137{bottom:219.882000px;}
.y7b{bottom:220.170000px;}
.y23c{bottom:222.321000px;}
.yad{bottom:223.471500px;}
.y122{bottom:225.229500px;}
.y1ca{bottom:226.761000px;}
.y273{bottom:226.849500px;}
.y18b{bottom:227.760000px;}
.yea{bottom:228.951000px;}
.y14{bottom:229.863000px;}
.y106{bottom:234.718500px;}
.y21c{bottom:235.296000px;}
.y43{bottom:235.426500px;}
.yd1{bottom:236.107500px;}
.y1da{bottom:237.832500px;}
.y136{bottom:238.711500px;}
.y7a{bottom:238.999500px;}
.yac{bottom:242.301000px;}
.y121{bottom:244.059000px;}
.y272{bottom:244.110000px;}
.y1c9{bottom:245.590500px;}
.y18a{bottom:246.589500px;}
.ye9{bottom:247.780500px;}
.y105{bottom:253.548000px;}
.y21b{bottom:254.125500px;}
.y42{bottom:254.256000px;}
.yd0{bottom:254.937000px;}
.y1d9{bottom:257.065500px;}
.y135{bottom:257.541000px;}
.y79{bottom:257.829000px;}
.yab{bottom:261.130500px;}
.y271{bottom:261.370500px;}
.y1c8{bottom:264.420000px;}
.y189{bottom:265.419000px;}
.ye8{bottom:266.608500px;}
.y120{bottom:267.372000px;}
.y1f9{bottom:269.697000px;}
.y104{bottom:272.377500px;}
.y21a{bottom:272.953500px;}
.y41{bottom:273.085500px;}
.ycf{bottom:273.766500px;}
.y134{bottom:276.370500px;}
.y78{bottom:276.658500px;}
.y270{bottom:278.631000px;}
.yaa{bottom:279.960000px;}
.y1c7{bottom:283.249500px;}
.y188{bottom:284.248500px;}
.ye7{bottom:285.438000px;}
.y1f8{bottom:288.526500px;}
.y194{bottom:289.124085px;}
.y103{bottom:291.207000px;}
.y219{bottom:291.783000px;}
.y40{bottom:291.915000px;}
.yce{bottom:292.596000px;}
.y77{bottom:295.488000px;}
.y26f{bottom:295.891500px;}
.y193{bottom:298.753950px;}
.ya9{bottom:298.789500px;}
.y23b{bottom:299.970000px;}
.y13{bottom:300.154500px;}
.y11f{bottom:300.996000px;}
.y1c6{bottom:302.079000px;}
.y133{bottom:302.671500px;}
.y187{bottom:303.078000px;}
.ye6{bottom:304.267500px;}
.y1f7{bottom:307.356000px;}
.y102{bottom:310.036500px;}
.y218{bottom:310.612500px;}
.y3f{bottom:310.744500px;}
.ycd{bottom:311.424000px;}
.y26e{bottom:313.152000px;}
.y76{bottom:314.317500px;}
.ya8{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y11e{bottom:319.825500px;}
.y132{bottom:321.501000px;}
.y186{bottom:321.907500px;}
.y1c5{bottom:323.053500px;}
.ye5{bottom:323.097000px;}
.y1f6{bottom:326.185500px;}
.y101{bottom:328.866000px;}
.y217{bottom:329.442000px;}
.y3e{bottom:329.574000px;}
.ycc{bottom:330.253500px;}
.y26d{bottom:330.411000px;}
.y75{bottom:333.145500px;}
.y23a{bottom:333.594000px;}
.y11{bottom:335.931000px;}
.ya7{bottom:336.448500px;}
.y11d{bottom:338.653500px;}
.y131{bottom:340.330500px;}
.y185{bottom:340.737000px;}
.y1c4{bottom:341.883000px;}
.ye4{bottom:341.926500px;}
.y1f5{bottom:345.015000px;}
.y26c{bottom:347.671500px;}
.y100{bottom:347.695500px;}
.y216{bottom:348.271500px;}
.y3d{bottom:348.403500px;}
.y74{bottom:351.975000px;}
.y239{bottom:352.423500px;}
.ycb{bottom:353.566500px;}
.y10{bottom:353.818500px;}
.ya6{bottom:355.278000px;}
.y11c{bottom:357.483000px;}
.y184{bottom:359.566500px;}
.ye3{bottom:360.756000px;}
.y1c3{bottom:362.856000px;}
.y130{bottom:363.643500px;}
.y1f4{bottom:363.844500px;}
.y26b{bottom:364.932000px;}
.yff{bottom:366.525000px;}
.y215{bottom:367.101000px;}
.y3c{bottom:367.233000px;}
.y73{bottom:370.804500px;}
.y238{bottom:371.253000px;}
.y11b{bottom:376.312500px;}
.ye2{bottom:379.585500px;}
.y183{bottom:380.541000px;}
.yf{bottom:380.673000px;}
.y1c2{bottom:381.685500px;}
.y26a{bottom:382.192500px;}
.y1f3{bottom:382.674000px;}
.yfe{bottom:385.354500px;}
.y214{bottom:385.930500px;}
.y3b{bottom:386.062500px;}
.yca{bottom:387.190500px;}
.y72{bottom:389.634000px;}
.y237{bottom:390.082500px;}
.y12f{bottom:397.267500px;}
.ye1{bottom:398.415000px;}
.ye{bottom:398.562000px;}
.y182{bottom:399.370500px;}
.ya5{bottom:399.426000px;}
.y269{bottom:399.453000px;}
.y1c1{bottom:400.515000px;}
.y1f2{bottom:401.503500px;}
.y11a{bottom:402.615000px;}
.yfd{bottom:404.184000px;}
.y213{bottom:404.760000px;}
.y3a{bottom:404.892000px;}
.yc9{bottom:406.020000px;}
.y71{bottom:408.463500px;}
.y236{bottom:408.912000px;}
.ya4{bottom:415.864500px;}
.y12e{bottom:416.097000px;}
.yd{bottom:416.449500px;}
.y268{bottom:416.713500px;}
.ye0{bottom:417.244500px;}
.y1c0{bottom:419.344500px;}
.y1f1{bottom:420.333000px;}
.y181{bottom:420.343500px;}
.y119{bottom:421.444500px;}
.yfc{bottom:423.013500px;}
.y212{bottom:423.589500px;}
.y39{bottom:423.721500px;}
.yc8{bottom:424.849500px;}
.y70{bottom:427.293000px;}
.y235{bottom:427.741500px;}
.ya3{bottom:432.303000px;}
.y267{bottom:433.974000px;}
.y12d{bottom:434.926500px;}
.ydf{bottom:436.074000px;}
.y1bf{bottom:438.174000px;}
.y180{bottom:439.173000px;}
.y118{bottom:440.274000px;}
.yfb{bottom:441.843000px;}
.y211{bottom:442.419000px;}
.y38{bottom:442.551000px;}
.yc7{bottom:443.679000px;}
.yc{bottom:444.798000px;}
.y6f{bottom:446.122500px;}
.y234{bottom:446.571000px;}
.ya2{bottom:448.741500px;}
.y266{bottom:451.234500px;}
.y12c{bottom:453.756000px;}
.y1f0{bottom:453.898500px;}
.yde{bottom:454.903500px;}
.y1be{bottom:457.003500px;}
.y17f{bottom:458.002500px;}
.y117{bottom:459.103500px;}
.yfa{bottom:460.672500px;}
.y210{bottom:461.248500px;}
.y37{bottom:461.380500px;}
.yc6{bottom:462.508500px;}
.yb{bottom:462.685500px;}
.y6e{bottom:464.952000px;}
.ya1{bottom:465.180000px;}
.y233{bottom:465.400500px;}
.y265{bottom:468.493500px;}
.y15b{bottom:469.285500px;}
.ydd{bottom:473.733000px;}
.y1bd{bottom:475.833000px;}
.y17e{bottom:476.832000px;}
.yf9{bottom:479.502000px;}
.y20f{bottom:480.078000px;}
.y36{bottom:480.210000px;}
.yc5{bottom:481.338000px;}
.ya0{bottom:481.618500px;}
.y116{bottom:482.415000px;}
.y6d{bottom:483.781500px;}
.y232{bottom:484.230000px;}
.y264{bottom:485.754000px;}
.y12b{bottom:487.321500px;}
.y15a{bottom:488.115000px;}
.ya{bottom:489.540000px;}
.y1bc{bottom:494.662500px;}
.y17d{bottom:495.661500px;}
.yf8{bottom:498.331500px;}
.y35{bottom:499.039500px;}
.yc4{bottom:500.167500px;}
.y6c{bottom:502.611000px;}
.y263{bottom:503.014500px;}
.y231{bottom:503.059500px;}
.y20e{bottom:503.391000px;}
.y9f{bottom:505.258500px;}
.y159{bottom:506.944500px;}
.ydc{bottom:507.298500px;}
.y9{bottom:507.429000px;}
.y115{bottom:508.717500px;}
.y1bb{bottom:513.492000px;}
.y17c{bottom:514.491000px;}
.yf7{bottom:517.161000px;}
.yc3{bottom:518.997000px;}
.y262{bottom:520.275000px;}
.y6b{bottom:521.440500px;}
.y230{bottom:521.889000px;}
.y34{bottom:522.351000px;}
.y8{bottom:525.316500px;}
.y158{bottom:525.774000px;}
.y114{bottom:527.547000px;}
.y9e{bottom:528.900000px;}
.y1ba{bottom:532.321500px;}
.y17b{bottom:533.320500px;}
.yf6{bottom:535.990500px;}
.y20d{bottom:537.015000px;}
.y261{bottom:537.535500px;}
.yc2{bottom:537.826500px;}
.y6a{bottom:540.270000px;}
.y22f{bottom:540.718500px;}
.y1d8{bottom:541.750500px;}
.y7{bottom:543.204000px;}
.y157{bottom:544.603500px;}
.y113{bottom:550.858500px;}
.y1b9{bottom:551.151000px;}
.y17a{bottom:552.150000px;}
.y260{bottom:554.796000px;}
.yf5{bottom:554.820000px;}
.y20c{bottom:555.844500px;}
.yc1{bottom:556.656000px;}
.y69{bottom:559.099500px;}
.y22e{bottom:559.548000px;}
.y9d{bottom:560.520000px;}
.y1d7{bottom:560.983500px;}
.y6{bottom:561.093000px;}
.y156{bottom:563.433000px;}
.y112{bottom:569.688000px;}
.y179{bottom:570.979500px;}
.y25f{bottom:572.056500px;}
.yf4{bottom:573.649500px;}
.y1b8{bottom:574.464000px;}
.yc0{bottom:575.485500px;}
.y68{bottom:577.929000px;}
.y22d{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y20b{bottom:579.157500px;}
.y1d6{bottom:580.216500px;}
.y155{bottom:582.262500px;}
.y295{bottom:587.791500px;}
.y111{bottom:588.517500px;}
.y25e{bottom:589.317000px;}
.y178{bottom:589.809000px;}
.y1b7{bottom:593.293500px;}
.ybf{bottom:594.315000px;}
.y9c{bottom:596.310000px;}
.y67{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.yf3{bottom:596.961000px;}
.y22c{bottom:597.207000px;}
.y33{bottom:597.502500px;}
.y20a{bottom:597.985500px;}
.y1d5{bottom:599.449500px;}
.y154{bottom:601.092000px;}
.y294{bottom:605.052000px;}
.y25d{bottom:606.577500px;}
.y177{bottom:608.638500px;}
.ybe{bottom:613.144500px;}
.y1{bottom:614.756964px;}
.y110{bottom:614.820000px;}
.y9b{bottom:615.139500px;}
.y66{bottom:615.588000px;}
.y22b{bottom:616.036500px;}
.y209{bottom:616.815000px;}
.y1d4{bottom:618.682500px;}
.y153{bottom:619.921500px;}
.y293{bottom:622.312500px;}
.y25c{bottom:623.836500px;}
.y1b6{bottom:626.859000px;}
.yf2{bottom:627.388500px;}
.y176{bottom:629.613000px;}
.ybd{bottom:631.974000px;}
.y10f{bottom:633.649500px;}
.y9a{bottom:633.969000px;}
.y65{bottom:634.417500px;}
.y22a{bottom:634.866000px;}
.y32{bottom:634.891500px;}
.y208{bottom:635.644500px;}
.y152{bottom:638.751000px;}
.y292{bottom:639.573000px;}
.y25b{bottom:641.097000px;}
.y175{bottom:648.441000px;}
.y192{bottom:649.288500px;}
.ybc{bottom:650.803500px;}
.y10e{bottom:652.477500px;}
.y99{bottom:652.798500px;}
.y64{bottom:653.247000px;}
.y229{bottom:653.695500px;}
.y31{bottom:654.348000px;}
.y207{bottom:654.474000px;}
.y291{bottom:656.833500px;}
.y151{bottom:657.580500px;}
.y25a{bottom:658.357500px;}
.y174{bottom:669.415500px;}
.ybb{bottom:669.633000px;}
.y10d{bottom:671.307000px;}
.y98{bottom:671.628000px;}
.y63{bottom:672.076500px;}
.y228{bottom:672.525000px;}
.y206{bottom:673.303500px;}
.y30{bottom:673.806000px;}
.y290{bottom:674.094000px;}
.y259{bottom:675.618000px;}
.y150{bottom:676.410000px;}
.yba{bottom:688.462500px;}
.y10c{bottom:690.136500px;}
.y173{bottom:690.390000px;}
.y97{bottom:690.457500px;}
.y62{bottom:690.906000px;}
.y227{bottom:691.354500px;}
.y205{bottom:692.133000px;}
.y258{bottom:692.878500px;}
.y2f{bottom:693.262500px;}
.y14f{bottom:695.239500px;}
.yb9{bottom:707.292000px;}
.y28f{bottom:708.613500px;}
.y96{bottom:709.287000px;}
.y61{bottom:709.735500px;}
.y257{bottom:710.139000px;}
.y226{bottom:710.184000px;}
.y204{bottom:710.962500px;}
.y172{bottom:711.363000px;}
.y2e{bottom:712.720500px;}
.y10b{bottom:713.449500px;}
.y14e{bottom:714.069000px;}
.y28e{bottom:725.874000px;}
.y256{bottom:727.399500px;}
.y95{bottom:728.116500px;}
.y60{bottom:728.565000px;}
.y225{bottom:729.013500px;}
.y171{bottom:730.192500px;}
.yb8{bottom:730.603500px;}
.y2d{bottom:732.177000px;}
.y14d{bottom:732.898500px;}
.y203{bottom:734.275500px;}
.y28d{bottom:743.134500px;}
.y10a{bottom:743.877000px;}
.y255{bottom:744.660000px;}
.y94{bottom:746.946000px;}
.y5f{bottom:747.394500px;}
.y224{bottom:747.843000px;}
.y170{bottom:749.022000px;}
.y2c{bottom:751.633500px;}
.y14c{bottom:751.728000px;}
.y202{bottom:753.105000px;}
.y28c{bottom:760.395000px;}
.yb7{bottom:761.031000px;}
.y254{bottom:761.920500px;}
.y93{bottom:765.775500px;}
.y8e{bottom:766.224000px;}
.y12a{bottom:766.671000px;}
.y1ef{bottom:767.482500px;}
.y14b{bottom:770.557500px;}
.y5e{bottom:770.706000px;}
.y2b{bottom:771.091500px;}
.y201{bottom:771.934500px;}
.y16f{bottom:774.352500px;}
.y28b{bottom:777.655500px;}
.y253{bottom:779.179500px;}
.yb6{bottom:780.264000px;}
.y92{bottom:784.605000px;}
.y8d{bottom:785.053500px;}
.y129{bottom:785.500500px;}
.y1ee{bottom:786.312000px;}
.y2a{bottom:790.548000px;}
.y200{bottom:790.764000px;}
.y16e{bottom:793.182000px;}
.y28a{bottom:794.916000px;}
.y252{bottom:796.440000px;}
.y14a{bottom:796.858500px;}
.yb5{bottom:799.497000px;}
.y91{bottom:803.434500px;}
.y8c{bottom:803.883000px;}
.y5d{bottom:804.330000px;}
.y1ed{bottom:805.141500px;}
.y1ff{bottom:809.593500px;}
.y29{bottom:810.004500px;}
.y16d{bottom:812.011500px;}
.y289{bottom:812.176500px;}
.y251{bottom:813.700500px;}
.y149{bottom:815.688000px;}
.y8b{bottom:822.712500px;}
.y5c{bottom:823.159500px;}
.y1ec{bottom:823.971000px;}
.y90{bottom:826.746000px;}
.y1fe{bottom:828.423000px;}
.y288{bottom:829.437000px;}
.y28{bottom:829.462500px;}
.y16c{bottom:830.841000px;}
.y250{bottom:830.961000px;}
.y148{bottom:834.517500px;}
.y8a{bottom:841.540500px;}
.y5b{bottom:841.989000px;}
.y1eb{bottom:842.799000px;}
.y287{bottom:846.697500px;}
.y1fd{bottom:847.252500px;}
.y24f{bottom:848.221500px;}
.y27{bottom:848.919000px;}
.y146{bottom:853.347000px;}
.y147{bottom:858.771000px;}
.y89{bottom:860.370000px;}
.y5a{bottom:860.818500px;}
.y286{bottom:863.956500px;}
.y24e{bottom:865.482000px;}
.y1fc{bottom:866.082000px;}
.y16b{bottom:869.034000px;}
.y145{bottom:872.176500px;}
.y1ea{bottom:873.967500px;}
.y88{bottom:879.199500px;}
.y59{bottom:879.648000px;}
.y285{bottom:881.217000px;}
.y24d{bottom:882.742500px;}
.y1fb{bottom:884.911500px;}
.y26{bottom:885.453000px;}
.y16a{bottom:887.512500px;}
.y144{bottom:891.006000px;}
.y1e9{bottom:892.446000px;}
.y87{bottom:898.029000px;}
.y58{bottom:898.477500px;}
.y1e8{bottom:900.664500px;}
.y25{bottom:901.593000px;}
.y169{bottom:903.951000px;}
.y24c{bottom:904.485000px;}
.y143{bottom:909.835500px;}
.y166{bottom:913.198500px;}
.y284{bottom:915.738000px;}
.y86{bottom:916.858500px;}
.y57{bottom:917.307000px;}
.y1fa{bottom:918.477000px;}
.y168{bottom:920.389500px;}
.y24{bottom:922.071000px;}
.y1e7{bottom:925.323000px;}
.y142{bottom:928.665000px;}
.y283{bottom:932.998500px;}
.y23{bottom:933.871500px;}
.y1e4{bottom:934.567500px;}
.y85{bottom:935.688000px;}
.y56{bottom:936.136500px;}
.y167{bottom:936.828000px;}
.y24b{bottom:938.109000px;}
.y1e6{bottom:941.761500px;}
.y141{bottom:947.494500px;}
.y282{bottom:950.259000px;}
.y22{bottom:954.351000px;}
.y84{bottom:954.517500px;}
.y55{bottom:954.966000px;}
.y24a{bottom:955.683000px;}
.y1e5{bottom:958.200000px;}
.y8f{bottom:959.001000px;}
.y165{bottom:961.410000px;}
.y140{bottom:966.324000px;}
.y281{bottom:967.519500px;}
.y1d3{bottom:969.312000px;}
.y248{bottom:973.257000px;}
.y249{bottom:973.258500px;}
.y83{bottom:973.347000px;}
.y54{bottom:973.795500px;}
.y164{bottom:977.847000px;}
.y1e3{bottom:982.780500px;}
.y280{bottom:984.780000px;}
.y13f{bottom:985.153500px;}
.y1d2{bottom:988.141500px;}
.ydb{bottom:992.176500px;}
.y53{bottom:992.625000px;}
.y82{bottom:996.660000px;}
.y21{bottom:996.975000px;}
.y1e2{bottom:999.219000px;}
.y247{bottom:999.798000px;}
.y27f{bottom:1002.040500px;}
.y13e{bottom:1003.983000px;}
.y1d1{bottom:1006.971000px;}
.y163{bottom:1009.467000px;}
.yda{bottom:1011.006000px;}
.y52{bottom:1011.454500px;}
.y27e{bottom:1019.299500px;}
.y1d0{bottom:1025.800500px;}
.y246{bottom:1026.339000px;}
.yd9{bottom:1029.835500px;}
.y51{bottom:1030.284000px;}
.y1e1{bottom:1030.839000px;}
.y27d{bottom:1036.560000px;}
.y20{bottom:1036.894500px;}
.y162{bottom:1044.630000px;}
.y50{bottom:1049.113500px;}
.y245{bottom:1052.880000px;}
.yd8{bottom:1053.148500px;}
.y27c{bottom:1053.820500px;}
.y161{bottom:1063.459500px;}
.y1f{bottom:1065.139500px;}
.y4f{bottom:1067.943000px;}
.y244{bottom:1070.454000px;}
.y27b{bottom:1071.081000px;}
.y160{bottom:1082.289000px;}
.y4e{bottom:1086.772500px;}
.y243{bottom:1088.028000px;}
.y27a{bottom:1088.341500px;}
.y1e{bottom:1093.383000px;}
.y4d{bottom:1105.602000px;}
.y1c{bottom:1136.869500px;}
.y4c{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h17{height:26.461718px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.h13{height:34.818209px;}
.h12{height:35.052500px;}
.he{height:38.734848px;}
.hf{height:39.165235px;}
.h14{height:39.434227px;}
.h10{height:43.038432px;}
.h11{height:43.516637px;}
.h9{height:43.815515px;}
.h19{height:44.279648px;}
.h15{height:49.117939px;}
.h1b{height:49.939453px;}
.h7{height:50.930649px;}
.hb{height:54.411312px;}
.h16{height:54.575123px;}
.h1a{height:55.599258px;}
.h1d{height:72.308227px;}
.h1c{height:72.314227px;}
.h8{height:76.877878px;}
.ha{height:77.469696px;}
.h18{height:244.378500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:204.673175px;}
.w4{width:249.504000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x54{left:-207.328500px;}
.x58{left:-16.078716px;}
.x56{left:-11.758500px;}
.x0{left:0.000000px;}
.x57{left:20.101500px;}
.x2{left:29.274117px;}
.x59{left:36.391014px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:56.639606px;}
.x79{left:85.848000px;}
.x7d{left:183.130500px;}
.x7e{left:190.963500px;}
.x44{left:247.513500px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x55{left:252.481284px;}
.x3d{left:258.556500px;}
.x6{left:269.316000px;}
.x9{left:281.479500px;}
.x47{left:284.184000px;}
.xc{left:292.948500px;}
.x50{left:295.987500px;}
.x14{left:297.588000px;}
.xd{left:300.421500px;}
.x15{left:305.061000px;}
.x3e{left:306.852000px;}
.x8{left:309.163500px;}
.x61{left:313.542000px;}
.x48{left:315.729000px;}
.x2d{left:317.847000px;}
.x2e{left:322.353000px;}
.x36{left:324.270000px;}
.x65{left:325.785000px;}
.x66{left:329.446500px;}
.x35{left:332.032500px;}
.x31{left:337.549500px;}
.x67{left:344.391000px;}
.x32{left:352.494000px;}
.x33{left:356.253000px;}
.x34{left:371.196000px;}
.x78{left:377.092500px;}
.x1d{left:379.392000px;}
.x3c{left:385.680000px;}
.x76{left:390.696000px;}
.x1e{left:394.336500px;}
.x49{left:400.584000px;}
.x4a{left:404.283000px;}
.x3b{left:410.143500px;}
.x39{left:412.983000px;}
.x41{left:418.903500px;}
.x2f{left:424.056000px;}
.x3a{left:427.926000px;}
.x68{left:431.884500px;}
.x77{left:433.692000px;}
.x29{left:437.458500px;}
.x30{left:439.000500px;}
.x69{left:446.827500px;}
.x6a{left:450.511500px;}
.x2a{left:452.401500px;}
.x52{left:453.760500px;}
.x53{left:456.316500px;}
.x51{left:457.486500px;}
.x6b{left:465.456000px;}
.x27{left:477.304500px;}
.x4d{left:482.416500px;}
.x37{left:488.962500px;}
.x4e{left:490.296000px;}
.x28{left:492.249000px;}
.x38{left:496.435500px;}
.x42{left:502.191000px;}
.x23{left:506.671500px;}
.x43{left:517.134000px;}
.x24{left:521.616000px;}
.x25{left:525.328500px;}
.x26{left:540.273000px;}
.x5c{left:550.303500px;}
.x5d{left:573.651000px;}
.x12{left:576.823500px;}
.x13{left:584.295000px;}
.x6c{left:587.052000px;}
.x5e{left:592.954500px;}
.x6d{left:601.995000px;}
.x6e{left:604.705500px;}
.x16{left:607.857000px;}
.x1b{left:609.297000px;}
.x6f{left:619.650000px;}
.x17{left:622.801500px;}
.x1c{left:624.240000px;}
.x83{left:627.142500px;}
.x84{left:635.301000px;}
.x62{left:647.574000px;}
.x4f{left:660.211500px;}
.x2b{left:668.850000px;}
.x5a{left:673.761000px;}
.x2c{left:685.008000px;}
.x3f{left:687.135000px;}
.x40{left:694.984500px;}
.x7f{left:696.283500px;}
.x5b{left:698.278500px;}
.x1f{left:705.606000px;}
.x18{left:716.748000px;}
.x20{left:720.550500px;}
.x80{left:723.183000px;}
.x21{left:727.873500px;}
.x74{left:730.662000px;}
.x19{left:731.692500px;}
.x45{left:734.155500px;}
.x7a{left:738.853500px;}
.x63{left:740.707500px;}
.x22{left:742.816500px;}
.x75{left:745.606500px;}
.x4b{left:752.256000px;}
.x46{left:757.522500px;}
.x64{left:761.722500px;}
.x7b{left:765.753000px;}
.xe{left:771.456000px;}
.x4c{left:775.617000px;}
.xa{left:777.000000px;}
.xf{left:778.927500px;}
.x70{left:780.942000px;}
.x5f{left:782.395500px;}
.xb{left:784.473000px;}
.x71{left:788.415000px;}
.x81{left:789.625500px;}
.x72{left:792.225000px;}
.x73{left:807.169500px;}
.x7c{left:810.319500px;}
.x82{left:816.523500px;}
.x1a{left:817.750500px;}
.x10{left:825.414000px;}
.x11{left:832.885500px;}
.x60{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.669333pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.226667pt;}
.ls3a{letter-spacing:-1.838336pt;}
.ls3b{letter-spacing:-0.283232pt;}
.ls45{letter-spacing:-0.256512pt;}
.ls3d{letter-spacing:-0.090848pt;}
.ls44{letter-spacing:-0.069472pt;}
.ls43{letter-spacing:-0.064128pt;}
.ls40{letter-spacing:-0.058784pt;}
.ls3c{letter-spacing:-0.037408pt;}
.ls41{letter-spacing:-0.032064pt;}
.ls42{letter-spacing:-0.021376pt;}
.ls3e{letter-spacing:-0.016032pt;}
.ls38{letter-spacing:-0.010688pt;}
.ls3f{letter-spacing:-0.005344pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5b{letter-spacing:0.000002pt;}
.ls77{letter-spacing:0.000169pt;}
.ls6f{letter-spacing:0.000225pt;}
.ls11{letter-spacing:0.000387pt;}
.ls26{letter-spacing:0.000414pt;}
.ls59{letter-spacing:0.000434pt;}
.ls4d{letter-spacing:0.000503pt;}
.ls20{letter-spacing:0.000518pt;}
.ls1c{letter-spacing:0.000627pt;}
.ls1b{letter-spacing:0.000659pt;}
.ls66{letter-spacing:0.000711pt;}
.ls1e{letter-spacing:0.000751pt;}
.ls6c{letter-spacing:0.000865pt;}
.ls67{letter-spacing:0.000921pt;}
.ls4c{letter-spacing:0.000998pt;}
.ls6e{letter-spacing:0.001062pt;}
.ls69{letter-spacing:0.001319pt;}
.ls1f{letter-spacing:0.001399pt;}
.ls62{letter-spacing:0.001408pt;}
.ls27{letter-spacing:0.001487pt;}
.ls78{letter-spacing:0.001514pt;}
.ls6d{letter-spacing:0.001552pt;}
.ls15{letter-spacing:0.001774pt;}
.lsf{letter-spacing:0.001874pt;}
.ls5c{letter-spacing:0.002134pt;}
.ls47{letter-spacing:0.002153pt;}
.ls60{letter-spacing:0.002262pt;}
.ls65{letter-spacing:0.002385pt;}
.ls64{letter-spacing:0.002553pt;}
.ls6b{letter-spacing:0.002919pt;}
.ls63{letter-spacing:0.002939pt;}
.ls4e{letter-spacing:0.002963pt;}
.ls79{letter-spacing:0.003261pt;}
.ls71{letter-spacing:0.003405pt;}
.ls24{letter-spacing:0.003430pt;}
.ls1{letter-spacing:0.003733pt;}
.ls6a{letter-spacing:0.004226pt;}
.ls76{letter-spacing:0.004267pt;}
.ls75{letter-spacing:0.004513pt;}
.ls74{letter-spacing:0.004786pt;}
.ls33{letter-spacing:0.010688pt;}
.ls2c{letter-spacing:0.014400pt;}
.ls30{letter-spacing:0.016032pt;}
.ls34{letter-spacing:0.021376pt;}
.ls2f{letter-spacing:0.026720pt;}
.ls32{letter-spacing:0.032064pt;}
.ls35{letter-spacing:0.037408pt;}
.ls2a{letter-spacing:0.038304pt;}
.ls28{letter-spacing:0.042560pt;}
.ls36{letter-spacing:0.042752pt;}
.ls2d{letter-spacing:0.048096pt;}
.ls31{letter-spacing:0.080160pt;}
.ls2b{letter-spacing:0.153216pt;}
.ls39{letter-spacing:0.160320pt;}
.ls29{letter-spacing:0.161728pt;}
.ls37{letter-spacing:1.062677pt;}
.ls7{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls6{letter-spacing:10.626533pt;}
.ls5f{letter-spacing:11.457045pt;}
.ls51{letter-spacing:11.763126pt;}
.ls52{letter-spacing:11.765772pt;}
.lsb{letter-spacing:11.795718pt;}
.ls9{letter-spacing:11.800414pt;}
.lsa{letter-spacing:11.800877pt;}
.ls49{letter-spacing:11.922602pt;}
.ls48{letter-spacing:11.924851pt;}
.ls23{letter-spacing:11.950933pt;}
.ls1a{letter-spacing:11.953929pt;}
.ls61{letter-spacing:11.954133pt;}
.ls54{letter-spacing:11.955200pt;}
.ls19{letter-spacing:11.956267pt;}
.ls72{letter-spacing:11.959467pt;}
.ls70{letter-spacing:12.028638pt;}
.ls4a{letter-spacing:12.064573pt;}
.ls4b{letter-spacing:12.072109pt;}
.ls73{letter-spacing:12.175519pt;}
.ls50{letter-spacing:12.518358pt;}
.ls4f{letter-spacing:12.518673pt;}
.ls21{letter-spacing:13.017797pt;}
.ls58{letter-spacing:13.124065pt;}
.ls16{letter-spacing:13.258917pt;}
.ls18{letter-spacing:13.263212pt;}
.ls17{letter-spacing:13.264822pt;}
.ls53{letter-spacing:13.283467pt;}
.ls57{letter-spacing:13.283543pt;}
.ls56{letter-spacing:13.283733pt;}
.ls5d{letter-spacing:13.389734pt;}
.ls12{letter-spacing:13.480125pt;}
.ls14{letter-spacing:13.496002pt;}
.ls10{letter-spacing:13.555391pt;}
.ls68{letter-spacing:13.597741pt;}
.ls13{letter-spacing:13.707383pt;}
.ls46{letter-spacing:14.399278pt;}
.lsd{letter-spacing:15.058393pt;}
.lsc{letter-spacing:15.059210pt;}
.lse{letter-spacing:15.563592pt;}
.ls3{letter-spacing:15.937067pt;}
.ls5e{letter-spacing:17.162239pt;}
.ls22{letter-spacing:19.500129pt;}
.ls5a{letter-spacing:24.698233pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls1d{letter-spacing:83.810400pt;}
.ls2e{letter-spacing:105.143200pt;}
.ls55{letter-spacing:375.260510pt;}
.ls25{letter-spacing:407.681843pt;}
.wsd7{word-spacing:-30.445706pt;}
.ws4b{word-spacing:-26.779469pt;}
.wsd6{word-spacing:-26.673201pt;}
.wscb{word-spacing:-26.566933pt;}
.wscc{word-spacing:-26.407532pt;}
.ws40{word-spacing:-25.079185pt;}
.wsc3{word-spacing:-23.910400pt;}
.ws9b{word-spacing:-13.520320pt;}
.ws10{word-spacing:-13.283467pt;}
.ws91{word-spacing:-11.955200pt;}
.ws99{word-spacing:-10.801728pt;}
.ws9a{word-spacing:-10.640000pt;}
.ws31{word-spacing:-10.626800pt;}
.ws12{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws7e{word-spacing:-3.134898pt;}
.wsce{word-spacing:-2.821427pt;}
.wsde{word-spacing:-2.550426pt;}
.ws79{word-spacing:-2.284756pt;}
.wsbd{word-spacing:-2.185696pt;}
.ws60{word-spacing:-2.072221pt;}
.ws61{word-spacing:-2.019087pt;}
.wsa3{word-spacing:-1.865056pt;}
.wsaa{word-spacing:-1.859712pt;}
.wse5{word-spacing:-1.769370pt;}
.ws1{word-spacing:-1.696326pt;}
.ws86{word-spacing:-1.647150pt;}
.wsc9{word-spacing:-1.594016pt;}
.wse6{word-spacing:-1.578086pt;}
.ws3f{word-spacing:-1.487748pt;}
.wse7{word-spacing:-1.482445pt;}
.wse8{word-spacing:-1.291162pt;}
.ws75{word-spacing:-1.275213pt;}
.wsbc{word-spacing:-1.223776pt;}
.ws0{word-spacing:-1.175671pt;}
.wsc0{word-spacing:-1.147699pt;}
.wsd2{word-spacing:-1.115811pt;}
.ws34{word-spacing:-1.062677pt;}
.ws6{word-spacing:-1.041421pt;}
.ws5c{word-spacing:-1.009543pt;}
.ws8{word-spacing:-0.929840pt;}
.wsc1{word-spacing:-0.908595pt;}
.ws27{word-spacing:-0.903276pt;}
.wsd4{word-spacing:-0.850142pt;}
.ws5b{word-spacing:-0.797008pt;}
.wse2{word-spacing:-0.765133pt;}
.wse9{word-spacing:-0.669491pt;}
.ws7f{word-spacing:-0.637606pt;}
.wse1{word-spacing:-0.621670pt;}
.wsa2{word-spacing:-0.609216pt;}
.ws73{word-spacing:-0.531339pt;}
.wseb{word-spacing:-0.478208pt;}
.ws98{word-spacing:-0.478205pt;}
.ws1d{word-spacing:-0.382566pt;}
.ws82{word-spacing:-0.371937pt;}
.ws52{word-spacing:-0.318803pt;}
.ws108{word-spacing:-0.286925pt;}
.wsbb{word-spacing:-0.277888pt;}
.wsa6{word-spacing:-0.272544pt;}
.wsb9{word-spacing:-0.267200pt;}
.ws37{word-spacing:-0.265669pt;}
.ws9d{word-spacing:-0.242592pt;}
.wsfc{word-spacing:-0.239104pt;}
.wsaf{word-spacing:-0.229792pt;}
.wsac{word-spacing:-0.224448pt;}
.wsfd{word-spacing:-0.214367pt;}
.ws33{word-spacing:-0.212535pt;}
.wsb0{word-spacing:-0.208416pt;}
.ws1c{word-spacing:-0.191283pt;}
.wsae{word-spacing:-0.181696pt;}
.ws32{word-spacing:-0.159402pt;}
.ws17{word-spacing:-0.143462pt;}
.wsf5{word-spacing:-0.121008pt;}
.ws9e{word-spacing:-0.119168pt;}
.ws109{word-spacing:-0.114915pt;}
.ws21{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws11{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws10a{word-spacing:-0.025114pt;}
.ws66{word-spacing:-0.023922pt;}
.wsef{word-spacing:-0.023646pt;}
.ws68{word-spacing:-0.022776pt;}
.ws105{word-spacing:-0.009540pt;}
.ws107{word-spacing:-0.006511pt;}
.wsee{word-spacing:-0.003635pt;}
.wsed{word-spacing:-0.003575pt;}
.ws67{word-spacing:-0.002620pt;}
.ws10d{word-spacing:-0.002543pt;}
.ws4{word-spacing:-0.001004pt;}
.ws3{word-spacing:0.000000pt;}
.ws30{word-spacing:0.000646pt;}
.wsfe{word-spacing:0.001758pt;}
.wsa9{word-spacing:0.032064pt;}
.wsbe{word-spacing:0.037408pt;}
.wsa5{word-spacing:0.042752pt;}
.ws1a{word-spacing:0.047821pt;}
.wsb2{word-spacing:0.048096pt;}
.ws26{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.069472pt;}
.wsad{word-spacing:0.085504pt;}
.wsba{word-spacing:0.090848pt;}
.ws1b{word-spacing:0.095642pt;}
.wsb1{word-spacing:0.096192pt;}
.wsb3{word-spacing:0.101536pt;}
.ws20{word-spacing:0.106268pt;}
.wsa7{word-spacing:0.117568pt;}
.wscd{word-spacing:0.143462pt;}
.wsa1{word-spacing:0.144000pt;}
.wsb4{word-spacing:0.144288pt;}
.wsb5{word-spacing:0.149632pt;}
.wsa0{word-spacing:0.158400pt;}
.ws29{word-spacing:0.159402pt;}
.ws44{word-spacing:0.174736pt;}
.ws4a{word-spacing:0.175276pt;}
.ws48{word-spacing:0.179965pt;}
.ws46{word-spacing:0.180118pt;}
.ws45{word-spacing:0.180505pt;}
.ws6c{word-spacing:0.191283pt;}
.ws49{word-spacing:0.196228pt;}
.ws4c{word-spacing:0.209463pt;}
.ws22{word-spacing:0.212535pt;}
.ws19{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.ws104{word-spacing:0.286925pt;}
.ws2f{word-spacing:0.318803pt;}
.wsb6{word-spacing:0.336672pt;}
.ws8c{word-spacing:0.371937pt;}
.ws47{word-spacing:0.424303pt;}
.ws6e{word-spacing:0.425071pt;}
.wsec{word-spacing:0.430387pt;}
.ws83{word-spacing:0.478205pt;}
.ws24{word-spacing:0.531339pt;}
.wsc2{word-spacing:0.573850pt;}
.wsdd{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.637606pt;}
.wse0{word-spacing:0.669491pt;}
.ws36{word-spacing:0.690740pt;}
.ws57{word-spacing:0.743874pt;}
.ws77{word-spacing:0.797008pt;}
.ws71{word-spacing:0.850142pt;}
.wsf4{word-spacing:0.860774pt;}
.ws7{word-spacing:0.892646pt;}
.ws3c{word-spacing:0.903276pt;}
.ws43{word-spacing:0.956410pt;}
.ws42{word-spacing:1.009543pt;}
.ws7a{word-spacing:1.062677pt;}
.ws3e{word-spacing:1.115811pt;}
.ws2d{word-spacing:1.168945pt;}
.ws53{word-spacing:1.222079pt;}
.wsf0{word-spacing:1.291162pt;}
.ws35{word-spacing:1.328347pt;}
.wsbf{word-spacing:1.381481pt;}
.ws23{word-spacing:1.487748pt;}
.ws56{word-spacing:1.540882pt;}
.ws14{word-spacing:1.578086pt;}
.ws84{word-spacing:1.594016pt;}
.wsf1{word-spacing:1.625907pt;}
.ws2e{word-spacing:1.647150pt;}
.ws4e{word-spacing:1.700284pt;}
.ws41{word-spacing:1.753418pt;}
.wsf9{word-spacing:1.769370pt;}
.wsd3{word-spacing:1.806551pt;}
.wsf8{word-spacing:1.817190pt;}
.wsda{word-spacing:1.859685pt;}
.ws6b{word-spacing:1.912819pt;}
.ws6a{word-spacing:1.965953pt;}
.ws85{word-spacing:2.019087pt;}
.wsdb{word-spacing:2.072221pt;}
.wse3{word-spacing:2.199757pt;}
.ws64{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws63{word-spacing:2.284756pt;}
.ws55{word-spacing:2.391024pt;}
.wsd0{word-spacing:2.444158pt;}
.ws13{word-spacing:2.550432pt;}
.ws6d{word-spacing:2.582323pt;}
.wscf{word-spacing:2.603559pt;}
.wsd1{word-spacing:2.656693pt;}
.ws5a{word-spacing:2.762961pt;}
.ws54{word-spacing:2.816095pt;}
.ws103{word-spacing:2.860314pt;}
.ws100{word-spacing:2.861773pt;}
.ws1e{word-spacing:2.861926pt;}
.wsf3{word-spacing:2.864922pt;}
.wsf2{word-spacing:2.865331pt;}
.ws106{word-spacing:2.865655pt;}
.ws101{word-spacing:2.867541pt;}
.wsea{word-spacing:2.869248pt;}
.ws3b{word-spacing:2.922363pt;}
.ws72{word-spacing:2.975497pt;}
.ws81{word-spacing:3.081764pt;}
.wsd9{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws65{word-spacing:3.241166pt;}
.wsd8{word-spacing:3.453701pt;}
.ws5e{word-spacing:3.506835pt;}
.ws51{word-spacing:3.559969pt;}
.ws6f{word-spacing:3.613103pt;}
.ws39{word-spacing:3.666237pt;}
.ws102{word-spacing:3.682202pt;}
.ws62{word-spacing:3.719371pt;}
.ws9c{word-spacing:3.825638pt;}
.ws3d{word-spacing:3.878772pt;}
.ws4d{word-spacing:3.931906pt;}
.ws59{word-spacing:3.985040pt;}
.ws7c{word-spacing:4.091308pt;}
.ws50{word-spacing:4.144442pt;}
.wsf6{word-spacing:4.208230pt;}
.wse{word-spacing:4.240070pt;}
.ws93{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws2a{word-spacing:4.410111pt;}
.wsf7{word-spacing:4.447334pt;}
.ws2b{word-spacing:4.622646pt;}
.ws58{word-spacing:4.675780pt;}
.ws38{word-spacing:4.728914pt;}
.wsd5{word-spacing:4.782048pt;}
.wsca{word-spacing:4.835182pt;}
.wsfb{word-spacing:4.877722pt;}
.ws7b{word-spacing:4.888316pt;}
.wsff{word-spacing:4.925542pt;}
.ws74{word-spacing:4.941450pt;}
.ws15{word-spacing:5.069005pt;}
.wsdc{word-spacing:5.100851pt;}
.ws25{word-spacing:5.260253pt;}
.ws70{word-spacing:5.419654pt;}
.ws4f{word-spacing:5.472788pt;}
.wsab{word-spacing:5.520352pt;}
.ws7d{word-spacing:5.685324pt;}
.wsb7{word-spacing:5.792896pt;}
.wsb8{word-spacing:5.846336pt;}
.ws97{word-spacing:5.950993pt;}
.wse4{word-spacing:5.977600pt;}
.ws96{word-spacing:5.978562pt;}
.ws8d{word-spacing:6.004127pt;}
.ws95{word-spacing:6.110395pt;}
.wsfa{word-spacing:6.168883pt;}
.ws8e{word-spacing:6.216662pt;}
.ws8a{word-spacing:6.322930pt;}
.ws2c{word-spacing:6.376064pt;}
.ws76{word-spacing:6.641733pt;}
.ws10c{word-spacing:6.659713pt;}
.ws10b{word-spacing:6.694912pt;}
.wsdf{word-spacing:6.748001pt;}
.ws5f{word-spacing:6.801135pt;}
.ws5d{word-spacing:6.854269pt;}
.wsc{word-spacing:6.918010pt;}
.ws8b{word-spacing:7.119938pt;}
.ws94{word-spacing:7.279340pt;}
.ws80{word-spacing:7.332474pt;}
.ws78{word-spacing:7.651277pt;}
.wsa4{word-spacing:8.384736pt;}
.ws87{word-spacing:9.245293pt;}
.ws9f{word-spacing:10.325056pt;}
.wsa{word-spacing:10.823338pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
.ws89{word-spacing:69.863467pt;}
.ws88{word-spacing:69.871035pt;}
.wsc5{word-spacing:310.452634pt;}
.wsc4{word-spacing:358.909380pt;}
.wsc8{word-spacing:364.671590pt;}
.wsc7{word-spacing:372.393062pt;}
.wsc6{word-spacing:376.553882pt;}
.ws8f{word-spacing:391.330714pt;}
.ws92{word-spacing:404.814396pt;}
.ws90{word-spacing:408.975215pt;}
.ws69{word-spacing:853.792563pt;}
._32{margin-left:-17.120699pt;}
._19{margin-left:-13.496002pt;}
._18{margin-left:-11.777475pt;}
._8{margin-left:-10.616218pt;}
._9{margin-left:-5.897311pt;}
._e{margin-left:-4.893074pt;}
._2{margin-left:-3.421811pt;}
._1c{margin-left:-2.370167pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._5{width:2.045648pt;}
._a{width:3.269263pt;}
._23{width:8.766137pt;}
._6{width:10.132188pt;}
._3{width:11.528370pt;}
._12{width:12.705721pt;}
._c{width:14.600697pt;}
._15{width:15.680669pt;}
._f{width:16.684034pt;}
._1b{width:17.753438pt;}
._16{width:18.703121pt;}
._d{width:19.749990pt;}
._10{width:21.306681pt;}
._4{width:23.061099pt;}
._31{width:24.041445pt;}
._17{width:25.769925pt;}
._7{width:27.188522pt;}
._1a{width:28.858416pt;}
._2e{width:29.814826pt;}
._2f{width:31.189580pt;}
._33{width:32.145989pt;}
._11{width:36.077895pt;}
._24{width:38.681455pt;}
._27{width:44.161857pt;}
._b{width:48.376563pt;}
._35{width:54.993920pt;}
._34{width:78.904320pt;}
._25{width:83.154501pt;}
._26{width:85.811195pt;}
._2b{width:214.380646pt;}
._2a{width:273.534976pt;}
._29{width:340.579738pt;}
._2d{width:405.186057pt;}
._2c{width:431.665613pt;}
._13{width:684.070702pt;}
._20{width:756.940091pt;}
._1e{width:806.891229pt;}
._22{width:840.727483pt;}
._21{width:932.292719pt;}
._1d{width:940.072157pt;}
._1f{width:1027.679862pt;}
._30{width:1795.891552pt;}
._28{width:2202.829600pt;}
._14{width:2224.082933pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:100.790400pt;}
.y195{bottom:-751.080933pt;}
.y1b5{bottom:-683.476125pt;}
.y1b4{bottom:-661.795517pt;}
.y1b3{bottom:-640.036085pt;}
.y1b2{bottom:-618.276653pt;}
.y1b1{bottom:-596.596045pt;}
.y1b0{bottom:-574.836613pt;}
.y1af{bottom:-553.077181pt;}
.y1ae{bottom:-531.396573pt;}
.y1ad{bottom:-509.637141pt;}
.y1ac{bottom:-487.877709pt;}
.y1ab{bottom:-466.197101pt;}
.y1aa{bottom:-444.437669pt;}
.y1a9{bottom:-422.678237pt;}
.y1a8{bottom:-400.997629pt;}
.y1a7{bottom:-379.238197pt;}
.y1a6{bottom:-357.478765pt;}
.y1a5{bottom:-335.798157pt;}
.y1a4{bottom:-314.038725pt;}
.y1a3{bottom:-292.279293pt;}
.y1a2{bottom:-270.598685pt;}
.y1a1{bottom:-248.839253pt;}
.y1a0{bottom:-227.079821pt;}
.y19f{bottom:-205.400549pt;}
.y19e{bottom:-183.641117pt;}
.y19d{bottom:-161.881685pt;}
.y19c{bottom:-140.201077pt;}
.y19b{bottom:-118.441645pt;}
.y19a{bottom:-96.682213pt;}
.y199{bottom:-73.001613pt;}
.y198{bottom:-55.960933pt;}
.y197{bottom:-23.240933pt;}
.y196{bottom:-3.240237pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:16.529038pt;}
.y4b{bottom:28.346667pt;}
.yb4{bottom:81.480000pt;}
.y128{bottom:82.644000pt;}
.yf1{bottom:86.350667pt;}
.y223{bottom:91.990667pt;}
.y4a{bottom:92.108000pt;}
.y1b{bottom:93.018667pt;}
.y13d{bottom:93.121333pt;}
.y81{bottom:95.282667pt;}
.y1e0{bottom:97.166667pt;}
.yb3{bottom:98.217333pt;}
.y127{bottom:99.381333pt;}
.y191{bottom:100.124000pt;}
.yf0{bottom:103.088000pt;}
.y242{bottom:103.890667pt;}
.y222{bottom:108.728000pt;}
.y49{bottom:108.844000pt;}
.y1a{bottom:108.920000pt;}
.yd7{bottom:109.449333pt;}
.y279{bottom:109.589333pt;}
.y13c{bottom:111.764000pt;}
.y80{bottom:112.020000pt;}
.y1df{bottom:113.904000pt;}
.yb2{bottom:114.954667pt;}
.y1cf{bottom:117.880000pt;}
.y190{bottom:118.768000pt;}
.y241{bottom:119.512000pt;}
.yef{bottom:119.825333pt;}
.y126{bottom:120.104000pt;}
.y19{bottom:124.820000pt;}
.y278{bottom:124.932000pt;}
.y221{bottom:125.465333pt;}
.y48{bottom:125.581333pt;}
.yd6{bottom:126.186667pt;}
.y13b{bottom:128.501333pt;}
.y7f{bottom:128.757333pt;}
.y1de{bottom:130.641333pt;}
.yb1{bottom:131.692000pt;}
.y15f{bottom:132.021333pt;}
.y1ce{bottom:134.617333pt;}
.y240{bottom:135.133333pt;}
.y18f{bottom:135.505333pt;}
.yee{bottom:136.562667pt;}
.y277{bottom:140.274667pt;}
.y18{bottom:140.720000pt;}
.y220{bottom:142.202667pt;}
.y47{bottom:142.318667pt;}
.yd5{bottom:142.924000pt;}
.y13a{bottom:145.238667pt;}
.y7e{bottom:145.494667pt;}
.y1dd{bottom:147.378667pt;}
.yb0{bottom:148.429333pt;}
.y15e{bottom:148.758667pt;}
.y125{bottom:149.992000pt;}
.y23f{bottom:150.754667pt;}
.y1cd{bottom:151.353333pt;}
.y18e{bottom:152.242667pt;}
.yed{bottom:153.300000pt;}
.y276{bottom:155.616000pt;}
.y17{bottom:156.621333pt;}
.y109{bottom:158.426667pt;}
.y21f{bottom:158.940000pt;}
.y46{bottom:159.056000pt;}
.yd4{bottom:159.661333pt;}
.y139{bottom:161.976000pt;}
.y7d{bottom:162.232000pt;}
.yaf{bottom:165.166667pt;}
.y15d{bottom:165.496000pt;}
.y23e{bottom:166.376000pt;}
.y124{bottom:166.729333pt;}
.y1cc{bottom:168.090667pt;}
.y18d{bottom:168.978667pt;}
.yec{bottom:170.037333pt;}
.y275{bottom:170.958667pt;}
.y16{bottom:172.521333pt;}
.y108{bottom:175.164000pt;}
.y21e{bottom:175.677333pt;}
.y45{bottom:175.793333pt;}
.yd3{bottom:176.398667pt;}
.y1dc{bottom:177.214667pt;}
.y138{bottom:178.713333pt;}
.y7c{bottom:178.969333pt;}
.yae{bottom:181.904000pt;}
.y23d{bottom:181.997333pt;}
.y123{bottom:183.466667pt;}
.y1cb{bottom:184.828000pt;}
.y18c{bottom:185.716000pt;}
.y274{bottom:186.301333pt;}
.yeb{bottom:186.774667pt;}
.y15{bottom:188.421333pt;}
.y107{bottom:191.901333pt;}
.y21d{bottom:192.414667pt;}
.y44{bottom:192.530667pt;}
.yd2{bottom:193.136000pt;}
.y1db{bottom:194.310667pt;}
.y15c{bottom:195.332000pt;}
.y137{bottom:195.450667pt;}
.y7b{bottom:195.706667pt;}
.y23c{bottom:197.618667pt;}
.yad{bottom:198.641333pt;}
.y122{bottom:200.204000pt;}
.y1ca{bottom:201.565333pt;}
.y273{bottom:201.644000pt;}
.y18b{bottom:202.453333pt;}
.yea{bottom:203.512000pt;}
.y14{bottom:204.322667pt;}
.y106{bottom:208.638667pt;}
.y21c{bottom:209.152000pt;}
.y43{bottom:209.268000pt;}
.yd1{bottom:209.873333pt;}
.y1da{bottom:211.406667pt;}
.y136{bottom:212.188000pt;}
.y7a{bottom:212.444000pt;}
.yac{bottom:215.378667pt;}
.y121{bottom:216.941333pt;}
.y272{bottom:216.986667pt;}
.y1c9{bottom:218.302667pt;}
.y18a{bottom:219.190667pt;}
.ye9{bottom:220.249333pt;}
.y105{bottom:225.376000pt;}
.y21b{bottom:225.889333pt;}
.y42{bottom:226.005333pt;}
.yd0{bottom:226.610667pt;}
.y1d9{bottom:228.502667pt;}
.y135{bottom:228.925333pt;}
.y79{bottom:229.181333pt;}
.yab{bottom:232.116000pt;}
.y271{bottom:232.329333pt;}
.y1c8{bottom:235.040000pt;}
.y189{bottom:235.928000pt;}
.ye8{bottom:236.985333pt;}
.y120{bottom:237.664000pt;}
.y1f9{bottom:239.730667pt;}
.y104{bottom:242.113333pt;}
.y21a{bottom:242.625333pt;}
.y41{bottom:242.742667pt;}
.ycf{bottom:243.348000pt;}
.y134{bottom:245.662667pt;}
.y78{bottom:245.918667pt;}
.y270{bottom:247.672000pt;}
.yaa{bottom:248.853333pt;}
.y1c7{bottom:251.777333pt;}
.y188{bottom:252.665333pt;}
.ye7{bottom:253.722667pt;}
.y1f8{bottom:256.468000pt;}
.y194{bottom:256.999187pt;}
.y103{bottom:258.850667pt;}
.y219{bottom:259.362667pt;}
.y40{bottom:259.480000pt;}
.yce{bottom:260.085333pt;}
.y77{bottom:262.656000pt;}
.y26f{bottom:263.014667pt;}
.y193{bottom:265.559067pt;}
.ya9{bottom:265.590667pt;}
.y23b{bottom:266.640000pt;}
.y13{bottom:266.804000pt;}
.y11f{bottom:267.552000pt;}
.y1c6{bottom:268.514667pt;}
.y133{bottom:269.041333pt;}
.y187{bottom:269.402667pt;}
.ye6{bottom:270.460000pt;}
.y1f7{bottom:273.205333pt;}
.y102{bottom:275.588000pt;}
.y218{bottom:276.100000pt;}
.y3f{bottom:276.217333pt;}
.ycd{bottom:276.821333pt;}
.y26e{bottom:278.357333pt;}
.y76{bottom:279.393333pt;}
.ya8{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y11e{bottom:284.289333pt;}
.y132{bottom:285.778667pt;}
.y186{bottom:286.140000pt;}
.y1c5{bottom:287.158667pt;}
.ye5{bottom:287.197333pt;}
.y1f6{bottom:289.942667pt;}
.y101{bottom:292.325333pt;}
.y217{bottom:292.837333pt;}
.y3e{bottom:292.954667pt;}
.ycc{bottom:293.558667pt;}
.y26d{bottom:293.698667pt;}
.y75{bottom:296.129333pt;}
.y23a{bottom:296.528000pt;}
.y11{bottom:298.605333pt;}
.ya7{bottom:299.065333pt;}
.y11d{bottom:301.025333pt;}
.y131{bottom:302.516000pt;}
.y185{bottom:302.877333pt;}
.y1c4{bottom:303.896000pt;}
.ye4{bottom:303.934667pt;}
.y1f5{bottom:306.680000pt;}
.y26c{bottom:309.041333pt;}
.y100{bottom:309.062667pt;}
.y216{bottom:309.574667pt;}
.y3d{bottom:309.692000pt;}
.y74{bottom:312.866667pt;}
.y239{bottom:313.265333pt;}
.ycb{bottom:314.281333pt;}
.y10{bottom:314.505333pt;}
.ya6{bottom:315.802667pt;}
.y11c{bottom:317.762667pt;}
.y184{bottom:319.614667pt;}
.ye3{bottom:320.672000pt;}
.y1c3{bottom:322.538667pt;}
.y130{bottom:323.238667pt;}
.y1f4{bottom:323.417333pt;}
.y26b{bottom:324.384000pt;}
.yff{bottom:325.800000pt;}
.y215{bottom:326.312000pt;}
.y3c{bottom:326.429333pt;}
.y73{bottom:329.604000pt;}
.y238{bottom:330.002667pt;}
.y11b{bottom:334.500000pt;}
.ye2{bottom:337.409333pt;}
.y183{bottom:338.258667pt;}
.yf{bottom:338.376000pt;}
.y1c2{bottom:339.276000pt;}
.y26a{bottom:339.726667pt;}
.y1f3{bottom:340.154667pt;}
.yfe{bottom:342.537333pt;}
.y214{bottom:343.049333pt;}
.y3b{bottom:343.166667pt;}
.yca{bottom:344.169333pt;}
.y72{bottom:346.341333pt;}
.y237{bottom:346.740000pt;}
.y12f{bottom:353.126667pt;}
.ye1{bottom:354.146667pt;}
.ye{bottom:354.277333pt;}
.y182{bottom:354.996000pt;}
.ya5{bottom:355.045333pt;}
.y269{bottom:355.069333pt;}
.y1c1{bottom:356.013333pt;}
.y1f2{bottom:356.892000pt;}
.y11a{bottom:357.880000pt;}
.yfd{bottom:359.274667pt;}
.y213{bottom:359.786667pt;}
.y3a{bottom:359.904000pt;}
.yc9{bottom:360.906667pt;}
.y71{bottom:363.078667pt;}
.y236{bottom:363.477333pt;}
.ya4{bottom:369.657333pt;}
.y12e{bottom:369.864000pt;}
.yd{bottom:370.177333pt;}
.y268{bottom:370.412000pt;}
.ye0{bottom:370.884000pt;}
.y1c0{bottom:372.750667pt;}
.y1f1{bottom:373.629333pt;}
.y181{bottom:373.638667pt;}
.y119{bottom:374.617333pt;}
.yfc{bottom:376.012000pt;}
.y212{bottom:376.524000pt;}
.y39{bottom:376.641333pt;}
.yc8{bottom:377.644000pt;}
.y70{bottom:379.816000pt;}
.y235{bottom:380.214667pt;}
.ya3{bottom:384.269333pt;}
.y267{bottom:385.754667pt;}
.y12d{bottom:386.601333pt;}
.ydf{bottom:387.621333pt;}
.y1bf{bottom:389.488000pt;}
.y180{bottom:390.376000pt;}
.y118{bottom:391.354667pt;}
.yfb{bottom:392.749333pt;}
.y211{bottom:393.261333pt;}
.y38{bottom:393.378667pt;}
.yc7{bottom:394.381333pt;}
.yc{bottom:395.376000pt;}
.y6f{bottom:396.553333pt;}
.y234{bottom:396.952000pt;}
.ya2{bottom:398.881333pt;}
.y266{bottom:401.097333pt;}
.y12c{bottom:403.338667pt;}
.y1f0{bottom:403.465333pt;}
.yde{bottom:404.358667pt;}
.y1be{bottom:406.225333pt;}
.y17f{bottom:407.113333pt;}
.y117{bottom:408.092000pt;}
.yfa{bottom:409.486667pt;}
.y210{bottom:409.998667pt;}
.y37{bottom:410.116000pt;}
.yc6{bottom:411.118667pt;}
.yb{bottom:411.276000pt;}
.y6e{bottom:413.290667pt;}
.ya1{bottom:413.493333pt;}
.y233{bottom:413.689333pt;}
.y265{bottom:416.438667pt;}
.y15b{bottom:417.142667pt;}
.ydd{bottom:421.096000pt;}
.y1bd{bottom:422.962667pt;}
.y17e{bottom:423.850667pt;}
.yf9{bottom:426.224000pt;}
.y20f{bottom:426.736000pt;}
.y36{bottom:426.853333pt;}
.yc5{bottom:427.856000pt;}
.ya0{bottom:428.105333pt;}
.y116{bottom:428.813333pt;}
.y6d{bottom:430.028000pt;}
.y232{bottom:430.426667pt;}
.y264{bottom:431.781333pt;}
.y12b{bottom:433.174667pt;}
.y15a{bottom:433.880000pt;}
.ya{bottom:435.146667pt;}
.y1bc{bottom:439.700000pt;}
.y17d{bottom:440.588000pt;}
.yf8{bottom:442.961333pt;}
.y35{bottom:443.590667pt;}
.yc4{bottom:444.593333pt;}
.y6c{bottom:446.765333pt;}
.y263{bottom:447.124000pt;}
.y231{bottom:447.164000pt;}
.y20e{bottom:447.458667pt;}
.y9f{bottom:449.118667pt;}
.y159{bottom:450.617333pt;}
.ydc{bottom:450.932000pt;}
.y9{bottom:451.048000pt;}
.y115{bottom:452.193333pt;}
.y1bb{bottom:456.437333pt;}
.y17c{bottom:457.325333pt;}
.yf7{bottom:459.698667pt;}
.yc3{bottom:461.330667pt;}
.y262{bottom:462.466667pt;}
.y6b{bottom:463.502667pt;}
.y230{bottom:463.901333pt;}
.y34{bottom:464.312000pt;}
.y8{bottom:466.948000pt;}
.y158{bottom:467.354667pt;}
.y114{bottom:468.930667pt;}
.y9e{bottom:470.133333pt;}
.y1ba{bottom:473.174667pt;}
.y17b{bottom:474.062667pt;}
.yf6{bottom:476.436000pt;}
.y20d{bottom:477.346667pt;}
.y261{bottom:477.809333pt;}
.yc2{bottom:478.068000pt;}
.y6a{bottom:480.240000pt;}
.y22f{bottom:480.638667pt;}
.y1d8{bottom:481.556000pt;}
.y7{bottom:482.848000pt;}
.y157{bottom:484.092000pt;}
.y113{bottom:489.652000pt;}
.y1b9{bottom:489.912000pt;}
.y17a{bottom:490.800000pt;}
.y260{bottom:493.152000pt;}
.yf5{bottom:493.173333pt;}
.y20c{bottom:494.084000pt;}
.yc1{bottom:494.805333pt;}
.y69{bottom:496.977333pt;}
.y22e{bottom:497.376000pt;}
.y9d{bottom:498.240000pt;}
.y1d7{bottom:498.652000pt;}
.y6{bottom:498.749333pt;}
.y156{bottom:500.829333pt;}
.y112{bottom:506.389333pt;}
.y179{bottom:507.537333pt;}
.y25f{bottom:508.494667pt;}
.yf4{bottom:509.910667pt;}
.y1b8{bottom:510.634667pt;}
.yc0{bottom:511.542667pt;}
.y68{bottom:513.714667pt;}
.y22d{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y20b{bottom:514.806667pt;}
.y1d6{bottom:515.748000pt;}
.y155{bottom:517.566667pt;}
.y295{bottom:522.481333pt;}
.y111{bottom:523.126667pt;}
.y25e{bottom:523.837333pt;}
.y178{bottom:524.274667pt;}
.y1b7{bottom:527.372000pt;}
.ybf{bottom:528.280000pt;}
.y9c{bottom:530.053333pt;}
.y67{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.yf3{bottom:530.632000pt;}
.y22c{bottom:530.850667pt;}
.y33{bottom:531.113333pt;}
.y20a{bottom:531.542667pt;}
.y1d5{bottom:532.844000pt;}
.y154{bottom:534.304000pt;}
.y294{bottom:537.824000pt;}
.y25d{bottom:539.180000pt;}
.y177{bottom:541.012000pt;}
.ybe{bottom:545.017333pt;}
.y1{bottom:546.450634pt;}
.y110{bottom:546.506667pt;}
.y9b{bottom:546.790667pt;}
.y66{bottom:547.189333pt;}
.y22b{bottom:547.588000pt;}
.y209{bottom:548.280000pt;}
.y1d4{bottom:549.940000pt;}
.y153{bottom:551.041333pt;}
.y293{bottom:553.166667pt;}
.y25c{bottom:554.521333pt;}
.y1b6{bottom:557.208000pt;}
.yf2{bottom:557.678667pt;}
.y176{bottom:559.656000pt;}
.ybd{bottom:561.754667pt;}
.y10f{bottom:563.244000pt;}
.y9a{bottom:563.528000pt;}
.y65{bottom:563.926667pt;}
.y22a{bottom:564.325333pt;}
.y32{bottom:564.348000pt;}
.y208{bottom:565.017333pt;}
.y152{bottom:567.778667pt;}
.y292{bottom:568.509333pt;}
.y25b{bottom:569.864000pt;}
.y175{bottom:576.392000pt;}
.y192{bottom:577.145333pt;}
.ybc{bottom:578.492000pt;}
.y10e{bottom:579.980000pt;}
.y99{bottom:580.265333pt;}
.y64{bottom:580.664000pt;}
.y229{bottom:581.062667pt;}
.y31{bottom:581.642667pt;}
.y207{bottom:581.754667pt;}
.y291{bottom:583.852000pt;}
.y151{bottom:584.516000pt;}
.y25a{bottom:585.206667pt;}
.y174{bottom:595.036000pt;}
.ybb{bottom:595.229333pt;}
.y10d{bottom:596.717333pt;}
.y98{bottom:597.002667pt;}
.y63{bottom:597.401333pt;}
.y228{bottom:597.800000pt;}
.y206{bottom:598.492000pt;}
.y30{bottom:598.938667pt;}
.y290{bottom:599.194667pt;}
.y259{bottom:600.549333pt;}
.y150{bottom:601.253333pt;}
.yba{bottom:611.966667pt;}
.y10c{bottom:613.454667pt;}
.y173{bottom:613.680000pt;}
.y97{bottom:613.740000pt;}
.y62{bottom:614.138667pt;}
.y227{bottom:614.537333pt;}
.y205{bottom:615.229333pt;}
.y258{bottom:615.892000pt;}
.y2f{bottom:616.233333pt;}
.y14f{bottom:617.990667pt;}
.yb9{bottom:628.704000pt;}
.y28f{bottom:629.878667pt;}
.y96{bottom:630.477333pt;}
.y61{bottom:630.876000pt;}
.y257{bottom:631.234667pt;}
.y226{bottom:631.274667pt;}
.y204{bottom:631.966667pt;}
.y172{bottom:632.322667pt;}
.y2e{bottom:633.529333pt;}
.y10b{bottom:634.177333pt;}
.y14e{bottom:634.728000pt;}
.y28e{bottom:645.221333pt;}
.y256{bottom:646.577333pt;}
.y95{bottom:647.214667pt;}
.y60{bottom:647.613333pt;}
.y225{bottom:648.012000pt;}
.y171{bottom:649.060000pt;}
.yb8{bottom:649.425333pt;}
.y2d{bottom:650.824000pt;}
.y14d{bottom:651.465333pt;}
.y203{bottom:652.689333pt;}
.y28d{bottom:660.564000pt;}
.y10a{bottom:661.224000pt;}
.y255{bottom:661.920000pt;}
.y94{bottom:663.952000pt;}
.y5f{bottom:664.350667pt;}
.y224{bottom:664.749333pt;}
.y170{bottom:665.797333pt;}
.y2c{bottom:668.118667pt;}
.y14c{bottom:668.202667pt;}
.y202{bottom:669.426667pt;}
.y28c{bottom:675.906667pt;}
.yb7{bottom:676.472000pt;}
.y254{bottom:677.262667pt;}
.y93{bottom:680.689333pt;}
.y8e{bottom:681.088000pt;}
.y12a{bottom:681.485333pt;}
.y1ef{bottom:682.206667pt;}
.y14b{bottom:684.940000pt;}
.y5e{bottom:685.072000pt;}
.y2b{bottom:685.414667pt;}
.y201{bottom:686.164000pt;}
.y16f{bottom:688.313333pt;}
.y28b{bottom:691.249333pt;}
.y253{bottom:692.604000pt;}
.yb6{bottom:693.568000pt;}
.y92{bottom:697.426667pt;}
.y8d{bottom:697.825333pt;}
.y129{bottom:698.222667pt;}
.y1ee{bottom:698.944000pt;}
.y2a{bottom:702.709333pt;}
.y200{bottom:702.901333pt;}
.y16e{bottom:705.050667pt;}
.y28a{bottom:706.592000pt;}
.y252{bottom:707.946667pt;}
.y14a{bottom:708.318667pt;}
.yb5{bottom:710.664000pt;}
.y91{bottom:714.164000pt;}
.y8c{bottom:714.562667pt;}
.y5d{bottom:714.960000pt;}
.y1ed{bottom:715.681333pt;}
.y1ff{bottom:719.638667pt;}
.y29{bottom:720.004000pt;}
.y16d{bottom:721.788000pt;}
.y289{bottom:721.934667pt;}
.y251{bottom:723.289333pt;}
.y149{bottom:725.056000pt;}
.y8b{bottom:731.300000pt;}
.y5c{bottom:731.697333pt;}
.y1ec{bottom:732.418667pt;}
.y90{bottom:734.885333pt;}
.y1fe{bottom:736.376000pt;}
.y288{bottom:737.277333pt;}
.y28{bottom:737.300000pt;}
.y16c{bottom:738.525333pt;}
.y250{bottom:738.632000pt;}
.y148{bottom:741.793333pt;}
.y8a{bottom:748.036000pt;}
.y5b{bottom:748.434667pt;}
.y1eb{bottom:749.154667pt;}
.y287{bottom:752.620000pt;}
.y1fd{bottom:753.113333pt;}
.y24f{bottom:753.974667pt;}
.y27{bottom:754.594667pt;}
.y146{bottom:758.530667pt;}
.y147{bottom:763.352000pt;}
.y89{bottom:764.773333pt;}
.y5a{bottom:765.172000pt;}
.y286{bottom:767.961333pt;}
.y24e{bottom:769.317333pt;}
.y1fc{bottom:769.850667pt;}
.y16b{bottom:772.474667pt;}
.y145{bottom:775.268000pt;}
.y1ea{bottom:776.860000pt;}
.y88{bottom:781.510667pt;}
.y59{bottom:781.909333pt;}
.y285{bottom:783.304000pt;}
.y24d{bottom:784.660000pt;}
.y1fb{bottom:786.588000pt;}
.y26{bottom:787.069333pt;}
.y16a{bottom:788.900000pt;}
.y144{bottom:792.005333pt;}
.y1e9{bottom:793.285333pt;}
.y87{bottom:798.248000pt;}
.y58{bottom:798.646667pt;}
.y1e8{bottom:800.590667pt;}
.y25{bottom:801.416000pt;}
.y169{bottom:803.512000pt;}
.y24c{bottom:803.986667pt;}
.y143{bottom:808.742667pt;}
.y166{bottom:811.732000pt;}
.y284{bottom:813.989333pt;}
.y86{bottom:814.985333pt;}
.y57{bottom:815.384000pt;}
.y1fa{bottom:816.424000pt;}
.y168{bottom:818.124000pt;}
.y24{bottom:819.618667pt;}
.y1e7{bottom:822.509333pt;}
.y142{bottom:825.480000pt;}
.y283{bottom:829.332000pt;}
.y23{bottom:830.108000pt;}
.y1e4{bottom:830.726667pt;}
.y85{bottom:831.722667pt;}
.y56{bottom:832.121333pt;}
.y167{bottom:832.736000pt;}
.y24b{bottom:833.874667pt;}
.y1e6{bottom:837.121333pt;}
.y141{bottom:842.217333pt;}
.y282{bottom:844.674667pt;}
.y22{bottom:848.312000pt;}
.y84{bottom:848.460000pt;}
.y55{bottom:848.858667pt;}
.y24a{bottom:849.496000pt;}
.y1e5{bottom:851.733333pt;}
.y8f{bottom:852.445333pt;}
.y165{bottom:854.586667pt;}
.y140{bottom:858.954667pt;}
.y281{bottom:860.017333pt;}
.y1d3{bottom:861.610667pt;}
.y248{bottom:865.117333pt;}
.y249{bottom:865.118667pt;}
.y83{bottom:865.197333pt;}
.y54{bottom:865.596000pt;}
.y164{bottom:869.197333pt;}
.y1e3{bottom:873.582667pt;}
.y280{bottom:875.360000pt;}
.y13f{bottom:875.692000pt;}
.y1d2{bottom:878.348000pt;}
.ydb{bottom:881.934667pt;}
.y53{bottom:882.333333pt;}
.y82{bottom:885.920000pt;}
.y21{bottom:886.200000pt;}
.y1e2{bottom:888.194667pt;}
.y247{bottom:888.709333pt;}
.y27f{bottom:890.702667pt;}
.y13e{bottom:892.429333pt;}
.y1d1{bottom:895.085333pt;}
.y163{bottom:897.304000pt;}
.yda{bottom:898.672000pt;}
.y52{bottom:899.070667pt;}
.y27e{bottom:906.044000pt;}
.y1d0{bottom:911.822667pt;}
.y246{bottom:912.301333pt;}
.yd9{bottom:915.409333pt;}
.y51{bottom:915.808000pt;}
.y1e1{bottom:916.301333pt;}
.y27d{bottom:921.386667pt;}
.y20{bottom:921.684000pt;}
.y162{bottom:928.560000pt;}
.y50{bottom:932.545333pt;}
.y245{bottom:935.893333pt;}
.yd8{bottom:936.132000pt;}
.y27c{bottom:936.729333pt;}
.y161{bottom:945.297333pt;}
.y1f{bottom:946.790667pt;}
.y4f{bottom:949.282667pt;}
.y244{bottom:951.514667pt;}
.y27b{bottom:952.072000pt;}
.y160{bottom:962.034667pt;}
.y4e{bottom:966.020000pt;}
.y243{bottom:967.136000pt;}
.y27a{bottom:967.414667pt;}
.y1e{bottom:971.896000pt;}
.y4d{bottom:982.757333pt;}
.y1c{bottom:1010.550667pt;}
.y4c{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h17{height:23.521527pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.h13{height:30.949519pt;}
.h12{height:31.157778pt;}
.he{height:34.430976pt;}
.hf{height:34.813542pt;}
.h14{height:35.052646pt;}
.h10{height:38.256384pt;}
.h11{height:38.681455pt;}
.h9{height:38.947124pt;}
.h19{height:39.359687pt;}
.h15{height:43.660390pt;}
.h1b{height:44.390625pt;}
.h7{height:45.271688pt;}
.hb{height:48.365611pt;}
.h16{height:48.511220pt;}
.h1a{height:49.421563pt;}
.h1d{height:64.273980pt;}
.h1c{height:64.279313pt;}
.h8{height:68.335891pt;}
.ha{height:68.861952pt;}
.h18{height:217.225333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:181.931712pt;}
.w4{width:221.781333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x54{left:-184.292000pt;}
.x58{left:-14.292192pt;}
.x56{left:-10.452000pt;}
.x0{left:0.000000pt;}
.x57{left:17.868000pt;}
.x2{left:26.021437pt;}
.x59{left:32.347568pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:50.346317pt;}
.x79{left:76.309333pt;}
.x7d{left:162.782667pt;}
.x7e{left:169.745333pt;}
.x44{left:220.012000pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x55{left:224.427808pt;}
.x3d{left:229.828000pt;}
.x6{left:239.392000pt;}
.x9{left:250.204000pt;}
.x47{left:252.608000pt;}
.xc{left:260.398667pt;}
.x50{left:263.100000pt;}
.x14{left:264.522667pt;}
.xd{left:267.041333pt;}
.x15{left:271.165333pt;}
.x3e{left:272.757333pt;}
.x8{left:274.812000pt;}
.x61{left:278.704000pt;}
.x48{left:280.648000pt;}
.x2d{left:282.530667pt;}
.x2e{left:286.536000pt;}
.x36{left:288.240000pt;}
.x65{left:289.586667pt;}
.x66{left:292.841333pt;}
.x35{left:295.140000pt;}
.x31{left:300.044000pt;}
.x67{left:306.125333pt;}
.x32{left:313.328000pt;}
.x33{left:316.669333pt;}
.x34{left:329.952000pt;}
.x78{left:335.193333pt;}
.x1d{left:337.237333pt;}
.x3c{left:342.826667pt;}
.x76{left:347.285333pt;}
.x1e{left:350.521333pt;}
.x49{left:356.074667pt;}
.x4a{left:359.362667pt;}
.x3b{left:364.572000pt;}
.x39{left:367.096000pt;}
.x41{left:372.358667pt;}
.x2f{left:376.938667pt;}
.x3a{left:380.378667pt;}
.x68{left:383.897333pt;}
.x77{left:385.504000pt;}
.x29{left:388.852000pt;}
.x30{left:390.222667pt;}
.x69{left:397.180000pt;}
.x6a{left:400.454667pt;}
.x2a{left:402.134667pt;}
.x52{left:403.342667pt;}
.x53{left:405.614667pt;}
.x51{left:406.654667pt;}
.x6b{left:413.738667pt;}
.x27{left:424.270667pt;}
.x4d{left:428.814667pt;}
.x37{left:434.633333pt;}
.x4e{left:435.818667pt;}
.x28{left:437.554667pt;}
.x38{left:441.276000pt;}
.x42{left:446.392000pt;}
.x23{left:450.374667pt;}
.x43{left:459.674667pt;}
.x24{left:463.658667pt;}
.x25{left:466.958667pt;}
.x26{left:480.242667pt;}
.x5c{left:489.158667pt;}
.x5d{left:509.912000pt;}
.x12{left:512.732000pt;}
.x13{left:519.373333pt;}
.x6c{left:521.824000pt;}
.x5e{left:527.070667pt;}
.x6d{left:535.106667pt;}
.x6e{left:537.516000pt;}
.x16{left:540.317333pt;}
.x1b{left:541.597333pt;}
.x6f{left:550.800000pt;}
.x17{left:553.601333pt;}
.x1c{left:554.880000pt;}
.x83{left:557.460000pt;}
.x84{left:564.712000pt;}
.x62{left:575.621333pt;}
.x4f{left:586.854667pt;}
.x2b{left:594.533333pt;}
.x5a{left:598.898667pt;}
.x2c{left:608.896000pt;}
.x3f{left:610.786667pt;}
.x40{left:617.764000pt;}
.x7f{left:618.918667pt;}
.x5b{left:620.692000pt;}
.x1f{left:627.205333pt;}
.x18{left:637.109333pt;}
.x20{left:640.489333pt;}
.x80{left:642.829333pt;}
.x21{left:646.998667pt;}
.x74{left:649.477333pt;}
.x19{left:650.393333pt;}
.x45{left:652.582667pt;}
.x7a{left:656.758667pt;}
.x63{left:658.406667pt;}
.x22{left:660.281333pt;}
.x75{left:662.761333pt;}
.x4b{left:668.672000pt;}
.x46{left:673.353333pt;}
.x64{left:677.086667pt;}
.x7b{left:680.669333pt;}
.xe{left:685.738667pt;}
.x4c{left:689.437333pt;}
.xa{left:690.666667pt;}
.xf{left:692.380000pt;}
.x70{left:694.170667pt;}
.x5f{left:695.462667pt;}
.xb{left:697.309333pt;}
.x71{left:700.813333pt;}
.x81{left:701.889333pt;}
.x72{left:704.200000pt;}
.x73{left:717.484000pt;}
.x7c{left:720.284000pt;}
.x82{left:725.798667pt;}
.x1a{left:726.889333pt;}
.x10{left:733.701333pt;}
.x11{left:740.342667pt;}
.x60{left:744.770667pt;}
}




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