
    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_a179c9c715278197afffd5b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_72ee3e4880b31eb9a39827c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.733887;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_d386c7fedd3db1b3ea73c4df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914000;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_8f8626d6fe790b7a849efd58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_412aa754a5d42d07a4e1df6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.033000;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_6ea1d736ce773b84fcca1620.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.033000;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_9883ce7a67a2f9f6b0225d59.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986000;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_98c2d7e1d3ca1a5f295bdaaf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8944cc778c37b4a5d3dca930.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a69d7d3559a7f1a7a3c1e820.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.676000;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_511b4823cd5d42a7f40d3e2e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ac4d03e037fda841eb202297.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.520000;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_ad0da3595d7b8878f966fce7.woff2')format("woff");}.fff{font-family:fff;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8097c56f1dad51e7e0619949.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.573000;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_abc6c37108d53d3e43affc4a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ce0a5a90d39f364962c78d35.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2dfd007a1e2cfd8705be723c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1d1dea3b3fedd6b6d7241fb4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_42df69cbb0ee360a41e98548.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b3a80fe3be9b187d7ea5297e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a804f6ee64736affdafcab24.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_71cc0c99b1761445bb6f2b95.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.932000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m24{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);}
.m1d{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m16{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);}
.m1a{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);}
.m9{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);}
.m1e{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);}
.mc{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);}
.m1c{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);}
.m20{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);}
.m18{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);}
.m21{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);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.md{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);}
.mb{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);}
.m17{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);}
.m13{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);}
.m1f{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);}
.m23{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);}
.m3{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);}
.m25{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);}
.m26{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);}
.m1b{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);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m22{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);}
.ma{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);}
.m27{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);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.690000px;}
.v8{vertical-align:-10.758000px;}
.v16{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v18{vertical-align:13.614000px;}
.ve{vertical-align:17.736000px;}
.v12{vertical-align:20.724000px;}
.v7{vertical-align:24.738000px;}
.v4{vertical-align:26.028000px;}
.v17{vertical-align:28.242000px;}
.vd{vertical-align:29.616000px;}
.v2{vertical-align:31.236000px;}
.v1{vertical-align:44.988000px;}
.v5{vertical-align:46.494000px;}
.vb{vertical-align:48.528000px;}
.v9{vertical-align:53.796000px;}
.v10{vertical-align:55.350000px;}
.vf{vertical-align:58.098000px;}
.vc{vertical-align:61.374000px;}
.v13{vertical-align:74.556000px;}
.v6{vertical-align:91.128000px;}
.v11{vertical-align:92.286000px;}
.v14{vertical-align:97.728000px;}
.va{vertical-align:122.664000px;}
.v15{vertical-align:123.756000px;}
.ls0{letter-spacing:0.000000px;}
.ls69{letter-spacing:0.000163px;}
.ls78{letter-spacing:0.000472px;}
.lsa1{letter-spacing:0.001114px;}
.ls53{letter-spacing:0.001200px;}
.ls23{letter-spacing:0.001289px;}
.ls56{letter-spacing:0.001473px;}
.ls1a{letter-spacing:0.001486px;}
.ls6d{letter-spacing:0.002227px;}
.ls22{letter-spacing:0.002675px;}
.ls8{letter-spacing:0.002759px;}
.ls5f{letter-spacing:0.003056px;}
.ls21{letter-spacing:0.003191px;}
.ls9a{letter-spacing:0.004059px;}
.ls5e{letter-spacing:0.004391px;}
.ls37{letter-spacing:0.004852px;}
.ls2d{letter-spacing:0.005299px;}
.ls5c{letter-spacing:0.005770px;}
.ls16{letter-spacing:0.007486px;}
.ls9b{letter-spacing:1.716930px;}
.ls5b{letter-spacing:1.945021px;}
.ls8d{letter-spacing:1.951021px;}
.ls31{letter-spacing:2.569240px;}
.ls8e{letter-spacing:2.573487px;}
.ls64{letter-spacing:2.579487px;}
.ls6f{letter-spacing:2.984915px;}
.ls98{letter-spacing:2.988532px;}
.ls2{letter-spacing:2.988600px;}
.ls24{letter-spacing:2.989289px;}
.ls76{letter-spacing:2.990915px;}
.ls1f{letter-spacing:2.995289px;}
.ls99{letter-spacing:5.520587px;}
.ls8c{letter-spacing:5.743488px;}
.ls50{letter-spacing:5.749488px;}
.ls8a{letter-spacing:6.361460px;}
.ls88{letter-spacing:6.367460px;}
.ls51{letter-spacing:7.174404px;}
.lsa{letter-spacing:7.658523px;}
.ls10{letter-spacing:7.664523px;}
.ls77{letter-spacing:8.013894px;}
.ls43{letter-spacing:8.077860px;}
.ls2b{letter-spacing:8.083860px;}
.ls34{letter-spacing:10.042631px;}
.ls1e{letter-spacing:10.048631px;}
.ls94{letter-spacing:10.154915px;}
.ls6a{letter-spacing:10.160915px;}
.ls42{letter-spacing:11.953114px;}
.ls13{letter-spacing:11.953288px;}
.ls8b{letter-spacing:11.954759px;}
.lse{letter-spacing:11.954915px;}
.ls35{letter-spacing:11.955191px;}
.ls20{letter-spacing:11.959288px;}
.ls25{letter-spacing:11.961191px;}
.ls2f{letter-spacing:13.903021px;}
.ls19{letter-spacing:14.947289px;}
.ls54{letter-spacing:15.139114px;}
.ls55{letter-spacing:15.139473px;}
.ls7a{letter-spacing:15.935518px;}
.ls4e{letter-spacing:15.936163px;}
.ls65{letter-spacing:15.937114px;}
.ls27{letter-spacing:15.937473px;}
.ls26{letter-spacing:15.938759px;}
.ls3c{letter-spacing:15.941518px;}
.ls5a{letter-spacing:15.941770px;}
.ls5d{letter-spacing:15.942163px;}
.ls60{letter-spacing:15.943114px;}
.ls29{letter-spacing:15.943473px;}
.ls79{letter-spacing:17.887021px;}
.ls87{letter-spacing:17.926404px;}
.ls57{letter-spacing:17.929200px;}
.ls71{letter-spacing:17.932852px;}
.lsaf{letter-spacing:17.934163px;}
.ls44{letter-spacing:17.935200px;}
.ls1d{letter-spacing:18.319460px;}
.ls61{letter-spacing:18.515487px;}
.ls28{letter-spacing:18.931289px;}
.ls7{letter-spacing:19.610523px;}
.ls9{letter-spacing:19.616523px;}
.ls18{letter-spacing:19.841518px;}
.ls82{letter-spacing:19.885021px;}
.lsd{letter-spacing:19.919518px;}
.ls7c{letter-spacing:19.921473px;}
.ls3d{letter-spacing:19.922227px;}
.ls86{letter-spacing:19.924404px;}
.ls72{letter-spacing:19.924852px;}
.lsc{letter-spacing:19.925518px;}
.ls4d{letter-spacing:19.927288px;}
.ls84{letter-spacing:19.927473px;}
.ls47{letter-spacing:19.928809px;}
.ls46{letter-spacing:19.931770px;}
.lsa9{letter-spacing:19.936404px;}
.lsab{letter-spacing:19.937518px;}
.lsaa{letter-spacing:19.941274px;}
.ls91{letter-spacing:19.991518px;}
.lsa0{letter-spacing:20.027770px;}
.ls9f{letter-spacing:20.028163px;}
.ls6{letter-spacing:20.033518px;}
.lsae{letter-spacing:20.918915px;}
.ls1c{letter-spacing:20.923289px;}
.ls8f{letter-spacing:21.679488px;}
.lsa8{letter-spacing:21.889021px;}
.ls2e{letter-spacing:22.000631px;}
.ls33{letter-spacing:22.006631px;}
.ls5{letter-spacing:22.615486px;}
.ls9d{letter-spacing:22.745518px;}
.ls6e{letter-spacing:22.910915px;}
.ls45{letter-spacing:22.914103px;}
.ls81{letter-spacing:23.777518px;}
.ls7e{letter-spacing:23.782404px;}
.lsa6{letter-spacing:23.874472px;}
.lsa7{letter-spacing:23.875114px;}
.lsa2{letter-spacing:23.886490px;}
.ls30{letter-spacing:24.019860px;}
.ls3{letter-spacing:24.157114px;}
.ls4{letter-spacing:24.157473px;}
.ls96{letter-spacing:24.691021px;}
.ls4f{letter-spacing:25.669488px;}
.lsa5{letter-spacing:25.825021px;}
.lsb{letter-spacing:25.901950px;}
.lsf{letter-spacing:25.907950px;}
.ls36{letter-spacing:25.984631px;}
.ls63{letter-spacing:25.990631px;}
.ls58{letter-spacing:26.017860px;}
.ls74{letter-spacing:26.102915px;}
.ls4c{letter-spacing:26.135518px;}
.ls9e{letter-spacing:26.287460px;}
.ls67{letter-spacing:26.293460px;}
.ls90{letter-spacing:26.359460px;}
.ls1b{letter-spacing:26.369779px;}
.lsa3{letter-spacing:26.447487px;}
.ls80{letter-spacing:26.762915px;}
.ls59{letter-spacing:27.095518px;}
.ls7b{letter-spacing:27.098759px;}
.ls3a{letter-spacing:27.115473px;}
.ls3e{letter-spacing:27.647518px;}
.ls2a{letter-spacing:27.982631px;}
.ls62{letter-spacing:28.003860px;}
.ls6b{letter-spacing:28.009860px;}
.ls6c{letter-spacing:28.116472px;}
.ls49{letter-spacing:29.153518px;}
.ls4a{letter-spacing:29.155473px;}
.ls15{letter-spacing:29.669518px;}
.ls12{letter-spacing:29.675518px;}
.ls14{letter-spacing:29.680454px;}
.ls11{letter-spacing:29.683288px;}
.ls40{letter-spacing:29.774227px;}
.ls41{letter-spacing:29.774809px;}
.ls17{letter-spacing:29.884631px;}
.lsac{letter-spacing:29.968631px;}
.ls66{letter-spacing:29.974631px;}
.ls92{letter-spacing:30.040631px;}
.ls83{letter-spacing:30.080915px;}
.ls7f{letter-spacing:31.861860px;}
.lsa4{letter-spacing:31.887894px;}
.ls9c{letter-spacing:32.904532px;}
.ls39{letter-spacing:35.203860px;}
.ls2c{letter-spacing:35.537831px;}
.ls85{letter-spacing:35.827440px;}
.lsad{letter-spacing:35.869200px;}
.ls89{letter-spacing:36.115538px;}
.ls4b{letter-spacing:36.184631px;}
.ls48{letter-spacing:39.208631px;}
.ls3b{letter-spacing:42.382631px;}
.ls73{letter-spacing:90.437518px;}
.ls97{letter-spacing:136.211518px;}
.ls75{letter-spacing:180.905518px;}
.ls95{letter-spacing:182.617473px;}
.ls1{letter-spacing:185.308200px;}
.ls68{letter-spacing:201.713518px;}
.ls93{letter-spacing:201.719518px;}
.ls32{letter-spacing:226.153114px;}
.ls38{letter-spacing:280.633114px;}
.ls7d{letter-spacing:512.467114px;}
.ls70{letter-spacing:901.074472px;}
.ls52{letter-spacing:950.533114px;}
.ls3f{letter-spacing:971.563114px;}
.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;}
}
.ws7e{word-spacing:-71.731200px;}
.ws81{word-spacing:-56.789591px;}
.ws7d{word-spacing:-50.809387px;}
.ws78{word-spacing:-45.664082px;}
.wsc4{word-spacing:-43.397376px;}
.wsc7{word-spacing:-39.452160px;}
.wsa6{word-spacing:-33.756703px;}
.ws84{word-spacing:-33.684972px;}
.ws7c{word-spacing:-33.211407px;}
.ws9d{word-spacing:-27.895181px;}
.wsa4{word-spacing:-25.794540px;}
.ws74{word-spacing:-25.768673px;}
.wsb5{word-spacing:-25.745558px;}
.wsc6{word-spacing:-25.726564px;}
.wsb6{word-spacing:-25.722808px;}
.ws8c{word-spacing:-25.717279px;}
.ws97{word-spacing:-25.151463px;}
.wsa7{word-spacing:-24.476527px;}
.wsb2{word-spacing:-23.786066px;}
.wsbf{word-spacing:-22.903075px;}
.wsb0{word-spacing:-21.921055px;}
.ws89{word-spacing:-21.777592px;}
.wsa5{word-spacing:-21.729988px;}
.wsad{word-spacing:-21.699909px;}
.wsbd{word-spacing:-21.693909px;}
.ws24{word-spacing:-20.873779px;}
.ws34{word-spacing:-19.941274px;}
.ws75{word-spacing:-19.510886px;}
.wsc{word-spacing:-18.196379px;}
.ws11{word-spacing:-17.394700px;}
.ws9b{word-spacing:-15.895634px;}
.wsd8{word-spacing:-8.607744px;}
.wsca{word-spacing:-8.320819px;}
.wsaf{word-spacing:-8.177357px;}
.ws46{word-spacing:-8.105626px;}
.ws49{word-spacing:-7.962163px;}
.wsae{word-spacing:-7.675238px;}
.ws83{word-spacing:-7.582045px;}
.ws8d{word-spacing:-7.576237px;}
.wsac{word-spacing:-7.559368px;}
.ws8f{word-spacing:-7.531776px;}
.ws6b{word-spacing:-7.244851px;}
.ws51{word-spacing:-7.173120px;}
.ws58{word-spacing:-6.599270px;}
.ws44{word-spacing:-6.384077px;}
.ws43{word-spacing:-6.312346px;}
.ws5{word-spacing:-6.218187px;}
.wsd5{word-spacing:-6.168883px;}
.ws40{word-spacing:-5.810227px;}
.ws47{word-spacing:-5.738496px;}
.ws6c{word-spacing:-5.666765px;}
.ws60{word-spacing:-5.595034px;}
.ws16{word-spacing:-5.523302px;}
.ws48{word-spacing:-5.379840px;}
.wsa0{word-spacing:-5.320028px;}
.ws26{word-spacing:-5.308109px;}
.ws53{word-spacing:-5.164646px;}
.ws1{word-spacing:-5.082975px;}
.ws2{word-spacing:-5.081850px;}
.ws19{word-spacing:-4.949453px;}
.ws27{word-spacing:-4.805990px;}
.ws29{word-spacing:-4.734259px;}
.wscf{word-spacing:-4.590797px;}
.ws56{word-spacing:-4.519066px;}
.ws1d{word-spacing:-4.447334px;}
.ws6e{word-spacing:-4.375603px;}
.ws4a{word-spacing:-4.303872px;}
.ws23{word-spacing:-4.232141px;}
.ws32{word-spacing:-4.160410px;}
.ws6a{word-spacing:-3.945216px;}
.ws4{word-spacing:-3.861821px;}
.ws28{word-spacing:-3.812849px;}
.ws3c{word-spacing:-3.801754px;}
.ws86{word-spacing:-3.765863px;}
.ws4f{word-spacing:-3.658291px;}
.ws8b{word-spacing:-3.586560px;}
.wsab{word-spacing:-3.573723px;}
.ws90{word-spacing:-3.571014px;}
.ws3{word-spacing:-3.529165px;}
.ws5f{word-spacing:-3.443098px;}
.ws15{word-spacing:-3.371366px;}
.ws6f{word-spacing:-3.299635px;}
.ws21{word-spacing:-3.227904px;}
.ws87{word-spacing:-3.168107px;}
.ws18{word-spacing:-3.156173px;}
.ws1c{word-spacing:-3.084442px;}
.ws3e{word-spacing:-3.012710px;}
.ws7{word-spacing:-3.010912px;}
.wsde{word-spacing:-2.941872px;}
.wsdb{word-spacing:-2.941507px;}
.ws79{word-spacing:-2.941488px;}
.wsda{word-spacing:-2.941200px;}
.ws17{word-spacing:-2.940979px;}
.wsdc{word-spacing:-2.940768px;}
.ws8e{word-spacing:-2.940701px;}
.wse0{word-spacing:-2.940643px;}
.wsaa{word-spacing:-2.940634px;}
.wse2{word-spacing:-2.939616px;}
.ws91{word-spacing:-2.939472px;}
.ws6d{word-spacing:-2.929004px;}
.ws14{word-spacing:-2.869248px;}
.ws6{word-spacing:-2.814548px;}
.ws85{word-spacing:-2.809453px;}
.ws2a{word-spacing:-2.797517px;}
.ws3d{word-spacing:-2.725786px;}
.wsd{word-spacing:-2.689902px;}
.wsa{word-spacing:-2.683639px;}
.ws13{word-spacing:-2.654054px;}
.wsdd{word-spacing:-2.587651px;}
.ws54{word-spacing:-2.582323px;}
.ws3f{word-spacing:-2.510592px;}
.ws37{word-spacing:-2.510575px;}
.wse{word-spacing:-2.450800px;}
.ws30{word-spacing:-2.438861px;}
.ws9{word-spacing:-2.421820px;}
.ws38{word-spacing:-2.391024px;}
.ws62{word-spacing:-2.367130px;}
.wsf{word-spacing:-2.331248px;}
.ws3a{word-spacing:-2.271473px;}
.ws2e{word-spacing:-2.223667px;}
.ws36{word-spacing:-2.211697px;}
.ws1f{word-spacing:-2.151936px;}
.ws3b{word-spacing:-2.151922px;}
.wsa9{word-spacing:-2.080205px;}
.ws64{word-spacing:-2.012726px;}
.wsd1{word-spacing:-2.012074px;}
.ws59{word-spacing:-2.008474px;}
.wsb7{word-spacing:-2.006074px;}
.ws57{word-spacing:-1.936742px;}
.wse4{word-spacing:-1.865011px;}
.wsb{word-spacing:-1.832729px;}
.wsce{word-spacing:-1.793280px;}
.ws71{word-spacing:-1.721549px;}
.ws61{word-spacing:-1.710865px;}
.ws4e{word-spacing:-1.673717px;}
.ws5b{word-spacing:-1.578086px;}
.ws41{word-spacing:-1.506355px;}
.ws39{word-spacing:-1.494390px;}
.ws73{word-spacing:-1.434624px;}
.wsb8{word-spacing:-1.362893px;}
.ws55{word-spacing:-1.291162px;}
.ws69{word-spacing:-1.219430px;}
.ws8{word-spacing:-1.178183px;}
.ws70{word-spacing:-1.075968px;}
.ws4d{word-spacing:-1.075961px;}
.ws25{word-spacing:-1.004237px;}
.wsd2{word-spacing:-0.836858px;}
.wsba{word-spacing:-0.789043px;}
.wsb9{word-spacing:-0.717312px;}
.wsd3{word-spacing:-0.657532px;}
.wsd4{word-spacing:-0.645581px;}
.wsc1{word-spacing:-0.628458px;}
.ws33{word-spacing:-0.573850px;}
.ws76{word-spacing:-0.430387px;}
.wsa2{word-spacing:-0.286925px;}
.ws20{word-spacing:-0.215194px;}
.ws93{word-spacing:-0.143462px;}
.wsd6{word-spacing:-0.103292px;}
.wsbc{word-spacing:-0.071731px;}
.wsb1{word-spacing:-0.059776px;}
.wsbe{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws4b{word-spacing:0.071731px;}
.ws1e{word-spacing:0.143462px;}
.ws2d{word-spacing:0.215194px;}
.ws63{word-spacing:0.286925px;}
.ws7a{word-spacing:0.358656px;}
.ws8a{word-spacing:0.390117px;}
.ws92{word-spacing:0.396117px;}
.ws50{word-spacing:0.430387px;}
.wsc3{word-spacing:0.502118px;}
.ws35{word-spacing:0.573850px;}
.ws9e{word-spacing:0.717312px;}
.ws66{word-spacing:0.789043px;}
.ws5a{word-spacing:0.860774px;}
.ws45{word-spacing:0.932506px;}
.ws7f{word-spacing:1.004237px;}
.ws9a{word-spacing:1.075968px;}
.ws77{word-spacing:1.219430px;}
.ws88{word-spacing:1.255288px;}
.ws1b{word-spacing:1.362893px;}
.ws2b{word-spacing:1.434624px;}
.ws42{word-spacing:1.578086px;}
.ws2f{word-spacing:1.721549px;}
.ws9c{word-spacing:1.793280px;}
.ws4c{word-spacing:1.865011px;}
.wsa1{word-spacing:2.008474px;}
.ws82{word-spacing:2.080205px;}
.ws94{word-spacing:2.151936px;}
.ws95{word-spacing:2.223667px;}
.wsdf{word-spacing:2.295398px;}
.ws2c{word-spacing:2.367130px;}
.ws5c{word-spacing:2.438861px;}
.ws72{word-spacing:2.510592px;}
.wscb{word-spacing:2.654054px;}
.wscc{word-spacing:2.725786px;}
.wse3{word-spacing:3.010570px;}
.wscd{word-spacing:3.012710px;}
.wsd9{word-spacing:3.084442px;}
.ws31{word-spacing:3.299635px;}
.ws96{word-spacing:3.514829px;}
.ws5d{word-spacing:3.586560px;}
.ws80{word-spacing:3.641396px;}
.ws5e{word-spacing:3.658291px;}
.wsa8{word-spacing:4.232141px;}
.wsc5{word-spacing:4.375603px;}
.ws52{word-spacing:4.519066px;}
.ws65{word-spacing:4.590797px;}
.ws1a{word-spacing:4.662528px;}
.ws67{word-spacing:4.734259px;}
.wsc0{word-spacing:4.805990px;}
.ws68{word-spacing:4.949453px;}
.wsd7{word-spacing:5.236378px;}
.wse1{word-spacing:8.033894px;}
.ws99{word-spacing:10.257562px;}
.wsc8{word-spacing:14.088008px;}
.ws9f{word-spacing:14.776627px;}
.ws98{word-spacing:15.565670px;}
.wsb4{word-spacing:17.801756px;}
.wsd0{word-spacing:17.860454px;}
.wsc2{word-spacing:17.861069px;}
.wsbb{word-spacing:17.977968px;}
.ws12{word-spacing:25.719808px;}
.wsc9{word-spacing:25.751501px;}
.ws7b{word-spacing:25.872035px;}
.ws10{word-spacing:30.366005px;}
.ws22{word-spacing:103.189108px;}
.wsb3{word-spacing:730.511311px;}
.wsa3{word-spacing:973.765486px;}
._29{margin-left:-23.908694px;}
._2a{margin-left:-19.945046px;}
._14{margin-left:-9.270736px;}
._2{margin-left:-8.058375px;}
._9{margin-left:-6.051526px;}
._5{margin-left:-4.959000px;}
._3{margin-left:-3.719250px;}
._1{margin-left:-2.479500px;}
._4{margin-left:-1.239750px;}
._0{width:1.165952px;}
._13{width:2.284626px;}
._c{width:4.028886px;}
._24{width:5.113479px;}
._23{width:8.078460px;}
._18{width:13.817163px;}
._16{width:15.620722px;}
._11{width:17.081573px;}
._8{width:18.900830px;}
._6{width:20.094562px;}
._1a{width:21.361833px;}
._7{width:22.386042px;}
._10{width:23.680843px;}
._d{width:24.685080px;}
._1c{width:26.253619px;}
._e{width:28.089605px;}
._15{width:29.296568px;}
._20{width:31.500194px;}
._1d{width:32.844184px;}
._f{width:33.891126px;}
._17{width:35.392123px;}
._1e{width:36.601352px;}
._12{width:38.234796px;}
._1b{width:40.517356px;}
._2c{width:42.536602px;}
._25{width:47.840185px;}
._1f{width:49.199665px;}
._a{width:56.069513px;}
._21{width:60.026670px;}
._2b{width:71.225978px;}
._19{width:103.292400px;}
._b{width:119.814253px;}
._22{width:135.244948px;}
._27{width:205.852524px;}
._26{width:868.749806px;}
._28{width:911.178419px;}
.fc1{color:rgb(162,65,18);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:35.865600px;}
.fsd{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:47.820600px;}
.fs5{font-size:59.759996px;}
.fsb{font-size:59.775600px;}
.fs8{font-size:59.984997px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:65.454600px;}
.fs12{font-size:65.879999px;}
.fse{font-size:71.731200px;}
.fs13{font-size:71.999997px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.969997px;}
.fsa{font-size:86.077200px;}
.fs6{font-size:92.969996px;}
.fs2{font-size:102.000000px;}
.fsf{font-size:103.292400px;}
.fs9{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y23{bottom:0.000021px;}
.y5{bottom:66.525004px;}
.y44{bottom:82.726500px;}
.y4{bottom:97.125005px;}
.yfb{bottom:127.558500px;}
.y43{bottom:127.578000px;}
.y11a{bottom:131.167500px;}
.ydb{bottom:133.005000px;}
.y73{bottom:136.798500px;}
.y99{bottom:137.713500px;}
.yda{bottom:138.429000px;}
.y22{bottom:139.264499px;}
.y13e{bottom:144.910500px;}
.yb9{bottom:146.919000px;}
.y119{bottom:149.100000px;}
.y72{bottom:149.517000px;}
.y42{bottom:149.832000px;}
.yd9{bottom:151.147500px;}
.yfa{bottom:154.450500px;}
.y41{bottom:155.254500px;}
.y98{bottom:155.646000px;}
.y97{bottom:161.070000px;}
.y13d{bottom:162.843000px;}
.y14a{bottom:165.535500px;}
.y118{bottom:167.032500px;}
.y71{bottom:167.449500px;}
.y13c{bottom:168.265500px;}
.yd8{bottom:169.080000px;}
.y40{bottom:169.197000px;}
.yb8{bottom:173.809500px;}
.y16f{bottom:180.856500px;}
.yf9{bottom:181.341000px;}
.y1b1{bottom:183.667500px;}
.y117{bottom:184.965000px;}
.y70{bottom:185.382000px;}
.yd7{bottom:187.012500px;}
.y1b0{bottom:188.100000px;}
.y96{bottom:189.604500px;}
.y3f{bottom:191.451000px;}
.y149{bottom:192.426000px;}
.y13b{bottom:196.800000px;}
.y3e{bottom:196.873500px;}
.y19{bottom:196.933500px;}
.y16e{bottom:198.789000px;}
.yb7{bottom:200.701500px;}
.y116{bottom:202.899000px;}
.y6f{bottom:203.316000px;}
.y16d{bottom:204.213000px;}
.yd6{bottom:204.945000px;}
.yf8{bottom:208.231500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yd5{bottom:210.367500px;}
.y3d{bottom:210.816000px;}
.y95{bottom:216.495000px;}
.y147{bottom:219.778500px;}
.y115{bottom:220.831500px;}
.y1dd{bottom:220.896000px;}
.y213{bottom:221.245500px;}
.y6e{bottom:221.248500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f9{bottom:222.429000px;}
.y13a{bottom:223.692000px;}
.yb6{bottom:227.592000px;}
.y148{bottom:227.646000px;}
.y16c{bottom:228.216000px;}
.y146{bottom:232.080000px;}
.y16b{bottom:232.747500px;}
.y3c{bottom:233.070000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yf7{bottom:235.122000px;}
.y1af{bottom:237.246000px;}
.y3b{bottom:238.492500px;}
.y114{bottom:238.764000px;}
.yd4{bottom:238.903500px;}
.y6d{bottom:239.181000px;}
.y94{bottom:243.385500px;}
.y113{bottom:244.186500px;}
.y6c{bottom:244.603500px;}
.y1dc{bottom:247.786500px;}
.y212{bottom:248.136000px;}
.y1f8{bottom:249.319500px;}
.y139{bottom:250.582500px;}
.yb5{bottom:254.482500px;}
.y1bf{bottom:256.287000px;}
.y6b{bottom:257.322000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y145{bottom:260.464500px;}
.yf6{bottom:262.014000px;}
.y16a{bottom:264.121500px;}
.y1ae{bottom:264.136500px;}
.y93{bottom:270.277500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y112{bottom:272.722500px;}
.y1be{bottom:274.219500px;}
.y6a{bottom:275.254500px;}
.y138{bottom:277.473000px;}
.y18c{bottom:277.479000px;}
.y18d{bottom:277.480500px;}
.yb4{bottom:281.373000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y211{bottom:288.040500px;}
.y1f7{bottom:290.407500px;}
.y1ad{bottom:291.027000px;}
.yf5{bottom:292.027500px;}
.y1bd{bottom:292.152000px;}
.y69{bottom:293.187000px;}
.y1db{bottom:293.197500px;}
.yd3{bottom:296.979000px;}
.y92{bottom:297.168000px;}
.y68{bottom:298.611000px;}
.y111{bottom:299.613000px;}
.y137{bottom:304.363500px;}
.y169{bottom:305.418000px;}
.y144{bottom:308.433000px;}
.y1bc{bottom:310.086000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yb3{bottom:312.747000px;}
.y210{bottom:314.932500px;}
.y1bb{bottom:315.508500px;}
.y1f6{bottom:317.110500px;}
.y1f5{bottom:317.298000px;}
.y168{bottom:317.718000px;}
.y1ac{bottom:317.917500px;}
.yf4{bottom:318.918000px;}
.y18b{bottom:319.267500px;}
.y110{bottom:320.319000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y18a{bottom:323.797500px;}
.yd2{bottom:324.058500px;}
.y10e{bottom:326.503500px;}
.y67{bottom:327.145500px;}
.y91{bottom:328.542000px;}
.y10f{bottom:334.387500px;}
.y136{bottom:335.737500px;}
.y1ba{bottom:338.986500px;}
.yb2{bottom:339.639000px;}
.y20f{bottom:341.823000px;}
.yf3{bottom:345.810000px;}
.y189{bottom:346.158000px;}
.y10{bottom:348.133500px;}
.y188{bottom:350.688000px;}
.yd1{bottom:350.949000px;}
.y10d{bottom:353.394000px;}
.y66{bottom:354.036000px;}
.y90{bottom:355.432500px;}
.y1f4{bottom:358.386000px;}
.y1ab{bottom:359.752500px;}
.y135{bottom:362.629500px;}
.y1da{bottom:363.154500px;}
.y143{bottom:364.129500px;}
.yb1{bottom:366.529500px;}
.yf2{bottom:372.700500px;}
.y167{bottom:373.414500px;}
.yd0{bottom:377.841000px;}
.y10c{bottom:380.284500px;}
.y64{bottom:380.926500px;}
.y20e{bottom:381.727500px;}
.y8f{bottom:382.323000px;}
.y1f3{bottom:385.276500px;}
.y1aa{bottom:386.644500px;}
.yf{bottom:386.785499px;}
.y65{bottom:387.435000px;}
.y134{bottom:389.520000px;}
.y1d9{bottom:390.045000px;}
.yb0{bottom:393.420000px;}
.y1b9{bottom:395.764500px;}
.yf1{bottom:399.591000px;}
.y166{bottom:400.306500px;}
.y142{bottom:403.174500px;}
.ycf{bottom:404.731500px;}
.y10b{bottom:407.176500px;}
.y187{bottom:407.467500px;}
.y63{bottom:407.817000px;}
.ye{bottom:408.044999px;}
.y20d{bottom:408.618000px;}
.y8e{bottom:409.215000px;}
.y1a9{bottom:413.535000px;}
.y133{bottom:416.410500px;}
.y1d8{bottom:416.935500px;}
.yaf{bottom:420.310500px;}
.y1f2{bottom:426.364500px;}
.yf0{bottom:426.481500px;}
.y1b8{bottom:427.138500px;}
.y165{bottom:431.401500px;}
.yce{bottom:431.622000px;}
.y186{bottom:434.358000px;}
.y62{bottom:434.709000px;}
.y20c{bottom:435.510000px;}
.y8d{bottom:436.105500px;}
.y164{bottom:436.263000px;}
.y1a8{bottom:440.425500px;}
.y132{bottom:443.301000px;}
.y1d7{bottom:443.826000px;}
.yae{bottom:447.202500px;}
.y162{bottom:448.564500px;}
.y10a{bottom:452.302500px;}
.y1f1{bottom:453.255000px;}
.yef{bottom:453.373500px;}
.y3a{bottom:453.649500px;}
.y1b7{bottom:454.029000px;}
.y163{bottom:456.165000px;}
.ycd{bottom:458.512500px;}
.y185{bottom:461.248500px;}
.y8c{bottom:462.996000px;}
.y109{bottom:463.461000px;}
.y61{bottom:466.083000px;}
.y1a7{bottom:467.316000px;}
.y131{bottom:470.193000px;}
.y1d6{bottom:470.716500px;}
.yad{bottom:474.093000px;}
.y20b{bottom:475.414500px;}
.y39{bottom:478.872000px;}
.y161{bottom:479.712000px;}
.y1f0{bottom:480.147000px;}
.yee{bottom:480.264000px;}
.y1b6{bottom:480.921000px;}
.yd{bottom:484.864502px;}
.ycc{bottom:485.403000px;}
.y184{bottom:488.140500px;}
.y8b{bottom:489.886500px;}
.y5b{bottom:492.973500px;}
.y12f{bottom:497.083500px;}
.y1d5{bottom:497.608500px;}
.y1a6{bottom:498.690000px;}
.yac{bottom:500.983500px;}
.y20a{bottom:502.305000px;}
.yc{bottom:502.864502px;}
.y130{bottom:503.590500px;}
.y160{bottom:506.602500px;}
.y1ef{bottom:507.037500px;}
.yed{bottom:507.154500px;}
.y108{bottom:509.950500px;}
.ycb{bottom:512.295000px;}
.y225{bottom:513.756000px;}
.y183{bottom:515.031000px;}
.y8a{bottom:516.777000px;}
.y38{bottom:516.849000px;}
.y5a{bottom:519.864000px;}
.yb{bottom:520.864502px;}
.y12e{bottom:523.974000px;}
.y1d4{bottom:524.499000px;}
.y1a5{bottom:525.582000px;}
.yab{bottom:527.874000px;}
.y107{bottom:536.841000px;}
.yec{bottom:537.169500px;}
.ya{bottom:538.864499px;}
.y1b5{bottom:539.185500px;}
.y224{bottom:540.646500px;}
.y37{bottom:542.071500px;}
.y209{bottom:542.209500px;}
.y15e{bottom:543.415500px;}
.y89{bottom:543.669000px;}
.y182{bottom:546.405000px;}
.y59{bottom:546.754500px;}
.y1ee{bottom:548.125500px;}
.y12d{bottom:550.864500px;}
.y15d{bottom:551.283000px;}
.y1d3{bottom:551.389500px;}
.y1a4{bottom:552.472500px;}
.y15c{bottom:555.715500px;}
.y15f{bottom:555.717000px;}
.y9{bottom:556.864499px;}
.yaa{bottom:559.248000px;}
.y105{bottom:563.731500px;}
.yeb{bottom:564.060000px;}
.y1b4{bottom:566.076000px;}
.y36{bottom:567.292500px;}
.y223{bottom:567.537000px;}
.y208{bottom:569.100000px;}
.y106{bottom:570.240000px;}
.yca{bottom:570.559500px;}
.y181{bottom:573.295500px;}
.y58{bottom:573.646500px;}
.y1ed{bottom:575.016000px;}
.y88{bottom:575.043000px;}
.y1a3{bottom:579.363000px;}
.y1d2{bottom:580.485000px;}
.y15b{bottom:586.029000px;}
.ya9{bottom:586.140000px;}
.y12c{bottom:590.367000px;}
.y104{bottom:590.622000px;}
.yea{bottom:590.950500px;}
.y35{bottom:592.515000px;}
.y1b3{bottom:592.966500px;}
.y15a{bottom:593.898000px;}
.yc9{bottom:597.450000px;}
.y159{bottom:598.330500px;}
.y180{bottom:600.186000px;}
.y57{bottom:600.537000px;}
.y87{bottom:601.933500px;}
.y12b{bottom:602.668500px;}
.y1a2{bottom:606.205500px;}
.y1d1{bottom:607.375500px;}
.y207{bottom:609.006000px;}
.y222{bottom:609.372000px;}
.y1a1{bottom:610.737000px;}
.ya8{bottom:613.030500px;}
.y1ec{bottom:616.104000px;}
.y103{bottom:617.514000px;}
.y34{bottom:617.736000px;}
.ye9{bottom:617.841000px;}
.yc8{bottom:624.340500px;}
.y17f{bottom:627.078000px;}
.y56{bottom:627.427500px;}
.y86{bottom:628.824000px;}
.y1b2{bottom:630.849000px;}
.y1a0{bottom:631.444500px;}
.y1d0{bottom:634.266000px;}
.y206{bottom:635.896500px;}
.y221{bottom:636.262500px;}
.y19f{bottom:637.627500px;}
.ya7{bottom:639.921000px;}
.y33{bottom:642.958500px;}
.y1eb{bottom:642.994500px;}
.y102{bottom:644.404500px;}
.ye8{bottom:644.733000px;}
.y8{bottom:645.510000px;}
.yc7{bottom:651.232500px;}
.y17e{bottom:653.968500px;}
.y158{bottom:654.027000px;}
.y55{bottom:654.318000px;}
.y85{bottom:655.714500px;}
.y12a{bottom:658.365000px;}
.y60{bottom:658.801500px;}
.y1cf{bottom:661.156500px;}
.y7{bottom:666.771000px;}
.ya6{bottom:666.811500px;}
.y32{bottom:668.179500px;}
.y1ea{bottom:669.885000px;}
.y101{bottom:671.295000px;}
.ye7{bottom:671.623500px;}
.y205{bottom:675.801000px;}
.y220{bottom:678.097500px;}
.yc5{bottom:678.123000px;}
.y17d{bottom:680.859000px;}
.y54{bottom:681.210000px;}
.y84{bottom:682.606500px;}
.y19e{bottom:682.918500px;}
.yc6{bottom:684.630000px;}
.y129{bottom:685.257000px;}
.y5f{bottom:685.692000px;}
.y1ce{bottom:688.048500px;}
.y31{bottom:693.402000px;}
.ya5{bottom:693.702000px;}
.y157{bottom:694.218000px;}
.y155{bottom:695.217000px;}
.y19d{bottom:695.218500px;}
.y100{bottom:698.185500px;}
.ye6{bottom:701.637000px;}
.y204{bottom:702.691500px;}
.y21f{bottom:704.989500px;}
.yc4{bottom:705.013500px;}
.y156{bottom:707.517000px;}
.y53{bottom:708.100500px;}
.y83{bottom:709.497000px;}
.y1e9{bottom:710.973000px;}
.y128{bottom:712.147500px;}
.y17c{bottom:712.233000px;}
.y5e{bottom:712.584000px;}
.y1cd{bottom:714.939000px;}
.y154{bottom:719.649000px;}
.ya4{bottom:720.594000px;}
.y6{bottom:726.298500px;}
.ye5{bottom:728.529000px;}
.y2a{bottom:729.769056px;}
.yc3{bottom:731.904000px;}
.y30{bottom:732.858000px;}
.y82{bottom:736.387500px;}
.y1e8{bottom:737.865000px;}
.y17b{bottom:739.123500px;}
.y52{bottom:739.474500px;}
.y1cc{bottom:741.829500px;}
.y203{bottom:742.597500px;}
.y21e{bottom:746.823000px;}
.ya3{bottom:747.484500px;}
.y19c{bottom:748.074000px;}
.yff{bottom:748.078500px;}
.y127{bottom:750.753000px;}
.y3{bottom:752.599495px;}
.ye4{bottom:755.419500px;}
.yc2{bottom:758.796000px;}
.y81{bottom:763.278000px;}
.y1e7{bottom:764.755500px;}
.y17a{bottom:766.015500px;}
.y51{bottom:766.365000px;}
.y1cb{bottom:768.720000px;}
.y202{bottom:769.488000px;}
.y124{bottom:771.508500px;}
.y21d{bottom:773.715000px;}
.ya2{bottom:774.375000px;}
.y152{bottom:776.458500px;}
.ye3{bottom:782.310000px;}
.y141{bottom:785.686500px;}
.y126{bottom:788.545500px;}
.y153{bottom:788.758500px;}
.y19b{bottom:789.369000px;}
.y80{bottom:790.170000px;}
.y29{bottom:792.167137px;}
.y179{bottom:792.906000px;}
.y50{bottom:793.255500px;}
.y125{bottom:793.924500px;}
.y1ca{bottom:795.610500px;}
.y201{bottom:796.378500px;}
.y151{bottom:800.890500px;}
.y19a{bottom:801.670500px;}
.ya1{bottom:805.749000px;}
.y1e6{bottom:805.843500px;}
.ye2{bottom:809.200500px;}
.y140{bottom:812.577000px;}
.y21c{bottom:815.550000px;}
.y7f{bottom:817.060500px;}
.y178{bottom:819.796500px;}
.y4f{bottom:820.147500px;}
.y28{bottom:821.417135px;}
.yfe{bottom:821.544000px;}
.y1c9{bottom:824.706000px;}
.y2f{bottom:828.316500px;}
.ya0{bottom:832.639500px;}
.y1e5{bottom:832.734000px;}
.y123{bottom:833.191500px;}
.ye1{bottom:836.092500px;}
.y200{bottom:836.283000px;}
.y13f{bottom:839.467500px;}
.y7e{bottom:843.951000px;}
.y177{bottom:846.687000px;}
.y4e{bottom:847.038000px;}
.yfd{bottom:848.434500px;}
.y1c8{bottom:851.596500px;}
.y150{bottom:855.567000px;}
.y14e{bottom:856.566000px;}
.y199{bottom:856.819500px;}
.y21b{bottom:857.383500px;}
.y9f{bottom:859.531500px;}
.ye0{bottom:862.983000px;}
.y1ff{bottom:863.173500px;}
.y14f{bottom:868.867500px;}
.y27{bottom:869.893139px;}
.y7d{bottom:870.841500px;}
.y176{bottom:873.577500px;}
.y1e4{bottom:873.822000px;}
.y4d{bottom:873.928500px;}
.yfc{bottom:875.325000px;}
.y2e{bottom:877.623000px;}
.y1c7{bottom:878.487000px;}
.y198{bottom:879.180000px;}
.y2{bottom:879.369000px;}
.y14d{bottom:880.998000px;}
.y122{bottom:882.337500px;}
.y197{bottom:883.711500px;}
.y21a{bottom:884.275500px;}
.y9e{bottom:886.422000px;}
.ydf{bottom:889.873500px;}
.y1fe{bottom:890.065500px;}
.yc1{bottom:897.733500px;}
.y1e3{bottom:900.525000px;}
.y1e2{bottom:900.712500px;}
.y4c{bottom:900.819000px;}
.y26{bottom:901.393137px;}
.y7c{bottom:902.215500px;}
.y5d{bottom:905.302500px;}
.y1c6{bottom:905.379000px;}
.y219{bottom:911.166000px;}
.y9d{bottom:913.312500px;}
.y175{bottom:915.366000px;}
.yde{bottom:916.764000px;}
.y174{bottom:919.896000px;}
.yc0{bottom:924.435000px;}
.ybf{bottom:924.624000px;}
.y14c{bottom:927.711000px;}
.y196{bottom:928.384500px;}
.y7b{bottom:929.107500px;}
.y194{bottom:929.383500px;}
.y1fd{bottom:929.970000px;}
.y4b{bottom:932.193000px;}
.y1c5{bottom:932.269500px;}
.y25{bottom:932.893136px;}
.y121{bottom:938.034000px;}
.y9c{bottom:940.203000px;}
.y195{bottom:941.685000px;}
.y1e1{bottom:941.800500px;}
.y2d{bottom:942.387000px;}
.ydd{bottom:943.656000px;}
.y173{bottom:946.786500px;}
.ybe{bottom:951.514500px;}
.y218{bottom:953.001000px;}
.y193{bottom:953.815500px;}
.y14b{bottom:954.601500px;}
.y7a{bottom:955.998000px;}
.y1fc{bottom:956.860500px;}
.y4a{bottom:959.085000px;}
.y1c4{bottom:961.363500px;}
.y120{bottom:964.924500px;}
.y1{bottom:966.726000px;}
.y9b{bottom:967.095000px;}
.y1e0{bottom:968.691000px;}
.ybd{bottom:978.405000px;}
.y217{bottom:979.702500px;}
.y216{bottom:979.891500px;}
.y79{bottom:982.888500px;}
.y49{bottom:985.975500px;}
.y1c3{bottom:988.254000px;}
.y2c{bottom:988.750500px;}
.ydc{bottom:992.188500px;}
.y5c{bottom:992.482500px;}
.y1df{bottom:995.394000px;}
.y1de{bottom:995.583000px;}
.y1fb{bottom:996.765000px;}
.y11f{bottom:1003.530000px;}
.y172{bottom:1003.566000px;}
.ybc{bottom:1005.295500px;}
.y78{bottom:1009.779000px;}
.y48{bottom:1012.866000px;}
.y1c2{bottom:1015.146000px;}
.y192{bottom:1016.334000px;}
.y9a{bottom:1016.988000px;}
.y215{bottom:1021.726500px;}
.y1fa{bottom:1023.657000px;}
.y11c{bottom:1024.285500px;}
.ybb{bottom:1032.187500px;}
.y2b{bottom:1035.114000px;}
.y77{bottom:1036.671000px;}
.y47{bottom:1039.756500px;}
.y11e{bottom:1041.322500px;}
.y1c1{bottom:1042.036500px;}
.y191{bottom:1044.511500px;}
.y18f{bottom:1045.510500px;}
.y11d{bottom:1046.701500px;}
.y214{bottom:1048.617000px;}
.y171{bottom:1049.344500px;}
.y190{bottom:1057.812000px;}
.yba{bottom:1059.078000px;}
.y170{bottom:1061.646000px;}
.y76{bottom:1063.561500px;}
.y46{bottom:1066.647000px;}
.y1c0{bottom:1068.927000px;}
.y18e{bottom:1069.944000px;}
.y11b{bottom:1085.968500px;}
.y75{bottom:1090.452000px;}
.y45{bottom:1116.541500px;}
.y74{bottom:1117.342500px;}
.y24{bottom:1125.496084px;}
.y226{bottom:1142.867195px;}
.y227{bottom:1167.749951px;}
.h24{height:2.869248px;}
.h17{height:31.382100px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h20{height:33.665702px;}
.h1b{height:35.865450px;}
.h3b{height:40.826735px;}
.hf{height:43.189198px;}
.hc{height:43.273474px;}
.h4a{height:43.909276px;}
.h18{height:44.831700px;}
.h7{height:45.960000px;}
.h15{height:47.127312px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h16{height:49.090950px;}
.h1d{height:51.287808px;}
.h25{height:51.359539px;}
.h35{height:51.439715px;}
.h4b{height:51.839998px;}
.h3c{height:52.578970px;}
.h43{height:52.759715px;}
.h3f{height:52.765715px;}
.h19{height:53.798400px;}
.h2{height:55.152000px;}
.h2e{height:56.347715px;}
.h32{height:56.353715px;}
.h22{height:56.665248px;}
.he{height:60.458397px;}
.h1c{height:61.893450px;}
.h27{height:64.243248px;}
.h14{height:64.557900px;}
.hd{height:65.264937px;}
.h1e{height:66.542870px;}
.h47{height:68.970624px;}
.h3e{height:70.698970px;}
.h3a{height:70.885715px;}
.h49{height:71.528400px;}
.h2a{height:71.534400px;}
.h3d{height:71.918400px;}
.h44{height:71.924400px;}
.h2f{height:74.077715px;}
.h1a{height:74.370528px;}
.h13{height:76.067700px;}
.h5{height:78.132000px;}
.h48{height:78.530400px;}
.h21{height:78.536400px;}
.h11{height:92.981250px;}
.h28{height:99.809808px;}
.h26{height:99.815808px;}
.h46{height:100.487808px;}
.h31{height:100.493808px;}
.h34{height:101.287715px;}
.h39{height:102.998400px;}
.h37{height:103.004400px;}
.h2c{height:106.709539px;}
.h41{height:106.715539px;}
.h12{height:109.545900px;}
.h36{height:110.421450px;}
.h45{height:110.427450px;}
.h1f{height:111.176870px;}
.h29{height:114.687450px;}
.h33{height:117.545808px;}
.h4{height:119.055004px;}
.h23{height:125.533248px;}
.h30{height:128.151450px;}
.h2d{height:155.243539px;}
.h38{height:159.621450px;}
.h2b{height:159.791539px;}
.h42{height:160.013539px;}
.h40{height:160.019539px;}
.h0{height:1262.833500px;}
.h10{height:1262.835000px;}
.h1{height:1263.000000px;}
.hb{height:1263.374947px;}
.ha{height:1263.374968px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.914000px;}
.w3{width:893.249963px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc4{left:85.139996px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1e{left:125.173500px;}
.x14{left:127.558500px;}
.x66{left:135.075000px;}
.xc3{left:138.607500px;}
.xc2{left:139.915500px;}
.xbf{left:143.250000px;}
.xc0{left:145.117500px;}
.xc{left:148.095000px;}
.x13{left:154.458000px;}
.x3a{left:158.406000px;}
.xd{left:159.733500px;}
.xb7{left:161.022000px;}
.x7c{left:162.136500px;}
.x23{left:163.486500px;}
.x95{left:166.114500px;}
.xc1{left:167.379000px;}
.x71{left:168.816000px;}
.x12{left:171.456000px;}
.x2e{left:173.101500px;}
.x25{left:174.879000px;}
.x3f{left:180.898500px;}
.x3c{left:184.293000px;}
.x26{left:186.457500px;}
.x27{left:191.029500px;}
.x11{left:196.002000px;}
.x29{left:198.825000px;}
.x4{left:203.484001px;}
.x7d{left:205.599000px;}
.x28{left:207.190500px;}
.x72{left:209.415000px;}
.x24{left:213.735000px;}
.x16{left:217.272000px;}
.x40{left:220.582500px;}
.x96{left:222.415500px;}
.x9e{left:225.978000px;}
.x79{left:227.086500px;}
.x6{left:228.543608px;}
.x58{left:230.482500px;}
.x17{left:231.736500px;}
.xbd{left:235.335000px;}
.x53{left:236.917500px;}
.x55{left:238.989000px;}
.xb0{left:242.125500px;}
.x84{left:243.696000px;}
.x45{left:249.228000px;}
.xa2{left:250.761000px;}
.x97{left:253.068000px;}
.x9f{left:254.721000px;}
.x2a{left:261.795000px;}
.x7a{left:262.989000px;}
.x56{left:265.155000px;}
.x2b{left:274.719000px;}
.xe{left:276.594000px;}
.x7b{left:280.008000px;}
.x85{left:281.209500px;}
.xa3{left:282.607500px;}
.xab{left:283.915500px;}
.x7{left:285.672512px;}
.x87{left:287.506500px;}
.xb2{left:289.768500px;}
.x54{left:291.571500px;}
.xae{left:294.822000px;}
.x91{left:298.020000px;}
.x73{left:306.216000px;}
.x57{left:308.217000px;}
.x90{left:312.688500px;}
.xb{left:314.296225px;}
.xac{left:319.140000px;}
.x88{left:323.890500px;}
.x92{left:327.831000px;}
.x74{left:331.537500px;}
.x64{left:332.697000px;}
.x31{left:334.464000px;}
.x3b{left:337.405500px;}
.x59{left:339.495000px;}
.x75{left:340.774500px;}
.x83{left:342.274500px;}
.x65{left:346.824000px;}
.x8{left:348.549462px;}
.x80{left:350.944500px;}
.x4d{left:353.319000px;}
.x93{left:362.589000px;}
.x76{left:366.096000px;}
.x6d{left:367.467000px;}
.xa8{left:369.079500px;}
.xaa{left:370.437000px;}
.x5c{left:372.526500px;}
.x9{left:373.868488px;}
.xa{left:376.716144px;}
.x86{left:381.843000px;}
.x4e{left:385.035000px;}
.x8f{left:387.244500px;}
.x6e{left:388.504500px;}
.xf{left:391.399500px;}
.x4a{left:393.315000px;}
.x3e{left:397.240500px;}
.x18{left:399.594000px;}
.x94{left:401.365500px;}
.x5a{left:402.925500px;}
.x5d{left:403.966500px;}
.x6c{left:405.280500px;}
.x3d{left:406.338000px;}
.x32{left:411.138000px;}
.x19{left:412.161000px;}
.xa9{left:413.536500px;}
.x10{left:415.104000px;}
.x7e{left:419.179500px;}
.x34{left:423.358500px;}
.x33{left:425.157000px;}
.xb3{left:426.808500px;}
.x48{left:428.680500px;}
.xa0{left:431.746500px;}
.x4b{left:434.086500px;}
.x42{left:437.382000px;}
.x43{left:440.055000px;}
.x15{left:441.973500px;}
.x4f{left:443.310000px;}
.xba{left:445.212000px;}
.x41{left:446.479500px;}
.xb8{left:447.700500px;}
.x89{left:452.731500px;}
.x3{left:454.959000px;}
.x99{left:456.022500px;}
.xb4{left:461.259000px;}
.x6f{left:462.792000px;}
.x44{left:466.273500px;}
.x4c{left:467.304000px;}
.x5e{left:474.454500px;}
.x5b{left:476.853000px;}
.x35{left:478.954500px;}
.x2c{left:483.721500px;}
.x70{left:485.311500px;}
.x36{left:489.381000px;}
.x1f{left:493.321500px;}
.x9a{left:496.444500px;}
.x2d{left:500.163000px;}
.xad{left:503.350500px;}
.x20{left:506.013000px;}
.xb1{left:512.664000px;}
.x5f{left:516.261000px;}
.xb9{left:524.499000px;}
.x8a{left:526.023000px;}
.x1c{left:527.817000px;}
.x60{left:532.176000px;}
.xa5{left:537.895500px;}
.x8b{left:545.436000px;}
.xbc{left:572.232000px;}
.x67{left:575.362500px;}
.xa6{left:584.142000px;}
.x8c{left:586.531500px;}
.x61{left:599.484000px;}
.x68{left:601.804500px;}
.xa1{left:602.989500px;}
.xb5{left:607.735500px;}
.xbb{left:611.629500px;}
.xa4{left:613.842000px;}
.x1d{left:615.783000px;}
.x37{left:617.488500px;}
.xbe{left:623.286000px;}
.x49{left:625.587000px;}
.x2f{left:630.159000px;}
.xa7{left:641.337000px;}
.x46{left:648.426000px;}
.x1a{left:653.002500px;}
.xaf{left:655.945500px;}
.x1b{left:663.822000px;}
.x30{left:667.191000px;}
.x7f{left:669.268500px;}
.x50{left:676.590000px;}
.x8d{left:677.641500px;}
.x47{left:679.039500px;}
.x38{left:684.145500px;}
.x39{left:695.716500px;}
.x6b{left:696.780000px;}
.x77{left:703.144500px;}
.x5{left:706.649587px;}
.x9b{left:707.725500px;}
.x62{left:709.471500px;}
.xb6{left:711.474000px;}
.x22{left:716.590500px;}
.x21{left:717.900000px;}
.x63{left:722.175000px;}
.x8e{left:724.417500px;}
.x51{left:729.274500px;}
.x82{left:733.524000px;}
.x78{left:737.701500px;}
.x9c{left:738.912000px;}
.x81{left:742.489500px;}
.x69{left:748.884000px;}
.x9d{left:750.858000px;}
.x98{left:752.668500px;}
.x52{left:758.629500px;}
.x6a{left:763.023000px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v8{vertical-align:-9.562667pt;}
.v16{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v18{vertical-align:12.101333pt;}
.ve{vertical-align:15.765333pt;}
.v12{vertical-align:18.421333pt;}
.v7{vertical-align:21.989333pt;}
.v4{vertical-align:23.136000pt;}
.v17{vertical-align:25.104000pt;}
.vd{vertical-align:26.325333pt;}
.v2{vertical-align:27.765333pt;}
.v1{vertical-align:39.989333pt;}
.v5{vertical-align:41.328000pt;}
.vb{vertical-align:43.136000pt;}
.v9{vertical-align:47.818667pt;}
.v10{vertical-align:49.200000pt;}
.vf{vertical-align:51.642667pt;}
.vc{vertical-align:54.554667pt;}
.v13{vertical-align:66.272000pt;}
.v6{vertical-align:81.002667pt;}
.v11{vertical-align:82.032000pt;}
.v14{vertical-align:86.869333pt;}
.va{vertical-align:109.034667pt;}
.v15{vertical-align:110.005333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls69{letter-spacing:0.000145pt;}
.ls78{letter-spacing:0.000420pt;}
.lsa1{letter-spacing:0.000990pt;}
.ls53{letter-spacing:0.001067pt;}
.ls23{letter-spacing:0.001146pt;}
.ls56{letter-spacing:0.001309pt;}
.ls1a{letter-spacing:0.001321pt;}
.ls6d{letter-spacing:0.001980pt;}
.ls22{letter-spacing:0.002377pt;}
.ls8{letter-spacing:0.002452pt;}
.ls5f{letter-spacing:0.002717pt;}
.ls21{letter-spacing:0.002836pt;}
.ls9a{letter-spacing:0.003608pt;}
.ls5e{letter-spacing:0.003903pt;}
.ls37{letter-spacing:0.004313pt;}
.ls2d{letter-spacing:0.004710pt;}
.ls5c{letter-spacing:0.005129pt;}
.ls16{letter-spacing:0.006654pt;}
.ls9b{letter-spacing:1.526160pt;}
.ls5b{letter-spacing:1.728908pt;}
.ls8d{letter-spacing:1.734241pt;}
.ls31{letter-spacing:2.283769pt;}
.ls8e{letter-spacing:2.287544pt;}
.ls64{letter-spacing:2.292878pt;}
.ls6f{letter-spacing:2.653258pt;}
.ls98{letter-spacing:2.656473pt;}
.ls2{letter-spacing:2.656533pt;}
.ls24{letter-spacing:2.657146pt;}
.ls76{letter-spacing:2.658591pt;}
.ls1f{letter-spacing:2.662479pt;}
.ls99{letter-spacing:4.907189pt;}
.ls8c{letter-spacing:5.105323pt;}
.ls50{letter-spacing:5.110656pt;}
.ls8a{letter-spacing:5.654631pt;}
.ls88{letter-spacing:5.659964pt;}
.ls51{letter-spacing:6.377248pt;}
.lsa{letter-spacing:6.807576pt;}
.ls10{letter-spacing:6.812909pt;}
.ls77{letter-spacing:7.123461pt;}
.ls43{letter-spacing:7.180320pt;}
.ls2b{letter-spacing:7.185653pt;}
.ls34{letter-spacing:8.926783pt;}
.ls1e{letter-spacing:8.932116pt;}
.ls94{letter-spacing:9.026591pt;}
.ls6a{letter-spacing:9.031925pt;}
.ls42{letter-spacing:10.624990pt;}
.ls13{letter-spacing:10.625145pt;}
.ls8b{letter-spacing:10.626452pt;}
.lse{letter-spacing:10.626591pt;}
.ls35{letter-spacing:10.626836pt;}
.ls20{letter-spacing:10.630479pt;}
.ls25{letter-spacing:10.632170pt;}
.ls2f{letter-spacing:12.358241pt;}
.ls19{letter-spacing:13.286479pt;}
.ls54{letter-spacing:13.456990pt;}
.ls55{letter-spacing:13.457309pt;}
.ls7a{letter-spacing:14.164905pt;}
.ls4e{letter-spacing:14.165478pt;}
.ls65{letter-spacing:14.166323pt;}
.ls27{letter-spacing:14.166642pt;}
.ls26{letter-spacing:14.167786pt;}
.ls3c{letter-spacing:14.170238pt;}
.ls5a{letter-spacing:14.170462pt;}
.ls5d{letter-spacing:14.170812pt;}
.ls60{letter-spacing:14.171657pt;}
.ls29{letter-spacing:14.171976pt;}
.ls79{letter-spacing:15.899575pt;}
.ls87{letter-spacing:15.934582pt;}
.ls57{letter-spacing:15.937067pt;}
.ls71{letter-spacing:15.940313pt;}
.lsaf{letter-spacing:15.941478pt;}
.ls44{letter-spacing:15.942400pt;}
.ls1d{letter-spacing:16.283964pt;}
.ls61{letter-spacing:16.458211pt;}
.ls28{letter-spacing:16.827812pt;}
.ls7{letter-spacing:17.431576pt;}
.ls9{letter-spacing:17.436909pt;}
.ls18{letter-spacing:17.636905pt;}
.ls82{letter-spacing:17.675575pt;}
.lsd{letter-spacing:17.706238pt;}
.ls7c{letter-spacing:17.707976pt;}
.ls3d{letter-spacing:17.708646pt;}
.ls86{letter-spacing:17.710582pt;}
.ls72{letter-spacing:17.710979pt;}
.lsc{letter-spacing:17.711572pt;}
.ls4d{letter-spacing:17.713145pt;}
.ls84{letter-spacing:17.713309pt;}
.ls47{letter-spacing:17.714497pt;}
.ls46{letter-spacing:17.717129pt;}
.lsa9{letter-spacing:17.721248pt;}
.lsab{letter-spacing:17.722238pt;}
.lsaa{letter-spacing:17.725577pt;}
.ls91{letter-spacing:17.770238pt;}
.lsa0{letter-spacing:17.802462pt;}
.ls9f{letter-spacing:17.802812pt;}
.ls6{letter-spacing:17.807572pt;}
.lsae{letter-spacing:18.594591pt;}
.ls1c{letter-spacing:18.598479pt;}
.ls8f{letter-spacing:19.270656pt;}
.lsa8{letter-spacing:19.456908pt;}
.ls2e{letter-spacing:19.556116pt;}
.ls33{letter-spacing:19.561449pt;}
.ls5{letter-spacing:20.102654pt;}
.ls9d{letter-spacing:20.218238pt;}
.ls6e{letter-spacing:20.365258pt;}
.ls45{letter-spacing:20.368092pt;}
.ls81{letter-spacing:21.135572pt;}
.ls7e{letter-spacing:21.139915pt;}
.lsa6{letter-spacing:21.221753pt;}
.lsa7{letter-spacing:21.222323pt;}
.lsa2{letter-spacing:21.232435pt;}
.ls30{letter-spacing:21.350986pt;}
.ls3{letter-spacing:21.472990pt;}
.ls4{letter-spacing:21.473309pt;}
.ls96{letter-spacing:21.947575pt;}
.ls4f{letter-spacing:22.817323pt;}
.lsa5{letter-spacing:22.955575pt;}
.lsb{letter-spacing:23.023956pt;}
.lsf{letter-spacing:23.029289pt;}
.ls36{letter-spacing:23.097449pt;}
.ls63{letter-spacing:23.102783pt;}
.ls58{letter-spacing:23.126986pt;}
.ls74{letter-spacing:23.202591pt;}
.ls4c{letter-spacing:23.231572pt;}
.ls9e{letter-spacing:23.366631pt;}
.ls67{letter-spacing:23.371964pt;}
.ls90{letter-spacing:23.430631pt;}
.ls1b{letter-spacing:23.439804pt;}
.lsa3{letter-spacing:23.508878pt;}
.ls80{letter-spacing:23.789258pt;}
.ls59{letter-spacing:24.084905pt;}
.ls7b{letter-spacing:24.087786pt;}
.ls3a{letter-spacing:24.102642pt;}
.ls3e{letter-spacing:24.575572pt;}
.ls2a{letter-spacing:24.873449pt;}
.ls62{letter-spacing:24.892320pt;}
.ls6b{letter-spacing:24.897653pt;}
.ls6c{letter-spacing:24.992420pt;}
.ls49{letter-spacing:25.914238pt;}
.ls4a{letter-spacing:25.915976pt;}
.ls15{letter-spacing:26.372905pt;}
.ls12{letter-spacing:26.378238pt;}
.ls14{letter-spacing:26.382626pt;}
.ls11{letter-spacing:26.385145pt;}
.ls40{letter-spacing:26.465980pt;}
.ls41{letter-spacing:26.466497pt;}
.ls17{letter-spacing:26.564116pt;}
.lsac{letter-spacing:26.638783pt;}
.ls66{letter-spacing:26.644116pt;}
.ls92{letter-spacing:26.702783pt;}
.ls83{letter-spacing:26.738591pt;}
.ls7f{letter-spacing:28.321653pt;}
.lsa4{letter-spacing:28.344794pt;}
.ls9c{letter-spacing:29.248473pt;}
.ls39{letter-spacing:31.292320pt;}
.ls2c{letter-spacing:31.589183pt;}
.ls85{letter-spacing:31.846613pt;}
.lsad{letter-spacing:31.883733pt;}
.ls89{letter-spacing:32.102701pt;}
.ls4b{letter-spacing:32.164116pt;}
.ls48{letter-spacing:34.852116pt;}
.ls3b{letter-spacing:37.673449pt;}
.ls73{letter-spacing:80.388905pt;}
.ls97{letter-spacing:121.076905pt;}
.ls75{letter-spacing:160.804905pt;}
.ls95{letter-spacing:162.326642pt;}
.ls1{letter-spacing:164.718400pt;}
.ls68{letter-spacing:179.300905pt;}
.ls93{letter-spacing:179.306238pt;}
.ls32{letter-spacing:201.024990pt;}
.ls38{letter-spacing:249.451657pt;}
.ls7d{letter-spacing:455.526323pt;}
.ls70{letter-spacing:800.955087pt;}
.ls52{letter-spacing:844.918323pt;}
.ls3f{letter-spacing:863.611657pt;}
.ws7e{word-spacing:-63.761067pt;}
.ws81{word-spacing:-50.479636pt;}
.ws7d{word-spacing:-45.163900pt;}
.ws78{word-spacing:-40.590295pt;}
.wsc4{word-spacing:-38.575445pt;}
.wsc7{word-spacing:-35.068587pt;}
.wsa6{word-spacing:-30.005958pt;}
.ws84{word-spacing:-29.942197pt;}
.ws7c{word-spacing:-29.521250pt;}
.ws9d{word-spacing:-24.795717pt;}
.wsa4{word-spacing:-22.928480pt;}
.ws74{word-spacing:-22.905487pt;}
.wsb5{word-spacing:-22.884941pt;}
.wsc6{word-spacing:-22.868057pt;}
.wsb6{word-spacing:-22.864719pt;}
.ws8c{word-spacing:-22.859803pt;}
.ws97{word-spacing:-22.356856pt;}
.wsa7{word-spacing:-21.756913pt;}
.wsb2{word-spacing:-21.143170pt;}
.wsbf{word-spacing:-20.358289pt;}
.wsb0{word-spacing:-19.485382pt;}
.ws89{word-spacing:-19.357860pt;}
.wsa5{word-spacing:-19.315545pt;}
.wsad{word-spacing:-19.288808pt;}
.wsbd{word-spacing:-19.283475pt;}
.ws24{word-spacing:-18.554470pt;}
.ws34{word-spacing:-17.725577pt;}
.ws75{word-spacing:-17.343010pt;}
.wsc{word-spacing:-16.174559pt;}
.ws11{word-spacing:-15.461955pt;}
.ws9b{word-spacing:-14.129452pt;}
.wsd8{word-spacing:-7.651328pt;}
.wsca{word-spacing:-7.396284pt;}
.wsaf{word-spacing:-7.268762pt;}
.ws46{word-spacing:-7.205001pt;}
.ws49{word-spacing:-7.077478pt;}
.wsae{word-spacing:-6.822434pt;}
.ws83{word-spacing:-6.739596pt;}
.ws8d{word-spacing:-6.734433pt;}
.wsac{word-spacing:-6.719439pt;}
.ws8f{word-spacing:-6.694912pt;}
.ws6b{word-spacing:-6.439868pt;}
.ws51{word-spacing:-6.376107pt;}
.ws58{word-spacing:-5.866018pt;}
.ws44{word-spacing:-5.674735pt;}
.ws43{word-spacing:-5.610974pt;}
.ws5{word-spacing:-5.527277pt;}
.wsd5{word-spacing:-5.483452pt;}
.ws40{word-spacing:-5.164646pt;}
.ws47{word-spacing:-5.100885pt;}
.ws6c{word-spacing:-5.037124pt;}
.ws60{word-spacing:-4.973363pt;}
.ws16{word-spacing:-4.909602pt;}
.ws48{word-spacing:-4.782080pt;}
.wsa0{word-spacing:-4.728914pt;}
.ws26{word-spacing:-4.718319pt;}
.ws53{word-spacing:-4.590797pt;}
.ws1{word-spacing:-4.518200pt;}
.ws2{word-spacing:-4.517200pt;}
.ws19{word-spacing:-4.399514pt;}
.ws27{word-spacing:-4.271991pt;}
.ws29{word-spacing:-4.208230pt;}
.wscf{word-spacing:-4.080708pt;}
.ws56{word-spacing:-4.016947pt;}
.ws1d{word-spacing:-3.953186pt;}
.ws6e{word-spacing:-3.889425pt;}
.ws4a{word-spacing:-3.825664pt;}
.ws23{word-spacing:-3.761903pt;}
.ws32{word-spacing:-3.698142pt;}
.ws6a{word-spacing:-3.506859pt;}
.ws4{word-spacing:-3.432730pt;}
.ws28{word-spacing:-3.389199pt;}
.ws3c{word-spacing:-3.379337pt;}
.ws86{word-spacing:-3.347434pt;}
.ws4f{word-spacing:-3.251814pt;}
.ws8b{word-spacing:-3.188053pt;}
.wsab{word-spacing:-3.176643pt;}
.ws90{word-spacing:-3.174234pt;}
.ws3{word-spacing:-3.137036pt;}
.ws5f{word-spacing:-3.060531pt;}
.ws15{word-spacing:-2.996770pt;}
.ws6f{word-spacing:-2.933009pt;}
.ws21{word-spacing:-2.869248pt;}
.ws87{word-spacing:-2.816095pt;}
.ws18{word-spacing:-2.805487pt;}
.ws1c{word-spacing:-2.741726pt;}
.ws3e{word-spacing:-2.677965pt;}
.ws7{word-spacing:-2.676366pt;}
.wsde{word-spacing:-2.614997pt;}
.wsdb{word-spacing:-2.614673pt;}
.ws79{word-spacing:-2.614656pt;}
.wsda{word-spacing:-2.614400pt;}
.ws17{word-spacing:-2.614204pt;}
.wsdc{word-spacing:-2.614016pt;}
.ws8e{word-spacing:-2.613956pt;}
.wse0{word-spacing:-2.613905pt;}
.wsaa{word-spacing:-2.613897pt;}
.wse2{word-spacing:-2.612992pt;}
.ws91{word-spacing:-2.612864pt;}
.ws6d{word-spacing:-2.603559pt;}
.ws14{word-spacing:-2.550443pt;}
.ws6{word-spacing:-2.501820pt;}
.ws85{word-spacing:-2.497292pt;}
.ws2a{word-spacing:-2.486682pt;}
.ws3d{word-spacing:-2.422921pt;}
.wsd{word-spacing:-2.391024pt;}
.wsa{word-spacing:-2.385457pt;}
.ws13{word-spacing:-2.359159pt;}
.wsdd{word-spacing:-2.300134pt;}
.ws54{word-spacing:-2.295398pt;}
.ws3f{word-spacing:-2.231637pt;}
.ws37{word-spacing:-2.231622pt;}
.wse{word-spacing:-2.178489pt;}
.ws30{word-spacing:-2.167876pt;}
.ws9{word-spacing:-2.152729pt;}
.ws38{word-spacing:-2.125355pt;}
.ws62{word-spacing:-2.104115pt;}
.wsf{word-spacing:-2.072221pt;}
.ws3a{word-spacing:-2.019087pt;}
.ws2e{word-spacing:-1.976593pt;}
.ws36{word-spacing:-1.965953pt;}
.ws1f{word-spacing:-1.912832pt;}
.ws3b{word-spacing:-1.912819pt;}
.wsa9{word-spacing:-1.849071pt;}
.ws64{word-spacing:-1.789090pt;}
.wsd1{word-spacing:-1.788510pt;}
.ws59{word-spacing:-1.785310pt;}
.wsb7{word-spacing:-1.783177pt;}
.ws57{word-spacing:-1.721549pt;}
.wse4{word-spacing:-1.657788pt;}
.wsb{word-spacing:-1.629092pt;}
.wsce{word-spacing:-1.594027pt;}
.ws71{word-spacing:-1.530266pt;}
.ws61{word-spacing:-1.520769pt;}
.ws4e{word-spacing:-1.487748pt;}
.ws5b{word-spacing:-1.402743pt;}
.ws41{word-spacing:-1.338982pt;}
.ws39{word-spacing:-1.328347pt;}
.ws73{word-spacing:-1.275221pt;}
.wsb8{word-spacing:-1.211460pt;}
.ws55{word-spacing:-1.147699pt;}
.ws69{word-spacing:-1.083938pt;}
.ws8{word-spacing:-1.047274pt;}
.ws70{word-spacing:-0.956416pt;}
.ws4d{word-spacing:-0.956410pt;}
.ws25{word-spacing:-0.892655pt;}
.wsd2{word-spacing:-0.743874pt;}
.wsba{word-spacing:-0.701372pt;}
.wsb9{word-spacing:-0.637611pt;}
.wsd3{word-spacing:-0.584473pt;}
.wsd4{word-spacing:-0.573850pt;}
.wsc1{word-spacing:-0.558630pt;}
.ws33{word-spacing:-0.510089pt;}
.ws76{word-spacing:-0.382566pt;}
.wsa2{word-spacing:-0.255044pt;}
.ws20{word-spacing:-0.191283pt;}
.ws93{word-spacing:-0.127522pt;}
.wsd6{word-spacing:-0.091815pt;}
.wsbc{word-spacing:-0.063761pt;}
.wsb1{word-spacing:-0.053134pt;}
.wsbe{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.063761pt;}
.ws1e{word-spacing:0.127522pt;}
.ws2d{word-spacing:0.191283pt;}
.ws63{word-spacing:0.255044pt;}
.ws7a{word-spacing:0.318805pt;}
.ws8a{word-spacing:0.346771pt;}
.ws92{word-spacing:0.352104pt;}
.ws50{word-spacing:0.382566pt;}
.wsc3{word-spacing:0.446327pt;}
.ws35{word-spacing:0.510089pt;}
.ws9e{word-spacing:0.637611pt;}
.ws66{word-spacing:0.701372pt;}
.ws5a{word-spacing:0.765133pt;}
.ws45{word-spacing:0.828894pt;}
.ws7f{word-spacing:0.892655pt;}
.ws9a{word-spacing:0.956416pt;}
.ws77{word-spacing:1.083938pt;}
.ws88{word-spacing:1.115811pt;}
.ws1b{word-spacing:1.211460pt;}
.ws2b{word-spacing:1.275221pt;}
.ws42{word-spacing:1.402743pt;}
.ws2f{word-spacing:1.530266pt;}
.ws9c{word-spacing:1.594027pt;}
.ws4c{word-spacing:1.657788pt;}
.wsa1{word-spacing:1.785310pt;}
.ws82{word-spacing:1.849071pt;}
.ws94{word-spacing:1.912832pt;}
.ws95{word-spacing:1.976593pt;}
.wsdf{word-spacing:2.040354pt;}
.ws2c{word-spacing:2.104115pt;}
.ws5c{word-spacing:2.167876pt;}
.ws72{word-spacing:2.231637pt;}
.wscb{word-spacing:2.359159pt;}
.wscc{word-spacing:2.422921pt;}
.wse3{word-spacing:2.676062pt;}
.wscd{word-spacing:2.677965pt;}
.wsd9{word-spacing:2.741726pt;}
.ws31{word-spacing:2.933009pt;}
.ws96{word-spacing:3.124292pt;}
.ws5d{word-spacing:3.188053pt;}
.ws80{word-spacing:3.236796pt;}
.ws5e{word-spacing:3.251814pt;}
.wsa8{word-spacing:3.761903pt;}
.wsc5{word-spacing:3.889425pt;}
.ws52{word-spacing:4.016947pt;}
.ws65{word-spacing:4.080708pt;}
.ws1a{word-spacing:4.144469pt;}
.ws67{word-spacing:4.208230pt;}
.wsc0{word-spacing:4.271991pt;}
.ws68{word-spacing:4.399514pt;}
.wsd7{word-spacing:4.654558pt;}
.wse1{word-spacing:7.141239pt;}
.ws99{word-spacing:9.117833pt;}
.wsc8{word-spacing:12.522673pt;}
.ws9f{word-spacing:13.134780pt;}
.ws98{word-spacing:13.836151pt;}
.wsb4{word-spacing:15.823783pt;}
.wsd0{word-spacing:15.875959pt;}
.wsc2{word-spacing:15.876506pt;}
.wsbb{word-spacing:15.980416pt;}
.ws12{word-spacing:22.862051pt;}
.wsc9{word-spacing:22.890223pt;}
.ws7b{word-spacing:22.997364pt;}
.ws10{word-spacing:26.992004pt;}
.ws22{word-spacing:91.723651pt;}
.wsb3{word-spacing:649.343387pt;}
.wsa3{word-spacing:865.569321pt;}
._29{margin-left:-21.252173pt;}
._2a{margin-left:-17.728930pt;}
._14{margin-left:-8.240655pt;}
._2{margin-left:-7.163000pt;}
._9{margin-left:-5.379134pt;}
._5{margin-left:-4.408000pt;}
._3{margin-left:-3.306000pt;}
._1{margin-left:-2.204000pt;}
._4{margin-left:-1.102000pt;}
._0{width:1.036402pt;}
._13{width:2.030779pt;}
._c{width:3.581232pt;}
._24{width:4.545314pt;}
._23{width:7.180853pt;}
._18{width:12.281922pt;}
._16{width:13.885086pt;}
._11{width:15.183620pt;}
._8{width:16.800738pt;}
._6{width:17.861833pt;}
._1a{width:18.988296pt;}
._7{width:19.898704pt;}
._10{width:21.049638pt;}
._d{width:21.942293pt;}
._1c{width:23.336550pt;}
._e{width:24.968538pt;}
._15{width:26.041394pt;}
._20{width:28.000172pt;}
._1d{width:29.194830pt;}
._f{width:30.125446pt;}
._17{width:31.459665pt;}
._1e{width:32.534535pt;}
._12{width:33.986485pt;}
._1b{width:36.015427pt;}
._2c{width:37.810313pt;}
._25{width:42.524609pt;}
._1f{width:43.733035pt;}
._a{width:49.839567pt;}
._21{width:53.357040pt;}
._2b{width:63.311980pt;}
._19{width:91.815467pt;}
._b{width:106.501558pt;}
._22{width:120.217732pt;}
._27{width:182.980021pt;}
._26{width:772.222050pt;}
._28{width:809.936372pt;}
.fs11{font-size:31.880533pt;}
.fsd{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:42.507200pt;}
.fs5{font-size:53.119997pt;}
.fsb{font-size:53.133867pt;}
.fs8{font-size:53.319997pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.181867pt;}
.fs12{font-size:58.559999pt;}
.fse{font-size:63.761067pt;}
.fs13{font-size:63.999997pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.639997pt;}
.fsa{font-size:76.513067pt;}
.fs6{font-size:82.639997pt;}
.fs2{font-size:90.666667pt;}
.fsf{font-size:91.815467pt;}
.fs9{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:0.000018pt;}
.y5{bottom:59.133337pt;}
.y44{bottom:73.534667pt;}
.y4{bottom:86.333337pt;}
.yfb{bottom:113.385333pt;}
.y43{bottom:113.402667pt;}
.y11a{bottom:116.593333pt;}
.ydb{bottom:118.226667pt;}
.y73{bottom:121.598667pt;}
.y99{bottom:122.412000pt;}
.yda{bottom:123.048000pt;}
.y22{bottom:123.790666pt;}
.y13e{bottom:128.809333pt;}
.yb9{bottom:130.594667pt;}
.y119{bottom:132.533333pt;}
.y72{bottom:132.904000pt;}
.y42{bottom:133.184000pt;}
.yd9{bottom:134.353333pt;}
.yfa{bottom:137.289333pt;}
.y41{bottom:138.004000pt;}
.y98{bottom:138.352000pt;}
.y97{bottom:143.173333pt;}
.y13d{bottom:144.749333pt;}
.y14a{bottom:147.142667pt;}
.y118{bottom:148.473333pt;}
.y71{bottom:148.844000pt;}
.y13c{bottom:149.569333pt;}
.yd8{bottom:150.293333pt;}
.y40{bottom:150.397333pt;}
.yb8{bottom:154.497333pt;}
.y16f{bottom:160.761333pt;}
.yf9{bottom:161.192000pt;}
.y1b1{bottom:163.260000pt;}
.y117{bottom:164.413333pt;}
.y70{bottom:164.784000pt;}
.yd7{bottom:166.233333pt;}
.y1b0{bottom:167.200000pt;}
.y96{bottom:168.537333pt;}
.y3f{bottom:170.178667pt;}
.y149{bottom:171.045333pt;}
.y13b{bottom:174.933333pt;}
.y3e{bottom:174.998667pt;}
.y19{bottom:175.052000pt;}
.y16e{bottom:176.701333pt;}
.yb7{bottom:178.401333pt;}
.y116{bottom:180.354667pt;}
.y6f{bottom:180.725333pt;}
.y16d{bottom:181.522667pt;}
.yd6{bottom:182.173333pt;}
.yf8{bottom:185.094667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yd5{bottom:186.993333pt;}
.y3d{bottom:187.392000pt;}
.y95{bottom:192.440000pt;}
.y147{bottom:195.358667pt;}
.y115{bottom:196.294667pt;}
.y1dd{bottom:196.352000pt;}
.y213{bottom:196.662667pt;}
.y6e{bottom:196.665333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f9{bottom:197.714667pt;}
.y13a{bottom:198.837333pt;}
.yb6{bottom:202.304000pt;}
.y148{bottom:202.352000pt;}
.y16c{bottom:202.858667pt;}
.y146{bottom:206.293333pt;}
.y16b{bottom:206.886667pt;}
.y3c{bottom:207.173333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yf7{bottom:208.997333pt;}
.y1af{bottom:210.885333pt;}
.y3b{bottom:211.993333pt;}
.y114{bottom:212.234667pt;}
.yd4{bottom:212.358667pt;}
.y6d{bottom:212.605333pt;}
.y94{bottom:216.342667pt;}
.y113{bottom:217.054667pt;}
.y6c{bottom:217.425333pt;}
.y1dc{bottom:220.254667pt;}
.y212{bottom:220.565333pt;}
.y1f8{bottom:221.617333pt;}
.y139{bottom:222.740000pt;}
.yb5{bottom:226.206667pt;}
.y1bf{bottom:227.810667pt;}
.y6b{bottom:228.730667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y145{bottom:231.524000pt;}
.yf6{bottom:232.901333pt;}
.y16a{bottom:234.774667pt;}
.y1ae{bottom:234.788000pt;}
.y93{bottom:240.246667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y112{bottom:242.420000pt;}
.y1be{bottom:243.750667pt;}
.y6a{bottom:244.670667pt;}
.y138{bottom:246.642667pt;}
.y18c{bottom:246.648000pt;}
.y18d{bottom:246.649333pt;}
.yb4{bottom:250.109333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y211{bottom:256.036000pt;}
.y1f7{bottom:258.140000pt;}
.y1ad{bottom:258.690667pt;}
.yf5{bottom:259.580000pt;}
.y1bd{bottom:259.690667pt;}
.y69{bottom:260.610667pt;}
.y1db{bottom:260.620000pt;}
.yd3{bottom:263.981333pt;}
.y92{bottom:264.149333pt;}
.y68{bottom:265.432000pt;}
.y111{bottom:266.322667pt;}
.y137{bottom:270.545333pt;}
.y169{bottom:271.482667pt;}
.y144{bottom:274.162667pt;}
.y1bc{bottom:275.632000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yb3{bottom:277.997333pt;}
.y210{bottom:279.940000pt;}
.y1bb{bottom:280.452000pt;}
.y1f6{bottom:281.876000pt;}
.y1f5{bottom:282.042667pt;}
.y168{bottom:282.416000pt;}
.y1ac{bottom:282.593333pt;}
.yf4{bottom:283.482667pt;}
.y18b{bottom:283.793333pt;}
.y110{bottom:284.728000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y18a{bottom:287.820000pt;}
.yd2{bottom:288.052000pt;}
.y10e{bottom:290.225333pt;}
.y67{bottom:290.796000pt;}
.y91{bottom:292.037333pt;}
.y10f{bottom:297.233333pt;}
.y136{bottom:298.433333pt;}
.y1ba{bottom:301.321333pt;}
.yb2{bottom:301.901333pt;}
.y20f{bottom:303.842667pt;}
.yf3{bottom:307.386667pt;}
.y189{bottom:307.696000pt;}
.y10{bottom:309.452000pt;}
.y188{bottom:311.722667pt;}
.yd1{bottom:311.954667pt;}
.y10d{bottom:314.128000pt;}
.y66{bottom:314.698667pt;}
.y90{bottom:315.940000pt;}
.y1f4{bottom:318.565333pt;}
.y1ab{bottom:319.780000pt;}
.y135{bottom:322.337333pt;}
.y1da{bottom:322.804000pt;}
.y143{bottom:323.670667pt;}
.yb1{bottom:325.804000pt;}
.yf2{bottom:331.289333pt;}
.y167{bottom:331.924000pt;}
.yd0{bottom:335.858667pt;}
.y10c{bottom:338.030667pt;}
.y64{bottom:338.601333pt;}
.y20e{bottom:339.313333pt;}
.y8f{bottom:339.842667pt;}
.y1f3{bottom:342.468000pt;}
.y1aa{bottom:343.684000pt;}
.yf{bottom:343.809333pt;}
.y65{bottom:344.386667pt;}
.y134{bottom:346.240000pt;}
.y1d9{bottom:346.706667pt;}
.yb0{bottom:349.706667pt;}
.y1b9{bottom:351.790667pt;}
.yf1{bottom:355.192000pt;}
.y166{bottom:355.828000pt;}
.y142{bottom:358.377333pt;}
.ycf{bottom:359.761333pt;}
.y10b{bottom:361.934667pt;}
.y187{bottom:362.193333pt;}
.y63{bottom:362.504000pt;}
.ye{bottom:362.706666pt;}
.y20d{bottom:363.216000pt;}
.y8e{bottom:363.746667pt;}
.y1a9{bottom:367.586667pt;}
.y133{bottom:370.142667pt;}
.y1d8{bottom:370.609333pt;}
.yaf{bottom:373.609333pt;}
.y1f2{bottom:378.990667pt;}
.yf0{bottom:379.094667pt;}
.y1b8{bottom:379.678667pt;}
.y165{bottom:383.468000pt;}
.yce{bottom:383.664000pt;}
.y186{bottom:386.096000pt;}
.y62{bottom:386.408000pt;}
.y20c{bottom:387.120000pt;}
.y8d{bottom:387.649333pt;}
.y164{bottom:387.789333pt;}
.y1a8{bottom:391.489333pt;}
.y132{bottom:394.045333pt;}
.y1d7{bottom:394.512000pt;}
.yae{bottom:397.513333pt;}
.y162{bottom:398.724000pt;}
.y10a{bottom:402.046667pt;}
.y1f1{bottom:402.893333pt;}
.yef{bottom:402.998667pt;}
.y3a{bottom:403.244000pt;}
.y1b7{bottom:403.581333pt;}
.y163{bottom:405.480000pt;}
.ycd{bottom:407.566667pt;}
.y185{bottom:409.998667pt;}
.y8c{bottom:411.552000pt;}
.y109{bottom:411.965333pt;}
.y61{bottom:414.296000pt;}
.y1a7{bottom:415.392000pt;}
.y131{bottom:417.949333pt;}
.y1d6{bottom:418.414667pt;}
.yad{bottom:421.416000pt;}
.y20b{bottom:422.590667pt;}
.y39{bottom:425.664000pt;}
.y161{bottom:426.410667pt;}
.y1f0{bottom:426.797333pt;}
.yee{bottom:426.901333pt;}
.y1b6{bottom:427.485333pt;}
.yd{bottom:430.990669pt;}
.ycc{bottom:431.469333pt;}
.y184{bottom:433.902667pt;}
.y8b{bottom:435.454667pt;}
.y5b{bottom:438.198667pt;}
.y12f{bottom:441.852000pt;}
.y1d5{bottom:442.318667pt;}
.y1a6{bottom:443.280000pt;}
.yac{bottom:445.318667pt;}
.y20a{bottom:446.493333pt;}
.yc{bottom:446.990669pt;}
.y130{bottom:447.636000pt;}
.y160{bottom:450.313333pt;}
.y1ef{bottom:450.700000pt;}
.yed{bottom:450.804000pt;}
.y108{bottom:453.289333pt;}
.ycb{bottom:455.373333pt;}
.y225{bottom:456.672000pt;}
.y183{bottom:457.805333pt;}
.y8a{bottom:459.357333pt;}
.y38{bottom:459.421333pt;}
.y5a{bottom:462.101333pt;}
.yb{bottom:462.990669pt;}
.y12e{bottom:465.754667pt;}
.y1d4{bottom:466.221333pt;}
.y1a5{bottom:467.184000pt;}
.yab{bottom:469.221333pt;}
.y107{bottom:477.192000pt;}
.yec{bottom:477.484000pt;}
.ya{bottom:478.990666pt;}
.y1b5{bottom:479.276000pt;}
.y224{bottom:480.574667pt;}
.y37{bottom:481.841333pt;}
.y209{bottom:481.964000pt;}
.y15e{bottom:483.036000pt;}
.y89{bottom:483.261333pt;}
.y182{bottom:485.693333pt;}
.y59{bottom:486.004000pt;}
.y1ee{bottom:487.222667pt;}
.y12d{bottom:489.657333pt;}
.y15d{bottom:490.029333pt;}
.y1d3{bottom:490.124000pt;}
.y1a4{bottom:491.086667pt;}
.y15c{bottom:493.969333pt;}
.y15f{bottom:493.970667pt;}
.y9{bottom:494.990666pt;}
.yaa{bottom:497.109333pt;}
.y105{bottom:501.094667pt;}
.yeb{bottom:501.386667pt;}
.y1b4{bottom:503.178667pt;}
.y36{bottom:504.260000pt;}
.y223{bottom:504.477333pt;}
.y208{bottom:505.866667pt;}
.y106{bottom:506.880000pt;}
.yca{bottom:507.164000pt;}
.y181{bottom:509.596000pt;}
.y58{bottom:509.908000pt;}
.y1ed{bottom:511.125333pt;}
.y88{bottom:511.149333pt;}
.y1a3{bottom:514.989333pt;}
.y1d2{bottom:515.986667pt;}
.y15b{bottom:520.914667pt;}
.ya9{bottom:521.013333pt;}
.y12c{bottom:524.770667pt;}
.y104{bottom:524.997333pt;}
.yea{bottom:525.289333pt;}
.y35{bottom:526.680000pt;}
.y1b3{bottom:527.081333pt;}
.y15a{bottom:527.909333pt;}
.yc9{bottom:531.066667pt;}
.y159{bottom:531.849333pt;}
.y180{bottom:533.498667pt;}
.y57{bottom:533.810667pt;}
.y87{bottom:535.052000pt;}
.y12b{bottom:535.705333pt;}
.y1a2{bottom:538.849333pt;}
.y1d1{bottom:539.889333pt;}
.y207{bottom:541.338667pt;}
.y222{bottom:541.664000pt;}
.y1a1{bottom:542.877333pt;}
.ya8{bottom:544.916000pt;}
.y1ec{bottom:547.648000pt;}
.y103{bottom:548.901333pt;}
.y34{bottom:549.098667pt;}
.ye9{bottom:549.192000pt;}
.yc8{bottom:554.969333pt;}
.y17f{bottom:557.402667pt;}
.y56{bottom:557.713333pt;}
.y86{bottom:558.954667pt;}
.y1b2{bottom:560.754667pt;}
.y1a0{bottom:561.284000pt;}
.y1d0{bottom:563.792000pt;}
.y206{bottom:565.241333pt;}
.y221{bottom:565.566667pt;}
.y19f{bottom:566.780000pt;}
.ya7{bottom:568.818667pt;}
.y33{bottom:571.518667pt;}
.y1eb{bottom:571.550667pt;}
.y102{bottom:572.804000pt;}
.ye8{bottom:573.096000pt;}
.y8{bottom:573.786667pt;}
.yc7{bottom:578.873333pt;}
.y17e{bottom:581.305333pt;}
.y158{bottom:581.357333pt;}
.y55{bottom:581.616000pt;}
.y85{bottom:582.857333pt;}
.y12a{bottom:585.213333pt;}
.y60{bottom:585.601333pt;}
.y1cf{bottom:587.694667pt;}
.y7{bottom:592.685334pt;}
.ya6{bottom:592.721333pt;}
.y32{bottom:593.937333pt;}
.y1ea{bottom:595.453333pt;}
.y101{bottom:596.706667pt;}
.ye7{bottom:596.998667pt;}
.y205{bottom:600.712000pt;}
.y220{bottom:602.753333pt;}
.yc5{bottom:602.776000pt;}
.y17d{bottom:605.208000pt;}
.y54{bottom:605.520000pt;}
.y84{bottom:606.761333pt;}
.y19e{bottom:607.038667pt;}
.yc6{bottom:608.560000pt;}
.y129{bottom:609.117333pt;}
.y5f{bottom:609.504000pt;}
.y1ce{bottom:611.598667pt;}
.y31{bottom:616.357333pt;}
.ya5{bottom:616.624000pt;}
.y157{bottom:617.082667pt;}
.y155{bottom:617.970667pt;}
.y19d{bottom:617.972000pt;}
.y100{bottom:620.609333pt;}
.ye6{bottom:623.677333pt;}
.y204{bottom:624.614667pt;}
.y21f{bottom:626.657333pt;}
.yc4{bottom:626.678667pt;}
.y156{bottom:628.904000pt;}
.y53{bottom:629.422667pt;}
.y83{bottom:630.664000pt;}
.y1e9{bottom:631.976000pt;}
.y128{bottom:633.020000pt;}
.y17c{bottom:633.096000pt;}
.y5e{bottom:633.408000pt;}
.y1cd{bottom:635.501333pt;}
.y154{bottom:639.688000pt;}
.ya4{bottom:640.528000pt;}
.y6{bottom:645.598667pt;}
.ye5{bottom:647.581333pt;}
.y2a{bottom:648.683605pt;}
.yc3{bottom:650.581333pt;}
.y30{bottom:651.429333pt;}
.y82{bottom:654.566667pt;}
.y1e8{bottom:655.880000pt;}
.y17b{bottom:656.998667pt;}
.y52{bottom:657.310667pt;}
.y1cc{bottom:659.404000pt;}
.y203{bottom:660.086667pt;}
.y21e{bottom:663.842667pt;}
.ya3{bottom:664.430667pt;}
.y19c{bottom:664.954667pt;}
.yff{bottom:664.958667pt;}
.y127{bottom:667.336000pt;}
.y3{bottom:668.977329pt;}
.ye4{bottom:671.484000pt;}
.yc2{bottom:674.485333pt;}
.y81{bottom:678.469333pt;}
.y1e7{bottom:679.782667pt;}
.y17a{bottom:680.902667pt;}
.y51{bottom:681.213333pt;}
.y1cb{bottom:683.306667pt;}
.y202{bottom:683.989333pt;}
.y124{bottom:685.785333pt;}
.y21d{bottom:687.746667pt;}
.ya2{bottom:688.333333pt;}
.y152{bottom:690.185333pt;}
.ye3{bottom:695.386667pt;}
.y141{bottom:698.388000pt;}
.y126{bottom:700.929333pt;}
.y153{bottom:701.118667pt;}
.y19b{bottom:701.661333pt;}
.y80{bottom:702.373333pt;}
.y29{bottom:704.148566pt;}
.y179{bottom:704.805333pt;}
.y50{bottom:705.116000pt;}
.y125{bottom:705.710667pt;}
.y1ca{bottom:707.209333pt;}
.y201{bottom:707.892000pt;}
.y151{bottom:711.902667pt;}
.y19a{bottom:712.596000pt;}
.ya1{bottom:716.221333pt;}
.y1e6{bottom:716.305333pt;}
.ye2{bottom:719.289333pt;}
.y140{bottom:722.290667pt;}
.y21c{bottom:724.933333pt;}
.y7f{bottom:726.276000pt;}
.y178{bottom:728.708000pt;}
.y4f{bottom:729.020000pt;}
.y28{bottom:730.148565pt;}
.yfe{bottom:730.261333pt;}
.y1c9{bottom:733.072000pt;}
.y2f{bottom:736.281333pt;}
.ya0{bottom:740.124000pt;}
.y1e5{bottom:740.208000pt;}
.y123{bottom:740.614667pt;}
.ye1{bottom:743.193333pt;}
.y200{bottom:743.362667pt;}
.y13f{bottom:746.193333pt;}
.y7e{bottom:750.178667pt;}
.y177{bottom:752.610667pt;}
.y4e{bottom:752.922667pt;}
.yfd{bottom:754.164000pt;}
.y1c8{bottom:756.974667pt;}
.y150{bottom:760.504000pt;}
.y14e{bottom:761.392000pt;}
.y199{bottom:761.617333pt;}
.y21b{bottom:762.118667pt;}
.y9f{bottom:764.028000pt;}
.ye0{bottom:767.096000pt;}
.y1ff{bottom:767.265333pt;}
.y14f{bottom:772.326667pt;}
.y27{bottom:773.238345pt;}
.y7d{bottom:774.081333pt;}
.y176{bottom:776.513333pt;}
.y1e4{bottom:776.730667pt;}
.y4d{bottom:776.825333pt;}
.yfc{bottom:778.066667pt;}
.y2e{bottom:780.109333pt;}
.y1c7{bottom:780.877333pt;}
.y198{bottom:781.493333pt;}
.y2{bottom:781.661334pt;}
.y14d{bottom:783.109333pt;}
.y122{bottom:784.300000pt;}
.y197{bottom:785.521333pt;}
.y21a{bottom:786.022667pt;}
.y9e{bottom:787.930667pt;}
.ydf{bottom:790.998667pt;}
.y1fe{bottom:791.169333pt;}
.yc1{bottom:797.985333pt;}
.y1e3{bottom:800.466667pt;}
.y1e2{bottom:800.633333pt;}
.y4c{bottom:800.728000pt;}
.y26{bottom:801.238344pt;}
.y7c{bottom:801.969333pt;}
.y5d{bottom:804.713333pt;}
.y1c6{bottom:804.781333pt;}
.y219{bottom:809.925333pt;}
.y9d{bottom:811.833333pt;}
.y175{bottom:813.658667pt;}
.yde{bottom:814.901333pt;}
.y174{bottom:817.685333pt;}
.yc0{bottom:821.720000pt;}
.ybf{bottom:821.888000pt;}
.y14c{bottom:824.632000pt;}
.y196{bottom:825.230667pt;}
.y7b{bottom:825.873333pt;}
.y194{bottom:826.118667pt;}
.y1fd{bottom:826.640000pt;}
.y4b{bottom:828.616000pt;}
.y1c5{bottom:828.684000pt;}
.y25{bottom:829.238343pt;}
.y121{bottom:833.808000pt;}
.y9c{bottom:835.736000pt;}
.y195{bottom:837.053333pt;}
.y1e1{bottom:837.156000pt;}
.y2d{bottom:837.677333pt;}
.ydd{bottom:838.805333pt;}
.y173{bottom:841.588000pt;}
.ybe{bottom:845.790667pt;}
.y218{bottom:847.112000pt;}
.y193{bottom:847.836000pt;}
.y14b{bottom:848.534667pt;}
.y7a{bottom:849.776000pt;}
.y1fc{bottom:850.542667pt;}
.y4a{bottom:852.520000pt;}
.y1c4{bottom:854.545333pt;}
.y120{bottom:857.710667pt;}
.y1{bottom:859.312000pt;}
.y9b{bottom:859.640000pt;}
.y1e0{bottom:861.058667pt;}
.ybd{bottom:869.693333pt;}
.y217{bottom:870.846667pt;}
.y216{bottom:871.014667pt;}
.y79{bottom:873.678667pt;}
.y49{bottom:876.422667pt;}
.y1c3{bottom:878.448000pt;}
.y2c{bottom:878.889333pt;}
.ydc{bottom:881.945333pt;}
.y5c{bottom:882.206667pt;}
.y1df{bottom:884.794667pt;}
.y1de{bottom:884.962667pt;}
.y1fb{bottom:886.013333pt;}
.y11f{bottom:892.026667pt;}
.y172{bottom:892.058667pt;}
.ybc{bottom:893.596000pt;}
.y78{bottom:897.581333pt;}
.y48{bottom:900.325333pt;}
.y1c2{bottom:902.352000pt;}
.y192{bottom:903.408000pt;}
.y9a{bottom:903.989333pt;}
.y215{bottom:908.201333pt;}
.y1fa{bottom:909.917333pt;}
.y11c{bottom:910.476000pt;}
.ybb{bottom:917.500000pt;}
.y2b{bottom:920.101333pt;}
.y77{bottom:921.485333pt;}
.y47{bottom:924.228000pt;}
.y11e{bottom:925.620000pt;}
.y1c1{bottom:926.254667pt;}
.y191{bottom:928.454667pt;}
.y18f{bottom:929.342667pt;}
.y11d{bottom:930.401333pt;}
.y214{bottom:932.104000pt;}
.y171{bottom:932.750667pt;}
.y190{bottom:940.277333pt;}
.yba{bottom:941.402667pt;}
.y170{bottom:943.685333pt;}
.y76{bottom:945.388000pt;}
.y46{bottom:948.130667pt;}
.y1c0{bottom:950.157333pt;}
.y18e{bottom:951.061333pt;}
.y11b{bottom:965.305333pt;}
.y75{bottom:969.290667pt;}
.y45{bottom:992.481333pt;}
.y74{bottom:993.193333pt;}
.y24{bottom:1000.440963pt;}
.y226{bottom:1015.881951pt;}
.y227{bottom:1037.999957pt;}
.h24{height:2.550443pt;}
.h17{height:27.895200pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h20{height:29.925069pt;}
.h1b{height:31.880400pt;}
.h3b{height:36.290431pt;}
.hf{height:38.390398pt;}
.hc{height:38.465310pt;}
.h4a{height:39.030468pt;}
.h18{height:39.850400pt;}
.h7{height:40.853333pt;}
.h15{height:41.890944pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h16{height:43.636400pt;}
.h1d{height:45.589163pt;}
.h25{height:45.652924pt;}
.h35{height:45.724191pt;}
.h4b{height:46.079998pt;}
.h3c{height:46.736862pt;}
.h43{height:46.897525pt;}
.h3f{height:46.902858pt;}
.h19{height:47.820800pt;}
.h2{height:49.024000pt;}
.h2e{height:50.086858pt;}
.h32{height:50.092191pt;}
.h22{height:50.369109pt;}
.he{height:53.740798pt;}
.h1c{height:55.016400pt;}
.h27{height:57.105109pt;}
.h14{height:57.384800pt;}
.hd{height:58.013278pt;}
.h1e{height:59.149218pt;}
.h47{height:61.307221pt;}
.h3e{height:62.843529pt;}
.h3a{height:63.009525pt;}
.h49{height:63.580800pt;}
.h2a{height:63.586133pt;}
.h3d{height:63.927467pt;}
.h44{height:63.932800pt;}
.h2f{height:65.846858pt;}
.h1a{height:66.107136pt;}
.h13{height:67.615733pt;}
.h5{height:69.450667pt;}
.h48{height:69.804800pt;}
.h21{height:69.810133pt;}
.h11{height:82.650000pt;}
.h28{height:88.719829pt;}
.h26{height:88.725163pt;}
.h46{height:89.322496pt;}
.h31{height:89.327829pt;}
.h34{height:90.033525pt;}
.h39{height:91.554133pt;}
.h37{height:91.559467pt;}
.h2c{height:94.852924pt;}
.h41{height:94.858257pt;}
.h12{height:97.374133pt;}
.h36{height:98.152400pt;}
.h45{height:98.157733pt;}
.h1f{height:98.823885pt;}
.h29{height:101.944400pt;}
.h33{height:104.485163pt;}
.h4{height:105.826671pt;}
.h23{height:111.585109pt;}
.h30{height:113.912400pt;}
.h2d{height:137.994257pt;}
.h38{height:141.885733pt;}
.h2b{height:142.036924pt;}
.h42{height:142.234257pt;}
.h40{height:142.239590pt;}
.h0{height:1122.518667pt;}
.h10{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.hb{height:1122.999953pt;}
.ha{height:1122.999972pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.701333pt;}
.w3{width:793.999967pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc4{left:75.679997pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1e{left:111.265333pt;}
.x14{left:113.385333pt;}
.x66{left:120.066667pt;}
.xc3{left:123.206667pt;}
.xc2{left:124.369333pt;}
.xbf{left:127.333333pt;}
.xc0{left:128.993333pt;}
.xc{left:131.640000pt;}
.x13{left:137.296000pt;}
.x3a{left:140.805333pt;}
.xd{left:141.985333pt;}
.xb7{left:143.130667pt;}
.x7c{left:144.121333pt;}
.x23{left:145.321333pt;}
.x95{left:147.657333pt;}
.xc1{left:148.781333pt;}
.x71{left:150.058667pt;}
.x12{left:152.405333pt;}
.x2e{left:153.868000pt;}
.x25{left:155.448000pt;}
.x3f{left:160.798667pt;}
.x3c{left:163.816000pt;}
.x26{left:165.740000pt;}
.x27{left:169.804000pt;}
.x11{left:174.224000pt;}
.x29{left:176.733333pt;}
.x4{left:180.874667pt;}
.x7d{left:182.754667pt;}
.x28{left:184.169333pt;}
.x72{left:186.146667pt;}
.x24{left:189.986667pt;}
.x16{left:193.130667pt;}
.x40{left:196.073333pt;}
.x96{left:197.702667pt;}
.x9e{left:200.869333pt;}
.x79{left:201.854667pt;}
.x6{left:203.149874pt;}
.x58{left:204.873333pt;}
.x17{left:205.988000pt;}
.xbd{left:209.186667pt;}
.x53{left:210.593333pt;}
.x55{left:212.434667pt;}
.xb0{left:215.222667pt;}
.x84{left:216.618667pt;}
.x45{left:221.536000pt;}
.xa2{left:222.898667pt;}
.x97{left:224.949333pt;}
.x9f{left:226.418667pt;}
.x2a{left:232.706667pt;}
.x7a{left:233.768000pt;}
.x56{left:235.693333pt;}
.x2b{left:244.194667pt;}
.xe{left:245.861333pt;}
.x7b{left:248.896000pt;}
.x85{left:249.964000pt;}
.xa3{left:251.206667pt;}
.xab{left:252.369333pt;}
.x7{left:253.931121pt;}
.x87{left:255.561333pt;}
.xb2{left:257.572000pt;}
.x54{left:259.174667pt;}
.xae{left:262.064000pt;}
.x91{left:264.906667pt;}
.x73{left:272.192000pt;}
.x57{left:273.970667pt;}
.x90{left:277.945333pt;}
.xb{left:279.374422pt;}
.xac{left:283.680000pt;}
.x88{left:287.902667pt;}
.x92{left:291.405333pt;}
.x74{left:294.700000pt;}
.x64{left:295.730667pt;}
.x31{left:297.301333pt;}
.x3b{left:299.916000pt;}
.x59{left:301.773333pt;}
.x75{left:302.910667pt;}
.x83{left:304.244000pt;}
.x65{left:308.288000pt;}
.x8{left:309.821744pt;}
.x80{left:311.950667pt;}
.x4d{left:314.061333pt;}
.x93{left:322.301333pt;}
.x76{left:325.418667pt;}
.x6d{left:326.637333pt;}
.xa8{left:328.070667pt;}
.xaa{left:329.277333pt;}
.x5c{left:331.134667pt;}
.x9{left:332.327545pt;}
.xa{left:334.858795pt;}
.x86{left:339.416000pt;}
.x4e{left:342.253333pt;}
.x8f{left:344.217333pt;}
.x6e{left:345.337333pt;}
.xf{left:347.910667pt;}
.x4a{left:349.613333pt;}
.x3e{left:353.102667pt;}
.x18{left:355.194667pt;}
.x94{left:356.769333pt;}
.x5a{left:358.156000pt;}
.x5d{left:359.081333pt;}
.x6c{left:360.249333pt;}
.x3d{left:361.189333pt;}
.x32{left:365.456000pt;}
.x19{left:366.365333pt;}
.xa9{left:367.588000pt;}
.x10{left:368.981333pt;}
.x7e{left:372.604000pt;}
.x34{left:376.318667pt;}
.x33{left:377.917333pt;}
.xb3{left:379.385333pt;}
.x48{left:381.049333pt;}
.xa0{left:383.774667pt;}
.x4b{left:385.854667pt;}
.x42{left:388.784000pt;}
.x43{left:391.160000pt;}
.x15{left:392.865333pt;}
.x4f{left:394.053333pt;}
.xba{left:395.744000pt;}
.x41{left:396.870667pt;}
.xb8{left:397.956000pt;}
.x89{left:402.428000pt;}
.x3{left:404.408000pt;}
.x99{left:405.353333pt;}
.xb4{left:410.008000pt;}
.x6f{left:411.370667pt;}
.x44{left:414.465333pt;}
.x4c{left:415.381333pt;}
.x5e{left:421.737333pt;}
.x5b{left:423.869333pt;}
.x35{left:425.737333pt;}
.x2c{left:429.974667pt;}
.x70{left:431.388000pt;}
.x36{left:435.005333pt;}
.x1f{left:438.508000pt;}
.x9a{left:441.284000pt;}
.x2d{left:444.589333pt;}
.xad{left:447.422667pt;}
.x20{left:449.789333pt;}
.xb1{left:455.701333pt;}
.x5f{left:458.898667pt;}
.xb9{left:466.221333pt;}
.x8a{left:467.576000pt;}
.x1c{left:469.170667pt;}
.x60{left:473.045333pt;}
.xa5{left:478.129333pt;}
.x8b{left:484.832000pt;}
.xbc{left:508.650667pt;}
.x67{left:511.433333pt;}
.xa6{left:519.237333pt;}
.x8c{left:521.361333pt;}
.x61{left:532.874667pt;}
.x68{left:534.937333pt;}
.xa1{left:535.990667pt;}
.xb5{left:540.209333pt;}
.xbb{left:543.670667pt;}
.xa4{left:545.637333pt;}
.x1d{left:547.362667pt;}
.x37{left:548.878667pt;}
.xbe{left:554.032000pt;}
.x49{left:556.077333pt;}
.x2f{left:560.141333pt;}
.xa7{left:570.077333pt;}
.x46{left:576.378667pt;}
.x1a{left:580.446667pt;}
.xaf{left:583.062667pt;}
.x1b{left:590.064000pt;}
.x30{left:593.058667pt;}
.x7f{left:594.905333pt;}
.x50{left:601.413333pt;}
.x8d{left:602.348000pt;}
.x47{left:603.590667pt;}
.x38{left:608.129333pt;}
.x39{left:618.414667pt;}
.x6b{left:619.360000pt;}
.x77{left:625.017333pt;}
.x5{left:628.132966pt;}
.x9b{left:629.089333pt;}
.x62{left:630.641333pt;}
.xb6{left:632.421333pt;}
.x22{left:636.969333pt;}
.x21{left:638.133333pt;}
.x63{left:641.933333pt;}
.x8e{left:643.926667pt;}
.x51{left:648.244000pt;}
.x82{left:652.021333pt;}
.x78{left:655.734667pt;}
.x9c{left:656.810667pt;}
.x81{left:659.990667pt;}
.x69{left:665.674667pt;}
.x9d{left:667.429333pt;}
.x98{left:669.038667pt;}
.x52{left:674.337333pt;}
.x6a{left:678.242667pt;}
}




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