
    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_82ff2eb412489690c164d84e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_62f2214513f05c8ce72c31e3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_7d19889799753fd33bccbacc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.058000;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_21aa237ea19e531d777c3d4d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_8de0d0fb11af4de18056a226.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_834ac3403392bf0e0ae676ed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_a0a1d0e0cb9cf6b573a82fcf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.346191;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_1d74fe0d7b44f496ffe56f24.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_f4efa1945348d967f45e8976.woff')format("woff");}.ff9{font-family:ff9;line-height:1.346191;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_f371890db47d0393749ea47c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_65f36ff8b1563aaafef5ddb6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.346191;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_3e6d1c0dc9b2e81dc036021f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.058000;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_da86798ccf50b58084636de3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.936000;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_66e3c12a4d41c0b8db05c19f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.259000;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_e285ea26a9557980d0b7d8a1.woff')format("woff");}.fff{font-family:fff;line-height:0.936000;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_205efed5e4bc6217b3f978ea.woff')format("woff");}.ff10{font-family:ff10;line-height:1.346191;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_6ebf1fd0a0283460e7c9fdbb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.502000;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_49027e31afe84af11357b38e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.346191;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_7ade8479e67180ac501088e2.woff')format("woff");}.ff13{font-family:ff13;line-height:1.346191;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_205efed5e4bc6217b3f978ea.woff')format("woff");}.ff14{font-family:ff14;line-height:1.346191;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_2a159b2076a79c39165be46f.woff')format("woff");}.ff15{font-family:ff15;line-height:1.346191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m5{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);}
