
    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_14c3a2ab6bc60ad69d483ab1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.705000;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_270591a7067df289682c6ad2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_830744ad41435a50dd4d573e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_5e536fa92900301b3bad9f21.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_60a89621ef4b12d509ce3eb5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897091;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_a66ec80ffa6aeff050493e3c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_d5009aba4d7304c2646aa904.woff')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_d5f544325b3d63c0349a96e8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3fde63291575dd994c87552f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_35fff63262cce7aa4ea0ba70.woff')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_197e1089f50e1a161c1e576e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3daf47e462dca1226422802f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_2958be46ffcce29ddb513afa.woff')format("woff");}.fff{font-family:fff;line-height:2.999000;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_161b579a9f2ac296d18dfbad.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_4659ba112660a6723b3a9fad.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.052000;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:ff1f;src:url('chunks/assets/font_134b162a97466208a21e892c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.908000;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;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff22;src:url('chunks/assets/font_1765659c5f31f0c9267f2368.woff')format("woff");}.ff22{font-family:ff22;line-height:1.000000;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;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff25;src:url('chunks/assets/font_1b97f949ff175b9e2eb9dbde.woff')format("woff");}.ff25{font-family:ff25;line-height:0.923000;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:ff26;src:url('chunks/assets/font_4b21772c283dff17ba238062.woff')format("woff");}.ff26{font-family:ff26;line-height:0.704000;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:ff27;src:url('chunks/assets/font_49f8852e8a1e47b5e5ad915f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{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);}
.mf{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);}
.m1a{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);}
.me{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);}
.m14{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);}
.m12{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);}
.m4{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);}
.m11{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);}
.m20{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);}
.m10{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);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m1e{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);}
.m5{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);}
.ma{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);}
.m17{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);}
.m19{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);}
.m23{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);}
.m8{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);}
.m21{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);}
.mc{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);}
.m13{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);}
.m6{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);}
.m7{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);}
.m22{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);}
.m1d{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);}
.m18{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);}
.md{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1c{vertical-align:-105.204000px;}
.v1f{vertical-align:-87.276000px;}
.v2f{vertical-align:-58.512000px;}
.v3{vertical-align:-26.034000px;}
.v12{vertical-align:-23.754000px;}
.v1e{vertical-align:-17.928000px;}
.ve{vertical-align:-12.912000px;}
.v2{vertical-align:-10.758000px;}
.v13{vertical-align:-9.408921px;}
.v11{vertical-align:-8.085868px;}
.v1a{vertical-align:-5.976000px;}
.v30{vertical-align:-3.828000px;}
.v0{vertical-align:0.000000px;}
.v2a{vertical-align:6.392272px;}
.v2d{vertical-align:7.666256px;}
.v2b{vertical-align:9.346276px;}
.v14{vertical-align:10.764000px;}
.v2e{vertical-align:12.136376px;}
.v27{vertical-align:13.620000px;}
.v17{vertical-align:15.518760px;}
.v5{vertical-align:17.730000px;}
.v22{vertical-align:19.301760px;}
.v15{vertical-align:20.724000px;}
.v10{vertical-align:22.092883px;}
.v18{vertical-align:23.754000px;}
.v16{vertical-align:24.874040px;}
.v4{vertical-align:26.034000px;}
.v6{vertical-align:27.783518px;}
.v8{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.vc{vertical-align:38.442000px;}
.vb{vertical-align:48.522000px;}
.vf{vertical-align:50.046000px;}
.v9{vertical-align:53.430000px;}
.v2c{vertical-align:54.885623px;}
.v26{vertical-align:58.212000px;}
.v23{vertical-align:62.994000px;}
.v29{vertical-align:67.758000px;}
.v19{vertical-align:74.556000px;}
.v21{vertical-align:78.822000px;}
.v7{vertical-align:84.348000px;}
.v1b{vertical-align:91.506000px;}
.v28{vertical-align:94.080000px;}
.v25{vertical-align:96.468000px;}
.v20{vertical-align:97.734000px;}
.va{vertical-align:105.204000px;}
.vd{vertical-align:115.968000px;}
.v24{vertical-align:132.336000px;}
.v1d{vertical-align:154.410000px;}
.ls4{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000007px;}
.ls75{letter-spacing:0.000163px;}
.ls83{letter-spacing:0.000330px;}
.ls1{letter-spacing:0.000445px;}
.ls34{letter-spacing:0.000472px;}
.lsc{letter-spacing:0.000760px;}
.ls4a{letter-spacing:0.001057px;}
.ls36{letter-spacing:0.001114px;}
.lsa{letter-spacing:0.001165px;}
.ls7d{letter-spacing:0.001249px;}
.ls16{letter-spacing:0.001695px;}
.ls87{letter-spacing:0.001897px;}
.ls14{letter-spacing:0.002143px;}
.ls5{letter-spacing:0.002227px;}
.ls86{letter-spacing:0.002674px;}
.ls54{letter-spacing:0.002759px;}
.lsad{letter-spacing:0.002915px;}
.ls3{letter-spacing:0.003056px;}
.ls37{letter-spacing:0.003206px;}
.lsa3{letter-spacing:0.003269px;}
.ls2{letter-spacing:0.003744px;}
.ls48{letter-spacing:0.004082px;}
.ls1c{letter-spacing:0.004200px;}
.lsd{letter-spacing:0.004391px;}
.ls6a{letter-spacing:0.004528px;}
.ls4b{letter-spacing:0.004765px;}
.lsb2{letter-spacing:0.005226px;}
.ls59{letter-spacing:0.005970px;}
.ls38{letter-spacing:0.339341px;}
.ls3a{letter-spacing:0.345341px;}
.ls84{letter-spacing:0.610947px;}
.ls90{letter-spacing:0.614672px;}
.ls7c{letter-spacing:1.158369px;}
.ls80{letter-spacing:1.162094px;}
.lsa2{letter-spacing:1.606648px;}
.ls5c{letter-spacing:1.935333px;}
.ls81{letter-spacing:2.347143px;}
.ls47{letter-spacing:2.349242px;}
.ls8e{letter-spacing:2.566924px;}
.ls4e{letter-spacing:2.574492px;}
.ls33{letter-spacing:2.580492px;}
.ls58{letter-spacing:2.597025px;}
.lsb{letter-spacing:2.984915px;}
.ls15{letter-spacing:2.985072px;}
.ls32{letter-spacing:2.988960px;}
.ls18{letter-spacing:2.991072px;}
.ls49{letter-spacing:3.109192px;}
.ls2a{letter-spacing:3.289526px;}
.ls30{letter-spacing:3.447713px;}
.ls46{letter-spacing:3.454878px;}
.ls40{letter-spacing:3.460094px;}
.ls21{letter-spacing:3.466566px;}
.ls6{letter-spacing:3.472940px;}
.ls8f{letter-spacing:3.504370px;}
.ls3d{letter-spacing:3.530222px;}
.ls17{letter-spacing:3.896143px;}
.ls1d{letter-spacing:4.400022px;}
.ls82{letter-spacing:4.453392px;}
.ls8d{letter-spacing:4.456469px;}
.ls9a{letter-spacing:4.722272px;}
.ls61{letter-spacing:5.200477px;}
.lsb1{letter-spacing:5.350571px;}
.ls9e{letter-spacing:5.379804px;}
.ls85{letter-spacing:5.453877px;}
.ls91{letter-spacing:5.772768px;}
.ls96{letter-spacing:5.798233px;}
.lsa0{letter-spacing:5.917784px;}
.ls62{letter-spacing:6.276438px;}
.ls8a{letter-spacing:6.310650px;}
.ls88{letter-spacing:7.009689px;}
.lsb0{letter-spacing:7.166915px;}
.ls13{letter-spacing:7.168404px;}
.ls69{letter-spacing:7.172012px;}
.ls7b{letter-spacing:7.172759px;}
.ls74{letter-spacing:7.173657px;}
.lsb3{letter-spacing:7.174404px;}
.lsf{letter-spacing:7.174893px;}
.ls4c{letter-spacing:7.967518px;}
.ls92{letter-spacing:8.169008px;}
.lsaf{letter-spacing:8.765073px;}
.ls10{letter-spacing:9.754765px;}
.ls4f{letter-spacing:10.160915px;}
.ls53{letter-spacing:10.171165px;}
.ls9c{letter-spacing:11.297588px;}
.lsae{letter-spacing:11.874935px;}
.ls6e{letter-spacing:11.954012px;}
.ls78{letter-spacing:11.955657px;}
.ls29{letter-spacing:11.959114px;}
.ls52{letter-spacing:14.155165px;}
.ls8c{letter-spacing:14.348786px;}
.lse{letter-spacing:14.527240px;}
.ls5b{letter-spacing:14.942915px;}
.ls68{letter-spacing:15.418566px;}
.ls70{letter-spacing:15.605831px;}
.ls1b{letter-spacing:15.611831px;}
.ls1a{letter-spacing:15.937473px;}
.ls19{letter-spacing:15.937695px;}
.ls79{letter-spacing:15.938759px;}
.ls25{letter-spacing:15.941073px;}
.ls11{letter-spacing:16.528737px;}
.ls50{letter-spacing:17.093543px;}
.lsa4{letter-spacing:18.208648px;}
.ls7e{letter-spacing:19.918440px;}
.ls27{letter-spacing:19.919123px;}
.ls23{letter-spacing:19.919518px;}
.ls28{letter-spacing:19.921473px;}
.ls5e{letter-spacing:19.925123px;}
.ls8{letter-spacing:19.925518px;}
.ls43{letter-spacing:19.927473px;}
.ls67{letter-spacing:19.928991px;}
.lsa1{letter-spacing:21.861333px;}
.ls4d{letter-spacing:22.399473px;}
.ls6d{letter-spacing:22.866532px;}
.ls2c{letter-spacing:22.910915px;}
.ls5a{letter-spacing:22.912053px;}
.ls22{letter-spacing:22.914960px;}
.lsa6{letter-spacing:22.916915px;}
.ls1f{letter-spacing:22.917325px;}
.ls6c{letter-spacing:23.111518px;}
.ls12{letter-spacing:23.113473px;}
.ls5d{letter-spacing:23.115477px;}
.ls42{letter-spacing:23.386566px;}
.lsa5{letter-spacing:23.405123px;}
.lsb4{letter-spacing:23.411123px;}
.ls20{letter-spacing:23.415316px;}
.ls7{letter-spacing:24.099471px;}
.ls2b{letter-spacing:25.823033px;}
.ls24{letter-spacing:25.982044px;}
.ls3b{letter-spacing:26.396915px;}
.lsab{letter-spacing:26.596180px;}
.ls41{letter-spacing:26.854566px;}
.lsaa{letter-spacing:27.094404px;}
.ls31{letter-spacing:27.095518px;}
.ls2d{letter-spacing:27.097473px;}
.ls77{letter-spacing:27.716915px;}
.ls89{letter-spacing:31.069231px;}
.ls60{letter-spacing:31.980532px;}
.ls5f{letter-spacing:33.024532px;}
.ls93{letter-spacing:33.952459px;}
.ls63{letter-spacing:34.596532px;}
.ls66{letter-spacing:34.908532px;}
.ls73{letter-spacing:35.382532px;}
.ls64{letter-spacing:35.466532px;}
.ls95{letter-spacing:35.538532px;}
.ls97{letter-spacing:35.640532px;}
.ls99{letter-spacing:35.682532px;}
.ls98{letter-spacing:35.718532px;}
.ls6b{letter-spacing:35.812528px;}
.ls9f{letter-spacing:35.814532px;}
.ls9{letter-spacing:38.518677px;}
.ls71{letter-spacing:38.713473px;}
.lsa8{letter-spacing:39.850800px;}
.ls76{letter-spacing:40.670759px;}
.ls65{letter-spacing:43.935066px;}
.ls0{letter-spacing:46.488308px;}
.lsa7{letter-spacing:47.020404px;}
.lsac{letter-spacing:51.815518px;}
.lsa9{letter-spacing:57.977518px;}
.ls51{letter-spacing:68.970492px;}
.ls72{letter-spacing:85.108404px;}
.ls7a{letter-spacing:88.465473px;}
.ls35{letter-spacing:94.874915px;}
.ls2e{letter-spacing:109.371035px;}
.ls2f{letter-spacing:123.606755px;}
.ls7f{letter-spacing:132.801625px;}
.ls9b{letter-spacing:183.660532px;}
.ls9d{letter-spacing:185.904532px;}
.ls1e{letter-spacing:253.138893px;}
.ls45{letter-spacing:271.122955px;}
.ls8b{letter-spacing:315.013412px;}
.ls55{letter-spacing:330.111181px;}
.ls6f{letter-spacing:330.148404px;}
.ls39{letter-spacing:375.938915px;}
.ls94{letter-spacing:397.280706px;}
.ls44{letter-spacing:468.298566px;}
.ls56{letter-spacing:475.265792px;}
.ls3c{letter-spacing:543.148619px;}
.ls3e{letter-spacing:607.205575px;}
.ls3f{letter-spacing:627.171388px;}
.ls26{letter-spacing:857.638180px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws73{word-spacing:-271.122955px;}
.ws32{word-spacing:-71.731200px;}
.ws39{word-spacing:-54.796746px;}
.ws94{word-spacing:-51.789926px;}
.ws84{word-spacing:-47.324343px;}
.ws14{word-spacing:-45.664082px;}
.wsf0{word-spacing:-43.157983px;}
.ws4c{word-spacing:-42.637126px;}
.wsee{word-spacing:-38.937826px;}
.wsc0{word-spacing:-33.211407px;}
.ws19{word-spacing:-32.278875px;}
.ws82{word-spacing:-29.388273px;}
.ws2{word-spacing:-26.899125px;}
.ws52{word-spacing:-25.651077px;}
.ws56{word-spacing:-22.416000px;}
.ws36{word-spacing:-22.261092px;}
.wscd{word-spacing:-20.619302px;}
.ws9{word-spacing:-19.510886px;}
.wsc9{word-spacing:-18.245709px;}
.ws4e{word-spacing:-18.183288px;}
.wsf{word-spacing:-14.111859px;}
.wsce{word-spacing:-13.792176px;}
.ws102{word-spacing:-10.508621px;}
.wscb{word-spacing:-8.761348px;}
.ws83{word-spacing:-8.385911px;}
.wsc8{word-spacing:-7.833586px;}
.ws92{word-spacing:-7.559318px;}
.wsb4{word-spacing:-6.336214px;}
.wse7{word-spacing:-5.977560px;}
.wsd3{word-spacing:-5.858009px;}
.wse5{word-spacing:-5.439580px;}
.wsb3{word-spacing:-5.260253px;}
.wsd7{word-spacing:-4.782048px;}
.wsca{word-spacing:-4.226307px;}
.ws33{word-spacing:-3.586560px;}
.ws60{word-spacing:-3.578077px;}
.ws5d{word-spacing:-3.575318px;}
.ws5c{word-spacing:-3.572077px;}
.wsc1{word-spacing:-3.569368px;}
.ws37{word-spacing:-3.540566px;}
.wsbf{word-spacing:-3.443098px;}
.wsd1{word-spacing:-3.299635px;}
.ws80{word-spacing:-3.154852px;}
.ws31{word-spacing:-3.084442px;}
.ws22{word-spacing:-2.932366px;}
.wsfc{word-spacing:-2.797517px;}
.wsa5{word-spacing:-2.295398px;}
.ws65{word-spacing:-1.819638px;}
.wsa6{word-spacing:-1.578086px;}
.ws76{word-spacing:-1.034183px;}
.ws8{word-spacing:-0.932506px;}
.ws27{word-spacing:-0.860774px;}
.ws29{word-spacing:-0.789043px;}
.wse{word-spacing:-0.717312px;}
.wsea{word-spacing:-0.227147px;}
.ws4d{word-spacing:-0.216029px;}
.ws10{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.071731px;}
.ws24{word-spacing:-0.065455px;}
.wsb6{word-spacing:-0.059776px;}
.ws8a{word-spacing:-0.052364px;}
.ws61{word-spacing:-0.047821px;}
.ws81{word-spacing:-0.035866px;}
.wscc{word-spacing:-0.029689px;}
.ws11{word-spacing:0.000000px;}
.wsaa{word-spacing:0.215194px;}
.wsd0{word-spacing:0.267206px;}
.ws8e{word-spacing:0.286925px;}
.ws93{word-spacing:0.394522px;}
.ws35{word-spacing:0.430387px;}
.ws30{word-spacing:0.502118px;}
.ws2f{word-spacing:0.573850px;}
.wsf5{word-spacing:0.611844px;}
.wsfa{word-spacing:0.619063px;}
.ws38{word-spacing:0.645579px;}
.ws3a{word-spacing:0.731656px;}
.wsa{word-spacing:0.789043px;}
.ws5e{word-spacing:0.821971px;}
.wsb{word-spacing:0.827971px;}
.ws9d{word-spacing:1.075968px;}
.ws85{word-spacing:1.219430px;}
.ws51{word-spacing:1.362893px;}
.ws95{word-spacing:1.506355px;}
.ws9c{word-spacing:2.008474px;}
.wsf7{word-spacing:2.295398px;}
.ws17{word-spacing:2.367130px;}
.ws69{word-spacing:2.438861px;}
.ws6f{word-spacing:2.654054px;}
.ws3e{word-spacing:2.725786px;}
.wsff{word-spacing:2.797517px;}
.ws53{word-spacing:2.816633px;}
.wsfd{word-spacing:2.940979px;}
.wseb{word-spacing:3.000735px;}
.ws7b{word-spacing:3.024003px;}
.ws3b{word-spacing:3.156173px;}
.wse9{word-spacing:3.180062px;}
.ws7f{word-spacing:3.220366px;}
.ws3c{word-spacing:3.227904px;}
.wsf1{word-spacing:3.299613px;}
.wsef{word-spacing:3.314961px;}
.ws21{word-spacing:3.351276px;}
.wsed{word-spacing:3.359389px;}
.wsc{word-spacing:3.371366px;}
.ws8c{word-spacing:3.443098px;}
.ws50{word-spacing:3.514829px;}
.ws89{word-spacing:3.547639px;}
.ws16{word-spacing:3.586560px;}
.ws23{word-spacing:3.613094px;}
.ws1a{word-spacing:3.658291px;}
.ws68{word-spacing:3.678549px;}
.ws7{word-spacing:3.730022px;}
.ws49{word-spacing:3.744003px;}
.ws1c{word-spacing:3.801754px;}
.ws5{word-spacing:3.873485px;}
.ws43{word-spacing:3.879546px;}
.ws41{word-spacing:3.892796px;}
.ws34{word-spacing:3.894781px;}
.ws7e{word-spacing:3.940367px;}
.ws26{word-spacing:3.945216px;}
.wsd{word-spacing:4.016947px;}
.ws13{word-spacing:4.088678px;}
.ws12{word-spacing:4.160410px;}
.ws1b{word-spacing:4.232141px;}
.ws64{word-spacing:4.267640px;}
.ws42{word-spacing:4.303872px;}
.ws91{word-spacing:4.375603px;}
.ws6e{word-spacing:4.447334px;}
.ws1d{word-spacing:4.483200px;}
.ws9a{word-spacing:4.519066px;}
.ws8f{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.ws90{word-spacing:4.662528px;}
.wsc5{word-spacing:4.774370px;}
.wsd5{word-spacing:4.777285px;}
.ws9e{word-spacing:4.877722px;}
.ws55{word-spacing:4.913587px;}
.ws4f{word-spacing:4.949453px;}
.wsc7{word-spacing:4.985318px;}
.wsa1{word-spacing:5.021184px;}
.wsc6{word-spacing:5.219604px;}
.ws5a{word-spacing:5.249459px;}
.ws1{word-spacing:5.379825px;}
.ws58{word-spacing:5.379840px;}
.ws8d{word-spacing:5.451571px;}
.ws2c{word-spacing:5.526143px;}
.ws9f{word-spacing:5.559168px;}
.ws6{word-spacing:5.738496px;}
.ws6d{word-spacing:5.810227px;}
.ws8b{word-spacing:5.838550px;}
.wsf6{word-spacing:5.881958px;}
.wsf4{word-spacing:5.896288px;}
.ws75{word-spacing:5.904005px;}
.ws18{word-spacing:6.042605px;}
.ws2b{word-spacing:6.168883px;}
.ws2a{word-spacing:6.240614px;}
.wsf3{word-spacing:6.312346px;}
.ws2d{word-spacing:6.455775px;}
.ws6b{word-spacing:6.671002px;}
.ws6c{word-spacing:6.742733px;}
.wsf9{word-spacing:6.757060px;}
.wsa3{word-spacing:6.814464px;}
.wsa9{word-spacing:7.173120px;}
.ws86{word-spacing:7.282114px;}
.ws6a{word-spacing:7.316582px;}
.ws40{word-spacing:7.531776px;}
.ws0{word-spacing:7.748437px;}
.wsad{word-spacing:8.033894px;}
.wsb1{word-spacing:8.308808px;}
.ws7a{word-spacing:8.325825px;}
.wsb7{word-spacing:8.428360px;}
.wse2{word-spacing:8.488135px;}
.wsf2{word-spacing:8.521623px;}
.wsb2{word-spacing:8.667462px;}
.wsd4{word-spacing:8.727238px;}
.ws57{word-spacing:8.751206px;}
.wsb5{word-spacing:8.787013px;}
.ws77{word-spacing:8.798243px;}
.ws15{word-spacing:8.804243px;}
.ws5b{word-spacing:8.804574px;}
.ws5f{word-spacing:8.804943px;}
.wse6{word-spacing:8.846789px;}
.wsa8{word-spacing:9.181594px;}
.wsc3{word-spacing:9.253325px;}
.ws99{word-spacing:9.307644px;}
.wse4{word-spacing:9.384769px;}
.wsb9{word-spacing:9.564096px;}
.ws3d{word-spacing:9.683712px;}
.wsaf{word-spacing:10.102076px;}
.ws4b{word-spacing:10.158554px;}
.ws101{word-spacing:10.185830px;}
.wsa7{word-spacing:10.329293px;}
.wsc4{word-spacing:10.400954px;}
.ws2e{word-spacing:10.401024px;}
.ws104{word-spacing:10.759680px;}
.ws3f{word-spacing:10.974874px;}
.ws100{word-spacing:11.190067px;}
.ws4a{word-spacing:11.271282px;}
.ws9b{word-spacing:11.835648px;}
.wsfb{word-spacing:11.907379px;}
.wsab{word-spacing:12.122573px;}
.wsa0{word-spacing:12.194304px;}
.wsa4{word-spacing:12.481229px;}
.ws47{word-spacing:13.104011px;}
.ws48{word-spacing:13.169466px;}
.wsac{word-spacing:13.628928px;}
.ws103{word-spacing:13.844122px;}
.wsae{word-spacing:14.417971px;}
.ws105{word-spacing:14.848358px;}
.wsdd{word-spacing:20.407546px;}
.ws28{word-spacing:20.730317px;}
.wsdf{word-spacing:21.979546px;}
.wsbb{word-spacing:22.501546px;}
.wsda{word-spacing:22.535401px;}
.wse8{word-spacing:22.719396px;}
.wsec{word-spacing:22.934297px;}
.wsbd{word-spacing:23.155546px;}
.ws20{word-spacing:24.676384px;}
.ws70{word-spacing:25.003657px;}
.ws4{word-spacing:25.034189px;}
.ws98{word-spacing:25.062857px;}
.ws67{word-spacing:25.083637px;}
.ws62{word-spacing:25.206056px;}
.ws7d{word-spacing:25.364144px;}
.ws88{word-spacing:25.396385px;}
.ws63{word-spacing:25.723658px;}
.wsd6{word-spacing:26.477883px;}
.ws87{word-spacing:26.553208px;}
.ws74{word-spacing:27.556387px;}
.ws79{word-spacing:30.436389px;}
.ws59{word-spacing:35.251047px;}
.ws66{word-spacing:35.377633px;}
.ws1f{word-spacing:35.508972px;}
.ws46{word-spacing:35.934575px;}
.wscf{word-spacing:36.091891px;}
.wsa2{word-spacing:36.798106px;}
.wsdb{word-spacing:36.941321px;}
.wsd9{word-spacing:42.799330px;}
.wsba{word-spacing:43.875290px;}
.wsb0{word-spacing:44.891476px;}
.wsbc{word-spacing:44.951251px;}
.wsdc{word-spacing:45.489232px;}
.wsbe{word-spacing:45.967436px;}
.wsd2{word-spacing:46.326090px;}
.ws45{word-spacing:46.520015px;}
.wsb8{word-spacing:47.282500px;}
.wsd8{word-spacing:48.238909px;}
.wsde{word-spacing:48.418236px;}
.ws71{word-spacing:52.220314px;}
.ws54{word-spacing:58.281600px;}
.ws44{word-spacing:62.510645px;}
.ws96{word-spacing:83.925075px;}
.ws72{word-spacing:136.576205px;}
.ws7c{word-spacing:172.027868px;}
.wse3{word-spacing:172.093546px;}
.wse0{word-spacing:172.615546px;}
.wse1{word-spacing:173.287546px;}
.wsc2{word-spacing:212.050908px;}
.ws97{word-spacing:360.592018px;}
.ws1e{word-spacing:361.930719px;}
.ws78{word-spacing:395.566187px;}
.wsf8{word-spacing:557.566618px;}
.wsfe{word-spacing:788.801468px;}
._2a{margin-left:-271.122955px;}
._12{margin-left:-57.430574px;}
._36{margin-left:-55.175351px;}
._5{margin-left:-48.375386px;}
._46{margin-left:-47.084228px;}
._30{margin-left:-45.840441px;}
._16{margin-left:-44.415732px;}
._43{margin-left:-41.101978px;}
._6{margin-left:-39.509435px;}
._4{margin-left:-37.701814px;}
._b{margin-left:-35.793869px;}
._a{margin-left:-34.172744px;}
._9{margin-left:-32.795413px;}
._18{margin-left:-31.662152px;}
._35{margin-left:-30.171971px;}
._3e{margin-left:-28.186886px;}
._d{margin-left:-27.144673px;}
._14{margin-left:-25.178276px;}
._23{margin-left:-24.046952px;}
._47{margin-left:-22.825036px;}
._3f{margin-left:-20.361733px;}
._44{margin-left:-16.272309px;}
._45{margin-left:-14.117448px;}
._15{margin-left:-12.808236px;}
._3{margin-left:-10.759650px;}
._8{margin-left:-9.296338px;}
._2{margin-left:-8.091257px;}
._1e{margin-left:-7.021600px;}
._f{margin-left:-5.881958px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.668393px;}
._c{margin-left:-1.018591px;}
._13{width:1.129047px;}
._7{width:2.410162px;}
._11{width:3.843225px;}
._2e{width:4.867611px;}
._3b{width:6.250078px;}
._2f{width:7.278970px;}
._2b{width:8.476145px;}
._3d{width:10.563181px;}
._27{width:11.700055px;}
._e{width:12.925955px;}
._41{width:14.527795px;}
._1a{width:20.089207px;}
._26{width:22.809503px;}
._19{width:24.407260px;}
._1c{width:27.137937px;}
._10{width:28.331679px;}
._1d{width:30.805175px;}
._34{width:32.406581px;}
._2c{width:36.543343px;}
._1b{width:37.650800px;}
._20{width:38.749869px;}
._2d{width:40.827353px;}
._48{width:41.827714px;}
._25{width:43.202121px;}
._3c{width:44.866688px;}
._3a{width:46.445641px;}
._24{width:48.592253px;}
._22{width:49.923899px;}
._37{width:50.928811px;}
._39{width:52.112111px;}
._38{width:53.660284px;}
._21{width:54.996702px;}
._29{width:70.725368px;}
._1f{width:80.697600px;}
._40{width:84.968677px;}
._17{width:96.836850px;}
._4a{width:119.194568px;}
._4b{width:133.064643px;}
._28{width:141.274702px;}
._42{width:261.736512px;}
._49{width:433.055495px;}
._33{width:530.781298px;}
._32{width:542.206514px;}
._31{width:615.136511px;}
._4c{width:794.494771px;}
.fc9{color:rgb(236,0,140);}
.fc8{color:rgb(148,0,209);}
.fc7{color:rgb(0,153,0);}
.fc5{color:rgb(178,0,0);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,153);}
.fc2{color:transparent;}
.fc6{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,178);}
.fs38{font-size:22.267158px;}
.fs36{font-size:29.689420px;}
.fs2f{font-size:35.865600px;}
.fs37{font-size:37.111681px;}
.fs31{font-size:37.531200px;}
.fs26{font-size:41.089860px;}
.fs33{font-size:41.284320px;}
.fs11{font-size:42.785064px;}
.fs35{font-size:42.892800px;}
.fs39{font-size:44.534316px;}
.fs28{font-size:45.198846px;}
.fs5{font-size:47.820600px;}
.fs2a{font-size:49.307832px;}
.fs13{font-size:49.825020px;}
.fs1d{font-size:50.003940px;}
.fs7{font-size:50.189580px;}
.fs18{font-size:51.017400px;}
.fse{font-size:52.292856px;}
.fs22{font-size:52.785000px;}
.fs30{font-size:53.616000px;}
.fs15{font-size:54.807522px;}
.fs1f{font-size:55.004334px;}
.fs9{font-size:55.208538px;}
.fs1a{font-size:56.119140px;}
.fs2d{font-size:57.387792px;}
.fs23{font-size:58.063500px;}
.fs25{font-size:58.699800px;}
.fs32{font-size:58.977600px;}
.fs2{font-size:59.775600px;}
.fs21{font-size:60.004728px;}
.fs10{font-size:61.121520px;}
.fs24{font-size:63.342000px;}
.fs34{font-size:64.339200px;}
.fs27{font-size:64.569780px;}
.fsb{font-size:65.454600px;}
.fsc{font-size:67.912800px;}
.fs29{font-size:70.439760px;}
.fs12{font-size:71.178600px;}
.fs1c{font-size:71.434200px;}
.fs6{font-size:71.699400px;}
.fs3{font-size:71.731200px;}
.fs17{font-size:72.882000px;}
.fs2b{font-size:74.529600px;}
.fsd{font-size:74.704080px;}
.fs14{font-size:78.296460px;}
.fs1e{font-size:78.577620px;}
.fs8{font-size:78.869340px;}
.fs19{font-size:80.170200px;}
.fsf{font-size:81.495360px;}
.fs2c{font-size:81.982560px;}
.fs16{font-size:85.414320px;}
.fs20{font-size:85.721040px;}
.fsa{font-size:86.039280px;}
.fs1{font-size:86.077200px;}
.fs1b{font-size:87.458400px;}
.fs2e{font-size:89.435520px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:7.369576px;}
.y132{bottom:8.968341px;}
.y26{bottom:9.001636px;}
.yca{bottom:9.348718px;}
.y10e{bottom:9.495896px;}
.ye1{bottom:9.502030px;}
.ya9{bottom:10.056596px;}
.y98{bottom:10.260419px;}
.y80{bottom:10.660108px;}
.y131{bottom:11.563411px;}
.y25{bottom:11.606340px;}
.ya8{bottom:12.651667px;}
.y56{bottom:12.765484px;}
.y97{bottom:12.908085px;}
.yf6{bottom:13.199891px;}
.yc9{bottom:27.411086px;}
.y10d{bottom:28.732731px;}
.ye0{bottom:29.989636px;}
.y7f{bottom:36.100896px;}
.y130{bottom:36.495621px;}
.y24{bottom:36.631111px;}
.ya7{bottom:38.281476px;}
.y55{bottom:38.662545px;}
.yf5{bottom:38.702988px;}
.y96{bottom:39.057350px;}
.y10f{bottom:43.361940px;}
.ycb{bottom:54.455563px;}
.y57{bottom:57.170770px;}
.y11b{bottom:59.693876px;}
.y99{bottom:61.857435px;}
.ye3{bottom:65.375850px;}
.yee{bottom:65.482378px;}
.yef{bottom:67.422223px;}
.y81{bottom:69.072158px;}
.yf7{bottom:72.192981px;}
.y11a{bottom:75.954604px;}
.y33{bottom:82.045399px;}
.y27{bottom:84.269269px;}
.yed{bottom:86.387303px;}
.y119{bottom:90.971273px;}
.ycc{bottom:95.384240px;}
.yec{bottom:95.439913px;}
.y133{bottom:97.685713px;}
.y58{bottom:99.423660px;}
.y32{bottom:107.448273px;}
.yaa{bottom:107.556662px;}
.y9a{bottom:107.564511px;}
.y110{bottom:110.169235px;}
.yeb{bottom:111.334718px;}
.y82{bottom:113.914676px;}
.yea{bottom:120.387328px;}
.y28{bottom:126.041452px;}
.yf8{bottom:134.797845px;}
.ycd{bottom:136.312917px;}
.y3f{bottom:140.139000px;}
.y13{bottom:140.140500px;}
.y59{bottom:141.676549px;}
.y134{bottom:144.104921px;}
.yfc{bottom:153.270122px;}
.y9b{bottom:153.271586px;}
.yd2{bottom:155.101712px;}
.y5f{bottom:155.554268px;}
.yfd{bottom:157.369245px;}
.y88{bottom:158.668221px;}
.y83{bottom:158.757194px;}
.ye4{bottom:161.662579px;}
.y29{bottom:167.715608px;}
.y2e{bottom:169.855879px;}
.yfe{bottom:169.892068px;}
.y115{bottom:173.367336px;}
.y139{bottom:173.770819px;}
.y2f{bottom:173.799340px;}
.yab{bottom:174.089645px;}
.yae{bottom:175.556674px;}
.y116{bottom:176.316212px;}
.y111{bottom:177.020512px;}
.yce{bottom:177.241594px;}
.ya0{bottom:179.114787px;}
.y5a{bottom:183.929439px;}
.y1a2{bottom:184.971000px;}
.y30{bottom:185.846619px;}
.y89{bottom:187.417379px;}
.y170{bottom:187.578000px;}
.ye8{bottom:188.788819px;}
.ye7{bottom:189.783964px;}
.y135{bottom:190.563194px;}
.y64{bottom:191.518871px;}
.y146{bottom:194.916000px;}
.yf9{bottom:197.402709px;}
.y12{bottom:197.547000px;}
.y1c4{bottom:197.773500px;}
.y117{bottom:197.971806px;}
.y9c{bottom:198.978662px;}
.y71{bottom:200.446500px;}
.y140{bottom:200.737915px;}
.y213{bottom:202.858500px;}
.y84{bottom:203.774878px;}
.y2a{bottom:209.389764px;}
.y214{bottom:209.574000px;}
.y63{bottom:213.171382px;}
.y16f{bottom:214.468500px;}
.y188{bottom:215.067000px;}
.y212{bottom:215.160000px;}
.y1a1{bottom:215.388000px;}
.y215{bottom:216.117000px;}
.ycf{bottom:218.170270px;}
.y1dd{bottom:218.859000px;}
.y144{bottom:221.806500px;}
.y126{bottom:222.453000px;}
.y10{bottom:224.437500px;}
.y13f{bottom:226.046829px;}
.y5b{bottom:226.182328px;}
.y145{bottom:227.179500px;}
.y70{bottom:227.338500px;}
.y1c3{bottom:228.994500px;}
.y11{bottom:230.944500px;}
.y62{bottom:233.364828px;}
.y136{bottom:236.669877px;}
.y1a0{bottom:237.642000px;}
.yff{bottom:239.668100px;}
.yac{bottom:240.622627px;}
.y16e{bottom:241.359000px;}
.y187{bottom:241.957500px;}
.y211{bottom:242.050500px;}
.y112{bottom:244.003735px;}
.y9d{bottom:244.685737px;}
.ye5{bottom:245.069938px;}
.y1dc{bottom:245.749500px;}
.y85{bottom:248.344916px;}
.y125{bottom:249.343500px;}
.y2b{bottom:251.063920px;}
.yf{bottom:251.328000px;}
.y13e{bottom:251.355743px;}
.y100{bottom:252.190923px;}
.y6f{bottom:254.229000px;}
.ybd{bottom:255.558000px;}
.y1c1{bottom:255.885000px;}
.y61{bottom:256.555988px;}
.yd0{bottom:259.098947px;}
.y19f{bottom:259.897500px;}
.yfa{bottom:260.007573px;}
.y1c2{bottom:260.694000px;}
.y5c{bottom:268.435218px;}
.y1fa{bottom:268.680000px;}
.y210{bottom:268.941000px;}
.y1db{bottom:272.640000px;}
.y124{bottom:276.234000px;}
.y13d{bottom:276.692561px;}
.yd{bottom:278.218500px;}
.yd6{bottom:279.740706px;}
.y3e{bottom:281.268000px;}
.y19e{bottom:282.151500px;}
.ybc{bottom:282.448500px;}
.y1c0{bottom:282.777000px;}
.y137{bottom:282.952356px;}
.y16d{bottom:283.194000px;}
.y186{bottom:283.792500px;}
.ye{bottom:284.727000px;}
.y157{bottom:287.260500px;}
.y143{bottom:289.764000px;}
.y9e{bottom:290.392813px;}
.y2c{bottom:292.640050px;}
.y86{bottom:293.148508px;}
.y1f9{bottom:295.570500px;}
.yd5{bottom:298.462885px;}
.y1da{bottom:299.530500px;}
.yd1{bottom:300.027624px;}
.y13c{bottom:302.001474px;}
.y8d{bottom:302.199868px;}
.y123{bottom:303.124500px;}
.y19d{bottom:304.405500px;}
.yc{bottom:305.110500px;}
.y6e{bottom:306.748500px;}
.yad{bottom:307.057946px;}
.y20f{bottom:308.830500px;}
.ybb{bottom:309.340500px;}
.y16c{bottom:310.084500px;}
.y142{bottom:310.087500px;}
.y185{bottom:310.683000px;}
.y5d{bottom:310.688107px;}
.y113{bottom:310.884334px;}
.y22c{bottom:311.544000px;}
.yd4{bottom:317.185065px;}
.ye6{bottom:318.640442px;}
.y20e{bottom:321.130500px;}
.y3d{bottom:322.068000px;}
.y1f8{bottom:322.462500px;}
.yfb{bottom:322.612437px;}
.y1d9{bottom:326.422500px;}
.y19c{bottom:326.661000px;}
.y8c{bottom:326.901066px;}
.y13b{bottom:328.091700px;}
.y138{bottom:329.098105px;}
.y8b{bottom:329.253297px;}
.y122{bottom:330.015000px;}
.y141{bottom:330.411000px;}
.yb{bottom:332.001000px;}
.yb1{bottom:332.026162px;}
.y2d{bottom:334.412232px;}
.y1bf{bottom:335.296500px;}
.y9f{bottom:336.099889px;}
.yba{bottom:336.231000px;}
.y87{bottom:338.127266px;}
.y22b{bottom:338.436000px;}
.ya2{bottom:338.755536px;}
.y156{bottom:343.141500px;}
.ye9{bottom:344.459140px;}
.yd3{bottom:346.216815px;}
.y19b{bottom:348.915000px;}
.y16b{bottom:351.919500px;}
.y184{bottom:352.518000px;}
.y5e{bottom:352.940997px;}
.y1d8{bottom:353.313000px;}
.y121{bottom:356.907000px;}
.ya{bottom:358.891500px;}
.y12f{bottom:359.581500px;}
.yb9{bottom:363.121500px;}
.y22a{bottom:365.326500px;}
.y8a{bottom:368.040073px;}
.y13a{bottom:369.529117px;}
.yb0{bottom:369.900240px;}
.y19a{bottom:371.169000px;}
.y31{bottom:372.245360px;}
.yaf{bottom:372.738075px;}
.y20d{bottom:372.751500px;}
.y6d{bottom:372.780000px;}
.ya1{bottom:373.374486px;}
.y1f7{bottom:374.982000px;}
.y114{bottom:377.764932px;}
.y16a{bottom:378.811500px;}
.y183{bottom:379.408500px;}
.y1d7{bottom:380.203500px;}
.y53{bottom:383.013000px;}
.y120{bottom:383.797500px;}
.y9{bottom:385.782000px;}
.y101{bottom:386.939051px;}
.yb8{bottom:390.012000px;}
.y118{bottom:390.163632px;}
.y229{bottom:392.217000px;}
.y199{bottom:393.424500px;}
.y155{bottom:399.024000px;}
.y6c{bottom:399.670500px;}
.y1be{bottom:401.328000px;}
.y60{bottom:403.125075px;}
.y3c{bottom:403.939500px;}
.y1d6{bottom:407.094000px;}
.y52{bottom:409.905000px;}
.y10b{bottom:414.474000px;}
.y198{bottom:415.678500px;}
.yb7{bottom:416.904000px;}
.y169{bottom:420.645000px;}
.y182{bottom:421.243500px;}
.y6b{bottom:426.561000px;}
.y3b{bottom:430.830000px;}
.y20c{bottom:433.117500px;}
.y1d5{bottom:433.986000px;}
.y197{bottom:437.932500px;}
.y94{bottom:440.112000px;}
.yb6{bottom:443.794500px;}
.y228{bottom:444.736500px;}
.y1b8{bottom:446.633784px;}
.y168{bottom:447.537000px;}
.y181{bottom:448.134000px;}
.yde{bottom:448.929000px;}
.y11f{bottom:451.753500px;}
.y8{bottom:452.313000px;}
.y1bd{bottom:453.812983px;}
.y1f6{bottom:454.462500px;}
.y107{bottom:456.384000px;}
.y1b7{bottom:456.420553px;}
.y1b9{bottom:457.396530px;}
.y1bb{bottom:457.699194px;}
.y3a{bottom:457.720500px;}
.y20b{bottom:460.008000px;}
.y196{bottom:460.188000px;}
.y1b5{bottom:460.307695px;}
.y1bc{bottom:460.733288px;}
.y1d4{bottom:460.876500px;}
.y51{bottom:462.897000px;}
.y1b6{bottom:463.341789px;}
.y1ba{bottom:463.801839px;}
.y106{bottom:468.685500px;}
.yb5{bottom:470.685000px;}
.ydd{bottom:471.385500px;}
.y11e{bottom:472.078500px;}
.y109{bottom:472.110000px;}
.y180{bottom:475.024500px;}
.ydc{bottom:475.819500px;}
.y93{bottom:476.956500px;}
.y6a{bottom:479.082000px;}
.y108{bottom:481.929000px;}
.y195{bottom:482.442000px;}
.y39{bottom:484.611000px;}
.y1f5{bottom:485.836500px;}
.y20a{bottom:486.898500px;}
.y1d3{bottom:487.767000px;}
.y92{bottom:489.258000px;}
.y167{bottom:489.372000px;}
.y50{bottom:489.787500px;}
.y10a{bottom:490.504500px;}
.y11d{bottom:492.402000px;}
.ydb{bottom:498.277500px;}
.y1b4{bottom:499.618500px;}
.yda{bottom:502.710000px;}
.y1f4{bottom:508.090500px;}
.y38{bottom:511.503000px;}
.y194{bottom:511.747500px;}
.y11c{bottom:512.725500px;}
.y209{bottom:513.790500px;}
.y1d2{bottom:514.657500px;}
.y166{bottom:516.262500px;}
.y4f{bottom:516.678000px;}
.y17f{bottom:516.859500px;}
.y227{bottom:517.258500px;}
.y105{bottom:522.862500px;}
.y1b3{bottom:526.509000px;}
.y1f3{bottom:530.346000px;}
.y37{bottom:538.393500px;}
.y193{bottom:538.638000px;}
.yb4{bottom:538.642500px;}
.y154{bottom:539.592000px;}
.y10c{bottom:541.896000px;}
.y91{bottom:542.836500px;}
.y165{bottom:543.153000px;}
.y4e{bottom:543.570000px;}
.y17e{bottom:543.751500px;}
.y226{bottom:544.150500px;}
.y1f2{bottom:552.600000px;}
.y69{bottom:557.701500px;}
.yb3{bottom:558.966000px;}
.y7{bottom:564.105000px;}
.y192{bottom:565.530000px;}
.y208{bottom:566.310000px;}
.y153{bottom:566.482500px;}
.y1d1{bottom:567.177000px;}
.y4d{bottom:570.460500px;}
.yd9{bottom:570.667500px;}
.y225{bottom:571.041000px;}
.y1f1{bottom:574.854000px;}
.y67{bottom:578.025000px;}
.yb2{bottom:579.289500px;}
.y1b2{bottom:583.386000px;}
.y68{bottom:583.963500px;}
.y164{bottom:584.988000px;}
.y17d{bottom:585.585000px;}
.y104{bottom:590.820000px;}
.yd8{bottom:590.991000px;}
.y152{bottom:593.373000px;}
.y1b1{bottom:595.687500px;}
.y1f0{bottom:597.109500px;}
.y4c{bottom:597.351000px;}
.y66{bottom:598.348500px;}
.y7d{bottom:598.782000px;}
.ya5{bottom:599.488500px;}
.y207{bottom:599.691000px;}
.y22{bottom:601.446000px;}
.y36{bottom:606.349500px;}
.y224{bottom:607.885500px;}
.ya6{bottom:608.460000px;}
.y90{bottom:610.794000px;}
.y103{bottom:611.143500px;}
.yd7{bottom:611.314500px;}
.y163{bottom:611.878500px;}
.y17c{bottom:612.477000px;}
.y191{bottom:618.049500px;}
.y65{bottom:618.672000px;}
.y1ef{bottom:619.363500px;}
.ya4{bottom:619.812000px;}
.y223{bottom:620.185500px;}
.y151{bottom:620.263500px;}
.y4b{bottom:624.241500px;}
.y7c{bottom:625.672500px;}
.y35{bottom:626.673000px;}
.y21{bottom:628.336500px;}
.y8f{bottom:631.117500px;}
.y102{bottom:631.467000px;}
.y1d0{bottom:633.208500px;}
.yf3{bottom:635.545500px;}
.ya3{bottom:640.135500px;}
.yc8{bottom:640.485000px;}
.y1ee{bottom:641.617500px;}
.y34{bottom:646.998000px;}
.y150{bottom:647.155500px;}
.y54{bottom:647.842500px;}
.y1b0{bottom:650.818500px;}
.y4a{bottom:651.133500px;}
.yf2{bottom:651.180000px;}
.y8e{bottom:651.441000px;}
.y7b{bottom:652.563000px;}
.y162{bottom:653.713500px;}
.y17b{bottom:654.312000px;}
.y20{bottom:655.227000px;}
.yf1{bottom:655.869000px;}
.y1cf{bottom:660.100500px;}
.yf4{bottom:660.637500px;}
.y1ed{bottom:663.873000px;}
.y95{bottom:669.306000px;}
.y222{bottom:670.846500px;}
.y206{bottom:672.214500px;}
.y14f{bottom:674.046000px;}
.y6{bottom:676.035000px;}
.y23{bottom:676.168500px;}
.yf0{bottom:676.192500px;}
.y7a{bottom:679.453500px;}
.y161{bottom:680.604000px;}
.y7e{bottom:680.611500px;}
.y17a{bottom:681.202500px;}
.y1f{bottom:682.117500px;}
.y190{bottom:683.091000px;}
.y1ec{bottom:686.127000px;}
.y1ce{bottom:686.991000px;}
.yc7{bottom:689.005500px;}
.y221{bottom:697.737000px;}
.y205{bottom:699.105000px;}
.y14e{bottom:700.936500px;}
.y49{bottom:703.653000px;}
.y1af{bottom:705.207000px;}
.ydf{bottom:705.363000px;}
.y79{bottom:706.345500px;}
.y1eb{bottom:708.381000px;}
.y1e{bottom:709.009500px;}
.y18f{bottom:709.981500px;}
.yc6{bottom:710.674500px;}
.y160{bottom:722.439000px;}
.y179{bottom:723.037500px;}
.y204{bottom:725.995500px;}
.y14d{bottom:727.827000px;}
.y1ea{bottom:730.636500px;}
.y1d{bottom:735.900000px;}
.y1ae{bottom:736.581000px;}
.y18e{bottom:736.873500px;}
.y220{bottom:738.675000px;}
.y1cd{bottom:739.510500px;}
.yc5{bottom:741.327000px;}
.y5{bottom:745.444500px;}
.y15f{bottom:749.329500px;}
.y232{bottom:749.401500px;}
.y178{bottom:749.928000px;}
.y1e9{bottom:752.890500px;}
.y1ad{bottom:758.835000px;}
.y78{bottom:758.865000px;}
.y21f{bottom:765.565500px;}
.y14c{bottom:768.765000px;}
.y1cc{bottom:772.891500px;}
.y1e8{bottom:775.144500px;}
.y48{bottom:776.175000px;}
.y231{bottom:776.293500px;}
.y1ac{bottom:781.090500px;}
.yc4{bottom:783.960000px;}
.y203{bottom:784.692000px;}
.y4{bottom:785.092500px;}
.y77{bottom:785.755500px;}
.y18d{bottom:789.393000px;}
.y15e{bottom:791.164500px;}
.y177{bottom:791.763000px;}
.y21e{bottom:792.457500px;}
.y1c{bottom:794.596500px;}
.y14b{bottom:795.657000px;}
.y1e7{bottom:797.400000px;}
.y12e{bottom:802.602000px;}
.y230{bottom:803.184000px;}
.y1ab{bottom:812.310000px;}
.y21d{bottom:813.163500px;}
.y15d{bottom:818.055000px;}
.y176{bottom:818.653500px;}
.y21c{bottom:819.348000px;}
.y1e6{bottom:819.654000px;}
.y47{bottom:819.768000px;}
.y14a{bottom:822.547500px;}
.yc3{bottom:825.085500px;}
.y202{bottom:825.492000px;}
.y22f{bottom:830.074500px;}
.y46{bottom:832.069500px;}
.y1b{bottom:835.396500px;}
.y1aa{bottom:839.202000px;}
.y21b{bottom:840.054000px;}
.y1e5{bottom:841.908000px;}
.y15c{bottom:844.947000px;}
.y1cb{bottom:845.415000px;}
.y21a{bottom:846.238500px;}
.y149{bottom:849.438000px;}
.y76{bottom:851.787000px;}
.yc2{bottom:851.976000px;}
.y22e{bottom:856.965000px;}
.y175{bottom:860.488500px;}
.y18c{bottom:860.925000px;}
.y1e4{bottom:864.163500px;}
.y1ca{bottom:872.305500px;}
.y148{bottom:876.328500px;}
.y75{bottom:878.677500px;}
.yc1{bottom:878.868000px;}
.y3{bottom:882.253500px;}
.y45{bottom:886.204500px;}
.y1e3{bottom:886.417500px;}
.y15b{bottom:886.782000px;}
.y174{bottom:887.379000px;}
.y18b{bottom:887.815500px;}
.y1a9{bottom:891.721500px;}
.y12d{bottom:895.467000px;}
.y1c9{bottom:899.196000px;}
.y147{bottom:903.220500px;}
.y219{bottom:906.604500px;}
.y2{bottom:909.144000px;}
.y44{bottom:913.095000px;}
.y201{bottom:913.459500px;}
.y15a{bottom:913.672500px;}
.y18a{bottom:914.707500px;}
.y12c{bottom:917.134500px;}
.y1a{bottom:917.266500px;}
.y1e2{bottom:917.638500px;}
.y74{bottom:919.969500px;}
.y173{bottom:929.214000px;}
.y22d{bottom:929.818500px;}
.yc0{bottom:931.387500px;}
.y73{bottom:932.271000px;}
.y218{bottom:933.495000px;}
.y12b{bottom:938.803500px;}
.y43{bottom:939.985500px;}
.y189{bottom:941.598000px;}
.y19{bottom:944.158500px;}
.y1e1{bottom:944.529000px;}
.y200{bottom:948.010500px;}
.y1{bottom:948.790500px;}
.y1a6{bottom:951.180000px;}
.y1c8{bottom:953.584500px;}
.y159{bottom:955.507500px;}
.y172{bottom:956.104500px;}
.y217{bottom:960.385500px;}
.y12a{bottom:960.472500px;}
.y1a4{bottom:963.480000px;}
.y1ff{bottom:965.943000px;}
.y42{bottom:966.876000px;}
.y18{bottom:971.049000px;}
.y1e0{bottom:971.419500px;}
.y1a5{bottom:973.044000px;}
.y1a7{bottom:975.612000px;}
.y129{bottom:982.141500px;}
.y158{bottom:982.398000px;}
.y171{bottom:982.995000px;}
.y1fe{bottom:983.875500px;}
.y72{bottom:983.892000px;}
.y1c7{bottom:984.958500px;}
.y1a8{bottom:987.597000px;}
.y41{bottom:993.768000px;}
.y17{bottom:997.939500px;}
.y1df{bottom:998.311500px;}
.ybf{bottom:1000.294500px;}
.y1c6{bottom:1007.212500px;}
.y1fd{bottom:1012.269000px;}
.y128{bottom:1012.795500px;}
.y216{bottom:1012.905000px;}
.y16{bottom:1020.397500px;}
.y15{bottom:1024.830000px;}
.y1c5{bottom:1029.466500px;}
.y1fc{bottom:1030.201500px;}
.ybe{bottom:1041.094500px;}
.y40{bottom:1046.287500px;}
.y1fb{bottom:1048.135500px;}
.y1de{bottom:1050.831000px;}
.y14{bottom:1051.722000px;}
.y127{bottom:1055.427000px;}
.y1a3{bottom:1058.229000px;}
.h53{height:2.391024px;}
.h68{height:8.105212px;}
.h66{height:15.676079px;}
.h67{height:21.600740px;}
.h5c{height:24.496205px;}
.h69{height:24.554745px;}
.h50{height:25.249382px;}
.h70{height:25.683450px;}
.h6d{height:27.812455px;}
.h6c{height:29.933320px;}
.h6f{height:34.936598px;}
.ha{height:35.865450px;}
.h62{height:38.116205px;}
.h65{height:40.821523px;}
.h5b{height:41.484266px;}
.h46{height:43.349802px;}
.h74{height:44.831700px;}
.h59{height:45.251904px;}
.h20{height:46.145493px;}
.h6b{height:46.751555px;}
.h44{height:47.684783px;}
.h71{height:48.335783px;}
.h72{height:48.755599px;}
.h14{height:49.090950px;}
.h5{height:49.716243px;}
.h8{height:49.781453px;}
.h9{height:50.570496px;}
.h29{height:52.565396px;}
.h6{height:53.798400px;}
.h3c{height:55.688175px;}
.h6a{height:56.370091px;}
.h36{height:58.029572px;}
.h10{height:58.245008px;}
.h55{height:58.897176px;}
.h2f{height:59.205693px;}
.h49{height:59.619450px;}
.h3d{height:61.256993px;}
.h18{height:61.893450px;}
.hb{height:61.899450px;}
.h48{height:61.928289px;}
.h75{height:61.955523px;}
.h56{height:62.221368px;}
.h39{height:63.304988px;}
.h77{height:64.107450px;}
.h57{height:64.331158px;}
.h42{height:64.481730px;}
.h1f{height:64.483204px;}
.h3{height:64.557900px;}
.h3e{height:66.825810px;}
.h58{height:67.877856px;}
.h43{height:68.121118px;}
.hc{height:68.300496px;}
.h40{height:68.306496px;}
.h73{height:69.153262px;}
.h3f{height:71.528400px;}
.h1b{height:71.648004px;}
.h28{height:75.093423px;}
.h3a{height:75.363081px;}
.h13{height:75.642867px;}
.h4{height:76.067700px;}
.h30{height:76.890510px;}
.h45{height:76.893803px;}
.h47{height:77.447049px;}
.h7{height:77.469300px;}
.h25{height:78.189692px;}
.h34{height:78.470469px;}
.h76{height:78.536400px;}
.h23{height:78.578950px;}
.h4b{height:78.628728px;}
.he{height:78.761791px;}
.h1d{height:78.812804px;}
.h2d{height:80.060877px;}
.h24{height:82.602765px;}
.h35{height:82.899389px;}
.hf{height:83.207154px;}
.h2e{height:84.579561px;}
.h26{height:85.403643px;}
.h1e{height:85.977605px;}
.h11{height:86.028525px;}
.h4c{height:86.491601px;}
.h27{height:90.112108px;}
.h38{height:90.435697px;}
.h12{height:90.771440px;}
.h2{height:92.981250px;}
.h1c{height:93.740887px;}
.h4e{height:94.354474px;}
.h51{height:94.571523px;}
.h6e{height:95.517167px;}
.h37{height:96.090607px;}
.h5f{height:96.471024px;}
.h4d{height:97.321683px;}
.h31{height:98.038133px;}
.h5e{height:99.586205px;}
.h19{height:100.616496px;}
.h16{height:102.320400px;}
.h21{height:102.326400px;}
.h61{height:102.998400px;}
.h4f{height:103.004400px;}
.h15{height:107.595024px;}
.h63{height:107.601024px;}
.h2a{height:110.421450px;}
.h32{height:114.133212px;}
.h2b{height:114.687450px;}
.h5d{height:134.727024px;}
.h52{height:151.532400px;}
.h17{height:156.801024px;}
.h64{height:159.627450px;}
.h60{height:170.756400px;}
.h3b{height:361.792514px;}
.h41{height:364.290959px;}
.h22{height:389.043321px;}
.h5a{height:390.607786px;}
.hd{height:393.486307px;}
.h33{height:393.816745px;}
.h2c{height:400.346520px;}
.h54{height:405.984541px;}
.h4a{height:409.018445px;}
.h1a{height:421.811706px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:495.395473px;}
.w6{width:495.396177px;}
.w4{width:495.403056px;}
.wa{width:495.411840px;}
.w5{width:495.415395px;}
.w3{width:495.423876px;}
.w8{width:495.426312px;}
.w9{width:495.435516px;}
.w2{width:495.442854px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xaa{left:12.923128px;}
.xa2{left:14.668457px;}
.xbe{left:16.997948px;}
.x60{left:18.209120px;}
.xb0{left:20.565512px;}
.x42{left:22.030761px;}
.xa1{left:23.101685px;}
.x8c{left:25.753538px;}
.x5f{left:29.881632px;}
.x41{left:35.132706px;}
.x93{left:36.788613px;}
.x83{left:38.436444px;}
.x94{left:43.932033px;}
.x84{left:45.554304px;}
.xd7{left:51.075453px;}
.xbc{left:59.111640px;}
.x5d{left:74.032669px;}
.xae{left:75.452751px;}
.x8d{left:82.174455px;}
.x89{left:86.994605px;}
.x3d{left:90.960466px;}
.x82{left:92.968958px;}
.x9f{left:95.369149px;}
.xbf{left:102.115442px;}
.xc0{left:108.840480px;}
.x43{left:112.388810px;}
.x5e{left:114.008613px;}
.xb1{left:115.893528px;}
.xd8{left:132.387663px;}
.x61{left:136.080273px;}
.xe3{left:141.375000px;}
.xab{left:142.621241px;}
.xac{left:147.114316px;}
.x8e{left:149.590305px;}
.x71{left:152.272500px;}
.x35{left:154.326000px;}
.x96{left:156.440898px;}
.x8a{left:160.704810px;}
.xcc{left:163.158000px;}
.x85{left:164.886895px;}
.xcd{left:168.036000px;}
.x10e{left:169.482000px;}
.x81{left:170.781000px;}
.xdc{left:172.017000px;}
.x3e{left:175.125785px;}
.xd6{left:176.263889px;}
.x74{left:177.528000px;}
.xe1{left:179.586000px;}
.xaf{left:181.106928px;}
.x45{left:183.469500px;}
.x95{left:185.193164px;}
.xc1{left:186.283104px;}
.x2{left:188.761500px;}
.xe0{left:190.420500px;}
.xa9{left:192.241845px;}
.xce{left:195.558000px;}
.x4a{left:197.148000px;}
.x9{left:198.223500px;}
.xf6{left:200.694196px;}
.xe2{left:201.915000px;}
.xb8{left:204.337500px;}
.x7a{left:205.600500px;}
.xf7{left:207.941378px;}
.x56{left:209.469000px;}
.x75{left:211.317000px;}
.xeb{left:213.274500px;}
.x114{left:214.575000px;}
.x63{left:215.989500px;}
.xa0{left:218.934035px;}
.xb9{left:220.324500px;}
.xcf{left:224.974500px;}
.xe4{left:227.227500px;}
.x11e{left:231.025500px;}
.x7c{left:232.818000px;}
.xba{left:234.486000px;}
.x54{left:237.993000px;}
.x7b{left:239.302500px;}
.x107{left:241.294500px;}
.x5c{left:242.409000px;}
.x64{left:244.828500px;}
.x1{left:248.959500px;}
.xbb{left:250.189500px;}
.x65{left:252.102000px;}
.xf8{left:254.418520px;}
.xb3{left:257.235000px;}
.x38{left:259.243500px;}
.xde{left:262.507500px;}
.x109{left:265.314000px;}
.x39{left:268.023000px;}
.xd1{left:273.444000px;}
.xec{left:276.474000px;}
.xc{left:277.915500px;}
.x88{left:280.557000px;}
.xf1{left:283.632000px;}
.x112{left:285.880500px;}
.x3a{left:287.463000px;}
.x4d{left:291.556500px;}
.x6f{left:292.698000px;}
.xd{left:297.822000px;}
.xc2{left:299.673000px;}
.x36{left:304.707000px;}
.x10a{left:307.126500px;}
.x70{left:309.048000px;}
.x11f{left:313.339500px;}
.xbd{left:314.460632px;}
.x37{left:318.654000px;}
.xf9{left:322.917521px;}
.xb4{left:324.630000px;}
.xc3{left:326.079000px;}
.xed{left:327.816000px;}
.x5{left:328.905000px;}
.x6{left:331.687500px;}
.x59{left:335.163000px;}
.xe{left:336.360000px;}
.x44{left:337.917032px;}
.x4{left:339.748500px;}
.xa3{left:343.176729px;}
.x10b{left:345.648000px;}
.xf2{left:346.839000px;}
.x48{left:348.666000px;}
.xad{left:350.206500px;}
.xb2{left:351.363229px;}
.x3f{left:353.035309px;}
.x5a{left:354.403500px;}
.xf{left:357.060000px;}
.x49{left:358.354500px;}
.x40{left:360.031695px;}
.xc4{left:362.497500px;}
.x87{left:364.102500px;}
.x7{left:365.694000px;}
.x91{left:366.810971px;}
.x26{left:368.013000px;}
.x117{left:370.383000px;}
.x9a{left:371.728500px;}
.x10{left:374.499000px;}
.xfa{left:377.400833px;}
.x27{left:379.012500px;}
.x92{left:381.504980px;}
.x11{left:383.103000px;}
.x3{left:385.311000px;}
.x8{left:387.669000px;}
.x2b{left:391.819500px;}
.x78{left:393.396000px;}
.x4b{left:395.596500px;}
.xc5{left:398.878500px;}
.x57{left:399.946500px;}
.x66{left:401.119500px;}
.x8b{left:402.506829px;}
.x4c{left:404.376000px;}
.xc6{left:407.077500px;}
.x55{left:410.968500px;}
.x9b{left:412.614000px;}
.x12{left:415.371000px;}
.x2c{left:419.655000px;}
.x28{left:421.323000px;}
.x67{left:422.964000px;}
.x58{left:424.333500px;}
.x115{left:428.229000px;}
.x29{left:429.997500px;}
.x111{left:431.065500px;}
.x13{left:432.810000px;}
.xf3{left:435.147000px;}
.x2a{left:437.863500px;}
.x86{left:439.820203px;}
.x25{left:441.343500px;}
.xf4{left:444.363000px;}
.x4e{left:447.120000px;}
.x16{left:448.656000px;}
.x14{left:450.018000px;}
.xf5{left:451.069500px;}
.x2d{left:453.315000px;}
.xb5{left:454.801500px;}
.x4f{left:455.899500px;}
.x104{left:457.096500px;}
.x2e{left:458.193000px;}
.x9c{left:459.396000px;}
.x119{left:461.134500px;}
.x68{left:462.840000px;}
.xc7{left:464.523000px;}
.xd0{left:466.171500px;}
.xfb{left:470.016132px;}
.x9d{left:471.058500px;}
.x8f{left:474.555000px;}
.x5b{left:475.639500px;}
.x2f{left:478.995000px;}
.x17{left:481.437000px;}
.x69{left:484.354500px;}
.x108{left:486.409500px;}
.x15{left:487.422000px;}
.x9e{left:488.617500px;}
.x105{left:490.926000px;}
.x30{left:496.536000px;}
.x106{left:499.924500px;}
.x6a{left:501.904500px;}
.x31{left:505.140000px;}
.x116{left:507.313500px;}
.x32{left:510.018000px;}
.x18{left:515.097000px;}
.xa4{left:517.914000px;}
.x11c{left:518.934000px;}
.x19{left:519.975000px;}
.xee{left:521.250000px;}
.xff{left:523.264574px;}
.x10f{left:524.644500px;}
.xfd{left:527.161960px;}
.xfc{left:530.531313px;}
.xda{left:533.641500px;}
.xa5{left:535.473000px;}
.x33{left:536.905500px;}
.x1a{left:538.626000px;}
.xfe{left:540.246374px;}
.x11a{left:541.284000px;}
.x6b{left:542.800500px;}
.xa6{left:545.178000px;}
.xb6{left:546.378000px;}
.x118{left:550.810500px;}
.xdb{left:552.463500px;}
.x1b{left:554.017500px;}
.x11d{left:555.655500px;}
.x6c{left:560.350500px;}
.x1c{left:562.621500px;}
.x3b{left:563.728500px;}
.x34{left:566.322000px;}
.x1d{left:567.499500px;}
.xdf{left:568.557000px;}
.x110{left:569.713500px;}
.xd2{left:571.278000px;}
.x3c{left:573.418500px;}
.x99{left:575.457000px;}
.x6d{left:577.041000px;}
.x97{left:578.548500px;}
.xe5{left:580.828500px;}
.x50{left:581.901000px;}
.x90{left:583.429500px;}
.x11b{left:584.563500px;}
.xef{left:588.034500px;}
.x51{left:590.680500px;}
.x1e{left:592.842000px;}
.xdd{left:595.981500px;}
.xe6{left:599.322000px;}
.x52{left:601.318500px;}
.xd9{left:602.761500px;}
.x7d{left:605.685000px;}
.x1f{left:608.233500px;}
.x53{left:610.098000px;}
.x98{left:611.206500px;}
.x7e{left:614.464500px;}
.xa8{left:616.894500px;}
.x6e{left:619.998000px;}
.xb7{left:623.230500px;}
.x20{left:625.441500px;}
.x7f{left:626.644500px;}
.x46{left:630.813000px;}
.xa7{left:632.154000px;}
.xc8{left:633.594000px;}
.x80{left:635.424000px;}
.x100{left:638.840458px;}
.xd3{left:642.000000px;}
.xf0{left:643.989000px;}
.x47{left:645.277500px;}
.xd4{left:646.878000px;}
.x103{left:648.812551px;}
.x21{left:651.760500px;}
.x72{left:655.633500px;}
.xd5{left:658.470000px;}
.x22{left:660.600000px;}
.x101{left:662.071113px;}
.x73{left:664.413000px;}
.x102{left:665.473061px;}
.x23{left:669.379500px;}
.x76{left:676.516500px;}
.x62{left:679.375500px;}
.xa{left:681.019500px;}
.xe7{left:682.582500px;}
.x24{left:683.805000px;}
.xb{left:690.708000px;}
.x113{left:693.534000px;}
.xc9{left:696.393000px;}
.xca{left:701.271000px;}
.xe8{left:707.628000px;}
.xe9{left:714.319500px;}
.x77{left:715.669500px;}
.x79{left:716.758500px;}
.xea{left:721.417500px;}
.xcb{left:723.193500px;}
.x10c{left:726.012000px;}
.x10d{left:732.352500px;}
@media print{
.v1c{vertical-align:-93.514667pt;}
.v1f{vertical-align:-77.578667pt;}
.v2f{vertical-align:-52.010667pt;}
.v3{vertical-align:-23.141333pt;}
.v12{vertical-align:-21.114667pt;}
.v1e{vertical-align:-15.936000pt;}
.ve{vertical-align:-11.477333pt;}
.v2{vertical-align:-9.562667pt;}
.v13{vertical-align:-8.363486pt;}
.v11{vertical-align:-7.187438pt;}
.v1a{vertical-align:-5.312000pt;}
.v30{vertical-align:-3.402667pt;}
.v0{vertical-align:0.000000pt;}
.v2a{vertical-align:5.682019pt;}
.v2d{vertical-align:6.814450pt;}
.v2b{vertical-align:8.307801pt;}
.v14{vertical-align:9.568000pt;}
.v2e{vertical-align:10.787890pt;}
.v27{vertical-align:12.106667pt;}
.v17{vertical-align:13.794453pt;}
.v5{vertical-align:15.760000pt;}
.v22{vertical-align:17.157120pt;}
.v15{vertical-align:18.421333pt;}
.v10{vertical-align:19.638118pt;}
.v18{vertical-align:21.114667pt;}
.v16{vertical-align:22.110258pt;}
.v4{vertical-align:23.141333pt;}
.v6{vertical-align:24.696460pt;}
.v8{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.vc{vertical-align:34.170667pt;}
.vb{vertical-align:43.130667pt;}
.vf{vertical-align:44.485333pt;}
.v9{vertical-align:47.493333pt;}
.v2c{vertical-align:48.787221pt;}
.v26{vertical-align:51.744000pt;}
.v23{vertical-align:55.994667pt;}
.v29{vertical-align:60.229333pt;}
.v19{vertical-align:66.272000pt;}
.v21{vertical-align:70.064000pt;}
.v7{vertical-align:74.976000pt;}
.v1b{vertical-align:81.338667pt;}
.v28{vertical-align:83.626667pt;}
.v25{vertical-align:85.749333pt;}
.v20{vertical-align:86.874667pt;}
.va{vertical-align:93.514667pt;}
.vd{vertical-align:103.082667pt;}
.v24{vertical-align:117.632000pt;}
.v1d{vertical-align:137.253333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000006pt;}
.ls75{letter-spacing:0.000145pt;}
.ls83{letter-spacing:0.000294pt;}
.ls1{letter-spacing:0.000396pt;}
.ls34{letter-spacing:0.000420pt;}
.lsc{letter-spacing:0.000676pt;}
.ls4a{letter-spacing:0.000939pt;}
.ls36{letter-spacing:0.000990pt;}
.lsa{letter-spacing:0.001036pt;}
.ls7d{letter-spacing:0.001110pt;}
.ls16{letter-spacing:0.001507pt;}
.ls87{letter-spacing:0.001687pt;}
.ls14{letter-spacing:0.001905pt;}
.ls5{letter-spacing:0.001980pt;}
.ls86{letter-spacing:0.002377pt;}
.ls54{letter-spacing:0.002452pt;}
.lsad{letter-spacing:0.002591pt;}
.ls3{letter-spacing:0.002717pt;}
.ls37{letter-spacing:0.002850pt;}
.lsa3{letter-spacing:0.002906pt;}
.ls2{letter-spacing:0.003328pt;}
.ls48{letter-spacing:0.003628pt;}
.ls1c{letter-spacing:0.003733pt;}
.lsd{letter-spacing:0.003903pt;}
.ls6a{letter-spacing:0.004025pt;}
.ls4b{letter-spacing:0.004236pt;}
.lsb2{letter-spacing:0.004646pt;}
.ls59{letter-spacing:0.005306pt;}
.ls38{letter-spacing:0.301636pt;}
.ls3a{letter-spacing:0.306970pt;}
.ls84{letter-spacing:0.543064pt;}
.ls90{letter-spacing:0.546376pt;}
.ls7c{letter-spacing:1.029662pt;}
.ls80{letter-spacing:1.032973pt;}
.lsa2{letter-spacing:1.428132pt;}
.ls5c{letter-spacing:1.720296pt;}
.ls81{letter-spacing:2.086350pt;}
.ls47{letter-spacing:2.088215pt;}
.ls8e{letter-spacing:2.281710pt;}
.ls4e{letter-spacing:2.288437pt;}
.ls33{letter-spacing:2.293770pt;}
.ls58{letter-spacing:2.308467pt;}
.lsb{letter-spacing:2.653258pt;}
.ls15{letter-spacing:2.653398pt;}
.ls32{letter-spacing:2.656853pt;}
.ls18{letter-spacing:2.658731pt;}
.ls49{letter-spacing:2.763727pt;}
.ls2a{letter-spacing:2.924023pt;}
.ls30{letter-spacing:3.064634pt;}
.ls46{letter-spacing:3.071003pt;}
.ls40{letter-spacing:3.075639pt;}
.ls21{letter-spacing:3.081392pt;}
.ls6{letter-spacing:3.087058pt;}
.ls8f{letter-spacing:3.114996pt;}
.ls3d{letter-spacing:3.137975pt;}
.ls17{letter-spacing:3.463238pt;}
.ls1d{letter-spacing:3.911131pt;}
.ls82{letter-spacing:3.958571pt;}
.ls8d{letter-spacing:3.961305pt;}
.ls9a{letter-spacing:4.197575pt;}
.ls61{letter-spacing:4.622646pt;}
.lsb1{letter-spacing:4.756063pt;}
.ls9e{letter-spacing:4.782048pt;}
.ls85{letter-spacing:4.847890pt;}
.ls91{letter-spacing:5.131349pt;}
.ls96{letter-spacing:5.153985pt;}
.lsa0{letter-spacing:5.260253pt;}
.ls62{letter-spacing:5.579056pt;}
.ls8a{letter-spacing:5.609466pt;}
.ls88{letter-spacing:6.230835pt;}
.lsb0{letter-spacing:6.370591pt;}
.ls13{letter-spacing:6.371915pt;}
.ls69{letter-spacing:6.375121pt;}
.ls7b{letter-spacing:6.375786pt;}
.ls74{letter-spacing:6.376584pt;}
.lsb3{letter-spacing:6.377248pt;}
.lsf{letter-spacing:6.377682pt;}
.ls4c{letter-spacing:7.082238pt;}
.ls92{letter-spacing:7.261340pt;}
.lsaf{letter-spacing:7.791176pt;}
.ls10{letter-spacing:8.670903pt;}
.ls4f{letter-spacing:9.031925pt;}
.ls53{letter-spacing:9.041036pt;}
.ls9c{letter-spacing:10.042301pt;}
.lsae{letter-spacing:10.555498pt;}
.ls6e{letter-spacing:10.625788pt;}
.ls78{letter-spacing:10.627251pt;}
.ls29{letter-spacing:10.630323pt;}
.ls52{letter-spacing:12.582369pt;}
.ls8c{letter-spacing:12.754476pt;}
.lse{letter-spacing:12.913103pt;}
.ls5b{letter-spacing:13.282591pt;}
.ls68{letter-spacing:13.705392pt;}
.ls70{letter-spacing:13.871850pt;}
.ls1b{letter-spacing:13.877183pt;}
.ls1a{letter-spacing:14.166642pt;}
.ls19{letter-spacing:14.166840pt;}
.ls79{letter-spacing:14.167786pt;}
.ls25{letter-spacing:14.169842pt;}
.ls11{letter-spacing:14.692210pt;}
.ls50{letter-spacing:15.194260pt;}
.lsa4{letter-spacing:16.185465pt;}
.ls7e{letter-spacing:17.705280pt;}
.ls27{letter-spacing:17.705887pt;}
.ls23{letter-spacing:17.706238pt;}
.ls28{letter-spacing:17.707976pt;}
.ls5e{letter-spacing:17.711220pt;}
.ls8{letter-spacing:17.711572pt;}
.ls43{letter-spacing:17.713309pt;}
.ls67{letter-spacing:17.714659pt;}
.lsa1{letter-spacing:19.432296pt;}
.ls4d{letter-spacing:19.910642pt;}
.ls6d{letter-spacing:20.325806pt;}
.ls2c{letter-spacing:20.365258pt;}
.ls5a{letter-spacing:20.366270pt;}
.ls22{letter-spacing:20.368853pt;}
.lsa6{letter-spacing:20.370591pt;}
.ls1f{letter-spacing:20.370956pt;}
.ls6c{letter-spacing:20.543572pt;}
.ls12{letter-spacing:20.545309pt;}
.ls5d{letter-spacing:20.547091pt;}
.ls42{letter-spacing:20.788058pt;}
.lsa5{letter-spacing:20.804553pt;}
.lsb4{letter-spacing:20.809887pt;}
.ls20{letter-spacing:20.813614pt;}
.ls7{letter-spacing:21.421752pt;}
.ls2b{letter-spacing:22.953807pt;}
.ls24{letter-spacing:23.095150pt;}
.ls3b{letter-spacing:23.463925pt;}
.lsab{letter-spacing:23.641049pt;}
.ls41{letter-spacing:23.870725pt;}
.lsaa{letter-spacing:24.083915pt;}
.ls31{letter-spacing:24.084905pt;}
.ls2d{letter-spacing:24.086642pt;}
.ls77{letter-spacing:24.637258pt;}
.ls89{letter-spacing:27.617095pt;}
.ls60{letter-spacing:28.427139pt;}
.ls5f{letter-spacing:29.355139pt;}
.ls93{letter-spacing:30.179963pt;}
.ls63{letter-spacing:30.752473pt;}
.ls66{letter-spacing:31.029806pt;}
.ls73{letter-spacing:31.451139pt;}
.ls64{letter-spacing:31.525806pt;}
.ls95{letter-spacing:31.589806pt;}
.ls97{letter-spacing:31.680473pt;}
.ls99{letter-spacing:31.717806pt;}
.ls98{letter-spacing:31.749806pt;}
.ls6b{letter-spacing:31.833358pt;}
.ls9f{letter-spacing:31.835139pt;}
.ls9{letter-spacing:34.238824pt;}
.ls71{letter-spacing:34.411976pt;}
.lsa8{letter-spacing:35.422933pt;}
.ls76{letter-spacing:36.151786pt;}
.ls65{letter-spacing:39.053392pt;}
.ls0{letter-spacing:41.322940pt;}
.lsa7{letter-spacing:41.795915pt;}
.lsac{letter-spacing:46.058238pt;}
.lsa9{letter-spacing:51.535572pt;}
.ls51{letter-spacing:61.307104pt;}
.ls72{letter-spacing:75.651915pt;}
.ls7a{letter-spacing:78.635976pt;}
.ls35{letter-spacing:84.333258pt;}
.ls2e{letter-spacing:97.218698pt;}
.ls2f{letter-spacing:109.872671pt;}
.ls7f{letter-spacing:118.045889pt;}
.ls9b{letter-spacing:163.253806pt;}
.ls9d{letter-spacing:165.248473pt;}
.ls1e{letter-spacing:225.012349pt;}
.ls45{letter-spacing:240.998182pt;}
.ls8b{letter-spacing:280.011922pt;}
.ls55{letter-spacing:293.432161pt;}
.ls6f{letter-spacing:293.465248pt;}
.ls39{letter-spacing:334.167925pt;}
.ls94{letter-spacing:353.138406pt;}
.ls44{letter-spacing:416.265392pt;}
.ls56{letter-spacing:422.458481pt;}
.ls3c{letter-spacing:482.798772pt;}
.ls3e{letter-spacing:539.738289pt;}
.ls3f{letter-spacing:557.485679pt;}
.ls26{letter-spacing:762.345049pt;}
.ws73{word-spacing:-240.998182pt;}
.ws32{word-spacing:-63.761067pt;}
.ws39{word-spacing:-48.708218pt;}
.ws94{word-spacing:-46.035490pt;}
.ws84{word-spacing:-42.066082pt;}
.ws14{word-spacing:-40.590295pt;}
.wsf0{word-spacing:-38.362652pt;}
.ws4c{word-spacing:-37.899668pt;}
.wsee{word-spacing:-34.611401pt;}
.wsc0{word-spacing:-29.521250pt;}
.ws19{word-spacing:-28.692333pt;}
.ws82{word-spacing:-26.122909pt;}
.ws2{word-spacing:-23.910333pt;}
.ws52{word-spacing:-22.800957pt;}
.ws56{word-spacing:-19.925333pt;}
.ws36{word-spacing:-19.787638pt;}
.wscd{word-spacing:-18.328268pt;}
.ws9{word-spacing:-17.343010pt;}
.wsc9{word-spacing:-16.218408pt;}
.ws4e{word-spacing:-16.162923pt;}
.wsf{word-spacing:-12.543875pt;}
.wsce{word-spacing:-12.259712pt;}
.ws102{word-spacing:-9.340996pt;}
.wscb{word-spacing:-7.787865pt;}
.ws83{word-spacing:-7.454143pt;}
.wsc8{word-spacing:-6.963188pt;}
.ws92{word-spacing:-6.719394pt;}
.wsb4{word-spacing:-5.632190pt;}
.wse7{word-spacing:-5.313387pt;}
.wsd3{word-spacing:-5.207119pt;}
.wse5{word-spacing:-4.835182pt;}
.wsb3{word-spacing:-4.675780pt;}
.wsd7{word-spacing:-4.250709pt;}
.wsca{word-spacing:-3.756717pt;}
.ws33{word-spacing:-3.188053pt;}
.ws60{word-spacing:-3.180513pt;}
.ws5d{word-spacing:-3.178061pt;}
.ws5c{word-spacing:-3.175180pt;}
.wsc1{word-spacing:-3.172772pt;}
.ws37{word-spacing:-3.147170pt;}
.wsbf{word-spacing:-3.060531pt;}
.wsd1{word-spacing:-2.933009pt;}
.ws80{word-spacing:-2.804313pt;}
.ws31{word-spacing:-2.741726pt;}
.ws22{word-spacing:-2.606548pt;}
.wsfc{word-spacing:-2.486682pt;}
.wsa5{word-spacing:-2.040354pt;}
.ws65{word-spacing:-1.617456pt;}
.wsa6{word-spacing:-1.402743pt;}
.ws76{word-spacing:-0.919273pt;}
.ws8{word-spacing:-0.828894pt;}
.ws27{word-spacing:-0.765133pt;}
.ws29{word-spacing:-0.701372pt;}
.wse{word-spacing:-0.637611pt;}
.wsea{word-spacing:-0.201909pt;}
.ws4d{word-spacing:-0.192025pt;}
.ws10{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.063761pt;}
.ws24{word-spacing:-0.058182pt;}
.wsb6{word-spacing:-0.053134pt;}
.ws8a{word-spacing:-0.046545pt;}
.ws61{word-spacing:-0.042507pt;}
.ws81{word-spacing:-0.031881pt;}
.wscc{word-spacing:-0.026391pt;}
.ws11{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.191283pt;}
.wsd0{word-spacing:0.237516pt;}
.ws8e{word-spacing:0.255044pt;}
.ws93{word-spacing:0.350686pt;}
.ws35{word-spacing:0.382566pt;}
.ws30{word-spacing:0.446327pt;}
.ws2f{word-spacing:0.510089pt;}
.wsf5{word-spacing:0.543861pt;}
.wsfa{word-spacing:0.550278pt;}
.ws38{word-spacing:0.573848pt;}
.ws3a{word-spacing:0.650361pt;}
.wsa{word-spacing:0.701372pt;}
.ws5e{word-spacing:0.730641pt;}
.wsb{word-spacing:0.735975pt;}
.ws9d{word-spacing:0.956416pt;}
.ws85{word-spacing:1.083938pt;}
.ws51{word-spacing:1.211460pt;}
.ws95{word-spacing:1.338982pt;}
.ws9c{word-spacing:1.785310pt;}
.wsf7{word-spacing:2.040354pt;}
.ws17{word-spacing:2.104115pt;}
.ws69{word-spacing:2.167876pt;}
.ws6f{word-spacing:2.359159pt;}
.ws3e{word-spacing:2.422921pt;}
.wsff{word-spacing:2.486682pt;}
.ws53{word-spacing:2.503674pt;}
.wsfd{word-spacing:2.614204pt;}
.wseb{word-spacing:2.667320pt;}
.ws7b{word-spacing:2.688002pt;}
.ws3b{word-spacing:2.805487pt;}
.wse9{word-spacing:2.826722pt;}
.ws7f{word-spacing:2.862548pt;}
.ws3c{word-spacing:2.869248pt;}
.wsf1{word-spacing:2.932989pt;}
.wsef{word-spacing:2.946632pt;}
.ws21{word-spacing:2.978912pt;}
.wsed{word-spacing:2.986123pt;}
.wsc{word-spacing:2.996770pt;}
.ws8c{word-spacing:3.060531pt;}
.ws50{word-spacing:3.124292pt;}
.ws89{word-spacing:3.153457pt;}
.ws16{word-spacing:3.188053pt;}
.ws23{word-spacing:3.211639pt;}
.ws1a{word-spacing:3.251814pt;}
.ws68{word-spacing:3.269821pt;}
.ws7{word-spacing:3.315575pt;}
.ws49{word-spacing:3.328003pt;}
.ws1c{word-spacing:3.379337pt;}
.ws5{word-spacing:3.443098pt;}
.ws43{word-spacing:3.448486pt;}
.ws41{word-spacing:3.460263pt;}
.ws34{word-spacing:3.462028pt;}
.ws7e{word-spacing:3.502548pt;}
.ws26{word-spacing:3.506859pt;}
.wsd{word-spacing:3.570620pt;}
.ws13{word-spacing:3.634381pt;}
.ws12{word-spacing:3.698142pt;}
.ws1b{word-spacing:3.761903pt;}
.ws64{word-spacing:3.793458pt;}
.ws42{word-spacing:3.825664pt;}
.ws91{word-spacing:3.889425pt;}
.ws6e{word-spacing:3.953186pt;}
.ws1d{word-spacing:3.985067pt;}
.ws9a{word-spacing:4.016947pt;}
.ws8f{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.ws90{word-spacing:4.144469pt;}
.wsc5{word-spacing:4.243884pt;}
.wsd5{word-spacing:4.246475pt;}
.ws9e{word-spacing:4.335753pt;}
.ws55{word-spacing:4.367633pt;}
.ws4f{word-spacing:4.399514pt;}
.wsc7{word-spacing:4.431394pt;}
.wsa1{word-spacing:4.463275pt;}
.wsc6{word-spacing:4.639648pt;}
.ws5a{word-spacing:4.666186pt;}
.ws1{word-spacing:4.782067pt;}
.ws58{word-spacing:4.782080pt;}
.ws8d{word-spacing:4.845841pt;}
.ws2c{word-spacing:4.912127pt;}
.ws9f{word-spacing:4.941483pt;}
.ws6{word-spacing:5.100885pt;}
.ws6d{word-spacing:5.164646pt;}
.ws8b{word-spacing:5.189823pt;}
.wsf6{word-spacing:5.228407pt;}
.wsf4{word-spacing:5.241145pt;}
.ws75{word-spacing:5.248004pt;}
.ws18{word-spacing:5.371205pt;}
.ws2b{word-spacing:5.483452pt;}
.ws2a{word-spacing:5.547213pt;}
.wsf3{word-spacing:5.610974pt;}
.ws2d{word-spacing:5.738467pt;}
.ws6b{word-spacing:5.929779pt;}
.ws6c{word-spacing:5.993540pt;}
.wsf9{word-spacing:6.006276pt;}
.wsa3{word-spacing:6.057301pt;}
.wsa9{word-spacing:6.376107pt;}
.ws86{word-spacing:6.472990pt;}
.ws6a{word-spacing:6.503629pt;}
.ws40{word-spacing:6.694912pt;}
.ws0{word-spacing:6.887500pt;}
.wsad{word-spacing:7.141239pt;}
.wsb1{word-spacing:7.385607pt;}
.ws7a{word-spacing:7.400733pt;}
.wsb7{word-spacing:7.491875pt;}
.wse2{word-spacing:7.545009pt;}
.wsf2{word-spacing:7.574776pt;}
.wsb2{word-spacing:7.704411pt;}
.wsd4{word-spacing:7.757545pt;}
.ws57{word-spacing:7.778850pt;}
.wsb5{word-spacing:7.810678pt;}
.ws77{word-spacing:7.820660pt;}
.ws15{word-spacing:7.825994pt;}
.ws5b{word-spacing:7.826288pt;}
.ws5f{word-spacing:7.826616pt;}
.wse6{word-spacing:7.863812pt;}
.wsa8{word-spacing:8.161417pt;}
.wsc3{word-spacing:8.225178pt;}
.ws99{word-spacing:8.273461pt;}
.wse4{word-spacing:8.342017pt;}
.wsb9{word-spacing:8.501419pt;}
.ws3d{word-spacing:8.607744pt;}
.wsaf{word-spacing:8.979623pt;}
.ws4b{word-spacing:9.029826pt;}
.ws101{word-spacing:9.054071pt;}
.wsa7{word-spacing:9.181594pt;}
.wsc4{word-spacing:9.245293pt;}
.ws2e{word-spacing:9.245355pt;}
.ws104{word-spacing:9.564160pt;}
.ws3f{word-spacing:9.755443pt;}
.ws100{word-spacing:9.946726pt;}
.ws4a{word-spacing:10.018917pt;}
.ws9b{word-spacing:10.520576pt;}
.wsfb{word-spacing:10.584337pt;}
.wsab{word-spacing:10.775620pt;}
.wsa0{word-spacing:10.839381pt;}
.wsa4{word-spacing:11.094426pt;}
.ws47{word-spacing:11.648010pt;}
.ws48{word-spacing:11.706192pt;}
.wsac{word-spacing:12.114603pt;}
.ws103{word-spacing:12.305886pt;}
.wsae{word-spacing:12.815974pt;}
.ws105{word-spacing:13.198541pt;}
.wsdd{word-spacing:18.140041pt;}
.ws28{word-spacing:18.426948pt;}
.wsdf{word-spacing:19.537374pt;}
.wsbb{word-spacing:20.001374pt;}
.wsda{word-spacing:20.031468pt;}
.wse8{word-spacing:20.195019pt;}
.wsec{word-spacing:20.386042pt;}
.wsbd{word-spacing:20.582707pt;}
.ws20{word-spacing:21.934564pt;}
.ws70{word-spacing:22.225473pt;}
.ws4{word-spacing:22.252612pt;}
.ws98{word-spacing:22.278095pt;}
.ws67{word-spacing:22.296566pt;}
.ws62{word-spacing:22.405383pt;}
.ws7d{word-spacing:22.545906pt;}
.ws88{word-spacing:22.574564pt;}
.ws63{word-spacing:22.865474pt;}
.wsd6{word-spacing:23.535896pt;}
.ws87{word-spacing:23.602851pt;}
.ws74{word-spacing:24.494566pt;}
.ws79{word-spacing:27.054568pt;}
.ws59{word-spacing:31.334264pt;}
.ws66{word-spacing:31.446785pt;}
.ws1f{word-spacing:31.563531pt;}
.ws46{word-spacing:31.941845pt;}
.wscf{word-spacing:32.081681pt;}
.wsa2{word-spacing:32.709427pt;}
.wsdb{word-spacing:32.836730pt;}
.wsd9{word-spacing:38.043849pt;}
.wsba{word-spacing:39.000258pt;}
.wsb0{word-spacing:39.903534pt;}
.wsbc{word-spacing:39.956668pt;}
.wsdc{word-spacing:40.434873pt;}
.wsbe{word-spacing:40.859943pt;}
.wsd2{word-spacing:41.178747pt;}
.ws45{word-spacing:41.351125pt;}
.wsb8{word-spacing:42.028889pt;}
.wsd8{word-spacing:42.879030pt;}
.wsde{word-spacing:43.038432pt;}
.ws71{word-spacing:46.418057pt;}
.ws54{word-spacing:51.805867pt;}
.ws44{word-spacing:55.565018pt;}
.ws96{word-spacing:74.600067pt;}
.ws72{word-spacing:121.401071pt;}
.ws7c{word-spacing:152.913660pt;}
.wse3{word-spacing:152.972041pt;}
.wse0{word-spacing:153.436041pt;}
.wse1{word-spacing:154.033374pt;}
.wsc2{word-spacing:188.489696pt;}
.ws97{word-spacing:320.526239pt;}
.ws1e{word-spacing:321.716195pt;}
.ws78{word-spacing:351.614389pt;}
.wsf8{word-spacing:495.614771pt;}
.wsfe{word-spacing:701.156860pt;}
._2a{margin-left:-240.998182pt;}
._12{margin-left:-51.049399pt;}
._36{margin-left:-49.044756pt;}
._5{margin-left:-43.000343pt;}
._46{margin-left:-41.852647pt;}
._30{margin-left:-40.747059pt;}
._16{margin-left:-39.480651pt;}
._43{margin-left:-36.535091pt;}
._6{margin-left:-35.119498pt;}
._4{margin-left:-33.512723pt;}
._b{margin-left:-31.816772pt;}
._a{margin-left:-30.375773pt;}
._9{margin-left:-29.151478pt;}
._18{margin-left:-28.144135pt;}
._35{margin-left:-26.819530pt;}
._3e{margin-left:-25.055010pt;}
._d{margin-left:-24.128598pt;}
._14{margin-left:-22.380690pt;}
._23{margin-left:-21.375068pt;}
._47{margin-left:-20.288921pt;}
._3f{margin-left:-18.099318pt;}
._44{margin-left:-14.464274pt;}
._45{margin-left:-12.548843pt;}
._15{margin-left:-11.385099pt;}
._3{margin-left:-9.564133pt;}
._8{margin-left:-8.263411pt;}
._2{margin-left:-7.192228pt;}
._1e{margin-left:-6.241422pt;}
._f{margin-left:-5.228407pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-2.371905pt;}
._c{margin-left:-0.905414pt;}
._13{width:1.003597pt;}
._7{width:2.142366pt;}
._11{width:3.416200pt;}
._2e{width:4.326766pt;}
._3b{width:5.555625pt;}
._2f{width:6.470195pt;}
._2b{width:7.534351pt;}
._3d{width:9.389494pt;}
._27{width:10.400049pt;}
._e{width:11.489738pt;}
._41{width:12.913596pt;}
._1a{width:17.857073pt;}
._26{width:20.275113pt;}
._19{width:21.695343pt;}
._1c{width:24.122610pt;}
._10{width:25.183715pt;}
._1d{width:27.382378pt;}
._34{width:28.805850pt;}
._2c{width:32.482972pt;}
._1b{width:33.467378pt;}
._20{width:34.444328pt;}
._2d{width:36.290981pt;}
._48{width:37.180190pt;}
._25{width:38.401885pt;}
._3c{width:39.881501pt;}
._3a{width:41.285014pt;}
._24{width:43.193114pt;}
._22{width:44.376799pt;}
._37{width:45.270054pt;}
._39{width:46.321877pt;}
._38{width:47.698030pt;}
._21{width:48.885957pt;}
._29{width:62.866993pt;}
._1f{width:71.731200pt;}
._40{width:75.527713pt;}
._17{width:86.077200pt;}
._4a{width:105.950727pt;}
._4b{width:118.279682pt;}
._28{width:125.577513pt;}
._42{width:232.654677pt;}
._49{width:384.938218pt;}
._33{width:471.805598pt;}
._32{width:481.961346pt;}
._31{width:546.788010pt;}
._4c{width:706.217574pt;}
.fs38{font-size:19.793029pt;}
.fs36{font-size:26.390595pt;}
.fs2f{font-size:31.880533pt;}
.fs37{font-size:32.988161pt;}
.fs31{font-size:33.361067pt;}
.fs26{font-size:36.524320pt;}
.fs33{font-size:36.697173pt;}
.fs11{font-size:38.031168pt;}
.fs35{font-size:38.126933pt;}
.fs39{font-size:39.586058pt;}
.fs28{font-size:40.176752pt;}
.fs5{font-size:42.507200pt;}
.fs2a{font-size:43.829184pt;}
.fs13{font-size:44.288907pt;}
.fs1d{font-size:44.447947pt;}
.fs7{font-size:44.612960pt;}
.fs18{font-size:45.348800pt;}
.fse{font-size:46.482539pt;}
.fs22{font-size:46.920000pt;}
.fs30{font-size:47.658667pt;}
.fs15{font-size:48.717797pt;}
.fs1f{font-size:48.892741pt;}
.fs9{font-size:49.074256pt;}
.fs1a{font-size:49.883680pt;}
.fs2d{font-size:51.011371pt;}
.fs23{font-size:51.612000pt;}
.fs25{font-size:52.177600pt;}
.fs32{font-size:52.424533pt;}
.fs2{font-size:53.133867pt;}
.fs21{font-size:53.337536pt;}
.fs10{font-size:54.330240pt;}
.fs24{font-size:56.304000pt;}
.fs34{font-size:57.190400pt;}
.fs27{font-size:57.395360pt;}
.fsb{font-size:58.181867pt;}
.fsc{font-size:60.366933pt;}
.fs29{font-size:62.613120pt;}
.fs12{font-size:63.269867pt;}
.fs1c{font-size:63.497067pt;}
.fs6{font-size:63.732800pt;}
.fs3{font-size:63.761067pt;}
.fs17{font-size:64.784000pt;}
.fs2b{font-size:66.248533pt;}
.fsd{font-size:66.403627pt;}
.fs14{font-size:69.596853pt;}
.fs1e{font-size:69.846773pt;}
.fs8{font-size:70.106080pt;}
.fs19{font-size:71.262400pt;}
.fsf{font-size:72.440320pt;}
.fs2c{font-size:72.873387pt;}
.fs16{font-size:75.923840pt;}
.fs20{font-size:76.196480pt;}
.fsa{font-size:76.479360pt;}
.fs1{font-size:76.513067pt;}
.fs1b{font-size:77.740800pt;}
.fs2e{font-size:79.498240pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:6.550735pt;}
.y132{bottom:7.971858pt;}
.y26{bottom:8.001454pt;}
.yca{bottom:8.309972pt;}
.y10e{bottom:8.440797pt;}
.ye1{bottom:8.446249pt;}
.ya9{bottom:8.939196pt;}
.y98{bottom:9.120372pt;}
.y80{bottom:9.475651pt;}
.y131{bottom:10.278588pt;}
.y25{bottom:10.316747pt;}
.ya8{bottom:11.245926pt;}
.y56{bottom:11.347097pt;}
.y97{bottom:11.473854pt;}
.yf6{bottom:11.733236pt;}
.yc9{bottom:24.365409pt;}
.y10d{bottom:25.540205pt;}
.ye0{bottom:26.657454pt;}
.y7f{bottom:32.089685pt;}
.y130{bottom:32.440552pt;}
.y24{bottom:32.560988pt;}
.ya7{bottom:34.027979pt;}
.y55{bottom:34.366706pt;}
.yf5{bottom:34.402656pt;}
.y96{bottom:34.717644pt;}
.y10f{bottom:38.543947pt;}
.ycb{bottom:48.404945pt;}
.y57{bottom:50.818463pt;}
.y11b{bottom:53.061223pt;}
.y99{bottom:54.984387pt;}
.ye3{bottom:58.111866pt;}
.yee{bottom:58.206559pt;}
.yef{bottom:59.930865pt;}
.y81{bottom:61.397474pt;}
.yf7{bottom:64.171538pt;}
.y11a{bottom:67.515203pt;}
.y33{bottom:72.929244pt;}
.y27{bottom:74.906017pt;}
.yed{bottom:76.788714pt;}
.y119{bottom:80.863353pt;}
.ycc{bottom:84.785991pt;}
.yec{bottom:84.835478pt;}
.y133{bottom:86.831745pt;}
.y58{bottom:88.376587pt;}
.y32{bottom:95.509576pt;}
.yaa{bottom:95.605922pt;}
.y9a{bottom:95.612899pt;}
.y110{bottom:97.928209pt;}
.yeb{bottom:98.964194pt;}
.y82{bottom:101.257490pt;}
.yea{bottom:107.010958pt;}
.y28{bottom:112.036846pt;}
.yf8{bottom:119.820306pt;}
.ycd{bottom:121.167037pt;}
.y3f{bottom:124.568000pt;}
.y13{bottom:124.569333pt;}
.y59{bottom:125.934710pt;}
.y134{bottom:128.093263pt;}
.yfc{bottom:136.240109pt;}
.y9b{bottom:136.241410pt;}
.yd2{bottom:137.868188pt;}
.y5f{bottom:138.270461pt;}
.yfd{bottom:139.883773pt;}
.y88{bottom:141.038419pt;}
.y83{bottom:141.117506pt;}
.ye4{bottom:143.700070pt;}
.y29{bottom:149.080540pt;}
.y2e{bottom:150.983003pt;}
.yfe{bottom:151.015171pt;}
.y115{bottom:154.104299pt;}
.y139{bottom:154.462950pt;}
.y2f{bottom:154.488302pt;}
.yab{bottom:154.746351pt;}
.yae{bottom:156.050377pt;}
.y116{bottom:156.725522pt;}
.y111{bottom:157.351567pt;}
.yce{bottom:157.548083pt;}
.ya0{bottom:159.213144pt;}
.y5a{bottom:163.492834pt;}
.y1a2{bottom:164.418667pt;}
.y30{bottom:165.196995pt;}
.y89{bottom:166.593226pt;}
.y170{bottom:166.736000pt;}
.ye8{bottom:167.812283pt;}
.ye7{bottom:168.696857pt;}
.y135{bottom:169.389506pt;}
.y64{bottom:170.238997pt;}
.y146{bottom:173.258667pt;}
.yf9{bottom:175.469074pt;}
.y12{bottom:175.597333pt;}
.y1c4{bottom:175.798667pt;}
.y117{bottom:175.974939pt;}
.y9c{bottom:176.869922pt;}
.y71{bottom:178.174667pt;}
.y140{bottom:178.433702pt;}
.y213{bottom:180.318667pt;}
.y84{bottom:181.133225pt;}
.y2a{bottom:186.124235pt;}
.y214{bottom:186.288000pt;}
.y63{bottom:189.485673pt;}
.y16f{bottom:190.638667pt;}
.y188{bottom:191.170667pt;}
.y212{bottom:191.253333pt;}
.y1a1{bottom:191.456000pt;}
.y215{bottom:192.104000pt;}
.ycf{bottom:193.929129pt;}
.y1dd{bottom:194.541333pt;}
.y144{bottom:197.161333pt;}
.y126{bottom:197.736000pt;}
.y10{bottom:199.500000pt;}
.y13f{bottom:200.930515pt;}
.y5b{bottom:201.050958pt;}
.y145{bottom:201.937333pt;}
.y70{bottom:202.078667pt;}
.y1c3{bottom:203.550667pt;}
.y11{bottom:205.284000pt;}
.y62{bottom:207.435403pt;}
.y136{bottom:210.373224pt;}
.y1a0{bottom:211.237333pt;}
.yff{bottom:213.038311pt;}
.yac{bottom:213.886780pt;}
.y16e{bottom:214.541333pt;}
.y187{bottom:215.073333pt;}
.y211{bottom:215.156000pt;}
.y112{bottom:216.892209pt;}
.y9d{bottom:217.498433pt;}
.ye5{bottom:217.839945pt;}
.y1dc{bottom:218.444000pt;}
.y85{bottom:220.751036pt;}
.y125{bottom:221.638667pt;}
.y2b{bottom:223.167929pt;}
.yf{bottom:223.402667pt;}
.y13e{bottom:223.427327pt;}
.y100{bottom:224.169709pt;}
.y6f{bottom:225.981333pt;}
.ybd{bottom:227.162667pt;}
.y1c1{bottom:227.453333pt;}
.y61{bottom:228.049768pt;}
.yd0{bottom:230.310175pt;}
.y19f{bottom:231.020000pt;}
.yfa{bottom:231.117842pt;}
.y1c2{bottom:231.728000pt;}
.y5c{bottom:238.609082pt;}
.y1fa{bottom:238.826667pt;}
.y210{bottom:239.058667pt;}
.y1db{bottom:242.346667pt;}
.y124{bottom:245.541333pt;}
.y13d{bottom:245.948943pt;}
.yd{bottom:247.305333pt;}
.yd6{bottom:248.658405pt;}
.y3e{bottom:250.016000pt;}
.y19e{bottom:250.801333pt;}
.ybc{bottom:251.065333pt;}
.y1c0{bottom:251.357333pt;}
.y137{bottom:251.513205pt;}
.y16d{bottom:251.728000pt;}
.y186{bottom:252.260000pt;}
.ye{bottom:253.090667pt;}
.y157{bottom:255.342667pt;}
.y143{bottom:257.568000pt;}
.y9e{bottom:258.126945pt;}
.y2c{bottom:260.124489pt;}
.y86{bottom:260.576452pt;}
.y1f9{bottom:262.729333pt;}
.yd5{bottom:265.300342pt;}
.y1da{bottom:266.249333pt;}
.yd1{bottom:266.691222pt;}
.y13c{bottom:268.445755pt;}
.y8d{bottom:268.622105pt;}
.y123{bottom:269.444000pt;}
.y19d{bottom:270.582667pt;}
.yc{bottom:271.209333pt;}
.y6e{bottom:272.665333pt;}
.yad{bottom:272.940396pt;}
.y20f{bottom:274.516000pt;}
.ybb{bottom:274.969333pt;}
.y16c{bottom:275.630667pt;}
.y142{bottom:275.633333pt;}
.y185{bottom:276.162667pt;}
.y5d{bottom:276.167206pt;}
.y113{bottom:276.341630pt;}
.y22c{bottom:276.928000pt;}
.yd4{bottom:281.942280pt;}
.ye6{bottom:283.235949pt;}
.y20e{bottom:285.449333pt;}
.y3d{bottom:286.282667pt;}
.y1f8{bottom:286.633333pt;}
.yfb{bottom:286.766610pt;}
.y1d9{bottom:290.153333pt;}
.y19c{bottom:290.365333pt;}
.y8c{bottom:290.578726pt;}
.y13b{bottom:291.637066pt;}
.y138{bottom:292.531649pt;}
.y8b{bottom:292.669597pt;}
.y122{bottom:293.346667pt;}
.y141{bottom:293.698667pt;}
.yb{bottom:295.112000pt;}
.yb1{bottom:295.134366pt;}
.y2d{bottom:297.255318pt;}
.y1bf{bottom:298.041333pt;}
.y9f{bottom:298.755456pt;}
.yba{bottom:298.872000pt;}
.y87{bottom:300.557570pt;}
.y22b{bottom:300.832000pt;}
.ya2{bottom:301.116032pt;}
.y156{bottom:305.014667pt;}
.ye9{bottom:306.185902pt;}
.yd3{bottom:307.748280pt;}
.y19b{bottom:310.146667pt;}
.y16b{bottom:312.817333pt;}
.y184{bottom:313.349333pt;}
.y5e{bottom:313.725330pt;}
.y1d8{bottom:314.056000pt;}
.y121{bottom:317.250667pt;}
.ya{bottom:319.014667pt;}
.y12f{bottom:319.628000pt;}
.yb9{bottom:322.774667pt;}
.y22a{bottom:324.734667pt;}
.y8a{bottom:327.146732pt;}
.y13a{bottom:328.470326pt;}
.yb0{bottom:328.800213pt;}
.y19a{bottom:329.928000pt;}
.y31{bottom:330.884764pt;}
.yaf{bottom:331.322733pt;}
.y20d{bottom:331.334667pt;}
.y6d{bottom:331.360000pt;}
.ya1{bottom:331.888432pt;}
.y1f7{bottom:333.317333pt;}
.y114{bottom:335.791051pt;}
.y16a{bottom:336.721333pt;}
.y183{bottom:337.252000pt;}
.y1d7{bottom:337.958667pt;}
.y53{bottom:340.456000pt;}
.y120{bottom:341.153333pt;}
.y9{bottom:342.917333pt;}
.y101{bottom:343.945823pt;}
.yb8{bottom:346.677333pt;}
.y118{bottom:346.812117pt;}
.y229{bottom:348.637333pt;}
.y199{bottom:349.710667pt;}
.y155{bottom:354.688000pt;}
.y6c{bottom:355.262667pt;}
.y1be{bottom:356.736000pt;}
.y60{bottom:358.333400pt;}
.y3c{bottom:359.057333pt;}
.y1d6{bottom:361.861333pt;}
.y52{bottom:364.360000pt;}
.y10b{bottom:368.421333pt;}
.y198{bottom:369.492000pt;}
.yb7{bottom:370.581333pt;}
.y169{bottom:373.906667pt;}
.y182{bottom:374.438667pt;}
.y6b{bottom:379.165333pt;}
.y3b{bottom:382.960000pt;}
.y20c{bottom:384.993333pt;}
.y1d5{bottom:385.765333pt;}
.y197{bottom:389.273333pt;}
.y94{bottom:391.210667pt;}
.yb6{bottom:394.484000pt;}
.y228{bottom:395.321333pt;}
.y1b8{bottom:397.007808pt;}
.y168{bottom:397.810667pt;}
.y181{bottom:398.341333pt;}
.yde{bottom:399.048000pt;}
.y11f{bottom:401.558667pt;}
.y8{bottom:402.056000pt;}
.y1bd{bottom:403.389319pt;}
.y1f6{bottom:403.966667pt;}
.y107{bottom:405.674667pt;}
.y1b7{bottom:405.707159pt;}
.y1b9{bottom:406.574693pt;}
.y1bb{bottom:406.843728pt;}
.y3a{bottom:406.862667pt;}
.y20b{bottom:408.896000pt;}
.y196{bottom:409.056000pt;}
.y1b5{bottom:409.162396pt;}
.y1bc{bottom:409.540700pt;}
.y1d4{bottom:409.668000pt;}
.y51{bottom:411.464000pt;}
.y1b6{bottom:411.859368pt;}
.y1ba{bottom:412.268301pt;}
.y106{bottom:416.609333pt;}
.yb5{bottom:418.386667pt;}
.ydd{bottom:419.009333pt;}
.y11e{bottom:419.625333pt;}
.y109{bottom:419.653333pt;}
.y180{bottom:422.244000pt;}
.ydc{bottom:422.950667pt;}
.y93{bottom:423.961333pt;}
.y6a{bottom:425.850667pt;}
.y108{bottom:428.381333pt;}
.y195{bottom:428.837333pt;}
.y39{bottom:430.765333pt;}
.y1f5{bottom:431.854667pt;}
.y20a{bottom:432.798667pt;}
.y1d3{bottom:433.570667pt;}
.y92{bottom:434.896000pt;}
.y167{bottom:434.997333pt;}
.y50{bottom:435.366667pt;}
.y10a{bottom:436.004000pt;}
.y11d{bottom:437.690667pt;}
.ydb{bottom:442.913333pt;}
.y1b4{bottom:444.105333pt;}
.yda{bottom:446.853333pt;}
.y1f4{bottom:451.636000pt;}
.y38{bottom:454.669333pt;}
.y194{bottom:454.886667pt;}
.y11c{bottom:455.756000pt;}
.y209{bottom:456.702667pt;}
.y1d2{bottom:457.473333pt;}
.y166{bottom:458.900000pt;}
.y4f{bottom:459.269333pt;}
.y17f{bottom:459.430667pt;}
.y227{bottom:459.785333pt;}
.y105{bottom:464.766667pt;}
.y1b3{bottom:468.008000pt;}
.y1f3{bottom:471.418667pt;}
.y37{bottom:478.572000pt;}
.y193{bottom:478.789333pt;}
.yb4{bottom:478.793333pt;}
.y154{bottom:479.637333pt;}
.y10c{bottom:481.685333pt;}
.y91{bottom:482.521333pt;}
.y165{bottom:482.802667pt;}
.y4e{bottom:483.173333pt;}
.y17e{bottom:483.334667pt;}
.y226{bottom:483.689333pt;}
.y1f2{bottom:491.200000pt;}
.y69{bottom:495.734667pt;}
.yb3{bottom:496.858667pt;}
.y7{bottom:501.426667pt;}
.y192{bottom:502.693333pt;}
.y208{bottom:503.386667pt;}
.y153{bottom:503.540000pt;}
.y1d1{bottom:504.157333pt;}
.y4d{bottom:507.076000pt;}
.yd9{bottom:507.260000pt;}
.y225{bottom:507.592000pt;}
.y1f1{bottom:510.981333pt;}
.y67{bottom:513.800000pt;}
.yb2{bottom:514.924000pt;}
.y1b2{bottom:518.565333pt;}
.y68{bottom:519.078667pt;}
.y164{bottom:519.989333pt;}
.y17d{bottom:520.520000pt;}
.y104{bottom:525.173333pt;}
.yd8{bottom:525.325333pt;}
.y152{bottom:527.442667pt;}
.y1b1{bottom:529.500000pt;}
.y1f0{bottom:530.764000pt;}
.y4c{bottom:530.978667pt;}
.y66{bottom:531.865333pt;}
.y7d{bottom:532.250667pt;}
.ya5{bottom:532.878667pt;}
.y207{bottom:533.058667pt;}
.y22{bottom:534.618667pt;}
.y36{bottom:538.977333pt;}
.y224{bottom:540.342667pt;}
.ya6{bottom:540.853333pt;}
.y90{bottom:542.928000pt;}
.y103{bottom:543.238667pt;}
.yd7{bottom:543.390667pt;}
.y163{bottom:543.892000pt;}
.y17c{bottom:544.424000pt;}
.y191{bottom:549.377333pt;}
.y65{bottom:549.930667pt;}
.y1ef{bottom:550.545333pt;}
.ya4{bottom:550.944000pt;}
.y223{bottom:551.276000pt;}
.y151{bottom:551.345333pt;}
.y4b{bottom:554.881333pt;}
.y7c{bottom:556.153333pt;}
.y35{bottom:557.042667pt;}
.y21{bottom:558.521333pt;}
.y8f{bottom:560.993333pt;}
.y102{bottom:561.304000pt;}
.y1d0{bottom:562.852000pt;}
.yf3{bottom:564.929333pt;}
.ya3{bottom:569.009333pt;}
.yc8{bottom:569.320000pt;}
.y1ee{bottom:570.326667pt;}
.y34{bottom:575.109333pt;}
.y150{bottom:575.249333pt;}
.y54{bottom:575.860000pt;}
.y1b0{bottom:578.505333pt;}
.y4a{bottom:578.785333pt;}
.yf2{bottom:578.826667pt;}
.y8e{bottom:579.058667pt;}
.y7b{bottom:580.056000pt;}
.y162{bottom:581.078667pt;}
.y17b{bottom:581.610667pt;}
.y20{bottom:582.424000pt;}
.yf1{bottom:582.994667pt;}
.y1cf{bottom:586.756000pt;}
.yf4{bottom:587.233333pt;}
.y1ed{bottom:590.109333pt;}
.y95{bottom:594.938667pt;}
.y222{bottom:596.308000pt;}
.y206{bottom:597.524000pt;}
.y14f{bottom:599.152000pt;}
.y6{bottom:600.920000pt;}
.y23{bottom:601.038667pt;}
.yf0{bottom:601.060000pt;}
.y7a{bottom:603.958667pt;}
.y161{bottom:604.981333pt;}
.y7e{bottom:604.988000pt;}
.y17a{bottom:605.513333pt;}
.y1f{bottom:606.326667pt;}
.y190{bottom:607.192000pt;}
.y1ec{bottom:609.890667pt;}
.y1ce{bottom:610.658667pt;}
.yc7{bottom:612.449333pt;}
.y221{bottom:620.210667pt;}
.y205{bottom:621.426667pt;}
.y14e{bottom:623.054667pt;}
.y49{bottom:625.469333pt;}
.y1af{bottom:626.850667pt;}
.ydf{bottom:626.989333pt;}
.y79{bottom:627.862667pt;}
.y1eb{bottom:629.672000pt;}
.y1e{bottom:630.230667pt;}
.y18f{bottom:631.094667pt;}
.yc6{bottom:631.710667pt;}
.y160{bottom:642.168000pt;}
.y179{bottom:642.700000pt;}
.y204{bottom:645.329333pt;}
.y14d{bottom:646.957333pt;}
.y1ea{bottom:649.454667pt;}
.y1d{bottom:654.133333pt;}
.y1ae{bottom:654.738667pt;}
.y18e{bottom:654.998667pt;}
.y220{bottom:656.600000pt;}
.y1cd{bottom:657.342667pt;}
.yc5{bottom:658.957333pt;}
.y5{bottom:662.617333pt;}
.y15f{bottom:666.070667pt;}
.y232{bottom:666.134667pt;}
.y178{bottom:666.602667pt;}
.y1e9{bottom:669.236000pt;}
.y1ad{bottom:674.520000pt;}
.y78{bottom:674.546667pt;}
.y21f{bottom:680.502667pt;}
.y14c{bottom:683.346667pt;}
.y1cc{bottom:687.014667pt;}
.y1e8{bottom:689.017333pt;}
.y48{bottom:689.933333pt;}
.y231{bottom:690.038667pt;}
.y1ac{bottom:694.302667pt;}
.yc4{bottom:696.853333pt;}
.y203{bottom:697.504000pt;}
.y4{bottom:697.860000pt;}
.y77{bottom:698.449333pt;}
.y18d{bottom:701.682667pt;}
.y15e{bottom:703.257333pt;}
.y177{bottom:703.789333pt;}
.y21e{bottom:704.406667pt;}
.y1c{bottom:706.308000pt;}
.y14b{bottom:707.250667pt;}
.y1e7{bottom:708.800000pt;}
.y12e{bottom:713.424000pt;}
.y230{bottom:713.941333pt;}
.y1ab{bottom:722.053333pt;}
.y21d{bottom:722.812000pt;}
.y15d{bottom:727.160000pt;}
.y176{bottom:727.692000pt;}
.y21c{bottom:728.309333pt;}
.y1e6{bottom:728.581333pt;}
.y47{bottom:728.682667pt;}
.y14a{bottom:731.153333pt;}
.yc3{bottom:733.409333pt;}
.y202{bottom:733.770667pt;}
.y22f{bottom:737.844000pt;}
.y46{bottom:739.617333pt;}
.y1b{bottom:742.574667pt;}
.y1aa{bottom:745.957333pt;}
.y21b{bottom:746.714667pt;}
.y1e5{bottom:748.362667pt;}
.y15c{bottom:751.064000pt;}
.y1cb{bottom:751.480000pt;}
.y21a{bottom:752.212000pt;}
.y149{bottom:755.056000pt;}
.y76{bottom:757.144000pt;}
.yc2{bottom:757.312000pt;}
.y22e{bottom:761.746667pt;}
.y175{bottom:764.878667pt;}
.y18c{bottom:765.266667pt;}
.y1e4{bottom:768.145333pt;}
.y1ca{bottom:775.382667pt;}
.y148{bottom:778.958667pt;}
.y75{bottom:781.046667pt;}
.yc1{bottom:781.216000pt;}
.y3{bottom:784.225333pt;}
.y45{bottom:787.737333pt;}
.y1e3{bottom:787.926667pt;}
.y15b{bottom:788.250667pt;}
.y174{bottom:788.781333pt;}
.y18b{bottom:789.169333pt;}
.y1a9{bottom:792.641333pt;}
.y12d{bottom:795.970667pt;}
.y1c9{bottom:799.285333pt;}
.y147{bottom:802.862667pt;}
.y219{bottom:805.870667pt;}
.y2{bottom:808.128000pt;}
.y44{bottom:811.640000pt;}
.y201{bottom:811.964000pt;}
.y15a{bottom:812.153333pt;}
.y18a{bottom:813.073333pt;}
.y12c{bottom:815.230667pt;}
.y1a{bottom:815.348000pt;}
.y1e2{bottom:815.678667pt;}
.y74{bottom:817.750667pt;}
.y173{bottom:825.968000pt;}
.y22d{bottom:826.505333pt;}
.yc0{bottom:827.900000pt;}
.y73{bottom:828.685333pt;}
.y218{bottom:829.773333pt;}
.y12b{bottom:834.492000pt;}
.y43{bottom:835.542667pt;}
.y189{bottom:836.976000pt;}
.y19{bottom:839.252000pt;}
.y1e1{bottom:839.581333pt;}
.y200{bottom:842.676000pt;}
.y1{bottom:843.369333pt;}
.y1a6{bottom:845.493333pt;}
.y1c8{bottom:847.630667pt;}
.y159{bottom:849.340000pt;}
.y172{bottom:849.870667pt;}
.y217{bottom:853.676000pt;}
.y12a{bottom:853.753333pt;}
.y1a4{bottom:856.426667pt;}
.y1ff{bottom:858.616000pt;}
.y42{bottom:859.445333pt;}
.y18{bottom:863.154667pt;}
.y1e0{bottom:863.484000pt;}
.y1a5{bottom:864.928000pt;}
.y1a7{bottom:867.210667pt;}
.y129{bottom:873.014667pt;}
.y158{bottom:873.242667pt;}
.y171{bottom:873.773333pt;}
.y1fe{bottom:874.556000pt;}
.y72{bottom:874.570667pt;}
.y1c7{bottom:875.518667pt;}
.y1a8{bottom:877.864000pt;}
.y41{bottom:883.349333pt;}
.y17{bottom:887.057333pt;}
.y1df{bottom:887.388000pt;}
.ybf{bottom:889.150667pt;}
.y1c6{bottom:895.300000pt;}
.y1fd{bottom:899.794667pt;}
.y128{bottom:900.262667pt;}
.y216{bottom:900.360000pt;}
.y16{bottom:907.020000pt;}
.y15{bottom:910.960000pt;}
.y1c5{bottom:915.081333pt;}
.y1fc{bottom:915.734667pt;}
.ybe{bottom:925.417333pt;}
.y40{bottom:930.033333pt;}
.y1fb{bottom:931.676000pt;}
.y1de{bottom:934.072000pt;}
.y14{bottom:934.864000pt;}
.y127{bottom:938.157333pt;}
.y1a3{bottom:940.648000pt;}
.h53{height:2.125355pt;}
.h68{height:7.204632pt;}
.h66{height:13.934293pt;}
.h67{height:19.200658pt;}
.h5c{height:21.774404pt;}
.h69{height:21.826440pt;}
.h50{height:22.443895pt;}
.h70{height:22.829733pt;}
.h6d{height:24.722182pt;}
.h6c{height:26.607396pt;}
.h6f{height:31.054754pt;}
.ha{height:31.880400pt;}
.h62{height:33.881071pt;}
.h65{height:36.285798pt;}
.h5b{height:36.874903pt;}
.h46{height:38.533158pt;}
.h74{height:39.850400pt;}
.h59{height:40.223915pt;}
.h20{height:41.018216pt;}
.h6b{height:41.556937pt;}
.h44{height:42.386473pt;}
.h71{height:42.965140pt;}
.h72{height:43.338310pt;}
.h14{height:43.636400pt;}
.h5{height:44.192216pt;}
.h8{height:44.250180pt;}
.h9{height:44.951552pt;}
.h29{height:46.724797pt;}
.h6{height:47.820800pt;}
.h3c{height:49.500600pt;}
.h6a{height:50.106747pt;}
.h36{height:51.581842pt;}
.h10{height:51.773340pt;}
.h55{height:52.353045pt;}
.h2f{height:52.627282pt;}
.h49{height:52.995067pt;}
.h3d{height:54.450660pt;}
.h18{height:55.016400pt;}
.hb{height:55.021733pt;}
.h48{height:55.047368pt;}
.h75{height:55.071576pt;}
.h56{height:55.307883pt;}
.h39{height:56.271100pt;}
.h77{height:56.984400pt;}
.h57{height:57.183251pt;}
.h42{height:57.317094pt;}
.h1f{height:57.318403pt;}
.h3{height:57.384800pt;}
.h3e{height:59.400720pt;}
.h58{height:60.335872pt;}
.h43{height:60.552105pt;}
.hc{height:60.711552pt;}
.h40{height:60.716885pt;}
.h73{height:61.469566pt;}
.h3f{height:63.580800pt;}
.h1b{height:63.687115pt;}
.h28{height:66.749709pt;}
.h3a{height:66.989405pt;}
.h13{height:67.238104pt;}
.h4{height:67.615733pt;}
.h30{height:68.347120pt;}
.h45{height:68.350047pt;}
.h47{height:68.841821pt;}
.h7{height:68.861600pt;}
.h25{height:69.501949pt;}
.h34{height:69.751528pt;}
.h76{height:69.810133pt;}
.h23{height:69.847956pt;}
.h4b{height:69.892203pt;}
.he{height:70.010481pt;}
.h1d{height:70.055826pt;}
.h2d{height:71.165224pt;}
.h24{height:73.424680pt;}
.h35{height:73.688346pt;}
.hf{height:73.961914pt;}
.h2e{height:75.181832pt;}
.h26{height:75.914350pt;}
.h1e{height:76.424538pt;}
.h11{height:76.469800pt;}
.h4c{height:76.881423pt;}
.h27{height:80.099651pt;}
.h38{height:80.387286pt;}
.h12{height:80.685725pt;}
.h2{height:82.650000pt;}
.h1c{height:83.325233pt;}
.h4e{height:83.870643pt;}
.h51{height:84.063576pt;}
.h6e{height:84.904148pt;}
.h37{height:85.413873pt;}
.h5f{height:85.752021pt;}
.h4d{height:86.508163pt;}
.h31{height:87.145007pt;}
.h5e{height:88.521071pt;}
.h19{height:89.436885pt;}
.h16{height:90.951467pt;}
.h21{height:90.956800pt;}
.h61{height:91.554133pt;}
.h4f{height:91.559467pt;}
.h15{height:95.640021pt;}
.h63{height:95.645355pt;}
.h2a{height:98.152400pt;}
.h32{height:101.451744pt;}
.h2b{height:101.944400pt;}
.h5d{height:119.757355pt;}
.h52{height:134.695467pt;}
.h17{height:139.378688pt;}
.h64{height:141.891067pt;}
.h60{height:151.783467pt;}
.h3b{height:321.593346pt;}
.h41{height:323.814186pt;}
.h22{height:345.816285pt;}
.h5a{height:347.206921pt;}
.hd{height:349.765606pt;}
.h33{height:350.059329pt;}
.h2c{height:355.863573pt;}
.h54{height:360.875147pt;}
.h4a{height:363.571951pt;}
.h1a{height:374.943739pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:440.351531pt;}
.w6{width:440.352157pt;}
.w4{width:440.358272pt;}
.wa{width:440.366080pt;}
.w5{width:440.369240pt;}
.w3{width:440.376779pt;}
.w8{width:440.378944pt;}
.w9{width:440.387125pt;}
.w2{width:440.393648pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xaa{left:11.487225pt;}
.xa2{left:13.038628pt;}
.xbe{left:15.109287pt;}
.x60{left:16.185884pt;}
.xb0{left:18.280455pt;}
.x42{left:19.582899pt;}
.xa1{left:20.534831pt;}
.x8c{left:22.892034pt;}
.x5f{left:26.561451pt;}
.x41{left:31.229072pt;}
.x93{left:32.700989pt;}
.x83{left:34.165728pt;}
.x94{left:39.050696pt;}
.x84{left:40.492715pt;}
.xd7{left:45.400403pt;}
.xbc{left:52.543680pt;}
.x5d{left:65.806817pt;}
.xae{left:67.069112pt;}
.x8d{left:73.043960pt;}
.x89{left:77.328538pt;}
.x3d{left:80.853748pt;}
.x82{left:82.639074pt;}
.x9f{left:84.772577pt;}
.xbf{left:90.769282pt;}
.xc0{left:96.747093pt;}
.x43{left:99.901164pt;}
.x5e{left:101.340989pt;}
.xb1{left:103.016469pt;}
.xd8{left:117.677923pt;}
.x61{left:120.960243pt;}
.xe3{left:125.666667pt;}
.xab{left:126.774437pt;}
.xac{left:130.768281pt;}
.x8e{left:132.969160pt;}
.x71{left:135.353333pt;}
.x35{left:137.178667pt;}
.x96{left:139.058576pt;}
.x8a{left:142.848720pt;}
.xcc{left:145.029333pt;}
.x85{left:146.566129pt;}
.xcd{left:149.365333pt;}
.x10e{left:150.650667pt;}
.x81{left:151.805333pt;}
.xdc{left:152.904000pt;}
.x3e{left:155.667364pt;}
.xd6{left:156.679012pt;}
.x74{left:157.802667pt;}
.xe1{left:159.632000pt;}
.xaf{left:160.983936pt;}
.x45{left:163.084000pt;}
.x95{left:164.616145pt;}
.xc1{left:165.584982pt;}
.x2{left:167.788000pt;}
.xe0{left:169.262667pt;}
.xa9{left:170.881640pt;}
.xce{left:173.829333pt;}
.x4a{left:175.242667pt;}
.x9{left:176.198667pt;}
.xf6{left:178.394841pt;}
.xe2{left:179.480000pt;}
.xb8{left:181.633333pt;}
.x7a{left:182.756000pt;}
.xf7{left:184.836781pt;}
.x56{left:186.194667pt;}
.x75{left:187.837333pt;}
.xeb{left:189.577333pt;}
.x114{left:190.733333pt;}
.x63{left:191.990667pt;}
.xa0{left:194.608031pt;}
.xb9{left:195.844000pt;}
.xcf{left:199.977333pt;}
.xe4{left:201.980000pt;}
.x11e{left:205.356000pt;}
.x7c{left:206.949333pt;}
.xba{left:208.432000pt;}
.x54{left:211.549333pt;}
.x7b{left:212.713333pt;}
.x107{left:214.484000pt;}
.x5c{left:215.474667pt;}
.x64{left:217.625333pt;}
.x1{left:221.297333pt;}
.xbb{left:222.390667pt;}
.x65{left:224.090667pt;}
.xf8{left:226.149795pt;}
.xb3{left:228.653333pt;}
.x38{left:230.438667pt;}
.xde{left:233.340000pt;}
.x109{left:235.834667pt;}
.x39{left:238.242667pt;}
.xd1{left:243.061333pt;}
.xec{left:245.754667pt;}
.xc{left:247.036000pt;}
.x88{left:249.384000pt;}
.xf1{left:252.117333pt;}
.x112{left:254.116000pt;}
.x3a{left:255.522667pt;}
.x4d{left:259.161333pt;}
.x6f{left:260.176000pt;}
.xd{left:264.730667pt;}
.xc2{left:266.376000pt;}
.x36{left:270.850667pt;}
.x10a{left:273.001333pt;}
.x70{left:274.709333pt;}
.x11f{left:278.524000pt;}
.xbd{left:279.520562pt;}
.x37{left:283.248000pt;}
.xf9{left:287.037796pt;}
.xb4{left:288.560000pt;}
.xc3{left:289.848000pt;}
.xed{left:291.392000pt;}
.x5{left:292.360000pt;}
.x6{left:294.833333pt;}
.x59{left:297.922667pt;}
.xe{left:298.986667pt;}
.x44{left:300.370695pt;}
.x4{left:301.998667pt;}
.xa3{left:305.045981pt;}
.x10b{left:307.242667pt;}
.xf2{left:308.301333pt;}
.x48{left:309.925333pt;}
.xad{left:311.294667pt;}
.xb2{left:312.322871pt;}
.x3f{left:313.809163pt;}
.x5a{left:315.025333pt;}
.xf{left:317.386667pt;}
.x49{left:318.537333pt;}
.x40{left:320.028173pt;}
.xc4{left:322.220000pt;}
.x87{left:323.646667pt;}
.x7{left:325.061333pt;}
.x91{left:326.054196pt;}
.x26{left:327.122667pt;}
.x117{left:329.229333pt;}
.x9a{left:330.425333pt;}
.x10{left:332.888000pt;}
.xfa{left:335.467408pt;}
.x27{left:336.900000pt;}
.x92{left:339.115538pt;}
.x11{left:340.536000pt;}
.x3{left:342.498667pt;}
.x8{left:344.594667pt;}
.x2b{left:348.284000pt;}
.x78{left:349.685333pt;}
.x4b{left:351.641333pt;}
.xc5{left:354.558667pt;}
.x57{left:355.508000pt;}
.x66{left:356.550667pt;}
.x8b{left:357.783848pt;}
.x4c{left:359.445333pt;}
.xc6{left:361.846667pt;}
.x55{left:365.305333pt;}
.x9b{left:366.768000pt;}
.x12{left:369.218667pt;}
.x2c{left:373.026667pt;}
.x28{left:374.509333pt;}
.x67{left:375.968000pt;}
.x58{left:377.185333pt;}
.x115{left:380.648000pt;}
.x29{left:382.220000pt;}
.x111{left:383.169333pt;}
.x13{left:384.720000pt;}
.xf3{left:386.797333pt;}
.x2a{left:389.212000pt;}
.x86{left:390.951292pt;}
.x25{left:392.305333pt;}
.xf4{left:394.989333pt;}
.x4e{left:397.440000pt;}
.x16{left:398.805333pt;}
.x14{left:400.016000pt;}
.xf5{left:400.950667pt;}
.x2d{left:402.946667pt;}
.xb5{left:404.268000pt;}
.x4f{left:405.244000pt;}
.x104{left:406.308000pt;}
.x2e{left:407.282667pt;}
.x9c{left:408.352000pt;}
.x119{left:409.897333pt;}
.x68{left:411.413333pt;}
.xc7{left:412.909333pt;}
.xd0{left:414.374667pt;}
.xfb{left:417.792118pt;}
.x9d{left:418.718667pt;}
.x8f{left:421.826667pt;}
.x5b{left:422.790667pt;}
.x2f{left:425.773333pt;}
.x17{left:427.944000pt;}
.x69{left:430.537333pt;}
.x108{left:432.364000pt;}
.x15{left:433.264000pt;}
.x9e{left:434.326667pt;}
.x105{left:436.378667pt;}
.x30{left:441.365333pt;}
.x106{left:444.377333pt;}
.x6a{left:446.137333pt;}
.x31{left:449.013333pt;}
.x116{left:450.945333pt;}
.x32{left:453.349333pt;}
.x18{left:457.864000pt;}
.xa4{left:460.368000pt;}
.x11c{left:461.274667pt;}
.x19{left:462.200000pt;}
.xee{left:463.333333pt;}
.xff{left:465.124066pt;}
.x10f{left:466.350667pt;}
.xfd{left:468.588409pt;}
.xfc{left:471.583389pt;}
.xda{left:474.348000pt;}
.xa5{left:475.976000pt;}
.x33{left:477.249333pt;}
.x1a{left:478.778667pt;}
.xfe{left:480.218999pt;}
.x11a{left:481.141333pt;}
.x6b{left:482.489333pt;}
.xa6{left:484.602667pt;}
.xb6{left:485.669333pt;}
.x118{left:489.609333pt;}
.xdb{left:491.078667pt;}
.x1b{left:492.460000pt;}
.x11d{left:493.916000pt;}
.x6c{left:498.089333pt;}
.x1c{left:500.108000pt;}
.x3b{left:501.092000pt;}
.x34{left:503.397333pt;}
.x1d{left:504.444000pt;}
.xdf{left:505.384000pt;}
.x110{left:506.412000pt;}
.xd2{left:507.802667pt;}
.x3c{left:509.705333pt;}
.x99{left:511.517333pt;}
.x6d{left:512.925333pt;}
.x97{left:514.265333pt;}
.xe5{left:516.292000pt;}
.x50{left:517.245333pt;}
.x90{left:518.604000pt;}
.x11b{left:519.612000pt;}
.xef{left:522.697333pt;}
.x51{left:525.049333pt;}
.x1e{left:526.970667pt;}
.xdd{left:529.761333pt;}
.xe6{left:532.730667pt;}
.x52{left:534.505333pt;}
.xd9{left:535.788000pt;}
.x7d{left:538.386667pt;}
.x1f{left:540.652000pt;}
.x53{left:542.309333pt;}
.x98{left:543.294667pt;}
.x7e{left:546.190667pt;}
.xa8{left:548.350667pt;}
.x6e{left:551.109333pt;}
.xb7{left:553.982667pt;}
.x20{left:555.948000pt;}
.x7f{left:557.017333pt;}
.x46{left:560.722667pt;}
.xa7{left:561.914667pt;}
.xc8{left:563.194667pt;}
.x80{left:564.821333pt;}
.x100{left:567.858185pt;}
.xd3{left:570.666667pt;}
.xf0{left:572.434667pt;}
.x47{left:573.580000pt;}
.xd4{left:575.002667pt;}
.x103{left:576.722267pt;}
.x21{left:579.342667pt;}
.x72{left:582.785333pt;}
.xd5{left:585.306667pt;}
.x22{left:587.200000pt;}
.x101{left:588.507656pt;}
.x73{left:590.589333pt;}
.x102{left:591.531609pt;}
.x23{left:595.004000pt;}
.x76{left:601.348000pt;}
.x62{left:603.889333pt;}
.xa{left:605.350667pt;}
.xe7{left:606.740000pt;}
.x24{left:607.826667pt;}
.xb{left:613.962667pt;}
.x113{left:616.474667pt;}
.xc9{left:619.016000pt;}
.xca{left:623.352000pt;}
.xe8{left:629.002667pt;}
.xe9{left:634.950667pt;}
.x77{left:636.150667pt;}
.x79{left:637.118667pt;}
.xea{left:641.260000pt;}
.xcb{left:642.838667pt;}
.x10c{left:645.344000pt;}
.x10d{left:650.980000pt;}
}




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