
    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_1deaf00bf1cc19c22b7ef6bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e64eb3a1f09d8389faaa23e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f81aba60714109a0c316b7b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_aadfcfc0ad1af3414671b436.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_20e4a0b2f238957d51a2d9cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_51b7770c0f10e389b40a1cd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ba4943ea6885ccdcb129974.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f8fd3efe66d91cf2e8c73b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_79301053e8deec2467a3556b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.701000;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_c421572fa0e0bab6d9e3eaf2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.887200;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_5f37cb42dc3aa85dcde4c124.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_308db237cd3c33e41ca1ed3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.799000;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_26a037a0a5c27d60377e3fb1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909000;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_62fd5447973fd7b8f6a842af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e40430d3986af3f426a70007.woff2')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e22dc47d224159f5ff240dff.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.716000;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_7f7f40fb4ceaf9a147f7c814.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.525000;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_c75c13e98ea9a6cf072301c1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.459000;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_effeb9460df9ce9d4621a804.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.834000;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_cbc09b3a865d8e657eaea2aa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.459000;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_c317215e39cd58d94db0b74f.woff2')format("woff");}.ff15{font-family:ff15;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a252802f0931c7c7324ff137.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1046dee0ee175c7b7c9265f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_c079dd1ee8b546d088711134.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_513ac4529f0bc7215d278e42.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.444000;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;}