.m1e{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);}
.m27{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);}
.m25{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);}
.m11{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m1c{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);}
.m6{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);}
.m9{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);}
.m13{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);}
.md{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);}
.m21{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m8{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);}
.m20{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);}
.m10{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);}
.m1d{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);}
.m17{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);}
.m7{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);}
.m28{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);}
.mc{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);}
.m1a{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);}
.m3{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);}
.m1b{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);}
.m19{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m23{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);}
.ma{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);}
.mf{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);}
.m29{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);}
.m26{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);}
.m1f{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);}
.m16{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);}
.m4{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);}
.m22{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);}
.m2{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);}
.m18{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.840000px;}
.v5{vertical-align:-11.778000px;}
.v3{vertical-align:-8.070000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.658022px;}
.v1{vertical-align:26.040000px;}
.v4{vertical-align:28.536000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.135144px;}
.lsc{letter-spacing:0.141144px;}
.ls47{letter-spacing:0.216546px;}
.ls4a{letter-spacing:0.222546px;}
.ls52{letter-spacing:0.376800px;}
.ls49{letter-spacing:0.434232px;}
.ls30{letter-spacing:0.535932px;}
.ls40{letter-spacing:0.541932px;}
.ls37{letter-spacing:0.870546px;}
.ls43{letter-spacing:0.876546px;}
.ls5b{letter-spacing:1.345932px;}
.ls35{letter-spacing:1.530546px;}
.ls48{letter-spacing:1.746330px;}
.ls1c{letter-spacing:1.880628px;}
.ls16{letter-spacing:1.881144px;}
.ls18{letter-spacing:1.887144px;}
.ls61{letter-spacing:2.419932px;}
.ls64{letter-spacing:2.425932px;}
.ls1d{letter-spacing:2.988330px;}
.ls3{letter-spacing:2.989920px;}
.ls55{letter-spacing:3.015744px;}
.ls1e{letter-spacing:3.073134px;}
.ls23{letter-spacing:3.079134px;}
.ls24{letter-spacing:3.160800px;}
.ls20{letter-spacing:3.166800px;}
.ls57{letter-spacing:4.059756px;}
.ls53{letter-spacing:4.065144px;}
.ls58{letter-spacing:4.065756px;}
.ls67{letter-spacing:4.304016px;}
.ls7{letter-spacing:5.081796px;}
.ls6{letter-spacing:5.087796px;}
.ls38{letter-spacing:5.820522px;}
.ls3e{letter-spacing:5.826522px;}
.lsf{letter-spacing:6.061134px;}
.ls11{letter-spacing:6.067134px;}
.ls12{letter-spacing:6.148800px;}
.ls13{letter-spacing:6.154800px;}
.ls3a{letter-spacing:6.440640px;}
.ls2f{letter-spacing:6.994608px;}
.ls5a{letter-spacing:7.018272px;}
.ls36{letter-spacing:7.875480px;}
.ls3f{letter-spacing:8.004522px;}
.ls39{letter-spacing:8.159028px;}
.ls56{letter-spacing:8.215134px;}
.ls9{letter-spacing:8.481744px;}
.ls60{letter-spacing:9.147228px;}
.ls2d{letter-spacing:9.777744px;}
.lse{letter-spacing:9.807744px;}
.ls4{letter-spacing:10.458420px;}
.ls10{letter-spacing:10.827744px;}
.ls44{letter-spacing:11.956320px;}
.ls32{letter-spacing:12.520896px;}
.ls3b{letter-spacing:12.526896px;}
.ls59{letter-spacing:12.790860px;}
.ls66{letter-spacing:13.251000px;}
.ls4c{letter-spacing:13.332768px;}
.ls2{letter-spacing:13.450896px;}
.ls46{letter-spacing:13.458324px;}
.ls28{letter-spacing:13.462860px;}
.ls29{letter-spacing:13.468860px;}
.ls0{letter-spacing:13.565604px;}
.ls1{letter-spacing:13.589304px;}
.ls22{letter-spacing:14.410860px;}
.ls45{letter-spacing:14.637744px;}
.ls4e{letter-spacing:14.946768px;}
.ls5d{letter-spacing:14.991000px;}
.ls4b{letter-spacing:15.063744px;}
.ls63{letter-spacing:15.756768px;}
.ls5f{letter-spacing:15.795000px;}
.ls2a{letter-spacing:16.434330px;}
.ls51{letter-spacing:17.094768px;}
.ls3c{letter-spacing:17.629932px;}
.ls33{letter-spacing:17.635932px;}
.ls54{letter-spacing:17.641632px;}
.ls25{letter-spacing:17.928330px;}
.ls26{letter-spacing:17.934330px;}
.ls27{letter-spacing:18.564330px;}
.ls50{letter-spacing:19.005756px;}
.ls2e{letter-spacing:20.174112px;}
.ls68{letter-spacing:20.446608px;}
.ls21{letter-spacing:20.694330px;}
.ls1f{letter-spacing:20.700330px;}
.ls3d{letter-spacing:20.808768px;}
.ls62{letter-spacing:20.863932px;}
.ls5e{letter-spacing:20.885796px;}
.ls65{letter-spacing:21.315864px;}
.ls41{letter-spacing:21.668112px;}
.ls31{letter-spacing:21.674112px;}
.ls5c{letter-spacing:21.717120px;}
.ls2b{letter-spacing:22.087134px;}
.lsb{letter-spacing:22.093134px;}
.ls2c{letter-spacing:22.168800px;}
.lsd{letter-spacing:22.174800px;}
.ls1a{letter-spacing:22.546896px;}
.ls15{letter-spacing:22.674936px;}
.ls14{letter-spacing:23.910936px;}
.ls8{letter-spacing:23.915388px;}
.ls34{letter-spacing:25.608768px;}
.ls19{letter-spacing:27.547932px;}
.ls1b{letter-spacing:28.380330px;}
.ls17{letter-spacing:28.386330px;}
.ls4d{letter-spacing:41.431932px;}
.ls4f{letter-spacing:45.127932px;}
.ls42{letter-spacing:48.732768px;}
.ls6a{letter-spacing:83.910855px;}
.ls69{letter-spacing:134.759661px;}
.ls6b{letter-spacing:150.478459px;}
.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;}
}
.wsc4{word-spacing:-55.087104px;}
.wsb1{word-spacing:-46.346628px;}
.wsb4{word-spacing:-44.732628px;}
.wsa4{word-spacing:-44.685312px;}
.wsb2{word-spacing:-43.928628px;}
.ws91{word-spacing:-41.158109px;}
.ws87{word-spacing:-35.828136px;}
.ws6f{word-spacing:-34.268052px;}
.ws7a{word-spacing:-26.698843px;}
.ws73{word-spacing:-26.467793px;}
.ws90{word-spacing:-26.467686px;}
.ws72{word-spacing:-26.467632px;}
.ws75{word-spacing:-26.467202px;}
.wsca{word-spacing:-25.284120px;}
.ws9b{word-spacing:-23.373552px;}
.wsa8{word-spacing:-22.936430px;}
.wsaa{word-spacing:-22.936342px;}
.wsa7{word-spacing:-22.930342px;}
.ws9c{word-spacing:-20.469552px;}
.ws88{word-spacing:-20.445552px;}
.ws89{word-spacing:-20.421552px;}
.wsb3{word-spacing:-20.357688px;}
.wsa6{word-spacing:-20.303892px;}
.ws85{word-spacing:-20.121552px;}
.ws8b{word-spacing:-19.425552px;}
.wsaf{word-spacing:-16.235925px;}
.ws3{word-spacing:-14.944500px;}
.ws51{word-spacing:-13.449000px;}
.wsd5{word-spacing:-13.274880px;}
.ws113{word-spacing:-10.461000px;}
.ws104{word-spacing:-4.304218px;}
.ws55{word-spacing:-4.303626px;}
.ws22{word-spacing:-4.142238px;}
.wsc5{word-spacing:-3.658020px;}
.ws57{word-spacing:-3.550644px;}
.wsbe{word-spacing:-3.496632px;}
.ws99{word-spacing:-3.442621px;}
.ws79{word-spacing:-3.227868px;}
.ws74{word-spacing:-3.173856px;}
.wsb5{word-spacing:-3.066480px;}
.ws1a{word-spacing:-3.060719px;}
.ws4b{word-spacing:-3.012468px;}
.ws6c{word-spacing:-2.959049px;}
.ws100{word-spacing:-2.905092px;}
.ws5d{word-spacing:-2.797661px;}
.ws108{word-spacing:-2.761578px;}
.ws37{word-spacing:-2.689692px;}
.wsb7{word-spacing:-2.636273px;}
.ws4c{word-spacing:-2.528304px;}
.wsc0{word-spacing:-2.474885px;}
.wsc1{word-spacing:-2.474293px;}
.wscc{word-spacing:-2.420874px;}
.wse5{word-spacing:-2.419980px;}
.wsa3{word-spacing:-2.413980px;}
.wsa5{word-spacing:-2.412144px;}
.ws7f{word-spacing:-2.366916px;}
.ws5b{word-spacing:-2.313497px;}
.ws4{word-spacing:-2.259486px;}
.ws134{word-spacing:-2.217983px;}
.wsd7{word-spacing:-2.206120px;}
.wsd8{word-spacing:-2.205528px;}
.wse6{word-spacing:-2.152109px;}
.ws8d{word-spacing:-2.150952px;}
.wsc3{word-spacing:-2.098098px;}
.wsb6{word-spacing:-1.936710px;}
.ws94{word-spacing:-1.741171px;}
.ws56{word-spacing:-1.721311px;}
.wsbf{word-spacing:-1.667945px;}
.ws133{word-spacing:-1.631749px;}
.ws86{word-spacing:-1.613934px;}
.wsa2{word-spacing:-1.610604px;}
.wse4{word-spacing:-1.594788px;}
.ws105{word-spacing:-1.589737px;}
.ws102{word-spacing:-1.560514px;}
.ws36{word-spacing:-1.559923px;}
.ws13f{word-spacing:-1.506342px;}
.wsd{word-spacing:-1.452546px;}
.wsd0{word-spacing:-1.398535px;}
.wsbc{word-spacing:-1.345115px;}
.ws125{word-spacing:-1.338924px;}
.ws6a{word-spacing:-1.291158px;}
.ws10e{word-spacing:-1.255529px;}
.wsc7{word-spacing:-1.237147px;}
.ws60{word-spacing:-1.183727px;}
.ws2b{word-spacing:-1.129770px;}
.ws110{word-spacing:-1.088111px;}
.ws3a{word-spacing:-1.076350px;}
.ws58{word-spacing:-1.075759px;}
.ws33{word-spacing:-1.022339px;}
.ws3e{word-spacing:-0.968382px;}
.ws120{word-spacing:-0.920735px;}
.ws46{word-spacing:-0.914371px;}
.ws95{word-spacing:-0.860951px;}
.wsce{word-spacing:-0.806940px;}
.wsd4{word-spacing:-0.803172px;}
.wscf{word-spacing:-0.793176px;}
.ws124{word-spacing:-0.753318px;}
.ws2d{word-spacing:-0.752983px;}
.ws34{word-spacing:-0.699563px;}
.ws9d{word-spacing:-0.645552px;}
.wsf{word-spacing:-0.591595px;}
.ws93{word-spacing:-0.538175px;}
.ws10a{word-spacing:-0.501919px;}
.ws8f{word-spacing:-0.484164px;}
.ws1c{word-spacing:-0.460535px;}
.wsd6{word-spacing:-0.430207px;}
.ws25{word-spacing:-0.376787px;}
.ws114{word-spacing:-0.334501px;}
.ws66{word-spacing:-0.322776px;}
.ws59{word-spacing:-0.269410px;}
.ws8{word-spacing:-0.268765px;}
.ws13d{word-spacing:-0.251106px;}
.ws20{word-spacing:-0.238957px;}
.ws32{word-spacing:-0.215399px;}
.ws10d{word-spacing:-0.209094px;}
.ws118{word-spacing:-0.167711px;}
.ws112{word-spacing:-0.167125px;}
.ws7{word-spacing:-0.161388px;}
.ws128{word-spacing:-0.125699px;}
.ws4d{word-spacing:-0.107969px;}
.ws40{word-spacing:-0.107592px;}
.ws44{word-spacing:-0.107377px;}
.ws109{word-spacing:-0.083688px;}
.ws15{word-spacing:-0.065454px;}
.ws6{word-spacing:-0.054011px;}
.ws92{word-spacing:-0.053796px;}
.ws11a{word-spacing:-0.041844px;}
.ws129{word-spacing:-0.041718px;}
.wse9{word-spacing:-0.033805px;}
.ws11c{word-spacing:-0.000293px;}
.ws2{word-spacing:0.000000px;}
.ws106{word-spacing:0.000293px;}
.ws117{word-spacing:0.041718px;}
.ws16{word-spacing:0.053419px;}
.ws23{word-spacing:0.054011px;}
.ws12c{word-spacing:0.083688px;}
.wsa{word-spacing:0.107377px;}
.ws5a{word-spacing:0.107969px;}
.ws13b{word-spacing:0.125699px;}
.ws19{word-spacing:0.143269px;}
.ws29{word-spacing:0.161388px;}
.ws121{word-spacing:0.167083px;}
.ws119{word-spacing:0.209094px;}
.ws83{word-spacing:0.214807px;}
.ws10{word-spacing:0.215399px;}
.ws9{word-spacing:0.268765px;}
.ws138{word-spacing:0.293117px;}
.ws2c{word-spacing:0.322776px;}
.wsfc{word-spacing:0.376787px;}
.wsfb{word-spacing:0.484164px;}
.ws4f{word-spacing:0.538175px;}
.ws130{word-spacing:0.585900px;}
.wsfe{word-spacing:0.591595px;}
.ws78{word-spacing:0.645552px;}
.ws11d{word-spacing:0.669337px;}
.ws5c{word-spacing:0.698971px;}
.wsc8{word-spacing:0.752983px;}
.ws115{word-spacing:0.753318px;}
.ws5{word-spacing:0.806940px;}
.ws8c{word-spacing:0.860359px;}
.ws8a{word-spacing:0.860951px;}
.ws43{word-spacing:0.914371px;}
.ws12b{word-spacing:0.962119px;}
.ws71{word-spacing:0.968382px;}
.ws107{word-spacing:1.004130px;}
.ws7d{word-spacing:1.021747px;}
.ws52{word-spacing:1.022339px;}
.ws45{word-spacing:1.129770px;}
.ws97{word-spacing:1.183135px;}
.ws41{word-spacing:1.183727px;}
.ws28{word-spacing:1.237147px;}
.ws2f{word-spacing:1.398535px;}
.wse{word-spacing:1.452546px;}
.ws26{word-spacing:1.559923px;}
.wsc2{word-spacing:1.560514px;}
.ws12e{word-spacing:1.590365px;}
.ws6d{word-spacing:1.613934px;}
.ws4a{word-spacing:1.667299px;}
.wsfa{word-spacing:1.667945px;}
.ws30{word-spacing:1.721311px;}
.wse7{word-spacing:1.775322px;}
.ws81{word-spacing:1.882699px;}
.ws49{word-spacing:1.936710px;}
.ws126{word-spacing:1.966542px;}
.ws38{word-spacing:2.044087px;}
.ws3d{word-spacing:2.098098px;}
.ws48{word-spacing:2.151517px;}
.ws80{word-spacing:2.205475px;}
.wsd3{word-spacing:2.259486px;}
.wsf9{word-spacing:2.366916px;}
.ws24{word-spacing:2.420874px;}
.wsa9{word-spacing:2.528304px;}
.ws42{word-spacing:2.582262px;}
.ws2e{word-spacing:2.635681px;}
.ws27{word-spacing:2.636273px;}
.wsb9{word-spacing:2.689692px;}
.ws8e{word-spacing:2.743704px;}
.ws63{word-spacing:2.797661px;}
.ws2a{word-spacing:2.851080px;}
.ws39{word-spacing:2.958457px;}
.ws13c{word-spacing:2.970966px;}
.ws31{word-spacing:3.012468px;}
.wscd{word-spacing:3.066480px;}
.wsfd{word-spacing:3.120437px;}
.ws123{word-spacing:3.138384px;}
.ws54{word-spacing:3.173856px;}
.ws64{word-spacing:3.227868px;}
.ws50{word-spacing:3.281879px;}
.ws11e{word-spacing:3.305802px;}
.ws65{word-spacing:3.335244px;}
.ws10c{word-spacing:3.389197px;}
.wscb{word-spacing:3.389256px;}
.wsbd{word-spacing:3.496632px;}
.ws7e{word-spacing:3.550052px;}
.ws7b{word-spacing:3.550644px;}
.ws7c{word-spacing:3.658020px;}
.wsc{word-spacing:3.712032px;}
.ws61{word-spacing:3.819408px;}
.ws67{word-spacing:3.873420px;}
.ws13e{word-spacing:3.891408px;}
.wsd1{word-spacing:3.926839px;}
.ws3c{word-spacing:3.927431px;}
.ws3b{word-spacing:4.034808px;}
.ws139{word-spacing:4.142807px;}
.ws6e{word-spacing:4.196196px;}
.wsa1{word-spacing:4.303626px;}
.wsb{word-spacing:4.411003px;}
.wsf8{word-spacing:4.411595px;}
.ws53{word-spacing:4.572391px;}
.ws10b{word-spacing:4.600068px;}
.ws12a{word-spacing:4.600230px;}
.ws5e{word-spacing:4.626402px;}
.wsc6{word-spacing:4.733779px;}
.ws77{word-spacing:4.841801px;}
.ws5f{word-spacing:5.217943px;}
.ws103{word-spacing:5.271954px;}
.ws82{word-spacing:5.379385px;}
.wsbb{word-spacing:5.379977px;}
.ws4e{word-spacing:5.540773px;}
.ws70{word-spacing:5.648741px;}
.ws47{word-spacing:5.863549px;}
.ws3f{word-spacing:6.132905px;}
.ws18{word-spacing:6.168971px;}
.ws9e{word-spacing:6.186325px;}
.ws101{word-spacing:6.186917px;}
.wsa0{word-spacing:6.293702px;}
.wse3{word-spacing:6.347713px;}
.wsc9{word-spacing:6.455735px;}
.wsd2{word-spacing:6.617123px;}
.ws84{word-spacing:6.724500px;}
.ws12f{word-spacing:8.075934px;}
.ws135{word-spacing:8.201173px;}
.wsea{word-spacing:8.417546px;}
.wsf3{word-spacing:8.440831px;}
.wsf1{word-spacing:8.440973px;}
.wsec{word-spacing:8.441271px;}
.wsef{word-spacing:8.441566px;}
.ws1b{word-spacing:8.799071px;}
.ws10f{word-spacing:9.163627px;}
.ws13a{word-spacing:10.210062px;}
.ws131{word-spacing:10.335468px;}
.ws11b{word-spacing:10.418863px;}
.ws35{word-spacing:10.419156px;}
.ws1d{word-spacing:10.419449px;}
.ws127{word-spacing:10.460874px;}
.ws12d{word-spacing:10.502844px;}
.ws122{word-spacing:10.586239px;}
.ws76{word-spacing:10.598135px;}
.ws136{word-spacing:10.628250px;}
.ws137{word-spacing:10.712273px;}
.ws1e{word-spacing:11.142060px;}
.ws116{word-spacing:11.172474px;}
.ws111{word-spacing:11.400036px;}
.ws1f{word-spacing:11.689583px;}
.ws17{word-spacing:11.907180px;}
.wsab{word-spacing:11.907648px;}
.wsac{word-spacing:11.908380px;}
.ws132{word-spacing:12.063552px;}
.ws11f{word-spacing:12.063570px;}
.ws69{word-spacing:12.104046px;}
.ws98{word-spacing:12.267924px;}
.wsd9{word-spacing:12.803609px;}
.wse8{word-spacing:12.911040px;}
.wsad{word-spacing:13.233816px;}
.wsb8{word-spacing:13.287235px;}
.ws9a{word-spacing:13.287827px;}
.ws14{word-spacing:13.395204px;}
.ws13{word-spacing:13.405764px;}
.ws68{word-spacing:13.422168px;}
.ws6b{word-spacing:13.482587px;}
.ws12{word-spacing:13.502581px;}
.wsff{word-spacing:13.556592px;}
.ws96{word-spacing:14.354784px;}
.wsae{word-spacing:14.528664px;}
.wsb0{word-spacing:15.018852px;}
.ws62{word-spacing:16.298046px;}
.ws11{word-spacing:16.298177px;}
.ws9f{word-spacing:19.688906px;}
.wsba{word-spacing:20.512368px;}
.ws0{word-spacing:25.718900px;}
.ws1{word-spacing:25.719210px;}
.wse2{word-spacing:46.318356px;}
.wsf5{word-spacing:51.485668px;}
.wsed{word-spacing:52.161911px;}
.wse0{word-spacing:57.832650px;}
.wsf4{word-spacing:62.483898px;}
.ws21{word-spacing:65.388546px;}
.wsdc{word-spacing:67.538255px;}
.wsf6{word-spacing:72.208247px;}
.wsf7{word-spacing:74.845271px;}
.wsf2{word-spacing:79.890033px;}
.wseb{word-spacing:81.106183px;}
.wsf0{word-spacing:81.884529px;}
.wsee{word-spacing:83.792947px;}
.wse1{word-spacing:99.069139px;}
.wsdb{word-spacing:211.069836px;}
.wsde{word-spacing:231.547157px;}
.wsdf{word-spacing:303.477120px;}
.wsda{word-spacing:416.745696px;}
.wsdd{word-spacing:491.977284px;}
._e{margin-left:-7.469232px;}
._5{margin-left:-5.326557px;}
._b{margin-left:-4.304856px;}
._3{margin-left:-3.173265px;}
._0{margin-left:-1.652537px;}
._1{width:1.549143px;}
._a{width:2.690904px;}
._2{width:4.546413px;}
._c{width:6.455520px;}
._13{width:7.498047px;}
._35{width:9.917070px;}
._12{width:10.973523px;}
._4{width:12.742207px;}
._f{width:14.263223px;}
._7{width:15.388131px;}
._36{width:17.432840px;}
._d{width:18.936353px;}
._11{width:21.032355px;}
._37{width:27.659010px;}
._38{width:30.168311px;}
._20{width:38.230327px;}
._10{width:52.989060px;}
._1f{width:54.602940px;}
._17{width:59.767356px;}
._28{width:61.948954px;}
._8{width:65.454000px;}
._21{width:78.360864px;}
._24{width:80.659598px;}
._1c{width:83.061024px;}
._25{width:93.710652px;}
._22{width:113.653641px;}
._19{width:118.727180px;}
._2a{width:121.445380px;}
._2c{width:123.820231px;}
._26{width:129.373256px;}
._27{width:130.826652px;}
._1d{width:135.135552px;}
._2b{width:143.030539px;}
._23{width:146.546640px;}
._29{width:150.484522px;}
._1e{width:164.615760px;}
._31{width:178.663632px;}
._1b{width:180.001362px;}
._1a{width:189.631115px;}
._33{width:192.428400px;}
._14{width:200.521270px;}
._18{width:214.646040px;}
._2f{width:218.088984px;}
._16{width:230.569656px;}
._32{width:256.484189px;}
._34{width:360.163574px;}
._2e{width:375.280896px;}
._30{width:385.178661px;}
._15{width:420.426847px;}
._2d{width:575.724792px;}
._9{width:775.829237px;}
._6{width:1805.423397px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:32.880000px;}
.fsb{font-size:33.805406px;}
.fs8{font-size:41.844000px;}
.fsa{font-size:43.638000px;}
.fs6{font-size:47.820000px;}
.fs3{font-size:52.602000px;}
.fs5{font-size:53.796000px;}
.fs2{font-size:59.778000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:65.454000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y56{bottom:58.605150px;}
.y30{bottom:126.979500px;}
.y2f{bottom:138.934500px;}
.y55{bottom:143.416500px;}
.y2e{bottom:150.889500px;}
.y54{bottom:159.855000px;}
.y201{bottom:162.844500px;}
.y2d{bottom:164.040000px;}
.y200{bottom:174.799500px;}
.y53{bottom:176.293500px;}
.y2c{bottom:177.190500px;}
.ya3{bottom:179.556000px;}
.y15c{bottom:180.403500px;}
.y18b{bottom:184.435500px;}
.y1ff{bottom:186.754500px;}
.y52{bottom:192.732000px;}
.ya2{bottom:195.994500px;}
.y1fe{bottom:198.709500px;}
.y18a{bottom:200.874000px;}
.ydb{bottom:200.940000px;}
.y51{bottom:209.170500px;}
.y1fd{bottom:210.664500px;}
.ya1{bottom:212.433000px;}
.y15b{bottom:215.845500px;}
.y189{bottom:217.312500px;}
.yda{bottom:217.378500px;}
.y1fc{bottom:222.619500px;}
.y50{bottom:225.609000px;}
.ya0{bottom:228.871500px;}
.y2b{bottom:231.192000px;}
.y15a{bottom:232.284000px;}
.y188{bottom:233.749500px;}
.yd9{bottom:233.815500px;}
.y1fb{bottom:234.576000px;}
.y4f{bottom:242.047500px;}
.y246{bottom:244.941000px;}
.y9f{bottom:245.310000px;}
.y1fa{bottom:246.531000px;}
.y159{bottom:248.722500px;}
.y187{bottom:250.188000px;}
.yd8{bottom:250.254000px;}
.y2a{bottom:251.134500px;}
.y245{bottom:256.896000px;}
.y4e{bottom:258.486000px;}
.y9e{bottom:261.748500px;}
.y29{bottom:266.079000px;}
.y186{bottom:266.626500px;}
.yd7{bottom:266.692500px;}
.y244{bottom:268.851000px;}
.y1f9{bottom:270.912000px;}
.y158{bottom:271.587000px;}
.y4d{bottom:274.924500px;}
.y9d{bottom:278.187000px;}
.y132{bottom:279.033000px;}
.y243{bottom:280.806000px;}
.y28{bottom:281.023500px;}
.y1f8{bottom:282.867000px;}
.y185{bottom:283.065000px;}
.yd6{bottom:283.131000px;}
.y106{bottom:283.227000px;}
.y157{bottom:288.024000px;}
.y4c{bottom:291.363000px;}
.y242{bottom:292.761000px;}
.y9c{bottom:294.624000px;}
.y27{bottom:295.966500px;}
.y1f7{bottom:298.932000px;}
.yd5{bottom:299.569500px;}
.y7b{bottom:299.581500px;}
.y105{bottom:299.665500px;}
.y184{bottom:303.613500px;}
.y156{bottom:304.462500px;}
.y241{bottom:304.716000px;}
.y4b{bottom:307.800000px;}
.y9b{bottom:311.062500px;}
.y131{bottom:311.584500px;}
.yd4{bottom:316.008000px;}
.y7a{bottom:316.020000px;}
.y104{bottom:316.104000px;}
.y240{bottom:316.671000px;}
.y26{bottom:317.224500px;}
.y155{bottom:320.901000px;}
.y4a{bottom:324.238500px;}
.y9a{bottom:327.501000px;}
.y130{bottom:328.023000px;}
.y23f{bottom:328.627500px;}
.y1f6{bottom:331.405500px;}
.yd3{bottom:332.446500px;}
.y79{bottom:332.458500px;}
.y103{bottom:332.542500px;}
.y1b8{bottom:332.839500px;}
.y25{bottom:333.663000px;}
.y183{bottom:335.290500px;}
.y154{bottom:337.339500px;}
.y23e{bottom:340.582500px;}
.y49{bottom:340.677000px;}
.y99{bottom:343.939500px;}
.y12f{bottom:344.460000px;}
.y1f5{bottom:347.844000px;}
.yd2{bottom:348.885000px;}
.y78{bottom:348.897000px;}
.y102{bottom:348.981000px;}
.y1b7{bottom:349.278000px;}
.y182{bottom:351.729000px;}
.y23d{bottom:352.537500px;}
.y153{bottom:353.778000px;}
.y24{bottom:354.211500px;}
.y48{bottom:357.115500px;}
.y98{bottom:360.378000px;}
.y12e{bottom:360.898500px;}
.y1f4{bottom:364.282500px;}
.y23c{bottom:364.492500px;}
.yd1{bottom:365.323500px;}
.y77{bottom:365.335500px;}
.y101{bottom:365.419500px;}
.y1b6{bottom:365.716500px;}
.y181{bottom:368.167500px;}
.y152{bottom:370.216500px;}
.y47{bottom:373.554000px;}
.y23b{bottom:376.447500px;}
.y97{bottom:376.816500px;}
.y12d{bottom:377.337000px;}
.y1f3{bottom:380.721000px;}
.yd0{bottom:381.762000px;}
.y76{bottom:381.774000px;}
.y100{bottom:381.858000px;}
.y1b5{bottom:382.155000px;}
.y180{bottom:384.606000px;}
.y23{bottom:386.257500px;}
.y151{bottom:386.655000px;}
.y1d6{bottom:387.271500px;}
.y23a{bottom:388.402500px;}
.y46{bottom:389.992500px;}
.y96{bottom:393.255000px;}
.y12c{bottom:393.775500px;}
.y1f2{bottom:397.159500px;}
.ybb{bottom:397.414500px;}
.y75{bottom:398.211000px;}
.yff{bottom:398.296500px;}
.y1b4{bottom:398.593500px;}
.y239{bottom:400.357500px;}
.y17f{bottom:401.044500px;}
.ycf{bottom:401.076000px;}
.y22{bottom:402.696000px;}
.y150{bottom:403.093500px;}
.y1d5{bottom:403.710000px;}
.y45{bottom:406.431000px;}
.y95{bottom:409.693500px;}
.y12b{bottom:410.214000px;}
.y238{bottom:412.312500px;}
.y1f1{bottom:413.598000px;}
.yba{bottom:413.853000px;}
.y74{bottom:414.649500px;}
.yfe{bottom:414.735000px;}
.y1b3{bottom:415.032000px;}
.y17e{bottom:417.483000px;}
.yce{bottom:417.514500px;}
.y14f{bottom:419.532000px;}
.y1d4{bottom:420.148500px;}
.y44{bottom:422.869500px;}
.y21{bottom:423.244500px;}
.y237{bottom:424.267500px;}
.y94{bottom:426.132000px;}
.y12a{bottom:426.652500px;}
.yb9{bottom:430.291500px;}
.y73{bottom:431.088000px;}
.yfd{bottom:431.173500px;}
.y1b2{bottom:431.470500px;}
.y17d{bottom:433.921500px;}
.ycd{bottom:433.953000px;}
.y1f0{bottom:434.145000px;}
.y14e{bottom:435.970500px;}
.y236{bottom:436.224000px;}
.y1d3{bottom:436.585500px;}
.y43{bottom:439.308000px;}
.y93{bottom:442.570500px;}
.y129{bottom:443.091000px;}
.yb8{bottom:446.730000px;}
.y72{bottom:447.526500px;}
.yfc{bottom:447.612000px;}
.y1b1{bottom:447.907500px;}
.y235{bottom:448.179000px;}
.y17c{bottom:450.360000px;}
.ycc{bottom:450.391500px;}
.y14d{bottom:452.407500px;}
.y1d2{bottom:453.024000px;}
.y20{bottom:455.292000px;}
.y42{bottom:455.746500px;}
.y128{bottom:459.529500px;}
.y234{bottom:460.134000px;}
.y92{bottom:463.117500px;}
.yb7{bottom:463.168500px;}
.y71{bottom:463.965000px;}
.y1b0{bottom:464.346000px;}
.y1ef{bottom:466.620000px;}
.y17b{bottom:466.798500px;}
.ycb{bottom:466.830000px;}
.yfb{bottom:467.089500px;}
.y14c{bottom:468.846000px;}
.y1d1{bottom:470.061000px;}
.y1f{bottom:471.729000px;}
.y233{bottom:472.089000px;}
.y41{bottom:472.185000px;}
.y127{bottom:475.968000px;}
.yb6{bottom:479.607000px;}
.y70{bottom:480.403500px;}
.y1af{bottom:480.784500px;}
.y1ee{bottom:483.058500px;}
.y17a{bottom:483.235500px;}
.yca{bottom:483.268500px;}
.y232{bottom:484.044000px;}
.y14b{bottom:485.284500px;}
.y1e{bottom:488.167500px;}
.y40{bottom:488.622000px;}
.yfa{bottom:489.606000px;}
.y126{bottom:492.406500px;}
.y91{bottom:495.274500px;}
.y231{bottom:495.999000px;}
.yb5{bottom:496.045500px;}
.y6f{bottom:496.842000px;}
.y1ae{bottom:497.223000px;}
.y1ed{bottom:499.497000px;}
.y179{bottom:499.674000px;}
.yc9{bottom:499.707000px;}
.y14a{bottom:501.723000px;}
.y1d{bottom:504.606000px;}
.y3f{bottom:505.060500px;}
.y1d0{bottom:507.906000px;}
.y230{bottom:507.954000px;}
.y125{bottom:508.845000px;}
.y90{bottom:511.713000px;}
.yb4{bottom:512.484000px;}
.y1ad{bottom:513.661500px;}
.y1ec{bottom:515.935500px;}
.y178{bottom:516.112500px;}
.yc8{bottom:516.145500px;}
.y149{bottom:518.161500px;}
.y22f{bottom:519.909000px;}
.y1c{bottom:521.044500px;}
.y3e{bottom:521.499000px;}
.y1cf{bottom:524.344500px;}
.y124{bottom:525.282000px;}
.y8f{bottom:528.151500px;}
.yf9{bottom:528.399000px;}
.yb3{bottom:528.922500px;}
.y1ac{bottom:530.100000px;}
.y22e{bottom:531.864000px;}
.y1eb{bottom:532.374000px;}
.y177{bottom:532.551000px;}
.yc7{bottom:532.584000px;}
.y148{bottom:534.600000px;}
.y1b{bottom:537.483000px;}
.y3d{bottom:537.937500px;}
.y123{bottom:541.720500px;}
.y22d{bottom:543.820500px;}
.y8e{bottom:544.590000px;}
.yf8{bottom:544.837500px;}
.yb2{bottom:545.361000px;}
.y1ab{bottom:546.538500px;}
.y1ea{bottom:548.812500px;}
.y176{bottom:548.989500px;}
.yc6{bottom:549.021000px;}
.y147{bottom:551.038500px;}
.y1a{bottom:553.921500px;}
.y3c{bottom:554.376000px;}
.y22c{bottom:556.266000px;}
.y122{bottom:558.159000px;}
.y8d{bottom:561.027000px;}
.yf7{bottom:561.276000px;}
.yb1{bottom:561.799500px;}
.y1ce{bottom:562.810500px;}
.y1aa{bottom:562.977000px;}
.y1e9{bottom:565.251000px;}
.yc5{bottom:565.459500px;}
.y146{bottom:567.477000px;}
.y22b{bottom:568.221000px;}
.y175{bottom:569.538000px;}
.y19{bottom:570.360000px;}
.y3b{bottom:570.814500px;}
.y121{bottom:574.597500px;}
.y8c{bottom:577.465500px;}
.yf6{bottom:577.515000px;}
.yb0{bottom:578.236500px;}
.y1cd{bottom:579.249000px;}
.y1a9{bottom:579.415500px;}
.y22a{bottom:580.177500px;}
.y1e8{bottom:581.688000px;}
.yc4{bottom:581.898000px;}
.yf5{bottom:582.906000px;}
.y145{bottom:583.915500px;}
.y18{bottom:586.798500px;}
.y3a{bottom:587.253000px;}
.y120{bottom:591.036000px;}
.y7c{bottom:591.363000px;}
.y229{bottom:592.132500px;}
.y8b{bottom:593.904000px;}
.yaf{bottom:594.675000px;}
.y1cc{bottom:595.687500px;}
.y1a8{bottom:595.854000px;}
.y1e7{bottom:598.126500px;}
.yc3{bottom:598.336500px;}
.y144{bottom:600.354000px;}
.y17{bottom:603.237000px;}
.y39{bottom:603.691500px;}
.y228{bottom:604.087500px;}
.y11f{bottom:607.474500px;}
.y8a{bottom:610.342500px;}
.yae{bottom:611.113500px;}
.y1cb{bottom:612.126000px;}
.y1a7{bottom:612.292500px;}
.y1e6{bottom:614.565000px;}
.y227{bottom:616.042500px;}
.y143{bottom:616.792500px;}
.yf4{bottom:618.741000px;}
.y16{bottom:619.675500px;}
.y38{bottom:620.130000px;}
.y174{bottom:622.819500px;}
.yc2{bottom:622.983000px;}
.y11e{bottom:623.913000px;}
.y6e{bottom:624.238500px;}
.y89{bottom:626.781000px;}
.y226{bottom:627.997500px;}
.y1ca{bottom:628.564500px;}
.y1a6{bottom:628.729500px;}
.y1e5{bottom:631.003500px;}
.y142{bottom:633.229500px;}
.yad{bottom:634.975500px;}
.yf3{bottom:635.109000px;}
.y15{bottom:636.114000px;}
.y37{bottom:636.568500px;}
.y173{bottom:639.258000px;}
.yc1{bottom:639.421500px;}
.y225{bottom:639.952500px;}
.y11d{bottom:640.351500px;}
.yf2{bottom:640.500000px;}
.y88{bottom:643.219500px;}
.y1a5{bottom:645.168000px;}
.y1c9{bottom:645.600000px;}
.y1e4{bottom:647.442000px;}
.y141{bottom:649.668000px;}
.yac{bottom:651.414000px;}
.y224{bottom:651.907500px;}
.y14{bottom:652.551000px;}
.y36{bottom:653.005500px;}
.y172{bottom:655.696500px;}
.yc0{bottom:655.858500px;}
.y11c{bottom:656.790000px;}
.y1a4{bottom:661.606500px;}
.y87{bottom:662.920500px;}
.yf1{bottom:663.004500px;}
.y223{bottom:663.862500px;}
.y1e3{bottom:663.880500px;}
.y140{bottom:666.106500px;}
.yab{bottom:667.851000px;}
.y13{bottom:668.989500px;}
.y35{bottom:669.444000px;}
.y171{bottom:672.135000px;}
.ybf{bottom:672.297000px;}
.y11b{bottom:673.228500px;}
.y221{bottom:675.817500px;}
.y222{bottom:675.819000px;}
.y1a3{bottom:678.045000px;}
.y86{bottom:679.359000px;}
.y1e2{bottom:680.319000px;}
.y13f{bottom:682.545000px;}
.y1c8{bottom:683.446500px;}
.yaa{bottom:684.289500px;}
.y12{bottom:685.428000px;}
.y34{bottom:685.882500px;}
.y220{bottom:687.888000px;}
.y170{bottom:688.573500px;}
.y11a{bottom:689.665500px;}
.ybe{bottom:692.845500px;}
.y1a2{bottom:694.483500px;}
.y85{bottom:695.797500px;}
.yf0{bottom:695.881500px;}
.y1e1{bottom:696.757500px;}
.y13e{bottom:698.983500px;}
.y21f{bottom:699.843000px;}
.y1c7{bottom:699.885000px;}
.ya9{bottom:700.728000px;}
.y11{bottom:701.866500px;}
.y6d{bottom:702.321000px;}
.y16f{bottom:705.609000px;}
.y119{bottom:706.104000px;}
.y33{bottom:706.431000px;}
.y1a1{bottom:710.922000px;}
.y21e{bottom:711.799500px;}
.y84{bottom:712.234500px;}
.yef{bottom:712.320000px;}
.y1e0{bottom:713.196000px;}
.y13d{bottom:715.422000px;}
.ya8{bottom:717.166500px;}
.y10{bottom:718.305000px;}
.y6c{bottom:718.759500px;}
.y118{bottom:722.542500px;}
.y21d{bottom:723.754500px;}
.ybd{bottom:724.590000px;}
.y1a0{bottom:727.360500px;}
.y83{bottom:728.673000px;}
.yee{bottom:728.758500px;}
.y1df{bottom:729.634500px;}
.y13c{bottom:731.860500px;}
.ya7{bottom:733.605000px;}
.yf{bottom:734.743500px;}
.y6b{bottom:735.198000px;}
.y21c{bottom:735.709500px;}
.y1c6{bottom:738.351000px;}
.ybc{bottom:741.028500px;}
.y32{bottom:741.841500px;}
.y117{bottom:742.623000px;}
.y16e{bottom:743.455500px;}
.y19f{bottom:743.799000px;}
.y82{bottom:745.111500px;}
.y1de{bottom:746.071500px;}
.y21b{bottom:747.664500px;}
.yed{bottom:748.155000px;}
.y13b{bottom:748.299000px;}
.ye{bottom:751.182000px;}
.y6a{bottom:751.636500px;}
.y1c5{bottom:754.789500px;}
.y31{bottom:756.786000px;}
.ya6{bottom:757.465500px;}
.y116{bottom:759.061500px;}
.y21a{bottom:759.619500px;}
.y19e{bottom:760.237500px;}
.y81{bottom:761.550000px;}
.y1dd{bottom:762.510000px;}
.yec{bottom:767.551500px;}
.y69{bottom:768.075000px;}
.y13a{bottom:771.162000px;}
.y1c4{bottom:771.228000px;}
.y219{bottom:771.574500px;}
.yd{bottom:771.729000px;}
.ya5{bottom:773.904000px;}
.y16d{bottom:774.508500px;}
.y115{bottom:775.500000px;}
.y19d{bottom:776.676000px;}
.y80{bottom:777.988500px;}
.y1dc{bottom:778.948500px;}
.y218{bottom:783.529500px;}
.yeb{bottom:783.990000px;}
.y68{bottom:784.513500px;}
.y139{bottom:787.600500px;}
.y1c3{bottom:787.665000px;}
.y16c{bottom:790.947000px;}
.y114{bottom:791.937000px;}
.y19c{bottom:793.113000px;}
.y7f{bottom:794.427000px;}
.y1db{bottom:795.387000px;}
.y217{bottom:795.484500px;}
.yea{bottom:800.428500px;}
.y67{bottom:800.952000px;}
.yc{bottom:801.706500px;}
.y138{bottom:804.039000px;}
.y1c2{bottom:804.103500px;}
.y216{bottom:807.931500px;}
.y113{bottom:808.375500px;}
.y19b{bottom:809.551500px;}
.y1da{bottom:811.825500px;}
.y7e{bottom:814.128000px;}
.ya4{bottom:816.196500px;}
.ye9{bottom:817.027500px;}
.y66{bottom:817.390500px;}
.yb{bottom:819.640500px;}
.y215{bottom:819.886500px;}
.y1c1{bottom:821.140500px;}
.ye8{bottom:822.418500px;}
.y137{bottom:824.586000px;}
.y112{bottom:824.814000px;}
.y19a{bottom:825.990000px;}
.y1d9{bottom:828.264000px;}
.y7d{bottom:830.566500px;}
.y214{bottom:831.841500px;}
.y16a{bottom:831.885000px;}
.y16b{bottom:833.380500px;}
.y65{bottom:833.827500px;}
.ya{bottom:837.573000px;}
.y111{bottom:841.252500px;}
.ye7{bottom:841.878000px;}
.y213{bottom:843.798000px;}
.y1d8{bottom:844.702500px;}
.y169{bottom:849.817500px;}
.y64{bottom:850.266000px;}
.y9{bottom:855.505500px;}
.y212{bottom:855.753000px;}
.y110{bottom:857.691000px;}
.ye6{bottom:858.316500px;}
.y1c0{bottom:858.985500px;}
.y136{bottom:860.029500px;}
.y1d7{bottom:865.251000px;}
.y63{bottom:866.704500px;}
.y168{bottom:866.854500px;}
.y211{bottom:867.708000px;}
.y199{bottom:871.260441px;}
.y8{bottom:873.438000px;}
.y10f{bottom:874.129500px;}
.ye5{bottom:874.915500px;}
.y1bf{bottom:875.424000px;}
.y198{bottom:876.391200px;}
.y135{bottom:876.468000px;}
.y210{bottom:879.663000px;}
.ye4{bottom:880.306500px;}
.y62{bottom:883.143000px;}
.y167{bottom:883.293000px;}
.y10e{bottom:890.568000px;}
.y20f{bottom:891.618000px;}
.y197{bottom:892.295503px;}
.y134{bottom:892.906500px;}
.y196{bottom:897.424950px;}
.y61{bottom:899.581500px;}
.y166{bottom:899.731500px;}
.ye3{bottom:902.710500px;}
.y20e{bottom:903.573000px;}
.y10d{bottom:907.006500px;}
.y7{bottom:907.218000px;}
.y195{bottom:913.330564px;}
.y133{bottom:913.453500px;}
.y1be{bottom:913.890000px;}
.y20d{bottom:915.528000px;}
.y60{bottom:916.020000px;}
.y165{bottom:916.767000px;}
.y194{bottom:918.459600px;}
.ye2{bottom:919.149000px;}
.y10c{bottom:923.445000px;}
.y164{bottom:924.987000px;}
.y6{bottom:925.150500px;}
.y20c{bottom:927.975000px;}
.y1bd{bottom:930.328500px;}
.y5f{bottom:932.458500px;}
.y163{bottom:933.205500px;}
.y193{bottom:934.365626px;}
.ye1{bottom:935.587500px;}
.y192{bottom:939.493350px;}
.y10b{bottom:939.883500px;}
.y20b{bottom:939.930000px;}
.y5{bottom:943.083000px;}
.y1bc{bottom:946.767000px;}
.y5e{bottom:948.897000px;}
.y162{bottom:949.644000px;}
.y20a{bottom:951.885000px;}
.ye0{bottom:952.026000px;}
.y191{bottom:955.401630px;}
.y10a{bottom:956.322000px;}
.y190{bottom:960.527100px;}
.y4{bottom:961.015500px;}
.y1bb{bottom:963.205500px;}
.y209{bottom:963.840000px;}
.y5d{bottom:965.335500px;}
.y161{bottom:966.082500px;}
.ydf{bottom:967.861500px;}
.y109{bottom:972.759000px;}
.yde{bottom:973.252500px;}
.y208{bottom:975.795000px;}
.y207{bottom:975.796500px;}
.y18f{bottom:976.436692px;}
.y3{bottom:978.948000px;}
.y1ba{bottom:979.644000px;}
.y18e{bottom:981.561750px;}
.y5c{bottom:981.774000px;}
.y160{bottom:982.521000px;}
.y206{bottom:987.751500px;}
.y108{bottom:989.197500px;}
.ydd{bottom:995.253000px;}
.y1b9{bottom:996.679500px;}
.y5b{bottom:998.211000px;}
.y15f{bottom:998.959500px;}
.y18d{bottom:999.684000px;}
.y205{bottom:999.706500px;}
.y107{bottom:1005.636000px;}
.y204{bottom:1011.661500px;}
.ydc{bottom:1011.691500px;}
.y5a{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y15e{bottom:1015.995000px;}
.y203{bottom:1023.616500px;}
.y59{bottom:1031.088000px;}
.y18c{bottom:1034.526000px;}
.y202{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y58{bottom:1047.526500px;}
.y15d{bottom:1050.964500px;}
.y57{bottom:1086.979500px;}
.h17{height:24.505932px;}
.ha{height:26.961600px;}
.h19{height:27.720433px;}
.hf{height:29.500020px;}
.hc{height:29.625552px;}
.h13{height:31.288446px;}
.hd{height:33.856560px;}
.h15{height:34.286940px;}
.hb{height:34.312080px;}
.h8{height:34.430400px;}
.h16{height:35.783160px;}
.h11{height:37.549608px;}
.h7{height:38.571732px;}
.h10{height:38.733120px;}
.h9{height:39.212400px;}
.h6{height:44.112720px;}
.h5{height:47.126880px;}
.h1e{height:48.513440px;}
.h1d{height:48.522457px;}
.h1c{height:48.524104px;}
.h1b{height:48.529350px;}
.h1a{height:48.538367px;}
.h18{height:48.540013px;}
.h3{height:49.017960px;}
.h12{height:58.210446px;}
.h2{height:58.818600px;}
.h14{height:59.824446px;}
.he{height:62.373047px;}
.h4{height:69.173640px;}
.h1{height:72.096420px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:80.697000px;}
.x1{left:84.280500px;}
.x71{left:86.386500px;}
.xd6{left:87.504900px;}
.xa3{left:90.786000px;}
.x1f{left:95.641500px;}
.xc2{left:97.062000px;}
.x72{left:98.241000px;}
.x73{left:103.576500px;}
.x4d{left:104.647500px;}
.x5a{left:112.506000px;}
.x74{left:115.834500px;}
.x4e{left:117.310500px;}
.x4{left:122.680500px;}
.x75{left:124.302000px;}
.xe{left:126.327000px;}
.xd5{left:130.435591px;}
.x7b{left:134.781000px;}
.x9d{left:139.759500px;}
.x92{left:141.730500px;}
.x5b{left:145.012500px;}
.xd7{left:146.853000px;}
.x5c{left:151.153500px;}
.x93{left:154.239000px;}
.x20{left:157.173000px;}
.x5d{left:159.802500px;}
.x21{left:163.426500px;}
.x7f{left:164.886000px;}
.x79{left:166.698000px;}
.x7c{left:168.106500px;}
.xca{left:170.895000px;}
.x55{left:175.426500px;}
.x56{left:180.309000px;}
.x94{left:181.392000px;}
.x9f{left:185.209500px;}
.x57{left:186.283500px;}
.xa1{left:188.886000px;}
.x9a{left:189.955500px;}
.x98{left:192.492000px;}
.x95{left:198.073500px;}
.x99{left:199.153500px;}
.x96{left:200.967000px;}
.x3{left:203.662500px;}
.x2{left:205.390500px;}
.x9b{left:207.144000px;}
.x7{left:208.996500px;}
.x52{left:210.442500px;}
.x22{left:211.887000px;}
.x5{left:213.390000px;}
.x7d{left:214.699500px;}
.x16{left:216.582000px;}
.x23{left:218.140500px;}
.x58{left:219.591000px;}
.x6c{left:221.287500px;}
.x59{left:224.877000px;}
.x10{left:227.377500px;}
.xd{left:229.383000px;}
.x61{left:232.069500px;}
.x6{left:234.640500px;}
.x62{left:238.020000px;}
.xf{left:242.590500px;}
.x77{left:248.848500px;}
.x83{left:253.537500px;}
.x80{left:255.022500px;}
.xc0{left:257.154000px;}
.x6d{left:259.710000px;}
.x78{left:262.438500px;}
.x63{left:264.798000px;}
.x4f{left:267.501000px;}
.x64{left:271.152000px;}
.xc3{left:276.801000px;}
.x6b{left:278.185500px;}
.x65{left:279.807000px;}
.x50{left:281.869500px;}
.xc4{left:283.054500px;}
.x5e{left:284.680500px;}
.x81{left:286.965000px;}
.x6e{left:290.374500px;}
.x6f{left:293.562000px;}
.xa2{left:295.521000px;}
.xc1{left:297.007500px;}
.x2c{left:298.801500px;}
.x70{left:299.940000px;}
.xc7{left:302.472000px;}
.x97{left:307.825500px;}
.x67{left:309.079500px;}
.x2d{left:311.310000px;}
.x68{left:313.962000px;}
.x5f{left:318.064500px;}
.x69{left:319.938000px;}
.x60{left:323.802000px;}
.xc8{left:325.044000px;}
.x39{left:343.410000px;}
.xc5{left:353.682000px;}
.x3a{left:355.918500px;}
.x82{left:357.535500px;}
.x4c{left:360.058500px;}
.x2a{left:365.730000px;}
.x6a{left:367.050000px;}
.x7a{left:369.996000px;}
.x51{left:371.031000px;}
.xa0{left:373.369500px;}
.x2b{left:378.237000px;}
.x7e{left:379.809000px;}
.x26{left:383.463000px;}
.x66{left:384.549000px;}
.x28{left:387.660000px;}
.x27{left:389.716500px;}
.xc6{left:394.617000px;}
.x29{left:400.167000px;}
.x9e{left:402.360000px;}
.x53{left:404.346000px;}
.x3b{left:406.020000px;}
.x54{left:415.252500px;}
.x3c{left:418.528500px;}
.x76{left:421.230000px;}
.x24{left:422.844000px;}
.x9c{left:430.939500px;}
.xc9{left:433.522500px;}
.x25{left:435.352500px;}
.x1e{left:447.750000px;}
.xd4{left:474.660000px;}
.xa4{left:475.857000px;}
.x17{left:476.932500px;}
.xcb{left:478.702500px;}
.x30{left:481.624500px;}
.xcc{left:484.404000px;}
.xd0{left:485.412000px;}
.xb9{left:488.092500px;}
.xcf{left:489.802500px;}
.x12{left:491.269500px;}
.xce{left:492.378000px;}
.x31{left:494.133000px;}
.x9{left:496.410000px;}
.xcd{left:497.920500px;}
.xd8{left:499.773000px;}
.x32{left:500.883000px;}
.xa5{left:509.964000px;}
.x33{left:513.546000px;}
.x49{left:514.833000px;}
.x3d{left:516.871500px;}
.x43{left:518.715000px;}
.xd1{left:523.900500px;}
.x34{left:526.248000px;}
.x35{left:527.532000px;}
.x1c{left:529.522500px;}
.x90{left:536.683500px;}
.x36{left:540.040500px;}
.x1d{left:542.029500px;}
.xb1{left:548.341500px;}
.x91{left:552.298500px;}
.x11{left:553.666500px;}
.x37{left:567.064500px;}
.x8e{left:571.129500px;}
.x38{left:573.318000px;}
.x40{left:574.732500px;}
.x14{left:577.623000px;}
.x8{left:579.220500px;}
.x13{left:581.979000px;}
.x8f{left:585.930000px;}
.x84{left:590.196000px;}
.xb2{left:595.033500px;}
.xc{left:596.385000px;}
.x3e{left:598.191000px;}
.x42{left:602.239500px;}
.xb{left:603.976500px;}
.xaa{left:605.536500px;}
.xa{left:612.675000px;}
.x18{left:615.376500px;}
.xab{left:616.492500px;}
.x46{left:618.819000px;}
.xb7{left:625.065000px;}
.x4a{left:626.101500px;}
.x19{left:627.885000px;}
.x4b{left:632.355000px;}
.xb8{left:634.602000px;}
.xd2{left:640.902000px;}
.xd3{left:650.074500px;}
.xb5{left:653.008500px;}
.x3f{left:661.585500px;}
.x85{left:665.650500px;}
.x47{left:671.592000px;}
.xbd{left:672.619500px;}
.xa6{left:678.148500px;}
.x48{left:685.084500px;}
.xbe{left:687.054000px;}
.xac{left:694.822500px;}
.x41{left:696.807000px;}
.x1a{left:704.053500px;}
.xad{left:706.170000px;}
.xb6{left:710.479500px;}
.xa8{left:713.557500px;}
.x1b{left:716.562000px;}
.xa9{left:724.318500px;}
.xae{left:729.069000px;}
.x44{left:735.646500px;}
.xbc{left:737.076000px;}
.xaf{left:740.026500px;}
.xa7{left:747.325500px;}
.x45{left:749.463000px;}
.x86{left:750.717000px;}
.x8c{left:755.077500px;}
.xba{left:757.434000px;}
.xbf{left:766.653000px;}
.xb3{left:773.454000px;}
.xb0{left:779.542500px;}
.x87{left:783.060000px;}
.x2e{left:786.220500px;}
.x88{left:788.785500px;}
.x8d{left:794.365500px;}
.x2f{left:798.729000px;}
.xbb{left:807.007500px;}
.x89{left:814.087500px;}
.x8a{left:820.216500px;}
.x8b{left:828.591000px;}
.xb4{left:830.923500px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v5{vertical-align:-10.469333pt;}
.v3{vertical-align:-7.173333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.362686pt;}
.v1{vertical-align:23.146667pt;}
.v4{vertical-align:25.365333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.120128pt;}
.lsc{letter-spacing:0.125461pt;}
.ls47{letter-spacing:0.192485pt;}
.ls4a{letter-spacing:0.197819pt;}
.ls52{letter-spacing:0.334933pt;}
.ls49{letter-spacing:0.385984pt;}
.ls30{letter-spacing:0.476384pt;}
.ls40{letter-spacing:0.481717pt;}
.ls37{letter-spacing:0.773819pt;}
.ls43{letter-spacing:0.779152pt;}
.ls5b{letter-spacing:1.196384pt;}
.ls35{letter-spacing:1.360485pt;}
.ls48{letter-spacing:1.552293pt;}
.ls1c{letter-spacing:1.671669pt;}
.ls16{letter-spacing:1.672128pt;}
.ls18{letter-spacing:1.677461pt;}
.ls61{letter-spacing:2.151051pt;}
.ls64{letter-spacing:2.156384pt;}
.ls1d{letter-spacing:2.656293pt;}
.ls3{letter-spacing:2.657707pt;}
.ls55{letter-spacing:2.680661pt;}
.ls1e{letter-spacing:2.731675pt;}
.ls23{letter-spacing:2.737008pt;}
.ls24{letter-spacing:2.809600pt;}
.ls20{letter-spacing:2.814933pt;}
.ls57{letter-spacing:3.608672pt;}
.ls53{letter-spacing:3.613461pt;}
.ls58{letter-spacing:3.614005pt;}
.ls67{letter-spacing:3.825792pt;}
.ls7{letter-spacing:4.517152pt;}
.ls6{letter-spacing:4.522485pt;}
.ls38{letter-spacing:5.173797pt;}
.ls3e{letter-spacing:5.179131pt;}
.lsf{letter-spacing:5.387675pt;}
.ls11{letter-spacing:5.393008pt;}
.ls12{letter-spacing:5.465600pt;}
.ls13{letter-spacing:5.470933pt;}
.ls3a{letter-spacing:5.725013pt;}
.ls2f{letter-spacing:6.217429pt;}
.ls5a{letter-spacing:6.238464pt;}
.ls36{letter-spacing:7.000427pt;}
.ls3f{letter-spacing:7.115131pt;}
.ls39{letter-spacing:7.252469pt;}
.ls56{letter-spacing:7.302341pt;}
.ls9{letter-spacing:7.539328pt;}
.ls60{letter-spacing:8.130869pt;}
.ls2d{letter-spacing:8.691328pt;}
.lse{letter-spacing:8.717995pt;}
.ls4{letter-spacing:9.296373pt;}
.ls10{letter-spacing:9.624661pt;}
.ls44{letter-spacing:10.627840pt;}
.ls32{letter-spacing:11.129685pt;}
.ls3b{letter-spacing:11.135019pt;}
.ls59{letter-spacing:11.369653pt;}
.ls66{letter-spacing:11.778667pt;}
.ls4c{letter-spacing:11.851349pt;}
.ls2{letter-spacing:11.956352pt;}
.ls46{letter-spacing:11.962955pt;}
.ls28{letter-spacing:11.966987pt;}
.ls29{letter-spacing:11.972320pt;}
.ls0{letter-spacing:12.058315pt;}
.ls1{letter-spacing:12.079381pt;}
.ls22{letter-spacing:12.809653pt;}
.ls45{letter-spacing:13.011328pt;}
.ls4e{letter-spacing:13.286016pt;}
.ls5d{letter-spacing:13.325333pt;}
.ls4b{letter-spacing:13.389995pt;}
.ls63{letter-spacing:14.006016pt;}
.ls5f{letter-spacing:14.040000pt;}
.ls2a{letter-spacing:14.608293pt;}
.ls51{letter-spacing:15.195349pt;}
.ls3c{letter-spacing:15.671051pt;}
.ls33{letter-spacing:15.676384pt;}
.ls54{letter-spacing:15.681451pt;}
.ls25{letter-spacing:15.936293pt;}
.ls26{letter-spacing:15.941627pt;}
.ls27{letter-spacing:16.501627pt;}
.ls50{letter-spacing:16.894005pt;}
.ls2e{letter-spacing:17.932544pt;}
.ls68{letter-spacing:18.174763pt;}
.ls21{letter-spacing:18.394960pt;}
.ls1f{letter-spacing:18.400293pt;}
.ls3d{letter-spacing:18.496683pt;}
.ls62{letter-spacing:18.545717pt;}
.ls5e{letter-spacing:18.565152pt;}
.ls65{letter-spacing:18.947435pt;}
.ls41{letter-spacing:19.260544pt;}
.ls31{letter-spacing:19.265877pt;}
.ls5c{letter-spacing:19.304107pt;}
.ls2b{letter-spacing:19.633008pt;}
.lsb{letter-spacing:19.638341pt;}
.ls2c{letter-spacing:19.705600pt;}
.lsd{letter-spacing:19.710933pt;}
.ls1a{letter-spacing:20.041685pt;}
.ls15{letter-spacing:20.155499pt;}
.ls14{letter-spacing:21.254165pt;}
.ls8{letter-spacing:21.258123pt;}
.ls34{letter-spacing:22.763349pt;}
.ls19{letter-spacing:24.487051pt;}
.ls1b{letter-spacing:25.226960pt;}
.ls17{letter-spacing:25.232293pt;}
.ls4d{letter-spacing:36.828384pt;}
.ls4f{letter-spacing:40.113717pt;}
.ls42{letter-spacing:43.318016pt;}
.ls6a{letter-spacing:74.587427pt;}
.ls69{letter-spacing:119.786365pt;}
.ls6b{letter-spacing:133.758630pt;}
.wsc4{word-spacing:-48.966315pt;}
.wsb1{word-spacing:-41.197003pt;}
.wsb4{word-spacing:-39.762336pt;}
.wsa4{word-spacing:-39.720277pt;}
.wsb2{word-spacing:-39.047669pt;}
.ws91{word-spacing:-36.584986pt;}
.ws87{word-spacing:-31.847232pt;}
.ws6f{word-spacing:-30.460491pt;}
.ws7a{word-spacing:-23.732305pt;}
.ws73{word-spacing:-23.526927pt;}
.ws90{word-spacing:-23.526832pt;}
.ws72{word-spacing:-23.526784pt;}
.ws75{word-spacing:-23.526401pt;}
.wsca{word-spacing:-22.474773pt;}
.ws9b{word-spacing:-20.776491pt;}
.wsa8{word-spacing:-20.387937pt;}
.wsaa{word-spacing:-20.387860pt;}
.wsa7{word-spacing:-20.382527pt;}
.ws9c{word-spacing:-18.195157pt;}
.ws88{word-spacing:-18.173824pt;}
.ws89{word-spacing:-18.152491pt;}
.wsb3{word-spacing:-18.095723pt;}
.wsa6{word-spacing:-18.047904pt;}
.ws85{word-spacing:-17.885824pt;}
.ws8b{word-spacing:-17.267157pt;}
.wsaf{word-spacing:-14.431934pt;}
.ws3{word-spacing:-13.284000pt;}
.ws51{word-spacing:-11.954667pt;}
.wsd5{word-spacing:-11.799893pt;}
.ws113{word-spacing:-9.298667pt;}
.ws104{word-spacing:-3.825972pt;}
.ws55{word-spacing:-3.825446pt;}
.ws22{word-spacing:-3.681990pt;}
.wsc5{word-spacing:-3.251574pt;}
.ws57{word-spacing:-3.156128pt;}
.wsbe{word-spacing:-3.108118pt;}
.ws99{word-spacing:-3.060108pt;}
.ws79{word-spacing:-2.869216pt;}
.ws74{word-spacing:-2.821206pt;}
.wsb5{word-spacing:-2.725760pt;}
.ws1a{word-spacing:-2.720639pt;}
.ws4b{word-spacing:-2.677750pt;}
.ws6c{word-spacing:-2.630266pt;}
.ws100{word-spacing:-2.582304pt;}
.ws5d{word-spacing:-2.486810pt;}
.ws108{word-spacing:-2.454736pt;}
.ws37{word-spacing:-2.390838pt;}
.wsb7{word-spacing:-2.343354pt;}
.ws4c{word-spacing:-2.247382pt;}
.wsc0{word-spacing:-2.199898pt;}
.wsc1{word-spacing:-2.199372pt;}
.wscc{word-spacing:-2.151888pt;}
.wse5{word-spacing:-2.151093pt;}
.wsa3{word-spacing:-2.145760pt;}
.wsa5{word-spacing:-2.144128pt;}
.ws7f{word-spacing:-2.103926pt;}
.ws5b{word-spacing:-2.056442pt;}
.ws4{word-spacing:-2.008432pt;}
.ws134{word-spacing:-1.971541pt;}
.wsd7{word-spacing:-1.960996pt;}
.wsd8{word-spacing:-1.960470pt;}
.wse6{word-spacing:-1.912986pt;}
.ws8d{word-spacing:-1.911957pt;}
.wsc3{word-spacing:-1.864976pt;}
.wsb6{word-spacing:-1.721520pt;}
.ws94{word-spacing:-1.547707pt;}
.ws56{word-spacing:-1.530054pt;}
.wsbf{word-spacing:-1.482618pt;}
.ws133{word-spacing:-1.450443pt;}
.ws86{word-spacing:-1.434608pt;}
.wsa2{word-spacing:-1.431648pt;}
.wse4{word-spacing:-1.417589pt;}
.ws105{word-spacing:-1.413100pt;}
.ws102{word-spacing:-1.387124pt;}
.ws36{word-spacing:-1.386598pt;}
.ws13f{word-spacing:-1.338971pt;}
.wsd{word-spacing:-1.291152pt;}
.wsd0{word-spacing:-1.243142pt;}
.wsbc{word-spacing:-1.195658pt;}
.ws125{word-spacing:-1.190155pt;}
.ws6a{word-spacing:-1.147696pt;}
.ws10e{word-spacing:-1.116026pt;}
.wsc7{word-spacing:-1.099686pt;}
.ws60{word-spacing:-1.052202pt;}
.ws2b{word-spacing:-1.004240pt;}
.ws110{word-spacing:-0.967210pt;}
.ws3a{word-spacing:-0.956756pt;}
.ws58{word-spacing:-0.956230pt;}
.ws33{word-spacing:-0.908746pt;}
.ws3e{word-spacing:-0.860784pt;}
.ws120{word-spacing:-0.818431pt;}
.ws46{word-spacing:-0.812774pt;}
.ws95{word-spacing:-0.765290pt;}
.wsce{word-spacing:-0.717280pt;}
.wsd4{word-spacing:-0.713931pt;}
.wscf{word-spacing:-0.705045pt;}
.ws124{word-spacing:-0.669616pt;}
.ws2d{word-spacing:-0.669318pt;}
.ws34{word-spacing:-0.621834pt;}
.ws9d{word-spacing:-0.573824pt;}
.wsf{word-spacing:-0.525862pt;}
.ws93{word-spacing:-0.478378pt;}
.ws10a{word-spacing:-0.446150pt;}
.ws8f{word-spacing:-0.430368pt;}
.ws1c{word-spacing:-0.409365pt;}
.wsd6{word-spacing:-0.382406pt;}
.ws25{word-spacing:-0.334922pt;}
.ws114{word-spacing:-0.297334pt;}
.ws66{word-spacing:-0.286912pt;}
.ws59{word-spacing:-0.239476pt;}
.ws8{word-spacing:-0.238902pt;}
.ws13d{word-spacing:-0.223205pt;}
.ws20{word-spacing:-0.212406pt;}
.ws32{word-spacing:-0.191466pt;}
.ws10d{word-spacing:-0.185862pt;}
.ws118{word-spacing:-0.149076pt;}
.ws112{word-spacing:-0.148555pt;}
.ws7{word-spacing:-0.143456pt;}
.ws128{word-spacing:-0.111733pt;}
.ws4d{word-spacing:-0.095972pt;}
.ws40{word-spacing:-0.095637pt;}
.ws44{word-spacing:-0.095446pt;}
.ws109{word-spacing:-0.074389pt;}
.ws15{word-spacing:-0.058181pt;}
.ws6{word-spacing:-0.048010pt;}
.ws92{word-spacing:-0.047819pt;}
.ws11a{word-spacing:-0.037195pt;}
.ws129{word-spacing:-0.037083pt;}
.wse9{word-spacing:-0.030049pt;}
.ws11c{word-spacing:-0.000260pt;}
.ws2{word-spacing:0.000000pt;}
.ws106{word-spacing:0.000260pt;}
.ws117{word-spacing:0.037083pt;}
.ws16{word-spacing:0.047484pt;}
.ws23{word-spacing:0.048010pt;}
.ws12c{word-spacing:0.074389pt;}
.wsa{word-spacing:0.095446pt;}
.ws5a{word-spacing:0.095972pt;}
.ws13b{word-spacing:0.111733pt;}
.ws19{word-spacing:0.127350pt;}
.ws29{word-spacing:0.143456pt;}
.ws121{word-spacing:0.148518pt;}
.ws119{word-spacing:0.185862pt;}
.ws83{word-spacing:0.190940pt;}
.ws10{word-spacing:0.191466pt;}
.ws9{word-spacing:0.238902pt;}
.ws138{word-spacing:0.260549pt;}
.ws2c{word-spacing:0.286912pt;}
.wsfc{word-spacing:0.334922pt;}
.wsfb{word-spacing:0.430368pt;}
.ws4f{word-spacing:0.478378pt;}
.ws130{word-spacing:0.520800pt;}
.wsfe{word-spacing:0.525862pt;}
.ws78{word-spacing:0.573824pt;}
.ws11d{word-spacing:0.594966pt;}
.ws5c{word-spacing:0.621308pt;}
.wsc8{word-spacing:0.669318pt;}
.ws115{word-spacing:0.669616pt;}
.ws5{word-spacing:0.717280pt;}
.ws8c{word-spacing:0.764764pt;}
.ws8a{word-spacing:0.765290pt;}
.ws43{word-spacing:0.812774pt;}
.ws12b{word-spacing:0.855217pt;}
.ws71{word-spacing:0.860784pt;}
.ws107{word-spacing:0.892560pt;}
.ws7d{word-spacing:0.908220pt;}
.ws52{word-spacing:0.908746pt;}
.ws45{word-spacing:1.004240pt;}
.ws97{word-spacing:1.051676pt;}
.ws41{word-spacing:1.052202pt;}
.ws28{word-spacing:1.099686pt;}
.ws2f{word-spacing:1.243142pt;}
.wse{word-spacing:1.291152pt;}
.ws26{word-spacing:1.386598pt;}
.wsc2{word-spacing:1.387124pt;}
.ws12e{word-spacing:1.413658pt;}
.ws6d{word-spacing:1.434608pt;}
.ws4a{word-spacing:1.482044pt;}
.wsfa{word-spacing:1.482618pt;}
.ws30{word-spacing:1.530054pt;}
.wse7{word-spacing:1.578064pt;}
.ws81{word-spacing:1.673510pt;}
.ws49{word-spacing:1.721520pt;}
.ws126{word-spacing:1.748038pt;}
.ws38{word-spacing:1.816966pt;}
.ws3d{word-spacing:1.864976pt;}
.ws48{word-spacing:1.912460pt;}
.ws80{word-spacing:1.960422pt;}
.wsd3{word-spacing:2.008432pt;}
.wsf9{word-spacing:2.103926pt;}
.ws24{word-spacing:2.151888pt;}
.wsa9{word-spacing:2.247382pt;}
.ws42{word-spacing:2.295344pt;}
.ws2e{word-spacing:2.342828pt;}
.ws27{word-spacing:2.343354pt;}
.wsb9{word-spacing:2.390838pt;}
.ws8e{word-spacing:2.438848pt;}
.ws63{word-spacing:2.486810pt;}
.ws2a{word-spacing:2.534294pt;}
.ws39{word-spacing:2.629740pt;}
.ws13c{word-spacing:2.640859pt;}
.ws31{word-spacing:2.677750pt;}
.wscd{word-spacing:2.725760pt;}
.wsfd{word-spacing:2.773722pt;}
.ws123{word-spacing:2.789674pt;}
.ws54{word-spacing:2.821206pt;}
.ws64{word-spacing:2.869216pt;}
.ws50{word-spacing:2.917226pt;}
.ws11e{word-spacing:2.938490pt;}
.ws65{word-spacing:2.964662pt;}
.ws10c{word-spacing:3.012619pt;}
.wscb{word-spacing:3.012672pt;}
.wsbd{word-spacing:3.108118pt;}
.ws7e{word-spacing:3.155602pt;}
.ws7b{word-spacing:3.156128pt;}
.ws7c{word-spacing:3.251574pt;}
.wsc{word-spacing:3.299584pt;}
.ws61{word-spacing:3.395030pt;}
.ws67{word-spacing:3.443040pt;}
.ws13e{word-spacing:3.459030pt;}
.wsd1{word-spacing:3.490524pt;}
.ws3c{word-spacing:3.491050pt;}
.ws3b{word-spacing:3.586496pt;}
.ws139{word-spacing:3.682495pt;}
.ws6e{word-spacing:3.729952pt;}
.wsa1{word-spacing:3.825446pt;}
.wsb{word-spacing:3.920892pt;}
.wsf8{word-spacing:3.921418pt;}
.ws53{word-spacing:4.064348pt;}
.ws10b{word-spacing:4.088949pt;}
.ws12a{word-spacing:4.089093pt;}
.ws5e{word-spacing:4.112358pt;}
.wsc6{word-spacing:4.207804pt;}
.ws77{word-spacing:4.303823pt;}
.ws5f{word-spacing:4.638172pt;}
.ws103{word-spacing:4.686182pt;}
.ws82{word-spacing:4.781675pt;}
.wsbb{word-spacing:4.782201pt;}
.ws4e{word-spacing:4.925131pt;}
.ws70{word-spacing:5.021103pt;}
.ws47{word-spacing:5.212043pt;}
.ws3f{word-spacing:5.451471pt;}
.ws18{word-spacing:5.483530pt;}
.ws9e{word-spacing:5.498955pt;}
.ws101{word-spacing:5.499481pt;}
.wsa0{word-spacing:5.594401pt;}
.wse3{word-spacing:5.642411pt;}
.wsc9{word-spacing:5.738431pt;}
.wsd2{word-spacing:5.881887pt;}
.ws84{word-spacing:5.977333pt;}
.ws12f{word-spacing:7.178608pt;}
.ws135{word-spacing:7.289931pt;}
.wsea{word-spacing:7.482263pt;}
.wsf3{word-spacing:7.502961pt;}
.wsf1{word-spacing:7.503087pt;}
.wsec{word-spacing:7.503352pt;}
.wsef{word-spacing:7.503614pt;}
.ws1b{word-spacing:7.821397pt;}
.ws10f{word-spacing:8.145446pt;}
.ws13a{word-spacing:9.075610pt;}
.ws131{word-spacing:9.187083pt;}
.ws11b{word-spacing:9.261212pt;}
.ws35{word-spacing:9.261472pt;}
.ws1d{word-spacing:9.261732pt;}
.ws127{word-spacing:9.298555pt;}
.ws12d{word-spacing:9.335861pt;}
.ws122{word-spacing:9.409990pt;}
.ws76{word-spacing:9.420564pt;}
.ws136{word-spacing:9.447334pt;}
.ws137{word-spacing:9.522021pt;}
.ws1e{word-spacing:9.904053pt;}
.ws116{word-spacing:9.931088pt;}
.ws111{word-spacing:10.133365pt;}
.ws1f{word-spacing:10.390741pt;}
.ws17{word-spacing:10.584160pt;}
.wsab{word-spacing:10.584576pt;}
.wsac{word-spacing:10.585227pt;}
.ws132{word-spacing:10.723157pt;}
.ws11f{word-spacing:10.723173pt;}
.ws69{word-spacing:10.759152pt;}
.ws98{word-spacing:10.904821pt;}
.wsd9{word-spacing:11.380986pt;}
.wse8{word-spacing:11.476480pt;}
.wsad{word-spacing:11.763392pt;}
.wsb8{word-spacing:11.810876pt;}
.ws9a{word-spacing:11.811402pt;}
.ws14{word-spacing:11.906848pt;}
.ws13{word-spacing:11.916235pt;}
.ws68{word-spacing:11.930816pt;}
.ws6b{word-spacing:11.984522pt;}
.ws12{word-spacing:12.002294pt;}
.wsff{word-spacing:12.050304pt;}
.ws96{word-spacing:12.759808pt;}
.wsae{word-spacing:12.914368pt;}
.wsb0{word-spacing:13.350091pt;}
.ws62{word-spacing:14.487152pt;}
.ws11{word-spacing:14.487268pt;}
.ws9f{word-spacing:17.501249pt;}
.wsba{word-spacing:18.233216pt;}
.ws0{word-spacing:22.861245pt;}
.ws1{word-spacing:22.861520pt;}
.wse2{word-spacing:41.171872pt;}
.wsf5{word-spacing:45.765038pt;}
.wsed{word-spacing:46.366143pt;}
.wse0{word-spacing:51.406800pt;}
.wsf4{word-spacing:55.541243pt;}
.ws21{word-spacing:58.123152pt;}
.wsdc{word-spacing:60.034005pt;}
.wsf6{word-spacing:64.185108pt;}
.wsf7{word-spacing:66.529130pt;}
.wsf2{word-spacing:71.013363pt;}
.wseb{word-spacing:72.094385pt;}
.wsf0{word-spacing:72.786248pt;}
.wsee{word-spacing:74.482620pt;}
.wse1{word-spacing:88.061457pt;}
.wsdb{word-spacing:187.617632pt;}
.wsde{word-spacing:205.819695pt;}
.wsdf{word-spacing:269.757440pt;}
.wsda{word-spacing:370.440619pt;}
.wsdd{word-spacing:437.313141pt;}
._e{margin-left:-6.639317pt;}
._5{margin-left:-4.734717pt;}
._b{margin-left:-3.826539pt;}
._3{margin-left:-2.820680pt;}
._0{margin-left:-1.468922pt;}
._1{width:1.377016pt;}
._a{width:2.391915pt;}
._2{width:4.041256pt;}
._c{width:5.738240pt;}
._13{width:6.664931pt;}
._35{width:8.815173pt;}
._12{width:9.754243pt;}
._4{width:11.326406pt;}
._f{width:12.678421pt;}
._7{width:13.678338pt;}
._36{width:15.495858pt;}
._d{width:16.832314pt;}
._11{width:18.695427pt;}
._37{width:24.585786pt;}
._38{width:26.816276pt;}
._20{width:33.982513pt;}
._10{width:47.101387pt;}
._1f{width:48.535947pt;}
._17{width:53.126539pt;}
._28{width:55.065737pt;}
._8{width:58.181333pt;}
._21{width:69.654102pt;}
._24{width:71.697421pt;}
._1c{width:73.832021pt;}
._25{width:83.298357pt;}
._22{width:101.025459pt;}
._19{width:105.535271pt;}
._2a{width:107.951449pt;}
._2c{width:110.062428pt;}
._26{width:114.998450pt;}
._27{width:116.290358pt;}
._1d{width:120.120491pt;}
._2b{width:127.138257pt;}
._23{width:130.263680pt;}
._29{width:133.764019pt;}
._1e{width:146.325120pt;}
._31{width:158.812117pt;}
._1b{width:160.001211pt;}
._1a{width:168.560991pt;}
._33{width:171.047466pt;}
._14{width:178.241129pt;}
._18{width:190.796480pt;}
._2f{width:193.856875pt;}
._16{width:204.950805pt;}
._32{width:227.985946pt;}
._34{width:320.145400pt;}
._2e{width:333.583019pt;}
._30{width:342.381032pt;}
._15{width:373.712753pt;}
._2d{width:511.755371pt;}
._9{width:689.625988pt;}
._6{width:1604.820798pt;}
.fs7{font-size:29.226667pt;}
.fsb{font-size:30.049250pt;}
.fs8{font-size:37.194667pt;}
.fsa{font-size:38.789333pt;}
.fs6{font-size:42.506667pt;}
.fs3{font-size:46.757333pt;}
.fs5{font-size:47.818667pt;}
.fs2{font-size:53.136000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.181333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:52.093467pt;}
.y30{bottom:112.870667pt;}
.y2f{bottom:123.497333pt;}
.y55{bottom:127.481333pt;}
.y2e{bottom:134.124000pt;}
.y54{bottom:142.093333pt;}
.y201{bottom:144.750667pt;}
.y2d{bottom:145.813333pt;}
.y200{bottom:155.377333pt;}
.y53{bottom:156.705333pt;}
.y2c{bottom:157.502667pt;}
.ya3{bottom:159.605333pt;}
.y15c{bottom:160.358667pt;}
.y18b{bottom:163.942667pt;}
.y1ff{bottom:166.004000pt;}
.y52{bottom:171.317333pt;}
.ya2{bottom:174.217333pt;}
.y1fe{bottom:176.630667pt;}
.y18a{bottom:178.554667pt;}
.ydb{bottom:178.613333pt;}
.y51{bottom:185.929333pt;}
.y1fd{bottom:187.257333pt;}
.ya1{bottom:188.829333pt;}
.y15b{bottom:191.862667pt;}
.y189{bottom:193.166667pt;}
.yda{bottom:193.225333pt;}
.y1fc{bottom:197.884000pt;}
.y50{bottom:200.541333pt;}
.ya0{bottom:203.441333pt;}
.y2b{bottom:205.504000pt;}
.y15a{bottom:206.474667pt;}
.y188{bottom:207.777333pt;}
.yd9{bottom:207.836000pt;}
.y1fb{bottom:208.512000pt;}
.y4f{bottom:215.153333pt;}
.y246{bottom:217.725333pt;}
.y9f{bottom:218.053333pt;}
.y1fa{bottom:219.138667pt;}
.y159{bottom:221.086667pt;}
.y187{bottom:222.389333pt;}
.yd8{bottom:222.448000pt;}
.y2a{bottom:223.230667pt;}
.y245{bottom:228.352000pt;}
.y4e{bottom:229.765333pt;}
.y9e{bottom:232.665333pt;}
.y29{bottom:236.514667pt;}
.y186{bottom:237.001333pt;}
.yd7{bottom:237.060000pt;}
.y244{bottom:238.978667pt;}
.y1f9{bottom:240.810667pt;}
.y158{bottom:241.410667pt;}
.y4d{bottom:244.377333pt;}
.y9d{bottom:247.277333pt;}
.y132{bottom:248.029333pt;}
.y243{bottom:249.605333pt;}
.y28{bottom:249.798667pt;}
.y1f8{bottom:251.437333pt;}
.y185{bottom:251.613333pt;}
.yd6{bottom:251.672000pt;}
.y106{bottom:251.757333pt;}
.y157{bottom:256.021333pt;}
.y4c{bottom:258.989333pt;}
.y242{bottom:260.232000pt;}
.y9c{bottom:261.888000pt;}
.y27{bottom:263.081333pt;}
.y1f7{bottom:265.717333pt;}
.yd5{bottom:266.284000pt;}
.y7b{bottom:266.294667pt;}
.y105{bottom:266.369333pt;}
.y184{bottom:269.878667pt;}
.y156{bottom:270.633333pt;}
.y241{bottom:270.858667pt;}
.y4b{bottom:273.600000pt;}
.y9b{bottom:276.500000pt;}
.y131{bottom:276.964000pt;}
.yd4{bottom:280.896000pt;}
.y7a{bottom:280.906667pt;}
.y104{bottom:280.981333pt;}
.y240{bottom:281.485333pt;}
.y26{bottom:281.977333pt;}
.y155{bottom:285.245333pt;}
.y4a{bottom:288.212000pt;}
.y9a{bottom:291.112000pt;}
.y130{bottom:291.576000pt;}
.y23f{bottom:292.113333pt;}
.y1f6{bottom:294.582667pt;}
.yd3{bottom:295.508000pt;}
.y79{bottom:295.518667pt;}
.y103{bottom:295.593333pt;}
.y1b8{bottom:295.857333pt;}
.y25{bottom:296.589333pt;}
.y183{bottom:298.036000pt;}
.y154{bottom:299.857333pt;}
.y23e{bottom:302.740000pt;}
.y49{bottom:302.824000pt;}
.y99{bottom:305.724000pt;}
.y12f{bottom:306.186667pt;}
.y1f5{bottom:309.194667pt;}
.yd2{bottom:310.120000pt;}
.y78{bottom:310.130667pt;}
.y102{bottom:310.205333pt;}
.y1b7{bottom:310.469333pt;}
.y182{bottom:312.648000pt;}
.y23d{bottom:313.366667pt;}
.y153{bottom:314.469333pt;}
.y24{bottom:314.854667pt;}
.y48{bottom:317.436000pt;}
.y98{bottom:320.336000pt;}
.y12e{bottom:320.798667pt;}
.y1f4{bottom:323.806667pt;}
.y23c{bottom:323.993333pt;}
.yd1{bottom:324.732000pt;}
.y77{bottom:324.742667pt;}
.y101{bottom:324.817333pt;}
.y1b6{bottom:325.081333pt;}
.y181{bottom:327.260000pt;}
.y152{bottom:329.081333pt;}
.y47{bottom:332.048000pt;}
.y23b{bottom:334.620000pt;}
.y97{bottom:334.948000pt;}
.y12d{bottom:335.410667pt;}
.y1f3{bottom:338.418667pt;}
.yd0{bottom:339.344000pt;}
.y76{bottom:339.354667pt;}
.y100{bottom:339.429333pt;}
.y1b5{bottom:339.693333pt;}
.y180{bottom:341.872000pt;}
.y23{bottom:343.340000pt;}
.y151{bottom:343.693333pt;}
.y1d6{bottom:344.241333pt;}
.y23a{bottom:345.246667pt;}
.y46{bottom:346.660000pt;}
.y96{bottom:349.560000pt;}
.y12c{bottom:350.022667pt;}
.y1f2{bottom:353.030667pt;}
.ybb{bottom:353.257333pt;}
.y75{bottom:353.965333pt;}
.yff{bottom:354.041333pt;}
.y1b4{bottom:354.305333pt;}
.y239{bottom:355.873333pt;}
.y17f{bottom:356.484000pt;}
.ycf{bottom:356.512000pt;}
.y22{bottom:357.952000pt;}
.y150{bottom:358.305333pt;}
.y1d5{bottom:358.853333pt;}
.y45{bottom:361.272000pt;}
.y95{bottom:364.172000pt;}
.y12b{bottom:364.634667pt;}
.y238{bottom:366.500000pt;}
.y1f1{bottom:367.642667pt;}
.yba{bottom:367.869333pt;}
.y74{bottom:368.577333pt;}
.yfe{bottom:368.653333pt;}
.y1b3{bottom:368.917333pt;}
.y17e{bottom:371.096000pt;}
.yce{bottom:371.124000pt;}
.y14f{bottom:372.917333pt;}
.y1d4{bottom:373.465333pt;}
.y44{bottom:375.884000pt;}
.y21{bottom:376.217333pt;}
.y237{bottom:377.126667pt;}
.y94{bottom:378.784000pt;}
.y12a{bottom:379.246667pt;}
.yb9{bottom:382.481333pt;}
.y73{bottom:383.189333pt;}
.yfd{bottom:383.265333pt;}
.y1b2{bottom:383.529333pt;}
.y17d{bottom:385.708000pt;}
.ycd{bottom:385.736000pt;}
.y1f0{bottom:385.906667pt;}
.y14e{bottom:387.529333pt;}
.y236{bottom:387.754667pt;}
.y1d3{bottom:388.076000pt;}
.y43{bottom:390.496000pt;}
.y93{bottom:393.396000pt;}
.y129{bottom:393.858667pt;}
.yb8{bottom:397.093333pt;}
.y72{bottom:397.801333pt;}
.yfc{bottom:397.877333pt;}
.y1b1{bottom:398.140000pt;}
.y235{bottom:398.381333pt;}
.y17c{bottom:400.320000pt;}
.ycc{bottom:400.348000pt;}
.y14d{bottom:402.140000pt;}
.y1d2{bottom:402.688000pt;}
.y20{bottom:404.704000pt;}
.y42{bottom:405.108000pt;}
.y128{bottom:408.470667pt;}
.y234{bottom:409.008000pt;}
.y92{bottom:411.660000pt;}
.yb7{bottom:411.705333pt;}
.y71{bottom:412.413333pt;}
.y1b0{bottom:412.752000pt;}
.y1ef{bottom:414.773333pt;}
.y17b{bottom:414.932000pt;}
.ycb{bottom:414.960000pt;}
.yfb{bottom:415.190667pt;}
.y14c{bottom:416.752000pt;}
.y1d1{bottom:417.832000pt;}
.y1f{bottom:419.314667pt;}
.y233{bottom:419.634667pt;}
.y41{bottom:419.720000pt;}
.y127{bottom:423.082667pt;}
.yb6{bottom:426.317333pt;}
.y70{bottom:427.025333pt;}
.y1af{bottom:427.364000pt;}
.y1ee{bottom:429.385333pt;}
.y17a{bottom:429.542667pt;}
.yca{bottom:429.572000pt;}
.y232{bottom:430.261333pt;}
.y14b{bottom:431.364000pt;}
.y1e{bottom:433.926667pt;}
.y40{bottom:434.330667pt;}
.yfa{bottom:435.205333pt;}
.y126{bottom:437.694667pt;}
.y91{bottom:440.244000pt;}
.y231{bottom:440.888000pt;}
.yb5{bottom:440.929333pt;}
.y6f{bottom:441.637333pt;}
.y1ae{bottom:441.976000pt;}
.y1ed{bottom:443.997333pt;}
.y179{bottom:444.154667pt;}
.yc9{bottom:444.184000pt;}
.y14a{bottom:445.976000pt;}
.y1d{bottom:448.538667pt;}
.y3f{bottom:448.942667pt;}
.y1d0{bottom:451.472000pt;}
.y230{bottom:451.514667pt;}
.y125{bottom:452.306667pt;}
.y90{bottom:454.856000pt;}
.yb4{bottom:455.541333pt;}
.y1ad{bottom:456.588000pt;}
.y1ec{bottom:458.609333pt;}
.y178{bottom:458.766667pt;}
.yc8{bottom:458.796000pt;}
.y149{bottom:460.588000pt;}
.y22f{bottom:462.141333pt;}
.y1c{bottom:463.150667pt;}
.y3e{bottom:463.554667pt;}
.y1cf{bottom:466.084000pt;}
.y124{bottom:466.917333pt;}
.y8f{bottom:469.468000pt;}
.yf9{bottom:469.688000pt;}
.yb3{bottom:470.153333pt;}
.y1ac{bottom:471.200000pt;}
.y22e{bottom:472.768000pt;}
.y1eb{bottom:473.221333pt;}
.y177{bottom:473.378667pt;}
.yc7{bottom:473.408000pt;}
.y148{bottom:475.200000pt;}
.y1b{bottom:477.762667pt;}
.y3d{bottom:478.166667pt;}
.y123{bottom:481.529333pt;}
.y22d{bottom:483.396000pt;}
.y8e{bottom:484.080000pt;}
.yf8{bottom:484.300000pt;}
.yb2{bottom:484.765333pt;}
.y1ab{bottom:485.812000pt;}
.y1ea{bottom:487.833333pt;}
.y176{bottom:487.990667pt;}
.yc6{bottom:488.018667pt;}
.y147{bottom:489.812000pt;}
.y1a{bottom:492.374667pt;}
.y3c{bottom:492.778667pt;}
.y22c{bottom:494.458667pt;}
.y122{bottom:496.141333pt;}
.y8d{bottom:498.690667pt;}
.yf7{bottom:498.912000pt;}
.yb1{bottom:499.377333pt;}
.y1ce{bottom:500.276000pt;}
.y1aa{bottom:500.424000pt;}
.y1e9{bottom:502.445333pt;}
.yc5{bottom:502.630667pt;}
.y146{bottom:504.424000pt;}
.y22b{bottom:505.085333pt;}
.y175{bottom:506.256000pt;}
.y19{bottom:506.986667pt;}
.y3b{bottom:507.390667pt;}
.y121{bottom:510.753333pt;}
.y8c{bottom:513.302667pt;}
.yf6{bottom:513.346667pt;}
.yb0{bottom:513.988000pt;}
.y1cd{bottom:514.888000pt;}
.y1a9{bottom:515.036000pt;}
.y22a{bottom:515.713333pt;}
.y1e8{bottom:517.056000pt;}
.yc4{bottom:517.242667pt;}
.yf5{bottom:518.138667pt;}
.y145{bottom:519.036000pt;}
.y18{bottom:521.598667pt;}
.y3a{bottom:522.002667pt;}
.y120{bottom:525.365333pt;}
.y7c{bottom:525.656000pt;}
.y229{bottom:526.340000pt;}
.y8b{bottom:527.914667pt;}
.yaf{bottom:528.600000pt;}
.y1cc{bottom:529.500000pt;}
.y1a8{bottom:529.648000pt;}
.y1e7{bottom:531.668000pt;}
.yc3{bottom:531.854667pt;}
.y144{bottom:533.648000pt;}
.y17{bottom:536.210667pt;}
.y39{bottom:536.614667pt;}
.y228{bottom:536.966667pt;}
.y11f{bottom:539.977333pt;}
.y8a{bottom:542.526667pt;}
.yae{bottom:543.212000pt;}
.y1cb{bottom:544.112000pt;}
.y1a7{bottom:544.260000pt;}
.y1e6{bottom:546.280000pt;}
.y227{bottom:547.593333pt;}
.y143{bottom:548.260000pt;}
.yf4{bottom:549.992000pt;}
.y16{bottom:550.822667pt;}
.y38{bottom:551.226667pt;}
.y174{bottom:553.617333pt;}
.yc2{bottom:553.762667pt;}
.y11e{bottom:554.589333pt;}
.y6e{bottom:554.878667pt;}
.y89{bottom:557.138667pt;}
.y226{bottom:558.220000pt;}
.y1ca{bottom:558.724000pt;}
.y1a6{bottom:558.870667pt;}
.y1e5{bottom:560.892000pt;}
.y142{bottom:562.870667pt;}
.yad{bottom:564.422667pt;}
.yf3{bottom:564.541333pt;}
.y15{bottom:565.434667pt;}
.y37{bottom:565.838667pt;}
.y173{bottom:568.229333pt;}
.yc1{bottom:568.374667pt;}
.y225{bottom:568.846667pt;}
.y11d{bottom:569.201333pt;}
.yf2{bottom:569.333333pt;}
.y88{bottom:571.750667pt;}
.y1a5{bottom:573.482667pt;}
.y1c9{bottom:573.866667pt;}
.y1e4{bottom:575.504000pt;}
.y141{bottom:577.482667pt;}
.yac{bottom:579.034667pt;}
.y224{bottom:579.473333pt;}
.y14{bottom:580.045333pt;}
.y36{bottom:580.449333pt;}
.y172{bottom:582.841333pt;}
.yc0{bottom:582.985333pt;}
.y11c{bottom:583.813333pt;}
.y1a4{bottom:588.094667pt;}
.y87{bottom:589.262667pt;}
.yf1{bottom:589.337333pt;}
.y223{bottom:590.100000pt;}
.y1e3{bottom:590.116000pt;}
.y140{bottom:592.094667pt;}
.yab{bottom:593.645333pt;}
.y13{bottom:594.657333pt;}
.y35{bottom:595.061333pt;}
.y171{bottom:597.453333pt;}
.ybf{bottom:597.597333pt;}
.y11b{bottom:598.425333pt;}
.y221{bottom:600.726667pt;}
.y222{bottom:600.728000pt;}
.y1a3{bottom:602.706667pt;}
.y86{bottom:603.874667pt;}
.y1e2{bottom:604.728000pt;}
.y13f{bottom:606.706667pt;}
.y1c8{bottom:607.508000pt;}
.yaa{bottom:608.257333pt;}
.y12{bottom:609.269333pt;}
.y34{bottom:609.673333pt;}
.y220{bottom:611.456000pt;}
.y170{bottom:612.065333pt;}
.y11a{bottom:613.036000pt;}
.ybe{bottom:615.862667pt;}
.y1a2{bottom:617.318667pt;}
.y85{bottom:618.486667pt;}
.yf0{bottom:618.561333pt;}
.y1e1{bottom:619.340000pt;}
.y13e{bottom:621.318667pt;}
.y21f{bottom:622.082667pt;}
.y1c7{bottom:622.120000pt;}
.ya9{bottom:622.869333pt;}
.y11{bottom:623.881333pt;}
.y6d{bottom:624.285333pt;}
.y16f{bottom:627.208000pt;}
.y119{bottom:627.648000pt;}
.y33{bottom:627.938667pt;}
.y1a1{bottom:631.930667pt;}
.y21e{bottom:632.710667pt;}
.y84{bottom:633.097333pt;}
.yef{bottom:633.173333pt;}
.y1e0{bottom:633.952000pt;}
.y13d{bottom:635.930667pt;}
.ya8{bottom:637.481333pt;}
.y10{bottom:638.493333pt;}
.y6c{bottom:638.897333pt;}
.y118{bottom:642.260000pt;}
.y21d{bottom:643.337333pt;}
.ybd{bottom:644.080000pt;}
.y1a0{bottom:646.542667pt;}
.y83{bottom:647.709333pt;}
.yee{bottom:647.785333pt;}
.y1df{bottom:648.564000pt;}
.y13c{bottom:650.542667pt;}
.ya7{bottom:652.093333pt;}
.yf{bottom:653.105333pt;}
.y6b{bottom:653.509333pt;}
.y21c{bottom:653.964000pt;}
.y1c6{bottom:656.312000pt;}
.ybc{bottom:658.692000pt;}
.y32{bottom:659.414667pt;}
.y117{bottom:660.109333pt;}
.y16e{bottom:660.849333pt;}
.y19f{bottom:661.154667pt;}
.y82{bottom:662.321333pt;}
.y1de{bottom:663.174667pt;}
.y21b{bottom:664.590667pt;}
.yed{bottom:665.026667pt;}
.y13b{bottom:665.154667pt;}
.ye{bottom:667.717333pt;}
.y6a{bottom:668.121333pt;}
.y1c5{bottom:670.924000pt;}
.y31{bottom:672.698667pt;}
.ya6{bottom:673.302667pt;}
.y116{bottom:674.721333pt;}
.y21a{bottom:675.217333pt;}
.y19e{bottom:675.766667pt;}
.y81{bottom:676.933333pt;}
.y1dd{bottom:677.786667pt;}
.yec{bottom:682.268000pt;}
.y69{bottom:682.733333pt;}
.y13a{bottom:685.477333pt;}
.y1c4{bottom:685.536000pt;}
.y219{bottom:685.844000pt;}
.yd{bottom:685.981333pt;}
.ya5{bottom:687.914667pt;}
.y16d{bottom:688.452000pt;}
.y115{bottom:689.333333pt;}
.y19d{bottom:690.378667pt;}
.y80{bottom:691.545333pt;}
.y1dc{bottom:692.398667pt;}
.y218{bottom:696.470667pt;}
.yeb{bottom:696.880000pt;}
.y68{bottom:697.345333pt;}
.y139{bottom:700.089333pt;}
.y1c3{bottom:700.146667pt;}
.y16c{bottom:703.064000pt;}
.y114{bottom:703.944000pt;}
.y19c{bottom:704.989333pt;}
.y7f{bottom:706.157333pt;}
.y1db{bottom:707.010667pt;}
.y217{bottom:707.097333pt;}
.yea{bottom:711.492000pt;}
.y67{bottom:711.957333pt;}
.yc{bottom:712.628000pt;}
.y138{bottom:714.701333pt;}
.y1c2{bottom:714.758667pt;}
.y216{bottom:718.161333pt;}
.y113{bottom:718.556000pt;}
.y19b{bottom:719.601333pt;}
.y1da{bottom:721.622667pt;}
.y7e{bottom:723.669333pt;}
.ya4{bottom:725.508000pt;}
.ye9{bottom:726.246667pt;}
.y66{bottom:726.569333pt;}
.yb{bottom:728.569333pt;}
.y215{bottom:728.788000pt;}
.y1c1{bottom:729.902667pt;}
.ye8{bottom:731.038667pt;}
.y137{bottom:732.965333pt;}
.y112{bottom:733.168000pt;}
.y19a{bottom:734.213333pt;}
.y1d9{bottom:736.234667pt;}
.y7d{bottom:738.281333pt;}
.y214{bottom:739.414667pt;}
.y16a{bottom:739.453333pt;}
.y16b{bottom:740.782667pt;}
.y65{bottom:741.180000pt;}
.ya{bottom:744.509333pt;}
.y111{bottom:747.780000pt;}
.ye7{bottom:748.336000pt;}
.y213{bottom:750.042667pt;}
.y1d8{bottom:750.846667pt;}
.y169{bottom:755.393333pt;}
.y64{bottom:755.792000pt;}
.y9{bottom:760.449333pt;}
.y212{bottom:760.669333pt;}
.y110{bottom:762.392000pt;}
.ye6{bottom:762.948000pt;}
.y1c0{bottom:763.542667pt;}
.y136{bottom:764.470667pt;}
.y1d7{bottom:769.112000pt;}
.y63{bottom:770.404000pt;}
.y168{bottom:770.537333pt;}
.y211{bottom:771.296000pt;}
.y199{bottom:774.453725pt;}
.y8{bottom:776.389333pt;}
.y10f{bottom:777.004000pt;}
.ye5{bottom:777.702667pt;}
.y1bf{bottom:778.154667pt;}
.y198{bottom:779.014400pt;}
.y135{bottom:779.082667pt;}
.y210{bottom:781.922667pt;}
.ye4{bottom:782.494667pt;}
.y62{bottom:785.016000pt;}
.y167{bottom:785.149333pt;}
.y10e{bottom:791.616000pt;}
.y20f{bottom:792.549333pt;}
.y197{bottom:793.151558pt;}
.y134{bottom:793.694667pt;}
.y196{bottom:797.711067pt;}
.y61{bottom:799.628000pt;}
.y166{bottom:799.761333pt;}
.ye3{bottom:802.409333pt;}
.y20e{bottom:803.176000pt;}
.y10d{bottom:806.228000pt;}
.y7{bottom:806.416000pt;}
.y195{bottom:811.849390pt;}
.y133{bottom:811.958667pt;}
.y1be{bottom:812.346667pt;}
.y20d{bottom:813.802667pt;}
.y60{bottom:814.240000pt;}
.y165{bottom:814.904000pt;}
.y194{bottom:816.408533pt;}
.ye2{bottom:817.021333pt;}
.y10c{bottom:820.840000pt;}
.y164{bottom:822.210667pt;}
.y6{bottom:822.356000pt;}
.y20c{bottom:824.866667pt;}
.y1bd{bottom:826.958667pt;}
.y5f{bottom:828.852000pt;}
.y163{bottom:829.516000pt;}
.y193{bottom:830.547223pt;}
.ye1{bottom:831.633333pt;}
.y192{bottom:835.105200pt;}
.y10b{bottom:835.452000pt;}
.y20b{bottom:835.493333pt;}
.y5{bottom:838.296000pt;}
.y1bc{bottom:841.570667pt;}
.y5e{bottom:843.464000pt;}
.y162{bottom:844.128000pt;}
.y20a{bottom:846.120000pt;}
.ye0{bottom:846.245333pt;}
.y191{bottom:849.245893pt;}
.y10a{bottom:850.064000pt;}
.y190{bottom:853.801867pt;}
.y4{bottom:854.236000pt;}
.y1bb{bottom:856.182667pt;}
.y209{bottom:856.746667pt;}
.y5d{bottom:858.076000pt;}
.y161{bottom:858.740000pt;}
.ydf{bottom:860.321333pt;}
.y109{bottom:864.674667pt;}
.yde{bottom:865.113333pt;}
.y208{bottom:867.373333pt;}
.y207{bottom:867.374667pt;}
.y18f{bottom:867.943726pt;}
.y3{bottom:870.176000pt;}
.y1ba{bottom:870.794667pt;}
.y18e{bottom:872.499333pt;}
.y5c{bottom:872.688000pt;}
.y160{bottom:873.352000pt;}
.y206{bottom:878.001333pt;}
.y108{bottom:879.286667pt;}
.ydd{bottom:884.669333pt;}
.y1b9{bottom:885.937333pt;}
.y5b{bottom:887.298667pt;}
.y15f{bottom:887.964000pt;}
.y18d{bottom:888.608000pt;}
.y205{bottom:888.628000pt;}
.y107{bottom:893.898667pt;}
.y204{bottom:899.254667pt;}
.ydc{bottom:899.281333pt;}
.y5a{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y15e{bottom:903.106667pt;}
.y203{bottom:909.881333pt;}
.y59{bottom:916.522667pt;}
.y18c{bottom:919.578667pt;}
.y202{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y58{bottom:931.134667pt;}
.y15d{bottom:934.190667pt;}
.y57{bottom:966.204000pt;}
.h17{height:21.783050pt;}
.ha{height:23.965867pt;}
.h19{height:24.640385pt;}
.hf{height:26.222240pt;}
.hc{height:26.333824pt;}
.h13{height:27.811952pt;}
.hd{height:30.094720pt;}
.h15{height:30.477280pt;}
.hb{height:30.499627pt;}
.h8{height:30.604800pt;}
.h16{height:31.807253pt;}
.h11{height:33.377429pt;}
.h7{height:34.285984pt;}
.h10{height:34.429440pt;}
.h9{height:34.855467pt;}
.h6{height:39.211307pt;}
.h5{height:41.890560pt;}
.h1e{height:43.123058pt;}
.h1d{height:43.131073pt;}
.h1c{height:43.132537pt;}
.h1b{height:43.137200pt;}
.h1a{height:43.145215pt;}
.h18{height:43.146678pt;}
.h3{height:43.571520pt;}
.h12{height:51.742619pt;}
.h2{height:52.283200pt;}
.h14{height:53.177285pt;}
.he{height:55.442708pt;}
.h4{height:61.487680pt;}
.h1{height:64.085707pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:71.730667pt;}
.x1{left:74.916000pt;}
.x71{left:76.788000pt;}
.xd6{left:77.782133pt;}
.xa3{left:80.698667pt;}
.x1f{left:85.014667pt;}
.xc2{left:86.277333pt;}
.x72{left:87.325333pt;}
.x73{left:92.068000pt;}
.x4d{left:93.020000pt;}
.x5a{left:100.005333pt;}
.x74{left:102.964000pt;}
.x4e{left:104.276000pt;}
.x4{left:109.049333pt;}
.x75{left:110.490667pt;}
.xe{left:112.290667pt;}
.xd5{left:115.942748pt;}
.x7b{left:119.805333pt;}
.x9d{left:124.230667pt;}
.x92{left:125.982667pt;}
.x5b{left:128.900000pt;}
.xd7{left:130.536000pt;}
.x5c{left:134.358667pt;}
.x93{left:137.101333pt;}
.x20{left:139.709333pt;}
.x5d{left:142.046667pt;}
.x21{left:145.268000pt;}
.x7f{left:146.565333pt;}
.x79{left:148.176000pt;}
.x7c{left:149.428000pt;}
.xca{left:151.906667pt;}
.x55{left:155.934667pt;}
.x56{left:160.274667pt;}
.x94{left:161.237333pt;}
.x9f{left:164.630667pt;}
.x57{left:165.585333pt;}
.xa1{left:167.898667pt;}
.x9a{left:168.849333pt;}
.x98{left:171.104000pt;}
.x95{left:176.065333pt;}
.x99{left:177.025333pt;}
.x96{left:178.637333pt;}
.x3{left:181.033333pt;}
.x2{left:182.569333pt;}
.x9b{left:184.128000pt;}
.x7{left:185.774667pt;}
.x52{left:187.060000pt;}
.x22{left:188.344000pt;}
.x5{left:189.680000pt;}
.x7d{left:190.844000pt;}
.x16{left:192.517333pt;}
.x23{left:193.902667pt;}
.x58{left:195.192000pt;}
.x6c{left:196.700000pt;}
.x59{left:199.890667pt;}
.x10{left:202.113333pt;}
.xd{left:203.896000pt;}
.x61{left:206.284000pt;}
.x6{left:208.569333pt;}
.x62{left:211.573333pt;}
.xf{left:215.636000pt;}
.x77{left:221.198667pt;}
.x83{left:225.366667pt;}
.x80{left:226.686667pt;}
.xc0{left:228.581333pt;}
.x6d{left:230.853333pt;}
.x78{left:233.278667pt;}
.x63{left:235.376000pt;}
.x4f{left:237.778667pt;}
.x64{left:241.024000pt;}
.xc3{left:246.045333pt;}
.x6b{left:247.276000pt;}
.x65{left:248.717333pt;}
.x50{left:250.550667pt;}
.xc4{left:251.604000pt;}
.x5e{left:253.049333pt;}
.x81{left:255.080000pt;}
.x6e{left:258.110667pt;}
.x6f{left:260.944000pt;}
.xa2{left:262.685333pt;}
.xc1{left:264.006667pt;}
.x2c{left:265.601333pt;}
.x70{left:266.613333pt;}
.xc7{left:268.864000pt;}
.x97{left:273.622667pt;}
.x67{left:274.737333pt;}
.x2d{left:276.720000pt;}
.x68{left:279.077333pt;}
.x5f{left:282.724000pt;}
.x69{left:284.389333pt;}
.x60{left:287.824000pt;}
.xc8{left:288.928000pt;}
.x39{left:305.253333pt;}
.xc5{left:314.384000pt;}
.x3a{left:316.372000pt;}
.x82{left:317.809333pt;}
.x4c{left:320.052000pt;}
.x2a{left:325.093333pt;}
.x6a{left:326.266667pt;}
.x7a{left:328.885333pt;}
.x51{left:329.805333pt;}
.xa0{left:331.884000pt;}
.x2b{left:336.210667pt;}
.x7e{left:337.608000pt;}
.x26{left:340.856000pt;}
.x66{left:341.821333pt;}
.x28{left:344.586667pt;}
.x27{left:346.414667pt;}
.xc6{left:350.770667pt;}
.x29{left:355.704000pt;}
.x9e{left:357.653333pt;}
.x53{left:359.418667pt;}
.x3b{left:360.906667pt;}
.x54{left:369.113333pt;}
.x3c{left:372.025333pt;}
.x76{left:374.426667pt;}
.x24{left:375.861333pt;}
.x9c{left:383.057333pt;}
.xc9{left:385.353333pt;}
.x25{left:386.980000pt;}
.x1e{left:398.000000pt;}
.xd4{left:421.920000pt;}
.xa4{left:422.984000pt;}
.x17{left:423.940000pt;}
.xcb{left:425.513333pt;}
.x30{left:428.110667pt;}
.xcc{left:430.581333pt;}
.xd0{left:431.477333pt;}
.xb9{left:433.860000pt;}
.xcf{left:435.380000pt;}
.x12{left:436.684000pt;}
.xce{left:437.669333pt;}
.x31{left:439.229333pt;}
.x9{left:441.253333pt;}
.xcd{left:442.596000pt;}
.xd8{left:444.242667pt;}
.x32{left:445.229333pt;}
.xa5{left:453.301333pt;}
.x33{left:456.485333pt;}
.x49{left:457.629333pt;}
.x3d{left:459.441333pt;}
.x43{left:461.080000pt;}
.xd1{left:465.689333pt;}
.x34{left:467.776000pt;}
.x35{left:468.917333pt;}
.x1c{left:470.686667pt;}
.x90{left:477.052000pt;}
.x36{left:480.036000pt;}
.x1d{left:481.804000pt;}
.xb1{left:487.414667pt;}
.x91{left:490.932000pt;}
.x11{left:492.148000pt;}
.x37{left:504.057333pt;}
.x8e{left:507.670667pt;}
.x38{left:509.616000pt;}
.x40{left:510.873333pt;}
.x14{left:513.442667pt;}
.x8{left:514.862667pt;}
.x13{left:517.314667pt;}
.x8f{left:520.826667pt;}
.x84{left:524.618667pt;}
.xb2{left:528.918667pt;}
.xc{left:530.120000pt;}
.x3e{left:531.725333pt;}
.x42{left:535.324000pt;}
.xb{left:536.868000pt;}
.xaa{left:538.254667pt;}
.xa{left:544.600000pt;}
.x18{left:547.001333pt;}
.xab{left:547.993333pt;}
.x46{left:550.061333pt;}
.xb7{left:555.613333pt;}
.x4a{left:556.534667pt;}
.x19{left:558.120000pt;}
.x4b{left:562.093333pt;}
.xb8{left:564.090667pt;}
.xd2{left:569.690667pt;}
.xd3{left:577.844000pt;}
.xb5{left:580.452000pt;}
.x3f{left:588.076000pt;}
.x85{left:591.689333pt;}
.x47{left:596.970667pt;}
.xbd{left:597.884000pt;}
.xa6{left:602.798667pt;}
.x48{left:608.964000pt;}
.xbe{left:610.714667pt;}
.xac{left:617.620000pt;}
.x41{left:619.384000pt;}
.x1a{left:625.825333pt;}
.xad{left:627.706667pt;}
.xb6{left:631.537333pt;}
.xa8{left:634.273333pt;}
.x1b{left:636.944000pt;}
.xa9{left:643.838667pt;}
.xae{left:648.061333pt;}
.x44{left:653.908000pt;}
.xbc{left:655.178667pt;}
.xaf{left:657.801333pt;}
.xa7{left:664.289333pt;}
.x45{left:666.189333pt;}
.x86{left:667.304000pt;}
.x8c{left:671.180000pt;}
.xba{left:673.274667pt;}
.xbf{left:681.469333pt;}
.xb3{left:687.514667pt;}
.xb0{left:692.926667pt;}
.x87{left:696.053333pt;}
.x2e{left:698.862667pt;}
.x88{left:701.142667pt;}
.x8d{left:706.102667pt;}
.x2f{left:709.981333pt;}
.xbb{left:717.340000pt;}
.x89{left:723.633333pt;}
.x8a{left:729.081333pt;}
.x8b{left:736.525333pt;}
.xb4{left:738.598667pt;}
}




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