
    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_2985e5c6352fec28ed599609.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1a28e530337fdb31c8afce9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175000;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_944fe648918f8b7943437305.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_f8623238c53ba3ad413f560d.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_ca76bbc0e70349bd56e3854f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;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_2182b972ff424d966878a038.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_b071390f7d65009670ba30e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200195;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_e831ed2866a6d61d6c495cff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_2039a63d918d93316ede629f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.912109;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_2182b972ff424d966878a038.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_b071390f7d65009670ba30e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200195;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_e831ed2866a6d61d6c495cff.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.211426;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_2039a63d918d93316ede629f.woff2')format("woff");}.fff{font-family:fff;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2182b972ff424d966878a038.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_131275db8389e06c3c0a17af.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_30758086934aaee27c856f7f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e2668e8ef2f19a9b27ae62b7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912109;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;}
.m11{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);}
.m25{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);}
.m29{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);}
.m28{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);}
.m17{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);}
.m1a{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);}
.m9{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);}
.m3{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);}
.me{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);}
.ma{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);}
.m1e{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);}
.m21{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);}
.m15{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);}
.m2{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);}
.m20{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1d{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);}
.m4{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);}
.m24{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);}
.m18{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);}
.m8{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);}
.md{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);}
.m23{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);}
.m22{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m1c{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);}
.mb{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);}
.m19{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);}
.m14{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);}
.m1f{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);}
.m27{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);}
.m16{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);}
.m1b{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);}
.m6{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);}
.mc{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);}
.m10{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);}
.mf{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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:11.994000px;}
.vc{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v8{vertical-align:27.258000px;}
.v4{vertical-align:28.392000px;}
.v9{vertical-align:29.526000px;}
.v6{vertical-align:32.880000px;}
.va{vertical-align:34.836000px;}
.v7{vertical-align:42.120000px;}
.v5{vertical-align:48.414000px;}
.vb{vertical-align:56.790000px;}
.ls23{letter-spacing:-0.312624px;}
.ls17{letter-spacing:-0.228456px;}
.ls27{letter-spacing:-0.180360px;}
.ls29{letter-spacing:-0.162324px;}
.ls2c{letter-spacing:-0.096192px;}
.ls2a{letter-spacing:-0.084168px;}
.ls21{letter-spacing:-0.081000px;}
.ls2f{letter-spacing:-0.078156px;}
.ls31{letter-spacing:-0.072144px;}
.ls2e{letter-spacing:-0.066132px;}
.ls2d{letter-spacing:-0.060120px;}
.ls28{letter-spacing:-0.048096px;}
.ls16{letter-spacing:-0.042084px;}
.ls15{letter-spacing:-0.036072px;}
.ls25{letter-spacing:-0.030060px;}
.ls26{letter-spacing:-0.024048px;}
.ls14{letter-spacing:-0.014364px;}
.ls22{letter-spacing:-0.012024px;}
.ls30{letter-spacing:-0.006012px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000800px;}
.ls3a{letter-spacing:0.001155px;}
.ls38{letter-spacing:0.002544px;}
.ls7{letter-spacing:0.002782px;}
.ls35{letter-spacing:0.004749px;}
.ls13{letter-spacing:0.005400px;}
.ls11{letter-spacing:0.012024px;}
.ls12{letter-spacing:0.016200px;}
.lsb{letter-spacing:0.019152px;}
.ls1b{letter-spacing:0.030060px;}
.ls1d{letter-spacing:0.042084px;}
.ls10{letter-spacing:0.048096px;}
.ls19{letter-spacing:0.048600px;}
.ls1a{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.059400px;}
.lse{letter-spacing:0.060120px;}
.ls24{letter-spacing:0.066132px;}
.lsf{letter-spacing:0.132264px;}
.ls2b{letter-spacing:0.162324px;}
.lsd{letter-spacing:0.167580px;}
.ls1c{letter-spacing:0.180360px;}
.lsc{letter-spacing:0.181944px;}
.ls34{letter-spacing:2.989200px;}
.ls6{letter-spacing:11.954850px;}
.ls8{letter-spacing:12.791978px;}
.ls36{letter-spacing:13.368291px;}
.ls1e{letter-spacing:13.503398px;}
.ls3b{letter-spacing:13.672321px;}
.ls5{letter-spacing:14.764573px;}
.ls20{letter-spacing:14.884124px;}
.ls39{letter-spacing:14.890779px;}
.ls32{letter-spacing:15.123227px;}
.ls9{letter-spacing:15.661207px;}
.ls1f{letter-spacing:16.318739px;}
.lsa{letter-spacing:22.116972px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls33{letter-spacing:227.803200px;}
.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;}
}
.wsc0{word-spacing:-54.000000px;}
.wsa2{word-spacing:-13.449600px;}
.wsb1{word-spacing:-12.151944px;}
.wsb2{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.ws75{word-spacing:-3.347434px;}
.ws6a{word-spacing:-3.287658px;}
.wsd7{word-spacing:-2.809453px;}
.wsd1{word-spacing:-2.510575px;}
.wse7{word-spacing:-2.331248px;}
.ws9e{word-spacing:-2.211697px;}
.wse5{word-spacing:-2.151922px;}
.wsae{word-spacing:-1.793268px;}
.ws60{word-spacing:-1.733492px;}
.ws65{word-spacing:-1.673717px;}
.ws3e{word-spacing:-1.554166px;}
.ws28{word-spacing:-1.494390px;}
.ws70{word-spacing:-1.434614px;}
.ws26{word-spacing:-1.374839px;}
.ws6b{word-spacing:-1.195512px;}
.wsfc{word-spacing:-1.183565px;}
.ws77{word-spacing:-1.135736px;}
.ws102{word-spacing:-0.968371px;}
.ws5d{word-spacing:-0.956410px;}
.wsba{word-spacing:-0.955908px;}
.wsb9{word-spacing:-0.949896px;}
.wsd0{word-spacing:-0.896634px;}
.ws6c{word-spacing:-0.836858px;}
.ws34{word-spacing:-0.777083px;}
.ws5e{word-spacing:-0.717307px;}
.ws56{word-spacing:-0.657532px;}
.ws25{word-spacing:-0.597756px;}
.ws69{word-spacing:-0.537980px;}
.ws6e{word-spacing:-0.418429px;}
.ws9b{word-spacing:-0.358654px;}
.ws12{word-spacing:-0.322790px;}
.ws66{word-spacing:-0.298878px;}
.wsb3{word-spacing:-0.272916px;}
.ws1e{word-spacing:-0.268992px;}
.wsc9{word-spacing:-0.258516px;}
.ws41{word-spacing:-0.239102px;}
.ws23{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.ws100{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.107597px;}
.wsb4{word-spacing:-0.076608px;}
.ws2a{word-spacing:-0.059776px;}
.ws1b{word-spacing:-0.053798px;}
.ws109{word-spacing:-0.010771px;}
.ws111{word-spacing:-0.009139px;}
.ws114{word-spacing:-0.008621px;}
.ws107{word-spacing:-0.008554px;}
.wsfd{word-spacing:-0.008237px;}
.ws110{word-spacing:-0.007526px;}
.ws115{word-spacing:-0.006758px;}
.wsf1{word-spacing:-0.005971px;}
.wsf6{word-spacing:-0.004771px;}
.wsf8{word-spacing:-0.003898px;}
.ws104{word-spacing:-0.003562px;}
.ws10e{word-spacing:-0.003302px;}
.wse{word-spacing:-0.002299px;}
.wsff{word-spacing:-0.001555px;}
.ws2c{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.wse4{word-spacing:0.005758px;}
.wsec{word-spacing:0.006596px;}
.ws5{word-spacing:0.015096px;}
.wscb{word-spacing:0.024048px;}
.ws105{word-spacing:0.030739px;}
.wsca{word-spacing:0.042084px;}
.wscf{word-spacing:0.048096px;}
.ws13{word-spacing:0.053798px;}
.ws33{word-spacing:0.059776px;}
.wsbb{word-spacing:0.078156px;}
.wscd{word-spacing:0.090180px;}
.ws1d{word-spacing:0.107597px;}
.wsc4{word-spacing:0.118800px;}
.ws4c{word-spacing:0.119551px;}
.wscc{word-spacing:0.120240px;}
.ws3{word-spacing:0.125528px;}
.wsc5{word-spacing:0.129600px;}
.wsce{word-spacing:0.150300px;}
.wse8{word-spacing:0.161395px;}
.wsbe{word-spacing:0.162000px;}
.wsbf{word-spacing:0.172800px;}
.wsbd{word-spacing:0.178200px;}
.ws40{word-spacing:0.179327px;}
.ws17{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.wsc8{word-spacing:0.259200px;}
.wsa0{word-spacing:0.268992px;}
.ws3d{word-spacing:0.298878px;}
.wsbc{word-spacing:0.318636px;}
.ws21{word-spacing:0.322790px;}
.ws49{word-spacing:0.358654px;}
.ws67{word-spacing:0.418429px;}
.ws113{word-spacing:0.430387px;}
.ws61{word-spacing:0.478205px;}
.ws71{word-spacing:0.537980px;}
.ws1a{word-spacing:0.537984px;}
.ws4b{word-spacing:0.657532px;}
.ws58{word-spacing:0.717307px;}
.wsfe{word-spacing:0.753178px;}
.ws3a{word-spacing:0.777083px;}
.ws10f{word-spacing:0.860774px;}
.ws6d{word-spacing:0.956410px;}
.wsd2{word-spacing:1.016185px;}
.ws51{word-spacing:1.075961px;}
.wsef{word-spacing:1.129766px;}
.ws29{word-spacing:1.135736px;}
.wsf5{word-spacing:1.183565px;}
.ws5f{word-spacing:1.195512px;}
.ws2f{word-spacing:1.255288px;}
.ws2e{word-spacing:1.315063px;}
.wsea{word-spacing:1.344960px;}
.ws57{word-spacing:1.374839px;}
.wsd{word-spacing:1.380812px;}
.ws10c{word-spacing:1.398758px;}
.wsc1{word-spacing:1.434614px;}
.ws10a{word-spacing:1.452557px;}
.ws32{word-spacing:1.494390px;}
.ws31{word-spacing:1.554166px;}
.ws64{word-spacing:1.613941px;}
.ws14{word-spacing:1.667750px;}
.ws30{word-spacing:1.673717px;}
.ws6f{word-spacing:1.733492px;}
.ws20{word-spacing:1.829146px;}
.ws10b{word-spacing:1.882944px;}
.wsdc{word-spacing:1.912819px;}
.wsf9{word-spacing:1.936742px;}
.wse6{word-spacing:1.972595px;}
.ws1c{word-spacing:1.990541px;}
.ws4d{word-spacing:2.151922px;}
.ws62{word-spacing:2.211697px;}
.ws63{word-spacing:2.271473px;}
.wsc6{word-spacing:2.284200px;}
.ws9d{word-spacing:2.331248px;}
.wsc7{word-spacing:2.332800px;}
.ws18{word-spacing:2.367130px;}
.wsd4{word-spacing:2.391024px;}
.ws9f{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws4{word-spacing:2.539969px;}
.ws2{word-spacing:2.552411px;}
.wsd3{word-spacing:2.570351px;}
.wsc2{word-spacing:2.630126px;}
.ws3c{word-spacing:2.689902px;}
.ws59{word-spacing:2.749678px;}
.wsf4{word-spacing:2.797517px;}
.ws38{word-spacing:2.809453px;}
.wsdb{word-spacing:2.869229px;}
.ws10{word-spacing:2.869236px;}
.ws11{word-spacing:2.917772px;}
.ws103{word-spacing:2.958912px;}
.ws22{word-spacing:2.986339px;}
.ws19{word-spacing:3.012710px;}
.ws47{word-spacing:3.048556px;}
.ws101{word-spacing:3.066509px;}
.wsd5{word-spacing:3.108331px;}
.wsf2{word-spacing:3.120307px;}
.ws4e{word-spacing:3.168107px;}
.wsf7{word-spacing:3.219408px;}
.wsf0{word-spacing:3.219734px;}
.wse9{word-spacing:3.224822px;}
.ws4f{word-spacing:3.227882px;}
.wseb{word-spacing:3.227904px;}
.ws106{word-spacing:3.335501px;}
.wsed{word-spacing:3.389299px;}
.ws117{word-spacing:3.443098px;}
.ws55{word-spacing:3.466985px;}
.wsee{word-spacing:3.496896px;}
.ws46{word-spacing:3.526760px;}
.ws24{word-spacing:3.586536px;}
.ws48{word-spacing:3.646312px;}
.ws76{word-spacing:3.706087px;}
.ws72{word-spacing:3.765863px;}
.ws52{word-spacing:3.825638px;}
.ws112{word-spacing:3.873485px;}
.ws5b{word-spacing:3.945190px;}
.wsb6{word-spacing:4.088160px;}
.ws54{word-spacing:4.184292px;}
.ws36{word-spacing:4.244068px;}
.ws35{word-spacing:4.303843px;}
.wsfb{word-spacing:4.303872px;}
.ws3b{word-spacing:4.423394px;}
.ws116{word-spacing:4.734259px;}
.ws53{word-spacing:4.901599px;}
.ws68{word-spacing:4.961375px;}
.wsd6{word-spacing:5.021150px;}
.ws15{word-spacing:5.057050px;}
.ws5c{word-spacing:5.140702px;}
.wsda{word-spacing:5.320028px;}
.wsb{word-spacing:5.481407px;}
.ws4a{word-spacing:5.559131px;}
.ws16{word-spacing:5.595034px;}
.ws44{word-spacing:5.618906px;}
.wsb0{word-spacing:5.738458px;}
.wsb7{word-spacing:5.789556px;}
.ws78{word-spacing:5.798233px;}
.wsb8{word-spacing:5.801580px;}
.ws74{word-spacing:5.858009px;}
.ws43{word-spacing:5.917784px;}
.wsd8{word-spacing:6.395989px;}
.ws108{word-spacing:6.402010px;}
.ws37{word-spacing:6.575316px;}
.ws39{word-spacing:6.694867px;}
.wsaf{word-spacing:6.754643px;}
.ws10d{word-spacing:6.886195px;}
.ws42{word-spacing:7.113296px;}
.ws73{word-spacing:7.352399px;}
.wsfa{word-spacing:7.370381px;}
.wsc3{word-spacing:7.471950px;}
.ws45{word-spacing:7.890379px;}
.ws9a{word-spacing:8.428360px;}
.wsd9{word-spacing:8.488135px;}
.wsf3{word-spacing:9.683712px;}
.ws9{word-spacing:9.833058px;}
.ws9c{word-spacing:9.898864px;}
.wsb5{word-spacing:11.620476px;}
.wsa{word-spacing:11.841512px;}
.ws5a{word-spacing:12.433325px;}
.ws50{word-spacing:13.628837px;}
.ws6{word-spacing:15.523679px;}
.wsc{word-spacing:16.067635px;}
.ws8{word-spacing:22.339429px;}
.ws99{word-spacing:28.261975px;}
.ws98{word-spacing:40.348800px;}
.wse2{word-spacing:108.453457px;}
.wsdd{word-spacing:120.865584px;}
.wsdf{word-spacing:139.012917px;}
.wse0{word-spacing:174.405497px;}
.wse1{word-spacing:175.718170px;}
.wsde{word-spacing:202.347263px;}
.wse3{word-spacing:229.299777px;}
.wsa9{word-spacing:296.590579px;}
.wsa6{word-spacing:302.370058px;}
.wsac{word-spacing:330.806362px;}
.wsaa{word-spacing:373.870205px;}
.wsa8{word-spacing:382.130035px;}
.wsad{word-spacing:390.737779px;}
.wsa7{word-spacing:404.241178px;}
.wsab{word-spacing:417.636979px;}
.wsa4{word-spacing:417.690778px;}
.wsa3{word-spacing:431.086579px;}
.wsa5{word-spacing:431.140378px;}
.ws8c{word-spacing:531.958579px;}
.ws8a{word-spacing:556.598246px;}
.ws7c{word-spacing:560.794522px;}
.ws8d{word-spacing:566.012966px;}
.ws91{word-spacing:579.892954px;}
.ws86{word-spacing:582.421478px;}
.ws8b{word-spacing:583.766438px;}
.ws79{word-spacing:585.111398px;}
.ws7a{word-spacing:587.639923px;}
.ws89{word-spacing:595.871078px;}
.ws96{word-spacing:608.567501px;}
.ws83{word-spacing:612.118195px;}
.ws80{word-spacing:614.861914px;}
.ws8e{word-spacing:617.928422px;}
.ws7d{word-spacing:620.403149px;}
.ws90{word-spacing:620.779738px;}
.ws93{word-spacing:621.640512px;}
.ws7b{word-spacing:622.070899px;}
.ws88{word-spacing:622.124698px;}
.ws94{word-spacing:626.482368px;}
.ws82{word-spacing:626.966554px;}
.ws95{word-spacing:629.387482px;}
.ws84{word-spacing:631.808410px;}
.ws97{word-spacing:640.093363px;}
.ws8f{word-spacing:648.808704px;}
.ws7f{word-spacing:651.660019px;}
.ws87{word-spacing:651.767616px;}
.ws85{word-spacing:656.448077px;}
.ws92{word-spacing:658.438618px;}
.ws7e{word-spacing:668.767910px;}
.ws81{word-spacing:696.635482px;}
.wsa1{word-spacing:825.428563px;}
._9b{margin-left:-24.801062px;}
._6{margin-left:-11.943245px;}
._f{margin-left:-6.832397px;}
._9{margin-left:-5.816201px;}
._1{margin-left:-3.891380px;}
._4b{margin-left:-2.510575px;}
._5{margin-left:-1.464498px;}
._6d{width:1.129968px;}
._8{width:2.996304px;}
._9a{width:4.988726px;}
._0{width:10.335172px;}
._2{width:12.971268px;}
._e{width:14.417971px;}
._a{width:16.312856px;}
._15{width:17.394700px;}
._10{width:18.590212px;}
._d{width:20.497190px;}
._8c{width:21.537194px;}
._b{width:22.565412px;}
._13{width:23.940124px;}
._3{width:25.314894px;}
._99{width:26.331570px;}
._14{width:27.413066px;}
._18{width:29.708473px;}
._4{width:31.256572px;}
._c{width:32.302922px;}
._7{width:33.355008px;}
._17{width:35.028256px;}
._19{width:36.989054px;}
._8d{width:38.124919px;}
._16{width:40.175170px;}
._8b{width:42.321125px;}
._4a{width:46.385982px;}
._48{width:53.798400px;}
._49{width:71.491797px;}
._50{width:93.394022px;}
._51{width:100.925798px;}
._52{width:109.856333px;}
._94{width:129.654144px;}
._96{width:142.673357px;}
._4f{width:155.453944px;}
._4d{width:157.372365px;}
._95{width:161.126208px;}
._8e{width:179.661994px;}
._98{width:186.626650px;}
._73{width:190.731222px;}
._71{width:195.890832px;}
._92{width:200.705071px;}
._72{width:205.485336px;}
._97{width:207.123840px;}
._1b{width:212.180890px;}
._4e{width:217.533896px;}
._93{width:252.080294px;}
._69{width:261.077782px;}
._6c{width:272.321647px;}
._4c{width:279.559228px;}
._8f{width:283.097952px;}
._65{width:296.423330px;}
._5c{width:299.436041px;}
._56{width:319.831488px;}
._64{width:325.265126px;}
._66{width:333.711475px;}
._53{width:336.777984px;}
._62{width:340.920461px;}
._54{width:347.483866px;}
._63{width:350.173786px;}
._5b{width:358.189747px;}
._67{width:359.480909px;}
._5f{width:362.547418px;}
._6a{width:363.569587px;}
._55{width:364.914547px;}
._57{width:366.474701px;}
._59{width:372.876710px;}
._60{width:375.781824px;}
._5e{width:378.471744px;}
._68{width:384.012979px;}
._1a{width:390.845376px;}
._58{width:394.718861px;}
._6b{width:418.623246px;}
._5d{width:421.080077px;}
._8a{width:422.150418px;}
._81{width:426.366738px;}
._5a{width:431.086579px;}
._89{width:437.598576px;}
._61{width:444.536179px;}
._79{width:447.901416px;}
._88{width:454.124052px;}
._20{width:463.042829px;}
._74{width:467.731800px;}
._21{width:469.821427px;}
._86{width:472.549320px;}
._3d{width:474.017702px;}
._26{width:477.191808px;}
._3e{width:480.688704px;}
._87{width:482.550120px;}
._3f{width:485.799552px;}
._7f{width:491.165280px;}
._27{width:497.222708px;}
._44{width:500.432717px;}
._7a{width:501.578028px;}
._40{width:505.920154px;}
._7c{width:507.875328px;}
._84{width:511.357824px;}
._83{width:513.851112px;}
._45{width:520.607117px;}
._80{width:527.558634px;}
._7b{width:531.635256px;}
._85{width:533.428272px;}
._7e{width:534.759024px;}
._28{width:538.145395px;}
._37{width:543.901824px;}
._77{width:549.879624px;}
._36{width:552.132979px;}
._7d{width:556.828920px;}
._29{width:558.176296px;}
._82{width:561.705480px;}
._38{width:564.022426px;}
._78{width:565.741732px;}
._76{width:571.700016px;}
._2e{width:575.481485px;}
._1f{width:580.968922px;}
._75{width:587.790720px;}
._34{width:590.078747px;}
._91{width:591.176169px;}
._2f{width:595.602086px;}
._39{width:599.583168px;}
._1c{width:605.285798px;}
._1d{width:607.814323px;}
._31{width:615.991680px;}
._35{width:617.336640px;}
._46{width:628.688102px;}
._33{width:630.355853px;}
._25{width:635.036314px;}
._3a{width:638.234309px;}
._22{width:640.577549px;}
._1e{width:642.299098px;}
._2c{width:645.688397px;}
._42{width:647.433815px;}
._43{width:649.561882px;}
._3c{width:654.349939px;}
._32{width:655.658996px;}
._2b{width:660.590554px;}
._2d{width:665.432410px;}
._24{width:671.780621px;}
._47{width:673.663565px;}
._30{width:676.622477px;}
._3b{width:682.432704px;}
._23{width:688.942310px;}
._41{width:692.929366px;}
._11{width:724.265037px;}
._2a{width:730.259482px;}
._90{width:938.957481px;}
._70{width:1172.742318px;}
._6e{width:2089.406592px;}
._6f{width:2500.851000px;}
._12{width:2524.761000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fsa{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y192{bottom:-647.939550px;}
.y191{bottom:-626.969400px;}
.y190{bottom:-605.999550px;}
.y18f{bottom:-585.029550px;}
.y18e{bottom:-563.969400px;}
.y18d{bottom:-542.999550px;}
.y18c{bottom:-522.029550px;}
.y163{bottom:-512.556900px;}
.y18b{bottom:-501.059550px;}
.y162{bottom:-490.056900px;}
.y18a{bottom:-480.089550px;}
.y189{bottom:-459.029550px;}
.y188{bottom:-438.059550px;}
.y187{bottom:-417.089400px;}
.y186{bottom:-396.119550px;}
.y185{bottom:-375.149550px;}
.y184{bottom:-354.089400px;}
.y183{bottom:-333.119550px;}
.y182{bottom:-312.149400px;}
.y181{bottom:-291.179550px;}
.y180{bottom:-270.209550px;}
.y17f{bottom:-249.239550px;}
.y17e{bottom:-228.179550px;}
.y17d{bottom:-207.209550px;}
.y17c{bottom:-186.239550px;}
.y17b{bottom:-165.269550px;}
.y17a{bottom:-144.299550px;}
.y179{bottom:-133.769550px;}
.y178{bottom:-93.270000px;}
.y177{bottom:-75.810450px;}
.y176{bottom:-40.620000px;}
.y161{bottom:-33.217050px;}
.y16f{bottom:-30.139050px;}
.y175{bottom:-23.249550px;}
.y160{bottom:-10.717329px;}
.y16e{bottom:-7.639050px;}
.y174{bottom:-0.839550px;}
.y0{bottom:0.000000px;}
.y62{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y158{bottom:104.361000px;}
.y35{bottom:104.646000px;}
.y61{bottom:110.404500px;}
.y229{bottom:111.975000px;}
.ycd{bottom:118.699500px;}
.y98{bottom:119.148000px;}
.yb9{bottom:119.596500px;}
.y34{bottom:122.535000px;}
.y157{bottom:123.190500px;}
.y1b2{bottom:124.075500px;}
.y60{bottom:129.234000px;}
.y228{bottom:129.235500px;}
.ycc{bottom:137.529000px;}
.y97{bottom:137.977500px;}
.yb8{bottom:138.426000px;}
.y21{bottom:139.264499px;}
.ye4{bottom:139.893000px;}
.y33{bottom:140.422500px;}
.y1dd{bottom:140.577000px;}
.y156{bottom:142.020000px;}
.y1b1{bottom:142.903500px;}
.y227{bottom:146.496000px;}
.y5f{bottom:148.063500px;}
.y112{bottom:154.099500px;}
.ycb{bottom:156.358500px;}
.y96{bottom:156.807000px;}
.yb7{bottom:157.255500px;}
.y32{bottom:158.310000px;}
.y1dc{bottom:158.748000px;}
.y155{bottom:160.849500px;}
.y13f{bottom:161.344500px;}
.y1b0{bottom:161.733000px;}
.ye3{bottom:163.534500px;}
.y226{bottom:163.756500px;}
.y5e{bottom:166.893000px;}
.y111{bottom:172.929000px;}
.y95{bottom:175.636500px;}
.yb6{bottom:176.085000px;}
.y31{bottom:176.199000px;}
.yca{bottom:179.671500px;}
.y154{bottom:179.679000px;}
.y1db{bottom:180.147000px;}
.y1af{bottom:180.562500px;}
.y225{bottom:181.015500px;}
.y170{bottom:183.349500px;}
.y13e{bottom:184.984500px;}
.y5d{bottom:185.722500px;}
.ye2{bottom:187.174500px;}
.y110{bottom:191.758500px;}
.y30{bottom:194.086500px;}
.y94{bottom:194.466000px;}
.y1d7{bottom:194.856000px;}
.yb5{bottom:194.914500px;}
.y18{bottom:196.933500px;}
.y224{bottom:198.276000px;}
.y153{bottom:198.508500px;}
.y1ae{bottom:199.392000px;}
.y1da{bottom:201.546000px;}
.y5c{bottom:204.552000px;}
.y165{bottom:205.779150px;}
.y13d{bottom:208.626000px;}
.y1ef{bottom:209.034000px;}
.y1d6{bottom:209.053500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y10f{bottom:210.588000px;}
.ye1{bottom:210.816000px;}
.y2f{bottom:211.974000px;}
.y93{bottom:213.295500px;}
.yb4{bottom:213.744000px;}
.y223{bottom:215.536500px;}
.y152{bottom:217.338000px;}
.y1ad{bottom:218.221500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1d9{bottom:222.945000px;}
.y5b{bottom:223.381500px;}
.y1ee{bottom:226.608000px;}
.y10e{bottom:229.417500px;}
.y2e{bottom:229.863000px;}
.y92{bottom:232.125000px;}
.y13c{bottom:232.266000px;}
.yb3{bottom:232.573500px;}
.y222{bottom:232.797000px;}
.ye0{bottom:234.456000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y151{bottom:236.167500px;}
.y1ac{bottom:237.051000px;}
.y5a{bottom:242.211000px;}
.y1ed{bottom:244.182000px;}
.y1d8{bottom:244.344000px;}
.y10d{bottom:248.247000px;}
.y221{bottom:250.057500px;}
.y91{bottom:250.954500px;}
.yb2{bottom:251.403000px;}
.y150{bottom:254.997000px;}
.y13b{bottom:255.907500px;}
.ydf{bottom:258.097500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1ab{bottom:260.364000px;}
.y59{bottom:261.040500px;}
.y1ec{bottom:261.756000px;}
.y1d5{bottom:265.743000px;}
.y10c{bottom:267.076500px;}
.y220{bottom:267.318000px;}
.y90{bottom:269.784000px;}
.yb1{bottom:270.232500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y14f{bottom:273.826500px;}
.y1eb{bottom:279.330000px;}
.y13a{bottom:279.547500px;}
.yde{bottom:281.737500px;}
.y58{bottom:284.353500px;}
.y21f{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y10b{bottom:285.906000px;}
.y1d4{bottom:287.142000px;}
.y8f{bottom:288.613500px;}
.yb0{bottom:289.062000px;}
.y14e{bottom:292.656000px;}
.y1aa{bottom:293.988000px;}
.y139{bottom:295.986000px;}
.y1ea{bottom:296.904000px;}
.y2d{bottom:297.166500px;}
.y254{bottom:301.764000px;}
.y21e{bottom:301.839000px;}
.y10a{bottom:304.735500px;}
.ydd{bottom:305.379000px;}
.y8e{bottom:307.443000px;}
.yaf{bottom:307.891500px;}
.y1d3{bottom:308.541000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y1a9{bottom:312.817500px;}
.y1e9{bottom:314.478000px;}
.y2c{bottom:315.054000px;}
.y253{bottom:319.024500px;}
.y21d{bottom:319.099500px;}
.y138{bottom:319.627500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y109{bottom:323.565000px;}
.y8d{bottom:326.272500px;}
.yae{bottom:326.719500px;}
.ydc{bottom:329.019000px;}
.y1d2{bottom:329.941500px;}
.y1a8{bottom:331.647000px;}
.y2b{bottom:332.943000px;}
.y252{bottom:336.285000px;}
.y21c{bottom:336.358500px;}
.y14d{bottom:338.118000px;}
.y108{bottom:342.394500px;}
.y1e8{bottom:342.859500px;}
.y137{bottom:343.267500px;}
.y8c{bottom:345.102000px;}
.yad{bottom:345.549000px;}
.yf{bottom:348.133500px;}
.y1a7{bottom:350.476500px;}
.y2a{bottom:350.830500px;}
.y1d1{bottom:351.340500px;}
.ydb{bottom:352.660500px;}
.y21b{bottom:353.619000px;}
.y57{bottom:359.503500px;}
.y107{bottom:361.224000px;}
.y14c{bottom:361.758000px;}
.y8b{bottom:363.931500px;}
.yac{bottom:364.378500px;}
.y1ca{bottom:366.361500px;}
.y136{bottom:366.909000px;}
.y1a6{bottom:369.306000px;}
.y21a{bottom:370.879500px;}
.y1d0{bottom:372.739500px;}
.y251{bottom:375.363000px;}
.yda{bottom:376.300500px;}
.y56{bottom:378.960000px;}
.y29{bottom:379.179000px;}
.y1e7{bottom:379.621500px;}
.y1c9{bottom:380.557500px;}
.y8a{bottom:382.761000px;}
.yab{bottom:383.208000px;}
.y14b{bottom:385.399500px;}
.ye{bottom:386.785499px;}
.y1a5{bottom:388.135500px;}
.y219{bottom:388.140000px;}
.y135{bottom:390.549000px;}
.y250{bottom:392.623500px;}
.y1cf{bottom:394.138500px;}
.y106{bottom:398.242500px;}
.yd9{bottom:399.942000px;}
.y89{bottom:401.589000px;}
.yaa{bottom:402.037500px;}
.y218{bottom:405.400500px;}
.y28{bottom:406.033500px;}
.y1e6{bottom:406.162500px;}
.y1a4{bottom:406.965000px;}
.yd{bottom:408.044999px;}
.y14a{bottom:409.039500px;}
.y24f{bottom:409.884000px;}
.y173{bottom:411.180585px;}
.y105{bottom:412.440000px;}
.y134{bottom:414.190500px;}
.y1ce{bottom:415.537500px;}
.y55{bottom:416.350500px;}
.y88{bottom:420.418500px;}
.y172{bottom:420.810450px;}
.ya9{bottom:420.867000px;}
.y217{bottom:422.661000px;}
.yd8{bottom:423.582000px;}
.y1e5{bottom:423.736500px;}
.y27{bottom:423.921000px;}
.y133{bottom:425.727000px;}
.y1a3{bottom:425.794500px;}
.y24e{bottom:427.144500px;}
.y104{bottom:431.283000px;}
.y149{bottom:432.681000px;}
.y54{bottom:435.807000px;}
.y1cd{bottom:436.936500px;}
.y87{bottom:439.248000px;}
.ya8{bottom:439.696500px;}
.y216{bottom:439.921500px;}
.y26{bottom:441.810000px;}
.y24d{bottom:444.403500px;}
.y1a2{bottom:444.624000px;}
.yd7{bottom:447.223500px;}
.y15f{bottom:448.013301px;}
.y16d{bottom:449.200800px;}
.y1e4{bottom:450.277500px;}
.y103{bottom:454.923000px;}
.y53{bottom:455.263500px;}
.y148{bottom:456.321000px;}
.y215{bottom:457.182000px;}
.y86{bottom:458.077500px;}
.y1cc{bottom:458.335500px;}
.ya7{bottom:458.526000px;}
.y25{bottom:459.697500px;}
.y24c{bottom:461.664000px;}
.y1a1{bottom:463.453500px;}
.y15e{bottom:467.272743px;}
.y132{bottom:469.450500px;}
.yd6{bottom:470.863500px;}
.y102{bottom:471.361500px;}
.y16c{bottom:471.700521px;}
.y214{bottom:474.441000px;}
.y52{bottom:474.721500px;}
.y1e3{bottom:476.818500px;}
.y85{bottom:476.907000px;}
.ya6{bottom:477.355500px;}
.y24{bottom:477.585000px;}
.y24b{bottom:478.924500px;}
.y1cb{bottom:479.734500px;}
.y147{bottom:479.962500px;}
.y1a0{bottom:482.283000px;}
.yfd{bottom:486.291000px;}
.y15d{bottom:486.532185px;}
.y131{bottom:488.683500px;}
.y213{bottom:491.701500px;}
.y51{bottom:494.178000px;}
.yd5{bottom:494.505000px;}
.y101{bottom:495.003000px;}
.y23{bottom:495.474000px;}
.y84{bottom:495.736500px;}
.ya5{bottom:496.185000px;}
.y19f{bottom:501.112500px;}
.y1c8{bottom:501.133500px;}
.yfc{bottom:502.729500px;}
.yc{bottom:502.864502px;}
.y1e2{bottom:503.358000px;}
.y146{bottom:503.602500px;}
.y15c{bottom:505.702950px;}
.y212{bottom:508.962000px;}
.y100{bottom:511.441500px;}
.y22{bottom:513.361500px;}
.y24a{bottom:513.445500px;}
.y50{bottom:513.634500px;}
.y83{bottom:514.566000px;}
.ya4{bottom:515.014500px;}
.yd4{bottom:518.145000px;}
.y19e{bottom:519.942000px;}
.yb{bottom:520.864502px;}
.y1e1{bottom:520.932000px;}
.y1c7{bottom:522.532500px;}
.y130{bottom:525.787500px;}
.y211{bottom:526.222500px;}
.y145{bottom:527.244000px;}
.y249{bottom:530.706000px;}
.y4f{bottom:533.092500px;}
.y82{bottom:533.395500px;}
.ya3{bottom:533.844000px;}
.yff{bottom:535.081500px;}
.y1c3{bottom:537.241500px;}
.y1e0{bottom:538.506000px;}
.y19d{bottom:538.771500px;}
.ya{bottom:538.864499px;}
.yd3{bottom:541.786500px;}
.y210{bottom:543.483000px;}
.y1c6{bottom:543.931500px;}
.y12f{bottom:544.617000px;}
.y248{bottom:547.966500px;}
.y144{bottom:550.884000px;}
.y1c2{bottom:551.439000px;}
.yfe{bottom:551.520000px;}
.y81{bottom:552.225000px;}
.y4e{bottom:552.549000px;}
.ya2{bottom:552.673500px;}
.y1df{bottom:556.081500px;}
.y9{bottom:556.864499px;}
.y19c{bottom:557.601000px;}
.y15b{bottom:560.423085px;}
.y20f{bottom:560.743500px;}
.y12e{bottom:563.446500px;}
.y247{bottom:565.227000px;}
.y1c5{bottom:565.330500px;}
.yd2{bottom:565.426500px;}
.y15a{bottom:570.052950px;}
.y80{bottom:571.054500px;}
.ya1{bottom:571.503000px;}
.y4d{bottom:572.007000px;}
.y1de{bottom:573.655500px;}
.y143{bottom:574.525500px;}
.y19b{bottom:576.429000px;}
.y20e{bottom:578.004000px;}
.y12d{bottom:582.276000px;}
.y246{bottom:582.487500px;}
.yfb{bottom:583.140000px;}
.y1c4{bottom:586.729500px;}
.yd1{bottom:589.068000px;}
.y7f{bottom:589.884000px;}
.ya0{bottom:590.332500px;}
.y4c{bottom:591.463500px;}
.y19a{bottom:595.258500px;}
.y20d{bottom:595.264500px;}
.y142{bottom:598.165500px;}
.y245{bottom:599.746500px;}
.y12c{bottom:601.105500px;}
.y1c1{bottom:608.128500px;}
.y7e{bottom:608.713500px;}
.y9f{bottom:609.162000px;}
.y4b{bottom:610.920000px;}
.y20c{bottom:612.525000px;}
.yd0{bottom:612.708000px;}
.y199{bottom:614.088000px;}
.y141{bottom:614.604000px;}
.y244{bottom:617.007000px;}
.yfa{bottom:619.401000px;}
.y12b{bottom:619.935000px;}
.y7d{bottom:627.543000px;}
.y9e{bottom:627.991500px;}
.y20b{bottom:629.784000px;}
.y4a{bottom:630.378000px;}
.y1b3{bottom:632.026500px;}
.y198{bottom:632.917500px;}
.y243{bottom:634.267500px;}
.ycf{bottom:636.349500px;}
.y164{bottom:637.660500px;}
.y1c0{bottom:638.179500px;}
.yf9{bottom:638.245500px;}
.y12a{bottom:638.764500px;}
.y8{bottom:645.510000px;}
.y7c{bottom:646.372500px;}
.y9d{bottom:646.821000px;}
.y20a{bottom:647.044500px;}
.y49{bottom:649.834500px;}
.y242{bottom:651.528000px;}
.y197{bottom:651.747000px;}
.y129{bottom:657.592500px;}
.y159{bottom:660.090000px;}
.yf8{bottom:661.885500px;}
.y209{bottom:664.305000px;}
.y7b{bottom:665.202000px;}
.y9c{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.yce{bottom:667.968000px;}
.y241{bottom:668.788500px;}
.y48{bottom:669.291000px;}
.y196{bottom:670.576500px;}
.y1bf{bottom:674.440500px;}
.y128{bottom:676.422000px;}
.y208{bottom:681.565500px;}
.y7a{bottom:684.031500px;}
.y9b{bottom:684.480000px;}
.yf7{bottom:685.525500px;}
.y240{bottom:686.049000px;}
.y47{bottom:688.749000px;}
.y195{bottom:689.406000px;}
.y127{bottom:695.251500px;}
.y1be{bottom:695.635500px;}
.y207{bottom:698.826000px;}
.yc9{bottom:702.861000px;}
.y9a{bottom:703.309500px;}
.y79{bottom:707.344500px;}
.y46{bottom:708.205500px;}
.yf6{bottom:709.167000px;}
.y126{bottom:714.081000px;}
.y206{bottom:716.086500px;}
.y1bd{bottom:717.034500px;}
.y23f{bottom:720.570000px;}
.yc8{bottom:721.690500px;}
.y99{bottom:722.139000px;}
.y194{bottom:722.971500px;}
.y6{bottom:726.298500px;}
.y45{bottom:727.663500px;}
.yf5{bottom:732.807000px;}
.y125{bottom:732.910500px;}
.y205{bottom:733.347000px;}
.y23e{bottom:737.829000px;}
.y1bc{bottom:738.433500px;}
.yc7{bottom:740.520000px;}
.y78{bottom:740.968500px;}
.y193{bottom:742.204500px;}
.y44{bottom:747.120000px;}
.y204{bottom:750.607500px;}
.y124{bottom:751.740000px;}
.y3{bottom:752.599495px;}
.y23d{bottom:755.089500px;}
.yf4{bottom:756.448500px;}
.yc6{bottom:759.349500px;}
.y77{bottom:759.798000px;}
.y1bb{bottom:759.832500px;}
.y171{bottom:764.634000px;}
.y1b9{bottom:765.624000px;}
.y43{bottom:766.576500px;}
.y203{bottom:767.866500px;}
.y123{bottom:770.569500px;}
.y23c{bottom:772.350000px;}
.y1b6{bottom:772.827000px;}
.yc5{bottom:778.179000px;}
.y76{bottom:778.627500px;}
.y1b8{bottom:779.821500px;}
.yf3{bottom:780.088500px;}
.y1b5{bottom:780.208500px;}
.y1ba{bottom:781.231500px;}
.y202{bottom:785.127000px;}
.y42{bottom:786.034500px;}
.y122{bottom:789.399000px;}
.y23b{bottom:789.610500px;}
.yc4{bottom:797.008500px;}
.y75{bottom:797.457000px;}
.y201{bottom:802.387500px;}
.y1b7{bottom:802.630500px;}
.yf2{bottom:803.730000px;}
.y41{bottom:805.491000px;}
.y23a{bottom:806.871000px;}
.y121{bottom:808.228500px;}
.yc3{bottom:815.838000px;}
.y74{bottom:816.286500px;}
.y200{bottom:819.648000px;}
.y239{bottom:824.131500px;}
.y40{bottom:824.947500px;}
.y120{bottom:827.058000px;}
.yf1{bottom:827.370000px;}
.yc2{bottom:834.667500px;}
.y73{bottom:835.114500px;}
.y1b4{bottom:835.669500px;}
.y1ff{bottom:836.908500px;}
.y238{bottom:841.392000px;}
.y3f{bottom:844.405500px;}
.y11f{bottom:845.887500px;}
.yf0{bottom:851.011500px;}
.yc1{bottom:853.497000px;}
.y72{bottom:853.944000px;}
.y1fe{bottom:854.169000px;}
.y237{bottom:858.652500px;}
.y11e{bottom:864.717000px;}
.y1fd{bottom:871.429500px;}
.yc0{bottom:872.326500px;}
.y71{bottom:872.773500px;}
.yef{bottom:874.651500px;}
.y236{bottom:875.913000px;}
.y2{bottom:879.369000px;}
.y3e{bottom:882.990000px;}
.y11d{bottom:883.546500px;}
.y1fc{bottom:888.690000px;}
.ybf{bottom:891.156000px;}
.y70{bottom:891.603000px;}
.y235{bottom:893.172000px;}
.yee{bottom:898.293000px;}
.y3d{bottom:899.130000px;}
.y1fb{bottom:905.950500px;}
.y11c{bottom:906.859500px;}
.ybe{bottom:909.984000px;}
.y6f{bottom:910.432500px;}
.y3c{bottom:919.609500px;}
.yed{bottom:921.933000px;}
.y1fa{bottom:923.209500px;}
.y234{bottom:927.693000px;}
.ybd{bottom:928.813500px;}
.y6e{bottom:929.262000px;}
.y16b{bottom:930.431151px;}
.y3b{bottom:931.410000px;}
.y1f9{bottom:940.470000px;}
.y11b{bottom:943.854000px;}
.y233{bottom:944.953500px;}
.yec{bottom:945.574500px;}
.ybc{bottom:947.643000px;}
.y6d{bottom:948.091500px;}
.y16a{bottom:949.690593px;}
.y3a{bottom:951.888000px;}
.y1f8{bottom:957.730500px;}
.y11a{bottom:958.051500px;}
.y232{bottom:962.214000px;}
.ybb{bottom:966.472500px;}
.y1{bottom:966.726000px;}
.y6c{bottom:966.921000px;}
.y169{bottom:968.950035px;}
.yeb{bottom:969.214500px;}
.y1f7{bottom:974.991000px;}
.y119{bottom:979.210500px;}
.y231{bottom:979.474500px;}
.y6b{bottom:985.750500px;}
.y118{bottom:986.310000px;}
.y168{bottom:988.120800px;}
.yba{bottom:989.785500px;}
.y1f6{bottom:992.251500px;}
.yea{bottom:992.856000px;}
.y39{bottom:996.565500px;}
.y230{bottom:996.735000px;}
.y6a{bottom:1004.580000px;}
.y1f5{bottom:1009.512000px;}
.y22f{bottom:1013.995500px;}
.y117{bottom:1014.807000px;}
.ye9{bottom:1016.496000px;}
.y116{bottom:1021.905000px;}
.y69{bottom:1023.409500px;}
.y1f4{bottom:1026.772500px;}
.y22e{bottom:1031.254500px;}
.y38{bottom:1036.485000px;}
.ye8{bottom:1040.137500px;}
.y68{bottom:1042.239000px;}
.y167{bottom:1042.840935px;}
.y1f3{bottom:1044.033000px;}
.y22d{bottom:1048.515000px;}
.y115{bottom:1050.403500px;}
.y166{bottom:1052.470800px;}
.y114{bottom:1057.501500px;}
.y67{bottom:1061.068500px;}
.y1f2{bottom:1061.292000px;}
.ye7{bottom:1063.777500px;}
.y37{bottom:1064.728500px;}
.y22c{bottom:1065.775500px;}
.y140{bottom:1075.315500px;}
.y1f1{bottom:1078.552500px;}
.y66{bottom:1079.898000px;}
.y22b{bottom:1083.036000px;}
.y113{bottom:1085.998500px;}
.ye6{bottom:1087.419000px;}
.y36{bottom:1092.972000px;}
.y1f0{bottom:1095.813000px;}
.y65{bottom:1098.727500px;}
.y22a{bottom:1100.296500px;}
.y64{bottom:1117.557000px;}
.ye5{bottom:1119.037500px;}
.y63{bottom:1177.662000px;}
.h8{height:32.130000px;}
.h10{height:32.565965px;}
.hc{height:37.993262px;}
.hb{height:38.035105px;}
.h9{height:39.648000px;}
.h11{height:43.421105px;}
.h12{height:43.468925px;}
.hd{height:43.815515px;}
.h1c{height:44.536816px;}
.h3{height:48.195000px;}
.h14{height:48.848947px;}
.h13{height:48.902746px;}
.h25{height:49.923965px;}
.h1e{height:50.229492px;}
.h16{height:54.276245px;}
.h15{height:54.336020px;}
.h1d{height:55.922168px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.h26{height:60.842947px;}
.hf{height:62.991506px;}
.h2{height:67.968000px;}
.h22{height:70.726925px;}
.h17{height:71.813105px;}
.h18{height:71.819105px;}
.h23{height:78.844925px;}
.h1a{height:81.728947px;}
.h5{height:96.288000px;}
.h19{height:97.316746px;}
.he{height:97.805491px;}
.h21{height:98.042168px;}
.h24{height:100.258925px;}
.h4{height:119.055004px;}
.h20{height:367.867500px;}
.h1b{height:414.997500px;}
.h1f{height:415.651350px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:369.832500px;}
.w4{width:378.996000px;}
.w6{width:547.875000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x2d{left:-216.337500px;}
.x2a{left:-206.518500px;}
.x30{left:-199.318500px;}
.x39{left:-181.138500px;}
.x33{left:-172.408500px;}
.x3e{left:-161.518500px;}
.x42{left:-158.638500px;}
.x38{left:-155.848500px;}
.x41{left:-154.318500px;}
.x35{left:-150.988500px;}
.x36{left:-148.198500px;}
.x3c{left:-145.138500px;}
.x37{left:-143.338500px;}
.x40{left:-139.558500px;}
.x3b{left:-137.308500px;}
.x3d{left:-136.228500px;}
.x3a{left:-134.968500px;}
.x3f{left:-127.678500px;}
.x2e{left:-20.767500px;}
.x34{left:-12.658500px;}
.x2b{left:-10.948500px;}
.x32{left:-3.748500px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x43{left:66.636000px;}
.x13{left:69.132000px;}
.x17{left:80.676000px;}
.x4b{left:84.126000px;}
.x5d{left:85.848000px;}
.x15{left:87.441000px;}
.x12{left:94.429500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x44{left:168.553500px;}
.x4{left:203.484001px;}
.x8{left:248.526000px;}
.x6{left:249.591000px;}
.x19{left:259.083000px;}
.x29{left:265.585500px;}
.x26{left:268.012500px;}
.x7{left:269.914500px;}
.x25{left:271.537500px;}
.x1e{left:272.976000px;}
.x1c{left:273.984000px;}
.x24{left:275.343000px;}
.x10{left:277.597500px;}
.x23{left:279.256500px;}
.x9{left:281.479500px;}
.x21{left:283.573500px;}
.x1b{left:285.249000px;}
.x27{left:287.448000px;}
.x1d{left:288.664500px;}
.x20{left:290.608500px;}
.x1f{left:292.705500px;}
.x22{left:299.296500px;}
.xc{left:325.027500px;}
.xe{left:339.405000px;}
.xd{left:342.766500px;}
.x52{left:343.810500px;}
.xf{left:345.672000px;}
.x4c{left:348.222000px;}
.x59{left:368.163000px;}
.x1a{left:378.385500px;}
.x2f{left:390.985362px;}
.x5e{left:397.171500px;}
.x2c{left:400.804362px;}
.x28{left:423.025500px;}
.x3{left:454.959000px;}
.x46{left:503.791500px;}
.x16{left:516.109500px;}
.x45{left:520.392000px;}
.x47{left:525.382500px;}
.x18{left:536.917500px;}
.x31{left:549.751350px;}
.x11{left:553.218000px;}
.x14{left:609.168000px;}
.x57{left:640.839000px;}
.x5a{left:644.139000px;}
.x53{left:656.332500px;}
.x5c{left:658.705500px;}
.x58{left:660.882000px;}
.x51{left:662.089500px;}
.x4f{left:663.966000px;}
.x4e{left:665.568000px;}
.x50{left:667.624500px;}
.x4d{left:669.406500px;}
.x56{left:671.247000px;}
.x5b{left:672.981000px;}
.x54{left:675.658500px;}
.x55{left:677.709000px;}
.x48{left:680.440500px;}
.xa{left:700.549500px;}
.x49{left:763.666500px;}
.x4a{left:791.892000px;}
.xb{left:811.732500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:10.661333pt;}
.vc{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v8{vertical-align:24.229333pt;}
.v4{vertical-align:25.237333pt;}
.v9{vertical-align:26.245333pt;}
.v6{vertical-align:29.226667pt;}
.va{vertical-align:30.965333pt;}
.v7{vertical-align:37.440000pt;}
.v5{vertical-align:43.034667pt;}
.vb{vertical-align:50.480000pt;}
.ls23{letter-spacing:-0.277888pt;}
.ls17{letter-spacing:-0.203072pt;}
.ls27{letter-spacing:-0.160320pt;}
.ls29{letter-spacing:-0.144288pt;}
.ls2c{letter-spacing:-0.085504pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls21{letter-spacing:-0.072000pt;}
.ls2f{letter-spacing:-0.069472pt;}
.ls31{letter-spacing:-0.064128pt;}
.ls2e{letter-spacing:-0.058784pt;}
.ls2d{letter-spacing:-0.053440pt;}
.ls28{letter-spacing:-0.042752pt;}
.ls16{letter-spacing:-0.037408pt;}
.ls15{letter-spacing:-0.032064pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls26{letter-spacing:-0.021376pt;}
.ls14{letter-spacing:-0.012768pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls30{letter-spacing:-0.005344pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000711pt;}
.ls3a{letter-spacing:0.001026pt;}
.ls38{letter-spacing:0.002262pt;}
.ls7{letter-spacing:0.002473pt;}
.ls35{letter-spacing:0.004221pt;}
.ls13{letter-spacing:0.004800pt;}
.ls11{letter-spacing:0.010688pt;}
.ls12{letter-spacing:0.014400pt;}
.lsb{letter-spacing:0.017024pt;}
.ls1b{letter-spacing:0.026720pt;}
.ls1d{letter-spacing:0.037408pt;}
.ls10{letter-spacing:0.042752pt;}
.ls19{letter-spacing:0.043200pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.052800pt;}
.lse{letter-spacing:0.053440pt;}
.ls24{letter-spacing:0.058784pt;}
.lsf{letter-spacing:0.117568pt;}
.ls2b{letter-spacing:0.144288pt;}
.lsd{letter-spacing:0.148960pt;}
.ls1c{letter-spacing:0.160320pt;}
.lsc{letter-spacing:0.161728pt;}
.ls34{letter-spacing:2.657067pt;}
.ls6{letter-spacing:10.626533pt;}
.ls8{letter-spacing:11.370647pt;}
.ls36{letter-spacing:11.882925pt;}
.ls1e{letter-spacing:12.003021pt;}
.ls3b{letter-spacing:12.153174pt;}
.ls5{letter-spacing:13.124065pt;}
.ls20{letter-spacing:13.230333pt;}
.ls39{letter-spacing:13.236248pt;}
.ls32{letter-spacing:13.442868pt;}
.ls9{letter-spacing:13.921073pt;}
.ls1f{letter-spacing:14.505546pt;}
.lsa{letter-spacing:19.659531pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls33{letter-spacing:202.491733pt;}
.wsc0{word-spacing:-48.000000pt;}
.wsa2{word-spacing:-11.955200pt;}
.wsb1{word-spacing:-10.801728pt;}
.wsb2{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.ws75{word-spacing:-2.975497pt;}
.ws6a{word-spacing:-2.922363pt;}
.wsd7{word-spacing:-2.497292pt;}
.wsd1{word-spacing:-2.231622pt;}
.wse7{word-spacing:-2.072221pt;}
.ws9e{word-spacing:-1.965953pt;}
.wse5{word-spacing:-1.912819pt;}
.wsae{word-spacing:-1.594016pt;}
.ws60{word-spacing:-1.540882pt;}
.ws65{word-spacing:-1.487748pt;}
.ws3e{word-spacing:-1.381481pt;}
.ws28{word-spacing:-1.328347pt;}
.ws70{word-spacing:-1.275213pt;}
.ws26{word-spacing:-1.222079pt;}
.ws6b{word-spacing:-1.062677pt;}
.wsfc{word-spacing:-1.052058pt;}
.ws77{word-spacing:-1.009543pt;}
.ws102{word-spacing:-0.860774pt;}
.ws5d{word-spacing:-0.850142pt;}
.wsba{word-spacing:-0.849696pt;}
.wsb9{word-spacing:-0.844352pt;}
.wsd0{word-spacing:-0.797008pt;}
.ws6c{word-spacing:-0.743874pt;}
.ws34{word-spacing:-0.690740pt;}
.ws5e{word-spacing:-0.637606pt;}
.ws56{word-spacing:-0.584473pt;}
.ws25{word-spacing:-0.531339pt;}
.ws69{word-spacing:-0.478205pt;}
.ws6e{word-spacing:-0.371937pt;}
.ws9b{word-spacing:-0.318803pt;}
.ws12{word-spacing:-0.286925pt;}
.ws66{word-spacing:-0.265669pt;}
.wsb3{word-spacing:-0.242592pt;}
.ws1e{word-spacing:-0.239104pt;}
.wsc9{word-spacing:-0.229792pt;}
.ws41{word-spacing:-0.212535pt;}
.ws23{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.ws100{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.095642pt;}
.wsb4{word-spacing:-0.068096pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws109{word-spacing:-0.009574pt;}
.ws111{word-spacing:-0.008124pt;}
.ws114{word-spacing:-0.007663pt;}
.ws107{word-spacing:-0.007603pt;}
.wsfd{word-spacing:-0.007322pt;}
.ws110{word-spacing:-0.006690pt;}
.ws115{word-spacing:-0.006007pt;}
.wsf1{word-spacing:-0.005308pt;}
.wsf6{word-spacing:-0.004241pt;}
.wsf8{word-spacing:-0.003465pt;}
.ws104{word-spacing:-0.003166pt;}
.ws10e{word-spacing:-0.002935pt;}
.wse{word-spacing:-0.002044pt;}
.wsff{word-spacing:-0.001382pt;}
.ws2c{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.wse4{word-spacing:0.005118pt;}
.wsec{word-spacing:0.005863pt;}
.ws5{word-spacing:0.013419pt;}
.wscb{word-spacing:0.021376pt;}
.ws105{word-spacing:0.027323pt;}
.wsca{word-spacing:0.037408pt;}
.wscf{word-spacing:0.042752pt;}
.ws13{word-spacing:0.047821pt;}
.ws33{word-spacing:0.053134pt;}
.wsbb{word-spacing:0.069472pt;}
.wscd{word-spacing:0.080160pt;}
.ws1d{word-spacing:0.095642pt;}
.wsc4{word-spacing:0.105600pt;}
.ws4c{word-spacing:0.106268pt;}
.wscc{word-spacing:0.106880pt;}
.ws3{word-spacing:0.111581pt;}
.wsc5{word-spacing:0.115200pt;}
.wsce{word-spacing:0.133600pt;}
.wse8{word-spacing:0.143462pt;}
.wsbe{word-spacing:0.144000pt;}
.wsbf{word-spacing:0.153600pt;}
.wsbd{word-spacing:0.158400pt;}
.ws40{word-spacing:0.159402pt;}
.ws17{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.wsc8{word-spacing:0.230400pt;}
.wsa0{word-spacing:0.239104pt;}
.ws3d{word-spacing:0.265669pt;}
.wsbc{word-spacing:0.283232pt;}
.ws21{word-spacing:0.286925pt;}
.ws49{word-spacing:0.318803pt;}
.ws67{word-spacing:0.371937pt;}
.ws113{word-spacing:0.382566pt;}
.ws61{word-spacing:0.425071pt;}
.ws71{word-spacing:0.478205pt;}
.ws1a{word-spacing:0.478208pt;}
.ws4b{word-spacing:0.584473pt;}
.ws58{word-spacing:0.637606pt;}
.wsfe{word-spacing:0.669491pt;}
.ws3a{word-spacing:0.690740pt;}
.ws10f{word-spacing:0.765133pt;}
.ws6d{word-spacing:0.850142pt;}
.wsd2{word-spacing:0.903276pt;}
.ws51{word-spacing:0.956410pt;}
.wsef{word-spacing:1.004237pt;}
.ws29{word-spacing:1.009543pt;}
.wsf5{word-spacing:1.052058pt;}
.ws5f{word-spacing:1.062677pt;}
.ws2f{word-spacing:1.115811pt;}
.ws2e{word-spacing:1.168945pt;}
.wsea{word-spacing:1.195520pt;}
.ws57{word-spacing:1.222079pt;}
.wsd{word-spacing:1.227389pt;}
.ws10c{word-spacing:1.243341pt;}
.wsc1{word-spacing:1.275213pt;}
.ws10a{word-spacing:1.291162pt;}
.ws32{word-spacing:1.328347pt;}
.ws31{word-spacing:1.381481pt;}
.ws64{word-spacing:1.434614pt;}
.ws14{word-spacing:1.482445pt;}
.ws30{word-spacing:1.487748pt;}
.ws6f{word-spacing:1.540882pt;}
.ws20{word-spacing:1.625907pt;}
.ws10b{word-spacing:1.673728pt;}
.wsdc{word-spacing:1.700284pt;}
.wsf9{word-spacing:1.721549pt;}
.wse6{word-spacing:1.753418pt;}
.ws1c{word-spacing:1.769370pt;}
.ws4d{word-spacing:1.912819pt;}
.ws62{word-spacing:1.965953pt;}
.ws63{word-spacing:2.019087pt;}
.wsc6{word-spacing:2.030400pt;}
.ws9d{word-spacing:2.072221pt;}
.wsc7{word-spacing:2.073600pt;}
.ws18{word-spacing:2.104115pt;}
.wsd4{word-spacing:2.125355pt;}
.ws9f{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws4{word-spacing:2.257750pt;}
.ws2{word-spacing:2.268810pt;}
.wsd3{word-spacing:2.284756pt;}
.wsc2{word-spacing:2.337890pt;}
.ws3c{word-spacing:2.391024pt;}
.ws59{word-spacing:2.444158pt;}
.wsf4{word-spacing:2.486682pt;}
.ws38{word-spacing:2.497292pt;}
.wsdb{word-spacing:2.550426pt;}
.ws10{word-spacing:2.550432pt;}
.ws11{word-spacing:2.593575pt;}
.ws103{word-spacing:2.630144pt;}
.ws22{word-spacing:2.654524pt;}
.ws19{word-spacing:2.677965pt;}
.ws47{word-spacing:2.709827pt;}
.ws101{word-spacing:2.725786pt;}
.wsd5{word-spacing:2.762961pt;}
.wsf2{word-spacing:2.773606pt;}
.ws4e{word-spacing:2.816095pt;}
.wsf7{word-spacing:2.861696pt;}
.wsf0{word-spacing:2.861986pt;}
.wse9{word-spacing:2.866509pt;}
.ws4f{word-spacing:2.869229pt;}
.wseb{word-spacing:2.869248pt;}
.ws106{word-spacing:2.964890pt;}
.wsed{word-spacing:3.012710pt;}
.ws117{word-spacing:3.060531pt;}
.ws55{word-spacing:3.081764pt;}
.wsee{word-spacing:3.108352pt;}
.ws46{word-spacing:3.134898pt;}
.ws24{word-spacing:3.188032pt;}
.ws48{word-spacing:3.241166pt;}
.ws76{word-spacing:3.294300pt;}
.ws72{word-spacing:3.347434pt;}
.ws52{word-spacing:3.400567pt;}
.ws112{word-spacing:3.443098pt;}
.ws5b{word-spacing:3.506835pt;}
.wsb6{word-spacing:3.633920pt;}
.ws54{word-spacing:3.719371pt;}
.ws36{word-spacing:3.772505pt;}
.ws35{word-spacing:3.825638pt;}
.wsfb{word-spacing:3.825664pt;}
.ws3b{word-spacing:3.931906pt;}
.ws116{word-spacing:4.208230pt;}
.ws53{word-spacing:4.356977pt;}
.ws68{word-spacing:4.410111pt;}
.wsd6{word-spacing:4.463245pt;}
.ws15{word-spacing:4.495155pt;}
.ws5c{word-spacing:4.569513pt;}
.wsda{word-spacing:4.728914pt;}
.wsb{word-spacing:4.872362pt;}
.ws4a{word-spacing:4.941450pt;}
.ws16{word-spacing:4.973363pt;}
.ws44{word-spacing:4.994583pt;}
.wsb0{word-spacing:5.100851pt;}
.wsb7{word-spacing:5.146272pt;}
.ws78{word-spacing:5.153985pt;}
.wsb8{word-spacing:5.156960pt;}
.ws74{word-spacing:5.207119pt;}
.ws43{word-spacing:5.260253pt;}
.wsd8{word-spacing:5.685324pt;}
.ws108{word-spacing:5.690675pt;}
.ws37{word-spacing:5.844725pt;}
.ws39{word-spacing:5.950993pt;}
.wsaf{word-spacing:6.004127pt;}
.ws10d{word-spacing:6.121062pt;}
.ws42{word-spacing:6.322930pt;}
.ws73{word-spacing:6.535466pt;}
.wsfa{word-spacing:6.551450pt;}
.wsc3{word-spacing:6.641733pt;}
.ws45{word-spacing:7.013670pt;}
.ws9a{word-spacing:7.491875pt;}
.wsd9{word-spacing:7.545009pt;}
.wsf3{word-spacing:8.607744pt;}
.ws9{word-spacing:8.740496pt;}
.ws9c{word-spacing:8.798990pt;}
.wsb5{word-spacing:10.329312pt;}
.wsa{word-spacing:10.525789pt;}
.ws5a{word-spacing:11.051844pt;}
.ws50{word-spacing:12.114522pt;}
.ws6{word-spacing:13.798826pt;}
.wsc{word-spacing:14.282342pt;}
.ws8{word-spacing:19.857270pt;}
.ws99{word-spacing:25.121755pt;}
.ws98{word-spacing:35.865600pt;}
.wse2{word-spacing:96.403073pt;}
.wsdd{word-spacing:107.436075pt;}
.wsdf{word-spacing:123.567037pt;}
.wse0{word-spacing:155.027109pt;}
.wse1{word-spacing:156.193929pt;}
.wsde{word-spacing:179.864234pt;}
.wse3{word-spacing:203.822024pt;}
.wsa9{word-spacing:263.636070pt;}
.wsa6{word-spacing:268.773385pt;}
.wsac{word-spacing:294.050099pt;}
.wsaa{word-spacing:332.329071pt;}
.wsa8{word-spacing:339.671142pt;}
.wsad{word-spacing:347.322470pt;}
.wsa7{word-spacing:359.325491pt;}
.wsab{word-spacing:371.232870pt;}
.wsa4{word-spacing:371.280691pt;}
.wsa3{word-spacing:383.188070pt;}
.wsa5{word-spacing:383.235891pt;}
.ws8c{word-spacing:472.852070pt;}
.ws8a{word-spacing:494.753997pt;}
.ws7c{word-spacing:498.484019pt;}
.ws8d{word-spacing:503.122637pt;}
.ws91{word-spacing:515.460403pt;}
.ws86{word-spacing:517.707981pt;}
.ws8b{word-spacing:518.903501pt;}
.ws79{word-spacing:520.099021pt;}
.ws7a{word-spacing:522.346598pt;}
.ws89{word-spacing:529.663181pt;}
.ws96{word-spacing:540.948890pt;}
.ws83{word-spacing:544.105062pt;}
.ws80{word-spacing:546.543923pt;}
.ws8e{word-spacing:549.269709pt;}
.ws7d{word-spacing:551.469466pt;}
.ws90{word-spacing:551.804211pt;}
.ws93{word-spacing:552.569344pt;}
.ws7b{word-spacing:552.951910pt;}
.ws88{word-spacing:552.999731pt;}
.ws94{word-spacing:556.873216pt;}
.ws82{word-spacing:557.303603pt;}
.ws95{word-spacing:559.455539pt;}
.ws84{word-spacing:561.607475pt;}
.ws97{word-spacing:568.971878pt;}
.ws8f{word-spacing:576.718848pt;}
.ws7f{word-spacing:579.253350pt;}
.ws87{word-spacing:579.348992pt;}
.ws85{word-spacing:583.509402pt;}
.ws92{word-spacing:585.278771pt;}
.ws7e{word-spacing:594.460365pt;}
.ws81{word-spacing:619.231539pt;}
.wsa1{word-spacing:733.714278pt;}
._9b{margin-left:-22.045389pt;}
._6{margin-left:-10.616218pt;}
._f{margin-left:-6.073242pt;}
._9{margin-left:-5.169957pt;}
._1{margin-left:-3.459005pt;}
._4b{margin-left:-2.231622pt;}
._5{margin-left:-1.301776pt;}
._6d{width:1.004416pt;}
._8{width:2.663381pt;}
._9a{width:4.434423pt;}
._0{width:9.186819pt;}
._2{width:11.530016pt;}
._e{width:12.815974pt;}
._a{width:14.500317pt;}
._15{width:15.461955pt;}
._10{width:16.524633pt;}
._d{width:18.219725pt;}
._8c{width:19.144173pt;}
._b{width:20.058144pt;}
._13{width:21.280110pt;}
._3{width:22.502128pt;}
._99{width:23.405840pt;}
._14{width:24.367170pt;}
._18{width:26.407532pt;}
._4{width:27.783619pt;}
._c{width:28.713709pt;}
._7{width:29.648896pt;}
._17{width:31.136227pt;}
._19{width:32.879159pt;}
._8d{width:33.888817pt;}
._16{width:35.711262pt;}
._8b{width:37.618778pt;}
._4a{width:41.231984pt;}
._48{width:47.820800pt;}
._49{width:63.548264pt;}
._50{width:83.016909pt;}
._51{width:89.711821pt;}
._52{width:97.650074pt;}
._94{width:115.248128pt;}
._96{width:126.820762pt;}
._4f{width:138.181283pt;}
._4d{width:139.886547pt;}
._95{width:143.223296pt;}
._8e{width:159.699550pt;}
._98{width:165.890355pt;}
._73{width:169.538864pt;}
._71{width:174.125184pt;}
._92{width:178.404508pt;}
._72{width:182.653632pt;}
._97{width:184.110080pt;}
._1b{width:188.605235pt;}
._4e{width:193.363463pt;}
._93{width:224.071373pt;}
._69{width:232.069139pt;}
._6c{width:242.063686pt;}
._4c{width:248.497091pt;}
._8f{width:251.642624pt;}
._65{width:263.487405pt;}
._5c{width:266.165370pt;}
._56{width:284.294656pt;}
._64{width:289.124557pt;}
._66{width:296.632422pt;}
._53{width:299.358208pt;}
._62{width:303.040410pt;}
._54{width:308.874547pt;}
._63{width:311.265587pt;}
._5b{width:318.390886pt;}
._67{width:319.538586pt;}
._5f{width:322.264371pt;}
._6a{width:323.172966pt;}
._55{width:324.368486pt;}
._57{width:325.755290pt;}
._59{width:331.445965pt;}
._60{width:334.028288pt;}
._5e{width:336.419328pt;}
._68{width:341.344870pt;}
._1a{width:347.418112pt;}
._58{width:350.861210pt;}
._6b{width:372.109552pt;}
._5d{width:374.293402pt;}
._8a{width:375.244816pt;}
._81{width:378.992656pt;}
._5a{width:383.188070pt;}
._89{width:388.976512pt;}
._61{width:395.143270pt;}
._79{width:398.134592pt;}
._88{width:403.665824pt;}
._20{width:411.593626pt;}
._74{width:415.761600pt;}
._21{width:417.619046pt;}
._86{width:420.043840pt;}
._3d{width:421.349069pt;}
._26{width:424.170496pt;}
._3e{width:427.278848pt;}
._87{width:428.933440pt;}
._3f{width:431.821824pt;}
._7f{width:436.591360pt;}
._27{width:441.975741pt;}
._44{width:444.829082pt;}
._7a{width:445.847136pt;}
._40{width:449.706803pt;}
._7c{width:451.444736pt;}
._84{width:454.540288pt;}
._83{width:456.756544pt;}
._45{width:462.761882pt;}
._80{width:468.941008pt;}
._7b{width:472.564672pt;}
._85{width:474.158464pt;}
._7e{width:475.341355pt;}
._28{width:478.351462pt;}
._37{width:483.468288pt;}
._77{width:488.781888pt;}
._36{width:490.784870pt;}
._7d{width:494.959040pt;}
._29{width:496.156707pt;}
._82{width:499.293760pt;}
._38{width:501.353267pt;}
._78{width:502.881539pt;}
._76{width:508.177792pt;}
._2e{width:511.539098pt;}
._1f{width:516.416819pt;}
._75{width:522.480640pt;}
._34{width:524.514442pt;}
._91{width:525.489928pt;}
._2f{width:529.424077pt;}
._39{width:532.962816pt;}
._1c{width:538.031821pt;}
._1d{width:540.279398pt;}
._31{width:547.548160pt;}
._35{width:548.743680pt;}
._46{width:558.833869pt;}
._33{width:560.316314pt;}
._25{width:564.476723pt;}
._3a{width:567.319386pt;}
._22{width:569.402266pt;}
._1e{width:570.932531pt;}
._2c{width:573.945242pt;}
._42{width:575.496725pt;}
._43{width:577.388339pt;}
._3c{width:581.644390pt;}
._32{width:582.807997pt;}
._2b{width:587.191603pt;}
._2d{width:591.495475pt;}
._24{width:597.138330pt;}
._47{width:598.812058pt;}
._30{width:601.442202pt;}
._3b{width:606.606848pt;}
._23{width:612.393165pt;}
._41{width:615.937214pt;}
._11{width:643.791144pt;}
._2a{width:649.119539pt;}
._90{width:834.628872pt;}
._70{width:1042.437616pt;}
._6e{width:1857.250304pt;}
._6f{width:2222.978667pt;}
._12{width:2244.232000pt;}
.fs9{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fsa{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y192{bottom:-575.946267pt;}
.y191{bottom:-557.306133pt;}
.y190{bottom:-538.666267pt;}
.y18f{bottom:-520.026267pt;}
.y18e{bottom:-501.306133pt;}
.y18d{bottom:-482.666267pt;}
.y18c{bottom:-464.026267pt;}
.y163{bottom:-455.606133pt;}
.y18b{bottom:-445.386267pt;}
.y162{bottom:-435.606133pt;}
.y18a{bottom:-426.746267pt;}
.y189{bottom:-408.026267pt;}
.y188{bottom:-389.386267pt;}
.y187{bottom:-370.746133pt;}
.y186{bottom:-352.106267pt;}
.y185{bottom:-333.466267pt;}
.y184{bottom:-314.746133pt;}
.y183{bottom:-296.106267pt;}
.y182{bottom:-277.466133pt;}
.y181{bottom:-258.826267pt;}
.y180{bottom:-240.186267pt;}
.y17f{bottom:-221.546267pt;}
.y17e{bottom:-202.826267pt;}
.y17d{bottom:-184.186267pt;}
.y17c{bottom:-165.546267pt;}
.y17b{bottom:-146.906267pt;}
.y17a{bottom:-128.266267pt;}
.y179{bottom:-118.906267pt;}
.y178{bottom:-82.906667pt;}
.y177{bottom:-67.387067pt;}
.y176{bottom:-36.106667pt;}
.y161{bottom:-29.526267pt;}
.y16f{bottom:-26.790267pt;}
.y175{bottom:-20.666267pt;}
.y160{bottom:-9.526515pt;}
.y16e{bottom:-6.790267pt;}
.y174{bottom:-0.746267pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y158{bottom:92.765333pt;}
.y35{bottom:93.018667pt;}
.y61{bottom:98.137333pt;}
.y229{bottom:99.533333pt;}
.ycd{bottom:105.510667pt;}
.y98{bottom:105.909333pt;}
.yb9{bottom:106.308000pt;}
.y34{bottom:108.920000pt;}
.y157{bottom:109.502667pt;}
.y1b2{bottom:110.289333pt;}
.y60{bottom:114.874667pt;}
.y228{bottom:114.876000pt;}
.ycc{bottom:122.248000pt;}
.y97{bottom:122.646667pt;}
.yb8{bottom:123.045333pt;}
.y21{bottom:123.790666pt;}
.ye4{bottom:124.349333pt;}
.y33{bottom:124.820000pt;}
.y1dd{bottom:124.957333pt;}
.y156{bottom:126.240000pt;}
.y1b1{bottom:127.025333pt;}
.y227{bottom:130.218667pt;}
.y5f{bottom:131.612000pt;}
.y112{bottom:136.977333pt;}
.ycb{bottom:138.985333pt;}
.y96{bottom:139.384000pt;}
.yb7{bottom:139.782667pt;}
.y32{bottom:140.720000pt;}
.y1dc{bottom:141.109333pt;}
.y155{bottom:142.977333pt;}
.y13f{bottom:143.417333pt;}
.y1b0{bottom:143.762667pt;}
.ye3{bottom:145.364000pt;}
.y226{bottom:145.561333pt;}
.y5e{bottom:148.349333pt;}
.y111{bottom:153.714667pt;}
.y95{bottom:156.121333pt;}
.yb6{bottom:156.520000pt;}
.y31{bottom:156.621333pt;}
.yca{bottom:159.708000pt;}
.y154{bottom:159.714667pt;}
.y1db{bottom:160.130667pt;}
.y1af{bottom:160.500000pt;}
.y225{bottom:160.902667pt;}
.y170{bottom:162.977333pt;}
.y13e{bottom:164.430667pt;}
.y5d{bottom:165.086667pt;}
.ye2{bottom:166.377333pt;}
.y110{bottom:170.452000pt;}
.y30{bottom:172.521333pt;}
.y94{bottom:172.858667pt;}
.y1d7{bottom:173.205333pt;}
.yb5{bottom:173.257333pt;}
.y18{bottom:175.052000pt;}
.y224{bottom:176.245333pt;}
.y153{bottom:176.452000pt;}
.y1ae{bottom:177.237333pt;}
.y1da{bottom:179.152000pt;}
.y5c{bottom:181.824000pt;}
.y165{bottom:182.914800pt;}
.y13d{bottom:185.445333pt;}
.y1ef{bottom:185.808000pt;}
.y1d6{bottom:185.825333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y10f{bottom:187.189333pt;}
.ye1{bottom:187.392000pt;}
.y2f{bottom:188.421333pt;}
.y93{bottom:189.596000pt;}
.yb4{bottom:189.994667pt;}
.y223{bottom:191.588000pt;}
.y152{bottom:193.189333pt;}
.y1ad{bottom:193.974667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1d9{bottom:198.173333pt;}
.y5b{bottom:198.561333pt;}
.y1ee{bottom:201.429333pt;}
.y10e{bottom:203.926667pt;}
.y2e{bottom:204.322667pt;}
.y92{bottom:206.333333pt;}
.y13c{bottom:206.458667pt;}
.yb3{bottom:206.732000pt;}
.y222{bottom:206.930667pt;}
.ye0{bottom:208.405333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y151{bottom:209.926667pt;}
.y1ac{bottom:210.712000pt;}
.y5a{bottom:215.298667pt;}
.y1ed{bottom:217.050667pt;}
.y1d8{bottom:217.194667pt;}
.y10d{bottom:220.664000pt;}
.y221{bottom:222.273333pt;}
.y91{bottom:223.070667pt;}
.yb2{bottom:223.469333pt;}
.y150{bottom:226.664000pt;}
.y13b{bottom:227.473333pt;}
.ydf{bottom:229.420000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1ab{bottom:231.434667pt;}
.y59{bottom:232.036000pt;}
.y1ec{bottom:232.672000pt;}
.y1d5{bottom:236.216000pt;}
.y10c{bottom:237.401333pt;}
.y220{bottom:237.616000pt;}
.y90{bottom:239.808000pt;}
.yb1{bottom:240.206667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y14f{bottom:243.401333pt;}
.y1eb{bottom:248.293333pt;}
.y13a{bottom:248.486667pt;}
.yde{bottom:250.433333pt;}
.y58{bottom:252.758667pt;}
.y21f{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y10b{bottom:254.138667pt;}
.y1d4{bottom:255.237333pt;}
.y8f{bottom:256.545333pt;}
.yb0{bottom:256.944000pt;}
.y14e{bottom:260.138667pt;}
.y1aa{bottom:261.322667pt;}
.y139{bottom:263.098667pt;}
.y1ea{bottom:263.914667pt;}
.y2d{bottom:264.148000pt;}
.y254{bottom:268.234667pt;}
.y21e{bottom:268.301333pt;}
.y10a{bottom:270.876000pt;}
.ydd{bottom:271.448000pt;}
.y8e{bottom:273.282667pt;}
.yaf{bottom:273.681333pt;}
.y1d3{bottom:274.258667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y1a9{bottom:278.060000pt;}
.y1e9{bottom:279.536000pt;}
.y2c{bottom:280.048000pt;}
.y253{bottom:283.577333pt;}
.y21d{bottom:283.644000pt;}
.y138{bottom:284.113333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y109{bottom:287.613333pt;}
.y8d{bottom:290.020000pt;}
.yae{bottom:290.417333pt;}
.ydc{bottom:292.461333pt;}
.y1d2{bottom:293.281333pt;}
.y1a8{bottom:294.797333pt;}
.y2b{bottom:295.949333pt;}
.y252{bottom:298.920000pt;}
.y21c{bottom:298.985333pt;}
.y14d{bottom:300.549333pt;}
.y108{bottom:304.350667pt;}
.y1e8{bottom:304.764000pt;}
.y137{bottom:305.126667pt;}
.y8c{bottom:306.757333pt;}
.yad{bottom:307.154667pt;}
.yf{bottom:309.452000pt;}
.y1a7{bottom:311.534667pt;}
.y2a{bottom:311.849333pt;}
.y1d1{bottom:312.302667pt;}
.ydb{bottom:313.476000pt;}
.y21b{bottom:314.328000pt;}
.y57{bottom:319.558667pt;}
.y107{bottom:321.088000pt;}
.y14c{bottom:321.562667pt;}
.y8b{bottom:323.494667pt;}
.yac{bottom:323.892000pt;}
.y1ca{bottom:325.654667pt;}
.y136{bottom:326.141333pt;}
.y1a6{bottom:328.272000pt;}
.y21a{bottom:329.670667pt;}
.y1d0{bottom:331.324000pt;}
.y251{bottom:333.656000pt;}
.yda{bottom:334.489333pt;}
.y56{bottom:336.853333pt;}
.y29{bottom:337.048000pt;}
.y1e7{bottom:337.441333pt;}
.y1c9{bottom:338.273333pt;}
.y8a{bottom:340.232000pt;}
.yab{bottom:340.629333pt;}
.y14b{bottom:342.577333pt;}
.ye{bottom:343.809333pt;}
.y1a5{bottom:345.009333pt;}
.y219{bottom:345.013333pt;}
.y135{bottom:347.154667pt;}
.y250{bottom:348.998667pt;}
.y1cf{bottom:350.345333pt;}
.y106{bottom:353.993333pt;}
.yd9{bottom:355.504000pt;}
.y89{bottom:356.968000pt;}
.yaa{bottom:357.366667pt;}
.y218{bottom:360.356000pt;}
.y28{bottom:360.918667pt;}
.y1e6{bottom:361.033333pt;}
.y1a4{bottom:361.746667pt;}
.yd{bottom:362.706666pt;}
.y14a{bottom:363.590667pt;}
.y24f{bottom:364.341333pt;}
.y173{bottom:365.493853pt;}
.y105{bottom:366.613333pt;}
.y134{bottom:368.169333pt;}
.y1ce{bottom:369.366667pt;}
.y55{bottom:370.089333pt;}
.y88{bottom:373.705333pt;}
.y172{bottom:374.053733pt;}
.ya9{bottom:374.104000pt;}
.y217{bottom:375.698667pt;}
.yd8{bottom:376.517333pt;}
.y1e5{bottom:376.654667pt;}
.y27{bottom:376.818667pt;}
.y133{bottom:378.424000pt;}
.y1a3{bottom:378.484000pt;}
.y24e{bottom:379.684000pt;}
.y104{bottom:383.362667pt;}
.y149{bottom:384.605333pt;}
.y54{bottom:387.384000pt;}
.y1cd{bottom:388.388000pt;}
.y87{bottom:390.442667pt;}
.ya8{bottom:390.841333pt;}
.y216{bottom:391.041333pt;}
.y26{bottom:392.720000pt;}
.y24d{bottom:395.025333pt;}
.y1a2{bottom:395.221333pt;}
.yd7{bottom:397.532000pt;}
.y15f{bottom:398.234045pt;}
.y16d{bottom:399.289600pt;}
.y1e4{bottom:400.246667pt;}
.y103{bottom:404.376000pt;}
.y53{bottom:404.678667pt;}
.y148{bottom:405.618667pt;}
.y215{bottom:406.384000pt;}
.y86{bottom:407.180000pt;}
.y1cc{bottom:407.409333pt;}
.ya7{bottom:407.578667pt;}
.y25{bottom:408.620000pt;}
.y24c{bottom:410.368000pt;}
.y1a1{bottom:411.958667pt;}
.y15e{bottom:415.353549pt;}
.y132{bottom:417.289333pt;}
.yd6{bottom:418.545333pt;}
.y102{bottom:418.988000pt;}
.y16c{bottom:419.289352pt;}
.y214{bottom:421.725333pt;}
.y52{bottom:421.974667pt;}
.y1e3{bottom:423.838667pt;}
.y85{bottom:423.917333pt;}
.ya6{bottom:424.316000pt;}
.y24{bottom:424.520000pt;}
.y24b{bottom:425.710667pt;}
.y1cb{bottom:426.430667pt;}
.y147{bottom:426.633333pt;}
.y1a0{bottom:428.696000pt;}
.yfd{bottom:432.258667pt;}
.y15d{bottom:432.473053pt;}
.y131{bottom:434.385333pt;}
.y213{bottom:437.068000pt;}
.y51{bottom:439.269333pt;}
.yd5{bottom:439.560000pt;}
.y101{bottom:440.002667pt;}
.y23{bottom:440.421333pt;}
.y84{bottom:440.654667pt;}
.ya5{bottom:441.053333pt;}
.y19f{bottom:445.433333pt;}
.y1c8{bottom:445.452000pt;}
.yfc{bottom:446.870667pt;}
.yc{bottom:446.990669pt;}
.y1e2{bottom:447.429333pt;}
.y146{bottom:447.646667pt;}
.y15c{bottom:449.513733pt;}
.y212{bottom:452.410667pt;}
.y100{bottom:454.614667pt;}
.y22{bottom:456.321333pt;}
.y24a{bottom:456.396000pt;}
.y50{bottom:456.564000pt;}
.y83{bottom:457.392000pt;}
.ya4{bottom:457.790667pt;}
.yd4{bottom:460.573333pt;}
.y19e{bottom:462.170667pt;}
.yb{bottom:462.990669pt;}
.y1e1{bottom:463.050667pt;}
.y1c7{bottom:464.473333pt;}
.y130{bottom:467.366667pt;}
.y211{bottom:467.753333pt;}
.y145{bottom:468.661333pt;}
.y249{bottom:471.738667pt;}
.y4f{bottom:473.860000pt;}
.y82{bottom:474.129333pt;}
.ya3{bottom:474.528000pt;}
.yff{bottom:475.628000pt;}
.y1c3{bottom:477.548000pt;}
.y1e0{bottom:478.672000pt;}
.y19d{bottom:478.908000pt;}
.ya{bottom:478.990666pt;}
.yd3{bottom:481.588000pt;}
.y210{bottom:483.096000pt;}
.y1c6{bottom:483.494667pt;}
.y12f{bottom:484.104000pt;}
.y248{bottom:487.081333pt;}
.y144{bottom:489.674667pt;}
.y1c2{bottom:490.168000pt;}
.yfe{bottom:490.240000pt;}
.y81{bottom:490.866667pt;}
.y4e{bottom:491.154667pt;}
.ya2{bottom:491.265333pt;}
.y1df{bottom:494.294667pt;}
.y9{bottom:494.990666pt;}
.y19c{bottom:495.645333pt;}
.y15b{bottom:498.153853pt;}
.y20f{bottom:498.438667pt;}
.y12e{bottom:500.841333pt;}
.y247{bottom:502.424000pt;}
.y1c5{bottom:502.516000pt;}
.yd2{bottom:502.601333pt;}
.y15a{bottom:506.713733pt;}
.y80{bottom:507.604000pt;}
.ya1{bottom:508.002667pt;}
.y4d{bottom:508.450667pt;}
.y1de{bottom:509.916000pt;}
.y143{bottom:510.689333pt;}
.y19b{bottom:512.381333pt;}
.y20e{bottom:513.781333pt;}
.y12d{bottom:517.578667pt;}
.y246{bottom:517.766667pt;}
.yfb{bottom:518.346667pt;}
.y1c4{bottom:521.537333pt;}
.yd1{bottom:523.616000pt;}
.y7f{bottom:524.341333pt;}
.ya0{bottom:524.740000pt;}
.y4c{bottom:525.745333pt;}
.y19a{bottom:529.118667pt;}
.y20d{bottom:529.124000pt;}
.y142{bottom:531.702667pt;}
.y245{bottom:533.108000pt;}
.y12c{bottom:534.316000pt;}
.y1c1{bottom:540.558667pt;}
.y7e{bottom:541.078667pt;}
.y9f{bottom:541.477333pt;}
.y4b{bottom:543.040000pt;}
.y20c{bottom:544.466667pt;}
.yd0{bottom:544.629333pt;}
.y199{bottom:545.856000pt;}
.y141{bottom:546.314667pt;}
.y244{bottom:548.450667pt;}
.yfa{bottom:550.578667pt;}
.y12b{bottom:551.053333pt;}
.y7d{bottom:557.816000pt;}
.y9e{bottom:558.214667pt;}
.y20b{bottom:559.808000pt;}
.y4a{bottom:560.336000pt;}
.y1b3{bottom:561.801333pt;}
.y198{bottom:562.593333pt;}
.y243{bottom:563.793333pt;}
.ycf{bottom:565.644000pt;}
.y164{bottom:566.809333pt;}
.y1c0{bottom:567.270667pt;}
.yf9{bottom:567.329333pt;}
.y12a{bottom:567.790667pt;}
.y8{bottom:573.786667pt;}
.y7c{bottom:574.553333pt;}
.y9d{bottom:574.952000pt;}
.y20a{bottom:575.150667pt;}
.y49{bottom:577.630667pt;}
.y242{bottom:579.136000pt;}
.y197{bottom:579.330667pt;}
.y129{bottom:584.526667pt;}
.y159{bottom:586.746667pt;}
.yf8{bottom:588.342667pt;}
.y209{bottom:590.493333pt;}
.y7b{bottom:591.290667pt;}
.y9c{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.yce{bottom:593.749333pt;}
.y241{bottom:594.478667pt;}
.y48{bottom:594.925333pt;}
.y196{bottom:596.068000pt;}
.y1bf{bottom:599.502667pt;}
.y128{bottom:601.264000pt;}
.y208{bottom:605.836000pt;}
.y7a{bottom:608.028000pt;}
.y9b{bottom:608.426667pt;}
.yf7{bottom:609.356000pt;}
.y240{bottom:609.821333pt;}
.y47{bottom:612.221333pt;}
.y195{bottom:612.805333pt;}
.y127{bottom:618.001333pt;}
.y1be{bottom:618.342667pt;}
.y207{bottom:621.178667pt;}
.yc9{bottom:624.765333pt;}
.y9a{bottom:625.164000pt;}
.y79{bottom:628.750667pt;}
.y46{bottom:629.516000pt;}
.yf6{bottom:630.370667pt;}
.y126{bottom:634.738667pt;}
.y206{bottom:636.521333pt;}
.y1bd{bottom:637.364000pt;}
.y23f{bottom:640.506667pt;}
.yc8{bottom:641.502667pt;}
.y99{bottom:641.901333pt;}
.y194{bottom:642.641333pt;}
.y6{bottom:645.598667pt;}
.y45{bottom:646.812000pt;}
.yf5{bottom:651.384000pt;}
.y125{bottom:651.476000pt;}
.y205{bottom:651.864000pt;}
.y23e{bottom:655.848000pt;}
.y1bc{bottom:656.385333pt;}
.yc7{bottom:658.240000pt;}
.y78{bottom:658.638667pt;}
.y193{bottom:659.737333pt;}
.y44{bottom:664.106667pt;}
.y204{bottom:667.206667pt;}
.y124{bottom:668.213333pt;}
.y3{bottom:668.977329pt;}
.y23d{bottom:671.190667pt;}
.yf4{bottom:672.398667pt;}
.yc6{bottom:674.977333pt;}
.y77{bottom:675.376000pt;}
.y1bb{bottom:675.406667pt;}
.y171{bottom:679.674667pt;}
.y1b9{bottom:680.554667pt;}
.y43{bottom:681.401333pt;}
.y203{bottom:682.548000pt;}
.y123{bottom:684.950667pt;}
.y23c{bottom:686.533333pt;}
.y1b6{bottom:686.957333pt;}
.yc5{bottom:691.714667pt;}
.y76{bottom:692.113333pt;}
.y1b8{bottom:693.174667pt;}
.yf3{bottom:693.412000pt;}
.y1b5{bottom:693.518667pt;}
.y1ba{bottom:694.428000pt;}
.y202{bottom:697.890667pt;}
.y42{bottom:698.697333pt;}
.y122{bottom:701.688000pt;}
.y23b{bottom:701.876000pt;}
.yc4{bottom:708.452000pt;}
.y75{bottom:708.850667pt;}
.y201{bottom:713.233333pt;}
.y1b7{bottom:713.449333pt;}
.yf2{bottom:714.426667pt;}
.y41{bottom:715.992000pt;}
.y23a{bottom:717.218667pt;}
.y121{bottom:718.425333pt;}
.yc3{bottom:725.189333pt;}
.y74{bottom:725.588000pt;}
.y200{bottom:728.576000pt;}
.y239{bottom:732.561333pt;}
.y40{bottom:733.286667pt;}
.y120{bottom:735.162667pt;}
.yf1{bottom:735.440000pt;}
.yc2{bottom:741.926667pt;}
.y73{bottom:742.324000pt;}
.y1b4{bottom:742.817333pt;}
.y1ff{bottom:743.918667pt;}
.y238{bottom:747.904000pt;}
.y3f{bottom:750.582667pt;}
.y11f{bottom:751.900000pt;}
.yf0{bottom:756.454667pt;}
.yc1{bottom:758.664000pt;}
.y72{bottom:759.061333pt;}
.y1fe{bottom:759.261333pt;}
.y237{bottom:763.246667pt;}
.y11e{bottom:768.637333pt;}
.y1fd{bottom:774.604000pt;}
.yc0{bottom:775.401333pt;}
.y71{bottom:775.798667pt;}
.yef{bottom:777.468000pt;}
.y236{bottom:778.589333pt;}
.y2{bottom:781.661334pt;}
.y3e{bottom:784.880000pt;}
.y11d{bottom:785.374667pt;}
.y1fc{bottom:789.946667pt;}
.ybf{bottom:792.138667pt;}
.y70{bottom:792.536000pt;}
.y235{bottom:793.930667pt;}
.yee{bottom:798.482667pt;}
.y3d{bottom:799.226667pt;}
.y1fb{bottom:805.289333pt;}
.y11c{bottom:806.097333pt;}
.ybe{bottom:808.874667pt;}
.y6f{bottom:809.273333pt;}
.y3c{bottom:817.430667pt;}
.yed{bottom:819.496000pt;}
.y1fa{bottom:820.630667pt;}
.y234{bottom:824.616000pt;}
.ybd{bottom:825.612000pt;}
.y6e{bottom:826.010667pt;}
.y16b{bottom:827.049912pt;}
.y3b{bottom:827.920000pt;}
.y1f9{bottom:835.973333pt;}
.y11b{bottom:838.981333pt;}
.y233{bottom:839.958667pt;}
.yec{bottom:840.510667pt;}
.ybc{bottom:842.349333pt;}
.y6d{bottom:842.748000pt;}
.y16a{bottom:844.169416pt;}
.y3a{bottom:846.122667pt;}
.y1f8{bottom:851.316000pt;}
.y11a{bottom:851.601333pt;}
.y232{bottom:855.301333pt;}
.ybb{bottom:859.086667pt;}
.y1{bottom:859.312000pt;}
.y6c{bottom:859.485333pt;}
.y169{bottom:861.288920pt;}
.yeb{bottom:861.524000pt;}
.y1f7{bottom:866.658667pt;}
.y119{bottom:870.409333pt;}
.y231{bottom:870.644000pt;}
.y6b{bottom:876.222667pt;}
.y118{bottom:876.720000pt;}
.y168{bottom:878.329600pt;}
.yba{bottom:879.809333pt;}
.y1f6{bottom:882.001333pt;}
.yea{bottom:882.538667pt;}
.y39{bottom:885.836000pt;}
.y230{bottom:885.986667pt;}
.y6a{bottom:892.960000pt;}
.y1f5{bottom:897.344000pt;}
.y22f{bottom:901.329333pt;}
.y117{bottom:902.050667pt;}
.ye9{bottom:903.552000pt;}
.y116{bottom:908.360000pt;}
.y69{bottom:909.697333pt;}
.y1f4{bottom:912.686667pt;}
.y22e{bottom:916.670667pt;}
.y38{bottom:921.320000pt;}
.ye8{bottom:924.566667pt;}
.y68{bottom:926.434667pt;}
.y167{bottom:926.969720pt;}
.y1f3{bottom:928.029333pt;}
.y22d{bottom:932.013333pt;}
.y115{bottom:933.692000pt;}
.y166{bottom:935.529600pt;}
.y114{bottom:940.001333pt;}
.y67{bottom:943.172000pt;}
.y1f2{bottom:943.370667pt;}
.ye7{bottom:945.580000pt;}
.y37{bottom:946.425333pt;}
.y22c{bottom:947.356000pt;}
.y140{bottom:955.836000pt;}
.y1f1{bottom:958.713333pt;}
.y66{bottom:959.909333pt;}
.y22b{bottom:962.698667pt;}
.y113{bottom:965.332000pt;}
.ye6{bottom:966.594667pt;}
.y36{bottom:971.530667pt;}
.y1f0{bottom:974.056000pt;}
.y65{bottom:976.646667pt;}
.y22a{bottom:978.041333pt;}
.y64{bottom:993.384000pt;}
.ye5{bottom:994.700000pt;}
.y63{bottom:1046.810667pt;}
.h8{height:28.560000pt;}
.h10{height:28.947524pt;}
.hc{height:33.771789pt;}
.hb{height:33.808982pt;}
.h9{height:35.242667pt;}
.h11{height:38.596538pt;}
.h12{height:38.639045pt;}
.hd{height:38.947124pt;}
.h1c{height:39.588281pt;}
.h3{height:42.840000pt;}
.h14{height:43.421286pt;}
.h13{height:43.469107pt;}
.h25{height:44.376858pt;}
.h1e{height:44.648438pt;}
.h16{height:48.245551pt;}
.h15{height:48.298685pt;}
.h1d{height:49.708594pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.h26{height:54.082620pt;}
.hf{height:55.992450pt;}
.h2{height:60.416000pt;}
.h22{height:62.868378pt;}
.h17{height:63.833871pt;}
.h18{height:63.839204pt;}
.h23{height:70.084378pt;}
.h1a{height:72.647953pt;}
.h5{height:85.589333pt;}
.h19{height:86.503774pt;}
.he{height:86.938214pt;}
.h21{height:87.148594pt;}
.h24{height:89.119045pt;}
.h4{height:105.826671pt;}
.h20{height:326.993333pt;}
.h1b{height:368.886667pt;}
.h1f{height:369.467867pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:328.740000pt;}
.w4{width:336.885333pt;}
.w6{width:487.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2d{left:-192.300000pt;}
.x2a{left:-183.572000pt;}
.x30{left:-177.172000pt;}
.x39{left:-161.012000pt;}
.x33{left:-153.252000pt;}
.x3e{left:-143.572000pt;}
.x42{left:-141.012000pt;}
.x38{left:-138.532000pt;}
.x41{left:-137.172000pt;}
.x35{left:-134.212000pt;}
.x36{left:-131.732000pt;}
.x3c{left:-129.012000pt;}
.x37{left:-127.412000pt;}
.x40{left:-124.052000pt;}
.x3b{left:-122.052000pt;}
.x3d{left:-121.092000pt;}
.x3a{left:-119.972000pt;}
.x3f{left:-113.492000pt;}
.x2e{left:-18.460000pt;}
.x34{left:-11.252000pt;}
.x2b{left:-9.732000pt;}
.x32{left:-3.332000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x43{left:59.232000pt;}
.x13{left:61.450667pt;}
.x17{left:71.712000pt;}
.x4b{left:74.778667pt;}
.x5d{left:76.309333pt;}
.x15{left:77.725333pt;}
.x12{left:83.937333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x44{left:149.825333pt;}
.x4{left:180.874667pt;}
.x8{left:220.912000pt;}
.x6{left:221.858667pt;}
.x19{left:230.296000pt;}
.x29{left:236.076000pt;}
.x26{left:238.233333pt;}
.x7{left:239.924000pt;}
.x25{left:241.366667pt;}
.x1e{left:242.645333pt;}
.x1c{left:243.541333pt;}
.x24{left:244.749333pt;}
.x10{left:246.753333pt;}
.x23{left:248.228000pt;}
.x9{left:250.204000pt;}
.x21{left:252.065333pt;}
.x1b{left:253.554667pt;}
.x27{left:255.509333pt;}
.x1d{left:256.590667pt;}
.x20{left:258.318667pt;}
.x1f{left:260.182667pt;}
.x22{left:266.041333pt;}
.xc{left:288.913333pt;}
.xe{left:301.693333pt;}
.xd{left:304.681333pt;}
.x52{left:305.609333pt;}
.xf{left:307.264000pt;}
.x4c{left:309.530667pt;}
.x59{left:327.256000pt;}
.x1a{left:336.342667pt;}
.x2f{left:347.542544pt;}
.x5e{left:353.041333pt;}
.x2c{left:356.270544pt;}
.x28{left:376.022667pt;}
.x3{left:404.408000pt;}
.x46{left:447.814667pt;}
.x16{left:458.764000pt;}
.x45{left:462.570667pt;}
.x47{left:467.006667pt;}
.x18{left:477.260000pt;}
.x31{left:488.667867pt;}
.x11{left:491.749333pt;}
.x14{left:541.482667pt;}
.x57{left:569.634667pt;}
.x5a{left:572.568000pt;}
.x53{left:583.406667pt;}
.x5c{left:585.516000pt;}
.x58{left:587.450667pt;}
.x51{left:588.524000pt;}
.x4f{left:590.192000pt;}
.x4e{left:591.616000pt;}
.x50{left:593.444000pt;}
.x4d{left:595.028000pt;}
.x56{left:596.664000pt;}
.x5b{left:598.205333pt;}
.x54{left:600.585333pt;}
.x55{left:602.408000pt;}
.x48{left:604.836000pt;}
.xa{left:622.710667pt;}
.x49{left:678.814667pt;}
.x4a{left:703.904000pt;}
.xb{left:721.540000pt;}
}




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