.m6{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);}
.m8{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);}
.m20{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);}
.m12{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);}
.m11{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);}
.m1d{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);}
.m25{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);}
.mc{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);}
.m5{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);}
.m18{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);}
.m7{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);}
.m1f{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1b{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);}
.m23{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);}
.m3{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);}
.mb{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);}
.m9{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);}
.md{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);}
.m26{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);}
.m16{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);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m13{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);}
.m10{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);}
.m15{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);}
.m17{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);}
.m19{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);}
.m1e{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);}
.m21{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m2{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.v1c{vertical-align:-48.420000px;}
.v1b{vertical-align:-35.472000px;}
.v12{vertical-align:-34.044000px;}
.vd{vertical-align:-14.778000px;}
.v20{vertical-align:-13.452000px;}
.v3{vertical-align:-10.794000px;}
.v1{vertical-align:-8.970000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:1.272000px;}
.v11{vertical-align:2.988000px;}
.vb{vertical-align:8.970000px;}
.v17{vertical-align:10.578000px;}
.v1f{vertical-align:13.452000px;}
.v10{vertical-align:15.108000px;}
.va{vertical-align:17.934000px;}
.v1d{vertical-align:20.616000px;}
.v2{vertical-align:21.696000px;}
.vc{vertical-align:23.538000px;}
.v21{vertical-align:25.143260px;}
.vf{vertical-align:30.054000px;}
.v5{vertical-align:34.332000px;}
.v1e{vertical-align:37.758000px;}
.v19{vertical-align:39.630000px;}
.v1a{vertical-align:41.472000px;}
.ve{vertical-align:44.832000px;}
.v16{vertical-align:46.086000px;}
.v9{vertical-align:47.988000px;}
.v7{vertical-align:50.664000px;}
.v18{vertical-align:53.964000px;}
.v13{vertical-align:58.638000px;}
.v14{vertical-align:59.910000px;}
.v8{vertical-align:62.766000px;}
.v6{vertical-align:65.442000px;}
.ls1{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000061px;}
.ls4c{letter-spacing:0.000263px;}
.ls8{letter-spacing:0.000300px;}
.ls52{letter-spacing:0.000444px;}
.ls4a{letter-spacing:0.000532px;}
.ls9e{letter-spacing:0.000557px;}
.lsc{letter-spacing:0.000648px;}
.ls61{letter-spacing:0.000775px;}
.ls34{letter-spacing:0.000780px;}
.ls8b{letter-spacing:0.000843px;}
.ls71{letter-spacing:0.000940px;}
.ls6a{letter-spacing:0.001232px;}
.lsa{letter-spacing:0.001409px;}
.lsa7{letter-spacing:0.001700px;}
.ls5d{letter-spacing:0.001701px;}
.ls83{letter-spacing:0.002012px;}
.ls17{letter-spacing:0.002023px;}
.lsd{letter-spacing:0.002077px;}
.ls26{letter-spacing:0.002282px;}
.ls3{letter-spacing:0.002338px;}
.ls5e{letter-spacing:0.002525px;}
.ls7{letter-spacing:0.003031px;}
.ls13{letter-spacing:0.003269px;}
.ls51{letter-spacing:0.003352px;}
.ls35{letter-spacing:0.003414px;}
.ls36{letter-spacing:0.003573px;}
.ls11{letter-spacing:0.003652px;}
.ls10{letter-spacing:0.003954px;}
.ls41{letter-spacing:0.004188px;}
.ls0{letter-spacing:0.004200px;}
.ls6d{letter-spacing:0.004851px;}
.ls45{letter-spacing:0.004896px;}
.ls28{letter-spacing:0.005374px;}
.ls81{letter-spacing:0.005440px;}
.ls32{letter-spacing:0.040994px;}
.ls86{letter-spacing:1.012868px;}
.ls69{letter-spacing:1.501328px;}
.ls3e{letter-spacing:1.666645px;}
.ls46{letter-spacing:2.982648px;}
.ls12{letter-spacing:2.985954px;}
.ls72{letter-spacing:2.986363px;}
.ls27{letter-spacing:2.987782px;}
.ls62{letter-spacing:2.988247px;}
.ls42{letter-spacing:2.988648px;}
.ls33{letter-spacing:2.989793px;}
.ls6{letter-spacing:2.991954px;}
.lsb{letter-spacing:2.993782px;}
.lsad{letter-spacing:2.995793px;}
.ls78{letter-spacing:3.400738px;}
.ls79{letter-spacing:3.405352px;}
.ls76{letter-spacing:3.406738px;}
.ls77{letter-spacing:3.407374px;}
.ls91{letter-spacing:4.276583px;}
.ls3a{letter-spacing:5.977480px;}
.ls7c{letter-spacing:5.977590px;}
.ls4e{letter-spacing:6.432479px;}
.ls87{letter-spacing:6.460059px;}
.ls3f{letter-spacing:6.517690px;}
.ls95{letter-spacing:6.964200px;}
.ls4b{letter-spacing:7.170648px;}
.ls6e{letter-spacing:8.158738px;}
.ls65{letter-spacing:8.164738px;}
.ls37{letter-spacing:9.216557px;}
.ls19{letter-spacing:9.956338px;}
.ls24{letter-spacing:9.959607px;}
.ls2f{letter-spacing:9.962012px;}
.ls1d{letter-spacing:9.962338px;}
.ls2c{letter-spacing:9.963269px;}
.ls8a{letter-spacing:10.109096px;}
.ls93{letter-spacing:10.156363px;}
.ls50{letter-spacing:10.292847px;}
.ls66{letter-spacing:10.459409px;}
.ls4f{letter-spacing:10.459702px;}
.ls58{letter-spacing:10.460525px;}
.ls56{letter-spacing:10.465702px;}
.lsa5{letter-spacing:10.862070px;}
.lsa8{letter-spacing:10.863206px;}
.lsa4{letter-spacing:10.866432px;}
.ls70{letter-spacing:10.878564px;}
.ls7e{letter-spacing:10.881352px;}
.ls68{letter-spacing:10.884564px;}
.ls7d{letter-spacing:10.884648px;}
.ls6f{letter-spacing:10.889374px;}
.ls6b{letter-spacing:11.153603px;}
.ls74{letter-spacing:11.153782px;}
.ls94{letter-spacing:11.620645px;}
.ls96{letter-spacing:11.626645px;}
.lsa9{letter-spacing:12.070801px;}
.lsa1{letter-spacing:12.231056px;}
.lsa2{letter-spacing:12.235418px;}
.ls6c{letter-spacing:12.492940px;}
.ls84{letter-spacing:12.950525px;}
.ls20{letter-spacing:13.281031px;}
.ls82{letter-spacing:13.281269px;}
.ls23{letter-spacing:13.284538px;}
.ls2b{letter-spacing:13.286338px;}
.lsae{letter-spacing:13.446780px;}
.lsb7{letter-spacing:13.451092px;}
.ls55{letter-spacing:13.451782px;}
.ls7b{letter-spacing:13.453590px;}
.lsa0{letter-spacing:13.486994px;}
.ls22{letter-spacing:13.499549px;}
.ls2d{letter-spacing:13.505549px;}
.ls60{letter-spacing:13.602564px;}
.ls54{letter-spacing:13.605235px;}
.ls64{letter-spacing:13.605954px;}
.ls59{letter-spacing:13.608648px;}
.ls75{letter-spacing:13.700847px;}
.lsab{letter-spacing:14.082631px;}
.ls57{letter-spacing:14.614868px;}
.ls9c{letter-spacing:14.941120px;}
.ls1f{letter-spacing:14.943411px;}
.ls2{letter-spacing:14.944766px;}
.ls1e{letter-spacing:14.945023px;}
.ls9{letter-spacing:14.949031px;}
.lsaf{letter-spacing:15.359092px;}
.ls9f{letter-spacing:15.365092px;}
.ls92{letter-spacing:15.479139px;}
.ls2e{letter-spacing:15.771269px;}
.ls80{letter-spacing:15.776012px;}
.ls7a{letter-spacing:15.894564px;}
.ls7f{letter-spacing:15.942247px;}
.ls5c{letter-spacing:16.596247px;}
.lsb2{letter-spacing:16.597120px;}
.ls73{letter-spacing:16.597590px;}
.ls1c{letter-spacing:16.599269px;}
.ls16{letter-spacing:16.602538px;}
.ls99{letter-spacing:16.603120px;}
.ls21{letter-spacing:16.604400px;}
.ls1a{letter-spacing:16.605031px;}
.ls15{letter-spacing:16.605269px;}
.lsb6{letter-spacing:16.615120px;}
.ls18{letter-spacing:16.617617px;}
.ls9b{letter-spacing:16.621120px;}
.ls97{letter-spacing:16.823549px;}
.lsac{letter-spacing:16.829549px;}
.ls5a{letter-spacing:16.896479px;}
.lsb4{letter-spacing:17.545120px;}
.lsb5{letter-spacing:17.928648px;}
.ls90{letter-spacing:18.387652px;}
.ls88{letter-spacing:19.586525px;}
.lsb1{letter-spacing:19.590648px;}
.lsb3{letter-spacing:19.777120px;}
.ls8c{letter-spacing:20.049652px;}
.ls85{letter-spacing:20.069096px;}
.ls3d{letter-spacing:20.741023px;}
.ls39{letter-spacing:20.742133px;}
.ls3c{letter-spacing:20.742538px;}
.ls5{letter-spacing:20.771607px;}
.ls4{letter-spacing:20.775031px;}
.ls44{letter-spacing:21.072538px;}
.ls48{letter-spacing:21.074400px;}
.lsa6{letter-spacing:21.731277px;}
.lsf{letter-spacing:23.568479px;}
.ls3b{letter-spacing:23.728982px;}
.ls8d{letter-spacing:23.772538px;}
.ls47{letter-spacing:24.060648px;}
.ls43{letter-spacing:24.066648px;}
.ls40{letter-spacing:24.905139px;}
.ls2a{letter-spacing:26.566893px;}
.ls9d{letter-spacing:27.645239px;}
.ls38{letter-spacing:28.228893px;}
.ls53{letter-spacing:29.887200px;}
.lsb0{letter-spacing:29.890893px;}
.ls9a{letter-spacing:29.908893px;}
.ls98{letter-spacing:32.380893px;}
.ls89{letter-spacing:36.444843px;}
.ls8e{letter-spacing:36.516479px;}
.ls5f{letter-spacing:36.682738px;}
.ls49{letter-spacing:38.486338px;}
.lsaa{letter-spacing:52.149668px;}
.ls29{letter-spacing:62.767409px;}
.lsa3{letter-spacing:63.525225px;}
.lse{letter-spacing:75.355409px;}
.lsb8{letter-spacing:105.637120px;}
.ls5b{letter-spacing:119.551200px;}
.ls30{letter-spacing:159.572338px;}
.ls63{letter-spacing:209.215200px;}
.ls67{letter-spacing:298.879200px;}
.ls1b{letter-spacing:433.724338px;}
.ls25{letter-spacing:434.702338px;}
.ls14{letter-spacing:602.210338px;}
.ls8f{letter-spacing:891.962338px;}
.ls31{letter-spacing:1085.276338px;}
.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;}
}
.ws3c{word-spacing:-59.775600px;}
.ws4e{word-spacing:-47.654765px;}
.ws37{word-spacing:-47.324343px;}
.ws3d{word-spacing:-43.157983px;}
.ws59{word-spacing:-39.033467px;}
.wsd{word-spacing:-38.937826px;}
.ws58{word-spacing:-37.347795px;}
.ws53{word-spacing:-36.071827px;}
.ws79{word-spacing:-34.055855px;}
.ws3b{word-spacing:-33.223278px;}
.ws35{word-spacing:-31.633157px;}
.ws3e{word-spacing:-28.955301px;}
.ws97{word-spacing:-28.308578px;}
.ws6a{word-spacing:-23.473811px;}
.wsd4{word-spacing:-22.332195px;}
.wsd0{word-spacing:-22.314195px;}
.ws57{word-spacing:-22.302195px;}
.ws91{word-spacing:-19.856770px;}
.ws6b{word-spacing:-18.026516px;}
.wsab{word-spacing:-17.932800px;}
.wsc{word-spacing:-16.605662px;}
.ws23{word-spacing:-14.943900px;}
.ws63{word-spacing:-14.857734px;}
.wsdd{word-spacing:-13.701818px;}
.ws98{word-spacing:-12.072648px;}
.ws99{word-spacing:-10.864514px;}
.ws74{word-spacing:-10.460700px;}
.ws49{word-spacing:-6.642031px;}
.ws48{word-spacing:-3.335478px;}
.wsb7{word-spacing:-2.271473px;}
.wsb6{word-spacing:-2.211697px;}
.ws27{word-spacing:-2.092146px;}
.wse0{word-spacing:-1.972595px;}
.wsbb{word-spacing:-1.853044px;}
.ws18{word-spacing:-1.733492px;}
.wsde{word-spacing:-1.673717px;}
.ws29{word-spacing:-1.255288px;}
.wsca{word-spacing:-1.195512px;}
.wsc9{word-spacing:-1.182237px;}
.ws22{word-spacing:-1.135736px;}
.wsb9{word-spacing:-1.075961px;}
.ws2b{word-spacing:-1.016185px;}
.wsae{word-spacing:-0.956410px;}
.wsbf{word-spacing:-0.896634px;}
.wsc5{word-spacing:-0.836858px;}
.ws28{word-spacing:-0.777083px;}
.ws60{word-spacing:-0.752103px;}
.ws5f{word-spacing:-0.724421px;}
.wsd1{word-spacing:-0.717307px;}
.wsd6{word-spacing:-0.645581px;}
.ws10{word-spacing:-0.597756px;}
.wsd7{word-spacing:-0.591782px;}
.wsb4{word-spacing:-0.478205px;}
.wsc6{word-spacing:-0.424447px;}
.wsaf{word-spacing:-0.418429px;}
.ws89{word-spacing:-0.358654px;}
.ws6{word-spacing:-0.298878px;}
.wsce{word-spacing:-0.264269px;}
.ws19{word-spacing:-0.239102px;}
.ws1c{word-spacing:-0.215194px;}
.ws2{word-spacing:-0.179327px;}
.ws94{word-spacing:-0.161395px;}
.wsa{word-spacing:-0.119551px;}
.wscc{word-spacing:-0.106180px;}
.ws1{word-spacing:-0.059776px;}
.ws54{word-spacing:-0.053798px;}
.ws36{word-spacing:-0.041843px;}
.ws7a{word-spacing:-0.029888px;}
.wsa1{word-spacing:-0.016637px;}
.ws8a{word-spacing:-0.015471px;}
.ws9e{word-spacing:-0.013239px;}
.ws40{word-spacing:-0.005692px;}
.wse7{word-spacing:-0.004531px;}
.ws6f{word-spacing:-0.003886px;}
.ws70{word-spacing:-0.003752px;}
.wsd8{word-spacing:-0.003552px;}
.wsb2{word-spacing:-0.002448px;}
.ws24{word-spacing:-0.002400px;}
.ws44{word-spacing:-0.002128px;}
.ws6d{word-spacing:-0.001854px;}
.wsb0{word-spacing:-0.001416px;}
.ws78{word-spacing:-0.001118px;}
.wsdc{word-spacing:-0.000749px;}
.ws9b{word-spacing:-0.000569px;}
.wsa7{word-spacing:-0.000436px;}
.ws0{word-spacing:0.000000px;}
.wsa3{word-spacing:0.000585px;}
.ws73{word-spacing:0.000900px;}
.ws93{word-spacing:0.002134px;}
.ws9f{word-spacing:0.002312px;}
.ws75{word-spacing:0.003349px;}
.ws25{word-spacing:0.003511px;}
.ws71{word-spacing:0.003752px;}
.wsa5{word-spacing:0.003926px;}
.ws3f{word-spacing:0.004309px;}
.ws96{word-spacing:0.008692px;}
.ws4b{word-spacing:0.011955px;}
.ws17{word-spacing:0.059776px;}
.ws12{word-spacing:0.119551px;}
.ws51{word-spacing:0.161395px;}
.wsb{word-spacing:0.179327px;}
.ws52{word-spacing:0.215194px;}
.ws13{word-spacing:0.239102px;}
.ws21{word-spacing:0.298878px;}
.ws50{word-spacing:0.358654px;}
.wsc4{word-spacing:0.418429px;}
.wsaa{word-spacing:0.478205px;}
.ws2a{word-spacing:0.537980px;}
.ws55{word-spacing:0.591782px;}
.wsb1{word-spacing:0.597756px;}
.ws56{word-spacing:0.645581px;}
.ws4f{word-spacing:0.657532px;}
.ws34{word-spacing:0.777083px;}
.ws33{word-spacing:0.836858px;}
.ws30{word-spacing:0.896634px;}
.ws8d{word-spacing:0.908589px;}
.ws20{word-spacing:0.956410px;}
.wse3{word-spacing:0.968365px;}
.wse6{word-spacing:0.968371px;}
.ws92{word-spacing:1.016185px;}
.ws1b{word-spacing:1.135736px;}
.ws1d{word-spacing:1.195512px;}
.ws41{word-spacing:1.255288px;}
.ws42{word-spacing:1.265232px;}
.ws43{word-spacing:1.269545px;}
.wscd{word-spacing:1.283570px;}
.ws2c{word-spacing:1.315063px;}
.wscf{word-spacing:1.327146px;}
.wse1{word-spacing:1.374839px;}
.ws45{word-spacing:1.408333px;}
.wsdf{word-spacing:1.554166px;}
.ws8c{word-spacing:1.613941px;}
.ws4c{word-spacing:1.733492px;}
.wsad{word-spacing:1.793268px;}
.ws46{word-spacing:1.853044px;}
.ws2e{word-spacing:1.912819px;}
.ws61{word-spacing:2.032370px;}
.ws62{word-spacing:2.092146px;}
.wscb{word-spacing:2.271473px;}
.ws5d{word-spacing:2.331248px;}
.ws5c{word-spacing:2.391024px;}
.ws5a{word-spacing:2.450800px;}
.ws8f{word-spacing:2.462755px;}
.ws6c{word-spacing:2.506854px;}
.ws4{word-spacing:2.510575px;}
.ws15{word-spacing:2.570351px;}
.ws14{word-spacing:2.630126px;}
.ws5e{word-spacing:3.048556px;}
.wsbc{word-spacing:3.168107px;}
.wse2{word-spacing:3.180062px;}
.wsda{word-spacing:3.227155px;}
.wsd9{word-spacing:3.227866px;}
.wse4{word-spacing:3.227882px;}
.ws1a{word-spacing:3.287658px;}
.ws31{word-spacing:3.338988px;}
.ws32{word-spacing:3.347434px;}
.wsd5{word-spacing:3.407209px;}
.ws8e{word-spacing:3.526760px;}
.ws1e{word-spacing:3.586536px;}
.ws64{word-spacing:3.646312px;}
.ws5b{word-spacing:3.706087px;}
.wsc7{word-spacing:3.765863px;}
.wse{word-spacing:4.004965px;}
.ws88{word-spacing:4.124516px;}
.wsb8{word-spacing:4.184292px;}
.wsba{word-spacing:4.602721px;}
.ws2f{word-spacing:4.650439px;}
.ws9{word-spacing:4.662497px;}
.ws8{word-spacing:4.722272px;}
.ws4d{word-spacing:4.782048px;}
.ws2d{word-spacing:4.841824px;}
.ws8b{word-spacing:4.961375px;}
.wsa8{word-spacing:5.021150px;}
.ws7{word-spacing:5.200477px;}
.wse5{word-spacing:5.379804px;}
.ws26{word-spacing:5.559131px;}
.ws82{word-spacing:5.678682px;}
.wsd2{word-spacing:5.798233px;}
.wsd3{word-spacing:5.811713px;}
.ws3{word-spacing:5.977560px;}
.ws5{word-spacing:6.097111px;}
.wsb3{word-spacing:6.336214px;}
.ws16{word-spacing:6.395989px;}
.wsac{word-spacing:6.455765px;}
.wsb5{word-spacing:6.515540px;}
.wsa9{word-spacing:6.635092px;}
.ws87{word-spacing:6.874194px;}
.ws86{word-spacing:6.933970px;}
.ws11{word-spacing:7.053521px;}
.ws90{word-spacing:7.173072px;}
.ws1f{word-spacing:7.232848px;}
.wsc3{word-spacing:7.292623px;}
.ws84{word-spacing:7.352399px;}
.ws72{word-spacing:8.119921px;}
.wsc8{word-spacing:8.129482px;}
.wsbd{word-spacing:8.428360px;}
.wsbe{word-spacing:8.488135px;}
.ws7d{word-spacing:8.745145px;}
.ws47{word-spacing:9.564096px;}
.ws76{word-spacing:10.421637px;}
.ws81{word-spacing:10.837285px;}
.ws4a{word-spacing:12.902547px;}
.ws38{word-spacing:12.908547px;}
.ws68{word-spacing:12.971356px;}
.ws69{word-spacing:13.557067px;}
.ws6e{word-spacing:13.567431px;}
.ws7c{word-spacing:13.842562px;}
.ws83{word-spacing:14.585246px;}
.ws95{word-spacing:15.278746px;}
.wsdb{word-spacing:15.332544px;}
.ws7b{word-spacing:16.559795px;}
.ws80{word-spacing:16.565795px;}
.ws77{word-spacing:22.176684px;}
.ws67{word-spacing:22.356074px;}
.ws66{word-spacing:22.384688px;}
.ws65{word-spacing:22.415850px;}
.ws85{word-spacing:26.062162px;}
.wsa4{word-spacing:41.283540px;}
.wsa6{word-spacing:41.287902px;}
.wsf{word-spacing:53.798400px;}
.wsc0{word-spacing:54.993552px;}
.ws39{word-spacing:57.419975px;}
.wsc2{word-spacing:84.104269px;}
.wsa2{word-spacing:84.569378px;}
.wsa0{word-spacing:89.653971px;}
.ws9a{word-spacing:98.033231px;}
.ws9c{word-spacing:98.037593px;}
.wsc1{word-spacing:102.754256px;}
.ws7e{word-spacing:110.586000px;}
.wsea{word-spacing:144.776503px;}
.wse9{word-spacing:174.664303px;}
.ws7f{word-spacing:200.250000px;}
.ws9d{word-spacing:296.861985px;}
.ws3a{word-spacing:441.040959px;}
.wse8{word-spacing:494.882192px;}
._16{margin-left:-20.748841px;}
._12{margin-left:-16.645858px;}
._28{margin-left:-7.498248px;}
._1d{margin-left:-5.814972px;}
._2{margin-left:-4.483170px;}
._e{margin-left:-3.347434px;}
._8{margin-left:-2.331248px;}
._1{margin-left:-1.032924px;}
._1c{width:1.645890px;}
._18{width:2.982608px;}
._17{width:6.406630px;}
._13{width:8.181272px;}
._1b{width:13.593841px;}
._19{width:15.242778px;}
._15{width:16.615235px;}
._7{width:17.829868px;}
._b{width:18.897957px;}
._6{width:20.921460px;}
._4{width:22.568879px;}
._9{width:23.850464px;}
._1e{width:25.285079px;}
._a{width:26.839244px;}
._11{width:28.282304px;}
._c{width:29.931888px;}
._1a{width:30.963761px;}
._0{width:32.020644px;}
._5{width:33.235234px;}
._2a{width:35.088277px;}
._3{width:36.941321px;}
._27{width:38.196608px;}
._d{width:40.049652px;}
._29{width:42.321125px;}
._2e{width:45.446195px;}
._2b{width:49.779413px;}
._23{width:52.149668px;}
._10{width:59.775600px;}
._f{width:71.731200px;}
._21{width:74.037042px;}
._26{width:81.005818px;}
._2d{width:83.924942px;}
._25{width:108.304467px;}
._22{width:113.208238px;}
._2c{width:198.096338px;}
._24{width:268.136210px;}
._20{width:317.298139px;}
._1f{width:545.963566px;}
._2f{width:552.976531px;}
._30{width:767.160050px;}
._14{width:769.440742px;}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:43.458057px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5f{bottom:63.168000px;}
.y2b{bottom:78.184500px;}
.y2a{bottom:93.129000px;}
.y5e{bottom:108.000000px;}
.ye6{bottom:116.868000px;}
.y94{bottom:122.944500px;}
.y5d{bottom:124.363500px;}
.ye4{bottom:125.932500px;}
.ye5{bottom:127.755000px;}
.y29{bottom:133.086000px;}
.y92{bottom:137.887500px;}
.y5c{bottom:140.727000px;}
.y93{bottom:141.288000px;}
.y118{bottom:144.505500px;}
.y28{bottom:149.449500px;}
.ye3{bottom:153.136500px;}
.y91{bottom:155.034000px;}
.y5b{bottom:157.090500px;}
.y90{bottom:160.747500px;}
.y27{bottom:165.814500px;}
.y117{bottom:167.832000px;}
.y8f{bottom:171.309000px;}
.y144{bottom:173.454000px;}
.ye1{bottom:176.239500px;}
.ye2{bottom:176.910000px;}
.y5a{bottom:181.674000px;}
.y26{bottom:182.178000px;}
.y116{bottom:184.195500px;}
.y8e{bottom:186.253500px;}
.ye0{bottom:187.278000px;}
.y143{bottom:189.817500px;}
.y8d{bottom:191.967000px;}
.y16f{bottom:197.185500px;}
.y197{bottom:198.037500px;}
.y115{bottom:200.559000px;}
.y25{bottom:206.760000px;}
.y59{bottom:211.636500px;}
.ydf{bottom:212.679000px;}
.y16e{bottom:213.549000px;}
.y196{bottom:214.401000px;}
.y8c{bottom:214.690500px;}
.y114{bottom:216.922500px;}
.y142{bottom:216.961500px;}
.y1a6{bottom:218.178000px;}
.y24{bottom:223.123500px;}
.yde{bottom:229.042500px;}
.y16d{bottom:229.912500px;}
.y195{bottom:230.764500px;}
.y8b{bottom:231.054000px;}
.y113{bottom:233.286000px;}
.y141{bottom:233.325000px;}
.y1a5{bottom:233.787000px;}
.y23{bottom:239.487000px;}
.ydd{bottom:245.406000px;}
.y16c{bottom:246.276000px;}
.y194{bottom:247.128000px;}
.y58{bottom:247.306500px;}
.y88{bottom:247.417500px;}
.y112{bottom:249.649500px;}
.y8a{bottom:251.196000px;}
.y89{bottom:252.841500px;}
.y22{bottom:255.850500px;}
.y1a4{bottom:258.369000px;}
.y140{bottom:260.467500px;}
.ydc{bottom:261.769500px;}
.y57{bottom:263.670000px;}
.y86{bottom:266.803500px;}
.y87{bottom:270.580500px;}
.y193{bottom:271.711500px;}
.y21{bottom:272.214000px;}
.y16b{bottom:274.596000px;}
.y1a3{bottom:274.732500px;}
.y13f{bottom:276.831000px;}
.y111{bottom:279.241500px;}
.y56{bottom:280.033500px;}
.ydb{bottom:286.353000px;}
.y192{bottom:288.075000px;}
.y20{bottom:288.579000px;}
.y16a{bottom:290.959500px;}
.y1a1{bottom:292.653000px;}
.y13e{bottom:293.194500px;}
.y1a0{bottom:294.628500px;}
.y1a2{bottom:296.311500px;}
.y85{bottom:297.723000px;}
.yda{bottom:302.716500px;}
.y191{bottom:304.438500px;}
.y1f{bottom:304.942500px;}
.y13d{bottom:309.558000px;}
.y19f{bottom:310.992000px;}
.y55{bottom:313.686000px;}
.yd9{bottom:319.080000px;}
.y169{bottom:319.278000px;}
.y84{bottom:320.385000px;}
.y83{bottom:324.868500px;}
.y110{bottom:325.330755px;}
.y13c{bottom:325.921500px;}
.y190{bottom:329.020500px;}
.y1e{bottom:329.524500px;}
.yd6{bottom:333.682500px;}
.yd7{bottom:334.351500px;}
.y168{bottom:335.641500px;}
.yc1{bottom:337.050000px;}
.yc2{bottom:337.176000px;}
.y10f{bottom:337.227347px;}
.yd8{bottom:340.659000px;}
.y13b{bottom:342.285000px;}
.y19e{bottom:344.376000px;}
.yd5{bottom:344.719500px;}
.y18f{bottom:345.385500px;}
.y1d{bottom:345.888000px;}
.yc0{bottom:349.005000px;}
.y10e{bottom:349.123939px;}
.y167{bottom:352.005000px;}
.y54{bottom:355.258500px;}
.y82{bottom:357.144000px;}
.ybe{bottom:360.960000px;}
.y10d{bottom:361.020531px;}
.ybf{bottom:361.086000px;}
.y18e{bottom:361.749000px;}
.y1c{bottom:362.251500px;}
.y166{bottom:368.368500px;}
.y13a{bottom:369.427500px;}
.yd4{bottom:370.120500px;}
.y53{bottom:371.622000px;}
.y81{bottom:373.507500px;}
.y18d{bottom:378.112500px;}
.y10c{bottom:378.594422px;}
.y1b{bottom:378.615000px;}
.ybd{bottom:378.660000px;}
.y165{bottom:384.732000px;}
.y139{bottom:385.791000px;}
.yd3{bottom:386.484000px;}
.y52{bottom:387.985500px;}
.y19d{bottom:389.619000px;}
.y10b{bottom:390.491014px;}
.y1a{bottom:394.980000px;}
.y80{bottom:398.091000px;}
.y164{bottom:401.095500px;}
.y138{bottom:402.154500px;}
.ybc{bottom:402.570000px;}
.y18c{bottom:402.694500px;}
.yd2{bottom:402.847500px;}
.y51{bottom:404.349000px;}
.y19c{bottom:405.982500px;}
.y10a{bottom:407.846798px;}
.y19{bottom:411.343500px;}
.y7f{bottom:414.454500px;}
.ybb{bottom:417.559500px;}
.y137{bottom:418.519500px;}
.y18b{bottom:419.058000px;}
.yd1{bottom:419.211000px;}
.y18{bottom:427.707000px;}
.y50{bottom:428.932500px;}
.y163{bottom:429.415500px;}
.yba{bottom:429.516000px;}
.y109{bottom:429.613500px;}
.y7e{bottom:430.818000px;}
.y18a{bottom:435.421500px;}
.yd0{bottom:435.574500px;}
.yb9{bottom:442.965000px;}
.y108{bottom:444.558000px;}
.y4f{bottom:445.296000px;}
.y136{bottom:445.662000px;}
.y162{bottom:445.779000px;}
.y7d{bottom:447.181500px;}
.ycf{bottom:451.938000px;}
.y189{bottom:460.005000px;}
.y4e{bottom:461.659500px;}
.y17{bottom:461.862000px;}
.y135{bottom:462.025500px;}
.y161{bottom:462.142500px;}
.y19b{bottom:462.903000px;}
.y7c{bottom:463.545000px;}
.yb8{bottom:463.878000px;}
.yce{bottom:473.278500px;}
.y188{bottom:476.368500px;}
.y107{bottom:477.795000px;}
.y4d{bottom:478.023000px;}
.y134{bottom:478.389000px;}
.yb7{bottom:482.110500px;}
.y19a{bottom:488.308500px;}
.y160{bottom:490.461000px;}
.y7b{bottom:491.838000px;}
.y187{bottom:492.732000px;}
.yb6{bottom:494.065500px;}
.y106{bottom:494.158500px;}
.y4c{bottom:494.386500px;}
.y133{bottom:494.752500px;}
.y7a{bottom:496.321500px;}
.yb5{bottom:506.020500px;}
.y15f{bottom:506.824500px;}
.y16{bottom:509.983500px;}
.ycd{bottom:510.135000px;}
.y105{bottom:510.523500px;}
.y4b{bottom:510.750000px;}
.y132{bottom:511.116000px;}
.yb4{bottom:517.975500px;}
.y15e{bottom:523.188000px;}
.y186{bottom:525.274500px;}
.y15{bottom:526.347000px;}
.ycc{bottom:526.498500px;}
.y104{bottom:526.887000px;}
.y4a{bottom:527.113500px;}
.y131{bottom:527.479500px;}
.y79{bottom:528.598500px;}
.yb3{bottom:529.930500px;}
.y15d{bottom:539.551500px;}
.yb2{bottom:541.885500px;}
.y14{bottom:542.710500px;}
.ycb{bottom:542.862000px;}
.y103{bottom:543.250500px;}
.y49{bottom:543.477000px;}
.y78{bottom:553.180500px;}
.y130{bottom:554.622000px;}
.y15c{bottom:555.915000px;}
.yb0{bottom:558.042000px;}
.y13{bottom:559.074000px;}
.yca{bottom:559.225500px;}
.y102{bottom:559.614000px;}
.y48{bottom:559.840500px;}
.yb1{bottom:561.702000px;}
.yaf{bottom:562.020000px;}
.y185{bottom:568.413000px;}
.y77{bottom:569.544000px;}
.y12f{bottom:570.985500px;}
.y15b{bottom:572.278500px;}
.y12{bottom:575.439000px;}
.yc9{bottom:575.589000px;}
.y101{bottom:575.977500px;}
.yae{bottom:580.774500px;}
.y47{bottom:584.424000px;}
.y184{bottom:584.776500px;}
.y76{bottom:585.907500px;}
.y12e{bottom:587.349000px;}
.y11{bottom:591.802500px;}
.yc8{bottom:591.952500px;}
.y100{bottom:592.341000px;}
.yad{bottom:592.729500px;}
.y15a{bottom:600.598500px;}
.y46{bottom:600.787500px;}
.y12d{bottom:603.714000px;}
.yac{bottom:604.684500px;}
.y10{bottom:608.166000px;}
.yc7{bottom:608.316000px;}
.yff{bottom:608.704500px;}
.y75{bottom:610.491000px;}
.yab{bottom:616.641000px;}
.y159{bottom:616.962000px;}
.y45{bottom:617.151000px;}
.y183{bottom:623.317500px;}
.yf{bottom:624.529500px;}
.yc6{bottom:624.679500px;}
.yfe{bottom:625.068000px;}
.y74{bottom:626.854500px;}
.yaa{bottom:628.596000px;}
.y12c{bottom:630.856500px;}
.y158{bottom:633.325500px;}
.y44{bottom:633.514500px;}
.ye{bottom:640.893000px;}
.yc5{bottom:641.043000px;}
.yfd{bottom:641.431500px;}
.y73{bottom:643.218000px;}
.ya9{bottom:646.288500px;}
.y12b{bottom:647.220000px;}
.y43{bottom:649.878000px;}
.yd{bottom:657.256500px;}
.yc4{bottom:657.408000px;}
.yfc{bottom:657.795000px;}
.y157{bottom:661.644000px;}
.ya8{bottom:662.652000px;}
.y42{bottom:666.241500px;}
.y182{bottom:672.358500px;}
.y72{bottom:673.180500px;}
.yc{bottom:673.620000px;}
.yc3{bottom:673.771500px;}
.yfb{bottom:674.158500px;}
.y12a{bottom:674.362500px;}
.y156{bottom:678.007500px;}
.ya7{bottom:679.017000px;}
.y41{bottom:682.605000px;}
.y181{bottom:688.722000px;}
.yb{bottom:689.983500px;}
.y129{bottom:690.726000px;}
.y155{bottom:694.371000px;}
.ya6{bottom:698.353500px;}
.yfa{bottom:698.742000px;}
.y40{bottom:698.968500px;}
.y199{bottom:701.023500px;}
.y180{bottom:705.085500px;}
.ya{bottom:706.347000px;}
.y71{bottom:709.849500px;}
.y154{bottom:710.734500px;}
.ya4{bottom:714.717000px;}
.yf9{bottom:715.105500px;}
.y198{bottom:715.968000px;}
.y128{bottom:717.868500px;}
.ya5{bottom:718.495500px;}
.y17f{bottom:721.449000px;}
.y3f{bottom:723.552000px;}
.y70{bottom:726.213000px;}
.y153{bottom:727.098000px;}
.yf7{bottom:731.469000px;}
.ya3{bottom:733.602000px;}
.y127{bottom:734.232000px;}
.yf8{bottom:735.246000px;}
.y17e{bottom:737.812500px;}
.y3e{bottom:739.915500px;}
.y9{bottom:740.337000px;}
.y6f{bottom:742.576500px;}
.y1ae{bottom:748.761000px;}
.yf6{bottom:750.354000px;}
.y126{bottom:750.595500px;}
.ya1{bottom:751.521000px;}
.ya0{bottom:753.498000px;}
.ya2{bottom:755.181000px;}
.y152{bottom:755.418000px;}
.y6e{bottom:758.941500px;}
.y17d{bottom:762.396000px;}
.y3d{bottom:764.499000px;}
.y1ad{bottom:765.124500px;}
.yf5{bottom:766.717500px;}
.y9f{bottom:769.861500px;}
.y151{bottom:771.781500px;}
.y6d{bottom:775.305000px;}
.y125{bottom:777.738000px;}
.y17c{bottom:778.759500px;}
.y3c{bottom:780.862500px;}
.y1ac{bottom:781.488000px;}
.yf4{bottom:783.081000px;}
.y9e{bottom:786.225000px;}
.y150{bottom:788.145000px;}
.y6c{bottom:791.668500px;}
.y124{bottom:794.101500px;}
.y17b{bottom:795.123000px;}
.y3b{bottom:797.226000px;}
.y1ab{bottom:797.851500px;}
.yf3{bottom:799.444500px;}
.y8{bottom:802.110000px;}
.y9d{bottom:802.588500px;}
.y14f{bottom:804.508500px;}
.y6b{bottom:808.032000px;}
.y3a{bottom:816.558000px;}
.y7{bottom:818.473500px;}
.y9c{bottom:818.952000px;}
.y17a{bottom:819.706500px;}
.y14e{bottom:820.872000px;}
.y123{bottom:821.244000px;}
.y1aa{bottom:822.022500px;}
.yf2{bottom:824.028000px;}
.y6a{bottom:832.614000px;}
.y39{bottom:832.921500px;}
.y6{bottom:834.837000px;}
.y9b{bottom:835.315500px;}
.y179{bottom:836.070000px;}
.y122{bottom:837.609000px;}
.yf1{bottom:840.391500px;}
.y1a9{bottom:845.895000px;}
.y14d{bottom:849.190500px;}
.y99{bottom:851.679000px;}
.y38{bottom:852.253500px;}
.y178{bottom:852.433500px;}
.y121{bottom:853.972500px;}
.y9a{bottom:855.456000px;}
.yf0{bottom:856.755000px;}
.y69{bottom:859.338000px;}
.y14c{bottom:865.554000px;}
.y1a8{bottom:867.400500px;}
.y120{bottom:870.336000px;}
.y97{bottom:871.065000px;}
.yef{bottom:873.118500px;}
.y98{bottom:874.842000px;}
.y68{bottom:875.701500px;}
.y37{bottom:876.837000px;}
.y177{bottom:877.015500px;}
.y5{bottom:877.105500px;}
.y14b{bottom:881.917500px;}
.y1a7{bottom:882.343500px;}
.yee{bottom:889.482000px;}
.y67{bottom:891.393000px;}
.y36{bottom:893.200500px;}
.y176{bottom:893.380500px;}
.y4{bottom:893.470500px;}
.y11f{bottom:897.478500px;}
.y14a{bottom:898.281000px;}
.y65{bottom:900.825000px;}
.y66{bottom:901.495500px;}
.y96{bottom:903.991500px;}
.yed{bottom:905.845500px;}
.y64{bottom:905.977500px;}
.y35{bottom:909.564000px;}
.y175{bottom:909.744000px;}
.y3{bottom:909.834000px;}
.y11e{bottom:913.842000px;}
.yec{bottom:922.209000px;}
.y34{bottom:925.927500px;}
.y174{bottom:926.107500px;}
.y149{bottom:926.601000px;}
.y62{bottom:926.778000px;}
.y63{bottom:927.447000px;}
.y11d{bottom:930.205500px;}
.y61{bottom:931.930500px;}
.yeb{bottom:938.572500px;}
.y33{bottom:942.291000px;}
.y148{bottom:942.964500px;}
.y173{bottom:950.689500px;}
.yea{bottom:954.937500px;}
.y11c{bottom:956.127000px;}
.y32{bottom:958.654500px;}
.y147{bottom:959.328000px;}
.y172{bottom:967.053000px;}
.y31{bottom:975.018000px;}
.y171{bottom:983.416500px;}
.ye9{bottom:984.528000px;}
.y146{bottom:987.646500px;}
.y2{bottom:988.542000px;}
.y60{bottom:991.383000px;}
.y11b{bottom:998.188500px;}
.y30{bottom:999.601500px;}
.y145{bottom:1004.010000px;}
.y95{bottom:1007.746500px;}
.y11a{bottom:1014.552000px;}
.y2f{bottom:1015.965000px;}
.y1{bottom:1018.429500px;}
.y170{bottom:1021.957500px;}
.ye8{bottom:1024.110000px;}
.y119{bottom:1030.915500px;}
.y2e{bottom:1032.328500px;}
.y2d{bottom:1048.692000px;}
.y2c{bottom:1065.055500px;}
.ye7{bottom:1073.923500px;}
.h10{height:15.055916px;}
.h1d{height:19.935163px;}
.h16{height:24.675533px;}
.h1b{height:27.078347px;}
.h15{height:28.787846px;}
.h27{height:29.038903px;}
.h23{height:29.080746px;}
.h20{height:29.833916px;}
.h35{height:29.899143px;}
.h34{height:30.159891px;}
.h29{height:30.878100px;}
.h1f{height:31.382100px;}
.h33{height:32.593543px;}
.h26{height:34.743280px;}
.h7{height:37.013299px;}
.h32{height:37.336090px;}
.h1e{height:38.099700px;}
.h17{height:38.519654px;}
.h18{height:40.348800px;}
.h8{height:40.826735px;}
.h3{height:41.125613px;}
.h2{height:41.484266px;}
.h4{height:41.544042px;}
.h38{height:41.719613px;}
.h28{height:41.960100px;}
.h2c{height:43.515024px;}
.h30{height:43.521024px;}
.h6{height:44.831700px;}
.h31{height:44.834100px;}
.h24{height:48.136297px;}
.h5{height:49.781453px;}
.h9{height:50.483846px;}
.h19{height:53.072100px;}
.h25{height:53.277163px;}
.h1c{height:53.365916px;}
.ha{height:54.920100px;}
.h37{height:55.036650px;}
.h2f{height:57.693163px;}
.h13{height:59.887916px;}
.h1a{height:59.939700px;}
.h21{height:60.688297px;}
.h22{height:61.960297px;}
.hf{height:62.759700px;}
.hd{height:62.765700px;}
.h2e{height:65.447700px;}
.h11{height:68.745024px;}
.h2d{height:71.305916px;}
.h1{height:71.684926px;}
.h2b{height:72.854100px;}
.h36{height:77.746258px;}
.hc{height:77.821916px;}
.h14{height:77.873700px;}
.hb{height:80.497916px;}
.he{height:80.503916px;}
.h2a{height:85.346100px;}
.h12{height:86.679024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:162.000000px;}
.x23{left:166.962000px;}
.xa6{left:168.460500px;}
.xd5{left:169.471500px;}
.xef{left:171.615000px;}
.xab{left:173.599500px;}
.xaa{left:176.008500px;}
.x1{left:179.350500px;}
.x24{left:181.905000px;}
.x64{left:186.210000px;}
.xd7{left:193.248000px;}
.xd6{left:194.368500px;}
.xbf{left:198.853500px;}
.xb2{left:200.716500px;}
.x5e{left:202.675500px;}
.xac{left:204.432000px;}
.x5d{left:206.619000px;}
.xa2{left:207.972000px;}
.xe2{left:209.673000px;}
.xc3{left:212.026500px;}
.xa5{left:214.045500px;}
.xf{left:215.799000px;}
.xdc{left:219.279000px;}
.xad{left:220.896000px;}
.x2{left:223.120500px;}
.x59{left:224.950500px;}
.x5{left:228.141000px;}
.x8b{left:229.912500px;}
.xc6{left:230.949000px;}
.x6e{left:235.017000px;}
.x4{left:239.773500px;}
.xe9{left:240.957000px;}
.xaf{left:242.554500px;}
.xee{left:243.807000px;}
.x17{left:246.018000px;}
.xb4{left:248.292000px;}
.x65{left:249.321000px;}
.xb{left:250.438500px;}
.x6f{left:252.442500px;}
.x18{left:253.491000px;}
.x50{left:255.843000px;}
.xf1{left:257.263500px;}
.xb0{left:259.198500px;}
.x66{left:261.550500px;}
.x44{left:264.070500px;}
.x43{left:267.132000px;}
.x73{left:269.709000px;}
.xe6{left:271.383000px;}
.x9{left:276.229500px;}
.xa{left:281.587500px;}
.xe0{left:283.261500px;}
.x3{left:286.533000px;}
.xe3{left:288.006000px;}
.xa0{left:292.230000px;}
.x3c{left:293.490000px;}
.x5c{left:296.002500px;}
.xf0{left:297.957000px;}
.x100{left:303.703500px;}
.xa3{left:304.896000px;}
.x45{left:307.296000px;}
.x67{left:309.376500px;}
.xf9{left:315.555000px;}
.xa8{left:316.728000px;}
.xa4{left:318.016500px;}
.xb3{left:321.015000px;}
.xe4{left:323.422500px;}
.xb5{left:325.045500px;}
.xc4{left:326.733000px;}
.x46{left:333.129000px;}
.xa9{left:335.209500px;}
.xdb{left:336.358500px;}
.x74{left:339.166500px;}
.x51{left:340.764000px;}
.xd2{left:344.017609px;}
.xfc{left:347.023500px;}
.xed{left:348.831000px;}
.x19{left:351.273000px;}
.x6d{left:353.560500px;}
.xdd{left:355.386000px;}
.x68{left:356.488500px;}
.xb6{left:361.672500px;}
.xa1{left:362.827500px;}
.xf7{left:364.896000px;}
.x1a{left:366.217500px;}
.x6b{left:369.634500px;}
.x34{left:371.196000px;}
.x40{left:372.606000px;}
.x52{left:375.393000px;}
.x47{left:376.530000px;}
.xc5{left:379.038000px;}
.xea{left:380.496000px;}
.x86{left:381.787500px;}
.x9f{left:383.862000px;}
.x6c{left:385.315500px;}
.x88{left:386.470500px;}
.x78{left:388.267500px;}
.x87{left:390.930000px;}
.xfa{left:393.963000px;}
.x69{left:396.517500px;}
.xa7{left:397.930500px;}
.x70{left:400.600500px;}
.x7a{left:402.381000px;}
.x8d{left:403.513500px;}
.x42{left:404.988000px;}
.x3d{left:406.782000px;}
.x71{left:408.073500px;}
.x7c{left:409.756500px;}
.x79{left:412.326000px;}
.x35{left:414.334500px;}
.x91{left:417.313500px;}
.xf5{left:418.662000px;}
.xba{left:420.849000px;}
.x41{left:423.253500px;}
.xfd{left:424.632000px;}
.xe{left:425.637000px;}
.x8c{left:429.412500px;}
.xec{left:430.777500px;}
.x10{left:432.225000px;}
.x92{left:433.827000px;}
.x3e{left:435.507000px;}
.xcd{left:436.780500px;}
.x75{left:438.972000px;}
.x94{left:440.506500px;}
.x9a{left:441.552000px;}
.xcf{left:442.941000px;}
.xfe{left:445.398000px;}
.x95{left:451.714500px;}
.x36{left:455.263500px;}
.x89{left:457.710000px;}
.x96{left:459.186000px;}
.xf2{left:460.284000px;}
.xce{left:462.087000px;}
.x81{left:463.770000px;}
.x4b{left:465.198000px;}
.x11{left:466.681500px;}
.x7d{left:469.264500px;}
.x3f{left:474.163500px;}
.x82{left:476.892000px;}
.x4c{left:480.141000px;}
.x8a{left:481.875000px;}
.xda{left:484.152000px;}
.x61{left:485.353500px;}
.xd{left:487.908000px;}
.x5f{left:491.667000px;}
.xd9{left:493.255500px;}
.x2a{left:495.360000px;}
.x99{left:497.185500px;}
.x7{left:499.339500px;}
.x8{left:500.475000px;}
.xd0{left:502.086000px;}
.x1b{left:507.820500px;}
.x2b{left:510.304500px;}
.xf4{left:513.852000px;}
.xf3{left:514.909500px;}
.xe7{left:516.558000px;}
.x6{left:519.006000px;}
.xc{left:521.269500px;}
.x1c{left:522.763500px;}
.xb9{left:525.060000px;}
.xd8{left:526.180500px;}
.x9b{left:527.875500px;}
.x39{left:530.868000px;}
.xb1{left:533.410500px;}
.x60{left:535.221000px;}
.xd1{left:536.443500px;}
.xf6{left:538.957500px;}
.x7e{left:540.837000px;}
.xe5{left:542.404500px;}
.x2f{left:543.537000px;}
.x3a{left:547.201500px;}
.xff{left:549.163500px;}
.x72{left:552.444000px;}
.xeb{left:554.496000px;}
.x1d{left:556.326000px;}
.x30{left:558.481500px;}
.xbb{left:561.504000px;}
.x8f{left:562.843500px;}
.xbe{left:567.714000px;}
.x90{left:569.310000px;}
.x1e{left:571.270500px;}
.x5a{left:573.232500px;}
.x2c{left:574.405500px;}
.x58{left:575.994000px;}
.xb7{left:579.703500px;}
.x2d{left:581.877000px;}
.xc2{left:585.406500px;}
.x3b{left:586.780500px;}
.x7f{left:588.354000px;}
.x98{left:591.261000px;}
.x97{left:592.980000px;}
.x31{left:596.086500px;}
.x9c{left:599.878500px;}
.x93{left:600.922500px;}
.x25{left:602.386500px;}
.x4d{left:605.004000px;}
.x76{left:606.424500px;}
.xc0{left:608.812500px;}
.xf8{left:610.297500px;}
.xd3{left:613.620000px;}
.x26{left:617.329500px;}
.x4e{left:619.548000px;}
.x80{left:620.575500px;}
.xe1{left:622.506000px;}
.x13{left:623.578500px;}
.xb8{left:628.702500px;}
.x14{left:631.050000px;}
.xbc{left:633.384000px;}
.x5b{left:637.903500px;}
.x56{left:641.101500px;}
.x83{left:643.201500px;}
.x53{left:645.016500px;}
.xde{left:646.249500px;}
.x6a{left:648.190500px;}
.xcb{left:651.418500px;}
.x9e{left:653.770500px;}
.x57{left:656.046000px;}
.xc7{left:658.117500px;}
.xdf{left:661.192500px;}
.x1f{left:663.961500px;}
.xc9{left:665.638500px;}
.x37{left:667.614000px;}
.xc8{left:669.582000px;}
.x20{left:671.434500px;}
.x54{left:672.799500px;}
.xe8{left:673.849500px;}
.xc1{left:676.357500px;}
.x21{left:678.970500px;}
.x22{left:686.442000px;}
.xbd{left:688.597500px;}
.x38{left:691.380000px;}
.x2e{left:693.292500px;}
.xd4{left:694.819500px;}
.x48{left:696.367500px;}
.xca{left:697.600500px;}
.x49{left:701.763000px;}
.x32{left:703.288500px;}
.x4a{left:706.990500px;}
.x8e{left:709.431000px;}
.x27{left:712.479000px;}
.xcc{left:714.648000px;}
.x63{left:718.170000px;}
.xfb{left:720.468000px;}
.x62{left:722.113500px;}
.xae{left:723.253500px;}
.x77{left:725.745000px;}
.x28{left:727.422000px;}
.x55{left:730.276500px;}
.x9d{left:731.602500px;}
.x84{left:733.669500px;}
.x29{left:734.923500px;}
.x7b{left:737.383500px;}
.x85{left:739.065000px;}
.x15{left:741.858000px;}
.x33{left:744.141000px;}
.x16{left:749.329500px;}
.x4f{left:754.762500px;}
@media print{
.v1c{vertical-align:-43.040000pt;}
.v1b{vertical-align:-31.530667pt;}
.v12{vertical-align:-30.261333pt;}
.vd{vertical-align:-13.136000pt;}
.v20{vertical-align:-11.957333pt;}
.v3{vertical-align:-9.594667pt;}
.v1{vertical-align:-7.973333pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:1.130667pt;}
.v11{vertical-align:2.656000pt;}
.vb{vertical-align:7.973333pt;}
.v17{vertical-align:9.402667pt;}
.v1f{vertical-align:11.957333pt;}
.v10{vertical-align:13.429333pt;}
.va{vertical-align:15.941333pt;}
.v1d{vertical-align:18.325333pt;}
.v2{vertical-align:19.285333pt;}
.vc{vertical-align:20.922667pt;}
.v21{vertical-align:22.349564pt;}
.vf{vertical-align:26.714667pt;}
.v5{vertical-align:30.517333pt;}
.v1e{vertical-align:33.562667pt;}
.v19{vertical-align:35.226667pt;}
.v1a{vertical-align:36.864000pt;}
.ve{vertical-align:39.850667pt;}
.v16{vertical-align:40.965333pt;}
.v9{vertical-align:42.656000pt;}
.v7{vertical-align:45.034667pt;}
.v18{vertical-align:47.968000pt;}
.v13{vertical-align:52.122667pt;}
.v14{vertical-align:53.253333pt;}
.v8{vertical-align:55.792000pt;}
.v6{vertical-align:58.170667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000054pt;}
.ls4c{letter-spacing:0.000234pt;}
.ls8{letter-spacing:0.000267pt;}
.ls52{letter-spacing:0.000394pt;}
.ls4a{letter-spacing:0.000473pt;}
.ls9e{letter-spacing:0.000495pt;}
.lsc{letter-spacing:0.000576pt;}
.ls61{letter-spacing:0.000689pt;}
.ls34{letter-spacing:0.000693pt;}
.ls8b{letter-spacing:0.000749pt;}
.ls71{letter-spacing:0.000835pt;}
.ls6a{letter-spacing:0.001095pt;}
.lsa{letter-spacing:0.001253pt;}
.lsa7{letter-spacing:0.001511pt;}
.ls5d{letter-spacing:0.001512pt;}
.ls83{letter-spacing:0.001788pt;}
.ls17{letter-spacing:0.001799pt;}
.lsd{letter-spacing:0.001846pt;}
.ls26{letter-spacing:0.002028pt;}
.ls3{letter-spacing:0.002079pt;}
.ls5e{letter-spacing:0.002245pt;}
.ls7{letter-spacing:0.002694pt;}
.ls13{letter-spacing:0.002906pt;}
.ls51{letter-spacing:0.002980pt;}
.ls35{letter-spacing:0.003034pt;}
.ls36{letter-spacing:0.003176pt;}
.ls11{letter-spacing:0.003246pt;}
.ls10{letter-spacing:0.003514pt;}
.ls41{letter-spacing:0.003723pt;}
.ls0{letter-spacing:0.003733pt;}
.ls6d{letter-spacing:0.004312pt;}
.ls45{letter-spacing:0.004352pt;}
.ls28{letter-spacing:0.004777pt;}
.ls81{letter-spacing:0.004835pt;}
.ls32{letter-spacing:0.036439pt;}
.ls86{letter-spacing:0.900327pt;}
.ls69{letter-spacing:1.334514pt;}
.ls3e{letter-spacing:1.481462pt;}
.ls46{letter-spacing:2.651242pt;}
.ls12{letter-spacing:2.654181pt;}
.ls72{letter-spacing:2.654545pt;}
.ls27{letter-spacing:2.655806pt;}
.ls62{letter-spacing:2.656220pt;}
.ls42{letter-spacing:2.656576pt;}
.ls33{letter-spacing:2.657594pt;}
.ls6{letter-spacing:2.659514pt;}
.lsb{letter-spacing:2.661139pt;}
.lsad{letter-spacing:2.662927pt;}
.ls78{letter-spacing:3.022878pt;}
.ls79{letter-spacing:3.026980pt;}
.ls76{letter-spacing:3.028212pt;}
.ls77{letter-spacing:3.028777pt;}
.ls91{letter-spacing:3.801407pt;}
.ls3a{letter-spacing:5.313316pt;}
.ls7c{letter-spacing:5.313414pt;}
.ls4e{letter-spacing:5.717759pt;}
.ls87{letter-spacing:5.742275pt;}
.ls3f{letter-spacing:5.793503pt;}
.ls95{letter-spacing:6.190400pt;}
.ls4b{letter-spacing:6.373909pt;}
.ls6e{letter-spacing:7.252212pt;}
.ls65{letter-spacing:7.257545pt;}
.ls37{letter-spacing:8.192495pt;}
.ls19{letter-spacing:8.850079pt;}
.ls24{letter-spacing:8.852984pt;}
.ls2f{letter-spacing:8.855121pt;}
.ls1d{letter-spacing:8.855412pt;}
.ls2c{letter-spacing:8.856239pt;}
.ls8a{letter-spacing:8.985863pt;}
.ls93{letter-spacing:9.027879pt;}
.ls50{letter-spacing:9.149197pt;}
.ls66{letter-spacing:9.297253pt;}
.ls4f{letter-spacing:9.297513pt;}
.ls58{letter-spacing:9.298245pt;}
.ls56{letter-spacing:9.302846pt;}
.lsa5{letter-spacing:9.655173pt;}
.lsa8{letter-spacing:9.656183pt;}
.lsa4{letter-spacing:9.659051pt;}
.ls70{letter-spacing:9.669835pt;}
.ls7e{letter-spacing:9.672313pt;}
.ls68{letter-spacing:9.675168pt;}
.ls7d{letter-spacing:9.675242pt;}
.ls6f{letter-spacing:9.679444pt;}
.ls6b{letter-spacing:9.914314pt;}
.ls74{letter-spacing:9.914473pt;}
.ls94{letter-spacing:10.329462pt;}
.ls96{letter-spacing:10.334795pt;}
.lsa9{letter-spacing:10.729600pt;}
.lsa1{letter-spacing:10.872050pt;}
.lsa2{letter-spacing:10.875928pt;}
.ls6c{letter-spacing:11.104835pt;}
.ls84{letter-spacing:11.511578pt;}
.ls20{letter-spacing:11.805361pt;}
.ls82{letter-spacing:11.805573pt;}
.ls23{letter-spacing:11.808479pt;}
.ls2b{letter-spacing:11.810079pt;}
.lsae{letter-spacing:11.952693pt;}
.lsb7{letter-spacing:11.956526pt;}
.ls55{letter-spacing:11.957139pt;}
.ls7b{letter-spacing:11.958747pt;}
.lsa0{letter-spacing:11.988439pt;}
.ls22{letter-spacing:11.999599pt;}
.ls2d{letter-spacing:12.004932pt;}
.ls60{letter-spacing:12.091168pt;}
.ls54{letter-spacing:12.093542pt;}
.ls64{letter-spacing:12.094181pt;}
.ls59{letter-spacing:12.096576pt;}
.ls75{letter-spacing:12.178531pt;}
.lsab{letter-spacing:12.517894pt;}
.ls57{letter-spacing:12.990993pt;}
.ls9c{letter-spacing:13.280996pt;}
.ls1f{letter-spacing:13.283032pt;}
.ls2{letter-spacing:13.284237pt;}
.ls1e{letter-spacing:13.284465pt;}
.ls9{letter-spacing:13.288027pt;}
.lsaf{letter-spacing:13.652526pt;}
.ls9f{letter-spacing:13.657859pt;}
.ls92{letter-spacing:13.759235pt;}
.ls2e{letter-spacing:14.018906pt;}
.ls80{letter-spacing:14.023121pt;}
.ls7a{letter-spacing:14.128501pt;}
.ls7f{letter-spacing:14.170886pt;}
.ls5c{letter-spacing:14.752220pt;}
.lsb2{letter-spacing:14.752996pt;}
.ls73{letter-spacing:14.753414pt;}
.ls1c{letter-spacing:14.754906pt;}
.ls16{letter-spacing:14.757812pt;}
.ls99{letter-spacing:14.758329pt;}
.ls21{letter-spacing:14.759467pt;}
.ls1a{letter-spacing:14.760027pt;}
.ls15{letter-spacing:14.760239pt;}
.lsb6{letter-spacing:14.768996pt;}
.ls18{letter-spacing:14.771215pt;}
.ls9b{letter-spacing:14.774329pt;}
.ls97{letter-spacing:14.954265pt;}
.lsac{letter-spacing:14.959599pt;}
.ls5a{letter-spacing:15.019092pt;}
.lsb4{letter-spacing:15.595663pt;}
.lsb5{letter-spacing:15.936576pt;}
.ls90{letter-spacing:16.344580pt;}
.ls88{letter-spacing:17.410245pt;}
.lsb1{letter-spacing:17.413909pt;}
.lsb3{letter-spacing:17.579663pt;}
.ls8c{letter-spacing:17.821913pt;}
.ls85{letter-spacing:17.839197pt;}
.ls3d{letter-spacing:18.436465pt;}
.ls39{letter-spacing:18.437452pt;}
.ls3c{letter-spacing:18.437812pt;}
.ls5{letter-spacing:18.463651pt;}
.ls4{letter-spacing:18.466694pt;}
.ls44{letter-spacing:18.731145pt;}
.ls48{letter-spacing:18.732800pt;}
.lsa6{letter-spacing:19.316690pt;}
.lsf{letter-spacing:20.949759pt;}
.ls3b{letter-spacing:21.092428pt;}
.ls8d{letter-spacing:21.131145pt;}
.ls47{letter-spacing:21.387242pt;}
.ls43{letter-spacing:21.392576pt;}
.ls40{letter-spacing:22.137902pt;}
.ls2a{letter-spacing:23.615016pt;}
.ls9d{letter-spacing:24.573546pt;}
.ls38{letter-spacing:25.092349pt;}
.ls53{letter-spacing:26.566400pt;}
.lsb0{letter-spacing:26.569682pt;}
.ls9a{letter-spacing:26.585682pt;}
.ls98{letter-spacing:28.783016pt;}
.ls89{letter-spacing:32.395416pt;}
.ls8e{letter-spacing:32.459092pt;}
.ls5f{letter-spacing:32.606878pt;}
.ls49{letter-spacing:34.210079pt;}
.lsaa{letter-spacing:46.355260pt;}
.ls29{letter-spacing:55.793253pt;}
.lsa3{letter-spacing:56.466867pt;}
.lse{letter-spacing:66.982586pt;}
.lsb8{letter-spacing:93.899663pt;}
.ls5b{letter-spacing:106.267733pt;}
.ls30{letter-spacing:141.842079pt;}
.ls63{letter-spacing:185.969067pt;}
.ls67{letter-spacing:265.670400pt;}
.ls1b{letter-spacing:385.532745pt;}
.ls25{letter-spacing:386.402079pt;}
.ls14{letter-spacing:535.298079pt;}
.ls8f{letter-spacing:792.855412pt;}
.ls31{letter-spacing:964.690079pt;}
.ws3c{word-spacing:-53.133867pt;}
.ws4e{word-spacing:-42.359791pt;}
.ws37{word-spacing:-42.066082pt;}
.ws3d{word-spacing:-38.362652pt;}
.ws59{word-spacing:-34.696415pt;}
.wsd{word-spacing:-34.611401pt;}
.ws58{word-spacing:-33.198040pt;}
.ws53{word-spacing:-32.063846pt;}
.ws79{word-spacing:-30.271871pt;}
.ws3b{word-spacing:-29.531803pt;}
.ws35{word-spacing:-28.118362pt;}
.ws3e{word-spacing:-25.738045pt;}
.ws97{word-spacing:-25.163181pt;}
.ws6a{word-spacing:-20.865610pt;}
.wsd4{word-spacing:-19.850840pt;}
.wsd0{word-spacing:-19.834840pt;}
.ws57{word-spacing:-19.824173pt;}
.ws91{word-spacing:-17.650462pt;}
.ws6b{word-spacing:-16.023570pt;}
.wsab{word-spacing:-15.940267pt;}
.wsc{word-spacing:-14.760588pt;}
.ws23{word-spacing:-13.283467pt;}
.ws63{word-spacing:-13.206875pt;}
.wsdd{word-spacing:-12.179393pt;}
.ws98{word-spacing:-10.731243pt;}
.ws99{word-spacing:-9.657346pt;}
.ws74{word-spacing:-9.298400pt;}
.ws49{word-spacing:-5.904027pt;}
.ws48{word-spacing:-2.964870pt;}
.wsb7{word-spacing:-2.019087pt;}
.wsb6{word-spacing:-1.965953pt;}
.ws27{word-spacing:-1.859685pt;}
.wse0{word-spacing:-1.753418pt;}
.wsbb{word-spacing:-1.647150pt;}
.ws18{word-spacing:-1.540882pt;}
.wsde{word-spacing:-1.487748pt;}
.ws29{word-spacing:-1.115811pt;}
.wsca{word-spacing:-1.062677pt;}
.wsc9{word-spacing:-1.050877pt;}
.ws22{word-spacing:-1.009543pt;}
.wsb9{word-spacing:-0.956410pt;}
.ws2b{word-spacing:-0.903276pt;}
.wsae{word-spacing:-0.850142pt;}
.wsbf{word-spacing:-0.797008pt;}
.wsc5{word-spacing:-0.743874pt;}
.ws28{word-spacing:-0.690740pt;}
.ws60{word-spacing:-0.668536pt;}
.ws5f{word-spacing:-0.643930pt;}
.wsd1{word-spacing:-0.637606pt;}
.wsd6{word-spacing:-0.573850pt;}
.ws10{word-spacing:-0.531339pt;}
.wsd7{word-spacing:-0.526029pt;}
.wsb4{word-spacing:-0.425071pt;}
.wsc6{word-spacing:-0.377286pt;}
.wsaf{word-spacing:-0.371937pt;}
.ws89{word-spacing:-0.318803pt;}
.ws6{word-spacing:-0.265669pt;}
.wsce{word-spacing:-0.234906pt;}
.ws19{word-spacing:-0.212535pt;}
.ws1c{word-spacing:-0.191283pt;}
.ws2{word-spacing:-0.159402pt;}
.ws94{word-spacing:-0.143462pt;}
.wsa{word-spacing:-0.106268pt;}
.wscc{word-spacing:-0.094382pt;}
.ws1{word-spacing:-0.053134pt;}
.ws54{word-spacing:-0.047821pt;}
.ws36{word-spacing:-0.037194pt;}
.ws7a{word-spacing:-0.026567pt;}
.wsa1{word-spacing:-0.014789pt;}
.ws8a{word-spacing:-0.013752pt;}
.ws9e{word-spacing:-0.011768pt;}
.ws40{word-spacing:-0.005059pt;}
.wse7{word-spacing:-0.004028pt;}
.ws6f{word-spacing:-0.003454pt;}
.ws70{word-spacing:-0.003335pt;}
.wsd8{word-spacing:-0.003157pt;}
.wsb2{word-spacing:-0.002176pt;}
.ws24{word-spacing:-0.002133pt;}
.ws44{word-spacing:-0.001892pt;}
.ws6d{word-spacing:-0.001648pt;}
.wsb0{word-spacing:-0.001259pt;}
.ws78{word-spacing:-0.000994pt;}
.wsdc{word-spacing:-0.000666pt;}
.ws9b{word-spacing:-0.000506pt;}
.wsa7{word-spacing:-0.000388pt;}
.ws0{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.000520pt;}
.ws73{word-spacing:0.000800pt;}
.ws93{word-spacing:0.001897pt;}
.ws9f{word-spacing:0.002055pt;}
.ws75{word-spacing:0.002977pt;}
.ws25{word-spacing:0.003121pt;}
.ws71{word-spacing:0.003335pt;}
.wsa5{word-spacing:0.003490pt;}
.ws3f{word-spacing:0.003830pt;}
.ws96{word-spacing:0.007726pt;}
.ws4b{word-spacing:0.010627pt;}
.ws17{word-spacing:0.053134pt;}
.ws12{word-spacing:0.106268pt;}
.ws51{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159402pt;}
.ws52{word-spacing:0.191283pt;}
.ws13{word-spacing:0.212535pt;}
.ws21{word-spacing:0.265669pt;}
.ws50{word-spacing:0.318803pt;}
.wsc4{word-spacing:0.371937pt;}
.wsaa{word-spacing:0.425071pt;}
.ws2a{word-spacing:0.478205pt;}
.ws55{word-spacing:0.526029pt;}
.wsb1{word-spacing:0.531339pt;}
.ws56{word-spacing:0.573850pt;}
.ws4f{word-spacing:0.584473pt;}
.ws34{word-spacing:0.690740pt;}
.ws33{word-spacing:0.743874pt;}
.ws30{word-spacing:0.797008pt;}
.ws8d{word-spacing:0.807635pt;}
.ws20{word-spacing:0.850142pt;}
.wse3{word-spacing:0.860769pt;}
.wse6{word-spacing:0.860774pt;}
.ws92{word-spacing:0.903276pt;}
.ws1b{word-spacing:1.009543pt;}
.ws1d{word-spacing:1.062677pt;}
.ws41{word-spacing:1.115811pt;}
.ws42{word-spacing:1.124651pt;}
.ws43{word-spacing:1.128485pt;}
.wscd{word-spacing:1.140951pt;}
.ws2c{word-spacing:1.168945pt;}
.wscf{word-spacing:1.179685pt;}
.wse1{word-spacing:1.222079pt;}
.ws45{word-spacing:1.251852pt;}
.wsdf{word-spacing:1.381481pt;}
.ws8c{word-spacing:1.434614pt;}
.ws4c{word-spacing:1.540882pt;}
.wsad{word-spacing:1.594016pt;}
.ws46{word-spacing:1.647150pt;}
.ws2e{word-spacing:1.700284pt;}
.ws61{word-spacing:1.806551pt;}
.ws62{word-spacing:1.859685pt;}
.wscb{word-spacing:2.019087pt;}
.ws5d{word-spacing:2.072221pt;}
.ws5c{word-spacing:2.125355pt;}
.ws5a{word-spacing:2.178489pt;}
.ws8f{word-spacing:2.189115pt;}
.ws6c{word-spacing:2.228315pt;}
.ws4{word-spacing:2.231622pt;}
.ws15{word-spacing:2.284756pt;}
.ws14{word-spacing:2.337890pt;}
.ws5e{word-spacing:2.709827pt;}
.wsbc{word-spacing:2.816095pt;}
.wse2{word-spacing:2.826722pt;}
.wsda{word-spacing:2.868582pt;}
.wsd9{word-spacing:2.869214pt;}
.wse4{word-spacing:2.869229pt;}
.ws1a{word-spacing:2.922363pt;}
.ws31{word-spacing:2.967990pt;}
.ws32{word-spacing:2.975497pt;}
.wsd5{word-spacing:3.028630pt;}
.ws8e{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.188032pt;}
.ws64{word-spacing:3.241166pt;}
.ws5b{word-spacing:3.294300pt;}
.wsc7{word-spacing:3.347434pt;}
.wse{word-spacing:3.559969pt;}
.ws88{word-spacing:3.666237pt;}
.wsb8{word-spacing:3.719371pt;}
.wsba{word-spacing:4.091308pt;}
.ws2f{word-spacing:4.133723pt;}
.ws9{word-spacing:4.144442pt;}
.ws8{word-spacing:4.197575pt;}
.ws4d{word-spacing:4.250709pt;}
.ws2d{word-spacing:4.303843pt;}
.ws8b{word-spacing:4.410111pt;}
.wsa8{word-spacing:4.463245pt;}
.ws7{word-spacing:4.622646pt;}
.wse5{word-spacing:4.782048pt;}
.ws26{word-spacing:4.941450pt;}
.ws82{word-spacing:5.047717pt;}
.wsd2{word-spacing:5.153985pt;}
.wsd3{word-spacing:5.165968pt;}
.ws3{word-spacing:5.313387pt;}
.ws5{word-spacing:5.419654pt;}
.wsb3{word-spacing:5.632190pt;}
.ws16{word-spacing:5.685324pt;}
.wsac{word-spacing:5.738458pt;}
.wsb5{word-spacing:5.791591pt;}
.wsa9{word-spacing:5.897859pt;}
.ws87{word-spacing:6.110395pt;}
.ws86{word-spacing:6.163529pt;}
.ws11{word-spacing:6.269796pt;}
.ws90{word-spacing:6.376064pt;}
.ws1f{word-spacing:6.429198pt;}
.wsc3{word-spacing:6.482332pt;}
.ws84{word-spacing:6.535466pt;}
.ws72{word-spacing:7.217708pt;}
.wsc8{word-spacing:7.226206pt;}
.wsbd{word-spacing:7.491875pt;}
.wsbe{word-spacing:7.545009pt;}
.ws7d{word-spacing:7.773462pt;}
.ws47{word-spacing:8.501419pt;}
.ws76{word-spacing:9.263677pt;}
.ws81{word-spacing:9.633142pt;}
.ws4a{word-spacing:11.468931pt;}
.ws38{word-spacing:11.474264pt;}
.ws68{word-spacing:11.530094pt;}
.ws69{word-spacing:12.050726pt;}
.ws6e{word-spacing:12.059938pt;}
.ws7c{word-spacing:12.304500pt;}
.ws83{word-spacing:12.964663pt;}
.ws95{word-spacing:13.581107pt;}
.wsdb{word-spacing:13.628928pt;}
.ws7b{word-spacing:14.719817pt;}
.ws80{word-spacing:14.725151pt;}
.ws77{word-spacing:19.712608pt;}
.ws67{word-spacing:19.872066pt;}
.ws66{word-spacing:19.897500pt;}
.ws65{word-spacing:19.925200pt;}
.ws85{word-spacing:23.166366pt;}
.wsa4{word-spacing:36.696480pt;}
.wsa6{word-spacing:36.700357pt;}
.wsf{word-spacing:47.820800pt;}
.wsc0{word-spacing:48.883157pt;}
.ws39{word-spacing:51.039978pt;}
.wsc2{word-spacing:74.759350pt;}
.wsa2{word-spacing:75.172781pt;}
.wsa0{word-spacing:79.692419pt;}
.ws9a{word-spacing:87.140650pt;}
.ws9c{word-spacing:87.144527pt;}
.wsc1{word-spacing:91.337117pt;}
.ws7e{word-spacing:98.298667pt;}
.wsea{word-spacing:128.690225pt;}
.wse9{word-spacing:155.257158pt;}
.ws7f{word-spacing:178.000000pt;}
.ws9d{word-spacing:263.877320pt;}
.ws3a{word-spacing:392.036408pt;}
.wse8{word-spacing:439.895282pt;}
._16{margin-left:-18.443414pt;}
._12{margin-left:-14.796319pt;}
._28{margin-left:-6.665109pt;}
._1d{margin-left:-5.168864pt;}
._2{margin-left:-3.985040pt;}
._e{margin-left:-2.975497pt;}
._8{margin-left:-2.072221pt;}
._1{margin-left:-0.918155pt;}
._1c{width:1.463013pt;}
._18{width:2.651207pt;}
._17{width:5.694783pt;}
._13{width:7.272242pt;}
._1b{width:12.083414pt;}
._19{width:13.549136pt;}
._15{width:14.769098pt;}
._7{width:15.848771pt;}
._b{width:16.798184pt;}
._6{width:18.596853pt;}
._4{width:20.061226pt;}
._9{width:21.200413pt;}
._1e{width:22.475626pt;}
._a{width:23.857106pt;}
._11{width:25.139826pt;}
._c{width:26.606123pt;}
._1a{width:27.523343pt;}
._0{width:28.462795pt;}
._5{width:29.542430pt;}
._2a{width:31.189580pt;}
._3{width:32.836730pt;}
._27{width:33.952541pt;}
._d{width:35.599691pt;}
._29{width:37.618778pt;}
._2e{width:40.396618pt;}
._2b{width:44.248367pt;}
._23{width:46.355260pt;}
._10{width:53.133867pt;}
._f{width:63.761067pt;}
._21{width:65.810704pt;}
._26{width:72.005171pt;}
._2d{width:74.599949pt;}
._25{width:96.270638pt;}
._22{width:100.629545pt;}
._2c{width:176.085634pt;}
._24{width:238.343298pt;}
._20{width:282.042790pt;}
._1f{width:485.300948pt;}
._2f{width:491.534694pt;}
._30{width:681.920045pt;}
._14{width:683.947326pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:38.629384pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:56.149333pt;}
.y2b{bottom:69.497333pt;}
.y2a{bottom:82.781333pt;}
.y5e{bottom:96.000000pt;}
.ye6{bottom:103.882667pt;}
.y94{bottom:109.284000pt;}
.y5d{bottom:110.545333pt;}
.ye4{bottom:111.940000pt;}
.ye5{bottom:113.560000pt;}
.y29{bottom:118.298667pt;}
.y92{bottom:122.566667pt;}
.y5c{bottom:125.090667pt;}
.y93{bottom:125.589333pt;}
.y118{bottom:128.449333pt;}
.y28{bottom:132.844000pt;}
.ye3{bottom:136.121333pt;}
.y91{bottom:137.808000pt;}
.y5b{bottom:139.636000pt;}
.y90{bottom:142.886667pt;}
.y27{bottom:147.390667pt;}
.y117{bottom:149.184000pt;}
.y8f{bottom:152.274667pt;}
.y144{bottom:154.181333pt;}
.ye1{bottom:156.657333pt;}
.ye2{bottom:157.253333pt;}
.y5a{bottom:161.488000pt;}
.y26{bottom:161.936000pt;}
.y116{bottom:163.729333pt;}
.y8e{bottom:165.558667pt;}
.ye0{bottom:166.469333pt;}
.y143{bottom:168.726667pt;}
.y8d{bottom:170.637333pt;}
.y16f{bottom:175.276000pt;}
.y197{bottom:176.033333pt;}
.y115{bottom:178.274667pt;}
.y25{bottom:183.786667pt;}
.y59{bottom:188.121333pt;}
.ydf{bottom:189.048000pt;}
.y16e{bottom:189.821333pt;}
.y196{bottom:190.578667pt;}
.y8c{bottom:190.836000pt;}
.y114{bottom:192.820000pt;}
.y142{bottom:192.854667pt;}
.y1a6{bottom:193.936000pt;}
.y24{bottom:198.332000pt;}
.yde{bottom:203.593333pt;}
.y16d{bottom:204.366667pt;}
.y195{bottom:205.124000pt;}
.y8b{bottom:205.381333pt;}
.y113{bottom:207.365333pt;}
.y141{bottom:207.400000pt;}
.y1a5{bottom:207.810667pt;}
.y23{bottom:212.877333pt;}
.ydd{bottom:218.138667pt;}
.y16c{bottom:218.912000pt;}
.y194{bottom:219.669333pt;}
.y58{bottom:219.828000pt;}
.y88{bottom:219.926667pt;}
.y112{bottom:221.910667pt;}
.y8a{bottom:223.285333pt;}
.y89{bottom:224.748000pt;}
.y22{bottom:227.422667pt;}
.y1a4{bottom:229.661333pt;}
.y140{bottom:231.526667pt;}
.ydc{bottom:232.684000pt;}
.y57{bottom:234.373333pt;}
.y86{bottom:237.158667pt;}
.y87{bottom:240.516000pt;}
.y193{bottom:241.521333pt;}
.y21{bottom:241.968000pt;}
.y16b{bottom:244.085333pt;}
.y1a3{bottom:244.206667pt;}
.y13f{bottom:246.072000pt;}
.y111{bottom:248.214667pt;}
.y56{bottom:248.918667pt;}
.ydb{bottom:254.536000pt;}
.y192{bottom:256.066667pt;}
.y20{bottom:256.514667pt;}
.y16a{bottom:258.630667pt;}
.y1a1{bottom:260.136000pt;}
.y13e{bottom:260.617333pt;}
.y1a0{bottom:261.892000pt;}
.y1a2{bottom:263.388000pt;}
.y85{bottom:264.642667pt;}
.yda{bottom:269.081333pt;}
.y191{bottom:270.612000pt;}
.y1f{bottom:271.060000pt;}
.y13d{bottom:275.162667pt;}
.y19f{bottom:276.437333pt;}
.y55{bottom:278.832000pt;}
.yd9{bottom:283.626667pt;}
.y169{bottom:283.802667pt;}
.y84{bottom:284.786667pt;}
.y83{bottom:288.772000pt;}
.y110{bottom:289.182894pt;}
.y13c{bottom:289.708000pt;}
.y190{bottom:292.462667pt;}
.y1e{bottom:292.910667pt;}
.yd6{bottom:296.606667pt;}
.yd7{bottom:297.201333pt;}
.y168{bottom:298.348000pt;}
.yc1{bottom:299.600000pt;}
.yc2{bottom:299.712000pt;}
.y10f{bottom:299.757642pt;}
.yd8{bottom:302.808000pt;}
.y13b{bottom:304.253333pt;}
.y19e{bottom:306.112000pt;}
.yd5{bottom:306.417333pt;}
.y18f{bottom:307.009333pt;}
.y1d{bottom:307.456000pt;}
.yc0{bottom:310.226667pt;}
.y10e{bottom:310.332390pt;}
.y167{bottom:312.893333pt;}
.y54{bottom:315.785333pt;}
.y82{bottom:317.461333pt;}
.ybe{bottom:320.853333pt;}
.y10d{bottom:320.907138pt;}
.ybf{bottom:320.965333pt;}
.y18e{bottom:321.554667pt;}
.y1c{bottom:322.001333pt;}
.y166{bottom:327.438667pt;}
.y13a{bottom:328.380000pt;}
.yd4{bottom:328.996000pt;}
.y53{bottom:330.330667pt;}
.y81{bottom:332.006667pt;}
.y18d{bottom:336.100000pt;}
.y10c{bottom:336.528375pt;}
.y1b{bottom:336.546667pt;}
.ybd{bottom:336.586667pt;}
.y165{bottom:341.984000pt;}
.y139{bottom:342.925333pt;}
.yd3{bottom:343.541333pt;}
.y52{bottom:344.876000pt;}
.y19d{bottom:346.328000pt;}
.y10b{bottom:347.103123pt;}
.y1a{bottom:351.093333pt;}
.y80{bottom:353.858667pt;}
.y164{bottom:356.529333pt;}
.y138{bottom:357.470667pt;}
.ybc{bottom:357.840000pt;}
.y18c{bottom:357.950667pt;}
.yd2{bottom:358.086667pt;}
.y51{bottom:359.421333pt;}
.y19c{bottom:360.873333pt;}
.y10a{bottom:362.530488pt;}
.y19{bottom:365.638667pt;}
.y7f{bottom:368.404000pt;}
.ybb{bottom:371.164000pt;}
.y137{bottom:372.017333pt;}
.y18b{bottom:372.496000pt;}
.yd1{bottom:372.632000pt;}
.y18{bottom:380.184000pt;}
.y50{bottom:381.273333pt;}
.y163{bottom:381.702667pt;}
.yba{bottom:381.792000pt;}
.y109{bottom:381.878667pt;}
.y7e{bottom:382.949333pt;}
.y18a{bottom:387.041333pt;}
.yd0{bottom:387.177333pt;}
.yb9{bottom:393.746667pt;}
.y108{bottom:395.162667pt;}
.y4f{bottom:395.818667pt;}
.y136{bottom:396.144000pt;}
.y162{bottom:396.248000pt;}
.y7d{bottom:397.494667pt;}
.ycf{bottom:401.722667pt;}
.y189{bottom:408.893333pt;}
.y4e{bottom:410.364000pt;}
.y17{bottom:410.544000pt;}
.y135{bottom:410.689333pt;}
.y161{bottom:410.793333pt;}
.y19b{bottom:411.469333pt;}
.y7c{bottom:412.040000pt;}
.yb8{bottom:412.336000pt;}
.yce{bottom:420.692000pt;}
.y188{bottom:423.438667pt;}
.y107{bottom:424.706667pt;}
.y4d{bottom:424.909333pt;}
.y134{bottom:425.234667pt;}
.yb7{bottom:428.542667pt;}
.y19a{bottom:434.052000pt;}
.y160{bottom:435.965333pt;}
.y7b{bottom:437.189333pt;}
.y187{bottom:437.984000pt;}
.yb6{bottom:439.169333pt;}
.y106{bottom:439.252000pt;}
.y4c{bottom:439.454667pt;}
.y133{bottom:439.780000pt;}
.y7a{bottom:441.174667pt;}
.yb5{bottom:449.796000pt;}
.y15f{bottom:450.510667pt;}
.y16{bottom:453.318667pt;}
.ycd{bottom:453.453333pt;}
.y105{bottom:453.798667pt;}
.y4b{bottom:454.000000pt;}
.y132{bottom:454.325333pt;}
.yb4{bottom:460.422667pt;}
.y15e{bottom:465.056000pt;}
.y186{bottom:466.910667pt;}
.y15{bottom:467.864000pt;}
.ycc{bottom:467.998667pt;}
.y104{bottom:468.344000pt;}
.y4a{bottom:468.545333pt;}
.y131{bottom:468.870667pt;}
.y79{bottom:469.865333pt;}
.yb3{bottom:471.049333pt;}
.y15d{bottom:479.601333pt;}
.yb2{bottom:481.676000pt;}
.y14{bottom:482.409333pt;}
.ycb{bottom:482.544000pt;}
.y103{bottom:482.889333pt;}
.y49{bottom:483.090667pt;}
.y78{bottom:491.716000pt;}
.y130{bottom:492.997333pt;}
.y15c{bottom:494.146667pt;}
.yb0{bottom:496.037333pt;}
.y13{bottom:496.954667pt;}
.yca{bottom:497.089333pt;}
.y102{bottom:497.434667pt;}
.y48{bottom:497.636000pt;}
.yb1{bottom:499.290667pt;}
.yaf{bottom:499.573333pt;}
.y185{bottom:505.256000pt;}
.y77{bottom:506.261333pt;}
.y12f{bottom:507.542667pt;}
.y15b{bottom:508.692000pt;}
.y12{bottom:511.501333pt;}
.yc9{bottom:511.634667pt;}
.y101{bottom:511.980000pt;}
.yae{bottom:516.244000pt;}
.y47{bottom:519.488000pt;}
.y184{bottom:519.801333pt;}
.y76{bottom:520.806667pt;}
.y12e{bottom:522.088000pt;}
.y11{bottom:526.046667pt;}
.yc8{bottom:526.180000pt;}
.y100{bottom:526.525333pt;}
.yad{bottom:526.870667pt;}
.y15a{bottom:533.865333pt;}
.y46{bottom:534.033333pt;}
.y12d{bottom:536.634667pt;}
.yac{bottom:537.497333pt;}
.y10{bottom:540.592000pt;}
.yc7{bottom:540.725333pt;}
.yff{bottom:541.070667pt;}
.y75{bottom:542.658667pt;}
.yab{bottom:548.125333pt;}
.y159{bottom:548.410667pt;}
.y45{bottom:548.578667pt;}
.y183{bottom:554.060000pt;}
.yf{bottom:555.137333pt;}
.yc6{bottom:555.270667pt;}
.yfe{bottom:555.616000pt;}
.y74{bottom:557.204000pt;}
.yaa{bottom:558.752000pt;}
.y12c{bottom:560.761333pt;}
.y158{bottom:562.956000pt;}
.y44{bottom:563.124000pt;}
.ye{bottom:569.682667pt;}
.yc5{bottom:569.816000pt;}
.yfd{bottom:570.161333pt;}
.y73{bottom:571.749333pt;}
.ya9{bottom:574.478667pt;}
.y12b{bottom:575.306667pt;}
.y43{bottom:577.669333pt;}
.yd{bottom:584.228000pt;}
.yc4{bottom:584.362667pt;}
.yfc{bottom:584.706667pt;}
.y157{bottom:588.128000pt;}
.ya8{bottom:589.024000pt;}
.y42{bottom:592.214667pt;}
.y182{bottom:597.652000pt;}
.y72{bottom:598.382667pt;}
.yc{bottom:598.773333pt;}
.yc3{bottom:598.908000pt;}
.yfb{bottom:599.252000pt;}
.y12a{bottom:599.433333pt;}
.y156{bottom:602.673333pt;}
.ya7{bottom:603.570667pt;}
.y41{bottom:606.760000pt;}
.y181{bottom:612.197333pt;}
.yb{bottom:613.318667pt;}
.y129{bottom:613.978667pt;}
.y155{bottom:617.218667pt;}
.ya6{bottom:620.758667pt;}
.yfa{bottom:621.104000pt;}
.y40{bottom:621.305333pt;}
.y199{bottom:623.132000pt;}
.y180{bottom:626.742667pt;}
.ya{bottom:627.864000pt;}
.y71{bottom:630.977333pt;}
.y154{bottom:631.764000pt;}
.ya4{bottom:635.304000pt;}
.yf9{bottom:635.649333pt;}
.y198{bottom:636.416000pt;}
.y128{bottom:638.105333pt;}
.ya5{bottom:638.662667pt;}
.y17f{bottom:641.288000pt;}
.y3f{bottom:643.157333pt;}
.y70{bottom:645.522667pt;}
.y153{bottom:646.309333pt;}
.yf7{bottom:650.194667pt;}
.ya3{bottom:652.090667pt;}
.y127{bottom:652.650667pt;}
.yf8{bottom:653.552000pt;}
.y17e{bottom:655.833333pt;}
.y3e{bottom:657.702667pt;}
.y9{bottom:658.077333pt;}
.y6f{bottom:660.068000pt;}
.y1ae{bottom:665.565333pt;}
.yf6{bottom:666.981333pt;}
.y126{bottom:667.196000pt;}
.ya1{bottom:668.018667pt;}
.ya0{bottom:669.776000pt;}
.ya2{bottom:671.272000pt;}
.y152{bottom:671.482667pt;}
.y6e{bottom:674.614667pt;}
.y17d{bottom:677.685333pt;}
.y3d{bottom:679.554667pt;}
.y1ad{bottom:680.110667pt;}
.yf5{bottom:681.526667pt;}
.y9f{bottom:684.321333pt;}
.y151{bottom:686.028000pt;}
.y6d{bottom:689.160000pt;}
.y125{bottom:691.322667pt;}
.y17c{bottom:692.230667pt;}
.y3c{bottom:694.100000pt;}
.y1ac{bottom:694.656000pt;}
.yf4{bottom:696.072000pt;}
.y9e{bottom:698.866667pt;}
.y150{bottom:700.573333pt;}
.y6c{bottom:703.705333pt;}
.y124{bottom:705.868000pt;}
.y17b{bottom:706.776000pt;}
.y3b{bottom:708.645333pt;}
.y1ab{bottom:709.201333pt;}
.yf3{bottom:710.617333pt;}
.y8{bottom:712.986667pt;}
.y9d{bottom:713.412000pt;}
.y14f{bottom:715.118667pt;}
.y6b{bottom:718.250667pt;}
.y3a{bottom:725.829333pt;}
.y7{bottom:727.532000pt;}
.y9c{bottom:727.957333pt;}
.y17a{bottom:728.628000pt;}
.y14e{bottom:729.664000pt;}
.y123{bottom:729.994667pt;}
.y1aa{bottom:730.686667pt;}
.yf2{bottom:732.469333pt;}
.y6a{bottom:740.101333pt;}
.y39{bottom:740.374667pt;}
.y6{bottom:742.077333pt;}
.y9b{bottom:742.502667pt;}
.y179{bottom:743.173333pt;}
.y122{bottom:744.541333pt;}
.yf1{bottom:747.014667pt;}
.y1a9{bottom:751.906667pt;}
.y14d{bottom:754.836000pt;}
.y99{bottom:757.048000pt;}
.y38{bottom:757.558667pt;}
.y178{bottom:757.718667pt;}
.y121{bottom:759.086667pt;}
.y9a{bottom:760.405333pt;}
.yf0{bottom:761.560000pt;}
.y69{bottom:763.856000pt;}
.y14c{bottom:769.381333pt;}
.y1a8{bottom:771.022667pt;}
.y120{bottom:773.632000pt;}
.y97{bottom:774.280000pt;}
.yef{bottom:776.105333pt;}
.y98{bottom:777.637333pt;}
.y68{bottom:778.401333pt;}
.y37{bottom:779.410667pt;}
.y177{bottom:779.569333pt;}
.y5{bottom:779.649333pt;}
.y14b{bottom:783.926667pt;}
.y1a7{bottom:784.305333pt;}
.yee{bottom:790.650667pt;}
.y67{bottom:792.349333pt;}
.y36{bottom:793.956000pt;}
.y176{bottom:794.116000pt;}
.y4{bottom:794.196000pt;}
.y11f{bottom:797.758667pt;}
.y14a{bottom:798.472000pt;}
.y65{bottom:800.733333pt;}
.y66{bottom:801.329333pt;}
.y96{bottom:803.548000pt;}
.yed{bottom:805.196000pt;}
.y64{bottom:805.313333pt;}
.y35{bottom:808.501333pt;}
.y175{bottom:808.661333pt;}
.y3{bottom:808.741333pt;}
.y11e{bottom:812.304000pt;}
.yec{bottom:819.741333pt;}
.y34{bottom:823.046667pt;}
.y174{bottom:823.206667pt;}
.y149{bottom:823.645333pt;}
.y62{bottom:823.802667pt;}
.y63{bottom:824.397333pt;}
.y11d{bottom:826.849333pt;}
.y61{bottom:828.382667pt;}
.yeb{bottom:834.286667pt;}
.y33{bottom:837.592000pt;}
.y148{bottom:838.190667pt;}
.y173{bottom:845.057333pt;}
.yea{bottom:848.833333pt;}
.y11c{bottom:849.890667pt;}
.y32{bottom:852.137333pt;}
.y147{bottom:852.736000pt;}
.y172{bottom:859.602667pt;}
.y31{bottom:866.682667pt;}
.y171{bottom:874.148000pt;}
.ye9{bottom:875.136000pt;}
.y146{bottom:877.908000pt;}
.y2{bottom:878.704000pt;}
.y60{bottom:881.229333pt;}
.y11b{bottom:887.278667pt;}
.y30{bottom:888.534667pt;}
.y145{bottom:892.453333pt;}
.y95{bottom:895.774667pt;}
.y11a{bottom:901.824000pt;}
.y2f{bottom:903.080000pt;}
.y1{bottom:905.270667pt;}
.y170{bottom:908.406667pt;}
.ye8{bottom:910.320000pt;}
.y119{bottom:916.369333pt;}
.y2e{bottom:917.625333pt;}
.y2d{bottom:932.170667pt;}
.y2c{bottom:946.716000pt;}
.ye7{bottom:954.598667pt;}
.h10{height:13.383037pt;}
.h1d{height:17.720145pt;}
.h16{height:21.933807pt;}
.h1b{height:24.069642pt;}
.h15{height:25.589197pt;}
.h27{height:25.812358pt;}
.h23{height:25.849552pt;}
.h20{height:26.519037pt;}
.h35{height:26.577016pt;}
.h34{height:26.808792pt;}
.h29{height:27.447200pt;}
.h1f{height:27.895200pt;}
.h33{height:28.972038pt;}
.h26{height:30.882916pt;}
.h7{height:32.900710pt;}
.h32{height:33.187635pt;}
.h1e{height:33.866400pt;}
.h17{height:34.239693pt;}
.h18{height:35.865600pt;}
.h8{height:36.290431pt;}
.h3{height:36.556100pt;}
.h2{height:36.874903pt;}
.h4{height:36.928037pt;}
.h38{height:37.084100pt;}
.h28{height:37.297867pt;}
.h2c{height:38.680021pt;}
.h30{height:38.685355pt;}
.h6{height:39.850400pt;}
.h31{height:39.852533pt;}
.h24{height:42.787820pt;}
.h5{height:44.250180pt;}
.h9{height:44.874530pt;}
.h19{height:47.175200pt;}
.h25{height:47.357478pt;}
.h1c{height:47.436370pt;}
.ha{height:48.817867pt;}
.h37{height:48.921467pt;}
.h2f{height:51.282811pt;}
.h13{height:53.233703pt;}
.h1a{height:53.279733pt;}
.h21{height:53.945153pt;}
.h22{height:55.075820pt;}
.hf{height:55.786400pt;}
.hd{height:55.791733pt;}
.h2e{height:58.175733pt;}
.h11{height:61.106688pt;}
.h2d{height:63.383037pt;}
.h1{height:63.719934pt;}
.h2b{height:64.759200pt;}
.h36{height:69.107785pt;}
.hc{height:69.175037pt;}
.h14{height:69.221067pt;}
.hb{height:71.553703pt;}
.he{height:71.559037pt;}
.h2a{height:75.863200pt;}
.h12{height:77.048021pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:144.000000pt;}
.x23{left:148.410667pt;}
.xa6{left:149.742667pt;}
.xd5{left:150.641333pt;}
.xef{left:152.546667pt;}
.xab{left:154.310667pt;}
.xaa{left:156.452000pt;}
.x1{left:159.422667pt;}
.x24{left:161.693333pt;}
.x64{left:165.520000pt;}
.xd7{left:171.776000pt;}
.xd6{left:172.772000pt;}
.xbf{left:176.758667pt;}
.xb2{left:178.414667pt;}
.x5e{left:180.156000pt;}
.xac{left:181.717333pt;}
.x5d{left:183.661333pt;}
.xa2{left:184.864000pt;}
.xe2{left:186.376000pt;}
.xc3{left:188.468000pt;}
.xa5{left:190.262667pt;}
.xf{left:191.821333pt;}
.xdc{left:194.914667pt;}
.xad{left:196.352000pt;}
.x2{left:198.329333pt;}
.x59{left:199.956000pt;}
.x5{left:202.792000pt;}
.x8b{left:204.366667pt;}
.xc6{left:205.288000pt;}
.x6e{left:208.904000pt;}
.x4{left:213.132000pt;}
.xe9{left:214.184000pt;}
.xaf{left:215.604000pt;}
.xee{left:216.717333pt;}
.x17{left:218.682667pt;}
.xb4{left:220.704000pt;}
.x65{left:221.618667pt;}
.xb{left:222.612000pt;}
.x6f{left:224.393333pt;}
.x18{left:225.325333pt;}
.x50{left:227.416000pt;}
.xf1{left:228.678667pt;}
.xb0{left:230.398667pt;}
.x66{left:232.489333pt;}
.x44{left:234.729333pt;}
.x43{left:237.450667pt;}
.x73{left:239.741333pt;}
.xe6{left:241.229333pt;}
.x9{left:245.537333pt;}
.xa{left:250.300000pt;}
.xe0{left:251.788000pt;}
.x3{left:254.696000pt;}
.xe3{left:256.005333pt;}
.xa0{left:259.760000pt;}
.x3c{left:260.880000pt;}
.x5c{left:263.113333pt;}
.xf0{left:264.850667pt;}
.x100{left:269.958667pt;}
.xa3{left:271.018667pt;}
.x45{left:273.152000pt;}
.x67{left:275.001333pt;}
.xf9{left:280.493333pt;}
.xa8{left:281.536000pt;}
.xa4{left:282.681333pt;}
.xb3{left:285.346667pt;}
.xe4{left:287.486667pt;}
.xb5{left:288.929333pt;}
.xc4{left:290.429333pt;}
.x46{left:296.114667pt;}
.xa9{left:297.964000pt;}
.xdb{left:298.985333pt;}
.x74{left:301.481333pt;}
.x51{left:302.901333pt;}
.xd2{left:305.793430pt;}
.xfc{left:308.465333pt;}
.xed{left:310.072000pt;}
.x19{left:312.242667pt;}
.x6d{left:314.276000pt;}
.xdd{left:315.898667pt;}
.x68{left:316.878667pt;}
.xb6{left:321.486667pt;}
.xa1{left:322.513333pt;}
.xf7{left:324.352000pt;}
.x1a{left:325.526667pt;}
.x6b{left:328.564000pt;}
.x34{left:329.952000pt;}
.x40{left:331.205333pt;}
.x52{left:333.682667pt;}
.x47{left:334.693333pt;}
.xc5{left:336.922667pt;}
.xea{left:338.218667pt;}
.x86{left:339.366667pt;}
.x9f{left:341.210667pt;}
.x6c{left:342.502667pt;}
.x88{left:343.529333pt;}
.x78{left:345.126667pt;}
.x87{left:347.493333pt;}
.xfa{left:350.189333pt;}
.x69{left:352.460000pt;}
.xa7{left:353.716000pt;}
.x70{left:356.089333pt;}
.x7a{left:357.672000pt;}
.x8d{left:358.678667pt;}
.x42{left:359.989333pt;}
.x3d{left:361.584000pt;}
.x71{left:362.732000pt;}
.x7c{left:364.228000pt;}
.x79{left:366.512000pt;}
.x35{left:368.297333pt;}
.x91{left:370.945333pt;}
.xf5{left:372.144000pt;}
.xba{left:374.088000pt;}
.x41{left:376.225333pt;}
.xfd{left:377.450667pt;}
.xe{left:378.344000pt;}
.x8c{left:381.700000pt;}
.xec{left:382.913333pt;}
.x10{left:384.200000pt;}
.x92{left:385.624000pt;}
.x3e{left:387.117333pt;}
.xcd{left:388.249333pt;}
.x75{left:390.197333pt;}
.x94{left:391.561333pt;}
.x9a{left:392.490667pt;}
.xcf{left:393.725333pt;}
.xfe{left:395.909333pt;}
.x95{left:401.524000pt;}
.x36{left:404.678667pt;}
.x89{left:406.853333pt;}
.x96{left:408.165333pt;}
.xf2{left:409.141333pt;}
.xce{left:410.744000pt;}
.x81{left:412.240000pt;}
.x4b{left:413.509333pt;}
.x11{left:414.828000pt;}
.x7d{left:417.124000pt;}
.x3f{left:421.478667pt;}
.x82{left:423.904000pt;}
.x4c{left:426.792000pt;}
.x8a{left:428.333333pt;}
.xda{left:430.357333pt;}
.x61{left:431.425333pt;}
.xd{left:433.696000pt;}
.x5f{left:437.037333pt;}
.xd9{left:438.449333pt;}
.x2a{left:440.320000pt;}
.x99{left:441.942667pt;}
.x7{left:443.857333pt;}
.x8{left:444.866667pt;}
.xd0{left:446.298667pt;}
.x1b{left:451.396000pt;}
.x2b{left:453.604000pt;}
.xf4{left:456.757333pt;}
.xf3{left:457.697333pt;}
.xe7{left:459.162667pt;}
.x6{left:461.338667pt;}
.xc{left:463.350667pt;}
.x1c{left:464.678667pt;}
.xb9{left:466.720000pt;}
.xd8{left:467.716000pt;}
.x9b{left:469.222667pt;}
.x39{left:471.882667pt;}
.xb1{left:474.142667pt;}
.x60{left:475.752000pt;}
.xd1{left:476.838667pt;}
.xf6{left:479.073333pt;}
.x7e{left:480.744000pt;}
.xe5{left:482.137333pt;}
.x2f{left:483.144000pt;}
.x3a{left:486.401333pt;}
.xff{left:488.145333pt;}
.x72{left:491.061333pt;}
.xeb{left:492.885333pt;}
.x1d{left:494.512000pt;}
.x30{left:496.428000pt;}
.xbb{left:499.114667pt;}
.x8f{left:500.305333pt;}
.xbe{left:504.634667pt;}
.x90{left:506.053333pt;}
.x1e{left:507.796000pt;}
.x5a{left:509.540000pt;}
.x2c{left:510.582667pt;}
.x58{left:511.994667pt;}
.xb7{left:515.292000pt;}
.x2d{left:517.224000pt;}
.xc2{left:520.361333pt;}
.x3b{left:521.582667pt;}
.x7f{left:522.981333pt;}
.x98{left:525.565333pt;}
.x97{left:527.093333pt;}
.x31{left:529.854667pt;}
.x9c{left:533.225333pt;}
.x93{left:534.153333pt;}
.x25{left:535.454667pt;}
.x4d{left:537.781333pt;}
.x76{left:539.044000pt;}
.xc0{left:541.166667pt;}
.xf8{left:542.486667pt;}
.xd3{left:545.440000pt;}
.x26{left:548.737333pt;}
.x4e{left:550.709333pt;}
.x80{left:551.622667pt;}
.xe1{left:553.338667pt;}
.x13{left:554.292000pt;}
.xb8{left:558.846667pt;}
.x14{left:560.933333pt;}
.xbc{left:563.008000pt;}
.x5b{left:567.025333pt;}
.x56{left:569.868000pt;}
.x83{left:571.734667pt;}
.x53{left:573.348000pt;}
.xde{left:574.444000pt;}
.x6a{left:576.169333pt;}
.xcb{left:579.038667pt;}
.x9e{left:581.129333pt;}
.x57{left:583.152000pt;}
.xc7{left:584.993333pt;}
.xdf{left:587.726667pt;}
.x1f{left:590.188000pt;}
.xc9{left:591.678667pt;}
.x37{left:593.434667pt;}
.xc8{left:595.184000pt;}
.x20{left:596.830667pt;}
.x54{left:598.044000pt;}
.xe8{left:598.977333pt;}
.xc1{left:601.206667pt;}
.x21{left:603.529333pt;}
.x22{left:610.170667pt;}
.xbd{left:612.086667pt;}
.x38{left:614.560000pt;}
.x2e{left:616.260000pt;}
.xd4{left:617.617333pt;}
.x48{left:618.993333pt;}
.xca{left:620.089333pt;}
.x49{left:623.789333pt;}
.x32{left:625.145333pt;}
.x4a{left:628.436000pt;}
.x8e{left:630.605333pt;}
.x27{left:633.314667pt;}
.xcc{left:635.242667pt;}
.x63{left:638.373333pt;}
.xfb{left:640.416000pt;}
.x62{left:641.878667pt;}
.xae{left:642.892000pt;}
.x77{left:645.106667pt;}
.x28{left:646.597333pt;}
.x55{left:649.134667pt;}
.x9d{left:650.313333pt;}
.x84{left:652.150667pt;}
.x29{left:653.265333pt;}
.x7b{left:655.452000pt;}
.x85{left:656.946667pt;}
.x15{left:659.429333pt;}
.x33{left:661.458667pt;}
.x16{left:666.070667pt;}
.x4f{left:670.900000pt;}
}




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