
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5e1e15cb11b40515971f239e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a3dc6239b282e74017ac0e11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.181000;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_60a5cda617407c5bdd11777d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_13b90722b83f8b891f15a29a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.751800;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_4812974eb840fb6904950a44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.414243;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_1e8f588a2367017e5b1a274e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002441;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_485c32128aa7285b011cccc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200684;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_6c089abfc43ca72fdef77c27.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eb4c15825a4172d8171109f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.004883;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_54b92b0f89b91bd8b513be42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.663000;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_6d9cf1829482660004f5297a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952000;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_a03459491458b6cbf6e4f253.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dd42dec2f636605b8dfdc9ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.870000;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_707baabc04a743d7b31ceabb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.043000;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;}
.m1c{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.me{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);}
.m2{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);}
.m15{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);}
.m12{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);}
.m10{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);}
.ma{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);}
.m25{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);}
.m20{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);}
.m13{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);}
.m14{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);}
.m1a{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);}
.m11{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);}
.m16{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);}
.m1f{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);}
.m23{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);}
.mb{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);}
.m1{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);}
.m18{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);}
.m21{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);}
.m17{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);}
.m22{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);}
.m28{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);}
.m26{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);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m27{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);}
.m1b{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);}
.m5{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);}
.mc{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);}
.m29{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);}
.m1d{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);}
.m7{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);}
.md{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);}
.m1e{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m6{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);}
.m4{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);}
.m9{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:-19.524000px;}
.vb{vertical-align:-1.758000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.212000px;}
.v3{vertical-align:12.815280px;}
.v5{vertical-align:15.192000px;}
.v7{vertical-align:17.358000px;}
.v8{vertical-align:18.750000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:23.910000px;}
.v9{vertical-align:27.258000px;}
.va{vertical-align:28.392000px;}
.ls15{letter-spacing:-0.255510px;}
.ls18{letter-spacing:-0.204408px;}
.ls16{letter-spacing:-0.153306px;}
.ls12{letter-spacing:-0.102204px;}
.ls10{letter-spacing:-0.091800px;}
.lse{letter-spacing:-0.081396px;}
.ls14{letter-spacing:-0.051102px;}
.ls7{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000319px;}
.ls4{letter-spacing:0.000608px;}
.ls28{letter-spacing:0.000620px;}
.ls31{letter-spacing:0.000800px;}
.ls1d{letter-spacing:0.001465px;}
.ls22{letter-spacing:0.001555px;}
.ls1e{letter-spacing:0.002642px;}
.lsc{letter-spacing:0.002725px;}
.ls19{letter-spacing:0.003274px;}
.ls2f{letter-spacing:0.004800px;}
.lsf{letter-spacing:0.045900px;}
.ls17{letter-spacing:0.051102px;}
.lsd{letter-spacing:0.081396px;}
.lsb{letter-spacing:0.102204px;}
.ls11{letter-spacing:0.153306px;}
.ls9{letter-spacing:0.162792px;}
.ls13{letter-spacing:0.459918px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls1b{letter-spacing:10.461403px;}
.lsa{letter-spacing:11.153700px;}
.ls6{letter-spacing:11.954850px;}
.ls25{letter-spacing:11.955746px;}
.ls1a{letter-spacing:12.987710px;}
.ls2d{letter-spacing:13.231502px;}
.ls39{letter-spacing:13.299168px;}
.ls2a{letter-spacing:13.448400px;}
.ls21{letter-spacing:13.449740px;}
.ls2b{letter-spacing:13.454400px;}
.ls37{letter-spacing:13.476931px;}
.ls32{letter-spacing:13.484135px;}
.ls2e{letter-spacing:13.550400px;}
.ls2c{letter-spacing:13.552800px;}
.ls20{letter-spacing:14.420363px;}
.ls30{letter-spacing:14.503341px;}
.ls24{letter-spacing:14.943900px;}
.ls1f{letter-spacing:14.947200px;}
.ls29{letter-spacing:15.876531px;}
.ls5{letter-spacing:15.912200px;}
.ls36{letter-spacing:15.950400px;}
.ls38{letter-spacing:18.520988px;}
.ls34{letter-spacing:19.626871px;}
.ls33{letter-spacing:19.891576px;}
.ls35{letter-spacing:22.520988px;}
.ls8{letter-spacing:28.214083px;}
.ls3{letter-spacing:67.247510px;}
.ls2{letter-spacing:70.236600px;}
.ls27{letter-spacing:107.425200px;}
.ls26{letter-spacing:108.043200px;}
.ls1c{letter-spacing:799.826100px;}
.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;}
}
.ws45{word-spacing:-51.102000px;}
.ws76{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.wsb7{word-spacing:-13.449600px;}
.ws42{word-spacing:-12.826602px;}
.ws43{word-spacing:-12.775500px;}
.ws44{word-spacing:-12.724398px;}
.ws14{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws6e{word-spacing:-10.460700px;}
.ws41{word-spacing:-10.337292px;}
.ws46{word-spacing:-7.650000px;}
.ws47{word-spacing:-3.227904px;}
.ws26{word-spacing:-3.048556px;}
.ws1a{word-spacing:-2.749678px;}
.wsb3{word-spacing:-2.689920px;}
.ws86{word-spacing:-2.450800px;}
.wscf{word-spacing:-2.259533px;}
.ws31{word-spacing:-2.211697px;}
.wsfa{word-spacing:-2.205734px;}
.ws5d{word-spacing:-2.146284px;}
.ws5b{word-spacing:-2.044080px;}
.ws5e{word-spacing:-1.992978px;}
.ws6a{word-spacing:-1.972595px;}
.ws5a{word-spacing:-1.890774px;}
.ws3c{word-spacing:-1.613941px;}
.wsd2{word-spacing:-1.506355px;}
.ws65{word-spacing:-1.494390px;}
.ws39{word-spacing:-1.434614px;}
.ws6{word-spacing:-1.195512px;}
.ws9b{word-spacing:-1.135736px;}
.wsc7{word-spacing:-1.075968px;}
.ws1b{word-spacing:-0.896634px;}
.wsa9{word-spacing:-0.860774px;}
.ws1c{word-spacing:-0.836858px;}
.ws62{word-spacing:-0.817632px;}
.ws63{word-spacing:-0.664326px;}
.ws79{word-spacing:-0.657532px;}
.wsa6{word-spacing:-0.591782px;}
.wsac{word-spacing:-0.537984px;}
.ws78{word-spacing:-0.537980px;}
.ws66{word-spacing:-0.478205px;}
.ws57{word-spacing:-0.459918px;}
.wsd0{word-spacing:-0.430387px;}
.wsa4{word-spacing:-0.376589px;}
.wse{word-spacing:-0.358654px;}
.ws30{word-spacing:-0.298878px;}
.wsb4{word-spacing:-0.268992px;}
.ws24{word-spacing:-0.239102px;}
.ws77{word-spacing:-0.221905px;}
.wsbb{word-spacing:-0.215194px;}
.ws53{word-spacing:-0.183600px;}
.ws10{word-spacing:-0.179327px;}
.ws4e{word-spacing:-0.162792px;}
.wsa2{word-spacing:-0.161395px;}
.ws54{word-spacing:-0.153306px;}
.wsa{word-spacing:-0.119551px;}
.wsda{word-spacing:-0.107597px;}
.ws55{word-spacing:-0.102204px;}
.ws4d{word-spacing:-0.081396px;}
.wsd{word-spacing:-0.059776px;}
.ws7c{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws6f{word-spacing:-0.041843px;}
.ws89{word-spacing:-0.002996px;}
.ws74{word-spacing:-0.002777px;}
.ws70{word-spacing:-0.001903px;}
.ws49{word-spacing:-0.001742px;}
.ws71{word-spacing:-0.001193px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.003004px;}
.ws8b{word-spacing:0.003263px;}
.ws4{word-spacing:0.053798px;}
.ws8{word-spacing:0.059776px;}
.ws4f{word-spacing:0.081396px;}
.wsa7{word-spacing:0.107597px;}
.ws9{word-spacing:0.119551px;}
.wsa8{word-spacing:0.161395px;}
.wsc{word-spacing:0.179327px;}
.ws5c{word-spacing:0.204408px;}
.wsa1{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws59{word-spacing:0.255510px;}
.wsa5{word-spacing:0.268992px;}
.ws8c{word-spacing:0.286924px;}
.ws2f{word-spacing:0.298878px;}
.wsee{word-spacing:0.322790px;}
.ws5{word-spacing:0.358654px;}
.ws98{word-spacing:0.418429px;}
.wscd{word-spacing:0.430387px;}
.ws19{word-spacing:0.478205px;}
.ws85{word-spacing:0.537980px;}
.wsab{word-spacing:0.537984px;}
.ws2{word-spacing:0.556186px;}
.ws7b{word-spacing:0.591782px;}
.wsb1{word-spacing:0.645581px;}
.ws88{word-spacing:0.717307px;}
.ws58{word-spacing:0.766530px;}
.wsaa{word-spacing:0.806976px;}
.ws17{word-spacing:0.836858px;}
.ws7a{word-spacing:0.860774px;}
.ws3b{word-spacing:0.896634px;}
.wsf{word-spacing:0.956410px;}
.ws40{word-spacing:1.016185px;}
.wsc9{word-spacing:1.075968px;}
.wsbd{word-spacing:1.129766px;}
.ws4b{word-spacing:1.135736px;}
.ws25{word-spacing:1.255288px;}
.ws67{word-spacing:1.315063px;}
.ws11{word-spacing:1.494390px;}
.wsfb{word-spacing:1.667750px;}
.wsaf{word-spacing:1.721549px;}
.ws6c{word-spacing:1.733492px;}
.ws60{word-spacing:1.737468px;}
.wsf4{word-spacing:1.775347px;}
.ws61{word-spacing:1.839672px;}
.wse9{word-spacing:1.936742px;}
.ws5f{word-spacing:1.941876px;}
.wsae{word-spacing:2.044339px;}
.ws3a{word-spacing:2.092146px;}
.wsb2{word-spacing:2.098138px;}
.ws9f{word-spacing:2.151922px;}
.wsc6{word-spacing:2.259533px;}
.ws3d{word-spacing:2.331248px;}
.wsf7{word-spacing:2.367130px;}
.ws91{word-spacing:2.391024px;}
.ws87{word-spacing:2.450800px;}
.wsa3{word-spacing:2.474726px;}
.ws8f{word-spacing:2.510575px;}
.wseb{word-spacing:2.528525px;}
.wsf9{word-spacing:2.636122px;}
.ws21{word-spacing:2.689902px;}
.wsad{word-spacing:2.797517px;}
.ws38{word-spacing:2.809453px;}
.ws23{word-spacing:2.869229px;}
.ws68{word-spacing:2.929004px;}
.wsd8{word-spacing:3.012710px;}
.ws75{word-spacing:3.168107px;}
.wsbf{word-spacing:3.222749px;}
.wsb5{word-spacing:3.227453px;}
.ws18{word-spacing:3.227882px;}
.wsb9{word-spacing:3.227904px;}
.wsed{word-spacing:3.228019px;}
.wse3{word-spacing:3.281702px;}
.ws1f{word-spacing:3.287658px;}
.ws69{word-spacing:3.347434px;}
.ws2d{word-spacing:3.407209px;}
.wsb0{word-spacing:3.496896px;}
.ws64{word-spacing:3.526760px;}
.wsce{word-spacing:3.658291px;}
.ws56{word-spacing:3.730446px;}
.ws93{word-spacing:3.765863px;}
.ws7{word-spacing:3.825638px;}
.wsf0{word-spacing:3.981082px;}
.wsca{word-spacing:4.034880px;}
.wsec{word-spacing:4.142477px;}
.ws4a{word-spacing:4.184292px;}
.ws32{word-spacing:4.303843px;}
.wsa0{word-spacing:4.363619px;}
.ws1d{word-spacing:4.542946px;}
.wsd7{word-spacing:4.626662px;}
.ws4c{word-spacing:4.662497px;}
.ws22{word-spacing:4.722272px;}
.ws90{word-spacing:4.841824px;}
.wsc2{word-spacing:4.841856px;}
.wsde{word-spacing:4.895654px;}
.wsd3{word-spacing:4.949453px;}
.ws99{word-spacing:4.961375px;}
.ws6b{word-spacing:5.080926px;}
.wsdb{word-spacing:5.110848px;}
.wse0{word-spacing:5.163128px;}
.ws9e{word-spacing:5.200477px;}
.wse2{word-spacing:5.218445px;}
.ws33{word-spacing:5.260253px;}
.ws73{word-spacing:5.308087px;}
.ws72{word-spacing:5.355907px;}
.ws9d{word-spacing:5.439580px;}
.ws97{word-spacing:5.559131px;}
.ws2a{word-spacing:5.618906px;}
.ws3f{word-spacing:5.678682px;}
.ws3e{word-spacing:5.738458px;}
.ws1e{word-spacing:5.798233px;}
.wsba{word-spacing:5.810227px;}
.ws9a{word-spacing:6.336214px;}
.ws29{word-spacing:6.635092px;}
.ws8e{word-spacing:6.993745px;}
.ws95{word-spacing:7.053521px;}
.ws94{word-spacing:7.113296px;}
.wse6{word-spacing:7.208986px;}
.ws20{word-spacing:7.352399px;}
.ws9c{word-spacing:7.471950px;}
.ws8d{word-spacing:7.651277px;}
.wsb{word-spacing:7.711052px;}
.ws92{word-spacing:8.009930px;}
.ws2c{word-spacing:8.069706px;}
.ws36{word-spacing:8.428360px;}
.wse8{word-spacing:9.091930px;}
.wse5{word-spacing:9.145728px;}
.ws96{word-spacing:9.504320px;}
.wsc4{word-spacing:9.629914px;}
.ws48{word-spacing:10.520506px;}
.ws51{word-spacing:11.107800px;}
.ws50{word-spacing:11.153700px;}
.ws52{word-spacing:11.245500px;}
.ws28{word-spacing:11.417140px;}
.ws2b{word-spacing:11.895344px;}
.ws13{word-spacing:11.907959px;}
.wsd1{word-spacing:12.965414px;}
.wsbc{word-spacing:13.180608px;}
.ws37{word-spacing:13.270183px;}
.wsef{word-spacing:13.342003px;}
.wsc5{word-spacing:13.387334px;}
.wsd9{word-spacing:13.391981px;}
.wsb8{word-spacing:13.393334px;}
.wscb{word-spacing:13.393670px;}
.wsc0{word-spacing:13.395802px;}
.wsd4{word-spacing:13.396090px;}
.wsf5{word-spacing:13.449600px;}
.wsc3{word-spacing:13.503398px;}
.wsd5{word-spacing:14.525568px;}
.ws27{word-spacing:14.884124px;}
.wsbe{word-spacing:15.171149px;}
.wsea{word-spacing:15.332544px;}
.ws35{word-spacing:15.661207px;}
.wsf3{word-spacing:15.709133px;}
.wsf8{word-spacing:16.516109px;}
.wsc1{word-spacing:16.617715px;}
.wsf6{word-spacing:16.618646px;}
.wsd6{word-spacing:16.623514px;}
.wsb6{word-spacing:16.623706px;}
.wscc{word-spacing:16.677504px;}
.wsf2{word-spacing:17.506625px;}
.wsdd{word-spacing:17.914867px;}
.wsdf{word-spacing:18.291456px;}
.wsdc{word-spacing:18.506650px;}
.wse1{word-spacing:18.560448px;}
.wsc8{word-spacing:19.475021px;}
.wse7{word-spacing:20.604787px;}
.ws16{word-spacing:22.116972px;}
.ws12{word-spacing:24.089567px;}
.ws34{word-spacing:24.866650px;}
.wse4{word-spacing:25.984627px;}
.wsf1{word-spacing:29.104934px;}
.ws7d{word-spacing:48.721910px;}
.ws7f{word-spacing:314.933030px;}
.ws7e{word-spacing:355.069440px;}
.ws81{word-spacing:356.306803px;}
.ws84{word-spacing:364.376563px;}
.ws82{word-spacing:384.367901px;}
.ws83{word-spacing:407.766000px;}
.ws6d{word-spacing:419.109644px;}
.ws80{word-spacing:421.213200px;}
._0{margin-left:-11.943245px;}
._19{margin-left:-7.238785px;}
._4{margin-left:-5.971622px;}
._5{margin-left:-4.949453px;}
._2{margin-left:-2.958912px;}
._3{margin-left:-1.936742px;}
._17{width:1.009325px;}
._1{width:2.997288px;}
._18{width:10.693033px;}
._a6{width:12.481229px;}
._10{width:13.568950px;}
._1a{width:14.668945px;}
._6{width:16.677504px;}
._f{width:17.890890px;}
._7{width:19.331442px;}
._a{width:20.526263px;}
._b{width:22.591224px;}
._a4{width:23.605424px;}
._11{width:24.800936px;}
._aa{width:25.823358px;}
._12{width:27.078347px;}
._1b{width:28.273859px;}
._8{width:30.366005px;}
._c{width:31.764767px;}
._a9{width:32.767904px;}
._13{width:34.048860px;}
._a2{width:35.865360px;}
._14{width:37.060872px;}
._15{width:39.033467px;}
._a5{width:40.731107px;}
._9{width:42.787400px;}
._ad{width:45.550037px;}
._ab{width:51.592666px;}
._ac{width:53.045222px;}
._a8{width:61.868160px;}
._4c{width:75.379344px;}
._a7{width:88.767360px;}
._4b{width:95.288333px;}
._57{width:98.995163px;}
._56{width:120.595163px;}
._4a{width:126.372442px;}
._1e{width:144.197512px;}
._1d{width:155.903770px;}
._29{width:173.773148px;}
._1c{width:181.027058px;}
._24{width:194.694548px;}
._5c{width:207.918589px;}
._28{width:211.324158px;}
._5d{width:212.371285px;}
._20{width:215.615948px;}
._2a{width:216.913075px;}
._93{width:219.993180px;}
._5b{width:221.733280px;}
._39{width:226.076648px;}
._26{width:227.331932px;}
._49{width:229.019789px;}
._88{width:230.520614px;}
._68{width:231.834269px;}
._77{width:233.415654px;}
._2c{width:236.537348px;}
._25{width:237.834475px;}
._33{width:240.010301px;}
._6f{width:241.494030px;}
._3d{width:243.022982px;}
._89{width:244.857093px;}
._9d{width:246.566146px;}
._2e{width:248.253332px;}
._5a{width:249.288788px;}
._22{width:250.471001px;}
._63{width:251.584177px;}
._6a{width:253.443800px;}
._76{width:254.487247px;}
._3b{width:255.701351px;}
._40{width:257.458748px;}
._21{width:258.755875px;}
._a1{width:260.000602px;}
._70{width:261.243938px;}
._59{width:262.859342px;}
._73{width:264.779530px;}
._43{width:267.919448px;}
._3a{width:269.216575px;}
._31{width:271.392401px;}
._6b{width:273.199088px;}
._37{width:275.702209px;}
._80{width:277.410433px;}
._2d{width:279.677275px;}
._6c{width:280.722543px;}
._96{width:284.290335px;}
._66{width:286.018141px;}
._62{width:287.750178px;}
._6e{width:290.349547px;}
._9b{width:291.562198px;}
._67{width:292.667591px;}
._75{width:295.866052px;}
._91{width:297.970159px;}
._7c{width:301.399614px;}
._69{width:302.594470px;}
._84{width:304.387740px;}
._72{width:307.821202px;}
._41{width:311.059375px;}
._2b{width:312.607559px;}
._94{width:314.803010px;}
._52{width:316.334592px;}
._99{width:318.293914px;}
._60{width:319.776352px;}
._7e{width:322.071741px;}
._97{width:324.367130px;}
._83{width:326.214697px;}
._65{width:331.731502px;}
._4f{width:333.603878px;}
._8d{width:339.526260px;}
._8e{width:343.686652px;}
._7b{width:345.025629px;}
._98{width:349.664227px;}
._82{width:355.641802px;}
._9f{width:367.214387px;}
._78{width:368.553364px;}
._9e{width:376.826328px;}
._79{width:380.508514px;}
._8c{width:384.238521px;}
._64{width:388.351093px;}
._51{width:391.221965px;}
._8b{width:405.901253px;}
._4d{width:417.152794px;}
._9c{width:456.208524px;}
._71{width:459.603787px;}
._8a{width:462.568664px;}
._4e{width:464.172595px;}
._2f{width:469.183363px;}
._50{width:477.675994px;}
._a0{width:482.007758px;}
._5f{width:485.426911px;}
._61{width:497.668984px;}
._34{width:500.535576px;}
._36{width:502.777592px;}
._81{width:518.470945px;}
._90{width:521.411933px;}
._30{width:524.081117px;}
._7d{width:533.241558px;}
._74{width:562.896283px;}
._44{width:564.417529px;}
._5e{width:576.046948px;}
._32{width:577.765382px;}
._35{width:584.627602px;}
._47{width:585.966571px;}
._8f{width:590.034494px;}
._87{width:591.923387px;}
._9a{width:608.851879px;}
._85{width:615.977149px;}
._92{width:621.763441px;}
._86{width:627.932299px;}
._6d{width:638.452831px;}
._58{width:651.579606px;}
._7a{width:668.101603px;}
._3f{width:705.750581px;}
._7f{width:756.569713px;}
._42{width:758.944706px;}
._95{width:776.122373px;}
._3e{width:784.080302px;}
._27{width:813.495791px;}
._23{width:827.148470px;}
._1f{width:828.487440px;}
._3c{width:840.914752px;}
._54{width:885.840773px;}
._38{width:888.322644px;}
._48{width:893.343780px;}
._45{width:904.557650px;}
._46{width:909.327730px;}
._d{width:954.162932px;}
._55{width:1088.731600px;}
._16{width:1751.136782px;}
._a3{width:2049.255300px;}
._e{width:2073.165300px;}
._53{width:3552.855300px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fsc{font-size:29.887800px;}
.fsb{font-size:30.600000px;}
.fsd{font-size:35.865600px;}
.fs7{font-size:40.698000px;}
.fs4{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs9{font-size:45.900000px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:51.102000px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:61.200000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y95{bottom:-221.299200px;}
.y94{bottom:-194.890941px;}
.y93{bottom:-177.682343px;}
.y92{bottom:-160.473744px;}
.y91{bottom:-143.341799px;}
.y90{bottom:-126.124020px;}
.y8f{bottom:-108.915422px;}
.y8e{bottom:-91.706823px;}
.y8d{bottom:-66.845700px;}
.y8c{bottom:-34.788375px;}
.y8b{bottom:-18.115200px;}
.y0{bottom:0.000000px;}
.y8a{bottom:2.616300px;}
.y2{bottom:14.814771px;}
.y2f{bottom:63.780000px;}
.y1ab{bottom:108.957000px;}
.ya0{bottom:110.940000px;}
.y12a{bottom:114.156000px;}
.y61{bottom:116.607000px;}
.ycf{bottom:119.461500px;}
.y149{bottom:124.749000px;}
.y1aa{bottom:128.325000px;}
.y9f{bottom:131.205000px;}
.y87{bottom:133.612500px;}
.ycd{bottom:133.659000px;}
.y129{bottom:134.419500px;}
.y60{bottom:136.870500px;}
.yce{bottom:137.998500px;}
.y148{bottom:142.368000px;}
.y1a9{bottom:147.691500px;}
.ycc{bottom:151.416000px;}
.y9e{bottom:151.468500px;}
.y177{bottom:153.430500px;}
.y86{bottom:153.877500px;}
.y128{bottom:154.683000px;}
.y5e{bottom:157.134000px;}
.y147{bottom:157.566000px;}
.y5f{bottom:162.559500px;}
.ycb{bottom:163.594500px;}
.y1a8{bottom:167.059500px;}
.y9d{bottom:171.732000px;}
.y176{bottom:172.797000px;}
.y85{bottom:174.141000px;}
.y127{bottom:174.948000px;}
.y146{bottom:175.186500px;}
.yca{bottom:175.774500px;}
.y5d{bottom:177.399000px;}
.y1a7{bottom:186.427500px;}
.yc9{bottom:187.954500px;}
.y9c{bottom:191.997000px;}
.y175{bottom:192.165000px;}
.y84{bottom:194.404500px;}
.y126{bottom:195.211500px;}
.y5c{bottom:197.662500px;}
.y145{bottom:199.351500px;}
.yc8{bottom:200.133000px;}
.yf1{bottom:201.124500px;}
.y1a6{bottom:205.794000px;}
.y174{bottom:211.533000px;}
.y9b{bottom:212.260500px;}
.yc7{bottom:212.313000px;}
.y144{bottom:214.549500px;}
.y83{bottom:214.669500px;}
.y125{bottom:215.476500px;}
.y5b{bottom:217.927500px;}
.y2e{bottom:218.338500px;}
.yf0{bottom:221.389500px;}
.yc6{bottom:224.491500px;}
.y1a5{bottom:225.162000px;}
.y143{bottom:229.747500px;}
.y173{bottom:230.899500px;}
.y9a{bottom:232.525500px;}
.y82{bottom:234.933000px;}
.y124{bottom:235.740000px;}
.yc5{bottom:236.671500px;}
.y5a{bottom:238.191000px;}
.y2d{bottom:238.603500px;}
.yef{bottom:241.653000px;}
.y1a4{bottom:244.528500px;}
.y142{bottom:244.945500px;}
.yc4{bottom:248.850000px;}
.y172{bottom:250.267500px;}
.y99{bottom:252.789000px;}
.y81{bottom:255.198000px;}
.y123{bottom:256.003500px;}
.y59{bottom:258.454500px;}
.y141{bottom:260.143500px;}
.yc3{bottom:261.030000px;}
.yee{bottom:261.916500px;}
.y1a3{bottom:263.896500px;}
.y171{bottom:269.634000px;}
.y98{bottom:273.052500px;}
.y140{bottom:275.341500px;}
.y80{bottom:275.461500px;}
.y122{bottom:276.268500px;}
.y2c{bottom:276.799500px;}
.y58{bottom:278.719500px;}
.yc2{bottom:280.411500px;}
.yed{bottom:282.181500px;}
.y1a2{bottom:283.264500px;}
.y170{bottom:289.002000px;}
.y13f{bottom:290.539500px;}
.y121{bottom:296.532000px;}
.y2b{bottom:297.064500px;}
.y57{bottom:298.983000px;}
.yc1{bottom:299.793000px;}
.y97{bottom:302.283000px;}
.yec{bottom:302.445000px;}
.y1a1{bottom:302.631000px;}
.y7f{bottom:304.692000px;}
.y13e{bottom:305.737500px;}
.y16f{bottom:308.370000px;}
.yc0{bottom:311.973000px;}
.y120{bottom:316.797000px;}
.y110{bottom:316.984500px;}
.y2a{bottom:317.328000px;}
.y56{bottom:319.248000px;}
.y1a0{bottom:321.999000px;}
.yeb{bottom:322.710000px;}
.ybf{bottom:324.151500px;}
.y16e{bottom:327.736500px;}
.y13d{bottom:329.902500px;}
.y10f{bottom:331.332000px;}
.ybe{bottom:336.331500px;}
.y11f{bottom:337.060500px;}
.y29{bottom:337.593000px;}
.y55{bottom:339.511500px;}
.y19f{bottom:341.367000px;}
.y96{bottom:342.873000px;}
.y13c{bottom:345.100500px;}
.y10e{bottom:345.678000px;}
.y16d{bottom:347.104500px;}
.ybd{bottom:348.511500px;}
.yea{bottom:351.940500px;}
.y11e{bottom:357.324000px;}
.y27{bottom:357.856500px;}
.y54{bottom:359.775000px;}
.y10d{bottom:360.024000px;}
.y13b{bottom:360.298500px;}
.ybc{bottom:360.690000px;}
.y19e{bottom:360.733500px;}
.y28{bottom:363.280500px;}
.y16c{bottom:366.471000px;}
.y113{bottom:368.368500px;}
.y88{bottom:371.280000px;}
.ybb{bottom:372.870000px;}
.y10c{bottom:374.370000px;}
.y13a{bottom:375.496500px;}
.y11d{bottom:377.589000px;}
.y26{bottom:378.120000px;}
.y53{bottom:380.040000px;}
.y19d{bottom:380.101500px;}
.y111{bottom:382.564500px;}
.yba{bottom:385.048500px;}
.y16b{bottom:385.839000px;}
.ye9{bottom:386.760000px;}
.y112{bottom:386.904000px;}
.y10b{bottom:388.716000px;}
.y139{bottom:390.694500px;}
.yb9{bottom:397.228500px;}
.y11c{bottom:397.852500px;}
.y25{bottom:398.385000px;}
.y19c{bottom:399.468000px;}
.y52{bottom:400.303500px;}
.y10a{bottom:403.062000px;}
.y16a{bottom:405.207000px;}
.ye8{bottom:407.023500px;}
.yb8{bottom:409.183500px;}
.y109{bottom:417.409500px;}
.y11b{bottom:418.117500px;}
.y24{bottom:418.648500px;}
.y19b{bottom:418.836000px;}
.y51{bottom:420.568500px;}
.yb7{bottom:421.969500px;}
.y138{bottom:423.825000px;}
.y169{bottom:424.573500px;}
.ye7{bottom:427.287000px;}
.y108{bottom:431.755500px;}
.yb6{bottom:434.149500px;}
.y19a{bottom:438.204000px;}
.y11a{bottom:438.381000px;}
.y23{bottom:438.913500px;}
.y50{bottom:440.832000px;}
.y168{bottom:443.941500px;}
.y137{bottom:444.090000px;}
.y107{bottom:446.101500px;}
.yb5{bottom:446.328000px;}
.ye6{bottom:447.552000px;}
.y199{bottom:457.570500px;}
.y119{bottom:458.644500px;}
.y22{bottom:459.177000px;}
.y106{bottom:460.447500px;}
.y4f{bottom:461.095500px;}
.y167{bottom:463.309500px;}
.y136{bottom:464.353500px;}
.yb4{bottom:465.784500px;}
.ye5{bottom:467.815500px;}
.yb3{bottom:471.762000px;}
.y105{bottom:474.793500px;}
.y198{bottom:476.938500px;}
.y118{bottom:478.909500px;}
.y20{bottom:479.440500px;}
.y4e{bottom:481.360500px;}
.y166{bottom:482.676000px;}
.y135{bottom:484.618500px;}
.y21{bottom:484.866000px;}
.y7e{bottom:486.784500px;}
.ye4{bottom:488.080500px;}
.y104{bottom:489.139500px;}
.y197{bottom:496.305000px;}
.y117{bottom:499.173000px;}
.y1f{bottom:499.705500px;}
.y7d{bottom:501.624000px;}
.y165{bottom:502.044000px;}
.y103{bottom:503.487000px;}
.ye3{bottom:508.344000px;}
.y4d{bottom:510.591000px;}
.yb2{bottom:512.199000px;}
.y134{bottom:513.847500px;}
.y196{bottom:515.673000px;}
.y102{bottom:517.833000px;}
.y116{bottom:519.438000px;}
.y1e{bottom:519.969000px;}
.y164{bottom:521.410500px;}
.y7c{bottom:521.889000px;}
.ye2{bottom:528.607500px;}
.y101{bottom:532.179000px;}
.y195{bottom:535.041000px;}
.y115{bottom:539.701500px;}
.y1d{bottom:540.234000px;}
.y163{bottom:540.778500px;}
.y7b{bottom:542.152500px;}
.y4c{bottom:545.410500px;}
.y100{bottom:546.525000px;}
.y133{bottom:548.667000px;}
.ye1{bottom:548.872500px;}
.y194{bottom:554.407500px;}
.y114{bottom:559.965000px;}
.y162{bottom:560.146500px;}
.yff{bottom:560.871000px;}
.y7a{bottom:562.416000px;}
.yb1{bottom:565.674000px;}
.y132{bottom:568.932000px;}
.ye0{bottom:569.136000px;}
.y1c{bottom:571.257000px;}
.y193{bottom:573.775500px;}
.yfe{bottom:575.217000px;}
.y161{bottom:579.513000px;}
.y4b{bottom:580.230000px;}
.yb0{bottom:585.939000px;}
.y131{bottom:589.195500px;}
.ydf{bottom:589.399500px;}
.yfd{bottom:589.563000px;}
.y79{bottom:591.646500px;}
.y192{bottom:593.142000px;}
.y1b{bottom:598.380000px;}
.y160{bottom:598.881000px;}
.y4a{bottom:600.493500px;}
.yfc{bottom:603.910500px;}
.yaf{bottom:606.202500px;}
.y130{bottom:609.460500px;}
.yde{bottom:609.664500px;}
.y191{bottom:612.510000px;}
.y1a{bottom:616.537500px;}
.y15f{bottom:618.247500px;}
.yfb{bottom:618.256500px;}
.y49{bottom:620.758500px;}
.y78{bottom:626.466000px;}
.y12f{bottom:629.724000px;}
.y190{bottom:631.878000px;}
.yfa{bottom:632.602500px;}
.y15e{bottom:637.615500px;}
.y19{bottom:639.576000px;}
.y48{bottom:641.022000px;}
.y77{bottom:646.731000px;}
.y12e{bottom:649.987500px;}
.ydd{bottom:651.232500px;}
.y18f{bottom:651.244500px;}
.y18{bottom:652.851000px;}
.yf9{bottom:654.300000px;}
.y15d{bottom:656.983500px;}
.y47{bottom:661.285500px;}
.y76{bottom:666.994500px;}
.yf8{bottom:668.497500px;}
.y12d{bottom:670.252500px;}
.y18e{bottom:670.612500px;}
.ydc{bottom:673.008000px;}
.y17{bottom:675.891000px;}
.yf5{bottom:676.153500px;}
.y15c{bottom:676.350000px;}
.y46{bottom:681.550500px;}
.yf4{bottom:683.535000px;}
.y75{bottom:687.258000px;}
.y16{bottom:689.166000px;}
.ydb{bottom:689.521500px;}
.y18d{bottom:689.979000px;}
.yf7{bottom:690.045000px;}
.y12c{bottom:690.516000px;}
.y15b{bottom:695.718000px;}
.yae{bottom:696.225000px;}
.y45{bottom:701.814000px;}
.yda{bottom:706.035000px;}
.y74{bottom:707.523000px;}
.y18c{bottom:709.347000px;}
.y12b{bottom:710.781000px;}
.yf6{bottom:711.594000px;}
.y15{bottom:712.204500px;}
.y15a{bottom:715.084500px;}
.y89{bottom:719.497800px;}
.y44{bottom:722.077500px;}
.y14{bottom:725.479500px;}
.y73{bottom:727.786500px;}
.y18b{bottom:728.715000px;}
.yd9{bottom:729.750000px;}
.yad{bottom:731.044500px;}
.y159{bottom:734.452500px;}
.y43{bottom:742.342500px;}
.yf3{bottom:747.622500px;}
.y72{bottom:748.051500px;}
.y18a{bottom:748.081500px;}
.y13{bottom:748.518000px;}
.yac{bottom:751.308000px;}
.yd8{bottom:753.465000px;}
.y158{bottom:753.820500px;}
.y12{bottom:761.793000px;}
.y42{bottom:762.606000px;}
.y189{bottom:767.449500px;}
.y71{bottom:768.315000px;}
.yd7{bottom:769.978500px;}
.yab{bottom:771.573000px;}
.y157{bottom:773.187000px;}
.y1ae{bottom:774.538500px;}
.y11{bottom:779.950500px;}
.y41{bottom:782.871000px;}
.yd6{bottom:786.492000px;}
.y188{bottom:786.816000px;}
.y70{bottom:788.578500px;}
.yaa{bottom:791.836500px;}
.y156{bottom:792.555000px;}
.y1ad{bottom:793.905000px;}
.yf2{bottom:798.445500px;}
.y10{bottom:802.989000px;}
.yd5{bottom:803.005500px;}
.y40{bottom:803.134500px;}
.y187{bottom:806.184000px;}
.y6f{bottom:808.843500px;}
.y155{bottom:811.921500px;}
.ya9{bottom:812.101500px;}
.y1ac{bottom:813.273000px;}
.yf{bottom:816.264000px;}
.y3f{bottom:823.398000px;}
.y186{bottom:825.552000px;}
.yd4{bottom:826.720500px;}
.y6e{bottom:829.107000px;}
.ya8{bottom:832.365000px;}
.ye{bottom:834.421500px;}
.y154{bottom:840.256500px;}
.y3e{bottom:843.663000px;}
.y185{bottom:844.918500px;}
.y6d{bottom:849.372000px;}
.yd3{bottom:850.854000px;}
.yd{bottom:852.579000px;}
.ya7{bottom:852.628500px;}
.y3d{bottom:863.926500px;}
.y184{bottom:864.286500px;}
.y6c{bottom:869.635500px;}
.yc{bottom:870.735000px;}
.ya6{bottom:872.893500px;}
.yb{bottom:875.617500px;}
.y153{bottom:877.555500px;}
.y183{bottom:883.653000px;}
.y3c{bottom:884.191500px;}
.yd2{bottom:888.646500px;}
.y6b{bottom:889.899000px;}
.ya5{bottom:893.157000px;}
.y152{bottom:897.820500px;}
.ya{bottom:897.859500px;}
.y182{bottom:903.021000px;}
.y3b{bottom:904.455000px;}
.yd1{bottom:907.879500px;}
.y6a{bottom:910.164000px;}
.ya4{bottom:913.422000px;}
.y9{bottom:917.038500px;}
.y151{bottom:918.084000px;}
.y181{bottom:922.389000px;}
.y3a{bottom:924.718500px;}
.y69{bottom:930.427500px;}
.ya3{bottom:933.685500px;}
.y8{bottom:936.219000px;}
.y180{bottom:941.755500px;}
.y39{bottom:944.983500px;}
.y150{bottom:947.314500px;}
.ya2{bottom:953.949000px;}
.y68{bottom:959.658000px;}
.y17f{bottom:961.123500px;}
.y38{bottom:965.247000px;}
.ya1{bottom:974.214000px;}
.y7{bottom:980.055000px;}
.y17e{bottom:980.490000px;}
.y37{bottom:985.512000px;}
.y67{bottom:994.477500px;}
.y17d{bottom:999.858000px;}
.y14f{bottom:1000.710000px;}
.y36{bottom:1005.775500px;}
.y6{bottom:1010.451000px;}
.y66{bottom:1014.742500px;}
.y14e{bottom:1015.908000px;}
.y17c{bottom:1019.226000px;}
.y35{bottom:1026.039000px;}
.y14d{bottom:1031.106000px;}
.y65{bottom:1035.006000px;}
.y17b{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y34{bottom:1046.304000px;}
.yd0{bottom:1051.728000px;}
.y64{bottom:1055.269500px;}
.y17a{bottom:1057.960500px;}
.y14c{bottom:1061.502000px;}
.y33{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y63{bottom:1075.534500px;}
.y14b{bottom:1076.700000px;}
.y179{bottom:1077.327000px;}
.y32{bottom:1086.832500px;}
.y62{bottom:1095.798000px;}
.y178{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y14a{bottom:1100.865000px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h10{height:21.884756px;}
.h1e{height:32.565965px;}
.h16{height:36.879275px;}
.h12{height:37.856294px;}
.h8{height:37.993262px;}
.h26{height:39.434227px;}
.hd{height:39.810550px;}
.he{height:41.250077px;}
.h1c{height:42.330122px;}
.h15{height:42.448535px;}
.h14{height:42.695068px;}
.h1d{height:43.421105px;}
.hf{height:43.755849px;}
.h4{height:43.815515px;}
.h18{height:45.048340px;}
.h17{height:47.259369px;}
.h9{height:48.848947px;}
.ha{height:49.225536px;}
.h1f{height:49.923965px;}
.h2{height:50.931027px;}
.hc{height:54.276245px;}
.hb{height:54.694674px;}
.h13{height:56.598047px;}
.h20{height:57.036162px;}
.h1a{height:62.196162px;}
.h19{height:62.946077px;}
.h7{height:63.264084px;}
.h6{height:63.270084px;}
.h1b{height:66.449337px;}
.h23{height:71.013849px;}
.h25{height:78.573024px;}
.h5{height:98.451072px;}
.h24{height:100.545849px;}
.h3{height:102.503837px;}
.h11{height:700.873875px;}
.h21{height:892.914000px;}
.h22{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w3{width:522.530955px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w4{width:1262.835000px;}
.w5{width:1263.000000px;}
.x4f{left:-20.523420px;}
.x0{left:0.000000px;}
.x51{left:6.557580px;}
.x2{left:58.056593px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x5b{left:128.955000px;}
.x5c{left:135.381000px;}
.x4{left:146.097000px;}
.x64{left:150.376500px;}
.x32{left:155.545500px;}
.x59{left:157.323000px;}
.x55{left:159.088500px;}
.x60{left:165.109500px;}
.x33{left:167.164500px;}
.x81{left:169.789500px;}
.x5f{left:175.983000px;}
.x63{left:179.487000px;}
.x4e{left:185.189745px;}
.x6{left:188.401500px;}
.x6a{left:191.650500px;}
.x56{left:194.143500px;}
.x5e{left:198.348000px;}
.x52{left:202.845000px;}
.x84{left:206.736000px;}
.xf{left:209.706000px;}
.x48{left:211.315500px;}
.x69{left:214.870500px;}
.x53{left:218.686500px;}
.x9{left:220.914000px;}
.x49{left:226.260000px;}
.xa{left:227.340000px;}
.x2a{left:230.484000px;}
.x57{left:234.363000px;}
.x42{left:236.884500px;}
.x85{left:243.445500px;}
.x2b{left:245.428500px;}
.x2c{left:249.225000px;}
.xa1{left:250.854000px;}
.xa2{left:252.858000px;}
.x90{left:256.539000px;}
.x3a{left:263.001000px;}
.x2d{left:264.168000px;}
.x5d{left:267.114000px;}
.x7c{left:271.299000px;}
.x3b{left:274.621500px;}
.x34{left:279.447000px;}
.xb{left:280.888500px;}
.x7d{left:286.243500px;}
.x35{left:289.617000px;}
.xc{left:292.507500px;}
.x65{left:297.634500px;}
.x14{left:299.106000px;}
.x54{left:307.299000px;}
.x8a{left:310.813500px;}
.x74{left:318.714000px;}
.x8b{left:325.756500px;}
.x23{left:326.793000px;}
.x4a{left:333.781500px;}
.x1f{left:335.151000px;}
.x8c{left:339.172500px;}
.x20{left:342.622500px;}
.x4b{left:348.726000px;}
.x21{left:350.244000px;}
.x77{left:355.294500px;}
.x66{left:358.558500px;}
.x22{left:365.188500px;}
.x8e{left:366.532500px;}
.x67{left:370.179000px;}
.x78{left:374.049000px;}
.x8f{left:381.477000px;}
.x73{left:383.556000px;}
.x79{left:388.993500px;}
.x7a{left:392.803500px;}
.x58{left:401.601000px;}
.x15{left:405.042000px;}
.x7b{left:407.748000px;}
.x3c{left:410.397000px;}
.x16{left:412.513500px;}
.x17{left:419.836500px;}
.x3d{left:422.017500px;}
.x18{left:427.308000px;}
.x26{left:431.575500px;}
.x86{left:434.304000px;}
.x8d{left:437.280000px;}
.x27{left:446.520000px;}
.x28{left:450.330000px;}
.x88{left:451.759500px;}
.x6d{left:463.545000px;}
.x29{left:465.274500px;}
.x89{left:466.702500px;}
.x30{left:469.573500px;}
.x31{left:484.518000px;}
.xd{left:488.001000px;}
.x2e{left:489.174000px;}
.x40{left:495.646500px;}
.x36{left:497.251500px;}
.xe{left:498.484500px;}
.x2f{left:504.118500px;}
.x41{left:507.267000px;}
.x37{left:508.872000px;}
.x7e{left:523.335000px;}
.x50{left:536.014080px;}
.x7f{left:538.278000px;}
.x6b{left:543.220500px;}
.x87{left:550.657500px;}
.x9e{left:564.280500px;}
.x44{left:565.693500px;}
.x6c{left:573.300000px;}
.x45{left:577.314000px;}
.x6e{left:581.191500px;}
.x4c{left:587.146500px;}
.x43{left:589.153500px;}
.x72{left:590.443500px;}
.x68{left:593.185500px;}
.x46{left:595.230000px;}
.x47{left:602.326500px;}
.x24{left:604.791000px;}
.x4d{left:605.860500px;}
.x93{left:610.209000px;}
.x1c{left:614.209500px;}
.x25{left:619.735500px;}
.x1d{left:621.682500px;}
.x94{left:637.107000px;}
.x82{left:645.384000px;}
.x9b{left:649.479000px;}
.x61{left:652.374000px;}
.x38{left:658.696500px;}
.x5a{left:660.372000px;}
.x91{left:661.438500px;}
.x83{left:663.988500px;}
.x39{left:670.317000px;}
.x19{left:675.441000px;}
.x95{left:676.524000px;}
.x3e{left:678.150000px;}
.x9c{left:679.729500px;}
.x1a{left:682.912500px;}
.x92{left:688.338000px;}
.x3f{left:689.770500px;}
.x9d{left:690.822000px;}
.x1b{left:694.993500px;}
.x96{left:703.422000px;}
.x75{left:708.283500px;}
.xa0{left:710.056500px;}
.x62{left:711.066000px;}
.x1e{left:714.823500px;}
.x76{left:716.985000px;}
.x99{left:720.384000px;}
.x9f{left:722.215500px;}
.x9a{left:747.282000px;}
.x97{left:749.598000px;}
.x7{left:751.621500px;}
.x10{left:753.084000px;}
.x80{left:756.895500px;}
.x11{left:760.557000px;}
.x8{left:763.240500px;}
.x12{left:764.367000px;}
.x13{left:771.838500px;}
.x98{left:776.496000px;}
.x6f{left:785.529000px;}
.x71{left:871.599000px;}
.x70{left:877.858500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.vb{vertical-align:-1.562667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.077333pt;}
.v3{vertical-align:11.391360pt;}
.v5{vertical-align:13.504000pt;}
.v7{vertical-align:15.429333pt;}
.v8{vertical-align:16.666667pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:21.253333pt;}
.v9{vertical-align:24.229333pt;}
.va{vertical-align:25.237333pt;}
.ls15{letter-spacing:-0.227120pt;}
.ls18{letter-spacing:-0.181696pt;}
.ls16{letter-spacing:-0.136272pt;}
.ls12{letter-spacing:-0.090848pt;}
.ls10{letter-spacing:-0.081600pt;}
.lse{letter-spacing:-0.072352pt;}
.ls14{letter-spacing:-0.045424pt;}
.ls7{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000283pt;}
.ls4{letter-spacing:0.000540pt;}
.ls28{letter-spacing:0.000551pt;}
.ls31{letter-spacing:0.000711pt;}
.ls1d{letter-spacing:0.001302pt;}
.ls22{letter-spacing:0.001382pt;}
.ls1e{letter-spacing:0.002348pt;}
.lsc{letter-spacing:0.002422pt;}
.ls19{letter-spacing:0.002910pt;}
.ls2f{letter-spacing:0.004267pt;}
.lsf{letter-spacing:0.040800pt;}
.ls17{letter-spacing:0.045424pt;}
.lsd{letter-spacing:0.072352pt;}
.lsb{letter-spacing:0.090848pt;}
.ls11{letter-spacing:0.136272pt;}
.ls9{letter-spacing:0.144704pt;}
.ls13{letter-spacing:0.408816pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls1b{letter-spacing:9.299025pt;}
.lsa{letter-spacing:9.914400pt;}
.ls6{letter-spacing:10.626533pt;}
.ls25{letter-spacing:10.627330pt;}
.ls1a{letter-spacing:11.544631pt;}
.ls2d{letter-spacing:11.761335pt;}
.ls39{letter-spacing:11.821483pt;}
.ls2a{letter-spacing:11.954133pt;}
.ls21{letter-spacing:11.955325pt;}
.ls2b{letter-spacing:11.959467pt;}
.ls37{letter-spacing:11.979494pt;}
.ls32{letter-spacing:11.985898pt;}
.ls2e{letter-spacing:12.044800pt;}
.ls2c{letter-spacing:12.046933pt;}
.ls20{letter-spacing:12.818101pt;}
.ls30{letter-spacing:12.891859pt;}
.ls24{letter-spacing:13.283467pt;}
.ls1f{letter-spacing:13.286400pt;}
.ls29{letter-spacing:14.112472pt;}
.ls5{letter-spacing:14.144178pt;}
.ls36{letter-spacing:14.178133pt;}
.ls38{letter-spacing:16.463101pt;}
.ls34{letter-spacing:17.446107pt;}
.ls33{letter-spacing:17.681401pt;}
.ls35{letter-spacing:20.018656pt;}
.ls8{letter-spacing:25.079185pt;}
.ls3{letter-spacing:59.775565pt;}
.ls2{letter-spacing:62.432533pt;}
.ls27{letter-spacing:95.489067pt;}
.ls26{letter-spacing:96.038400pt;}
.ls1c{letter-spacing:710.956533pt;}
.ws45{word-spacing:-45.424000pt;}
.ws76{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.wsb7{word-spacing:-11.955200pt;}
.ws42{word-spacing:-11.401424pt;}
.ws43{word-spacing:-11.356000pt;}
.ws44{word-spacing:-11.310576pt;}
.ws14{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws6e{word-spacing:-9.298400pt;}
.ws41{word-spacing:-9.188704pt;}
.ws46{word-spacing:-6.800000pt;}
.ws47{word-spacing:-2.869248pt;}
.ws26{word-spacing:-2.709827pt;}
.ws1a{word-spacing:-2.444158pt;}
.wsb3{word-spacing:-2.391040pt;}
.ws86{word-spacing:-2.178489pt;}
.wscf{word-spacing:-2.008474pt;}
.ws31{word-spacing:-1.965953pt;}
.wsfa{word-spacing:-1.960653pt;}
.ws5d{word-spacing:-1.907808pt;}
.ws5b{word-spacing:-1.816960pt;}
.ws5e{word-spacing:-1.771536pt;}
.ws6a{word-spacing:-1.753418pt;}
.ws5a{word-spacing:-1.680688pt;}
.ws3c{word-spacing:-1.434614pt;}
.wsd2{word-spacing:-1.338982pt;}
.ws65{word-spacing:-1.328347pt;}
.ws39{word-spacing:-1.275213pt;}
.ws6{word-spacing:-1.062677pt;}
.ws9b{word-spacing:-1.009543pt;}
.wsc7{word-spacing:-0.956416pt;}
.ws1b{word-spacing:-0.797008pt;}
.wsa9{word-spacing:-0.765133pt;}
.ws1c{word-spacing:-0.743874pt;}
.ws62{word-spacing:-0.726784pt;}
.ws63{word-spacing:-0.590512pt;}
.ws79{word-spacing:-0.584473pt;}
.wsa6{word-spacing:-0.526029pt;}
.wsac{word-spacing:-0.478208pt;}
.ws78{word-spacing:-0.478205pt;}
.ws66{word-spacing:-0.425071pt;}
.ws57{word-spacing:-0.408816pt;}
.wsd0{word-spacing:-0.382566pt;}
.wsa4{word-spacing:-0.334746pt;}
.wse{word-spacing:-0.318803pt;}
.ws30{word-spacing:-0.265669pt;}
.wsb4{word-spacing:-0.239104pt;}
.ws24{word-spacing:-0.212535pt;}
.ws77{word-spacing:-0.197249pt;}
.wsbb{word-spacing:-0.191283pt;}
.ws53{word-spacing:-0.163200pt;}
.ws10{word-spacing:-0.159402pt;}
.ws4e{word-spacing:-0.144704pt;}
.wsa2{word-spacing:-0.143462pt;}
.ws54{word-spacing:-0.136272pt;}
.wsa{word-spacing:-0.106268pt;}
.wsda{word-spacing:-0.095642pt;}
.ws55{word-spacing:-0.090848pt;}
.ws4d{word-spacing:-0.072352pt;}
.wsd{word-spacing:-0.053134pt;}
.ws7c{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws6f{word-spacing:-0.037194pt;}
.ws89{word-spacing:-0.002663pt;}
.ws74{word-spacing:-0.002469pt;}
.ws70{word-spacing:-0.001692pt;}
.ws49{word-spacing:-0.001549pt;}
.ws71{word-spacing:-0.001060pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.002670pt;}
.ws8b{word-spacing:0.002901pt;}
.ws4{word-spacing:0.047821pt;}
.ws8{word-spacing:0.053134pt;}
.ws4f{word-spacing:0.072352pt;}
.wsa7{word-spacing:0.095642pt;}
.ws9{word-spacing:0.106268pt;}
.wsa8{word-spacing:0.143462pt;}
.wsc{word-spacing:0.159402pt;}
.ws5c{word-spacing:0.181696pt;}
.wsa1{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws59{word-spacing:0.227120pt;}
.wsa5{word-spacing:0.239104pt;}
.ws8c{word-spacing:0.255043pt;}
.ws2f{word-spacing:0.265669pt;}
.wsee{word-spacing:0.286925pt;}
.ws5{word-spacing:0.318803pt;}
.ws98{word-spacing:0.371937pt;}
.wscd{word-spacing:0.382566pt;}
.ws19{word-spacing:0.425071pt;}
.ws85{word-spacing:0.478205pt;}
.wsab{word-spacing:0.478208pt;}
.ws2{word-spacing:0.494387pt;}
.ws7b{word-spacing:0.526029pt;}
.wsb1{word-spacing:0.573850pt;}
.ws88{word-spacing:0.637606pt;}
.ws58{word-spacing:0.681360pt;}
.wsaa{word-spacing:0.717312pt;}
.ws17{word-spacing:0.743874pt;}
.ws7a{word-spacing:0.765133pt;}
.ws3b{word-spacing:0.797008pt;}
.wsf{word-spacing:0.850142pt;}
.ws40{word-spacing:0.903276pt;}
.wsc9{word-spacing:0.956416pt;}
.wsbd{word-spacing:1.004237pt;}
.ws4b{word-spacing:1.009543pt;}
.ws25{word-spacing:1.115811pt;}
.ws67{word-spacing:1.168945pt;}
.ws11{word-spacing:1.328347pt;}
.wsfb{word-spacing:1.482445pt;}
.wsaf{word-spacing:1.530266pt;}
.ws6c{word-spacing:1.540882pt;}
.ws60{word-spacing:1.544416pt;}
.wsf4{word-spacing:1.578086pt;}
.ws61{word-spacing:1.635264pt;}
.wse9{word-spacing:1.721549pt;}
.ws5f{word-spacing:1.726112pt;}
.wsae{word-spacing:1.817190pt;}
.ws3a{word-spacing:1.859685pt;}
.wsb2{word-spacing:1.865011pt;}
.ws9f{word-spacing:1.912819pt;}
.wsc6{word-spacing:2.008474pt;}
.ws3d{word-spacing:2.072221pt;}
.wsf7{word-spacing:2.104115pt;}
.ws91{word-spacing:2.125355pt;}
.ws87{word-spacing:2.178489pt;}
.wsa3{word-spacing:2.199757pt;}
.ws8f{word-spacing:2.231622pt;}
.wseb{word-spacing:2.247578pt;}
.wsf9{word-spacing:2.343219pt;}
.ws21{word-spacing:2.391024pt;}
.wsad{word-spacing:2.486682pt;}
.ws38{word-spacing:2.497292pt;}
.ws23{word-spacing:2.550426pt;}
.ws68{word-spacing:2.603559pt;}
.wsd8{word-spacing:2.677965pt;}
.ws75{word-spacing:2.816095pt;}
.wsbf{word-spacing:2.864666pt;}
.wsb5{word-spacing:2.868847pt;}
.ws18{word-spacing:2.869229pt;}
.wsb9{word-spacing:2.869248pt;}
.wsed{word-spacing:2.869350pt;}
.wse3{word-spacing:2.917069pt;}
.ws1f{word-spacing:2.922363pt;}
.ws69{word-spacing:2.975497pt;}
.ws2d{word-spacing:3.028630pt;}
.wsb0{word-spacing:3.108352pt;}
.ws64{word-spacing:3.134898pt;}
.wsce{word-spacing:3.251814pt;}
.ws56{word-spacing:3.315952pt;}
.ws93{word-spacing:3.347434pt;}
.ws7{word-spacing:3.400567pt;}
.wsf0{word-spacing:3.538739pt;}
.wsca{word-spacing:3.586560pt;}
.wsec{word-spacing:3.682202pt;}
.ws4a{word-spacing:3.719371pt;}
.ws32{word-spacing:3.825638pt;}
.wsa0{word-spacing:3.878772pt;}
.ws1d{word-spacing:4.038174pt;}
.wsd7{word-spacing:4.112589pt;}
.ws4c{word-spacing:4.144442pt;}
.ws22{word-spacing:4.197575pt;}
.ws90{word-spacing:4.303843pt;}
.wsc2{word-spacing:4.303872pt;}
.wsde{word-spacing:4.351693pt;}
.wsd3{word-spacing:4.399514pt;}
.ws99{word-spacing:4.410111pt;}
.ws6b{word-spacing:4.516379pt;}
.wsdb{word-spacing:4.542976pt;}
.wse0{word-spacing:4.589447pt;}
.ws9e{word-spacing:4.622646pt;}
.wse2{word-spacing:4.638618pt;}
.ws33{word-spacing:4.675780pt;}
.ws73{word-spacing:4.718299pt;}
.ws72{word-spacing:4.760806pt;}
.ws9d{word-spacing:4.835182pt;}
.ws97{word-spacing:4.941450pt;}
.ws2a{word-spacing:4.994583pt;}
.ws3f{word-spacing:5.047717pt;}
.ws3e{word-spacing:5.100851pt;}
.ws1e{word-spacing:5.153985pt;}
.wsba{word-spacing:5.164646pt;}
.ws9a{word-spacing:5.632190pt;}
.ws29{word-spacing:5.897859pt;}
.ws8e{word-spacing:6.216662pt;}
.ws95{word-spacing:6.269796pt;}
.ws94{word-spacing:6.322930pt;}
.wse6{word-spacing:6.407987pt;}
.ws20{word-spacing:6.535466pt;}
.ws9c{word-spacing:6.641733pt;}
.ws8d{word-spacing:6.801135pt;}
.wsb{word-spacing:6.854269pt;}
.ws92{word-spacing:7.119938pt;}
.ws2c{word-spacing:7.173072pt;}
.ws36{word-spacing:7.491875pt;}
.wse8{word-spacing:8.081715pt;}
.wse5{word-spacing:8.129536pt;}
.ws96{word-spacing:8.448285pt;}
.wsc4{word-spacing:8.559923pt;}
.ws48{word-spacing:9.351561pt;}
.ws51{word-spacing:9.873600pt;}
.ws50{word-spacing:9.914400pt;}
.ws52{word-spacing:9.996000pt;}
.ws28{word-spacing:10.148569pt;}
.ws2b{word-spacing:10.573639pt;}
.ws13{word-spacing:10.584852pt;}
.wsd1{word-spacing:11.524813pt;}
.wsbc{word-spacing:11.716096pt;}
.ws37{word-spacing:11.795718pt;}
.wsef{word-spacing:11.859558pt;}
.wsc5{word-spacing:11.899853pt;}
.wsd9{word-spacing:11.903983pt;}
.wsb8{word-spacing:11.905186pt;}
.wscb{word-spacing:11.905485pt;}
.wsc0{word-spacing:11.907379pt;}
.wsd4{word-spacing:11.907635pt;}
.wsf5{word-spacing:11.955200pt;}
.wsc3{word-spacing:12.003021pt;}
.wsd5{word-spacing:12.911616pt;}
.ws27{word-spacing:13.230333pt;}
.wsbe{word-spacing:13.485466pt;}
.wsea{word-spacing:13.628928pt;}
.ws35{word-spacing:13.921073pt;}
.wsf3{word-spacing:13.963674pt;}
.wsf8{word-spacing:14.680986pt;}
.wsc1{word-spacing:14.771302pt;}
.wsf6{word-spacing:14.772130pt;}
.wsd6{word-spacing:14.776457pt;}
.wsb6{word-spacing:14.776627pt;}
.wscc{word-spacing:14.824448pt;}
.wsf2{word-spacing:15.561445pt;}
.wsdd{word-spacing:15.924326pt;}
.wsdf{word-spacing:16.259072pt;}
.wsdc{word-spacing:16.450355pt;}
.wse1{word-spacing:16.498176pt;}
.wsc8{word-spacing:17.311130pt;}
.wse7{word-spacing:18.315366pt;}
.ws16{word-spacing:19.659531pt;}
.ws12{word-spacing:21.412948pt;}
.ws34{word-spacing:22.103689pt;}
.wse4{word-spacing:23.097446pt;}
.wsf1{word-spacing:25.871053pt;}
.ws7d{word-spacing:43.308365pt;}
.ws7f{word-spacing:279.940471pt;}
.ws7e{word-spacing:315.617280pt;}
.ws81{word-spacing:316.717158pt;}
.ws84{word-spacing:323.890278pt;}
.ws82{word-spacing:341.660356pt;}
.ws83{word-spacing:362.458667pt;}
.ws6d{word-spacing:372.541906pt;}
.ws80{word-spacing:374.411733pt;}
._0{margin-left:-10.616218pt;}
._19{margin-left:-6.434476pt;}
._4{margin-left:-5.308109pt;}
._5{margin-left:-4.399514pt;}
._2{margin-left:-2.630144pt;}
._3{margin-left:-1.721549pt;}
._17{width:0.897178pt;}
._1{width:2.664256pt;}
._18{width:9.504918pt;}
._a6{width:11.094426pt;}
._10{width:12.061289pt;}
._1a{width:13.039062pt;}
._6{width:14.824448pt;}
._f{width:15.903013pt;}
._7{width:17.183504pt;}
._a{width:18.245567pt;}
._b{width:20.081088pt;}
._a4{width:20.982599pt;}
._11{width:22.045277pt;}
._aa{width:22.954096pt;}
._12{width:24.069642pt;}
._1b{width:25.132319pt;}
._8{width:26.992004pt;}
._c{width:28.235348pt;}
._a9{width:29.127026pt;}
._13{width:30.265654pt;}
._a2{width:31.880320pt;}
._14{width:32.942997pt;}
._15{width:34.696415pt;}
._a5{width:36.205428pt;}
._9{width:38.033245pt;}
._ad{width:40.488922pt;}
._ab{width:45.860147pt;}
._ac{width:47.151309pt;}
._a8{width:54.993920pt;}
._4c{width:67.003861pt;}
._a7{width:78.904320pt;}
._4b{width:84.700740pt;}
._57{width:87.995701pt;}
._56{width:107.195701pt;}
._4a{width:112.331059pt;}
._1e{width:128.175566pt;}
._1d{width:138.581129pt;}
._29{width:154.465021pt;}
._1c{width:160.912941pt;}
._24{width:173.061821pt;}
._5c{width:184.816524pt;}
._28{width:187.843696pt;}
._5d{width:188.774475pt;}
._20{width:191.658621pt;}
._2a{width:192.811622pt;}
._93{width:195.549493pt;}
._5b{width:197.096249pt;}
._39{width:200.957021pt;}
._26{width:202.072829pt;}
._49{width:203.573146pt;}
._88{width:204.907213pt;}
._68{width:206.074906pt;}
._77{width:207.480582pt;}
._2c{width:210.255421pt;}
._25{width:211.408422pt;}
._33{width:213.342490pt;}
._6f{width:214.661360pt;}
._3d{width:216.020429pt;}
._89{width:217.650749pt;}
._9d{width:219.169907pt;}
._2e{width:220.669629pt;}
._5a{width:221.590034pt;}
._22{width:222.640890pt;}
._63{width:223.630379pt;}
._6a{width:225.283378pt;}
._76{width:226.210886pt;}
._3b{width:227.290090pt;}
._40{width:228.852221pt;}
._21{width:230.005222pt;}
._a1{width:231.111646pt;}
._70{width:232.216834pt;}
._59{width:233.652749pt;}
._73{width:235.359582pt;}
._43{width:238.150621pt;}
._3a{width:239.303622pt;}
._31{width:241.237690pt;}
._6b{width:242.843634pt;}
._37{width:245.068630pt;}
._80{width:246.587051pt;}
._2d{width:248.602022pt;}
._6c{width:249.531149pt;}
._96{width:252.702520pt;}
._66{width:254.238347pt;}
._62{width:255.777936pt;}
._6e{width:258.088486pt;}
._9b{width:259.166398pt;}
._67{width:260.148970pt;}
._75{width:262.992046pt;}
._91{width:264.862363pt;}
._7c{width:267.910768pt;}
._69{width:268.972862pt;}
._84{width:270.566880pt;}
._72{width:273.618846pt;}
._41{width:276.497222pt;}
._2b{width:277.873386pt;}
._94{width:279.824898pt;}
._52{width:281.186304pt;}
._99{width:282.927923pt;}
._60{width:284.245646pt;}
._7e{width:286.285992pt;}
._97{width:288.326338pt;}
._83{width:289.968619pt;}
._65{width:294.872446pt;}
._4f{width:296.536781pt;}
._8d{width:301.801120pt;}
._8e{width:305.499246pt;}
._7b{width:306.689448pt;}
._98{width:310.812646pt;}
._82{width:316.126046pt;}
._9f{width:326.412789pt;}
._78{width:327.602990pt;}
._9e{width:334.956736pt;}
._79{width:338.229790pt;}
._8c{width:341.545352pt;}
._64{width:345.200971pt;}
._51{width:347.752858pt;}
._8b{width:360.801114pt;}
._4d{width:370.802483pt;}
._9c{width:405.518688pt;}
._71{width:408.536699pt;}
._8a{width:411.172146pt;}
._4e{width:412.597862pt;}
._2f{width:417.051878pt;}
._50{width:424.600883pt;}
._a0{width:428.451341pt;}
._5f{width:431.490587pt;}
._61{width:442.372430pt;}
._34{width:444.920512pt;}
._36{width:446.913415pt;}
._81{width:460.863062pt;}
._90{width:463.477274pt;}
._30{width:465.849882pt;}
._7d{width:473.992496pt;}
._74{width:500.352251pt;}
._44{width:501.704470pt;}
._5e{width:512.041731pt;}
._32{width:513.569229pt;}
._35{width:519.668979pt;}
._47{width:520.859174pt;}
._8f{width:524.475106pt;}
._87{width:526.154122pt;}
._9a{width:541.201670pt;}
._85{width:547.535243pt;}
._92{width:552.678614pt;}
._86{width:558.162043pt;}
._6d{width:567.513627pt;}
._58{width:579.181872pt;}
._7a{width:593.868091pt;}
._3f{width:627.333850pt;}
._7f{width:672.506411pt;}
._42{width:674.617517pt;}
._95{width:689.886554pt;}
._3e{width:696.960269pt;}
._27{width:723.107370pt;}
._23{width:735.243085pt;}
._1f{width:736.433280pt;}
._3c{width:747.479779pt;}
._54{width:787.414021pt;}
._38{width:789.620128pt;}
._48{width:794.083360pt;}
._45{width:804.051245pt;}
._46{width:808.291315pt;}
._d{width:848.144828pt;}
._55{width:967.761422pt;}
._16{width:1556.566029pt;}
._a3{width:1821.560267pt;}
._e{width:1842.813600pt;}
._53{width:3158.093600pt;}
.fsc{font-size:26.566933pt;}
.fsb{font-size:27.200000pt;}
.fsd{font-size:31.880533pt;}
.fs7{font-size:36.176000pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs9{font-size:40.800000pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:45.424000pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:54.400000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y95{bottom:-196.710400pt;}
.y94{bottom:-173.236392pt;}
.y93{bottom:-157.939860pt;}
.y92{bottom:-142.643328pt;}
.y91{bottom:-127.414932pt;}
.y90{bottom:-112.110240pt;}
.y8f{bottom:-96.813708pt;}
.y8e{bottom:-81.517176pt;}
.y8d{bottom:-59.418400pt;}
.y8c{bottom:-30.923000pt;}
.y8b{bottom:-16.102400pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:2.325600pt;}
.y2{bottom:13.168686pt;}
.y2f{bottom:56.693333pt;}
.y1ab{bottom:96.850667pt;}
.ya0{bottom:98.613333pt;}
.y12a{bottom:101.472000pt;}
.y61{bottom:103.650667pt;}
.ycf{bottom:106.188000pt;}
.y149{bottom:110.888000pt;}
.y1aa{bottom:114.066667pt;}
.y9f{bottom:116.626667pt;}
.y87{bottom:118.766667pt;}
.ycd{bottom:118.808000pt;}
.y129{bottom:119.484000pt;}
.y60{bottom:121.662667pt;}
.yce{bottom:122.665333pt;}
.y148{bottom:126.549333pt;}
.y1a9{bottom:131.281333pt;}
.ycc{bottom:134.592000pt;}
.y9e{bottom:134.638667pt;}
.y177{bottom:136.382667pt;}
.y86{bottom:136.780000pt;}
.y128{bottom:137.496000pt;}
.y5e{bottom:139.674667pt;}
.y147{bottom:140.058667pt;}
.y5f{bottom:144.497333pt;}
.ycb{bottom:145.417333pt;}
.y1a8{bottom:148.497333pt;}
.y9d{bottom:152.650667pt;}
.y176{bottom:153.597333pt;}
.y85{bottom:154.792000pt;}
.y127{bottom:155.509333pt;}
.y146{bottom:155.721333pt;}
.yca{bottom:156.244000pt;}
.y5d{bottom:157.688000pt;}
.y1a7{bottom:165.713333pt;}
.yc9{bottom:167.070667pt;}
.y9c{bottom:170.664000pt;}
.y175{bottom:170.813333pt;}
.y84{bottom:172.804000pt;}
.y126{bottom:173.521333pt;}
.y5c{bottom:175.700000pt;}
.y145{bottom:177.201333pt;}
.yc8{bottom:177.896000pt;}
.yf1{bottom:178.777333pt;}
.y1a6{bottom:182.928000pt;}
.y174{bottom:188.029333pt;}
.y9b{bottom:188.676000pt;}
.yc7{bottom:188.722667pt;}
.y144{bottom:190.710667pt;}
.y83{bottom:190.817333pt;}
.y125{bottom:191.534667pt;}
.y5b{bottom:193.713333pt;}
.y2e{bottom:194.078667pt;}
.yf0{bottom:196.790667pt;}
.yc6{bottom:199.548000pt;}
.y1a5{bottom:200.144000pt;}
.y143{bottom:204.220000pt;}
.y173{bottom:205.244000pt;}
.y9a{bottom:206.689333pt;}
.y82{bottom:208.829333pt;}
.y124{bottom:209.546667pt;}
.yc5{bottom:210.374667pt;}
.y5a{bottom:211.725333pt;}
.y2d{bottom:212.092000pt;}
.yef{bottom:214.802667pt;}
.y1a4{bottom:217.358667pt;}
.y142{bottom:217.729333pt;}
.yc4{bottom:221.200000pt;}
.y172{bottom:222.460000pt;}
.y99{bottom:224.701333pt;}
.y81{bottom:226.842667pt;}
.y123{bottom:227.558667pt;}
.y59{bottom:229.737333pt;}
.y141{bottom:231.238667pt;}
.yc3{bottom:232.026667pt;}
.yee{bottom:232.814667pt;}
.y1a3{bottom:234.574667pt;}
.y171{bottom:239.674667pt;}
.y98{bottom:242.713333pt;}
.y140{bottom:244.748000pt;}
.y80{bottom:244.854667pt;}
.y122{bottom:245.572000pt;}
.y2c{bottom:246.044000pt;}
.y58{bottom:247.750667pt;}
.yc2{bottom:249.254667pt;}
.yed{bottom:250.828000pt;}
.y1a2{bottom:251.790667pt;}
.y170{bottom:256.890667pt;}
.y13f{bottom:258.257333pt;}
.y121{bottom:263.584000pt;}
.y2b{bottom:264.057333pt;}
.y57{bottom:265.762667pt;}
.yc1{bottom:266.482667pt;}
.y97{bottom:268.696000pt;}
.yec{bottom:268.840000pt;}
.y1a1{bottom:269.005333pt;}
.y7f{bottom:270.837333pt;}
.y13e{bottom:271.766667pt;}
.y16f{bottom:274.106667pt;}
.yc0{bottom:277.309333pt;}
.y120{bottom:281.597333pt;}
.y110{bottom:281.764000pt;}
.y2a{bottom:282.069333pt;}
.y56{bottom:283.776000pt;}
.y1a0{bottom:286.221333pt;}
.yeb{bottom:286.853333pt;}
.ybf{bottom:288.134667pt;}
.y16e{bottom:291.321333pt;}
.y13d{bottom:293.246667pt;}
.y10f{bottom:294.517333pt;}
.ybe{bottom:298.961333pt;}
.y11f{bottom:299.609333pt;}
.y29{bottom:300.082667pt;}
.y55{bottom:301.788000pt;}
.y19f{bottom:303.437333pt;}
.y96{bottom:304.776000pt;}
.y13c{bottom:306.756000pt;}
.y10e{bottom:307.269333pt;}
.y16d{bottom:308.537333pt;}
.ybd{bottom:309.788000pt;}
.yea{bottom:312.836000pt;}
.y11e{bottom:317.621333pt;}
.y27{bottom:318.094667pt;}
.y54{bottom:319.800000pt;}
.y10d{bottom:320.021333pt;}
.y13b{bottom:320.265333pt;}
.ybc{bottom:320.613333pt;}
.y19e{bottom:320.652000pt;}
.y28{bottom:322.916000pt;}
.y16c{bottom:325.752000pt;}
.y113{bottom:327.438667pt;}
.y88{bottom:330.026667pt;}
.ybb{bottom:331.440000pt;}
.y10c{bottom:332.773333pt;}
.y13a{bottom:333.774667pt;}
.y11d{bottom:335.634667pt;}
.y26{bottom:336.106667pt;}
.y53{bottom:337.813333pt;}
.y19d{bottom:337.868000pt;}
.y111{bottom:340.057333pt;}
.yba{bottom:342.265333pt;}
.y16b{bottom:342.968000pt;}
.ye9{bottom:343.786667pt;}
.y112{bottom:343.914667pt;}
.y10b{bottom:345.525333pt;}
.y139{bottom:347.284000pt;}
.yb9{bottom:353.092000pt;}
.y11c{bottom:353.646667pt;}
.y25{bottom:354.120000pt;}
.y19c{bottom:355.082667pt;}
.y52{bottom:355.825333pt;}
.y10a{bottom:358.277333pt;}
.y16a{bottom:360.184000pt;}
.ye8{bottom:361.798667pt;}
.yb8{bottom:363.718667pt;}
.y109{bottom:371.030667pt;}
.y11b{bottom:371.660000pt;}
.y24{bottom:372.132000pt;}
.y19b{bottom:372.298667pt;}
.y51{bottom:373.838667pt;}
.yb7{bottom:375.084000pt;}
.y138{bottom:376.733333pt;}
.y169{bottom:377.398667pt;}
.ye7{bottom:379.810667pt;}
.y108{bottom:383.782667pt;}
.yb6{bottom:385.910667pt;}
.y19a{bottom:389.514667pt;}
.y11a{bottom:389.672000pt;}
.y23{bottom:390.145333pt;}
.y50{bottom:391.850667pt;}
.y168{bottom:394.614667pt;}
.y137{bottom:394.746667pt;}
.y107{bottom:396.534667pt;}
.yb5{bottom:396.736000pt;}
.ye6{bottom:397.824000pt;}
.y199{bottom:406.729333pt;}
.y119{bottom:407.684000pt;}
.y22{bottom:408.157333pt;}
.y106{bottom:409.286667pt;}
.y4f{bottom:409.862667pt;}
.y167{bottom:411.830667pt;}
.y136{bottom:412.758667pt;}
.yb4{bottom:414.030667pt;}
.ye5{bottom:415.836000pt;}
.yb3{bottom:419.344000pt;}
.y105{bottom:422.038667pt;}
.y198{bottom:423.945333pt;}
.y118{bottom:425.697333pt;}
.y20{bottom:426.169333pt;}
.y4e{bottom:427.876000pt;}
.y166{bottom:429.045333pt;}
.y135{bottom:430.772000pt;}
.y21{bottom:430.992000pt;}
.y7e{bottom:432.697333pt;}
.ye4{bottom:433.849333pt;}
.y104{bottom:434.790667pt;}
.y197{bottom:441.160000pt;}
.y117{bottom:443.709333pt;}
.y1f{bottom:444.182667pt;}
.y7d{bottom:445.888000pt;}
.y165{bottom:446.261333pt;}
.y103{bottom:447.544000pt;}
.ye3{bottom:451.861333pt;}
.y4d{bottom:453.858667pt;}
.yb2{bottom:455.288000pt;}
.y134{bottom:456.753333pt;}
.y196{bottom:458.376000pt;}
.y102{bottom:460.296000pt;}
.y116{bottom:461.722667pt;}
.y1e{bottom:462.194667pt;}
.y164{bottom:463.476000pt;}
.y7c{bottom:463.901333pt;}
.ye2{bottom:469.873333pt;}
.y101{bottom:473.048000pt;}
.y195{bottom:475.592000pt;}
.y115{bottom:479.734667pt;}
.y1d{bottom:480.208000pt;}
.y163{bottom:480.692000pt;}
.y7b{bottom:481.913333pt;}
.y4c{bottom:484.809333pt;}
.y100{bottom:485.800000pt;}
.y133{bottom:487.704000pt;}
.ye1{bottom:487.886667pt;}
.y194{bottom:492.806667pt;}
.y114{bottom:497.746667pt;}
.y162{bottom:497.908000pt;}
.yff{bottom:498.552000pt;}
.y7a{bottom:499.925333pt;}
.yb1{bottom:502.821333pt;}
.y132{bottom:505.717333pt;}
.ye0{bottom:505.898667pt;}
.y1c{bottom:507.784000pt;}
.y193{bottom:510.022667pt;}
.yfe{bottom:511.304000pt;}
.y161{bottom:515.122667pt;}
.y4b{bottom:515.760000pt;}
.yb0{bottom:520.834667pt;}
.y131{bottom:523.729333pt;}
.ydf{bottom:523.910667pt;}
.yfd{bottom:524.056000pt;}
.y79{bottom:525.908000pt;}
.y192{bottom:527.237333pt;}
.y1b{bottom:531.893333pt;}
.y160{bottom:532.338667pt;}
.y4a{bottom:533.772000pt;}
.yfc{bottom:536.809333pt;}
.yaf{bottom:538.846667pt;}
.y130{bottom:541.742667pt;}
.yde{bottom:541.924000pt;}
.y191{bottom:544.453333pt;}
.y1a{bottom:548.033333pt;}
.y15f{bottom:549.553333pt;}
.yfb{bottom:549.561333pt;}
.y49{bottom:551.785333pt;}
.y78{bottom:556.858667pt;}
.y12f{bottom:559.754667pt;}
.y190{bottom:561.669333pt;}
.yfa{bottom:562.313333pt;}
.y15e{bottom:566.769333pt;}
.y19{bottom:568.512000pt;}
.y48{bottom:569.797333pt;}
.y77{bottom:574.872000pt;}
.y12e{bottom:577.766667pt;}
.ydd{bottom:578.873333pt;}
.y18f{bottom:578.884000pt;}
.y18{bottom:580.312000pt;}
.yf9{bottom:581.600000pt;}
.y15d{bottom:583.985333pt;}
.y47{bottom:587.809333pt;}
.y76{bottom:592.884000pt;}
.yf8{bottom:594.220000pt;}
.y12d{bottom:595.780000pt;}
.y18e{bottom:596.100000pt;}
.ydc{bottom:598.229333pt;}
.y17{bottom:600.792000pt;}
.yf5{bottom:601.025333pt;}
.y15c{bottom:601.200000pt;}
.y46{bottom:605.822667pt;}
.yf4{bottom:607.586667pt;}
.y75{bottom:610.896000pt;}
.y16{bottom:612.592000pt;}
.ydb{bottom:612.908000pt;}
.y18d{bottom:613.314667pt;}
.yf7{bottom:613.373333pt;}
.y12c{bottom:613.792000pt;}
.y15b{bottom:618.416000pt;}
.yae{bottom:618.866667pt;}
.y45{bottom:623.834667pt;}
.yda{bottom:627.586667pt;}
.y74{bottom:628.909333pt;}
.y18c{bottom:630.530667pt;}
.y12b{bottom:631.805333pt;}
.yf6{bottom:632.528000pt;}
.y15{bottom:633.070667pt;}
.y15a{bottom:635.630667pt;}
.y89{bottom:639.553600pt;}
.y44{bottom:641.846667pt;}
.y14{bottom:644.870667pt;}
.y73{bottom:646.921333pt;}
.y18b{bottom:647.746667pt;}
.yd9{bottom:648.666667pt;}
.yad{bottom:649.817333pt;}
.y159{bottom:652.846667pt;}
.y43{bottom:659.860000pt;}
.yf3{bottom:664.553333pt;}
.y72{bottom:664.934667pt;}
.y18a{bottom:664.961333pt;}
.y13{bottom:665.349333pt;}
.yac{bottom:667.829333pt;}
.yd8{bottom:669.746667pt;}
.y158{bottom:670.062667pt;}
.y12{bottom:677.149333pt;}
.y42{bottom:677.872000pt;}
.y189{bottom:682.177333pt;}
.y71{bottom:682.946667pt;}
.yd7{bottom:684.425333pt;}
.yab{bottom:685.842667pt;}
.y157{bottom:687.277333pt;}
.y1ae{bottom:688.478667pt;}
.y11{bottom:693.289333pt;}
.y41{bottom:695.885333pt;}
.yd6{bottom:699.104000pt;}
.y188{bottom:699.392000pt;}
.y70{bottom:700.958667pt;}
.yaa{bottom:703.854667pt;}
.y156{bottom:704.493333pt;}
.y1ad{bottom:705.693333pt;}
.yf2{bottom:709.729333pt;}
.y10{bottom:713.768000pt;}
.yd5{bottom:713.782667pt;}
.y40{bottom:713.897333pt;}
.y187{bottom:716.608000pt;}
.y6f{bottom:718.972000pt;}
.y155{bottom:721.708000pt;}
.ya9{bottom:721.868000pt;}
.y1ac{bottom:722.909333pt;}
.yf{bottom:725.568000pt;}
.y3f{bottom:731.909333pt;}
.y186{bottom:733.824000pt;}
.yd4{bottom:734.862667pt;}
.y6e{bottom:736.984000pt;}
.ya8{bottom:739.880000pt;}
.ye{bottom:741.708000pt;}
.y154{bottom:746.894667pt;}
.y3e{bottom:749.922667pt;}
.y185{bottom:751.038667pt;}
.y6d{bottom:754.997333pt;}
.yd3{bottom:756.314667pt;}
.yd{bottom:757.848000pt;}
.ya7{bottom:757.892000pt;}
.y3d{bottom:767.934667pt;}
.y184{bottom:768.254667pt;}
.y6c{bottom:773.009333pt;}
.yc{bottom:773.986667pt;}
.ya6{bottom:775.905333pt;}
.yb{bottom:778.326667pt;}
.y153{bottom:780.049333pt;}
.y183{bottom:785.469333pt;}
.y3c{bottom:785.948000pt;}
.yd2{bottom:789.908000pt;}
.y6b{bottom:791.021333pt;}
.ya5{bottom:793.917333pt;}
.y152{bottom:798.062667pt;}
.ya{bottom:798.097333pt;}
.y182{bottom:802.685333pt;}
.y3b{bottom:803.960000pt;}
.yd1{bottom:807.004000pt;}
.y6a{bottom:809.034667pt;}
.ya4{bottom:811.930667pt;}
.y9{bottom:815.145333pt;}
.y151{bottom:816.074667pt;}
.y181{bottom:819.901333pt;}
.y3a{bottom:821.972000pt;}
.y69{bottom:827.046667pt;}
.ya3{bottom:829.942667pt;}
.y8{bottom:832.194667pt;}
.y180{bottom:837.116000pt;}
.y39{bottom:839.985333pt;}
.y150{bottom:842.057333pt;}
.ya2{bottom:847.954667pt;}
.y68{bottom:853.029333pt;}
.y17f{bottom:854.332000pt;}
.y38{bottom:857.997333pt;}
.ya1{bottom:865.968000pt;}
.y7{bottom:871.160000pt;}
.y17e{bottom:871.546667pt;}
.y37{bottom:876.010667pt;}
.y67{bottom:883.980000pt;}
.y17d{bottom:888.762667pt;}
.y14f{bottom:889.520000pt;}
.y36{bottom:894.022667pt;}
.y6{bottom:898.178667pt;}
.y66{bottom:901.993333pt;}
.y14e{bottom:903.029333pt;}
.y17c{bottom:905.978667pt;}
.y35{bottom:912.034667pt;}
.y14d{bottom:916.538667pt;}
.y65{bottom:920.005333pt;}
.y17b{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y34{bottom:930.048000pt;}
.yd0{bottom:934.869333pt;}
.y64{bottom:938.017333pt;}
.y17a{bottom:940.409333pt;}
.y14c{bottom:943.557333pt;}
.y33{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y63{bottom:956.030667pt;}
.y14b{bottom:957.066667pt;}
.y179{bottom:957.624000pt;}
.y32{bottom:966.073333pt;}
.y62{bottom:974.042667pt;}
.y178{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y14a{bottom:978.546667pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h10{height:19.453116pt;}
.h1e{height:28.947524pt;}
.h16{height:32.781578pt;}
.h12{height:33.650039pt;}
.h8{height:33.771789pt;}
.h26{height:35.052646pt;}
.hd{height:35.387155pt;}
.he{height:36.666735pt;}
.h1c{height:37.626775pt;}
.h15{height:37.732031pt;}
.h14{height:37.951172pt;}
.h1d{height:38.596538pt;}
.hf{height:38.894088pt;}
.h4{height:38.947124pt;}
.h18{height:40.042969pt;}
.h17{height:42.008328pt;}
.h9{height:43.421286pt;}
.ha{height:43.756032pt;}
.h1f{height:44.376858pt;}
.h2{height:45.272024pt;}
.hc{height:48.245551pt;}
.hb{height:48.617488pt;}
.h13{height:50.309375pt;}
.h20{height:50.698811pt;}
.h1a{height:55.285477pt;}
.h19{height:55.952068pt;}
.h7{height:56.234741pt;}
.h6{height:56.240075pt;}
.h1b{height:59.066077pt;}
.h23{height:63.123421pt;}
.h25{height:69.842688pt;}
.h5{height:87.512064pt;}
.h24{height:89.374088pt;}
.h3{height:91.114522pt;}
.h11{height:622.999000pt;}
.h21{height:793.701333pt;}
.h22{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w3{width:464.471960pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w4{width:1122.520000pt;}
.w5{width:1122.666667pt;}
.x4f{left:-18.243040pt;}
.x0{left:0.000000pt;}
.x51{left:5.828960pt;}
.x2{left:51.605861pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x5b{left:114.626667pt;}
.x5c{left:120.338667pt;}
.x4{left:129.864000pt;}
.x64{left:133.668000pt;}
.x32{left:138.262667pt;}
.x59{left:139.842667pt;}
.x55{left:141.412000pt;}
.x60{left:146.764000pt;}
.x33{left:148.590667pt;}
.x81{left:150.924000pt;}
.x5f{left:156.429333pt;}
.x63{left:159.544000pt;}
.x4e{left:164.613107pt;}
.x6{left:167.468000pt;}
.x6a{left:170.356000pt;}
.x56{left:172.572000pt;}
.x5e{left:176.309333pt;}
.x52{left:180.306667pt;}
.x84{left:183.765333pt;}
.xf{left:186.405333pt;}
.x48{left:187.836000pt;}
.x69{left:190.996000pt;}
.x53{left:194.388000pt;}
.x9{left:196.368000pt;}
.x49{left:201.120000pt;}
.xa{left:202.080000pt;}
.x2a{left:204.874667pt;}
.x57{left:208.322667pt;}
.x42{left:210.564000pt;}
.x85{left:216.396000pt;}
.x2b{left:218.158667pt;}
.x2c{left:221.533333pt;}
.xa1{left:222.981333pt;}
.xa2{left:224.762667pt;}
.x90{left:228.034667pt;}
.x3a{left:233.778667pt;}
.x2d{left:234.816000pt;}
.x5d{left:237.434667pt;}
.x7c{left:241.154667pt;}
.x3b{left:244.108000pt;}
.x34{left:248.397333pt;}
.xb{left:249.678667pt;}
.x7d{left:254.438667pt;}
.x35{left:257.437333pt;}
.xc{left:260.006667pt;}
.x65{left:264.564000pt;}
.x14{left:265.872000pt;}
.x54{left:273.154667pt;}
.x8a{left:276.278667pt;}
.x74{left:283.301333pt;}
.x8b{left:289.561333pt;}
.x23{left:290.482667pt;}
.x4a{left:296.694667pt;}
.x1f{left:297.912000pt;}
.x8c{left:301.486667pt;}
.x20{left:304.553333pt;}
.x4b{left:309.978667pt;}
.x21{left:311.328000pt;}
.x77{left:315.817333pt;}
.x66{left:318.718667pt;}
.x22{left:324.612000pt;}
.x8e{left:325.806667pt;}
.x67{left:329.048000pt;}
.x78{left:332.488000pt;}
.x8f{left:339.090667pt;}
.x73{left:340.938667pt;}
.x79{left:345.772000pt;}
.x7a{left:349.158667pt;}
.x58{left:356.978667pt;}
.x15{left:360.037333pt;}
.x7b{left:362.442667pt;}
.x3c{left:364.797333pt;}
.x16{left:366.678667pt;}
.x17{left:373.188000pt;}
.x3d{left:375.126667pt;}
.x18{left:379.829333pt;}
.x26{left:383.622667pt;}
.x86{left:386.048000pt;}
.x8d{left:388.693333pt;}
.x27{left:396.906667pt;}
.x28{left:400.293333pt;}
.x88{left:401.564000pt;}
.x6d{left:412.040000pt;}
.x29{left:413.577333pt;}
.x89{left:414.846667pt;}
.x30{left:417.398667pt;}
.x31{left:430.682667pt;}
.xd{left:433.778667pt;}
.x2e{left:434.821333pt;}
.x40{left:440.574667pt;}
.x36{left:442.001333pt;}
.xe{left:443.097333pt;}
.x2f{left:448.105333pt;}
.x41{left:450.904000pt;}
.x37{left:452.330667pt;}
.x7e{left:465.186667pt;}
.x50{left:476.456960pt;}
.x7f{left:478.469333pt;}
.x6b{left:482.862667pt;}
.x87{left:489.473333pt;}
.x9e{left:501.582667pt;}
.x44{left:502.838667pt;}
.x6c{left:509.600000pt;}
.x45{left:513.168000pt;}
.x6e{left:516.614667pt;}
.x4c{left:521.908000pt;}
.x43{left:523.692000pt;}
.x72{left:524.838667pt;}
.x68{left:527.276000pt;}
.x46{left:529.093333pt;}
.x47{left:535.401333pt;}
.x24{left:537.592000pt;}
.x4d{left:538.542667pt;}
.x93{left:542.408000pt;}
.x1c{left:545.964000pt;}
.x25{left:550.876000pt;}
.x1d{left:552.606667pt;}
.x94{left:566.317333pt;}
.x82{left:573.674667pt;}
.x9b{left:577.314667pt;}
.x61{left:579.888000pt;}
.x38{left:585.508000pt;}
.x5a{left:586.997333pt;}
.x91{left:587.945333pt;}
.x83{left:590.212000pt;}
.x39{left:595.837333pt;}
.x19{left:600.392000pt;}
.x95{left:601.354667pt;}
.x3e{left:602.800000pt;}
.x9c{left:604.204000pt;}
.x1a{left:607.033333pt;}
.x92{left:611.856000pt;}
.x3f{left:613.129333pt;}
.x9d{left:614.064000pt;}
.x1b{left:617.772000pt;}
.x96{left:625.264000pt;}
.x75{left:629.585333pt;}
.xa0{left:631.161333pt;}
.x62{left:632.058667pt;}
.x1e{left:635.398667pt;}
.x76{left:637.320000pt;}
.x99{left:640.341333pt;}
.x9f{left:641.969333pt;}
.x9a{left:664.250667pt;}
.x97{left:666.309333pt;}
.x7{left:668.108000pt;}
.x10{left:669.408000pt;}
.x80{left:672.796000pt;}
.x11{left:676.050667pt;}
.x8{left:678.436000pt;}
.x12{left:679.437333pt;}
.x13{left:686.078667pt;}
.x98{left:690.218667pt;}
.x6f{left:698.248000pt;}
.x71{left:774.754667pt;}
.x70{left:780.318667pt;}
}




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