
    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_0bd797922dff9721e2bdde1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_1fa266df8f43491bebe73bcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_7ac08fce2d9bce54cbdbd0d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114000;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_1e5ed5408a3e57f0ec4d3e11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a4dbb9ab9d2ade7c6f2d03f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_b865dd04aeca22ae861123ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5cb059b337247faf3d9b221c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.696000;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_ba6784e66ead2c602b49c889.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_db3f6a3e902c7147cd9a8915.woff2')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_a8b471273f2f85f74c3c1ce9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.114000;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_986f4abd146511ba8ac80721.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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_00e36a1b8af75b47c8c1a64e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_e774fc872694db233de2587f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3a91243ce0ef98f7eb8dc295.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_c36e78f6668ee2ae0a4ca385.woff2')format("woff");}.fff{font-family:fff;line-height:0.839000;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_5254366b5196079aebff6239.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.868000;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_7af7fb8eb7a70e3edf8c8867.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.566000;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_79e1701e1465775562919272.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.815000;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_5322612e4f2f207a8b4c0b1c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m16{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);}
.m12{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);}
.m21{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);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.mb{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);}
.m1d{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);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m17{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);}
.m9{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);}
.m11{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);}
.m14{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);}
.mf{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);}
.m1b{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);}
.m23{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);}
.me{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);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.md{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);}
.m5{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);}
.m24{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);}
.mc{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);}
.m2{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);}
.m20{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);}
.m1e{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);}
.m4{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);}
.ma{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);}
.m8{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);}
.v22{vertical-align:-85.704000px;}
.v2f{vertical-align:-61.050000px;}
.v2e{vertical-align:-51.234000px;}
.v2b{vertical-align:-35.868000px;}
.v2{vertical-align:-26.028000px;}
.v29{vertical-align:-19.152000px;}
.v36{vertical-align:-17.928000px;}
.v4{vertical-align:-10.134000px;}
.v3{vertical-align:-8.964000px;}
.va{vertical-align:-7.290000px;}
.v0{vertical-align:0.000000px;}
.v2c{vertical-align:1.572000px;}
.v19{vertical-align:6.762000px;}
.vd{vertical-align:9.816000px;}
.v18{vertical-align:11.646000px;}
.vb{vertical-align:13.614000px;}
.v8{vertical-align:16.176000px;}
.v6{vertical-align:17.424000px;}
.v27{vertical-align:18.750000px;}
.v16{vertical-align:20.616000px;}
.v12{vertical-align:22.572000px;}
.v5{vertical-align:23.748000px;}
.v10{vertical-align:25.770000px;}
.v7{vertical-align:27.030000px;}
.v1d{vertical-align:30.162000px;}
.v1{vertical-align:31.242000px;}
.v9{vertical-align:34.212000px;}
.v1c{vertical-align:39.936000px;}
.v2d{vertical-align:41.172000px;}
.v17{vertical-align:42.306000px;}
.v14{vertical-align:44.280000px;}
.v15{vertical-align:46.320000px;}
.v13{vertical-align:48.342000px;}
.v11{vertical-align:49.722000px;}
.ve{vertical-align:50.874000px;}
.v33{vertical-align:53.040000px;}
.vc{vertical-align:58.164000px;}
.v21{vertical-align:60.462000px;}
.v31{vertical-align:63.852000px;}
.v1e{vertical-align:68.034000px;}
.v3a{vertical-align:70.584000px;}
.v1f{vertical-align:71.922000px;}
.v37{vertical-align:73.032000px;}
.vf{vertical-align:75.042000px;}
.v34{vertical-align:80.070000px;}
.v30{vertical-align:82.782000px;}
.v20{vertical-align:83.952000px;}
.v25{vertical-align:85.704000px;}
.v39{vertical-align:87.126000px;}
.v1a{vertical-align:89.178000px;}
.v23{vertical-align:95.526000px;}
.v38{vertical-align:100.062000px;}
.v26{vertical-align:101.886000px;}
.v24{vertical-align:105.936000px;}
.v1b{vertical-align:112.932000px;}
.v32{vertical-align:120.816000px;}
.v28{vertical-align:124.362000px;}
.v3b{vertical-align:140.808000px;}
.v2a{vertical-align:143.196000px;}
.v35{vertical-align:158.736000px;}
.lsc{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000300px;}
.lsf1{letter-spacing:0.001041px;}
.ls5f{letter-spacing:0.001050px;}
.ls8f{letter-spacing:0.001059px;}
.ls37{letter-spacing:0.001591px;}
.lsd4{letter-spacing:0.001597px;}
.ls1{letter-spacing:0.001599px;}
.lsa3{letter-spacing:0.002012px;}
.ls33{letter-spacing:0.002083px;}
.ls7c{letter-spacing:0.002207px;}
.ls26{letter-spacing:0.002583px;}
.ls60{letter-spacing:0.002686px;}
.lse{letter-spacing:0.002696px;}
.ls1c{letter-spacing:0.002698px;}
.ls9c{letter-spacing:0.002706px;}
.lscd{letter-spacing:0.002793px;}
.lsb1{letter-spacing:0.003181px;}
.lsb6{letter-spacing:0.003756px;}
.lsdb{letter-spacing:0.003962px;}
.ls8a{letter-spacing:0.004319px;}
.ls95{letter-spacing:0.004344px;}
.lse8{letter-spacing:0.004523px;}
.ls2b{letter-spacing:0.004528px;}
.ls32{letter-spacing:0.005027px;}
.ls17{letter-spacing:0.006838px;}
.lsd7{letter-spacing:0.007549px;}
.lscf{letter-spacing:0.009732px;}
.lsdc{letter-spacing:0.012432px;}
.lsef{letter-spacing:0.013358px;}
.ls4{letter-spacing:0.014090px;}
.ls2f{letter-spacing:0.020535px;}
.ls8d{letter-spacing:0.024974px;}
.lsf3{letter-spacing:0.027668px;}
.lsf8{letter-spacing:0.027791px;}
.ls43{letter-spacing:0.030962px;}
.ls88{letter-spacing:0.030974px;}
.lsdf{letter-spacing:0.327273px;}
.lsc7{letter-spacing:0.678494px;}
.lsc9{letter-spacing:0.716579px;}
.ls19{letter-spacing:1.243336px;}
.ls47{letter-spacing:1.291156px;}
.lsf5{letter-spacing:2.065035px;}
.ls27{letter-spacing:2.080205px;}
.lsf6{letter-spacing:2.087305px;}
.ls7d{letter-spacing:2.721654px;}
.ls7b{letter-spacing:2.724022px;}
.ls7a{letter-spacing:2.727115px;}
.ls65{letter-spacing:2.727654px;}
.ls63{letter-spacing:2.749678px;}
.ls78{letter-spacing:2.749844px;}
.ls6b{letter-spacing:2.749856px;}
.ls72{letter-spacing:2.750175px;}
.ls84{letter-spacing:2.752182px;}
.ls81{letter-spacing:2.757330px;}
.ls67{letter-spacing:2.759130px;}
.ls6f{letter-spacing:2.760930px;}
.ls75{letter-spacing:2.762730px;}
.ls7f{letter-spacing:2.763330px;}
.ls6a{letter-spacing:2.765130px;}
.ls6c{letter-spacing:2.766930px;}
.ls74{letter-spacing:2.768730px;}
.ls7e{letter-spacing:2.769330px;}
.ls12{letter-spacing:2.773595px;}
.ls83{letter-spacing:2.774313px;}
.ls82{letter-spacing:2.776216px;}
.ls6e{letter-spacing:2.778513px;}
.ls80{letter-spacing:2.781998px;}
.ls86{letter-spacing:2.965374px;}
.ls31{letter-spacing:2.966780px;}
.ls8c{letter-spacing:2.971374px;}
.ls2c{letter-spacing:2.980913px;}
.ls5d{letter-spacing:2.981780px;}
.ls0{letter-spacing:2.984915px;}
.lsa6{letter-spacing:2.986059px;}
.lsbc{letter-spacing:2.986204px;}
.ls28{letter-spacing:2.986913px;}
.ls9b{letter-spacing:2.988499px;}
.ls62{letter-spacing:2.988710px;}
.ls87{letter-spacing:2.989289px;}
.ls5b{letter-spacing:2.990915px;}
.ls94{letter-spacing:2.992059px;}
.lsb8{letter-spacing:2.992204px;}
.ls79{letter-spacing:2.994710px;}
.ls8e{letter-spacing:2.995289px;}
.ls1a{letter-spacing:2.998145px;}
.ls52{letter-spacing:3.006431px;}
.ls20{letter-spacing:3.007612px;}
.ls51{letter-spacing:3.007816px;}
.ls4b{letter-spacing:3.010050px;}
.ls4a{letter-spacing:3.010912px;}
.ls21{letter-spacing:3.013612px;}
.ls4f{letter-spacing:3.019503px;}
.ls53{letter-spacing:3.022803px;}
.ls4d{letter-spacing:3.025503px;}
.ls58{letter-spacing:3.026103px;}
.ls55{letter-spacing:3.028803px;}
.ls5e{letter-spacing:3.044412px;}
.ls89{letter-spacing:4.256559px;}
.ls92{letter-spacing:4.262559px;}
.ls46{letter-spacing:4.265644px;}
.ls11{letter-spacing:5.116804px;}
.ls3a{letter-spacing:5.740403px;}
.ls1f{letter-spacing:5.743488px;}
.ls30{letter-spacing:5.749488px;}
.lsc8{letter-spacing:6.512915px;}
.lsc6{letter-spacing:6.518915px;}
.ls9{letter-spacing:7.069097px;}
.lsa9{letter-spacing:7.118632px;}
.lsa0{letter-spacing:7.129599px;}
.ls6{letter-spacing:7.134551px;}
.ls90{letter-spacing:7.135599px;}
.ls3b{letter-spacing:7.138175px;}
.ls3e{letter-spacing:7.144175px;}
.ls96{letter-spacing:7.148090px;}
.ls5a{letter-spacing:7.166915px;}
.ls71{letter-spacing:7.170710px;}
.ls59{letter-spacing:7.172118px;}
.ls56{letter-spacing:7.172706px;}
.ls57{letter-spacing:7.172915px;}
.ls70{letter-spacing:7.173269px;}
.ls77{letter-spacing:7.173807px;}
.ls76{letter-spacing:7.176710px;}
.lsad{letter-spacing:7.183011px;}
.ls9e{letter-spacing:7.183549px;}
.ls38{letter-spacing:7.185191px;}
.ls9a{letter-spacing:7.189011px;}
.ls18{letter-spacing:8.086888px;}
.lsc4{letter-spacing:10.865464px;}
.lsbd{letter-spacing:10.905181px;}
.lsdd{letter-spacing:10.908520px;}
.lsd3{letter-spacing:10.910793px;}
.lsb9{letter-spacing:10.911181px;}
.lsd9{letter-spacing:10.911962px;}
.lsa7{letter-spacing:10.921549px;}
.ls16{letter-spacing:10.930918px;}
.lsa4{letter-spacing:12.348499px;}
.lsae{letter-spacing:12.354499px;}
.lsde{letter-spacing:12.960011px;}
.ls13{letter-spacing:13.156375px;}
.lsda{letter-spacing:13.267488px;}
.ls69{letter-spacing:13.270183px;}
.lse3{letter-spacing:13.892915px;}
.lsd8{letter-spacing:13.898915px;}
.ls3{letter-spacing:14.530921px;}
.lsbb{letter-spacing:14.543412px;}
.lsa5{letter-spacing:14.546012px;}
.lsbf{letter-spacing:14.549412px;}
.lse0{letter-spacing:14.596376px;}
.lsd2{letter-spacing:15.985809px;}
.ls6d{letter-spacing:16.019861px;}
.ls66{letter-spacing:16.272710px;}
.ls68{letter-spacing:16.278710px;}
.ls64{letter-spacing:16.617617px;}
.lsf0{letter-spacing:16.651488px;}
.lsbe{letter-spacing:17.509374px;}
.lsba{letter-spacing:17.515374px;}
.ls4c{letter-spacing:17.528915px;}
.lsb7{letter-spacing:17.530204px;}
.ls2{letter-spacing:17.531236px;}
.ls5{letter-spacing:17.532499px;}
.ls4e{letter-spacing:17.534915px;}
.lsa1{letter-spacing:17.536059px;}
.lsb3{letter-spacing:17.536204px;}
.ls50{letter-spacing:17.541833px;}
.ls8{letter-spacing:18.130924px;}
.lsc1{letter-spacing:18.179412px;}
.lsa8{letter-spacing:18.182012px;}
.ls7{letter-spacing:18.196379px;}
.lse2{letter-spacing:18.261833px;}
.lsf2{letter-spacing:18.720016px;}
.lsc3{letter-spacing:18.806559px;}
.ls54{letter-spacing:19.868915px;}
.ls5c{letter-spacing:19.874915px;}
.lsf9{letter-spacing:20.356381px;}
.ls73{letter-spacing:20.454538px;}
.ls2e{letter-spacing:21.149865px;}
.ls10{letter-spacing:21.164915px;}
.ls85{letter-spacing:21.169289px;}
.lsf{letter-spacing:21.170915px;}
.lsd1{letter-spacing:21.172613px;}
.ls41{letter-spacing:21.207290px;}
.lse5{letter-spacing:21.600018px;}
.ls48{letter-spacing:21.665473px;}
.ls3d{letter-spacing:21.713412px;}
.ls39{letter-spacing:21.719412px;}
.lsb{letter-spacing:21.796382px;}
.lsa{letter-spacing:21.861836px;}
.ls15{letter-spacing:21.927291px;}
.ls1e{letter-spacing:22.123655px;}
.ls36{letter-spacing:23.929488px;}
.lsfc{letter-spacing:24.283657px;}
.ls8b{letter-spacing:24.787289px;}
.lse7{letter-spacing:24.800915px;}
.lscb{letter-spacing:24.806915px;}
.ls40{letter-spacing:24.807293px;}
.lscc{letter-spacing:24.808612px;}
.ls42{letter-spacing:25.335734px;}
.ls49{letter-spacing:26.081644px;}
.lsd5{letter-spacing:26.566677px;}
.lsd{letter-spacing:26.705477px;}
.lsaa{letter-spacing:26.898499px;}
.ls14{letter-spacing:27.511488px;}
.ls1d{letter-spacing:27.621841px;}
.ls22{letter-spacing:28.297289px;}
.lsc5{letter-spacing:28.996388px;}
.lsc2{letter-spacing:29.894700px;}
.lsab{letter-spacing:29.900700px;}
.ls24{letter-spacing:33.326915px;}
.ls23{letter-spacing:33.332915px;}
.lsd6{letter-spacing:35.212053px;}
.ls25{letter-spacing:38.366915px;}
.ls91{letter-spacing:38.575289px;}
.lsa2{letter-spacing:40.808700px;}
.lsb4{letter-spacing:44.444700px;}
.lsb5{letter-spacing:45.158700px;}
.lsb2{letter-spacing:45.164700px;}
.lsc0{letter-spacing:61.424559px;}
.lsaf{letter-spacing:77.274499px;}
.lsca{letter-spacing:80.697600px;}
.ls44{letter-spacing:81.085059px;}
.lsf4{letter-spacing:81.713412px;}
.lse6{letter-spacing:86.400072px;}
.lseb{letter-spacing:86.669971px;}
.lsec{letter-spacing:86.675971px;}
.ls98{letter-spacing:91.818499px;}
.lsac{letter-spacing:91.824499px;}
.lsed{letter-spacing:103.037971px;}
.ls35{letter-spacing:103.080532px;}
.ls2d{letter-spacing:103.578532px;}
.lsd0{letter-spacing:116.521488px;}
.ls93{letter-spacing:117.491007px;}
.ls34{letter-spacing:117.624532px;}
.ls2a{letter-spacing:118.122532px;}
.ls29{letter-spacing:118.128532px;}
.lsee{letter-spacing:119.399971px;}
.ls3f{letter-spacing:127.091447px;}
.ls3c{letter-spacing:127.583447px;}
.lsce{letter-spacing:131.071488px;}
.ls97{letter-spacing:140.737026px;}
.lsb0{letter-spacing:145.848499px;}
.ls9f{letter-spacing:153.991026px;}
.ls99{letter-spacing:163.460700px;}
.ls9d{letter-spacing:290.648700px;}
.lsea{letter-spacing:307.856915px;}
.lse9{letter-spacing:307.862915px;}
.lsfa{letter-spacing:426.812915px;}
.lsfb{letter-spacing:443.174915px;}
.lsf7{letter-spacing:457.273380px;}
.ls1b{letter-spacing:723.993331px;}
.lse1{letter-spacing:751.484263px;}
.lse4{letter-spacing:815.760680px;}
.ls45{letter-spacing:1116.131839px;}
.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:-80.733466px;}
.ws40{word-spacing:-65.454600px;}
.ws4b{word-spacing:-59.775600px;}
.ws27{word-spacing:-54.589136px;}
.ws5f{word-spacing:-53.568045px;}
.ws57{word-spacing:-47.324343px;}
.ws10{word-spacing:-42.637126px;}
.wsc{word-spacing:-38.937826px;}
.ws3c{word-spacing:-36.379667px;}
.ws91{word-spacing:-33.453846px;}
.ws4{word-spacing:-32.727300px;}
.ws2c{word-spacing:-31.771663px;}
.ws13{word-spacing:-31.706208px;}
.ws3b{word-spacing:-25.029839px;}
.ws17{word-spacing:-24.506202px;}
.ws16{word-spacing:-24.440748px;}
.ws7c{word-spacing:-20.709835px;}
.ws34{word-spacing:-18.183288px;}
.ws1a{word-spacing:-17.738197px;}
.ws24{word-spacing:-17.083651px;}
.ws7{word-spacing:-16.318739px;}
.ws69{word-spacing:-15.970922px;}
.wsb0{word-spacing:-15.054558px;}
.ws60{word-spacing:-13.810921px;}
.wsaf{word-spacing:-13.752011px;}
.ws7a{word-spacing:-13.680011px;}
.ws61{word-spacing:-13.352738px;}
.ws3a{word-spacing:-13.287284px;}
.ws4c{word-spacing:-12.960011px;}
.ws84{word-spacing:-12.763647px;}
.ws19{word-spacing:-12.436374px;}
.ws5e{word-spacing:-12.240010px;}
.ws80{word-spacing:-11.650919px;}
.wsd{word-spacing:-11.596466px;}
.ws7e{word-spacing:-11.585464px;}
.wsb{word-spacing:-11.536691px;}
.ws1e{word-spacing:-11.454555px;}
.ws89{word-spacing:-11.389100px;}
.ws97{word-spacing:-11.323646px;}
.ws1b{word-spacing:-11.258191px;}
.ws9c{word-spacing:-11.199282px;}
.ws29{word-spacing:-11.192737px;}
.ws6c{word-spacing:-11.127282px;}
.ws1c{word-spacing:-11.061827px;}
.ws31{word-spacing:-10.996373px;}
.ws3{word-spacing:-10.930918px;}
.ws18{word-spacing:-10.865464px;}
.ws21{word-spacing:-10.800009px;}
.ws5d{word-spacing:-10.734554px;}
.ws1d{word-spacing:-10.669100px;}
.ws2f{word-spacing:-10.603645px;}
.ws8a{word-spacing:-10.544736px;}
.ws98{word-spacing:-10.538191px;}
.ws96{word-spacing:-10.479281px;}
.ws22{word-spacing:-10.472736px;}
.wsa{word-spacing:-10.460730px;}
.ws8f{word-spacing:-10.413827px;}
.ws52{word-spacing:-10.407281px;}
.ws5c{word-spacing:-10.341827px;}
.ws8{word-spacing:-10.221628px;}
.wsae{word-spacing:-10.152008px;}
.ws81{word-spacing:-10.080008px;}
.ws90{word-spacing:-10.021099px;}
.ws83{word-spacing:-10.014554px;}
.ws6{word-spacing:-9.982525px;}
.ws94{word-spacing:-9.955645px;}
.wsad{word-spacing:-9.890190px;}
.ws8b{word-spacing:-9.759281px;}
.ws9{word-spacing:-9.743423px;}
.wsa5{word-spacing:-9.693826px;}
.ws99{word-spacing:-9.628372px;}
.ws8d{word-spacing:-9.490917px;}
.ws20{word-spacing:-9.151644px;}
.ws8e{word-spacing:-8.777462px;}
.ws92{word-spacing:-8.509098px;}
.wsb4{word-spacing:-8.378189px;}
.ws67{word-spacing:-8.181825px;}
.wsa7{word-spacing:-8.057461px;}
.wsa6{word-spacing:-8.050916px;}
.wsb3{word-spacing:-7.730188px;}
.ws85{word-spacing:-7.592734px;}
.wsb7{word-spacing:-7.272006px;}
.wsa1{word-spacing:-7.010188px;}
.wsb8{word-spacing:-6.741824px;}
.wsba{word-spacing:-6.610915px;}
.wsb9{word-spacing:-6.290187px;}
.ws23{word-spacing:-6.283642px;}
.ws56{word-spacing:-6.152732px;}
.ws4d{word-spacing:-6.087278px;}
.ws26{word-spacing:-6.021823px;}
.wsbd{word-spacing:-5.635641px;}
.ws7b{word-spacing:-5.301823px;}
.wsbe{word-spacing:-5.170913px;}
.ws2e{word-spacing:-5.105459px;}
.ws2d{word-spacing:-5.040004px;}
.wsa9{word-spacing:-4.974550px;}
.wsbf{word-spacing:-4.850186px;}
.wsac{word-spacing:-4.843640px;}
.ws95{word-spacing:-4.784731px;}
.ws4e{word-spacing:-4.778186px;}
.wsa8{word-spacing:-4.653822px;}
.wsaa{word-spacing:-4.522913px;}
.wsc0{word-spacing:-3.927276px;}
.ws2b{word-spacing:-3.783276px;}
.wsb5{word-spacing:-3.730912px;}
.wsc1{word-spacing:-3.672003px;}
.ws35{word-spacing:-3.652367px;}
.ws73{word-spacing:-3.586912px;}
.wsb6{word-spacing:-3.475639px;}
.ws41{word-spacing:-3.335478px;}
.ws5b{word-spacing:-3.259639px;}
.wsab{word-spacing:-3.207275px;}
.wsb1{word-spacing:-3.141821px;}
.wsb2{word-spacing:-2.952002px;}
.ws33{word-spacing:-2.945457px;}
.ws9e{word-spacing:-2.886548px;}
.ws9a{word-spacing:-2.487275px;}
.ws9b{word-spacing:-2.362911px;}
.ws39{word-spacing:-2.290911px;}
.ws9f{word-spacing:-0.916364px;}
.ws4f{word-spacing:-0.445091px;}
.ws93{word-spacing:-0.065455px;}
.ws14{word-spacing:-0.052364px;}
.ws28{word-spacing:-0.047821px;}
.ws37{word-spacing:-0.035866px;}
.ws1f{word-spacing:0.000000px;}
.ws45{word-spacing:0.011955px;}
.ws12{word-spacing:0.013091px;}
.ws7d{word-spacing:0.078546px;}
.ws6b{word-spacing:0.144000px;}
.ws30{word-spacing:0.274909px;}
.ws6a{word-spacing:0.340364px;}
.wsbc{word-spacing:1.171637px;}
.ws7f{word-spacing:2.893093px;}
.ws6d{word-spacing:3.613094px;}
.ws82{word-spacing:4.464004px;}
.wsbb{word-spacing:4.516367px;}
.wsa4{word-spacing:5.229823px;}
.wsa3{word-spacing:5.760005px;}
.ws64{word-spacing:10.836044px;}
.ws66{word-spacing:10.842044px;}
.ws2a{word-spacing:16.050044px;}
.ws36{word-spacing:17.122923px;}
.ws58{word-spacing:17.467554px;}
.ws50{word-spacing:17.482210px;}
.ws55{word-spacing:17.485178px;}
.ws48{word-spacing:20.837774px;}
.ws59{word-spacing:21.097554px;}
.ws54{word-spacing:21.118210px;}
.ws11{word-spacing:21.120413px;}
.ws9d{word-spacing:21.272745px;}
.wsa2{word-spacing:21.730927px;}
.wsa0{word-spacing:21.796382px;}
.ws8c{word-spacing:21.992746px;}
.ws2{word-spacing:23.312640px;}
.ws79{word-spacing:24.610930px;}
.ws5{word-spacing:25.003657px;}
.ws65{word-spacing:25.147657px;}
.ws68{word-spacing:25.200021px;}
.ws1{word-spacing:27.975090px;}
.wse{word-spacing:29.061842px;}
.ws25{word-spacing:32.192873px;}
.ws32{word-spacing:33.682937px;}
.ws15{word-spacing:33.748392px;}
.ws88{word-spacing:39.010942px;}
.ws0{word-spacing:46.366650px;}
.ws72{word-spacing:50.923679px;}
.ws74{word-spacing:50.989133px;}
.ws78{word-spacing:53.410954px;}
.ws76{word-spacing:56.618229px;}
.ws51{word-spacing:63.169178px;}
.ws53{word-spacing:63.175178px;}
.ws47{word-spacing:65.490147px;}
.ws5a{word-spacing:68.377554px;}
.ws6e{word-spacing:70.952786px;}
.ws63{word-spacing:80.661734px;}
.ws43{word-spacing:82.107764px;}
.ws75{word-spacing:83.716433px;}
.wsf{word-spacing:96.750773px;}
.ws86{word-spacing:110.814638px;}
.ws4a{word-spacing:111.995564px;}
.ws42{word-spacing:125.803728px;}
.ws6f{word-spacing:133.239384px;}
.ws46{word-spacing:172.249369px;}
.ws3d{word-spacing:179.319422px;}
.ws49{word-spacing:196.817141px;}
.ws70{word-spacing:217.243817px;}
.ws87{word-spacing:217.872182px;}
.ws3e{word-spacing:226.970371px;}
.ws71{word-spacing:230.138374px;}
.ws44{word-spacing:232.264071px;}
.ws3f{word-spacing:292.097698px;}
.ws77{word-spacing:339.709374px;}
.wsc2{word-spacing:421.507484px;}
.ws38{word-spacing:454.264513px;}
._1d{margin-left:-80.697600px;}
._2b{margin-left:-36.345733px;}
._1b{margin-left:-20.909645px;}
._20{margin-left:-18.936770px;}
._1{margin-left:-11.653650px;}
._1c{margin-left:-10.544486px;}
._8{margin-left:-7.328437px;}
._5{margin-left:-5.881958px;}
._2{margin-left:-3.843225px;}
._3{margin-left:-1.936742px;}
._4{width:2.008474px;}
._0{width:3.843225px;}
._30{width:5.630462px;}
._a{width:7.134551px;}
._21{width:10.923191px;}
._7{width:15.685157px;}
._11{width:17.874634px;}
._32{width:19.254684px;}
._13{width:21.485502px;}
._e{width:23.349122px;}
._15{width:25.336733px;}
._9{width:26.899020px;}
._17{width:27.949114px;}
._6{width:28.951552px;}
._d{width:29.990100px;}
._14{width:31.876390px;}
._16{width:33.280540px;}
._33{width:34.857698px;}
._2c{width:39.822403px;}
._31{width:42.066689px;}
._f{width:43.482473px;}
._10{width:44.708312px;}
._1f{width:59.787955px;}
._1e{width:70.224845px;}
._c{width:76.207751px;}
._2f{width:78.087338px;}
._1a{width:85.416959px;}
._2e{width:88.101892px;}
._23{width:89.345529px;}
._2d{width:94.450988px;}
._12{width:96.836850px;}
._2a{width:100.080083px;}
._25{width:127.112833px;}
._24{width:205.069262px;}
._26{width:237.338380px;}
._29{width:253.505666px;}
._27{width:264.174766px;}
._19{width:271.702045px;}
._28{width:275.760230px;}
._18{width:488.930044px;}
._b{width:872.861897px;}
._22{width:1404.721171px;}
.fc2{color:rgb(5,150,105);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y5d{bottom:99.487500px;}
.y5b{bottom:99.832500px;}
.y5a{bottom:105.475500px;}
.y20{bottom:106.299000px;}
.y5c{bottom:114.030000px;}
.y12b{bottom:125.308500px;}
.y59{bottom:125.434500px;}
.y57{bottom:125.779500px;}
.y1f{bottom:130.951500px;}
.y56{bottom:131.422500px;}
.y12c{bottom:136.890000px;}
.y12a{bottom:137.395500px;}
.y58{bottom:139.977000px;}
.yd3{bottom:150.916500px;}
.y55{bottom:151.381500px;}
.yd2{bottom:151.447500px;}
.y53{bottom:151.726500px;}
.yd1{bottom:155.604000px;}
.y1e{bottom:155.994000px;}
.y52{bottom:157.369500px;}
.y54{bottom:165.924000px;}
.y9d{bottom:171.805500px;}
.y51{bottom:177.328500px;}
.y4f{bottom:177.673500px;}
.y143{bottom:180.258000px;}
.y1d{bottom:180.646500px;}
.y4e{bottom:183.316500px;}
.y50{bottom:191.871000px;}
.y129{bottom:192.040500px;}
.y193{bottom:192.448500px;}
.y5e{bottom:197.776500px;}
.y173{bottom:198.555000px;}
.yd0{bottom:200.197500px;}
.y4d{bottom:203.275500px;}
.y161{bottom:204.150000px;}
.y1c{bottom:205.299000px;}
.y4c{bottom:209.263500px;}
.y128{bottom:216.693000px;}
.y192{bottom:217.101000px;}
.y172{bottom:223.207500px;}
.y160{bottom:224.473500px;}
.y9c{bottom:228.795000px;}
.y4b{bottom:229.222500px;}
.y1b{bottom:229.951500px;}
.y142{bottom:232.960500px;}
.y4a{bottom:235.210500px;}
.y127{bottom:241.345500px;}
.ycf{bottom:244.789500px;}
.y15f{bottom:244.798500px;}
.y9b{bottom:253.447500px;}
.y191{bottom:253.945500px;}
.y1a{bottom:254.605500px;}
.y49{bottom:255.169500px;}
.y48{bottom:261.157500px;}
.y15e{bottom:265.122000px;}
.y171{bottom:266.157000px;}
.yce{bottom:269.442000px;}
.y9a{bottom:278.100000px;}
.y190{bottom:278.599500px;}
.y19{bottom:279.258000px;}
.y47{bottom:281.116500px;}
.y15d{bottom:285.445500px;}
.y46{bottom:287.104500px;}
.y170{bottom:290.809500px;}
.y126{bottom:292.705500px;}
.ycd{bottom:294.094500px;}
.y18f{bottom:303.252000px;}
.y18{bottom:303.910500px;}
.y15c{bottom:305.769000px;}
.y16f{bottom:315.462000px;}
.y16e{bottom:315.463500px;}
.y125{bottom:317.358000px;}
.y81{bottom:318.202500px;}
.ycc{bottom:321.463500px;}
.y15b{bottom:326.092500px;}
.y98{bottom:326.482500px;}
.y97{bottom:330.966000px;}
.y45{bottom:331.180500px;}
.y96{bottom:335.449500px;}
.yca{bottom:337.848000px;}
.y80{bottom:338.499000px;}
.y95{bottom:339.931500px;}
.y18e{bottom:340.096500px;}
.y17{bottom:340.345500px;}
.y7f{bottom:342.855000px;}
.y94{bottom:344.415000px;}
.ycb{bottom:345.027000px;}
.y123{bottom:345.726000px;}
.y15a{bottom:346.416000px;}
.y93{bottom:348.898500px;}
.yc9{bottom:349.072500px;}
.y120{bottom:350.724000px;}
.y92{bottom:353.382000px;}
.y44{bottom:355.833000px;}
.y91{bottom:357.865500px;}
.y16d{bottom:358.413000px;}
.y124{bottom:359.940000px;}
.y90{bottom:362.349000px;}
.y11f{bottom:363.985500px;}
.y18d{bottom:364.749000px;}
.y16{bottom:364.998000px;}
.y159{bottom:366.741000px;}
.y8f{bottom:366.831000px;}
.y7e{bottom:367.507500px;}
.y8e{bottom:371.314500px;}
.y122{bottom:378.537000px;}
.yc7{bottom:380.454000px;}
.y99{bottom:380.673000px;}
.y43{bottom:381.696000px;}
.y121{bottom:383.020500px;}
.y16c{bottom:383.065500px;}
.y158{bottom:387.064500px;}
.yc8{bottom:387.633000px;}
.y7d{bottom:387.804000px;}
.y18c{bottom:389.401500px;}
.yc6{bottom:391.678500px;}
.y7c{bottom:392.160000px;}
.y8d{bottom:398.214000px;}
.y11c{bottom:402.480000px;}
.y8c{bottom:402.697500px;}
.y42{bottom:406.348500px;}
.y8b{bottom:407.181000px;}
.y157{bottom:407.388000px;}
.y119{bottom:407.478000px;}
.y16b{bottom:407.718000px;}
.y15{bottom:409.590000px;}
.y8a{bottom:411.664500px;}
.y11e{bottom:415.900500px;}
.y89{bottom:416.148000px;}
.y11d{bottom:416.692500px;}
.y7b{bottom:416.812500px;}
.y88{bottom:420.630000px;}
.y118{bottom:420.738000px;}
.yc4{bottom:423.060000px;}
.y87{bottom:425.113500px;}
.y18b{bottom:426.246000px;}
.y156{bottom:427.711500px;}
.y86{bottom:429.597000px;}
.yc5{bottom:430.239000px;}
.y41{bottom:431.001000px;}
.y85{bottom:434.080500px;}
.yc3{bottom:434.284500px;}
.y11b{bottom:435.289500px;}
.y84{bottom:438.564000px;}
.y11a{bottom:439.773000px;}
.y7a{bottom:441.466500px;}
.y83{bottom:443.046000px;}
.y155{bottom:448.633500px;}
.y16a{bottom:450.667500px;}
.y18a{bottom:450.898500px;}
.y14{bottom:454.183500px;}
.y82{bottom:456.496500px;}
.y116{bottom:459.234000px;}
.y113{bottom:464.232000px;}
.yc1{bottom:465.666000px;}
.y40{bottom:467.058000px;}
.y3f{bottom:471.103500px;}
.yc0{bottom:471.834000px;}
.yc2{bottom:472.845000px;}
.y117{bottom:473.446500px;}
.y169{bottom:475.321500px;}
.y189{bottom:475.551000px;}
.ybf{bottom:476.890500px;}
.y112{bottom:477.492000px;}
.y154{bottom:484.498500px;}
.y13{bottom:490.618500px;}
.y115{bottom:492.043500px;}
.y3e{bottom:496.194000px;}
.y114{bottom:496.527000px;}
.y3d{bottom:500.239500px;}
.y79{bottom:504.810000px;}
.ybc{bottom:508.272000px;}
.y111{bottom:510.867000px;}
.y188{bottom:512.395500px;}
.ybe{bottom:514.440000px;}
.ybd{bottom:515.451000px;}
.y168{bottom:518.529000px;}
.ybb{bottom:519.496500px;}
.y78{bottom:529.462500px;}
.y141{bottom:532.968000px;}
.y110{bottom:535.519500px;}
.y187{bottom:537.048000px;}
.y3c{bottom:538.930500px;}
.y12{bottom:540.313500px;}
.yb8{bottom:550.878000px;}
.yb9{bottom:557.046000px;}
.yba{bottom:558.058500px;}
.y186{bottom:561.700500px;}
.yb7{bottom:562.102500px;}
.y76{bottom:562.149000px;}
.y140{bottom:568.833000px;}
.y10b{bottom:572.079000px;}
.y3b{bottom:574.987500px;}
.y3a{bottom:579.033000px;}
.y10e{bottom:579.676500px;}
.y11{bottom:581.922000px;}
.y167{bottom:582.735000px;}
.y75{bottom:583.902000px;}
.y10c{bottom:585.679500px;}
.y10f{bottom:586.291500px;}
.y13f{bottom:589.156500px;}
.y105{bottom:590.337000px;}
.yb5{bottom:593.484000px;}
.y108{bottom:595.125000px;}
.y185{bottom:598.545000px;}
.yb4{bottom:599.652000px;}
.yb6{bottom:600.664500px;}
.y10d{bottom:603.145500px;}
.y107{bottom:604.092000px;}
.y39{bottom:604.123500px;}
.yb3{bottom:604.710000px;}
.y10a{bottom:604.888500px;}
.y74{bottom:605.653500px;}
.y166{bottom:607.387500px;}
.y38{bottom:608.167500px;}
.y109{bottom:609.372000px;}
.y13e{bottom:609.480000px;}
.y106{bottom:613.059000px;}
.y184{bottom:623.197500px;}
.y73{bottom:627.406500px;}
.y13d{bottom:629.803500px;}
.y165{bottom:632.040000px;}
.yb0{bottom:636.090000px;}
.y77{bottom:638.896500px;}
.yb2{bottom:642.258000px;}
.yb1{bottom:643.270500px;}
.y10{bottom:644.701500px;}
.y37{bottom:646.858500px;}
.y104{bottom:647.238000px;}
.y183{bottom:647.851500px;}
.y72{bottom:649.158000px;}
.y13c{bottom:650.128500px;}
.y36{bottom:651.214500px;}
.y1a2{bottom:653.754000px;}
.y164{bottom:656.692500px;}
.y71{bottom:665.758500px;}
.yaf{bottom:668.742000px;}
.y13b{bottom:670.452000px;}
.y70{bottom:670.911000px;}
.y35{bottom:671.512500px;}
.y103{bottom:671.892000px;}
.y34{bottom:675.868500px;}
.y1a1{bottom:678.406500px;}
.y182{bottom:684.696000px;}
.y6f{bottom:687.510000px;}
.yf{bottom:687.634500px;}
.y13a{bottom:690.775500px;}
.y6e{bottom:692.664000px;}
.y102{bottom:696.544500px;}
.y163{bottom:699.900000px;}
.y33{bottom:700.521000px;}
.y1a0{bottom:703.059000px;}
.y181{bottom:709.348500px;}
.ye{bottom:709.386000px;}
.y139{bottom:711.697500px;}
.y6d{bottom:714.415500px;}
.y153{bottom:717.841500px;}
.yae{bottom:718.905000px;}
.y32{bottom:725.173500px;}
.yd{bottom:731.139000px;}
.y138{bottom:732.618000px;}
.y180{bottom:734.001000px;}
.y19f{bottom:741.160500px;}
.y152{bottom:742.494000px;}
.yad{bottom:743.557500px;}
.y101{bottom:743.836500px;}
.yc{bottom:752.892000px;}
.y137{bottom:752.943000px;}
.y31{bottom:762.699000px;}
.y19e{bottom:765.813000px;}
.y151{bottom:767.146500px;}
.y6c{bottom:769.183500px;}
.y162{bottom:770.203500px;}
.y17f{bottom:770.845500px;}
.yac{bottom:771.484500px;}
.y136{bottom:773.266500px;}
.yb{bottom:774.643500px;}
.yab{bottom:778.663500px;}
.y2e{bottom:780.957000px;}
.yaa{bottom:782.709000px;}
.y150{bottom:791.800500px;}
.y135{bottom:793.590000px;}
.y6b{bottom:793.837500px;}
.y17e{bottom:795.498000px;}
.y30{bottom:795.508500px;}
.ya{bottom:796.396500px;}
.y2f{bottom:799.992000px;}
.y19d{bottom:803.916000px;}
.y134{bottom:813.913500px;}
.y14f{bottom:816.453000px;}
.y6a{bottom:818.490000px;}
.y100{bottom:826.152000px;}
.y19c{bottom:828.568500px;}
.y9{bottom:829.435500px;}
.y17d{bottom:832.342500px;}
.y133{bottom:834.237000px;}
.y2d{bottom:834.271500px;}
.ya9{bottom:834.730500px;}
.y69{bottom:839.652000px;}
.y19b{bottom:853.221000px;}
.y132{bottom:854.560500px;}
.y17c{bottom:856.995000px;}
.y68{bottom:858.663000px;}
.y2c{bottom:858.924000px;}
.y67{bottom:864.306000px;}
.yfd{bottom:868.174500px;}
.ya8{bottom:869.836500px;}
.y8{bottom:870.678000px;}
.ya7{bottom:873.882000px;}
.y131{bottom:875.482500px;}
.y14e{bottom:877.717500px;}
.y19a{bottom:877.873500px;}
.yfc{bottom:878.635500px;}
.y17b{bottom:881.647500px;}
.y66{bottom:883.315500px;}
.y2b{bottom:883.578000px;}
.y65{bottom:888.958500px;}
.yfb{bottom:889.095000px;}
.ye8{bottom:893.578500px;}
.y130{bottom:896.404500px;}
.yfa{bottom:899.556000px;}
.y7{bottom:901.002000px;}
.y14d{bottom:902.370000px;}
.ye7{bottom:903.142500px;}
.y2a{bottom:908.230500px;}
.yf9{bottom:910.017000px;}
.yff{bottom:912.108000px;}
.ye6{bottom:912.109500px;}
.y64{bottom:913.611000px;}
.y199{bottom:915.976500px;}
.y17a{bottom:918.492000px;}
.yf8{bottom:920.478000px;}
.ye5{bottom:921.075000px;}
.y6{bottom:925.654500px;}
.ya6{bottom:925.903500px;}
.y14c{bottom:927.022500px;}
.ye4{bottom:930.042000px;}
.yf7{bottom:930.939000px;}
.ye3{bottom:939.007500px;}
.y198{bottom:940.629000px;}
.yf6{bottom:941.400000px;}
.y179{bottom:943.144500px;}
.ye2{bottom:947.974500px;}
.ya5{bottom:950.556000px;}
.y29{bottom:951.433500px;}
.y14b{bottom:951.675000px;}
.yf5{bottom:951.861000px;}
.y12f{bottom:952.302000px;}
.ye1{bottom:956.941500px;}
.y5{bottom:958.489500px;}
.yf4{bottom:962.320500px;}
.y197{bottom:965.281500px;}
.ye0{bottom:965.907000px;}
.y178{bottom:967.797000px;}
.yf3{bottom:972.781500px;}
.ydf{bottom:974.874000px;}
.y14a{bottom:976.327500px;}
.y63{bottom:976.954500px;}
.yf2{bottom:983.242500px;}
.yde{bottom:983.841000px;}
.ya3{bottom:989.950500px;}
.y4{bottom:991.405500px;}
.ydd{bottom:992.806500px;}
.yf1{bottom:993.703500px;}
.ya4{bottom:997.129500px;}
.y149{bottom:1000.980000px;}
.ya2{bottom:1001.175000px;}
.y62{bottom:1001.607000px;}
.ydc{bottom:1001.773500px;}
.y196{bottom:1003.384500px;}
.yf0{bottom:1004.164500px;}
.y177{bottom:1004.641500px;}
.ydb{bottom:1010.740500px;}
.y3{bottom:1014.489000px;}
.yef{bottom:1014.625500px;}
.y28{bottom:1015.624500px;}
.yda{bottom:1019.706000px;}
.yee{bottom:1025.086500px;}
.y61{bottom:1026.259500px;}
.y195{bottom:1028.037000px;}
.yd9{bottom:1028.673000px;}
.y176{bottom:1029.294000px;}
.yed{bottom:1035.546000px;}
.yfe{bottom:1037.638500px;}
.yd8{bottom:1037.640000px;}
.y27{bottom:1040.277000px;}
.yec{bottom:1046.007000px;}
.yd7{bottom:1046.605500px;}
.y12e{bottom:1050.912000px;}
.y194{bottom:1052.689500px;}
.y175{bottom:1053.948000px;}
.yd6{bottom:1055.572500px;}
.yeb{bottom:1056.468000px;}
.y60{bottom:1059.627000px;}
.y26{bottom:1064.929500px;}
.y148{bottom:1065.466500px;}
.yea{bottom:1066.929000px;}
.y147{bottom:1070.124000px;}
.y5f{bottom:1070.851500px;}
.ya1{bottom:1073.136000px;}
.ye9{bottom:1077.390000px;}
.y145{bottom:1081.465500px;}
.yd5{bottom:1081.873500px;}
.y25{bottom:1089.582000px;}
.y146{bottom:1089.973500px;}
.y2{bottom:1090.027500px;}
.y174{bottom:1090.791000px;}
.y12d{bottom:1095.504000px;}
.y9f{bottom:1101.063000px;}
.y24{bottom:1115.445000px;}
.ya0{bottom:1119.312000px;}
.y144{bottom:1121.346000px;}
.y9e{bottom:1123.357500px;}
.y1{bottom:1135.345500px;}
.y23{bottom:1140.097500px;}
.yd4{bottom:1146.036000px;}
.y22{bottom:1199.275500px;}
.hd{height:2.391024px;}
.h2f{height:15.128774px;}
.h3c{height:19.116365px;}
.h3e{height:29.938950px;}
.h4{height:35.865450px;}
.h1a{height:41.117146px;}
.h4c{height:41.629126px;}
.h8{height:41.842920px;}
.hb{height:42.799330px;}
.h9{height:44.831700px;}
.h50{height:45.425492px;}
.h6{height:45.818220px;}
.h51{height:46.865494px;}
.hc{height:49.090950px;}
.h7{height:51.646118px;}
.h20{height:51.817733px;}
.h23{height:51.823733px;}
.h25{height:55.745981px;}
.h5{height:56.552774px;}
.h4e{height:58.413450px;}
.he{height:59.613450px;}
.hf{height:59.619450px;}
.ha{height:60.254040px;}
.h19{height:61.635450px;}
.h14{height:62.889450px;}
.h11{height:62.895450px;}
.h34{height:63.381450px;}
.h39{height:63.387450px;}
.h2d{height:66.027450px;}
.h24{height:72.256118px;}
.h22{height:72.262118px;}
.h21{height:72.433733px;}
.h13{height:72.728774px;}
.h15{height:72.734774px;}
.h18{height:73.042950px;}
.h10{height:73.976774px;}
.h16{height:75.335146px;}
.h27{height:75.801450px;}
.h3a{height:76.245450px;}
.h40{height:77.037450px;}
.h12{height:79.071450px;}
.h1f{height:82.185450px;}
.h3{height:82.888118px;}
.h1c{height:84.207450px;}
.h3b{height:84.777450px;}
.h1b{height:85.587450px;}
.h2c{height:86.343024px;}
.h2{height:86.782500px;}
.h43{height:88.737024px;}
.h41{height:91.185024px;}
.h1d{height:93.370950px;}
.h17{height:99.287146px;}
.h44{height:99.717450px;}
.h29{height:100.832774px;}
.h35{height:100.838774px;}
.h1e{height:101.450774px;}
.h4a{height:103.275450px;}
.h47{height:103.281450px;}
.h4b{height:104.277024px;}
.h48{height:107.445024px;}
.h2e{height:107.787450px;}
.h30{height:107.793450px;}
.h4d{height:111.075450px;}
.h2a{height:115.059024px;}
.h42{height:115.197024px;}
.h2b{height:117.014774px;}
.h4f{height:117.818774px;}
.h37{height:121.058774px;}
.h33{height:121.064774px;}
.h45{height:123.207024px;}
.h3d{height:126.753024px;}
.h36{height:132.993024px;}
.h32{height:132.999024px;}
.h3f{height:145.587024px;}
.h38{height:145.730774px;}
.h31{height:145.736774px;}
.h26{height:148.797450px;}
.h28{height:155.205450px;}
.h46{height:161.127024px;}
.h49{height:161.133024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:106.299000px;}
.xb0{left:109.026000px;}
.x4{left:111.384000px;}
.x4e{left:113.458500px;}
.xff{left:114.481500px;}
.xe8{left:116.760000px;}
.xe9{left:119.032500px;}
.x2e{left:120.759000px;}
.xe7{left:121.759500px;}
.xea{left:124.828500px;}
.x76{left:126.384000px;}
.x1{left:127.620000px;}
.x2f{left:129.759000px;}
.x12{left:131.704500px;}
.x60{left:135.262500px;}
.xb6{left:137.386500px;}
.x101{left:138.882000px;}
.x100{left:139.935000px;}
.x30{left:142.954500px;}
.xb{left:147.208500px;}
.x5f{left:148.986000px;}
.xcc{left:151.756500px;}
.x3d{left:155.460000px;}
.x4f{left:158.692500px;}
.x31{left:159.972000px;}
.x71{left:161.962500px;}
.x8f{left:163.933500px;}
.x4a{left:166.189500px;}
.x52{left:168.052500px;}
.xa{left:169.624500px;}
.x3e{left:170.683500px;}
.x8c{left:175.035000px;}
.x3f{left:177.174000px;}
.x8a{left:180.049500px;}
.x40{left:183.084000px;}
.xb7{left:184.333500px;}
.x67{left:188.082000px;}
.xc1{left:189.801000px;}
.x2{left:191.349000px;}
.xd0{left:194.412000px;}
.x8d{left:195.636000px;}
.xfb{left:205.107000px;}
.x41{left:208.581000px;}
.xbc{left:213.780000px;}
.xd1{left:217.624500px;}
.x42{left:218.787000px;}
.xf3{left:220.492500px;}
.x86{left:222.744000px;}
.x99{left:224.776500px;}
.x7b{left:226.953000px;}
.xfe{left:228.685500px;}
.xdf{left:233.950500px;}
.xfc{left:238.801500px;}
.xf4{left:240.760500px;}
.x8b{left:242.526000px;}
.x43{left:244.035000px;}
.xa7{left:245.523000px;}
.x8e{left:247.845000px;}
.x44{left:251.307000px;}
.x92{left:252.403500px;}
.xe0{left:253.752000px;}
.xd2{left:257.677500px;}
.x45{left:259.399500px;}
.x68{left:262.141500px;}
.x87{left:264.481500px;}
.x46{left:266.671500px;}
.x61{left:269.241000px;}
.x69{left:272.080500px;}
.xc{left:275.052000px;}
.x5b{left:276.156000px;}
.x11{left:279.873000px;}
.x47{left:282.036000px;}
.x5{left:285.529500px;}
.x48{left:290.128500px;}
.x9f{left:291.415500px;}
.x62{left:292.594500px;}
.xcf{left:294.708000px;}
.xd{left:296.415000px;}
.x6a{left:298.548000px;}
.x93{left:300.336000px;}
.xc2{left:305.224500px;}
.x39{left:306.288000px;}
.x9a{left:308.835000px;}
.xf5{left:310.897500px;}
.x49{left:312.765000px;}
.x7c{left:316.849500px;}
.x32{left:319.650000px;}
.x7{left:321.684000px;}
.xe{left:324.498000px;}
.xa8{left:326.296500px;}
.xb8{left:331.348500px;}
.x9b{left:333.097500px;}
.x33{left:336.669000px;}
.x8{left:342.555000px;}
.x34{left:343.690500px;}
.x14{left:344.817000px;}
.x88{left:345.885000px;}
.xa0{left:349.057500px;}
.xf{left:351.817500px;}
.x15{left:352.999500px;}
.x6b{left:355.921500px;}
.x55{left:359.337000px;}
.x7d{left:361.797000px;}
.x16{left:363.001500px;}
.x50{left:364.057500px;}
.x6c{left:365.859000px;}
.x53{left:367.519500px;}
.x17{left:371.182500px;}
.xd4{left:373.177500px;}
.x5c{left:376.362000px;}
.x18{left:381.184500px;}
.x63{left:384.618000px;}
.xa9{left:387.871500px;}
.x19{left:389.367000px;}
.x3{left:391.161000px;}
.xd5{left:392.611500px;}
.x74{left:394.270500px;}
.x6{left:396.076500px;}
.xcb{left:397.782000px;}
.x1a{left:399.369000px;}
.x57{left:400.965000px;}
.xd6{left:401.979000px;}
.xa1{left:403.326000px;}
.x73{left:404.334000px;}
.xf6{left:406.180500px;}
.x1b{left:407.550000px;}
.x9{left:413.812500px;}
.xc9{left:415.539000px;}
.x1c{left:417.552000px;}
.xc3{left:418.987500px;}
.x58{left:421.140000px;}
.x13{left:423.957000px;}
.x94{left:426.433500px;}
.x59{left:427.632000px;}
.x1d{left:433.915500px;}
.xb4{left:435.139500px;}
.x5a{left:436.984500px;}
.xb9{left:438.447000px;}
.xa4{left:440.436000px;}
.x1e{left:443.917500px;}
.x95{left:446.185500px;}
.x64{left:448.281000px;}
.x6d{left:449.700000px;}
.x3a{left:451.285500px;}
.x3b{left:454.285500px;}
.xf7{left:458.143500px;}
.x1f{left:460.281000px;}
.x65{left:461.394000px;}
.xa3{left:463.849500px;}
.xb1{left:465.936000px;}
.xba{left:469.090500px;}
.x20{left:470.283000px;}
.xfa{left:472.252500px;}
.xd7{left:473.895000px;}
.x9c{left:475.167000px;}
.x5d{left:476.566500px;}
.xf8{left:478.203000px;}
.x3c{left:481.599000px;}
.x6e{left:482.992500px;}
.x66{left:484.749000px;}
.x21{left:486.646500px;}
.xcd{left:491.475000px;}
.x22{left:496.648500px;}
.xa5{left:503.259000px;}
.xd3{left:504.763500px;}
.xd8{left:508.687500px;}
.x23{left:513.012000px;}
.xed{left:514.065000px;}
.xf9{left:517.072500px;}
.x96{left:518.631000px;}
.xe4{left:520.258500px;}
.x24{left:523.014000px;}
.x84{left:524.935500px;}
.xaa{left:526.818000px;}
.xce{left:529.393500px;}
.xe5{left:532.434000px;}
.xc4{left:534.412500px;}
.x25{left:539.379000px;}
.x6f{left:543.480000px;}
.xbb{left:544.557000px;}
.xef{left:546.139500px;}
.x26{left:549.381000px;}
.x77{left:551.104500px;}
.x70{left:553.417500px;}
.x56{left:558.802500px;}
.xf0{left:560.584500px;}
.x51{left:562.264500px;}
.xe6{left:563.998500px;}
.x27{left:565.744500px;}
.x54{left:566.985000px;}
.xee{left:568.354500px;}
.xca{left:570.712500px;}
.xb2{left:573.034500px;}
.x28{left:575.746500px;}
.x5e{left:576.771000px;}
.x97{left:577.978500px;}
.xa6{left:582.312000px;}
.xbd{left:584.731500px;}
.x98{left:590.676000px;}
.x29{left:592.110000px;}
.x78{left:596.052000px;}
.x2a{left:602.112000px;}
.xae{left:603.492000px;}
.xdb{left:611.407500px;}
.xf1{left:614.770500px;}
.x9e{left:616.186500px;}
.x2b{left:618.475500px;}
.xdc{left:619.924500px;}
.x75{left:625.590000px;}
.x35{left:628.588500px;}
.x2c{left:631.741500px;}
.xa2{left:634.893000px;}
.x90{left:636.595500px;}
.xaf{left:639.372000px;}
.x36{left:642.562500px;}
.xf2{left:645.463500px;}
.xab{left:646.474500px;}
.xc5{left:648.175500px;}
.xeb{left:649.480500px;}
.x9d{left:652.843500px;}
.x2d{left:654.687000px;}
.x37{left:659.580000px;}
.xfd{left:666.556500px;}
.x91{left:668.970000px;}
.x79{left:676.011000px;}
.xb3{left:679.146000px;}
.xd9{left:684.549000px;}
.x85{left:687.742500px;}
.xac{left:688.996500px;}
.xbe{left:690.841500px;}
.x7e{left:692.361000px;}
.xbf{left:697.734000px;}
.x7f{left:698.737500px;}
.xe1{left:701.904000px;}
.x80{left:706.650000px;}
.xda{left:710.929500px;}
.xad{left:715.825500px;}
.xb5{left:719.898000px;}
.x7a{left:720.958500px;}
.xe2{left:722.500500px;}
.x38{left:726.955500px;}
.xdd{left:728.932500px;}
.x4b{left:738.157500px;}
.x102{left:739.365000px;}
.x4c{left:745.315500px;}
.xc7{left:747.369000px;}
.xec{left:749.104500px;}
.x81{left:750.379500px;}
.xc8{left:759.438000px;}
.x4d{left:760.777500px;}
.xc6{left:763.600500px;}
.x72{left:767.619000px;}
.x89{left:769.267500px;}
.xe3{left:770.986500px;}
.x82{left:774.240000px;}
.x83{left:782.152500px;}
.xde{left:784.434000px;}
.xc0{left:813.159000px;}
@media print{
.v22{vertical-align:-76.181333pt;}
.v2f{vertical-align:-54.266667pt;}
.v2e{vertical-align:-45.541333pt;}
.v2b{vertical-align:-31.882667pt;}
.v2{vertical-align:-23.136000pt;}
.v29{vertical-align:-17.024000pt;}
.v36{vertical-align:-15.936000pt;}
.v4{vertical-align:-9.008000pt;}
.v3{vertical-align:-7.968000pt;}
.va{vertical-align:-6.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2c{vertical-align:1.397333pt;}
.v19{vertical-align:6.010667pt;}
.vd{vertical-align:8.725333pt;}
.v18{vertical-align:10.352000pt;}
.vb{vertical-align:12.101333pt;}
.v8{vertical-align:14.378667pt;}
.v6{vertical-align:15.488000pt;}
.v27{vertical-align:16.666667pt;}
.v16{vertical-align:18.325333pt;}
.v12{vertical-align:20.064000pt;}
.v5{vertical-align:21.109333pt;}
.v10{vertical-align:22.906667pt;}
.v7{vertical-align:24.026667pt;}
.v1d{vertical-align:26.810667pt;}
.v1{vertical-align:27.770667pt;}
.v9{vertical-align:30.410667pt;}
.v1c{vertical-align:35.498667pt;}
.v2d{vertical-align:36.597333pt;}
.v17{vertical-align:37.605333pt;}
.v14{vertical-align:39.360000pt;}
.v15{vertical-align:41.173333pt;}
.v13{vertical-align:42.970667pt;}
.v11{vertical-align:44.197333pt;}
.ve{vertical-align:45.221333pt;}
.v33{vertical-align:47.146667pt;}
.vc{vertical-align:51.701333pt;}
.v21{vertical-align:53.744000pt;}
.v31{vertical-align:56.757333pt;}
.v1e{vertical-align:60.474667pt;}
.v3a{vertical-align:62.741333pt;}
.v1f{vertical-align:63.930667pt;}
.v37{vertical-align:64.917333pt;}
.vf{vertical-align:66.704000pt;}
.v34{vertical-align:71.173333pt;}
.v30{vertical-align:73.584000pt;}
.v20{vertical-align:74.624000pt;}
.v25{vertical-align:76.181333pt;}
.v39{vertical-align:77.445333pt;}
.v1a{vertical-align:79.269333pt;}
.v23{vertical-align:84.912000pt;}
.v38{vertical-align:88.944000pt;}
.v26{vertical-align:90.565333pt;}
.v24{vertical-align:94.165333pt;}
.v1b{vertical-align:100.384000pt;}
.v32{vertical-align:107.392000pt;}
.v28{vertical-align:110.544000pt;}
.v3b{vertical-align:125.162667pt;}
.v2a{vertical-align:127.285333pt;}
.v35{vertical-align:141.098667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000267pt;}
.lsf1{letter-spacing:0.000926pt;}
.ls5f{letter-spacing:0.000933pt;}
.ls8f{letter-spacing:0.000942pt;}
.ls37{letter-spacing:0.001414pt;}
.lsd4{letter-spacing:0.001420pt;}
.ls1{letter-spacing:0.001421pt;}
.lsa3{letter-spacing:0.001788pt;}
.ls33{letter-spacing:0.001852pt;}
.ls7c{letter-spacing:0.001962pt;}
.ls26{letter-spacing:0.002296pt;}
.ls60{letter-spacing:0.002387pt;}
.lse{letter-spacing:0.002397pt;}
.ls1c{letter-spacing:0.002399pt;}
.ls9c{letter-spacing:0.002405pt;}
.lscd{letter-spacing:0.002482pt;}
.lsb1{letter-spacing:0.002827pt;}
.lsb6{letter-spacing:0.003339pt;}
.lsdb{letter-spacing:0.003521pt;}
.ls8a{letter-spacing:0.003839pt;}
.ls95{letter-spacing:0.003861pt;}
.lse8{letter-spacing:0.004020pt;}
.ls2b{letter-spacing:0.004025pt;}
.ls32{letter-spacing:0.004469pt;}
.ls17{letter-spacing:0.006078pt;}
.lsd7{letter-spacing:0.006710pt;}
.lscf{letter-spacing:0.008651pt;}
.lsdc{letter-spacing:0.011051pt;}
.lsef{letter-spacing:0.011874pt;}
.ls4{letter-spacing:0.012524pt;}
.ls2f{letter-spacing:0.018253pt;}
.ls8d{letter-spacing:0.022199pt;}
.lsf3{letter-spacing:0.024594pt;}
.lsf8{letter-spacing:0.024703pt;}
.ls43{letter-spacing:0.027522pt;}
.ls88{letter-spacing:0.027533pt;}
.lsdf{letter-spacing:0.290909pt;}
.lsc7{letter-spacing:0.603106pt;}
.lsc9{letter-spacing:0.636959pt;}
.ls19{letter-spacing:1.105187pt;}
.ls47{letter-spacing:1.147694pt;}
.lsf5{letter-spacing:1.835587pt;}
.ls27{letter-spacing:1.849071pt;}
.lsf6{letter-spacing:1.855382pt;}
.ls7d{letter-spacing:2.419248pt;}
.ls7b{letter-spacing:2.421353pt;}
.ls7a{letter-spacing:2.424103pt;}
.ls65{letter-spacing:2.424581pt;}
.ls63{letter-spacing:2.444158pt;}
.ls78{letter-spacing:2.444306pt;}
.ls6b{letter-spacing:2.444316pt;}
.ls72{letter-spacing:2.444600pt;}
.ls84{letter-spacing:2.446384pt;}
.ls81{letter-spacing:2.450960pt;}
.ls67{letter-spacing:2.452560pt;}
.ls6f{letter-spacing:2.454160pt;}
.ls75{letter-spacing:2.455760pt;}
.ls7f{letter-spacing:2.456293pt;}
.ls6a{letter-spacing:2.457893pt;}
.ls6c{letter-spacing:2.459493pt;}
.ls74{letter-spacing:2.461093pt;}
.ls7e{letter-spacing:2.461627pt;}
.ls12{letter-spacing:2.465418pt;}
.ls83{letter-spacing:2.466056pt;}
.ls82{letter-spacing:2.467748pt;}
.ls6e{letter-spacing:2.469790pt;}
.ls80{letter-spacing:2.472887pt;}
.ls86{letter-spacing:2.635888pt;}
.ls31{letter-spacing:2.637138pt;}
.ls8c{letter-spacing:2.641222pt;}
.ls2c{letter-spacing:2.649701pt;}
.ls5d{letter-spacing:2.650471pt;}
.ls0{letter-spacing:2.653258pt;}
.lsa6{letter-spacing:2.654275pt;}
.lsbc{letter-spacing:2.654404pt;}
.ls28{letter-spacing:2.655034pt;}
.ls9b{letter-spacing:2.656444pt;}
.ls62{letter-spacing:2.656631pt;}
.ls87{letter-spacing:2.657146pt;}
.ls5b{letter-spacing:2.658591pt;}
.ls94{letter-spacing:2.659608pt;}
.lsb8{letter-spacing:2.659737pt;}
.ls79{letter-spacing:2.661964pt;}
.ls8e{letter-spacing:2.662479pt;}
.ls1a{letter-spacing:2.665017pt;}
.ls52{letter-spacing:2.672383pt;}
.ls20{letter-spacing:2.673433pt;}
.ls51{letter-spacing:2.673614pt;}
.ls4b{letter-spacing:2.675600pt;}
.ls4a{letter-spacing:2.676366pt;}
.ls21{letter-spacing:2.678767pt;}
.ls4f{letter-spacing:2.684003pt;}
.ls53{letter-spacing:2.686936pt;}
.ls4d{letter-spacing:2.689336pt;}
.ls58{letter-spacing:2.689870pt;}
.ls55{letter-spacing:2.692270pt;}
.ls5e{letter-spacing:2.706144pt;}
.ls89{letter-spacing:3.783608pt;}
.ls92{letter-spacing:3.788942pt;}
.ls46{letter-spacing:3.791684pt;}
.ls11{letter-spacing:4.548270pt;}
.ls3a{letter-spacing:5.102581pt;}
.ls1f{letter-spacing:5.105323pt;}
.ls30{letter-spacing:5.110656pt;}
.lsc8{letter-spacing:5.789258pt;}
.lsc6{letter-spacing:5.794591pt;}
.ls9{letter-spacing:6.283642pt;}
.lsa9{letter-spacing:6.327673pt;}
.lsa0{letter-spacing:6.337421pt;}
.ls6{letter-spacing:6.341823pt;}
.ls90{letter-spacing:6.342755pt;}
.ls3b{letter-spacing:6.345044pt;}
.ls3e{letter-spacing:6.350378pt;}
.ls96{letter-spacing:6.353858pt;}
.ls5a{letter-spacing:6.370591pt;}
.ls71{letter-spacing:6.373964pt;}
.ls59{letter-spacing:6.375216pt;}
.ls56{letter-spacing:6.375739pt;}
.ls57{letter-spacing:6.375925pt;}
.ls70{letter-spacing:6.376239pt;}
.ls77{letter-spacing:6.376718pt;}
.ls76{letter-spacing:6.379297pt;}
.lsad{letter-spacing:6.384899pt;}
.ls9e{letter-spacing:6.385377pt;}
.ls38{letter-spacing:6.386836pt;}
.ls9a{letter-spacing:6.390232pt;}
.ls18{letter-spacing:7.188345pt;}
.lsc4{letter-spacing:9.658190pt;}
.lsbd{letter-spacing:9.693494pt;}
.lsdd{letter-spacing:9.696462pt;}
.lsd3{letter-spacing:9.698482pt;}
.lsb9{letter-spacing:9.698827pt;}
.lsd9{letter-spacing:9.699521pt;}
.lsa7{letter-spacing:9.708044pt;}
.ls16{letter-spacing:9.716372pt;}
.lsa4{letter-spacing:10.976444pt;}
.lsae{letter-spacing:10.981777pt;}
.lsde{letter-spacing:11.520010pt;}
.ls13{letter-spacing:11.694555pt;}
.lsda{letter-spacing:11.793323pt;}
.ls69{letter-spacing:11.795718pt;}
.lse3{letter-spacing:12.349258pt;}
.lsd8{letter-spacing:12.354591pt;}
.ls3{letter-spacing:12.916374pt;}
.lsbb{letter-spacing:12.927477pt;}
.lsa5{letter-spacing:12.929788pt;}
.lsbf{letter-spacing:12.932811pt;}
.lse0{letter-spacing:12.974556pt;}
.lsd2{letter-spacing:14.209608pt;}
.ls6d{letter-spacing:14.239876pt;}
.ls66{letter-spacing:14.464631pt;}
.ls68{letter-spacing:14.469964pt;}
.ls64{letter-spacing:14.771215pt;}
.lsf0{letter-spacing:14.801323pt;}
.lsbe{letter-spacing:15.563888pt;}
.lsba{letter-spacing:15.569222pt;}
.ls4c{letter-spacing:15.581258pt;}
.lsb7{letter-spacing:15.582404pt;}
.ls2{letter-spacing:15.583321pt;}
.ls5{letter-spacing:15.584444pt;}
.ls4e{letter-spacing:15.586591pt;}
.lsa1{letter-spacing:15.587608pt;}
.lsb3{letter-spacing:15.587737pt;}
.ls50{letter-spacing:15.592740pt;}
.ls8{letter-spacing:16.116377pt;}
.lsc1{letter-spacing:16.159477pt;}
.lsa8{letter-spacing:16.161788pt;}
.ls7{letter-spacing:16.174559pt;}
.lse2{letter-spacing:16.232741pt;}
.lsf2{letter-spacing:16.640014pt;}
.lsc3{letter-spacing:16.716942pt;}
.ls54{letter-spacing:17.661258pt;}
.ls5c{letter-spacing:17.666591pt;}
.lsf9{letter-spacing:18.094561pt;}
.ls73{letter-spacing:18.181812pt;}
.ls2e{letter-spacing:18.799880pt;}
.ls10{letter-spacing:18.813258pt;}
.ls85{letter-spacing:18.817146pt;}
.lsf{letter-spacing:18.818591pt;}
.lsd1{letter-spacing:18.820100pt;}
.ls41{letter-spacing:18.850925pt;}
.lse5{letter-spacing:19.200016pt;}
.ls48{letter-spacing:19.258198pt;}
.ls3d{letter-spacing:19.300811pt;}
.ls39{letter-spacing:19.306144pt;}
.lsb{letter-spacing:19.374562pt;}
.lsa{letter-spacing:19.432743pt;}
.ls15{letter-spacing:19.490925pt;}
.ls1e{letter-spacing:19.665471pt;}
.ls36{letter-spacing:21.270656pt;}
.lsfc{letter-spacing:21.585473pt;}
.ls8b{letter-spacing:22.033146pt;}
.lse7{letter-spacing:22.045258pt;}
.lscb{letter-spacing:22.050591pt;}
.ls40{letter-spacing:22.050927pt;}
.lscc{letter-spacing:22.052100pt;}
.ls42{letter-spacing:22.520653pt;}
.ls49{letter-spacing:23.183684pt;}
.lsd5{letter-spacing:23.614824pt;}
.lsd{letter-spacing:23.738202pt;}
.lsaa{letter-spacing:23.909777pt;}
.ls14{letter-spacing:24.454656pt;}
.ls1d{letter-spacing:24.552748pt;}
.ls22{letter-spacing:25.153146pt;}
.lsc5{letter-spacing:25.774567pt;}
.lsc2{letter-spacing:26.573067pt;}
.lsab{letter-spacing:26.578400pt;}
.ls24{letter-spacing:29.623925pt;}
.ls23{letter-spacing:29.629258pt;}
.lsd6{letter-spacing:31.299603pt;}
.ls25{letter-spacing:34.103925pt;}
.ls91{letter-spacing:34.289146pt;}
.lsa2{letter-spacing:36.274400pt;}
.lsb4{letter-spacing:39.506400pt;}
.lsb5{letter-spacing:40.141067pt;}
.lsb2{letter-spacing:40.146400pt;}
.lsc0{letter-spacing:54.599608pt;}
.lsaf{letter-spacing:68.688444pt;}
.lsca{letter-spacing:71.731200pt;}
.ls44{letter-spacing:72.075608pt;}
.lsf4{letter-spacing:72.634144pt;}
.lse6{letter-spacing:76.800064pt;}
.lseb{letter-spacing:77.039975pt;}
.lsec{letter-spacing:77.045308pt;}
.ls98{letter-spacing:81.616444pt;}
.lsac{letter-spacing:81.621777pt;}
.lsed{letter-spacing:91.589308pt;}
.ls35{letter-spacing:91.627139pt;}
.ls2d{letter-spacing:92.069806pt;}
.lsd0{letter-spacing:103.574656pt;}
.ls93{letter-spacing:104.436451pt;}
.ls34{letter-spacing:104.555139pt;}
.ls2a{letter-spacing:104.997806pt;}
.ls29{letter-spacing:105.003139pt;}
.lsee{letter-spacing:106.133308pt;}
.ls3f{letter-spacing:112.970175pt;}
.ls3c{letter-spacing:113.407508pt;}
.lsce{letter-spacing:116.507989pt;}
.ls97{letter-spacing:125.099578pt;}
.lsb0{letter-spacing:129.643110pt;}
.ls9f{letter-spacing:136.880912pt;}
.ls99{letter-spacing:145.298400pt;}
.ls9d{letter-spacing:258.354400pt;}
.lsea{letter-spacing:273.650591pt;}
.lse9{letter-spacing:273.655925pt;}
.lsfa{letter-spacing:379.389258pt;}
.lsfb{letter-spacing:393.933258pt;}
.lsf7{letter-spacing:406.465227pt;}
.ls1b{letter-spacing:643.549627pt;}
.lse1{letter-spacing:667.986011pt;}
.lse4{letter-spacing:725.120604pt;}
.ls45{letter-spacing:992.117190pt;}
.ws62{word-spacing:-71.763081pt;}
.ws40{word-spacing:-58.181867pt;}
.ws4b{word-spacing:-53.133867pt;}
.ws27{word-spacing:-48.523677pt;}
.ws5f{word-spacing:-47.616040pt;}
.ws57{word-spacing:-42.066082pt;}
.ws10{word-spacing:-37.899668pt;}
.wsc{word-spacing:-34.611401pt;}
.ws3c{word-spacing:-32.337481pt;}
.ws91{word-spacing:-29.736752pt;}
.ws4{word-spacing:-29.090933pt;}
.ws2c{word-spacing:-28.241478pt;}
.ws13{word-spacing:-28.183296pt;}
.ws3b{word-spacing:-22.248746pt;}
.ws17{word-spacing:-21.783291pt;}
.ws16{word-spacing:-21.725109pt;}
.ws7c{word-spacing:-18.408743pt;}
.ws34{word-spacing:-16.162923pt;}
.ws1a{word-spacing:-15.767286pt;}
.ws24{word-spacing:-15.185467pt;}
.ws7{word-spacing:-14.505546pt;}
.ws69{word-spacing:-14.196375pt;}
.wsb0{word-spacing:-13.381829pt;}
.ws60{word-spacing:-12.276374pt;}
.wsaf{word-spacing:-12.224010pt;}
.ws7a{word-spacing:-12.160010pt;}
.ws61{word-spacing:-11.869101pt;}
.ws3a{word-spacing:-11.810919pt;}
.ws4c{word-spacing:-11.520010pt;}
.ws84{word-spacing:-11.345464pt;}
.ws19{word-spacing:-11.054555pt;}
.ws5e{word-spacing:-10.880009pt;}
.ws80{word-spacing:-10.356372pt;}
.wsd{word-spacing:-10.307970pt;}
.ws7e{word-spacing:-10.298190pt;}
.wsb{word-spacing:-10.254836pt;}
.ws1e{word-spacing:-10.181827pt;}
.ws89{word-spacing:-10.123645pt;}
.ws97{word-spacing:-10.065463pt;}
.ws1b{word-spacing:-10.007281pt;}
.ws9c{word-spacing:-9.954917pt;}
.ws29{word-spacing:-9.949099pt;}
.ws6c{word-spacing:-9.890917pt;}
.ws1c{word-spacing:-9.832735pt;}
.ws31{word-spacing:-9.774554pt;}
.ws3{word-spacing:-9.716372pt;}
.ws18{word-spacing:-9.658190pt;}
.ws21{word-spacing:-9.600008pt;}
.ws5d{word-spacing:-9.541826pt;}
.ws1d{word-spacing:-9.483644pt;}
.ws2f{word-spacing:-9.425462pt;}
.ws8a{word-spacing:-9.373099pt;}
.ws98{word-spacing:-9.367281pt;}
.ws96{word-spacing:-9.314917pt;}
.ws22{word-spacing:-9.309099pt;}
.wsa{word-spacing:-9.298427pt;}
.ws8f{word-spacing:-9.256735pt;}
.ws52{word-spacing:-9.250917pt;}
.ws5c{word-spacing:-9.192735pt;}
.ws8{word-spacing:-9.085891pt;}
.wsae{word-spacing:-9.024008pt;}
.ws81{word-spacing:-8.960007pt;}
.ws90{word-spacing:-8.907644pt;}
.ws83{word-spacing:-8.901826pt;}
.ws6{word-spacing:-8.873356pt;}
.ws94{word-spacing:-8.849462pt;}
.wsad{word-spacing:-8.791280pt;}
.ws8b{word-spacing:-8.674916pt;}
.ws9{word-spacing:-8.660820pt;}
.wsa5{word-spacing:-8.616734pt;}
.ws99{word-spacing:-8.558553pt;}
.ws8d{word-spacing:-8.436371pt;}
.ws20{word-spacing:-8.134795pt;}
.ws8e{word-spacing:-7.802188pt;}
.ws92{word-spacing:-7.563643pt;}
.wsb4{word-spacing:-7.447279pt;}
.ws67{word-spacing:-7.272733pt;}
.wsa7{word-spacing:-7.162188pt;}
.wsa6{word-spacing:-7.156370pt;}
.wsb3{word-spacing:-6.871278pt;}
.ws85{word-spacing:-6.749097pt;}
.wsb7{word-spacing:-6.464005pt;}
.wsa1{word-spacing:-6.231278pt;}
.wsb8{word-spacing:-5.992732pt;}
.wsba{word-spacing:-5.876369pt;}
.wsb9{word-spacing:-5.591277pt;}
.ws23{word-spacing:-5.585459pt;}
.ws56{word-spacing:-5.469095pt;}
.ws4d{word-spacing:-5.410914pt;}
.ws26{word-spacing:-5.352732pt;}
.wsbd{word-spacing:-5.009459pt;}
.ws7b{word-spacing:-4.712731pt;}
.wsbe{word-spacing:-4.596367pt;}
.ws2e{word-spacing:-4.538186pt;}
.ws2d{word-spacing:-4.480004pt;}
.wsa9{word-spacing:-4.421822pt;}
.wsbf{word-spacing:-4.311276pt;}
.wsac{word-spacing:-4.305458pt;}
.ws95{word-spacing:-4.253094pt;}
.ws4e{word-spacing:-4.247276pt;}
.wsa8{word-spacing:-4.136731pt;}
.wsaa{word-spacing:-4.020367pt;}
.wsc0{word-spacing:-3.490912pt;}
.ws2b{word-spacing:-3.362912pt;}
.wsb5{word-spacing:-3.316366pt;}
.wsc1{word-spacing:-3.264003pt;}
.ws35{word-spacing:-3.246548pt;}
.ws73{word-spacing:-3.188366pt;}
.wsb6{word-spacing:-3.089457pt;}
.ws41{word-spacing:-2.964870pt;}
.ws5b{word-spacing:-2.897457pt;}
.wsab{word-spacing:-2.850911pt;}
.wsb1{word-spacing:-2.792730pt;}
.wsb2{word-spacing:-2.624002pt;}
.ws33{word-spacing:-2.618184pt;}
.ws9e{word-spacing:-2.565820pt;}
.ws9a{word-spacing:-2.210911pt;}
.ws9b{word-spacing:-2.100365pt;}
.ws39{word-spacing:-2.036365pt;}
.ws9f{word-spacing:-0.814546pt;}
.ws4f{word-spacing:-0.395637pt;}
.ws93{word-spacing:-0.058182pt;}
.ws14{word-spacing:-0.046545pt;}
.ws28{word-spacing:-0.042507pt;}
.ws37{word-spacing:-0.031881pt;}
.ws1f{word-spacing:0.000000pt;}
.ws45{word-spacing:0.010627pt;}
.ws12{word-spacing:0.011636pt;}
.ws7d{word-spacing:0.069818pt;}
.ws6b{word-spacing:0.128000pt;}
.ws30{word-spacing:0.244364pt;}
.ws6a{word-spacing:0.302546pt;}
.wsbc{word-spacing:1.041455pt;}
.ws7f{word-spacing:2.571639pt;}
.ws6d{word-spacing:3.211639pt;}
.ws82{word-spacing:3.968003pt;}
.wsbb{word-spacing:4.014549pt;}
.wsa4{word-spacing:4.648731pt;}
.wsa3{word-spacing:5.120004pt;}
.ws64{word-spacing:9.632039pt;}
.ws66{word-spacing:9.637373pt;}
.ws2a{word-spacing:14.266706pt;}
.ws36{word-spacing:15.220376pt;}
.ws58{word-spacing:15.526715pt;}
.ws50{word-spacing:15.539742pt;}
.ws55{word-spacing:15.542380pt;}
.ws48{word-spacing:18.522466pt;}
.ws59{word-spacing:18.753381pt;}
.ws54{word-spacing:18.771742pt;}
.ws11{word-spacing:18.773701pt;}
.ws9d{word-spacing:18.909107pt;}
.wsa2{word-spacing:19.316380pt;}
.wsa0{word-spacing:19.374562pt;}
.ws8c{word-spacing:19.549107pt;}
.ws2{word-spacing:20.722347pt;}
.ws79{word-spacing:21.876382pt;}
.ws5{word-spacing:22.225473pt;}
.ws65{word-spacing:22.353473pt;}
.ws68{word-spacing:22.400019pt;}
.ws1{word-spacing:24.866747pt;}
.wse{word-spacing:25.832749pt;}
.ws25{word-spacing:28.615887pt;}
.ws32{word-spacing:29.940389pt;}
.ws15{word-spacing:29.998570pt;}
.ws88{word-spacing:34.676393pt;}
.ws0{word-spacing:41.214800pt;}
.ws72{word-spacing:45.265492pt;}
.ws74{word-spacing:45.323674pt;}
.ws78{word-spacing:47.476403pt;}
.ws76{word-spacing:50.327315pt;}
.ws51{word-spacing:56.150380pt;}
.ws53{word-spacing:56.155713pt;}
.ws47{word-spacing:58.213464pt;}
.ws5a{word-spacing:60.780048pt;}
.ws6e{word-spacing:63.069143pt;}
.ws63{word-spacing:71.699319pt;}
.ws43{word-spacing:72.984679pt;}
.ws75{word-spacing:74.414607pt;}
.wsf{word-spacing:86.000687pt;}
.ws86{word-spacing:98.501900pt;}
.ws4a{word-spacing:99.551613pt;}
.ws42{word-spacing:111.825536pt;}
.ws6f{word-spacing:118.435008pt;}
.ws46{word-spacing:153.110550pt;}
.ws3d{word-spacing:159.395042pt;}
.ws49{word-spacing:174.948569pt;}
.ws70{word-spacing:193.105615pt;}
.ws87{word-spacing:193.664161pt;}
.ws3e{word-spacing:201.751441pt;}
.ws71{word-spacing:204.567443pt;}
.ws44{word-spacing:206.456952pt;}
.ws3f{word-spacing:259.642398pt;}
.ws77{word-spacing:301.963888pt;}
.wsc2{word-spacing:374.673319pt;}
.ws38{word-spacing:403.790678pt;}
._1d{margin-left:-71.731200pt;}
._2b{margin-left:-32.307319pt;}
._1b{margin-left:-18.586351pt;}
._20{margin-left:-16.832685pt;}
._1{margin-left:-10.358800pt;}
._1c{margin-left:-9.372877pt;}
._8{margin-left:-6.514166pt;}
._5{margin-left:-5.228407pt;}
._2{margin-left:-3.416200pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.785310pt;}
._0{width:3.416200pt;}
._30{width:5.004855pt;}
._a{width:6.341823pt;}
._21{width:9.709503pt;}
._7{width:13.942362pt;}
._11{width:15.888564pt;}
._32{width:17.115275pt;}
._13{width:19.098224pt;}
._e{width:20.754775pt;}
._15{width:22.521540pt;}
._9{width:23.910240pt;}
._17{width:24.843657pt;}
._6{width:25.734713pt;}
._d{width:26.657867pt;}
._14{width:28.334569pt;}
._16{width:29.582702pt;}
._33{width:30.984621pt;}
._2c{width:35.397691pt;}
._31{width:37.392612pt;}
._f{width:38.651087pt;}
._10{width:39.740722pt;}
._1f{width:53.144849pt;}
._1e{width:62.422084pt;}
._c{width:67.740223pt;}
._2f{width:69.410967pt;}
._1a{width:75.926185pt;}
._2e{width:78.312793pt;}
._23{width:79.418248pt;}
._2d{width:83.956434pt;}
._12{width:86.077200pt;}
._2a{width:88.960074pt;}
._25{width:112.989185pt;}
._24{width:182.283788pt;}
._26{width:210.967449pt;}
._29{width:225.338370pt;}
._27{width:234.822014pt;}
._19{width:241.512929pt;}
._28{width:245.120204pt;}
._18{width:434.604484pt;}
._b{width:775.877242pt;}
._22{width:1248.641041pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y5d{bottom:88.433333pt;}
.y5b{bottom:88.740000pt;}
.y5a{bottom:93.756000pt;}
.y20{bottom:94.488000pt;}
.y5c{bottom:101.360000pt;}
.y12b{bottom:111.385333pt;}
.y59{bottom:111.497333pt;}
.y57{bottom:111.804000pt;}
.y1f{bottom:116.401333pt;}
.y56{bottom:116.820000pt;}
.y12c{bottom:121.680000pt;}
.y12a{bottom:122.129333pt;}
.y58{bottom:124.424000pt;}
.yd3{bottom:134.148000pt;}
.y55{bottom:134.561333pt;}
.yd2{bottom:134.620000pt;}
.y53{bottom:134.868000pt;}
.yd1{bottom:138.314667pt;}
.y1e{bottom:138.661333pt;}
.y52{bottom:139.884000pt;}
.y54{bottom:147.488000pt;}
.y9d{bottom:152.716000pt;}
.y51{bottom:157.625333pt;}
.y4f{bottom:157.932000pt;}
.y143{bottom:160.229333pt;}
.y1d{bottom:160.574667pt;}
.y4e{bottom:162.948000pt;}
.y50{bottom:170.552000pt;}
.y129{bottom:170.702667pt;}
.y193{bottom:171.065333pt;}
.y5e{bottom:175.801333pt;}
.y173{bottom:176.493333pt;}
.yd0{bottom:177.953333pt;}
.y4d{bottom:180.689333pt;}
.y161{bottom:181.466667pt;}
.y1c{bottom:182.488000pt;}
.y4c{bottom:186.012000pt;}
.y128{bottom:192.616000pt;}
.y192{bottom:192.978667pt;}
.y172{bottom:198.406667pt;}
.y160{bottom:199.532000pt;}
.y9c{bottom:203.373333pt;}
.y4b{bottom:203.753333pt;}
.y1b{bottom:204.401333pt;}
.y142{bottom:207.076000pt;}
.y4a{bottom:209.076000pt;}
.y127{bottom:214.529333pt;}
.ycf{bottom:217.590667pt;}
.y15f{bottom:217.598667pt;}
.y9b{bottom:225.286667pt;}
.y191{bottom:225.729333pt;}
.y1a{bottom:226.316000pt;}
.y49{bottom:226.817333pt;}
.y48{bottom:232.140000pt;}
.y15e{bottom:235.664000pt;}
.y171{bottom:236.584000pt;}
.yce{bottom:239.504000pt;}
.y9a{bottom:247.200000pt;}
.y190{bottom:247.644000pt;}
.y19{bottom:248.229333pt;}
.y47{bottom:249.881333pt;}
.y15d{bottom:253.729333pt;}
.y46{bottom:255.204000pt;}
.y170{bottom:258.497333pt;}
.y126{bottom:260.182667pt;}
.ycd{bottom:261.417333pt;}
.y18f{bottom:269.557333pt;}
.y18{bottom:270.142667pt;}
.y15c{bottom:271.794667pt;}
.y16f{bottom:280.410667pt;}
.y16e{bottom:280.412000pt;}
.y125{bottom:282.096000pt;}
.y81{bottom:282.846667pt;}
.ycc{bottom:285.745333pt;}
.y15b{bottom:289.860000pt;}
.y98{bottom:290.206667pt;}
.y97{bottom:294.192000pt;}
.y45{bottom:294.382667pt;}
.y96{bottom:298.177333pt;}
.yca{bottom:300.309333pt;}
.y80{bottom:300.888000pt;}
.y95{bottom:302.161333pt;}
.y18e{bottom:302.308000pt;}
.y17{bottom:302.529333pt;}
.y7f{bottom:304.760000pt;}
.y94{bottom:306.146667pt;}
.ycb{bottom:306.690667pt;}
.y123{bottom:307.312000pt;}
.y15a{bottom:307.925333pt;}
.y93{bottom:310.132000pt;}
.yc9{bottom:310.286667pt;}
.y120{bottom:311.754667pt;}
.y92{bottom:314.117333pt;}
.y44{bottom:316.296000pt;}
.y91{bottom:318.102667pt;}
.y16d{bottom:318.589333pt;}
.y124{bottom:319.946667pt;}
.y90{bottom:322.088000pt;}
.y11f{bottom:323.542667pt;}
.y18d{bottom:324.221333pt;}
.y16{bottom:324.442667pt;}
.y159{bottom:325.992000pt;}
.y8f{bottom:326.072000pt;}
.y7e{bottom:326.673333pt;}
.y8e{bottom:330.057333pt;}
.y122{bottom:336.477333pt;}
.yc7{bottom:338.181333pt;}
.y99{bottom:338.376000pt;}
.y43{bottom:339.285333pt;}
.y121{bottom:340.462667pt;}
.y16c{bottom:340.502667pt;}
.y158{bottom:344.057333pt;}
.yc8{bottom:344.562667pt;}
.y7d{bottom:344.714667pt;}
.y18c{bottom:346.134667pt;}
.yc6{bottom:348.158667pt;}
.y7c{bottom:348.586667pt;}
.y8d{bottom:353.968000pt;}
.y11c{bottom:357.760000pt;}
.y8c{bottom:357.953333pt;}
.y42{bottom:361.198667pt;}
.y8b{bottom:361.938667pt;}
.y157{bottom:362.122667pt;}
.y119{bottom:362.202667pt;}
.y16b{bottom:362.416000pt;}
.y15{bottom:364.080000pt;}
.y8a{bottom:365.924000pt;}
.y11e{bottom:369.689333pt;}
.y89{bottom:369.909333pt;}
.y11d{bottom:370.393333pt;}
.y7b{bottom:370.500000pt;}
.y88{bottom:373.893333pt;}
.y118{bottom:373.989333pt;}
.yc4{bottom:376.053333pt;}
.y87{bottom:377.878667pt;}
.y18b{bottom:378.885333pt;}
.y156{bottom:380.188000pt;}
.y86{bottom:381.864000pt;}
.yc5{bottom:382.434667pt;}
.y41{bottom:383.112000pt;}
.y85{bottom:385.849333pt;}
.yc3{bottom:386.030667pt;}
.y11b{bottom:386.924000pt;}
.y84{bottom:389.834667pt;}
.y11a{bottom:390.909333pt;}
.y7a{bottom:392.414667pt;}
.y83{bottom:393.818667pt;}
.y155{bottom:398.785333pt;}
.y16a{bottom:400.593333pt;}
.y18a{bottom:400.798667pt;}
.y14{bottom:403.718667pt;}
.y82{bottom:405.774667pt;}
.y116{bottom:408.208000pt;}
.y113{bottom:412.650667pt;}
.yc1{bottom:413.925333pt;}
.y40{bottom:415.162667pt;}
.y3f{bottom:418.758667pt;}
.yc0{bottom:419.408000pt;}
.yc2{bottom:420.306667pt;}
.y117{bottom:420.841333pt;}
.y169{bottom:422.508000pt;}
.y189{bottom:422.712000pt;}
.ybf{bottom:423.902667pt;}
.y112{bottom:424.437333pt;}
.y154{bottom:430.665333pt;}
.y13{bottom:436.105333pt;}
.y115{bottom:437.372000pt;}
.y3e{bottom:441.061333pt;}
.y114{bottom:441.357333pt;}
.y3d{bottom:444.657333pt;}
.y79{bottom:448.720000pt;}
.ybc{bottom:451.797333pt;}
.y111{bottom:454.104000pt;}
.y188{bottom:455.462667pt;}
.ybe{bottom:457.280000pt;}
.ybd{bottom:458.178667pt;}
.y168{bottom:460.914667pt;}
.ybb{bottom:461.774667pt;}
.y78{bottom:470.633333pt;}
.y141{bottom:473.749333pt;}
.y110{bottom:476.017333pt;}
.y187{bottom:477.376000pt;}
.y3c{bottom:479.049333pt;}
.y12{bottom:480.278667pt;}
.yb8{bottom:489.669333pt;}
.yb9{bottom:495.152000pt;}
.yba{bottom:496.052000pt;}
.y186{bottom:499.289333pt;}
.yb7{bottom:499.646667pt;}
.y76{bottom:499.688000pt;}
.y140{bottom:505.629333pt;}
.y10b{bottom:508.514667pt;}
.y3b{bottom:511.100000pt;}
.y3a{bottom:514.696000pt;}
.y10e{bottom:515.268000pt;}
.y11{bottom:517.264000pt;}
.y167{bottom:517.986667pt;}
.y75{bottom:519.024000pt;}
.y10c{bottom:520.604000pt;}
.y10f{bottom:521.148000pt;}
.y13f{bottom:523.694667pt;}
.y105{bottom:524.744000pt;}
.yb5{bottom:527.541333pt;}
.y108{bottom:529.000000pt;}
.y185{bottom:532.040000pt;}
.yb4{bottom:533.024000pt;}
.yb6{bottom:533.924000pt;}
.y10d{bottom:536.129333pt;}
.y107{bottom:536.970667pt;}
.y39{bottom:536.998667pt;}
.yb3{bottom:537.520000pt;}
.y10a{bottom:537.678667pt;}
.y74{bottom:538.358667pt;}
.y166{bottom:539.900000pt;}
.y38{bottom:540.593333pt;}
.y109{bottom:541.664000pt;}
.y13e{bottom:541.760000pt;}
.y106{bottom:544.941333pt;}
.y184{bottom:553.953333pt;}
.y73{bottom:557.694667pt;}
.y13d{bottom:559.825333pt;}
.y165{bottom:561.813333pt;}
.yb0{bottom:565.413333pt;}
.y77{bottom:567.908000pt;}
.yb2{bottom:570.896000pt;}
.yb1{bottom:571.796000pt;}
.y10{bottom:573.068000pt;}
.y37{bottom:574.985333pt;}
.y104{bottom:575.322667pt;}
.y183{bottom:575.868000pt;}
.y72{bottom:577.029333pt;}
.y13c{bottom:577.892000pt;}
.y36{bottom:578.857333pt;}
.y1a2{bottom:581.114667pt;}
.y164{bottom:583.726667pt;}
.y71{bottom:591.785333pt;}
.yaf{bottom:594.437333pt;}
.y13b{bottom:595.957333pt;}
.y70{bottom:596.365333pt;}
.y35{bottom:596.900000pt;}
.y103{bottom:597.237333pt;}
.y34{bottom:600.772000pt;}
.y1a1{bottom:603.028000pt;}
.y182{bottom:608.618667pt;}
.y6f{bottom:611.120000pt;}
.yf{bottom:611.230667pt;}
.y13a{bottom:614.022667pt;}
.y6e{bottom:615.701333pt;}
.y102{bottom:619.150667pt;}
.y163{bottom:622.133333pt;}
.y33{bottom:622.685333pt;}
.y1a0{bottom:624.941333pt;}
.y181{bottom:630.532000pt;}
.ye{bottom:630.565333pt;}
.y139{bottom:632.620000pt;}
.y6d{bottom:635.036000pt;}
.y153{bottom:638.081333pt;}
.yae{bottom:639.026667pt;}
.y32{bottom:644.598667pt;}
.yd{bottom:649.901333pt;}
.y138{bottom:651.216000pt;}
.y180{bottom:652.445333pt;}
.y19f{bottom:658.809333pt;}
.y152{bottom:659.994667pt;}
.yad{bottom:660.940000pt;}
.y101{bottom:661.188000pt;}
.yc{bottom:669.237333pt;}
.y137{bottom:669.282667pt;}
.y31{bottom:677.954667pt;}
.y19e{bottom:680.722667pt;}
.y151{bottom:681.908000pt;}
.y6c{bottom:683.718667pt;}
.y162{bottom:684.625333pt;}
.y17f{bottom:685.196000pt;}
.yac{bottom:685.764000pt;}
.y136{bottom:687.348000pt;}
.yb{bottom:688.572000pt;}
.yab{bottom:692.145333pt;}
.y2e{bottom:694.184000pt;}
.yaa{bottom:695.741333pt;}
.y150{bottom:703.822667pt;}
.y135{bottom:705.413333pt;}
.y6b{bottom:705.633333pt;}
.y17e{bottom:707.109333pt;}
.y30{bottom:707.118667pt;}
.ya{bottom:707.908000pt;}
.y2f{bottom:711.104000pt;}
.y19d{bottom:714.592000pt;}
.y134{bottom:723.478667pt;}
.y14f{bottom:725.736000pt;}
.y6a{bottom:727.546667pt;}
.y100{bottom:734.357333pt;}
.y19c{bottom:736.505333pt;}
.y9{bottom:737.276000pt;}
.y17d{bottom:739.860000pt;}
.y133{bottom:741.544000pt;}
.y2d{bottom:741.574667pt;}
.ya9{bottom:741.982667pt;}
.y69{bottom:746.357333pt;}
.y19b{bottom:758.418667pt;}
.y132{bottom:759.609333pt;}
.y17c{bottom:761.773333pt;}
.y68{bottom:763.256000pt;}
.y2c{bottom:763.488000pt;}
.y67{bottom:768.272000pt;}
.yfd{bottom:771.710667pt;}
.ya8{bottom:773.188000pt;}
.y8{bottom:773.936000pt;}
.ya7{bottom:776.784000pt;}
.y131{bottom:778.206667pt;}
.y14e{bottom:780.193333pt;}
.y19a{bottom:780.332000pt;}
.yfc{bottom:781.009333pt;}
.y17b{bottom:783.686667pt;}
.y66{bottom:785.169333pt;}
.y2b{bottom:785.402667pt;}
.y65{bottom:790.185333pt;}
.yfb{bottom:790.306667pt;}
.ye8{bottom:794.292000pt;}
.y130{bottom:796.804000pt;}
.yfa{bottom:799.605333pt;}
.y7{bottom:800.890667pt;}
.y14d{bottom:802.106667pt;}
.ye7{bottom:802.793333pt;}
.y2a{bottom:807.316000pt;}
.yf9{bottom:808.904000pt;}
.yff{bottom:810.762667pt;}
.ye6{bottom:810.764000pt;}
.y64{bottom:812.098667pt;}
.y199{bottom:814.201333pt;}
.y17a{bottom:816.437333pt;}
.yf8{bottom:818.202667pt;}
.ye5{bottom:818.733333pt;}
.y6{bottom:822.804000pt;}
.ya6{bottom:823.025333pt;}
.y14c{bottom:824.020000pt;}
.ye4{bottom:826.704000pt;}
.yf7{bottom:827.501333pt;}
.ye3{bottom:834.673333pt;}
.y198{bottom:836.114667pt;}
.yf6{bottom:836.800000pt;}
.y179{bottom:838.350667pt;}
.ye2{bottom:842.644000pt;}
.ya5{bottom:844.938667pt;}
.y29{bottom:845.718667pt;}
.y14b{bottom:845.933333pt;}
.yf5{bottom:846.098667pt;}
.y12f{bottom:846.490667pt;}
.ye1{bottom:850.614667pt;}
.y5{bottom:851.990667pt;}
.yf4{bottom:855.396000pt;}
.y197{bottom:858.028000pt;}
.ye0{bottom:858.584000pt;}
.y178{bottom:860.264000pt;}
.yf3{bottom:864.694667pt;}
.ydf{bottom:866.554667pt;}
.y14a{bottom:867.846667pt;}
.y63{bottom:868.404000pt;}
.yf2{bottom:873.993333pt;}
.yde{bottom:874.525333pt;}
.ya3{bottom:879.956000pt;}
.y4{bottom:881.249333pt;}
.ydd{bottom:882.494667pt;}
.yf1{bottom:883.292000pt;}
.ya4{bottom:886.337333pt;}
.y149{bottom:889.760000pt;}
.ya2{bottom:889.933333pt;}
.y62{bottom:890.317333pt;}
.ydc{bottom:890.465333pt;}
.y196{bottom:891.897333pt;}
.yf0{bottom:892.590667pt;}
.y177{bottom:893.014667pt;}
.ydb{bottom:898.436000pt;}
.y3{bottom:901.768000pt;}
.yef{bottom:901.889333pt;}
.y28{bottom:902.777333pt;}
.yda{bottom:906.405333pt;}
.yee{bottom:911.188000pt;}
.y61{bottom:912.230667pt;}
.y195{bottom:913.810667pt;}
.yd9{bottom:914.376000pt;}
.y176{bottom:914.928000pt;}
.yed{bottom:920.485333pt;}
.yfe{bottom:922.345333pt;}
.yd8{bottom:922.346667pt;}
.y27{bottom:924.690667pt;}
.yec{bottom:929.784000pt;}
.yd7{bottom:930.316000pt;}
.y12e{bottom:934.144000pt;}
.y194{bottom:935.724000pt;}
.y175{bottom:936.842667pt;}
.yd6{bottom:938.286667pt;}
.yeb{bottom:939.082667pt;}
.y60{bottom:941.890667pt;}
.y26{bottom:946.604000pt;}
.y148{bottom:947.081333pt;}
.yea{bottom:948.381333pt;}
.y147{bottom:951.221333pt;}
.y5f{bottom:951.868000pt;}
.ya1{bottom:953.898667pt;}
.ye9{bottom:957.680000pt;}
.y145{bottom:961.302667pt;}
.yd5{bottom:961.665333pt;}
.y25{bottom:968.517333pt;}
.y146{bottom:968.865333pt;}
.y2{bottom:968.913333pt;}
.y174{bottom:969.592000pt;}
.y12d{bottom:973.781333pt;}
.y9f{bottom:978.722667pt;}
.y24{bottom:991.506667pt;}
.ya0{bottom:994.944000pt;}
.y144{bottom:996.752000pt;}
.y9e{bottom:998.540000pt;}
.y1{bottom:1009.196000pt;}
.y23{bottom:1013.420000pt;}
.yd4{bottom:1018.698667pt;}
.y22{bottom:1066.022667pt;}
.hd{height:2.125355pt;}
.h2f{height:13.447799pt;}
.h3c{height:16.992324pt;}
.h3e{height:26.612400pt;}
.h4{height:31.880400pt;}
.h1a{height:36.548574pt;}
.h4c{height:37.003667pt;}
.h8{height:37.193707pt;}
.hb{height:38.043849pt;}
.h9{height:39.850400pt;}
.h50{height:40.378215pt;}
.h6{height:40.727307pt;}
.h51{height:41.658217pt;}
.hc{height:43.636400pt;}
.h7{height:45.907661pt;}
.h20{height:46.060207pt;}
.h23{height:46.065540pt;}
.h25{height:49.551983pt;}
.h5{height:50.269133pt;}
.h4e{height:51.923067pt;}
.he{height:52.989733pt;}
.hf{height:52.995067pt;}
.ha{height:53.559147pt;}
.h19{height:54.787067pt;}
.h14{height:55.901733pt;}
.h11{height:55.907067pt;}
.h34{height:56.339067pt;}
.h39{height:56.344400pt;}
.h2d{height:58.691067pt;}
.h24{height:64.227661pt;}
.h22{height:64.232994pt;}
.h21{height:64.385540pt;}
.h13{height:64.647799pt;}
.h15{height:64.653133pt;}
.h18{height:64.927067pt;}
.h10{height:65.757133pt;}
.h16{height:66.964574pt;}
.h27{height:67.379067pt;}
.h3a{height:67.773733pt;}
.h40{height:68.477733pt;}
.h12{height:70.285733pt;}
.h1f{height:73.053733pt;}
.h3{height:73.678327pt;}
.h1c{height:74.851067pt;}
.h3b{height:75.357733pt;}
.h1b{height:76.077733pt;}
.h2c{height:76.749355pt;}
.h2{height:77.140000pt;}
.h43{height:78.877355pt;}
.h41{height:81.053355pt;}
.h1d{height:82.996400pt;}
.h17{height:88.255241pt;}
.h44{height:88.637733pt;}
.h29{height:89.629133pt;}
.h35{height:89.634466pt;}
.h1e{height:90.178466pt;}
.h4a{height:91.800400pt;}
.h47{height:91.805733pt;}
.h4b{height:92.690688pt;}
.h48{height:95.506688pt;}
.h2e{height:95.811067pt;}
.h30{height:95.816400pt;}
.h4d{height:98.733733pt;}
.h2a{height:102.274688pt;}
.h42{height:102.397355pt;}
.h2b{height:104.013133pt;}
.h4f{height:104.727799pt;}
.h37{height:107.607799pt;}
.h33{height:107.613133pt;}
.h45{height:109.517355pt;}
.h3d{height:112.669355pt;}
.h36{height:118.216021pt;}
.h32{height:118.221355pt;}
.h3f{height:129.410688pt;}
.h38{height:129.538466pt;}
.h31{height:129.543799pt;}
.h26{height:132.264400pt;}
.h28{height:137.960400pt;}
.h46{height:143.224021pt;}
.h49{height:143.229355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:94.488000pt;}
.xb0{left:96.912000pt;}
.x4{left:99.008000pt;}
.x4e{left:100.852000pt;}
.xff{left:101.761333pt;}
.xe8{left:103.786667pt;}
.xe9{left:105.806667pt;}
.x2e{left:107.341333pt;}
.xe7{left:108.230667pt;}
.xea{left:110.958667pt;}
.x76{left:112.341333pt;}
.x1{left:113.440000pt;}
.x2f{left:115.341333pt;}
.x12{left:117.070667pt;}
.x60{left:120.233333pt;}
.xb6{left:122.121333pt;}
.x101{left:123.450667pt;}
.x100{left:124.386667pt;}
.x30{left:127.070667pt;}
.xb{left:130.852000pt;}
.x5f{left:132.432000pt;}
.xcc{left:134.894667pt;}
.x3d{left:138.186667pt;}
.x4f{left:141.060000pt;}
.x31{left:142.197333pt;}
.x71{left:143.966667pt;}
.x8f{left:145.718667pt;}
.x4a{left:147.724000pt;}
.x52{left:149.380000pt;}
.xa{left:150.777333pt;}
.x3e{left:151.718667pt;}
.x8c{left:155.586667pt;}
.x3f{left:157.488000pt;}
.x8a{left:160.044000pt;}
.x40{left:162.741333pt;}
.xb7{left:163.852000pt;}
.x67{left:167.184000pt;}
.xc1{left:168.712000pt;}
.x2{left:170.088000pt;}
.xd0{left:172.810667pt;}
.x8d{left:173.898667pt;}
.xfb{left:182.317333pt;}
.x41{left:185.405333pt;}
.xbc{left:190.026667pt;}
.xd1{left:193.444000pt;}
.x42{left:194.477333pt;}
.xf3{left:195.993333pt;}
.x86{left:197.994667pt;}
.x99{left:199.801333pt;}
.x7b{left:201.736000pt;}
.xfe{left:203.276000pt;}
.xdf{left:207.956000pt;}
.xfc{left:212.268000pt;}
.xf4{left:214.009333pt;}
.x8b{left:215.578667pt;}
.x43{left:216.920000pt;}
.xa7{left:218.242667pt;}
.x8e{left:220.306667pt;}
.x44{left:223.384000pt;}
.x92{left:224.358667pt;}
.xe0{left:225.557333pt;}
.xd2{left:229.046667pt;}
.x45{left:230.577333pt;}
.x68{left:233.014667pt;}
.x87{left:235.094667pt;}
.x46{left:237.041333pt;}
.x61{left:239.325333pt;}
.x69{left:241.849333pt;}
.xc{left:244.490667pt;}
.x5b{left:245.472000pt;}
.x11{left:248.776000pt;}
.x47{left:250.698667pt;}
.x5{left:253.804000pt;}
.x48{left:257.892000pt;}
.x9f{left:259.036000pt;}
.x62{left:260.084000pt;}
.xcf{left:261.962667pt;}
.xd{left:263.480000pt;}
.x6a{left:265.376000pt;}
.x93{left:266.965333pt;}
.xc2{left:271.310667pt;}
.x39{left:272.256000pt;}
.x9a{left:274.520000pt;}
.xf5{left:276.353333pt;}
.x49{left:278.013333pt;}
.x7c{left:281.644000pt;}
.x32{left:284.133333pt;}
.x7{left:285.941333pt;}
.xe{left:288.442667pt;}
.xa8{left:290.041333pt;}
.xb8{left:294.532000pt;}
.x9b{left:296.086667pt;}
.x33{left:299.261333pt;}
.x8{left:304.493333pt;}
.x34{left:305.502667pt;}
.x14{left:306.504000pt;}
.x88{left:307.453333pt;}
.xa0{left:310.273333pt;}
.xf{left:312.726667pt;}
.x15{left:313.777333pt;}
.x6b{left:316.374667pt;}
.x55{left:319.410667pt;}
.x7d{left:321.597333pt;}
.x16{left:322.668000pt;}
.x50{left:323.606667pt;}
.x6c{left:325.208000pt;}
.x53{left:326.684000pt;}
.x17{left:329.940000pt;}
.xd4{left:331.713333pt;}
.x5c{left:334.544000pt;}
.x18{left:338.830667pt;}
.x63{left:341.882667pt;}
.xa9{left:344.774667pt;}
.x19{left:346.104000pt;}
.x3{left:347.698667pt;}
.xd5{left:348.988000pt;}
.x74{left:350.462667pt;}
.x6{left:352.068000pt;}
.xcb{left:353.584000pt;}
.x1a{left:354.994667pt;}
.x57{left:356.413333pt;}
.xd6{left:357.314667pt;}
.xa1{left:358.512000pt;}
.x73{left:359.408000pt;}
.xf6{left:361.049333pt;}
.x1b{left:362.266667pt;}
.x9{left:367.833333pt;}
.xc9{left:369.368000pt;}
.x1c{left:371.157333pt;}
.xc3{left:372.433333pt;}
.x58{left:374.346667pt;}
.x13{left:376.850667pt;}
.x94{left:379.052000pt;}
.x59{left:380.117333pt;}
.x1d{left:385.702667pt;}
.xb4{left:386.790667pt;}
.x5a{left:388.430667pt;}
.xb9{left:389.730667pt;}
.xa4{left:391.498667pt;}
.x1e{left:394.593333pt;}
.x95{left:396.609333pt;}
.x64{left:398.472000pt;}
.x6d{left:399.733333pt;}
.x3a{left:401.142667pt;}
.x3b{left:403.809333pt;}
.xf7{left:407.238667pt;}
.x1f{left:409.138667pt;}
.x65{left:410.128000pt;}
.xa3{left:412.310667pt;}
.xb1{left:414.165333pt;}
.xba{left:416.969333pt;}
.x20{left:418.029333pt;}
.xfa{left:419.780000pt;}
.xd7{left:421.240000pt;}
.x9c{left:422.370667pt;}
.x5d{left:423.614667pt;}
.xf8{left:425.069333pt;}
.x3c{left:428.088000pt;}
.x6e{left:429.326667pt;}
.x66{left:430.888000pt;}
.x21{left:432.574667pt;}
.xcd{left:436.866667pt;}
.x22{left:441.465333pt;}
.xa5{left:447.341333pt;}
.xd3{left:448.678667pt;}
.xd8{left:452.166667pt;}
.x23{left:456.010667pt;}
.xed{left:456.946667pt;}
.xf9{left:459.620000pt;}
.x96{left:461.005333pt;}
.xe4{left:462.452000pt;}
.x24{left:464.901333pt;}
.x84{left:466.609333pt;}
.xaa{left:468.282667pt;}
.xce{left:470.572000pt;}
.xe5{left:473.274667pt;}
.xc4{left:475.033333pt;}
.x25{left:479.448000pt;}
.x6f{left:483.093333pt;}
.xbb{left:484.050667pt;}
.xef{left:485.457333pt;}
.x26{left:488.338667pt;}
.x77{left:489.870667pt;}
.x70{left:491.926667pt;}
.x56{left:496.713333pt;}
.xf0{left:498.297333pt;}
.x51{left:499.790667pt;}
.xe6{left:501.332000pt;}
.x27{left:502.884000pt;}
.x54{left:503.986667pt;}
.xee{left:505.204000pt;}
.xca{left:507.300000pt;}
.xb2{left:509.364000pt;}
.x28{left:511.774667pt;}
.x5e{left:512.685333pt;}
.x97{left:513.758667pt;}
.xa6{left:517.610667pt;}
.xbd{left:519.761333pt;}
.x98{left:525.045333pt;}
.x29{left:526.320000pt;}
.x78{left:529.824000pt;}
.x2a{left:535.210667pt;}
.xae{left:536.437333pt;}
.xdb{left:543.473333pt;}
.xf1{left:546.462667pt;}
.x9e{left:547.721333pt;}
.x2b{left:549.756000pt;}
.xdc{left:551.044000pt;}
.x75{left:556.080000pt;}
.x35{left:558.745333pt;}
.x2c{left:561.548000pt;}
.xa2{left:564.349333pt;}
.x90{left:565.862667pt;}
.xaf{left:568.330667pt;}
.x36{left:571.166667pt;}
.xf2{left:573.745333pt;}
.xab{left:574.644000pt;}
.xc5{left:576.156000pt;}
.xeb{left:577.316000pt;}
.x9d{left:580.305333pt;}
.x2d{left:581.944000pt;}
.x37{left:586.293333pt;}
.xfd{left:592.494667pt;}
.x91{left:594.640000pt;}
.x79{left:600.898667pt;}
.xb3{left:603.685333pt;}
.xd9{left:608.488000pt;}
.x85{left:611.326667pt;}
.xac{left:612.441333pt;}
.xbe{left:614.081333pt;}
.x7e{left:615.432000pt;}
.xbf{left:620.208000pt;}
.x7f{left:621.100000pt;}
.xe1{left:623.914667pt;}
.x80{left:628.133333pt;}
.xda{left:631.937333pt;}
.xad{left:636.289333pt;}
.xb5{left:639.909333pt;}
.x7a{left:640.852000pt;}
.xe2{left:642.222667pt;}
.x38{left:646.182667pt;}
.xdd{left:647.940000pt;}
.x4b{left:656.140000pt;}
.x102{left:657.213333pt;}
.x4c{left:662.502667pt;}
.xc7{left:664.328000pt;}
.xec{left:665.870667pt;}
.x81{left:667.004000pt;}
.xc8{left:675.056000pt;}
.x4d{left:676.246667pt;}
.xc6{left:678.756000pt;}
.x72{left:682.328000pt;}
.x89{left:683.793333pt;}
.xe3{left:685.321333pt;}
.x82{left:688.213333pt;}
.x83{left:695.246667pt;}
.xde{left:697.274667pt;}
.xc0{left:722.808000pt;}
}




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