
    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_ab258641447a09578f8461d5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6a7b9e9d05c733d0f26c10da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_2d787e51ce96b10869e9d074.woff')format("woff");}.ff3{font-family:ff3;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1be76c07c0d390b0c283b4a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.308000;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_66d314f0adf2c6721c417694.woff')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_599cd8613a77695e44668ed9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_07f85b441ef7eeb58d2d67a6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_baa2ec49e20fd39f2526ed51.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_85059081dd336bbbcf005b2f.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_404bafb1af6cb67929125622.woff')format("woff");}.ffa{font-family:ffa;line-height:0.774069;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_c384768ec08007dfcebe9b69.woff')format("woff");}.ffb{font-family:ffb;line-height:0.778000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ec612f687f575af8b83053b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cb085e7b0f4befbde787f838.woff')format("woff");}.ffd{font-family:ffd;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_63bd5b028207c3787916c1e5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910000;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_b35f16b92bd5bb47fad29bf0.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_617d9c4076b505aa7ae0f09d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_276e11aae0e466b4a5f93809.woff')format("woff");}.ff11{font-family:ff11;line-height:0.462000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f46e8c67de0a019a3683d55e.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_1223371f1d0ae6a47c60ec4a.woff')format("woff");}.ff13{font-family:ff13;line-height:1.029000;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:ff14;src:url('chunks/assets/font_5d7618d314ee44a167a93b1f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a411ee19ed7993d024d2b772.woff')format("woff");}.ff15{font-family:ff15;line-height:0.694000;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:ff16;src:url('chunks/assets/font_8f4b29f45f7a1257cedd4592.woff')format("woff");}.ff16{font-family:ff16;line-height:0.697000;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:ff17;src:url('chunks/assets/font_c112d248c61af95619db0214.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8541156f02372a1912c37ae1.woff')format("woff");}.ff18{font-family:ff18;line-height:0.672000;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:ff19;src:url('chunks/assets/font_3c4d3a66a191607a24f00c53.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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:ff1a;src:url('chunks/assets/font_7c5ddd5879358be5b7482724.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.740723;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:ff1b;src:url('chunks/assets/font_b67f9720a33bd8b2dd55262f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.453000;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.m1b{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);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m7{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);}
.m28{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);}
.m1f{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);}
.m18{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);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mc{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);}
.m8{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);}
.m26{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);}
.me{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);}
.m21{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);}
.mf{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);}
.m27{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);}
.md{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);}
.m1a{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);}
.m22{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1e{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);}
.m17{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);}
.m13{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);}
.m12{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);}
.m24{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);}
.m11{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);}
.m20{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);}
.m4{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m9{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);}
.m1c{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.690000px;}
.v8{vertical-align:-18.024959px;}
.v9{vertical-align:-11.958000px;}
.v4{vertical-align:-8.436000px;}
.vb{vertical-align:-7.290000px;}
.v3{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.810000px;}
.v5{vertical-align:19.554000px;}
.v1{vertical-align:21.690000px;}
.va{vertical-align:22.854000px;}
.v6{vertical-align:54.618000px;}
.ls8{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.000084px;}
.ls22{letter-spacing:0.000141px;}
.ls2{letter-spacing:0.000366px;}
.ls39{letter-spacing:0.000419px;}
.ls66{letter-spacing:0.000532px;}
.ls36{letter-spacing:0.000545px;}
.ls17{letter-spacing:0.000557px;}
.ls43{letter-spacing:0.000588px;}
.ls59{letter-spacing:0.000780px;}
.ls11{letter-spacing:0.001002px;}
.ls50{letter-spacing:0.001052px;}
.ls64{letter-spacing:0.001641px;}
.ls9{letter-spacing:0.001682px;}
.ls1a{letter-spacing:0.002022px;}
.ls6{letter-spacing:0.002375px;}
.ls68{letter-spacing:0.002915px;}
.ls2d{letter-spacing:0.003056px;}
.ls32{letter-spacing:0.003197px;}
.ls5e{letter-spacing:0.003427px;}
.ls7{letter-spacing:0.004090px;}
.ls13{letter-spacing:0.004535px;}
.ls67{letter-spacing:0.005418px;}
.ls3d{letter-spacing:0.005856px;}
.ls2e{letter-spacing:0.005963px;}
.ls2b{letter-spacing:0.006141px;}
.ls37{letter-spacing:1.557824px;}
.ls12{letter-spacing:1.578476px;}
.ls14{letter-spacing:1.756483px;}
.ls53{letter-spacing:1.927250px;}
.ls23{letter-spacing:2.989398px;}
.ls27{letter-spacing:4.275489px;}
.ls60{letter-spacing:4.278557px;}
.ls61{letter-spacing:4.284557px;}
.ls1d{letter-spacing:4.790506px;}
.ls21{letter-spacing:4.796506px;}
.ls3f{letter-spacing:5.363288px;}
.ls4f{letter-spacing:5.859358px;}
.ls3{letter-spacing:7.054177px;}
.ls30{letter-spacing:7.060177px;}
.lsa{letter-spacing:7.678479px;}
.ls34{letter-spacing:8.133531px;}
.ls35{letter-spacing:8.139531px;}
.ls1e{letter-spacing:8.472141px;}
.lsb{letter-spacing:8.841986px;}
.lsc{letter-spacing:8.847986px;}
.ls47{letter-spacing:8.970780px;}
.ls48{letter-spacing:8.971002px;}
.ls46{letter-spacing:8.971559px;}
.lsf{letter-spacing:9.210557px;}
.ls10{letter-spacing:9.216557px;}
.ls45{letter-spacing:10.903250px;}
.ls2a{letter-spacing:11.289056px;}
.ls33{letter-spacing:11.454248px;}
.ls4b{letter-spacing:12.283002px;}
.ls3c{letter-spacing:12.289559px;}
.ls5d{letter-spacing:12.906557px;}
.ls42{letter-spacing:13.183002px;}
.ls20{letter-spacing:14.109056px;}
.ls1c{letter-spacing:14.115056px;}
.ls4a{letter-spacing:14.215250px;}
.ls25{letter-spacing:14.281398px;}
.ls58{letter-spacing:14.743559px;}
.ls57{letter-spacing:14.748780px;}
.ls41{letter-spacing:15.115250px;}
.ls44{letter-spacing:15.355052px;}
.ls3a{letter-spacing:15.358992px;}
.ls49{letter-spacing:15.361052px;}
.ls5f{letter-spacing:15.361405px;}
.ls38{letter-spacing:15.364992px;}
.ls3b{letter-spacing:15.367559px;}
.ls5b{letter-spacing:15.391405px;}
.ls3e{letter-spacing:15.427559px;}
.ls54{letter-spacing:16.728780px;}
.ls55{letter-spacing:16.729559px;}
.ls5c{letter-spacing:16.915405px;}
.ls1b{letter-spacing:17.101398px;}
.ls2c{letter-spacing:17.106138px;}
.ls1f{letter-spacing:17.107398px;}
.ls40{letter-spacing:17.605052px;}
.ls5a{letter-spacing:18.013405px;}
.ls2f{letter-spacing:18.266536px;}
.ls24{letter-spacing:18.387489px;}
.ls26{letter-spacing:18.393489px;}
.ls28{letter-spacing:18.508516px;}
.ls29{letter-spacing:18.514516px;}
.ls4c{letter-spacing:18.832992px;}
.ls31{letter-spacing:19.512378px;}
.ls4e{letter-spacing:20.131559px;}
.ls56{letter-spacing:21.503549px;}
.lse{letter-spacing:21.721559px;}
.ls4d{letter-spacing:22.063250px;}
.ls0{letter-spacing:23.906525px;}
.ls1{letter-spacing:23.912525px;}
.lsd{letter-spacing:24.715663px;}
.ls52{letter-spacing:26.461559px;}
.ls51{letter-spacing:26.465549px;}
.ls62{letter-spacing:27.907405px;}
.ls19{letter-spacing:29.737559px;}
.ls18{letter-spacing:31.492483px;}
.ls5{letter-spacing:32.279468px;}
.ls15{letter-spacing:39.538535px;}
.ls16{letter-spacing:39.541559px;}
.ls4{letter-spacing:100.482557px;}
.ls65{letter-spacing:103.446084px;}
.ls6a{letter-spacing:107.514084px;}
.ls69{letter-spacing:116.148084px;}
.ls6b{letter-spacing:126.192532px;}
.ls6c{letter-spacing:150.060532px;}
.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;}
}
.ws62{word-spacing:-55.293996px;}
.ws71{word-spacing:-50.809387px;}
.ws57{word-spacing:-42.048829px;}
.ws6e{word-spacing:-39.523726px;}
.ws73{word-spacing:-38.772942px;}
.ws79{word-spacing:-36.702310px;}
.ws74{word-spacing:-36.691106px;}
.wsa6{word-spacing:-29.388273px;}
.ws72{word-spacing:-27.476991px;}
.ws76{word-spacing:-24.656425px;}
.wsfd{word-spacing:-22.628970px;}
.ws63{word-spacing:-15.359443px;}
.ws6c{word-spacing:-14.111859px;}
.ws43{word-spacing:-13.449600px;}
.ws30{word-spacing:-11.955150px;}
.wsa4{word-spacing:-3.093408px;}
.wsbc{word-spacing:-2.429580px;}
.wsa1{word-spacing:-2.178835px;}
.ws3c{word-spacing:-0.753178px;}
.ws104{word-spacing:-0.591782px;}
.ws105{word-spacing:-0.376589px;}
.ws132{word-spacing:-0.286924px;}
.ws39{word-spacing:-0.268992px;}
.ws4b{word-spacing:-0.215194px;}
.ws10d{word-spacing:-0.095641px;}
.ws2{word-spacing:-0.059776px;}
.ws67{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.047821px;}
.ws3{word-spacing:-0.041843px;}
.wsfc{word-spacing:-0.036822px;}
.wsbd{word-spacing:-0.035866px;}
.wsa3{word-spacing:-0.026899px;}
.ws78{word-spacing:-0.006029px;}
.ws7b{word-spacing:-0.004782px;}
.ws4c{word-spacing:0.000000px;}
.ws83{word-spacing:0.026899px;}
.ws13e{word-spacing:0.095641px;}
.ws11d{word-spacing:0.430385px;}
.ws13c{word-spacing:0.573847px;}
.ws46{word-spacing:0.645581px;}
.ws126{word-spacing:0.669488px;}
.ws44{word-spacing:0.860774px;}
.ws6b{word-spacing:0.956412px;}
.wsc0{word-spacing:0.968371px;}
.ws4a{word-spacing:1.075968px;}
.ws29{word-spacing:1.338977px;}
.wsbe{word-spacing:1.452557px;}
.ws10c{word-spacing:1.482439px;}
.wsad{word-spacing:1.506355px;}
.ws4e{word-spacing:1.667750px;}
.ws14c{word-spacing:1.769362px;}
.ws97{word-spacing:1.882944px;}
.ws95{word-spacing:1.936742px;}
.ws137{word-spacing:1.960645px;}
.ws119{word-spacing:2.008465px;}
.ws11e{word-spacing:2.151927px;}
.wsed{word-spacing:2.151936px;}
.wsa0{word-spacing:2.232634px;}
.ws4d{word-spacing:2.474726px;}
.ws2f{word-spacing:2.621971px;}
.wsb9{word-spacing:2.663021px;}
.ws145{word-spacing:2.725774px;}
.ws115{word-spacing:2.773595px;}
.ws98{word-spacing:2.797517px;}
.ws113{word-spacing:2.821415px;}
.ws106{word-spacing:2.851315px;}
.ws1b{word-spacing:2.905114px;}
.ws28{word-spacing:3.066509px;}
.ws1d{word-spacing:3.120307px;}
.ws108{word-spacing:3.156160px;}
.ws19{word-spacing:3.174106px;}
.ws18{word-spacing:3.227904px;}
.ws8a{word-spacing:3.389299px;}
.ws12f{word-spacing:3.490904px;}
.ws9a{word-spacing:3.550694px;}
.ws11f{word-spacing:3.586545px;}
.ws12b{word-spacing:3.634366px;}
.ws9{word-spacing:3.730007px;}
.ws140{word-spacing:3.777827px;}
.ws93{word-spacing:3.819686px;}
.ws142{word-spacing:3.825648px;}
.ws8e{word-spacing:3.873485px;}
.ws26{word-spacing:3.927283px;}
.ws91{word-spacing:3.981082px;}
.ws8d{word-spacing:4.088678px;}
.ws80{word-spacing:4.160392px;}
.ws15{word-spacing:4.250074px;}
.ws10f{word-spacing:4.256033px;}
.ws59{word-spacing:4.357670px;}
.ws11c{word-spacing:4.447316px;}
.ws14e{word-spacing:4.495136px;}
.ws128{word-spacing:4.542957px;}
.wsd{word-spacing:4.590778px;}
.wsee{word-spacing:4.626662px;}
.ws10a{word-spacing:4.638598px;}
.ws111{word-spacing:4.686419px;}
.ws107{word-spacing:4.734239px;}
.ws2e{word-spacing:4.779904px;}
.ws11a{word-spacing:4.780423px;}
.ws2a{word-spacing:4.782060px;}
.wsfa{word-spacing:4.784030px;}
.wsf8{word-spacing:4.785904px;}
.ws9e{word-spacing:4.788058px;}
.ws121{word-spacing:4.829881px;}
.ws94{word-spacing:4.841856px;}
.ws130{word-spacing:4.877701px;}
.wsb0{word-spacing:4.925522px;}
.ws3d{word-spacing:4.949453px;}
.ws122{word-spacing:4.973342px;}
.ws5a{word-spacing:5.003251px;}
.ws2d{word-spacing:5.021163px;}
.ws12{word-spacing:5.057050px;}
.ws136{word-spacing:5.068984px;}
.ws16{word-spacing:5.110848px;}
.ws118{word-spacing:5.116804px;}
.wsf1{word-spacing:5.164625px;}
.ws13{word-spacing:5.164646px;}
.wsf3{word-spacing:5.180139px;}
.wsf5{word-spacing:5.182329px;}
.ws25{word-spacing:5.218445px;}
.ws1a{word-spacing:5.272243px;}
.ws135{word-spacing:5.308087px;}
.ws1e{word-spacing:5.326042px;}
.ws12c{word-spacing:5.355907px;}
.ws103{word-spacing:5.371219px;}
.ws101{word-spacing:5.376288px;}
.ws47{word-spacing:5.378822px;}
.ws1c{word-spacing:5.379840px;}
.wsfe{word-spacing:5.412814px;}
.ws17{word-spacing:5.433638px;}
.ws3a{word-spacing:5.487437px;}
.wsc5{word-spacing:5.499369px;}
.ws3f{word-spacing:5.541235px;}
.ws20{word-spacing:5.595034px;}
.ws14a{word-spacing:5.642831px;}
.ws41{word-spacing:5.648832px;}
.ws3b{word-spacing:5.702630px;}
.ws53{word-spacing:5.756429px;}
.wsa{word-spacing:5.786293px;}
.ws58{word-spacing:5.810227px;}
.ws133{word-spacing:5.852542px;}
.ws45{word-spacing:5.864026px;}
.ws8{word-spacing:5.929754px;}
.ws4{word-spacing:5.977560px;}
.wsf{word-spacing:5.977575px;}
.wse{word-spacing:6.025396px;}
.wsbf{word-spacing:6.025421px;}
.ws8f{word-spacing:6.079219px;}
.ws6{word-spacing:6.121037px;}
.ws9c{word-spacing:6.133018px;}
.wsac{word-spacing:6.159917px;}
.wsb{word-spacing:6.168857px;}
.ws9f{word-spacing:6.186816px;}
.ws22{word-spacing:6.240614px;}
.ws7{word-spacing:6.264499px;}
.ws90{word-spacing:6.294413px;}
.ws27{word-spacing:6.348211px;}
.wsc{word-spacing:6.360140px;}
.ws8b{word-spacing:6.402010px;}
.ws14d{word-spacing:6.407960px;}
.ws125{word-spacing:6.647063px;}
.ws100{word-spacing:6.671002px;}
.ws124{word-spacing:6.694884px;}
.ws48{word-spacing:6.724800px;}
.ws86{word-spacing:6.778598px;}
.wsc4{word-spacing:6.838346px;}
.wsb8{word-spacing:6.886195px;}
.wsb2{word-spacing:6.939994px;}
.wsdb{word-spacing:6.981808px;}
.ws24{word-spacing:6.993792px;}
.wsd9{word-spacing:7.029628px;}
.wsb4{word-spacing:7.101389px;}
.wsc1{word-spacing:7.208986px;}
.ws21{word-spacing:7.262784px;}
.ws42{word-spacing:7.424179px;}
.wsa9{word-spacing:7.477978px;}
.ws9d{word-spacing:7.531776px;}
.ws84{word-spacing:7.585574px;}
.ws82{word-spacing:7.639373px;}
.ws12a{word-spacing:7.651296px;}
.ws52{word-spacing:7.693171px;}
.ws92{word-spacing:7.746970px;}
.wsff{word-spacing:7.800768px;}
.ws7f{word-spacing:7.842578px;}
.ws14{word-spacing:7.854566px;}
.ws5f{word-spacing:7.908365px;}
.wsa2{word-spacing:8.069760px;}
.wsab{word-spacing:8.177357px;}
.ws2c{word-spacing:8.272964px;}
.ws3e{word-spacing:8.284954px;}
.ws13a{word-spacing:8.368605px;}
.ws40{word-spacing:8.392550px;}
.wsa8{word-spacing:8.661542px;}
.ws117{word-spacing:8.703349px;}
.ws88{word-spacing:8.930534px;}
.ws110{word-spacing:9.038093px;}
.ws99{word-spacing:9.038131px;}
.ws85{word-spacing:9.145728px;}
.ws65{word-spacing:9.175081px;}
.ws64{word-spacing:9.181081px;}
.ws8c{word-spacing:9.199526px;}
.wsba{word-spacing:9.307123px;}
.ws143{word-spacing:9.564120px;}
.ws7e{word-spacing:9.611941px;}
.ws49{word-spacing:9.898906px;}
.ws2b{word-spacing:10.042326px;}
.ws56{word-spacing:10.114099px;}
.ws0{word-spacing:10.161900px;}
.ws60{word-spacing:10.329293px;}
.ws87{word-spacing:10.544486px;}
.ws12e{word-spacing:10.616173px;}
.wsaa{word-spacing:10.705882px;}
.ws61{word-spacing:11.028672px;}
.wsbb{word-spacing:11.136269px;}
.ws55{word-spacing:11.297664px;}
.ws81{word-spacing:11.351462px;}
.wsc2{word-spacing:11.459059px;}
.ws68{word-spacing:11.512858px;}
.wsa7{word-spacing:11.566656px;}
.ws139{word-spacing:11.572585px;}
.ws5b{word-spacing:11.728051px;}
.wsb1{word-spacing:11.943245px;}
.ws54{word-spacing:12.373632px;}
.ws6a{word-spacing:12.427430px;}
.wsc3{word-spacing:12.561926px;}
.ws127{word-spacing:12.576818px;}
.ws66{word-spacing:12.642624px;}
.ws1f{word-spacing:12.696422px;}
.ws4f{word-spacing:13.073011px;}
.wsa5{word-spacing:13.126810px;}
.ws89{word-spacing:13.395802px;}
.ws10{word-spacing:13.449600px;}
.wsb3{word-spacing:13.503398px;}
.wsf0{word-spacing:13.676692px;}
.ws23{word-spacing:13.718592px;}
.ws5e{word-spacing:13.879987px;}
.ws5d{word-spacing:13.933786px;}
.ws7c{word-spacing:14.067944px;}
.ws13f{word-spacing:14.633104px;}
.ws114{word-spacing:14.728745px;}
.wsb6{word-spacing:14.740762px;}
.ws109{word-spacing:15.063489px;}
.wsb5{word-spacing:15.063552px;}
.wsec{word-spacing:15.278746px;}
.ws120{word-spacing:15.493874px;}
.ws50{word-spacing:15.493939px;}
.ws51{word-spacing:15.547738px;}
.ws141{word-spacing:15.732977px;}
.ws9b{word-spacing:15.752429px;}
.ws5c{word-spacing:16.085722px;}
.ws10e{word-spacing:16.163363px;}
.ws11{word-spacing:16.193318px;}
.ws14f{word-spacing:16.354645px;}
.wsef{word-spacing:16.402466px;}
.ws129{word-spacing:16.450286px;}
.ws148{word-spacing:16.498107px;}
.ws10b{word-spacing:16.545928px;}
.ws112{word-spacing:16.593748px;}
.ws11b{word-spacing:16.689389px;}
.ws146{word-spacing:16.737210px;}
.ws131{word-spacing:16.785031px;}
.ws123{word-spacing:16.832851px;}
.ws138{word-spacing:16.976313px;}
.ws13d{word-spacing:17.024134px;}
.ws116{word-spacing:17.071954px;}
.wsf4{word-spacing:17.099479px;}
.ws12d{word-spacing:17.263237px;}
.wsf6{word-spacing:17.459521px;}
.ws69{word-spacing:17.484480px;}
.wsf7{word-spacing:17.546246px;}
.ws14b{word-spacing:17.550160px;}
.ws149{word-spacing:17.693622px;}
.ws134{word-spacing:17.741443px;}
.ws144{word-spacing:17.837084px;}
.wsf2{word-spacing:17.930835px;}
.ws147{word-spacing:18.267469px;}
.wseb{word-spacing:18.506650px;}
.ws102{word-spacing:18.775175px;}
.wsf9{word-spacing:19.315153px;}
.ws13b{word-spacing:20.275934px;}
.ws1{word-spacing:20.861684px;}
.ws96{word-spacing:26.851607px;}
.wsd4{word-spacing:32.876663px;}
.wsb7{word-spacing:34.269581px;}
.wsfb{word-spacing:46.027328px;}
.wse3{word-spacing:57.281000px;}
.ws75{word-spacing:60.007584px;}
.ws37{word-spacing:62.162359px;}
.ws33{word-spacing:62.165437px;}
.ws35{word-spacing:62.167950px;}
.wse5{word-spacing:67.341554px;}
.wse7{word-spacing:68.057000px;}
.ws77{word-spacing:70.636499px;}
.ws32{word-spacing:74.050283px;}
.wse8{word-spacing:78.317000px;}
.wse4{word-spacing:82.043000px;}
.wsd5{word-spacing:86.641198px;}
.ws31{word-spacing:86.801971px;}
.wse6{word-spacing:88.971468px;}
.wsd6{word-spacing:102.505198px;}
.wsd8{word-spacing:106.435198px;}
.ws38{word-spacing:107.811626px;}
.ws36{word-spacing:107.883626px;}
.wsae{word-spacing:110.638211px;}
.wsc6{word-spacing:110.656868px;}
.ws34{word-spacing:116.610617px;}
.wsd7{word-spacing:122.305198px;}
.wsc8{word-spacing:126.157198px;}
.wsc9{word-spacing:130.225198px;}
.wscd{word-spacing:130.231198px;}
.wsea{word-spacing:131.148572px;}
.wse0{word-spacing:133.063271px;}
.wsdd{word-spacing:133.255198px;}
.wsdf{word-spacing:134.257198px;}
.wsdc{word-spacing:137.323198px;}
.wsd0{word-spacing:138.859198px;}
.wse9{word-spacing:142.933198px;}
.wsde{word-spacing:143.130269px;}
.wsce{word-spacing:145.957198px;}
.wsc7{word-spacing:147.479913px;}
.wsd2{word-spacing:150.025198px;}
.wsd1{word-spacing:151.561198px;}
.ws7a{word-spacing:153.337415px;}
.wse1{word-spacing:161.977198px;}
.wse2{word-spacing:161.983198px;}
.wsda{word-spacing:162.727198px;}
.wsd3{word-spacing:167.582036px;}
.wscb{word-spacing:171.361198px;}
.wsca{word-spacing:175.429198px;}
.wscc{word-spacing:177.150496px;}
.wscf{word-spacing:180.244171px;}
.ws6f{word-spacing:205.771584px;}
.ws70{word-spacing:294.619584px;}
.ws6d{word-spacing:306.490499px;}
.ws7d{word-spacing:434.324069px;}
.wsaf{word-spacing:1100.153468px;}
._18{margin-left:-31.474998px;}
._12{margin-left:-6.706870px;}
._16{margin-left:-5.230413px;}
._3{margin-left:-4.184292px;}
._1{margin-left:-2.540475px;}
._0{margin-left:-1.524285px;}
._7{width:1.386797px;}
._4{width:2.415036px;}
._17{width:3.717982px;}
._2{width:4.886665px;}
._14{width:7.143096px;}
._f{width:11.674253px;}
._5{width:14.680924px;}
._25{width:15.727003px;}
._19{width:16.892698px;}
._13{width:17.968666px;}
._6{width:19.080398px;}
._10{width:20.730314px;}
._22{width:22.015402px;}
._23{width:23.605490px;}
._11{width:26.899200px;}
._15{width:29.601083px;}
._24{width:47.105894px;}
._21{width:67.542681px;}
._20{width:74.159230px;}
._b{width:87.366893px;}
._d{width:116.658437px;}
._1f{width:124.865004px;}
._1d{width:158.643275px;}
._1c{width:164.741967px;}
._1e{width:170.573125px;}
._c{width:191.469261px;}
._1b{width:221.457199px;}
._8{width:266.308500px;}
._e{width:275.753058px;}
._1a{width:289.892899px;}
._a{width:311.451146px;}
._9{width:327.375406px;}
.fc4{color:transparent;}
.fc1{color:rgb(38,107,189);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.616512px;}
.fs8{font-size:28.324935px;}
.fs9{font-size:29.887800px;}
.fs7{font-size:30.899929px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:36.821862px;}
.fsa{font-size:37.943400px;}
.fs2{font-size:41.842800px;}
.fsb{font-size:45.532080px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:101.619000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:0.332566px;}
.y100{bottom:4.690160px;}
.y9e{bottom:4.838806px;}
.y108{bottom:7.643718px;}
.yff{bottom:17.095873px;}
.y9a{bottom:35.094987px;}
.y106{bottom:37.084535px;}
.ya0{bottom:42.819969px;}
.ya1{bottom:49.901203px;}
.y9d{bottom:56.338688px;}
.y105{bottom:57.200861px;}
.y9f{bottom:75.651144px;}
.y104{bottom:77.317187px;}
.y107{bottom:89.480023px;}
.y103{bottom:97.433513px;}
.y9b{bottom:98.182343px;}
.y37{bottom:111.486000px;}
.y16e{bottom:116.146050px;}
.y184{bottom:116.749500px;}
.y102{bottom:117.549839px;}
.y16c{bottom:124.718460px;}
.y36{bottom:124.935000px;}
.y5f{bottom:127.995000px;}
.y98{bottom:129.567000px;}
.y16d{bottom:131.680800px;}
.y183{bottom:133.258500px;}
.y101{bottom:137.666165px;}
.y35{bottom:138.384000px;}
.y97{bottom:138.982500px;}
.y96{bottom:143.670000px;}
.y5e{bottom:144.504000px;}
.y16b{bottom:147.675240px;}
.y182{bottom:149.767500px;}
.y34{bottom:151.834500px;}
.y1ce{bottom:152.284500px;}
.y169{bottom:156.247650px;}
.y5d{bottom:161.014500px;}
.y16a{bottom:163.208835px;}
.y1cd{bottom:165.735000px;}
.y181{bottom:166.278000px;}
.y95{bottom:171.820500px;}
.y5c{bottom:177.523500px;}
.y134{bottom:177.634500px;}
.y1cc{bottom:179.184000px;}
.y168{bottom:179.203275px;}
.y180{bottom:182.787000px;}
.y94{bottom:185.271000px;}
.y166{bottom:187.775685px;}
.y1cb{bottom:193.084500px;}
.ycc{bottom:194.032500px;}
.y133{bottom:194.143500px;}
.y167{bottom:194.738025px;}
.y5b{bottom:198.477000px;}
.y17f{bottom:199.296000px;}
.y1ca{bottom:206.533500px;}
.y33{bottom:210.223500px;}
.ycb{bottom:210.543000px;}
.y132{bottom:210.654000px;}
.y165{bottom:210.732465px;}
.y93{bottom:212.170500px;}
.y17e{bottom:215.806500px;}
.y163{bottom:219.304875px;}
.y1c9{bottom:219.984000px;}
.y92{bottom:225.619500px;}
.y164{bottom:226.266060px;}
.y32{bottom:226.732500px;}
.yca{bottom:227.052000px;}
.y131{bottom:227.163000px;}
.y5a{bottom:227.392500px;}
.y17d{bottom:232.315500px;}
.y1c8{bottom:233.433000px;}
.y91{bottom:239.068500px;}
.y162{bottom:242.261655px;}
.y31{bottom:243.241500px;}
.yc9{bottom:243.561000px;}
.y130{bottom:243.672000px;}
.y59{bottom:243.901500px;}
.y1c7{bottom:247.333500px;}
.y17c{bottom:248.824500px;}
.y160{bottom:250.834065px;}
.y161{bottom:257.795250px;}
.y30{bottom:259.752000px;}
.yc8{bottom:260.071500px;}
.y12f{bottom:260.182500px;}
.y58{bottom:260.410500px;}
.y1c6{bottom:260.782500px;}
.y17b{bottom:265.335000px;}
.y90{bottom:268.855500px;}
.y15f{bottom:273.789690px;}
.y1c5{bottom:274.233000px;}
.y2f{bottom:276.261000px;}
.yfd{bottom:276.580500px;}
.y12e{bottom:276.691500px;}
.y57{bottom:276.921000px;}
.yc7{bottom:281.713500px;}
.y17a{bottom:281.844000px;}
.y8f{bottom:282.304500px;}
.y15d{bottom:282.362100px;}
.y1c4{bottom:288.133500px;}
.y15e{bottom:289.324440px;}
.y2e{bottom:292.770000px;}
.yfc{bottom:293.089500px;}
.y12d{bottom:293.200500px;}
.y56{bottom:293.430000px;}
.y179{bottom:298.353000px;}
.y1c3{bottom:301.582500px;}
.y15c{bottom:305.318880px;}
.yc6{bottom:307.645500px;}
.y2d{bottom:309.280500px;}
.yfb{bottom:309.600000px;}
.y12c{bottom:309.711000px;}
.y55{bottom:309.939000px;}
.y178{bottom:314.863500px;}
.y1c1{bottom:315.031500px;}
.y1c2{bottom:315.091500px;}
.y8e{bottom:316.795500px;}
.y15b{bottom:322.518000px;}
.yc5{bottom:324.156000px;}
.y2c{bottom:325.842000px;}
.yfa{bottom:326.133000px;}
.y12b{bottom:326.220000px;}
.y54{bottom:326.449500px;}
.y1c0{bottom:328.932000px;}
.y177{bottom:331.372500px;}
.y8d{bottom:333.304500px;}
.y15a{bottom:335.967000px;}
.y60{bottom:339.015000px;}
.yc4{bottom:340.665000px;}
.y2b{bottom:342.351000px;}
.y1bf{bottom:342.382500px;}
.yf9{bottom:342.642000px;}
.y12a{bottom:342.729000px;}
.y53{bottom:342.958500px;}
.y176{bottom:347.881500px;}
.y159{bottom:349.416000px;}
.y8c{bottom:349.815000px;}
.y1be{bottom:355.831500px;}
.yc3{bottom:357.174000px;}
.y2a{bottom:358.861500px;}
.yf8{bottom:359.152500px;}
.y129{bottom:359.239500px;}
.y52{bottom:359.467500px;}
.y8b{bottom:366.324000px;}
.y175{bottom:368.628000px;}
.y1bd{bottom:369.280500px;}
.yc2{bottom:373.684500px;}
.y29{bottom:375.370500px;}
.yf7{bottom:375.661500px;}
.y128{bottom:375.748500px;}
.y51{bottom:379.044000px;}
.y8a{bottom:382.833000px;}
.y1bc{bottom:383.181000px;}
.y158{bottom:388.791000px;}
.yc1{bottom:390.193500px;}
.y28{bottom:391.879500px;}
.yf6{bottom:392.170500px;}
.y127{bottom:392.368500px;}
.y50{bottom:395.553000px;}
.y1bb{bottom:396.631500px;}
.y89{bottom:399.343500px;}
.y157{bottom:405.300000px;}
.yc0{bottom:406.702500px;}
.y27{bottom:408.390000px;}
.yf5{bottom:408.681000px;}
.y126{bottom:408.879000px;}
.y1ba{bottom:410.532000px;}
.y4f{bottom:412.062000px;}
.y88{bottom:415.852500px;}
.y156{bottom:421.809000px;}
.ybf{bottom:423.213000px;}
.y174{bottom:423.979500px;}
.y1b9{bottom:423.981000px;}
.y26{bottom:424.899000px;}
.yf4{bottom:425.190000px;}
.y125{bottom:425.388000px;}
.y4e{bottom:428.572500px;}
.y87{bottom:432.361500px;}
.y1b8{bottom:437.881500px;}
.y155{bottom:438.319500px;}
.ybe{bottom:439.722000px;}
.y173{bottom:440.490000px;}
.y25{bottom:441.408000px;}
.yf3{bottom:441.699000px;}
.y124{bottom:441.897000px;}
.y4d{bottom:445.081500px;}
.y86{bottom:448.872000px;}
.y1b7{bottom:451.330500px;}
.y154{bottom:454.828500px;}
.ybd{bottom:456.231000px;}
.y172{bottom:456.999000px;}
.y24{bottom:457.918500px;}
.yf2{bottom:458.209500px;}
.y123{bottom:458.407500px;}
.y4c{bottom:461.590500px;}
.y1b6{bottom:464.781000px;}
.y85{bottom:465.381000px;}
.y153{bottom:471.337500px;}
.ybc{bottom:472.741500px;}
.y171{bottom:473.508000px;}
.y23{bottom:474.427500px;}
.yf1{bottom:474.718500px;}
.y122{bottom:474.916500px;}
.y4b{bottom:478.101000px;}
.y1b5{bottom:478.230000px;}
.y84{bottom:481.890000px;}
.y152{bottom:487.848000px;}
.ybb{bottom:489.250500px;}
.y170{bottom:490.018500px;}
.y22{bottom:490.989000px;}
.yf0{bottom:491.227500px;}
.y121{bottom:491.425500px;}
.y1b4{bottom:492.130500px;}
.y4a{bottom:494.610000px;}
.y83{bottom:503.388000px;}
.y151{bottom:504.357000px;}
.y1b3{bottom:505.579500px;}
.y16f{bottom:506.527500px;}
.y21{bottom:507.498000px;}
.yef{bottom:507.760500px;}
.y120{bottom:507.936000px;}
.yba{bottom:510.894000px;}
.y49{bottom:511.119000px;}
.y1b2{bottom:519.030000px;}
.y150{bottom:523.036500px;}
.y20{bottom:524.008500px;}
.yee{bottom:524.271000px;}
.y11f{bottom:524.445000px;}
.y48{bottom:527.629500px;}
.y82{bottom:529.020000px;}
.y1b1{bottom:532.479000px;}
.yb9{bottom:536.826000px;}
.y14f{bottom:539.547000px;}
.y1f{bottom:540.517500px;}
.yed{bottom:540.780000px;}
.y11e{bottom:540.954000px;}
.y47{bottom:544.138500px;}
.y81{bottom:545.530500px;}
.y1b0{bottom:546.379500px;}
.yb8{bottom:553.335000px;}
.y14e{bottom:556.056000px;}
.y1e{bottom:557.026500px;}
.yec{bottom:557.289000px;}
.y11d{bottom:557.574000px;}
.y1af{bottom:559.828500px;}
.y46{bottom:560.683500px;}
.y80{bottom:562.039500px;}
.yb7{bottom:569.845500px;}
.y14d{bottom:572.565000px;}
.y1ae{bottom:573.279000px;}
.y1d{bottom:573.537000px;}
.yeb{bottom:573.799500px;}
.y11c{bottom:574.084500px;}
.y45{bottom:577.192500px;}
.y7f{bottom:578.548500px;}
.yb6{bottom:586.354500px;}
.y1ad{bottom:587.179500px;}
.y14c{bottom:589.075500px;}
.y1c{bottom:590.046000px;}
.yea{bottom:590.308500px;}
.y44{bottom:593.701500px;}
.y7e{bottom:595.059000px;}
.y11b{bottom:595.495500px;}
.y1ac{bottom:600.628500px;}
.yb5{bottom:602.863500px;}
.y14b{bottom:605.584500px;}
.y1b{bottom:606.555000px;}
.ye9{bottom:606.817500px;}
.y43{bottom:610.212000px;}
.y7d{bottom:611.568000px;}
.y1ab{bottom:614.077500px;}
.y1f6{bottom:617.871000px;}
.yb4{bottom:619.374000px;}
.y11a{bottom:622.026000px;}
.y14a{bottom:622.093500px;}
.y1a{bottom:623.065500px;}
.ye8{bottom:623.328000px;}
.y42{bottom:626.721000px;}
.y1a9{bottom:627.528000px;}
.y1aa{bottom:627.588000px;}
.y7c{bottom:628.077000px;}
.y1f5{bottom:631.320000px;}
.yb3{bottom:635.883000px;}
.y119{bottom:638.536500px;}
.y19{bottom:639.574500px;}
.ye7{bottom:639.837000px;}
.y1a8{bottom:641.428500px;}
.y41{bottom:643.230000px;}
.y7b{bottom:644.587500px;}
.y1f4{bottom:644.770500px;}
.yb2{bottom:652.392000px;}
.y1a7{bottom:654.877500px;}
.y118{bottom:655.045500px;}
.y18{bottom:656.083500px;}
.ye6{bottom:656.346000px;}
.y1f3{bottom:658.219500px;}
.y40{bottom:659.740500px;}
.y7a{bottom:661.096500px;}
.y149{bottom:664.524000px;}
.y1a6{bottom:668.326500px;}
.yb1{bottom:668.902500px;}
.y117{bottom:671.554500px;}
.y1f2{bottom:671.670000px;}
.y17{bottom:672.594000px;}
.ye5{bottom:672.880500px;}
.y79{bottom:677.605500px;}
.y1a5{bottom:682.227000px;}
.y148{bottom:684.699000px;}
.y1f1{bottom:685.119000px;}
.yb0{bottom:685.411500px;}
.y116{bottom:688.065000px;}
.y16{bottom:689.103000px;}
.ye4{bottom:689.389500px;}
.y78{bottom:694.116000px;}
.y1a4{bottom:695.677500px;}
.y1f0{bottom:698.568000px;}
.yaf{bottom:701.920500px;}
.y3f{bottom:703.878000px;}
.ye3{bottom:705.898500px;}
.y147{bottom:709.057500px;}
.y1a3{bottom:709.126500px;}
.y115{bottom:709.198500px;}
.y15{bottom:710.163000px;}
.y77{bottom:710.625000px;}
.y1ef{bottom:712.018500px;}
.yae{bottom:718.431000px;}
.y3e{bottom:721.959000px;}
.ye2{bottom:722.409000px;}
.y1a2{bottom:723.027000px;}
.y1ec{bottom:725.467500px;}
.y1ed{bottom:725.527500px;}
.y76{bottom:727.134000px;}
.y1ee{bottom:728.241000px;}
.y146{bottom:729.829500px;}
.y114{bottom:734.077500px;}
.yad{bottom:734.940000px;}
.y14{bottom:736.195500px;}
.y1a1{bottom:736.476000px;}
.y1eb{bottom:738.916500px;}
.ye1{bottom:738.918000px;}
.y3d{bottom:740.041500px;}
.y75{bottom:743.644500px;}
.y13{bottom:749.644500px;}
.y1a0{bottom:749.926500px;}
.y113{bottom:750.588000px;}
.y145{bottom:750.601500px;}
.yac{bottom:751.449000px;}
.y1ea{bottom:752.367000px;}
.ye0{bottom:755.427000px;}
.y3c{bottom:758.124000px;}
.y74{bottom:760.153500px;}
.y12{bottom:763.093500px;}
.y19f{bottom:763.827000px;}
.y1e9{bottom:765.816000px;}
.y112{bottom:767.097000px;}
.y144{bottom:771.373500px;}
.ydf{bottom:771.937500px;}
.yab{bottom:773.092500px;}
.y3b{bottom:776.206500px;}
.y11{bottom:776.544000px;}
.y73{bottom:776.662500px;}
.y19e{bottom:777.276000px;}
.y1e8{bottom:779.266500px;}
.y111{bottom:783.606000px;}
.yde{bottom:788.446500px;}
.y10{bottom:789.993000px;}
.y19d{bottom:790.725000px;}
.y143{bottom:792.145500px;}
.y1e7{bottom:792.715500px;}
.y72{bottom:793.173000px;}
.y3a{bottom:794.289000px;}
.yaa{bottom:799.024500px;}
.y110{bottom:800.116500px;}
.yf{bottom:803.442000px;}
.y19c{bottom:804.625500px;}
.y1e4{bottom:806.164500px;}
.y1e5{bottom:806.224500px;}
.y1e6{bottom:808.938000px;}
.ydd{bottom:809.275500px;}
.y71{bottom:809.682000px;}
.y39{bottom:812.370000px;}
.y142{bottom:812.917500px;}
.ya9{bottom:815.533500px;}
.y10f{bottom:816.625500px;}
.ye{bottom:816.892500px;}
.y19b{bottom:818.076000px;}
.y1e3{bottom:819.615000px;}
.y70{bottom:826.191000px;}
.y38{bottom:829.855500px;}
.yd{bottom:830.341500px;}
.y19a{bottom:831.525000px;}
.ya8{bottom:832.044000px;}
.y1e2{bottom:833.064000px;}
.y141{bottom:833.091000px;}
.y10e{bottom:833.134500px;}
.ydc{bottom:833.524500px;}
.y6f{bottom:842.701500px;}
.yc{bottom:843.792000px;}
.y199{bottom:844.975500px;}
.y1e1{bottom:846.513000px;}
.ya7{bottom:848.553000px;}
.y10d{bottom:849.645000px;}
.ydb{bottom:850.033500px;}
.yb{bottom:857.241000px;}
.y140{bottom:857.449500px;}
.y198{bottom:858.874500px;}
.y6e{bottom:859.210500px;}
.y1e0{bottom:859.963500px;}
.ya6{bottom:865.062000px;}
.y10c{bottom:866.154000px;}
.yda{bottom:866.542500px;}
.ya{bottom:870.690000px;}
.y197{bottom:872.325000px;}
.y1df{bottom:873.412500px;}
.y13f{bottom:878.223000px;}
.y6d{bottom:880.708500px;}
.y10b{bottom:882.663000px;}
.yd9{bottom:883.053000px;}
.y9{bottom:884.140500px;}
.y196{bottom:885.774000px;}
.y1de{bottom:886.863000px;}
.ya5{bottom:898.891500px;}
.y13e{bottom:898.995000px;}
.yd8{bottom:899.562000px;}
.y195{bottom:899.674500px;}
.y1dd{bottom:900.312000px;}
.y10a{bottom:903.798000px;}
.y6c{bottom:906.340500px;}
.ya4{bottom:912.342000px;}
.y194{bottom:913.123500px;}
.y1dc{bottom:913.761000px;}
.yd7{bottom:916.071000px;}
.y13d{bottom:919.767000px;}
.y6b{bottom:922.849500px;}
.ya3{bottom:925.791000px;}
.y8{bottom:926.203500px;}
.y192{bottom:926.574000px;}
.y193{bottom:926.634000px;}
.y1db{bottom:927.211500px;}
.yd6{bottom:932.581500px;}
.y109{bottom:937.075500px;}
.ya2{bottom:939.241500px;}
.y6a{bottom:939.358500px;}
.y191{bottom:940.474500px;}
.y13c{bottom:940.539000px;}
.y1da{bottom:940.660500px;}
.y7{bottom:944.136000px;}
.yd5{bottom:949.090500px;}
.y6{bottom:949.560000px;}
.y190{bottom:953.923500px;}
.y1d9{bottom:954.109500px;}
.y69{bottom:955.869000px;}
.y13b{bottom:961.311000px;}
.yfe{bottom:961.840500px;}
.y5{bottom:962.068500px;}
.y99{bottom:964.005000px;}
.yd4{bottom:965.599500px;}
.y18d{bottom:967.372500px;}
.y18e{bottom:967.374000px;}
.y18f{bottom:967.432500px;}
.y1d8{bottom:967.560000px;}
.y68{bottom:972.378000px;}
.y1d7{bottom:981.009000px;}
.y18c{bottom:981.273000px;}
.y13a{bottom:982.083000px;}
.yd3{bottom:982.110000px;}
.y4{bottom:985.425000px;}
.y67{bottom:993.876000px;}
.y1d6{bottom:994.459500px;}
.y18b{bottom:994.723500px;}
.yd2{bottom:998.619000px;}
.y139{bottom:1002.855000px;}
.y1d5{bottom:1007.908500px;}
.y18a{bottom:1008.172500px;}
.yd1{bottom:1015.128000px;}
.y3{bottom:1015.867500px;}
.y66{bottom:1019.508000px;}
.y1d3{bottom:1021.357500px;}
.y1d4{bottom:1021.417500px;}
.y189{bottom:1021.623000px;}
.y138{bottom:1023.627000px;}
.yd0{bottom:1031.638500px;}
.y1d2{bottom:1034.808000px;}
.y188{bottom:1035.522000px;}
.y65{bottom:1036.017000px;}
.y137{bottom:1043.800500px;}
.ycf{bottom:1048.147500px;}
.y1d1{bottom:1048.257000px;}
.y187{bottom:1048.972500px;}
.y64{bottom:1052.527500px;}
.y2{bottom:1054.842000px;}
.y1d0{bottom:1061.707500px;}
.y186{bottom:1062.421500px;}
.yce{bottom:1064.656500px;}
.y136{bottom:1068.159000px;}
.y63{bottom:1069.036500px;}
.y1cf{bottom:1075.156500px;}
.y185{bottom:1075.872000px;}
.ycd{bottom:1081.167000px;}
.y1{bottom:1084.729500px;}
.y62{bottom:1085.545500px;}
.y135{bottom:1088.605500px;}
.y61{bottom:1102.056000px;}
.h19{height:20.621327px;}
.h18{height:22.495994px;}
.h20{height:25.149332px;}
.h1e{height:25.333441px;}
.h21{height:25.554372px;}
.h1f{height:26.290809px;}
.hf{height:26.397082px;}
.h4{height:27.783619px;}
.hb{height:32.900573px;}
.h8{height:33.187496px;}
.h7{height:33.426599px;}
.he{height:33.716821px;}
.h1b{height:33.845513px;}
.hc{height:34.143908px;}
.hd{height:35.865450px;}
.ha{height:37.013299px;}
.h14{height:37.252247px;}
.h9{height:37.336090px;}
.h11{height:37.766477px;}
.h12{height:37.927872px;}
.h13{height:40.348800px;}
.h1c{height:40.614615px;}
.h2{height:40.826735px;}
.h5{height:41.125613px;}
.h6{height:41.425613px;}
.h15{height:43.799146px;}
.h1d{height:49.251082px;}
.h3{height:49.473619px;}
.h16{height:54.618000px;}
.h1{height:69.913872px;}
.h10{height:117.773438px;}
.h17{height:149.606217px;}
.h1a{height:151.773600px;}
.h0{height:1188.000000px;}
.w2{width:376.587296px;}
.w1{width:376.591264px;}
.w0{width:918.000000px;}
.x7a{left:-6.065015px;}
.x0{left:0.000000px;}
.x78{left:23.044687px;}
.x75{left:37.895971px;}
.x79{left:39.763497px;}
.x77{left:46.848242px;}
.x1d{left:48.000000px;}
.x76{left:50.005251px;}
.x7b{left:56.556416px;}
.x74{left:63.507766px;}
.x5b{left:72.436500px;}
.xc{left:73.446000px;}
.x3d{left:79.889844px;}
.x62{left:81.280500px;}
.xac{left:83.882385px;}
.xe{left:85.401000px;}
.xb{left:86.895000px;}
.xb0{left:88.647915px;}
.xb3{left:89.981940px;}
.xaa{left:93.585000px;}
.x3e{left:98.639020px;}
.xb5{left:100.087500px;}
.x30{left:107.340000px;}
.x35{left:110.994000px;}
.x3b{left:114.531000px;}
.x60{left:116.302500px;}
.x5e{left:119.052000px;}
.x41{left:124.952241px;}
.x98{left:127.744500px;}
.x61{left:129.357000px;}
.x9b{left:130.438500px;}
.x99{left:133.935000px;}
.x9a{left:135.667500px;}
.x95{left:137.980500px;}
.x1{left:139.258500px;}
.xa0{left:141.051000px;}
.x96{left:142.612500px;}
.x6b{left:144.142500px;}
.x94{left:146.358000px;}
.x93{left:148.377000px;}
.xa7{left:149.409000px;}
.x92{left:151.045500px;}
.x39{left:153.976500px;}
.xad{left:155.754570px;}
.x67{left:160.692000px;}
.x24{left:163.207500px;}
.x6c{left:168.616500px;}
.x59{left:174.822000px;}
.x25{left:177.601500px;}
.x3f{left:185.464603px;}
.xab{left:187.532085px;}
.xae{left:188.682465px;}
.x40{left:190.403364px;}
.xd{left:199.737000px;}
.xa1{left:200.908500px;}
.x6e{left:203.754000px;}
.x7{left:214.888500px;}
.x6f{left:217.260000px;}
.x2{left:219.193500px;}
.x33{left:220.587000px;}
.x5c{left:224.524500px;}
.xb1{left:226.655400px;}
.x2a{left:228.444000px;}
.xa8{left:233.536500px;}
.x72{left:239.913000px;}
.x6d{left:241.296000px;}
.x28{left:244.986000px;}
.x31{left:247.372500px;}
.x37{left:249.942000px;}
.x34{left:253.744500px;}
.x5{left:256.072500px;}
.x3{left:257.955000px;}
.x2b{left:261.675000px;}
.xa6{left:263.955000px;}
.x2e{left:267.765000px;}
.x29{left:275.467500px;}
.x5d{left:276.631500px;}
.x32{left:278.155500px;}
.x9d{left:281.173500px;}
.x90{left:282.418500px;}
.x68{left:284.842500px;}
.xa{left:286.653000px;}
.xa3{left:290.937000px;}
.x5f{left:293.686500px;}
.x2f{left:294.756000px;}
.x3a{left:300.597000px;}
.x43{left:302.616780px;}
.x20{left:304.137000px;}
.x36{left:307.120500px;}
.x3c{left:308.649000px;}
.x26{left:314.155500px;}
.x42{left:317.040770px;}
.x4{left:320.466000px;}
.x21{left:322.095000px;}
.x73{left:323.869500px;}
.x9e{left:329.023500px;}
.x6{left:330.102000px;}
.x2c{left:334.876500px;}
.x27{left:337.963500px;}
.x44{left:340.286124px;}
.xa4{left:342.273000px;}
.x38{left:343.410000px;}
.xa2{left:357.798000px;}
.x69{left:364.437000px;}
.xa5{left:365.907000px;}
.x8{left:366.951000px;}
.x70{left:371.362500px;}
.x22{left:373.942500px;}
.x9f{left:379.176000px;}
.x1e{left:381.963000px;}
.xb6{left:382.992000px;}
.x23{left:391.641000px;}
.x1f{left:394.491000px;}
.x63{left:403.798500px;}
.xa9{left:407.346000px;}
.x66{left:412.642500px;}
.xaf{left:418.662600px;}
.xb2{left:420.963360px;}
.x97{left:423.942000px;}
.x71{left:425.274000px;}
.x2d{left:427.462500px;}
.x64{left:428.601000px;}
.x9c{left:431.910000px;}
.x91{left:435.897000px;}
.x5a{left:439.054500px;}
.x65{left:440.883000px;}
.x6a{left:448.285500px;}
.xf{left:467.967000px;}
.x45{left:472.009500px;}
.x7c{left:479.971500px;}
.x1a{left:481.416000px;}
.x8c{left:482.518500px;}
.xb7{left:493.018500px;}
.xb9{left:494.178000px;}
.x1b{left:495.214500px;}
.x8d{left:496.848000px;}
.x46{left:502.908000px;}
.x84{left:506.788500px;}
.x19{left:512.892000px;}
.xba{left:517.422000px;}
.x83{left:519.237000px;}
.x51{left:520.855500px;}
.x57{left:525.400500px;}
.x47{left:532.525500px;}
.x12{left:539.740500px;}
.x52{left:552.937500px;}
.x80{left:557.118000px;}
.x13{left:561.379500px;}
.x85{left:563.659500px;}
.x48{left:566.209500px;}
.x4d{left:569.283000px;}
.xbb{left:572.106000px;}
.x1c{left:576.942000px;}
.x88{left:595.801500px;}
.xb4{left:598.534500px;}
.x4e{left:603.279000px;}
.x58{left:605.011500px;}
.x9{left:608.667000px;}
.x81{left:617.586000px;}
.x14{left:623.059500px;}
.xbc{left:628.521000px;}
.x49{left:637.375500px;}
.x15{left:644.680500px;}
.x86{left:654.840000px;}
.x8b{left:662.140500px;}
.x53{left:670.314000px;}
.x82{left:677.017500px;}
.x4a{left:683.143500px;}
.x18{left:692.911500px;}
.x54{left:696.321000px;}
.x16{left:700.170000px;}
.x89{left:708.067500px;}
.x8e{left:709.848000px;}
.xb8{left:710.869500px;}
.x4b{left:712.762500px;}
.x8f{left:717.610500px;}
.x4f{left:727.566000px;}
.x7f{left:739.035000px;}
.x17{left:742.528500px;}
.xbe{left:745.198500px;}
.xbd{left:747.195000px;}
.x50{left:755.353500px;}
.x87{left:765.289500px;}
.x10{left:777.652500px;}
.x8a{left:780.492000px;}
.xbf{left:786.093000px;}
.x11{left:794.898000px;}
.x55{left:815.821500px;}
.x7d{left:820.711500px;}
.x4c{left:825.094500px;}
.x7e{left:833.262000px;}
.x56{left:843.609000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v8{vertical-align:-16.022186pt;}
.v9{vertical-align:-10.629333pt;}
.v4{vertical-align:-7.498667pt;}
.vb{vertical-align:-6.480000pt;}
.v3{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.386667pt;}
.v5{vertical-align:17.381333pt;}
.v1{vertical-align:19.280000pt;}
.va{vertical-align:20.314667pt;}
.v6{vertical-align:48.549333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.000075pt;}
.ls22{letter-spacing:0.000125pt;}
.ls2{letter-spacing:0.000325pt;}
.ls39{letter-spacing:0.000372pt;}
.ls66{letter-spacing:0.000473pt;}
.ls36{letter-spacing:0.000484pt;}
.ls17{letter-spacing:0.000495pt;}
.ls43{letter-spacing:0.000522pt;}
.ls59{letter-spacing:0.000693pt;}
.ls11{letter-spacing:0.000891pt;}
.ls50{letter-spacing:0.000935pt;}
.ls64{letter-spacing:0.001458pt;}
.ls9{letter-spacing:0.001495pt;}
.ls1a{letter-spacing:0.001798pt;}
.ls6{letter-spacing:0.002111pt;}
.ls68{letter-spacing:0.002591pt;}
.ls2d{letter-spacing:0.002717pt;}
.ls32{letter-spacing:0.002842pt;}
.ls5e{letter-spacing:0.003046pt;}
.ls7{letter-spacing:0.003635pt;}
.ls13{letter-spacing:0.004031pt;}
.ls67{letter-spacing:0.004816pt;}
.ls3d{letter-spacing:0.005205pt;}
.ls2e{letter-spacing:0.005300pt;}
.ls2b{letter-spacing:0.005459pt;}
.ls37{letter-spacing:1.384732pt;}
.ls12{letter-spacing:1.403090pt;}
.ls14{letter-spacing:1.561318pt;}
.ls53{letter-spacing:1.713111pt;}
.ls23{letter-spacing:2.657242pt;}
.ls27{letter-spacing:3.800434pt;}
.ls60{letter-spacing:3.803162pt;}
.ls61{letter-spacing:3.808495pt;}
.ls1d{letter-spacing:4.258228pt;}
.ls21{letter-spacing:4.263561pt;}
.ls3f{letter-spacing:4.767367pt;}
.ls4f{letter-spacing:5.208318pt;}
.ls3{letter-spacing:6.270379pt;}
.ls30{letter-spacing:6.275713pt;}
.lsa{letter-spacing:6.825315pt;}
.ls34{letter-spacing:7.229805pt;}
.ls35{letter-spacing:7.235139pt;}
.ls1e{letter-spacing:7.530792pt;}
.lsb{letter-spacing:7.859543pt;}
.lsc{letter-spacing:7.864876pt;}
.ls47{letter-spacing:7.974026pt;}
.ls48{letter-spacing:7.974224pt;}
.ls46{letter-spacing:7.974719pt;}
.lsf{letter-spacing:8.187162pt;}
.ls10{letter-spacing:8.192495pt;}
.ls45{letter-spacing:9.691778pt;}
.ls2a{letter-spacing:10.034717pt;}
.ls33{letter-spacing:10.181553pt;}
.ls4b{letter-spacing:10.918224pt;}
.ls3c{letter-spacing:10.924052pt;}
.ls5d{letter-spacing:11.472495pt;}
.ls42{letter-spacing:11.718224pt;}
.ls20{letter-spacing:12.541383pt;}
.ls1c{letter-spacing:12.546717pt;}
.ls4a{letter-spacing:12.635778pt;}
.ls25{letter-spacing:12.694576pt;}
.ls58{letter-spacing:13.105386pt;}
.ls57{letter-spacing:13.110026pt;}
.ls41{letter-spacing:13.435778pt;}
.ls44{letter-spacing:13.648935pt;}
.ls3a{letter-spacing:13.652437pt;}
.ls49{letter-spacing:13.654269pt;}
.ls5f{letter-spacing:13.654583pt;}
.ls38{letter-spacing:13.657771pt;}
.ls3b{letter-spacing:13.660052pt;}
.ls5b{letter-spacing:13.681249pt;}
.ls3e{letter-spacing:13.713386pt;}
.ls54{letter-spacing:14.870026pt;}
.ls55{letter-spacing:14.870719pt;}
.ls5c{letter-spacing:15.035916pt;}
.ls1b{letter-spacing:15.201242pt;}
.ls2c{letter-spacing:15.205456pt;}
.ls1f{letter-spacing:15.206576pt;}
.ls40{letter-spacing:15.648935pt;}
.ls5a{letter-spacing:16.011916pt;}
.ls2f{letter-spacing:16.236921pt;}
.ls24{letter-spacing:16.344434pt;}
.ls26{letter-spacing:16.349768pt;}
.ls28{letter-spacing:16.452014pt;}
.ls29{letter-spacing:16.457347pt;}
.ls4c{letter-spacing:16.740437pt;}
.ls31{letter-spacing:17.344336pt;}
.ls4e{letter-spacing:17.894719pt;}
.ls56{letter-spacing:19.114266pt;}
.lse{letter-spacing:19.308052pt;}
.ls4d{letter-spacing:19.611778pt;}
.ls0{letter-spacing:21.250245pt;}
.ls1{letter-spacing:21.255578pt;}
.lsd{letter-spacing:21.969478pt;}
.ls52{letter-spacing:23.521386pt;}
.ls51{letter-spacing:23.524932pt;}
.ls62{letter-spacing:24.806583pt;}
.ls19{letter-spacing:26.433386pt;}
.ls18{letter-spacing:27.993318pt;}
.ls5{letter-spacing:28.692861pt;}
.ls15{letter-spacing:35.145364pt;}
.ls16{letter-spacing:35.148052pt;}
.ls4{letter-spacing:89.317828pt;}
.ls65{letter-spacing:91.952075pt;}
.ls6a{letter-spacing:95.568075pt;}
.ls69{letter-spacing:103.242742pt;}
.ls6b{letter-spacing:112.171139pt;}
.ls6c{letter-spacing:133.387139pt;}
.ws62{word-spacing:-49.150218pt;}
.ws71{word-spacing:-45.163900pt;}
.ws57{word-spacing:-37.376737pt;}
.ws6e{word-spacing:-35.132201pt;}
.ws73{word-spacing:-34.464838pt;}
.ws79{word-spacing:-32.624276pt;}
.ws74{word-spacing:-32.614316pt;}
.wsa6{word-spacing:-26.122909pt;}
.ws72{word-spacing:-24.423992pt;}
.ws76{word-spacing:-21.916822pt;}
.wsfd{word-spacing:-20.114640pt;}
.ws63{word-spacing:-13.652838pt;}
.ws6c{word-spacing:-12.543875pt;}
.ws43{word-spacing:-11.955200pt;}
.ws30{word-spacing:-10.626800pt;}
.wsa4{word-spacing:-2.749696pt;}
.wsbc{word-spacing:-2.159626pt;}
.wsa1{word-spacing:-1.936742pt;}
.ws3c{word-spacing:-0.669491pt;}
.ws104{word-spacing:-0.526029pt;}
.ws105{word-spacing:-0.334746pt;}
.ws132{word-spacing:-0.255043pt;}
.ws39{word-spacing:-0.239104pt;}
.ws4b{word-spacing:-0.191283pt;}
.ws10d{word-spacing:-0.085014pt;}
.ws2{word-spacing:-0.053134pt;}
.ws67{word-spacing:-0.047821pt;}
.ws5{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.037194pt;}
.wsfc{word-spacing:-0.032731pt;}
.wsbd{word-spacing:-0.031881pt;}
.wsa3{word-spacing:-0.023910pt;}
.ws78{word-spacing:-0.005359pt;}
.ws7b{word-spacing:-0.004251pt;}
.ws4c{word-spacing:0.000000pt;}
.ws83{word-spacing:0.023910pt;}
.ws13e{word-spacing:0.085014pt;}
.ws11d{word-spacing:0.382565pt;}
.ws13c{word-spacing:0.510086pt;}
.ws46{word-spacing:0.573850pt;}
.ws126{word-spacing:0.595101pt;}
.ws44{word-spacing:0.765133pt;}
.ws6b{word-spacing:0.850144pt;}
.wsc0{word-spacing:0.860774pt;}
.ws4a{word-spacing:0.956416pt;}
.ws29{word-spacing:1.190202pt;}
.wsbe{word-spacing:1.291162pt;}
.ws10c{word-spacing:1.317723pt;}
.wsad{word-spacing:1.338982pt;}
.ws4e{word-spacing:1.482445pt;}
.ws14c{word-spacing:1.572766pt;}
.ws97{word-spacing:1.673728pt;}
.ws95{word-spacing:1.721549pt;}
.ws137{word-spacing:1.742795pt;}
.ws119{word-spacing:1.785302pt;}
.ws11e{word-spacing:1.912824pt;}
.wsed{word-spacing:1.912832pt;}
.wsa0{word-spacing:1.984563pt;}
.ws4d{word-spacing:2.199757pt;}
.ws2f{word-spacing:2.330641pt;}
.wsb9{word-spacing:2.367130pt;}
.ws145{word-spacing:2.422910pt;}
.ws115{word-spacing:2.465418pt;}
.ws98{word-spacing:2.486682pt;}
.ws113{word-spacing:2.507925pt;}
.ws106{word-spacing:2.534502pt;}
.ws1b{word-spacing:2.582323pt;}
.ws28{word-spacing:2.725786pt;}
.ws1d{word-spacing:2.773606pt;}
.ws108{word-spacing:2.805475pt;}
.ws19{word-spacing:2.821427pt;}
.ws18{word-spacing:2.869248pt;}
.ws8a{word-spacing:3.012710pt;}
.ws12f{word-spacing:3.103026pt;}
.ws9a{word-spacing:3.156173pt;}
.ws11f{word-spacing:3.188040pt;}
.ws12b{word-spacing:3.230547pt;}
.ws9{word-spacing:3.315562pt;}
.ws140{word-spacing:3.358069pt;}
.ws93{word-spacing:3.395277pt;}
.ws142{word-spacing:3.400576pt;}
.ws8e{word-spacing:3.443098pt;}
.ws26{word-spacing:3.490918pt;}
.ws91{word-spacing:3.538739pt;}
.ws8d{word-spacing:3.634381pt;}
.ws80{word-spacing:3.698126pt;}
.ws15{word-spacing:3.777843pt;}
.ws10f{word-spacing:3.783141pt;}
.ws59{word-spacing:3.873485pt;}
.ws11c{word-spacing:3.953170pt;}
.ws14e{word-spacing:3.995677pt;}
.ws128{word-spacing:4.038184pt;}
.wsd{word-spacing:4.080691pt;}
.wsee{word-spacing:4.112589pt;}
.ws10a{word-spacing:4.123198pt;}
.ws111{word-spacing:4.165706pt;}
.ws107{word-spacing:4.208213pt;}
.ws2e{word-spacing:4.248803pt;}
.ws11a{word-spacing:4.249265pt;}
.ws2a{word-spacing:4.250720pt;}
.wsfa{word-spacing:4.252471pt;}
.wsf8{word-spacing:4.254137pt;}
.ws9e{word-spacing:4.256051pt;}
.ws121{word-spacing:4.293227pt;}
.ws94{word-spacing:4.303872pt;}
.ws130{word-spacing:4.335734pt;}
.wsb0{word-spacing:4.378242pt;}
.ws3d{word-spacing:4.399514pt;}
.ws122{word-spacing:4.420749pt;}
.ws5a{word-spacing:4.447334pt;}
.ws2d{word-spacing:4.463256pt;}
.ws12{word-spacing:4.495155pt;}
.ws136{word-spacing:4.505763pt;}
.ws16{word-spacing:4.542976pt;}
.ws118{word-spacing:4.548270pt;}
.wsf1{word-spacing:4.590778pt;}
.ws13{word-spacing:4.590797pt;}
.wsf3{word-spacing:4.604568pt;}
.wsf5{word-spacing:4.606515pt;}
.ws25{word-spacing:4.638618pt;}
.ws1a{word-spacing:4.686438pt;}
.ws135{word-spacing:4.718299pt;}
.ws1e{word-spacing:4.734259pt;}
.ws12c{word-spacing:4.760806pt;}
.ws103{word-spacing:4.774417pt;}
.ws101{word-spacing:4.778923pt;}
.ws47{word-spacing:4.781175pt;}
.ws1c{word-spacing:4.782080pt;}
.wsfe{word-spacing:4.811390pt;}
.ws17{word-spacing:4.829901pt;}
.ws3a{word-spacing:4.877722pt;}
.wsc5{word-spacing:4.888328pt;}
.ws3f{word-spacing:4.925542pt;}
.ws20{word-spacing:4.973363pt;}
.ws14a{word-spacing:5.015850pt;}
.ws41{word-spacing:5.021184pt;}
.ws3b{word-spacing:5.069005pt;}
.ws53{word-spacing:5.116826pt;}
.wsa{word-spacing:5.143371pt;}
.ws58{word-spacing:5.164646pt;}
.ws133{word-spacing:5.202260pt;}
.ws45{word-spacing:5.212467pt;}
.ws8{word-spacing:5.270893pt;}
.ws4{word-spacing:5.313387pt;}
.wsf{word-spacing:5.313400pt;}
.wse{word-spacing:5.355907pt;}
.wsbf{word-spacing:5.355930pt;}
.ws8f{word-spacing:5.403750pt;}
.ws6{word-spacing:5.440922pt;}
.ws9c{word-spacing:5.451571pt;}
.wsac{word-spacing:5.475482pt;}
.wsb{word-spacing:5.483429pt;}
.ws9f{word-spacing:5.499392pt;}
.ws22{word-spacing:5.547213pt;}
.ws7{word-spacing:5.568443pt;}
.ws90{word-spacing:5.595034pt;}
.ws27{word-spacing:5.642854pt;}
.wsc{word-spacing:5.653458pt;}
.ws8b{word-spacing:5.690675pt;}
.ws14d{word-spacing:5.695965pt;}
.ws125{word-spacing:5.908501pt;}
.ws100{word-spacing:5.929779pt;}
.ws124{word-spacing:5.951008pt;}
.ws48{word-spacing:5.977600pt;}
.ws86{word-spacing:6.025421pt;}
.wsc4{word-spacing:6.078530pt;}
.wsb8{word-spacing:6.121062pt;}
.wsb2{word-spacing:6.168883pt;}
.wsdb{word-spacing:6.206051pt;}
.ws24{word-spacing:6.216704pt;}
.wsd9{word-spacing:6.248558pt;}
.wsb4{word-spacing:6.312346pt;}
.wsc1{word-spacing:6.407987pt;}
.ws21{word-spacing:6.455808pt;}
.ws42{word-spacing:6.599270pt;}
.wsa9{word-spacing:6.647091pt;}
.ws9d{word-spacing:6.694912pt;}
.ws84{word-spacing:6.742733pt;}
.ws82{word-spacing:6.790554pt;}
.ws12a{word-spacing:6.801152pt;}
.ws52{word-spacing:6.838374pt;}
.ws92{word-spacing:6.886195pt;}
.wsff{word-spacing:6.934016pt;}
.ws7f{word-spacing:6.971181pt;}
.ws14{word-spacing:6.981837pt;}
.ws5f{word-spacing:7.029658pt;}
.wsa2{word-spacing:7.173120pt;}
.wsab{word-spacing:7.268762pt;}
.ws2c{word-spacing:7.353746pt;}
.ws3e{word-spacing:7.364403pt;}
.ws13a{word-spacing:7.438760pt;}
.ws40{word-spacing:7.460045pt;}
.wsa8{word-spacing:7.699149pt;}
.ws117{word-spacing:7.736310pt;}
.ws88{word-spacing:7.938253pt;}
.ws110{word-spacing:8.033861pt;}
.ws99{word-spacing:8.033894pt;}
.ws85{word-spacing:8.129536pt;}
.ws65{word-spacing:8.155628pt;}
.ws64{word-spacing:8.160961pt;}
.ws8c{word-spacing:8.177357pt;}
.wsba{word-spacing:8.272998pt;}
.ws143{word-spacing:8.501440pt;}
.ws7e{word-spacing:8.543947pt;}
.ws49{word-spacing:8.799027pt;}
.ws2b{word-spacing:8.926512pt;}
.ws56{word-spacing:8.990310pt;}
.ws0{word-spacing:9.032800pt;}
.ws60{word-spacing:9.181594pt;}
.ws87{word-spacing:9.372877pt;}
.ws12e{word-spacing:9.436598pt;}
.wsaa{word-spacing:9.516339pt;}
.ws61{word-spacing:9.803264pt;}
.wsbb{word-spacing:9.898906pt;}
.ws55{word-spacing:10.042368pt;}
.ws81{word-spacing:10.090189pt;}
.wsc2{word-spacing:10.185830pt;}
.ws68{word-spacing:10.233651pt;}
.wsa7{word-spacing:10.281472pt;}
.ws139{word-spacing:10.286742pt;}
.ws5b{word-spacing:10.424934pt;}
.wsb1{word-spacing:10.616218pt;}
.ws54{word-spacing:10.998784pt;}
.ws6a{word-spacing:11.046605pt;}
.wsc3{word-spacing:11.166157pt;}
.ws127{word-spacing:11.179394pt;}
.ws66{word-spacing:11.237888pt;}
.ws1f{word-spacing:11.285709pt;}
.ws4f{word-spacing:11.620454pt;}
.wsa5{word-spacing:11.668275pt;}
.ws89{word-spacing:11.907379pt;}
.ws10{word-spacing:11.955200pt;}
.wsb3{word-spacing:12.003021pt;}
.wsf0{word-spacing:12.157059pt;}
.ws23{word-spacing:12.194304pt;}
.ws5e{word-spacing:12.337766pt;}
.ws5d{word-spacing:12.385587pt;}
.ws7c{word-spacing:12.504839pt;}
.ws13f{word-spacing:13.007203pt;}
.ws114{word-spacing:13.092218pt;}
.wsb6{word-spacing:13.102899pt;}
.ws109{word-spacing:13.389768pt;}
.wsb5{word-spacing:13.389824pt;}
.wsec{word-spacing:13.581107pt;}
.ws120{word-spacing:13.772333pt;}
.ws50{word-spacing:13.772390pt;}
.ws51{word-spacing:13.820211pt;}
.ws141{word-spacing:13.984869pt;}
.ws9b{word-spacing:14.002159pt;}
.ws5c{word-spacing:14.298419pt;}
.ws10e{word-spacing:14.367434pt;}
.ws11{word-spacing:14.394061pt;}
.ws14f{word-spacing:14.537462pt;}
.wsef{word-spacing:14.579970pt;}
.ws129{word-spacing:14.622477pt;}
.ws148{word-spacing:14.664984pt;}
.ws10b{word-spacing:14.707491pt;}
.ws112{word-spacing:14.749998pt;}
.ws11b{word-spacing:14.835013pt;}
.ws146{word-spacing:14.877520pt;}
.ws131{word-spacing:14.920027pt;}
.ws123{word-spacing:14.962534pt;}
.ws138{word-spacing:15.090056pt;}
.ws13d{word-spacing:15.132563pt;}
.ws116{word-spacing:15.175070pt;}
.wsf4{word-spacing:15.199537pt;}
.ws12d{word-spacing:15.345099pt;}
.wsf6{word-spacing:15.519574pt;}
.ws69{word-spacing:15.541760pt;}
.wsf7{word-spacing:15.596663pt;}
.ws14b{word-spacing:15.600142pt;}
.ws149{word-spacing:15.727664pt;}
.ws134{word-spacing:15.770171pt;}
.ws144{word-spacing:15.855186pt;}
.wsf2{word-spacing:15.938520pt;}
.ws147{word-spacing:16.237750pt;}
.wseb{word-spacing:16.450355pt;}
.ws102{word-spacing:16.689044pt;}
.wsf9{word-spacing:17.169025pt;}
.ws13b{word-spacing:18.023053pt;}
.ws1{word-spacing:18.543719pt;}
.ws96{word-spacing:23.868095pt;}
.wsd4{word-spacing:29.223700pt;}
.wsb7{word-spacing:30.461850pt;}
.wsfb{word-spacing:40.913180pt;}
.wse3{word-spacing:50.916444pt;}
.ws75{word-spacing:53.340075pt;}
.ws37{word-spacing:55.255430pt;}
.ws33{word-spacing:55.258166pt;}
.ws35{word-spacing:55.260400pt;}
.wse5{word-spacing:59.859159pt;}
.wse7{word-spacing:60.495111pt;}
.ws77{word-spacing:62.788000pt;}
.ws32{word-spacing:65.822474pt;}
.wse8{word-spacing:69.615111pt;}
.wse4{word-spacing:72.927111pt;}
.wsd5{word-spacing:77.014398pt;}
.ws31{word-spacing:77.157308pt;}
.wse6{word-spacing:79.085749pt;}
.wsd6{word-spacing:91.115732pt;}
.wsd8{word-spacing:94.609065pt;}
.ws38{word-spacing:95.832557pt;}
.ws36{word-spacing:95.896557pt;}
.wsae{word-spacing:98.345077pt;}
.wsc6{word-spacing:98.361661pt;}
.ws34{word-spacing:103.653882pt;}
.wsd7{word-spacing:108.715732pt;}
.wsc8{word-spacing:112.139732pt;}
.wsc9{word-spacing:115.755732pt;}
.wscd{word-spacing:115.761065pt;}
.wsea{word-spacing:116.576508pt;}
.wse0{word-spacing:118.278463pt;}
.wsdd{word-spacing:118.449065pt;}
.wsdf{word-spacing:119.339732pt;}
.wsdc{word-spacing:122.065065pt;}
.wsd0{word-spacing:123.430398pt;}
.wse9{word-spacing:127.051732pt;}
.wsde{word-spacing:127.226906pt;}
.wsce{word-spacing:129.739732pt;}
.wsc7{word-spacing:131.093256pt;}
.wsd2{word-spacing:133.355732pt;}
.wsd1{word-spacing:134.721065pt;}
.ws7a{word-spacing:136.299924pt;}
.wse1{word-spacing:143.979732pt;}
.wse2{word-spacing:143.985065pt;}
.wsda{word-spacing:144.646398pt;}
.wsd3{word-spacing:148.961809pt;}
.wscb{word-spacing:152.321065pt;}
.wsca{word-spacing:155.937065pt;}
.wscc{word-spacing:157.467107pt;}
.wscf{word-spacing:160.217041pt;}
.ws6f{word-spacing:182.908075pt;}
.ws70{word-spacing:261.884075pt;}
.ws6d{word-spacing:272.436000pt;}
.ws7d{word-spacing:386.065839pt;}
.wsaf{word-spacing:977.914194pt;}
._18{margin-left:-27.977776pt;}
._12{margin-left:-5.961662pt;}
._16{margin-left:-4.649256pt;}
._3{margin-left:-3.719371pt;}
._1{margin-left:-2.258200pt;}
._0{margin-left:-1.354920pt;}
._7{width:1.232709pt;}
._4{width:2.146699pt;}
._17{width:3.304873pt;}
._2{width:4.343702pt;}
._14{width:6.349418pt;}
._f{width:10.377114pt;}
._5{width:13.049710pt;}
._25{width:13.979558pt;}
._19{width:15.015731pt;}
._13{width:15.972147pt;}
._6{width:16.960354pt;}
._10{width:18.426946pt;}
._22{width:19.569246pt;}
._23{width:20.982658pt;}
._11{width:23.910400pt;}
._15{width:26.312074pt;}
._24{width:41.871906pt;}
._21{width:60.037938pt;}
._20{width:65.919316pt;}
._b{width:77.659460pt;}
._d{width:103.696389pt;}
._1f{width:110.991115pt;}
._1d{width:141.016244pt;}
._1c{width:146.437304pt;}
._1e{width:151.620556pt;}
._c{width:170.194899pt;}
._1b{width:196.850843pt;}
._8{width:236.718667pt;}
._e{width:245.113829pt;}
._1a{width:257.682577pt;}
._a{width:276.845463pt;}
._9{width:291.000361pt;}
.fsd{font-size:24.548011pt;}
.fs8{font-size:25.177720pt;}
.fs9{font-size:26.566933pt;}
.fs7{font-size:27.466604pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:32.730544pt;}
.fsa{font-size:33.727467pt;}
.fs2{font-size:37.193600pt;}
.fsb{font-size:40.472960pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:90.328000pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:0.295614pt;}
.y100{bottom:4.169031pt;}
.y9e{bottom:4.301161pt;}
.y108{bottom:6.794416pt;}
.yff{bottom:15.196332pt;}
.y9a{bottom:31.195544pt;}
.y106{bottom:32.964031pt;}
.ya0{bottom:38.062195pt;}
.ya1{bottom:44.356625pt;}
.y9d{bottom:50.078834pt;}
.y105{bottom:50.845210pt;}
.y9f{bottom:67.245461pt;}
.y104{bottom:68.726389pt;}
.y107{bottom:79.537798pt;}
.y103{bottom:86.607567pt;}
.y9b{bottom:87.273193pt;}
.y37{bottom:99.098667pt;}
.y16e{bottom:103.240933pt;}
.y184{bottom:103.777333pt;}
.y102{bottom:104.488746pt;}
.y16c{bottom:110.860853pt;}
.y36{bottom:111.053333pt;}
.y5f{bottom:113.773333pt;}
.y98{bottom:115.170667pt;}
.y16d{bottom:117.049600pt;}
.y183{bottom:118.452000pt;}
.y101{bottom:122.369924pt;}
.y35{bottom:123.008000pt;}
.y97{bottom:123.540000pt;}
.y96{bottom:127.706667pt;}
.y5e{bottom:128.448000pt;}
.y16b{bottom:131.266880pt;}
.y182{bottom:133.126667pt;}
.y34{bottom:134.964000pt;}
.y1ce{bottom:135.364000pt;}
.y169{bottom:138.886800pt;}
.y5d{bottom:143.124000pt;}
.y16a{bottom:145.074520pt;}
.y1cd{bottom:147.320000pt;}
.y181{bottom:147.802667pt;}
.y95{bottom:152.729333pt;}
.y5c{bottom:157.798667pt;}
.y134{bottom:157.897333pt;}
.y1cc{bottom:159.274667pt;}
.y168{bottom:159.291800pt;}
.y180{bottom:162.477333pt;}
.y94{bottom:164.685333pt;}
.y166{bottom:166.911720pt;}
.y1cb{bottom:171.630667pt;}
.ycc{bottom:172.473333pt;}
.y133{bottom:172.572000pt;}
.y167{bottom:173.100467pt;}
.y5b{bottom:176.424000pt;}
.y17f{bottom:177.152000pt;}
.y1ca{bottom:183.585333pt;}
.y33{bottom:186.865333pt;}
.ycb{bottom:187.149333pt;}
.y132{bottom:187.248000pt;}
.y165{bottom:187.317747pt;}
.y93{bottom:188.596000pt;}
.y17e{bottom:191.828000pt;}
.y163{bottom:194.937667pt;}
.y1c9{bottom:195.541333pt;}
.y92{bottom:200.550667pt;}
.y164{bottom:201.125387pt;}
.y32{bottom:201.540000pt;}
.yca{bottom:201.824000pt;}
.y131{bottom:201.922667pt;}
.y5a{bottom:202.126667pt;}
.y17d{bottom:206.502667pt;}
.y1c8{bottom:207.496000pt;}
.y91{bottom:212.505333pt;}
.y162{bottom:215.343693pt;}
.y31{bottom:216.214667pt;}
.yc9{bottom:216.498667pt;}
.y130{bottom:216.597333pt;}
.y59{bottom:216.801333pt;}
.y1c7{bottom:219.852000pt;}
.y17c{bottom:221.177333pt;}
.y160{bottom:222.963613pt;}
.y161{bottom:229.151333pt;}
.y30{bottom:230.890667pt;}
.yc8{bottom:231.174667pt;}
.y12f{bottom:231.273333pt;}
.y58{bottom:231.476000pt;}
.y1c6{bottom:231.806667pt;}
.y17b{bottom:235.853333pt;}
.y90{bottom:238.982667pt;}
.y15f{bottom:243.368613pt;}
.y1c5{bottom:243.762667pt;}
.y2f{bottom:245.565333pt;}
.yfd{bottom:245.849333pt;}
.y12e{bottom:245.948000pt;}
.y57{bottom:246.152000pt;}
.yc7{bottom:250.412000pt;}
.y17a{bottom:250.528000pt;}
.y8f{bottom:250.937333pt;}
.y15d{bottom:250.988533pt;}
.y1c4{bottom:256.118667pt;}
.y15e{bottom:257.177280pt;}
.y2e{bottom:260.240000pt;}
.yfc{bottom:260.524000pt;}
.y12d{bottom:260.622667pt;}
.y56{bottom:260.826667pt;}
.y179{bottom:265.202667pt;}
.y1c3{bottom:268.073333pt;}
.y15c{bottom:271.394560pt;}
.yc6{bottom:273.462667pt;}
.y2d{bottom:274.916000pt;}
.yfb{bottom:275.200000pt;}
.y12c{bottom:275.298667pt;}
.y55{bottom:275.501333pt;}
.y178{bottom:279.878667pt;}
.y1c1{bottom:280.028000pt;}
.y1c2{bottom:280.081333pt;}
.y8e{bottom:281.596000pt;}
.y15b{bottom:286.682667pt;}
.yc5{bottom:288.138667pt;}
.y2c{bottom:289.637333pt;}
.yfa{bottom:289.896000pt;}
.y12b{bottom:289.973333pt;}
.y54{bottom:290.177333pt;}
.y1c0{bottom:292.384000pt;}
.y177{bottom:294.553333pt;}
.y8d{bottom:296.270667pt;}
.y15a{bottom:298.637333pt;}
.y60{bottom:301.346667pt;}
.yc4{bottom:302.813333pt;}
.y2b{bottom:304.312000pt;}
.y1bf{bottom:304.340000pt;}
.yf9{bottom:304.570667pt;}
.y12a{bottom:304.648000pt;}
.y53{bottom:304.852000pt;}
.y176{bottom:309.228000pt;}
.y159{bottom:310.592000pt;}
.y8c{bottom:310.946667pt;}
.y1be{bottom:316.294667pt;}
.yc3{bottom:317.488000pt;}
.y2a{bottom:318.988000pt;}
.yf8{bottom:319.246667pt;}
.y129{bottom:319.324000pt;}
.y52{bottom:319.526667pt;}
.y8b{bottom:325.621333pt;}
.y175{bottom:327.669333pt;}
.y1bd{bottom:328.249333pt;}
.yc2{bottom:332.164000pt;}
.y29{bottom:333.662667pt;}
.yf7{bottom:333.921333pt;}
.y128{bottom:333.998667pt;}
.y51{bottom:336.928000pt;}
.y8a{bottom:340.296000pt;}
.y1bc{bottom:340.605333pt;}
.y158{bottom:345.592000pt;}
.yc1{bottom:346.838667pt;}
.y28{bottom:348.337333pt;}
.yf6{bottom:348.596000pt;}
.y127{bottom:348.772000pt;}
.y50{bottom:351.602667pt;}
.y1bb{bottom:352.561333pt;}
.y89{bottom:354.972000pt;}
.y157{bottom:360.266667pt;}
.yc0{bottom:361.513333pt;}
.y27{bottom:363.013333pt;}
.yf5{bottom:363.272000pt;}
.y126{bottom:363.448000pt;}
.y1ba{bottom:364.917333pt;}
.y4f{bottom:366.277333pt;}
.y88{bottom:369.646667pt;}
.y156{bottom:374.941333pt;}
.ybf{bottom:376.189333pt;}
.y174{bottom:376.870667pt;}
.y1b9{bottom:376.872000pt;}
.y26{bottom:377.688000pt;}
.yf4{bottom:377.946667pt;}
.y125{bottom:378.122667pt;}
.y4e{bottom:380.953333pt;}
.y87{bottom:384.321333pt;}
.y1b8{bottom:389.228000pt;}
.y155{bottom:389.617333pt;}
.ybe{bottom:390.864000pt;}
.y173{bottom:391.546667pt;}
.y25{bottom:392.362667pt;}
.yf3{bottom:392.621333pt;}
.y124{bottom:392.797333pt;}
.y4d{bottom:395.628000pt;}
.y86{bottom:398.997333pt;}
.y1b7{bottom:401.182667pt;}
.y154{bottom:404.292000pt;}
.ybd{bottom:405.538667pt;}
.y172{bottom:406.221333pt;}
.y24{bottom:407.038667pt;}
.yf2{bottom:407.297333pt;}
.y123{bottom:407.473333pt;}
.y4c{bottom:410.302667pt;}
.y1b6{bottom:413.138667pt;}
.y85{bottom:413.672000pt;}
.y153{bottom:418.966667pt;}
.ybc{bottom:420.214667pt;}
.y171{bottom:420.896000pt;}
.y23{bottom:421.713333pt;}
.yf1{bottom:421.972000pt;}
.y122{bottom:422.148000pt;}
.y4b{bottom:424.978667pt;}
.y1b5{bottom:425.093333pt;}
.y84{bottom:428.346667pt;}
.y152{bottom:433.642667pt;}
.ybb{bottom:434.889333pt;}
.y170{bottom:435.572000pt;}
.y22{bottom:436.434667pt;}
.yf0{bottom:436.646667pt;}
.y121{bottom:436.822667pt;}
.y1b4{bottom:437.449333pt;}
.y4a{bottom:439.653333pt;}
.y83{bottom:447.456000pt;}
.y151{bottom:448.317333pt;}
.y1b3{bottom:449.404000pt;}
.y16f{bottom:450.246667pt;}
.y21{bottom:451.109333pt;}
.yef{bottom:451.342667pt;}
.y120{bottom:451.498667pt;}
.yba{bottom:454.128000pt;}
.y49{bottom:454.328000pt;}
.y1b2{bottom:461.360000pt;}
.y150{bottom:464.921333pt;}
.y20{bottom:465.785333pt;}
.yee{bottom:466.018667pt;}
.y11f{bottom:466.173333pt;}
.y48{bottom:469.004000pt;}
.y82{bottom:470.240000pt;}
.y1b1{bottom:473.314667pt;}
.yb9{bottom:477.178667pt;}
.y14f{bottom:479.597333pt;}
.y1f{bottom:480.460000pt;}
.yed{bottom:480.693333pt;}
.y11e{bottom:480.848000pt;}
.y47{bottom:483.678667pt;}
.y81{bottom:484.916000pt;}
.y1b0{bottom:485.670667pt;}
.yb8{bottom:491.853333pt;}
.y14e{bottom:494.272000pt;}
.y1e{bottom:495.134667pt;}
.yec{bottom:495.368000pt;}
.y11d{bottom:495.621333pt;}
.y1af{bottom:497.625333pt;}
.y46{bottom:498.385333pt;}
.y80{bottom:499.590667pt;}
.yb7{bottom:506.529333pt;}
.y14d{bottom:508.946667pt;}
.y1ae{bottom:509.581333pt;}
.y1d{bottom:509.810667pt;}
.yeb{bottom:510.044000pt;}
.y11c{bottom:510.297333pt;}
.y45{bottom:513.060000pt;}
.y7f{bottom:514.265333pt;}
.yb6{bottom:521.204000pt;}
.y1ad{bottom:521.937333pt;}
.y14c{bottom:523.622667pt;}
.y1c{bottom:524.485333pt;}
.yea{bottom:524.718667pt;}
.y44{bottom:527.734667pt;}
.y7e{bottom:528.941333pt;}
.y11b{bottom:529.329333pt;}
.y1ac{bottom:533.892000pt;}
.yb5{bottom:535.878667pt;}
.y14b{bottom:538.297333pt;}
.y1b{bottom:539.160000pt;}
.ye9{bottom:539.393333pt;}
.y43{bottom:542.410667pt;}
.y7d{bottom:543.616000pt;}
.y1ab{bottom:545.846667pt;}
.y1f6{bottom:549.218667pt;}
.yb4{bottom:550.554667pt;}
.y11a{bottom:552.912000pt;}
.y14a{bottom:552.972000pt;}
.y1a{bottom:553.836000pt;}
.ye8{bottom:554.069333pt;}
.y42{bottom:557.085333pt;}
.y1a9{bottom:557.802667pt;}
.y1aa{bottom:557.856000pt;}
.y7c{bottom:558.290667pt;}
.y1f5{bottom:561.173333pt;}
.yb3{bottom:565.229333pt;}
.y119{bottom:567.588000pt;}
.y19{bottom:568.510667pt;}
.ye7{bottom:568.744000pt;}
.y1a8{bottom:570.158667pt;}
.y41{bottom:571.760000pt;}
.y7b{bottom:572.966667pt;}
.y1f4{bottom:573.129333pt;}
.yb2{bottom:579.904000pt;}
.y1a7{bottom:582.113333pt;}
.y118{bottom:582.262667pt;}
.y18{bottom:583.185333pt;}
.ye6{bottom:583.418667pt;}
.y1f3{bottom:585.084000pt;}
.y40{bottom:586.436000pt;}
.y7a{bottom:587.641333pt;}
.y149{bottom:590.688000pt;}
.y1a6{bottom:594.068000pt;}
.yb1{bottom:594.580000pt;}
.y117{bottom:596.937333pt;}
.y1f2{bottom:597.040000pt;}
.y17{bottom:597.861333pt;}
.ye5{bottom:598.116000pt;}
.y79{bottom:602.316000pt;}
.y1a5{bottom:606.424000pt;}
.y148{bottom:608.621333pt;}
.y1f1{bottom:608.994667pt;}
.yb0{bottom:609.254667pt;}
.y116{bottom:611.613333pt;}
.y16{bottom:612.536000pt;}
.ye4{bottom:612.790667pt;}
.y78{bottom:616.992000pt;}
.y1a4{bottom:618.380000pt;}
.y1f0{bottom:620.949333pt;}
.yaf{bottom:623.929333pt;}
.y3f{bottom:625.669333pt;}
.ye3{bottom:627.465333pt;}
.y147{bottom:630.273333pt;}
.y1a3{bottom:630.334667pt;}
.y115{bottom:630.398667pt;}
.y15{bottom:631.256000pt;}
.y77{bottom:631.666667pt;}
.y1ef{bottom:632.905333pt;}
.yae{bottom:638.605333pt;}
.y3e{bottom:641.741333pt;}
.ye2{bottom:642.141333pt;}
.y1a2{bottom:642.690667pt;}
.y1ec{bottom:644.860000pt;}
.y1ed{bottom:644.913333pt;}
.y76{bottom:646.341333pt;}
.y1ee{bottom:647.325333pt;}
.y146{bottom:648.737333pt;}
.y114{bottom:652.513333pt;}
.yad{bottom:653.280000pt;}
.y14{bottom:654.396000pt;}
.y1a1{bottom:654.645333pt;}
.y1eb{bottom:656.814667pt;}
.ye1{bottom:656.816000pt;}
.y3d{bottom:657.814667pt;}
.y75{bottom:661.017333pt;}
.y13{bottom:666.350667pt;}
.y1a0{bottom:666.601333pt;}
.y113{bottom:667.189333pt;}
.y145{bottom:667.201333pt;}
.yac{bottom:667.954667pt;}
.y1ea{bottom:668.770667pt;}
.ye0{bottom:671.490667pt;}
.y3c{bottom:673.888000pt;}
.y74{bottom:675.692000pt;}
.y12{bottom:678.305333pt;}
.y19f{bottom:678.957333pt;}
.y1e9{bottom:680.725333pt;}
.y112{bottom:681.864000pt;}
.y144{bottom:685.665333pt;}
.ydf{bottom:686.166667pt;}
.yab{bottom:687.193333pt;}
.y3b{bottom:689.961333pt;}
.y11{bottom:690.261333pt;}
.y73{bottom:690.366667pt;}
.y19e{bottom:690.912000pt;}
.y1e8{bottom:692.681333pt;}
.y111{bottom:696.538667pt;}
.yde{bottom:700.841333pt;}
.y10{bottom:702.216000pt;}
.y19d{bottom:702.866667pt;}
.y143{bottom:704.129333pt;}
.y1e7{bottom:704.636000pt;}
.y72{bottom:705.042667pt;}
.y3a{bottom:706.034667pt;}
.yaa{bottom:710.244000pt;}
.y110{bottom:711.214667pt;}
.yf{bottom:714.170667pt;}
.y19c{bottom:715.222667pt;}
.y1e4{bottom:716.590667pt;}
.y1e5{bottom:716.644000pt;}
.y1e6{bottom:719.056000pt;}
.ydd{bottom:719.356000pt;}
.y71{bottom:719.717333pt;}
.y39{bottom:722.106667pt;}
.y142{bottom:722.593333pt;}
.ya9{bottom:724.918667pt;}
.y10f{bottom:725.889333pt;}
.ye{bottom:726.126667pt;}
.y19b{bottom:727.178667pt;}
.y1e3{bottom:728.546667pt;}
.y70{bottom:734.392000pt;}
.y38{bottom:737.649333pt;}
.yd{bottom:738.081333pt;}
.y19a{bottom:739.133333pt;}
.ya8{bottom:739.594667pt;}
.y1e2{bottom:740.501333pt;}
.y141{bottom:740.525333pt;}
.y10e{bottom:740.564000pt;}
.ydc{bottom:740.910667pt;}
.y6f{bottom:749.068000pt;}
.yc{bottom:750.037333pt;}
.y199{bottom:751.089333pt;}
.y1e1{bottom:752.456000pt;}
.ya7{bottom:754.269333pt;}
.y10d{bottom:755.240000pt;}
.ydb{bottom:755.585333pt;}
.yb{bottom:761.992000pt;}
.y140{bottom:762.177333pt;}
.y198{bottom:763.444000pt;}
.y6e{bottom:763.742667pt;}
.y1e0{bottom:764.412000pt;}
.ya6{bottom:768.944000pt;}
.y10c{bottom:769.914667pt;}
.yda{bottom:770.260000pt;}
.ya{bottom:773.946667pt;}
.y197{bottom:775.400000pt;}
.y1df{bottom:776.366667pt;}
.y13f{bottom:780.642667pt;}
.y6d{bottom:782.852000pt;}
.y10b{bottom:784.589333pt;}
.yd9{bottom:784.936000pt;}
.y9{bottom:785.902667pt;}
.y196{bottom:787.354667pt;}
.y1de{bottom:788.322667pt;}
.ya5{bottom:799.014667pt;}
.y13e{bottom:799.106667pt;}
.yd8{bottom:799.610667pt;}
.y195{bottom:799.710667pt;}
.y1dd{bottom:800.277333pt;}
.y10a{bottom:803.376000pt;}
.y6c{bottom:805.636000pt;}
.ya4{bottom:810.970667pt;}
.y194{bottom:811.665333pt;}
.y1dc{bottom:812.232000pt;}
.yd7{bottom:814.285333pt;}
.y13d{bottom:817.570667pt;}
.y6b{bottom:820.310667pt;}
.ya3{bottom:822.925333pt;}
.y8{bottom:823.292000pt;}
.y192{bottom:823.621333pt;}
.y193{bottom:823.674667pt;}
.y1db{bottom:824.188000pt;}
.yd6{bottom:828.961333pt;}
.y109{bottom:832.956000pt;}
.ya2{bottom:834.881333pt;}
.y6a{bottom:834.985333pt;}
.y191{bottom:835.977333pt;}
.y13c{bottom:836.034667pt;}
.y1da{bottom:836.142667pt;}
.y7{bottom:839.232000pt;}
.yd5{bottom:843.636000pt;}
.y6{bottom:844.053333pt;}
.y190{bottom:847.932000pt;}
.y1d9{bottom:848.097333pt;}
.y69{bottom:849.661333pt;}
.y13b{bottom:854.498667pt;}
.yfe{bottom:854.969333pt;}
.y5{bottom:855.172000pt;}
.y99{bottom:856.893333pt;}
.yd4{bottom:858.310667pt;}
.y18d{bottom:859.886667pt;}
.y18e{bottom:859.888000pt;}
.y18f{bottom:859.940000pt;}
.y1d8{bottom:860.053333pt;}
.y68{bottom:864.336000pt;}
.y1d7{bottom:872.008000pt;}
.y18c{bottom:872.242667pt;}
.y13a{bottom:872.962667pt;}
.yd3{bottom:872.986667pt;}
.y4{bottom:875.933333pt;}
.y67{bottom:883.445333pt;}
.y1d6{bottom:883.964000pt;}
.y18b{bottom:884.198667pt;}
.yd2{bottom:887.661333pt;}
.y139{bottom:891.426667pt;}
.y1d5{bottom:895.918667pt;}
.y18a{bottom:896.153333pt;}
.yd1{bottom:902.336000pt;}
.y3{bottom:902.993333pt;}
.y66{bottom:906.229333pt;}
.y1d3{bottom:907.873333pt;}
.y1d4{bottom:907.926667pt;}
.y189{bottom:908.109333pt;}
.y138{bottom:909.890667pt;}
.yd0{bottom:917.012000pt;}
.y1d2{bottom:919.829333pt;}
.y188{bottom:920.464000pt;}
.y65{bottom:920.904000pt;}
.y137{bottom:927.822667pt;}
.ycf{bottom:931.686667pt;}
.y1d1{bottom:931.784000pt;}
.y187{bottom:932.420000pt;}
.y64{bottom:935.580000pt;}
.y2{bottom:937.637333pt;}
.y1d0{bottom:943.740000pt;}
.y186{bottom:944.374667pt;}
.yce{bottom:946.361333pt;}
.y136{bottom:949.474667pt;}
.y63{bottom:950.254667pt;}
.y1cf{bottom:955.694667pt;}
.y185{bottom:956.330667pt;}
.ycd{bottom:961.037333pt;}
.y1{bottom:964.204000pt;}
.y62{bottom:964.929333pt;}
.y135{bottom:967.649333pt;}
.y61{bottom:979.605333pt;}
.h19{height:18.330069pt;}
.h18{height:19.996439pt;}
.h20{height:22.354962pt;}
.h1e{height:22.518614pt;}
.h21{height:22.714998pt;}
.h1f{height:23.369608pt;}
.hf{height:23.464073pt;}
.h4{height:24.696550pt;}
.hb{height:29.244954pt;}
.h8{height:29.499997pt;}
.h7{height:29.712533pt;}
.he{height:29.970508pt;}
.h1b{height:30.084900pt;}
.hc{height:30.350141pt;}
.hd{height:31.880400pt;}
.ha{height:32.900710pt;}
.h14{height:33.113109pt;}
.h9{height:33.187635pt;}
.h11{height:33.570202pt;}
.h12{height:33.713664pt;}
.h13{height:35.865600pt;}
.h1c{height:36.101880pt;}
.h2{height:36.290431pt;}
.h5{height:36.556100pt;}
.h6{height:36.822767pt;}
.h15{height:38.932574pt;}
.h1d{height:43.778739pt;}
.h3{height:43.976550pt;}
.h16{height:48.549333pt;}
.h1{height:62.145664pt;}
.h10{height:104.687500pt;}
.h17{height:132.983304pt;}
.h1a{height:134.909867pt;}
.h0{height:1056.000000pt;}
.w2{width:334.744263pt;}
.w1{width:334.747790pt;}
.w0{width:816.000000pt;}
.x7a{left:-5.391125pt;}
.x0{left:0.000000pt;}
.x78{left:20.484166pt;}
.x75{left:33.685307pt;}
.x79{left:35.345331pt;}
.x77{left:41.642881pt;}
.x1d{left:42.666667pt;}
.x76{left:44.449112pt;}
.x7b{left:50.272370pt;}
.x74{left:56.451347pt;}
.x5b{left:64.388000pt;}
.xc{left:65.285333pt;}
.x3d{left:71.013194pt;}
.x62{left:72.249333pt;}
.xac{left:74.562120pt;}
.xe{left:75.912000pt;}
.xb{left:77.240000pt;}
.xb0{left:78.798147pt;}
.xb3{left:79.983947pt;}
.xaa{left:83.186667pt;}
.x3e{left:87.679129pt;}
.xb5{left:88.966667pt;}
.x30{left:95.413333pt;}
.x35{left:98.661333pt;}
.x3b{left:101.805333pt;}
.x60{left:103.380000pt;}
.x5e{left:105.824000pt;}
.x41{left:111.068658pt;}
.x98{left:113.550667pt;}
.x61{left:114.984000pt;}
.x9b{left:115.945333pt;}
.x99{left:119.053333pt;}
.x9a{left:120.593333pt;}
.x95{left:122.649333pt;}
.x1{left:123.785333pt;}
.xa0{left:125.378667pt;}
.x96{left:126.766667pt;}
.x6b{left:128.126667pt;}
.x94{left:130.096000pt;}
.x93{left:131.890667pt;}
.xa7{left:132.808000pt;}
.x92{left:134.262667pt;}
.x39{left:136.868000pt;}
.xad{left:138.448507pt;}
.x67{left:142.837333pt;}
.x24{left:145.073333pt;}
.x6c{left:149.881333pt;}
.x59{left:155.397333pt;}
.x25{left:157.868000pt;}
.x3f{left:164.857425pt;}
.xab{left:166.695187pt;}
.xae{left:167.717747pt;}
.x40{left:169.247435pt;}
.xd{left:177.544000pt;}
.xa1{left:178.585333pt;}
.x6e{left:181.114667pt;}
.x7{left:191.012000pt;}
.x6f{left:193.120000pt;}
.x2{left:194.838667pt;}
.x33{left:196.077333pt;}
.x5c{left:199.577333pt;}
.xb1{left:201.471467pt;}
.x2a{left:203.061333pt;}
.xa8{left:207.588000pt;}
.x72{left:213.256000pt;}
.x6d{left:214.485333pt;}
.x28{left:217.765333pt;}
.x31{left:219.886667pt;}
.x37{left:222.170667pt;}
.x34{left:225.550667pt;}
.x5{left:227.620000pt;}
.x3{left:229.293333pt;}
.x2b{left:232.600000pt;}
.xa6{left:234.626667pt;}
.x2e{left:238.013333pt;}
.x29{left:244.860000pt;}
.x5d{left:245.894667pt;}
.x32{left:247.249333pt;}
.x9d{left:249.932000pt;}
.x90{left:251.038667pt;}
.x68{left:253.193333pt;}
.xa{left:254.802667pt;}
.xa3{left:258.610667pt;}
.x5f{left:261.054667pt;}
.x2f{left:262.005333pt;}
.x3a{left:267.197333pt;}
.x43{left:268.992693pt;}
.x20{left:270.344000pt;}
.x36{left:272.996000pt;}
.x3c{left:274.354667pt;}
.x26{left:279.249333pt;}
.x42{left:281.814018pt;}
.x4{left:284.858667pt;}
.x21{left:286.306667pt;}
.x73{left:287.884000pt;}
.x9e{left:292.465333pt;}
.x6{left:293.424000pt;}
.x2c{left:297.668000pt;}
.x27{left:300.412000pt;}
.x44{left:302.476555pt;}
.xa4{left:304.242667pt;}
.x38{left:305.253333pt;}
.xa2{left:318.042667pt;}
.x69{left:323.944000pt;}
.xa5{left:325.250667pt;}
.x8{left:326.178667pt;}
.x70{left:330.100000pt;}
.x22{left:332.393333pt;}
.x9f{left:337.045333pt;}
.x1e{left:339.522667pt;}
.xb6{left:340.437333pt;}
.x23{left:348.125333pt;}
.x1f{left:350.658667pt;}
.x63{left:358.932000pt;}
.xa9{left:362.085333pt;}
.x66{left:366.793333pt;}
.xaf{left:372.144533pt;}
.xb2{left:374.189653pt;}
.x97{left:376.837333pt;}
.x71{left:378.021333pt;}
.x2d{left:379.966667pt;}
.x64{left:380.978667pt;}
.x9c{left:383.920000pt;}
.x91{left:387.464000pt;}
.x5a{left:390.270667pt;}
.x65{left:391.896000pt;}
.x6a{left:398.476000pt;}
.xf{left:415.970667pt;}
.x45{left:419.564000pt;}
.x7c{left:426.641333pt;}
.x1a{left:427.925333pt;}
.x8c{left:428.905333pt;}
.xb7{left:438.238667pt;}
.xb9{left:439.269333pt;}
.x1b{left:440.190667pt;}
.x8d{left:441.642667pt;}
.x46{left:447.029333pt;}
.x84{left:450.478667pt;}
.x19{left:455.904000pt;}
.xba{left:459.930667pt;}
.x83{left:461.544000pt;}
.x51{left:462.982667pt;}
.x57{left:467.022667pt;}
.x47{left:473.356000pt;}
.x12{left:479.769333pt;}
.x52{left:491.500000pt;}
.x80{left:495.216000pt;}
.x13{left:499.004000pt;}
.x85{left:501.030667pt;}
.x48{left:503.297333pt;}
.x4d{left:506.029333pt;}
.xbb{left:508.538667pt;}
.x1c{left:512.837333pt;}
.x88{left:529.601333pt;}
.xb4{left:532.030667pt;}
.x4e{left:536.248000pt;}
.x58{left:537.788000pt;}
.x9{left:541.037333pt;}
.x81{left:548.965333pt;}
.x14{left:553.830667pt;}
.xbc{left:558.685333pt;}
.x49{left:566.556000pt;}
.x15{left:573.049333pt;}
.x86{left:582.080000pt;}
.x8b{left:588.569333pt;}
.x53{left:595.834667pt;}
.x82{left:601.793333pt;}
.x4a{left:607.238667pt;}
.x18{left:615.921333pt;}
.x54{left:618.952000pt;}
.x16{left:622.373333pt;}
.x89{left:629.393333pt;}
.x8e{left:630.976000pt;}
.xb8{left:631.884000pt;}
.x4b{left:633.566667pt;}
.x8f{left:637.876000pt;}
.x4f{left:646.725333pt;}
.x7f{left:656.920000pt;}
.x17{left:660.025333pt;}
.xbe{left:662.398667pt;}
.xbd{left:664.173333pt;}
.x50{left:671.425333pt;}
.x87{left:680.257333pt;}
.x10{left:691.246667pt;}
.x8a{left:693.770667pt;}
.xbf{left:698.749333pt;}
.x11{left:706.576000pt;}
.x55{left:725.174667pt;}
.x7d{left:729.521333pt;}
.x4c{left:733.417333pt;}
.x7e{left:740.677333pt;}
.x56{left:749.874667pt;}
}




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