
    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_b06090ee16c89061f955fcf5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5c1ac71ee1da253513e6d6f0.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_8eafe03ce6f5e590bc3547eb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad1621a55f2b069095dbebad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.580000;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_a143b4c7dae75cc939c87243.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893000;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_958fae2d741309bf27ef2724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.555000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245003,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m16{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);}
.m3a{transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246007,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.mb{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);}
.m40{transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m6{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);}
.m3e{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m3c{transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247491,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m31{transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247752,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m7{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);}
.m2d{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m38{transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248996,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m36{transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249258,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.mf{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);}
.m33{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,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);}
.m44{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.me{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);}
.m45{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m23{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);}
.m43{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.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);}
.m17{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m22{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);}
.m2a{transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252509,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m37{transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252989,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m2e{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253491,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m1d{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);}
.m42{transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253993,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m30{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254495,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m26{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);}
.m2b{transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254757,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m41{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1f{letter-spacing:-102.356838px;}
.ls1b{letter-spacing:-85.858758px;}
.ls1d{letter-spacing:-62.211510px;}
.ls1e{letter-spacing:-61.455348px;}
.ls1c{letter-spacing:-57.468312px;}
.ls9{letter-spacing:-15.741918px;}
.ls6{letter-spacing:-14.985756px;}
.lsd{letter-spacing:-7.905330px;}
.ls8{letter-spacing:-0.824904px;}
.ls7{letter-spacing:-0.756162px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000432px;}
.ls15{letter-spacing:0.003000px;}
.ls1a{letter-spacing:1.439210px;}
.ls12{letter-spacing:2.542722px;}
.ls0{letter-spacing:2.988780px;}
.lsc{letter-spacing:5.770638px;}
.ls11{letter-spacing:16.908219px;}
.ls16{letter-spacing:16.979328px;}
.ls18{letter-spacing:17.047632px;}
.ls14{letter-spacing:17.182500px;}
.lse{letter-spacing:17.185500px;}
.ls13{letter-spacing:17.188500px;}
.lsf{letter-spacing:17.254242px;}
.ls17{letter-spacing:17.257431px;}
.ls10{letter-spacing:17.391726px;}
.ls19{letter-spacing:17.391969px;}
.ls4{letter-spacing:207.120000px;}
.lsa{letter-spacing:320.407362px;}
.ls2{letter-spacing:957.795000px;}
.ls5{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws48{word-spacing:-17.185500px;}
.ws13{word-spacing:-14.943900px;}
.ws153{word-spacing:-3.780810px;}
.wse9{word-spacing:-3.642812px;}
.ws1f{word-spacing:-3.574584px;}
.ws94{word-spacing:-3.437100px;}
.ws39{word-spacing:-3.368358px;}
.wse0{word-spacing:-3.303730px;}
.ws90{word-spacing:-3.299616px;}
.ws154{word-spacing:-3.162132px;}
.ws9c{word-spacing:-3.093390px;}
.ws1a{word-spacing:-3.024648px;}
.ws12{word-spacing:-2.988780px;}
.ws36{word-spacing:-2.955906px;}
.ws8a{word-spacing:-2.887164px;}
.ws128{word-spacing:-2.755313px;}
.ws52{word-spacing:-2.749680px;}
.ws88{word-spacing:-2.612196px;}
.wsc6{word-spacing:-2.548327px;}
.wsa0{word-spacing:-2.543454px;}
.ws31{word-spacing:-2.405970px;}
.ws12a{word-spacing:-1.993518px;}
.ws6a{word-spacing:-1.924776px;}
.ws147{word-spacing:-1.856034px;}
.ws130{word-spacing:-1.787292px;}
.wsbb{word-spacing:-1.655416px;}
.ws129{word-spacing:-1.613952px;}
.ws13f{word-spacing:-1.581066px;}
.ws10{word-spacing:-1.494390px;}
.ws92{word-spacing:-1.443582px;}
.ws84{word-spacing:-1.374840px;}
.ws55{word-spacing:-1.306098px;}
.wsad{word-spacing:-1.243331px;}
.ws187{word-spacing:-1.238605px;}
.ws29{word-spacing:-1.237356px;}
.ws177{word-spacing:-1.175520px;}
.ws47{word-spacing:-1.168614px;}
.ws67{word-spacing:-1.099872px;}
.ws97{word-spacing:-0.962388px;}
.ws30{word-spacing:-0.893646px;}
.ws109{word-spacing:-0.831737px;}
.wsfa{word-spacing:-0.830463px;}
.ws57{word-spacing:-0.824904px;}
.ws118{word-spacing:-0.760815px;}
.ws32{word-spacing:-0.756162px;}
.ws62{word-spacing:-0.687420px;}
.ws7c{word-spacing:-0.618678px;}
.ws115{word-spacing:-0.553365px;}
.ws179{word-spacing:-0.551014px;}
.ws45{word-spacing:-0.549936px;}
.wsac{word-spacing:-0.489290px;}
.ws74{word-spacing:-0.481194px;}
.ws11f{word-spacing:-0.422609px;}
.ws15{word-spacing:-0.412452px;}
.wscc{word-spacing:-0.353720px;}
.wsb8{word-spacing:-0.350672px;}
.wsba{word-spacing:-0.348076px;}
.ws172{word-spacing:-0.344840px;}
.ws167{word-spacing:-0.344629px;}
.ws3f{word-spacing:-0.343710px;}
.wse6{word-spacing:-0.343256px;}
.ws170{word-spacing:-0.343053px;}
.ws166{word-spacing:-0.340875px;}
.wsbe{word-spacing:-0.331094px;}
.wsb0{word-spacing:-0.281554px;}
.ws15e{word-spacing:-0.278649px;}
.ws16d{word-spacing:-0.276877px;}
.ws19{word-spacing:-0.274968px;}
.ws16b{word-spacing:-0.271956px;}
.ws163{word-spacing:-0.271897px;}
.ws16a{word-spacing:-0.270948px;}
.ws16f{word-spacing:-0.270165px;}
.wse4{word-spacing:-0.266644px;}
.wsab{word-spacing:-0.221956px;}
.wsc9{word-spacing:-0.210206px;}
.ws17c{word-spacing:-0.209160px;}
.ws111{word-spacing:-0.209069px;}
.ws34{word-spacing:-0.206226px;}
.wsb{word-spacing:-0.179327px;}
.wsf6{word-spacing:-0.154355px;}
.ws110{word-spacing:-0.140576px;}
.wsaf{word-spacing:-0.139569px;}
.ws1d{word-spacing:-0.137484px;}
.wsdc{word-spacing:-0.136057px;}
.ws186{word-spacing:-0.125879px;}
.ws9{word-spacing:-0.119551px;}
.wse2{word-spacing:-0.081117px;}
.wsc7{word-spacing:-0.079360px;}
.ws173{word-spacing:-0.079291px;}
.wsb1{word-spacing:-0.071083px;}
.wsdd{word-spacing:-0.069693px;}
.ws17{word-spacing:-0.068742px;}
.ws119{word-spacing:-0.068405px;}
.wsf{word-spacing:-0.059776px;}
.ws11e{word-spacing:-0.058351px;}
.ws1{word-spacing:-0.047821px;}
.wsc3{word-spacing:-0.015159px;}
.ws11c{word-spacing:-0.005052px;}
.wscd{word-spacing:-0.004440px;}
.wsb4{word-spacing:-0.003552px;}
.wse5{word-spacing:-0.003337px;}
.ws169{word-spacing:-0.003000px;}
.wsa7{word-spacing:-0.002862px;}
.ws182{word-spacing:-0.002635px;}
.ws101{word-spacing:-0.002568px;}
.wsd6{word-spacing:-0.002310px;}
.ws162{word-spacing:-0.002172px;}
.wsce{word-spacing:-0.002034px;}
.wsb5{word-spacing:-0.001776px;}
.wsfd{word-spacing:-0.001494px;}
.wsfe{word-spacing:-0.001482px;}
.ws106{word-spacing:-0.001224px;}
.wsec{word-spacing:-0.001206px;}
.ws107{word-spacing:-0.000672px;}
.ws3{word-spacing:0.000000px;}
.ws103{word-spacing:0.000948px;}
.wsfb{word-spacing:0.000966px;}
.ws11a{word-spacing:0.001051px;}
.wsd4{word-spacing:0.001500px;}
.ws10a{word-spacing:0.001794px;}
.ws10b{word-spacing:0.003150px;}
.ws17d{word-spacing:0.007437px;}
.wse3{word-spacing:0.057362px;}
.wsc{word-spacing:0.059776px;}
.wsbc{word-spacing:0.064286px;}
.wsae{word-spacing:0.064639px;}
.ws16{word-spacing:0.068742px;}
.ws17f{word-spacing:0.072026px;}
.wse8{word-spacing:0.072847px;}
.ws180{word-spacing:0.076990px;}
.wsa{word-spacing:0.119551px;}
.ws11b{word-spacing:0.126067px;}
.ws160{word-spacing:0.130741px;}
.ws18a{word-spacing:0.133598px;}
.wse1{word-spacing:0.135159px;}
.ws188{word-spacing:0.135660px;}
.ws1e{word-spacing:0.137484px;}
.ws5{word-spacing:0.179327px;}
.ws37{word-spacing:0.206226px;}
.wsea{word-spacing:0.206979px;}
.wsfc{word-spacing:0.212832px;}
.ws127{word-spacing:0.273971px;}
.ws21{word-spacing:0.274968px;}
.wsc2{word-spacing:0.276709px;}
.ws11{word-spacing:0.298878px;}
.wse7{word-spacing:0.332393px;}
.wsb7{word-spacing:0.340451px;}
.ws28{word-spacing:0.343710px;}
.ws4f{word-spacing:0.412452px;}
.ws183{word-spacing:0.412499px;}
.ws2{word-spacing:0.413170px;}
.ws8d{word-spacing:0.481194px;}
.ws116{word-spacing:0.483818px;}
.ws135{word-spacing:0.549936px;}
.ws82{word-spacing:0.618678px;}
.ws85{word-spacing:0.687420px;}
.ws3d{word-spacing:0.756162px;}
.ws6{word-spacing:0.777083px;}
.ws26{word-spacing:0.824904px;}
.ws23{word-spacing:0.893646px;}
.ws53{word-spacing:0.962388px;}
.wscb{word-spacing:1.027212px;}
.ws5a{word-spacing:1.031130px;}
.ws10e{word-spacing:1.039248px;}
.ws59{word-spacing:1.099872px;}
.wsf9{word-spacing:1.101966px;}
.wsb9{word-spacing:1.165759px;}
.ws8f{word-spacing:1.168614px;}
.ws164{word-spacing:1.217655px;}
.ws41{word-spacing:1.237356px;}
.wsbf{word-spacing:1.305404px;}
.ws5b{word-spacing:1.306098px;}
.wsc0{word-spacing:1.371099px;}
.ws12b{word-spacing:1.374840px;}
.ws9a{word-spacing:1.443582px;}
.ws20{word-spacing:1.512324px;}
.ws95{word-spacing:1.581066px;}
.ws78{word-spacing:1.649808px;}
.ws72{word-spacing:1.718550px;}
.ws86{word-spacing:1.787292px;}
.wsd{word-spacing:1.793268px;}
.ws7f{word-spacing:1.856034px;}
.ws4e{word-spacing:1.924776px;}
.ws4b{word-spacing:1.993518px;}
.ws25{word-spacing:2.062260px;}
.ws137{word-spacing:2.131002px;}
.wsf5{word-spacing:2.132943px;}
.ws7{word-spacing:2.151922px;}
.ws145{word-spacing:2.199744px;}
.ws80{word-spacing:2.268486px;}
.ws87{word-spacing:2.337228px;}
.wsb2{word-spacing:2.341310px;}
.ws24{word-spacing:2.405970px;}
.ws68{word-spacing:2.474712px;}
.wsca{word-spacing:2.540713px;}
.ws13d{word-spacing:2.543454px;}
.ws4d{word-spacing:2.680938px;}
.ws8{word-spacing:2.689902px;}
.wsa8{word-spacing:2.747456px;}
.ws58{word-spacing:2.749680px;}
.ws146{word-spacing:2.818422px;}
.ws2b{word-spacing:2.887164px;}
.wsa9{word-spacing:2.887776px;}
.ws157{word-spacing:2.955906px;}
.ws79{word-spacing:3.024648px;}
.ws18{word-spacing:3.162132px;}
.ws148{word-spacing:3.230874px;}
.ws3a{word-spacing:3.299616px;}
.ws144{word-spacing:3.368358px;}
.ws27{word-spacing:3.437100px;}
.ws89{word-spacing:3.505842px;}
.wsf3{word-spacing:3.507136px;}
.ws13c{word-spacing:3.574584px;}
.ws138{word-spacing:3.849552px;}
.ws4{word-spacing:3.885414px;}
.ws51{word-spacing:3.918294px;}
.ws13e{word-spacing:3.987036px;}
.ws132{word-spacing:4.055778px;}
.ws4c{word-spacing:4.193262px;}
.wsaa{word-spacing:4.260098px;}
.ws14c{word-spacing:4.262004px;}
.wsb3{word-spacing:4.264263px;}
.wsf7{word-spacing:4.463536px;}
.ws22{word-spacing:4.468230px;}
.wsc5{word-spacing:4.470148px;}
.ws1b{word-spacing:4.605714px;}
.ws7a{word-spacing:4.674456px;}
.ws1c{word-spacing:4.743198px;}
.ws125{word-spacing:4.744904px;}
.ws76{word-spacing:4.811940px;}
.ws44{word-spacing:4.880682px;}
.wsc1{word-spacing:4.946624px;}
.ws8c{word-spacing:4.949424px;}
.ws49{word-spacing:5.018166px;}
.wsdf{word-spacing:5.086214px;}
.ws12f{word-spacing:5.086908px;}
.ws117{word-spacing:5.088790px;}
.ws75{word-spacing:5.155650px;}
.wsee{word-spacing:5.155944px;}
.ws3c{word-spacing:5.224392px;}
.ws5f{word-spacing:5.293134px;}
.wsc4{word-spacing:5.294546px;}
.ws5c{word-spacing:5.361876px;}
.ws113{word-spacing:5.364429px;}
.ws3b{word-spacing:5.430618px;}
.ws93{word-spacing:5.499360px;}
.ws5e{word-spacing:5.568102px;}
.ws105{word-spacing:5.570290px;}
.wse{word-spacing:5.618906px;}
.ws71{word-spacing:5.705586px;}
.wsed{word-spacing:5.707774px;}
.ws35{word-spacing:5.911812px;}
.ws70{word-spacing:5.980554px;}
.wsbd{word-spacing:6.049214px;}
.wseb{word-spacing:6.049249px;}
.ws3e{word-spacing:6.049296px;}
.wsd0{word-spacing:6.051790px;}
.ws73{word-spacing:6.118038px;}
.wsc8{word-spacing:6.122379px;}
.ws83{word-spacing:6.186780px;}
.ws9b{word-spacing:6.324264px;}
.ws15f{word-spacing:6.324335px;}
.ws2d{word-spacing:6.393006px;}
.ws6b{word-spacing:6.461748px;}
.wsf1{word-spacing:6.529855px;}
.ws96{word-spacing:6.530490px;}
.ws81{word-spacing:6.736716px;}
.ws98{word-spacing:6.805458px;}
.ws124{word-spacing:6.807787px;}
.ws69{word-spacing:6.874200px;}
.ws15b{word-spacing:6.942942px;}
.wsa6{word-spacing:7.011684px;}
.ws18b{word-spacing:7.075332px;}
.ws133{word-spacing:7.080426px;}
.wsf8{word-spacing:7.083661px;}
.ws134{word-spacing:7.217910px;}
.ws40{word-spacing:7.286652px;}
.ws2c{word-spacing:7.355394px;}
.ws159{word-spacing:7.424136px;}
.ws18d{word-spacing:7.559052px;}
.ws66{word-spacing:7.561620px;}
.ws43{word-spacing:7.630362px;}
.ws77{word-spacing:7.699104px;}
.ws6c{word-spacing:7.836588px;}
.ws4a{word-spacing:7.905330px;}
.ws13b{word-spacing:7.974072px;}
.ws176{word-spacing:8.040049px;}
.ws2a{word-spacing:8.042814px;}
.ws18c{word-spacing:8.063165px;}
.ws65{word-spacing:8.180298px;}
.wsa4{word-spacing:8.317782px;}
.ws7d{word-spacing:8.386524px;}
.ws143{word-spacing:8.455266px;}
.ws136{word-spacing:8.524008px;}
.ws9d{word-spacing:8.661492px;}
.wsde{word-spacing:8.729058px;}
.ws2e{word-spacing:8.730234px;}
.ws38{word-spacing:8.867718px;}
.ws46{word-spacing:8.936460px;}
.ws149{word-spacing:9.005202px;}
.ws64{word-spacing:9.073944px;}
.ws114{word-spacing:9.080250px;}
.ws2f{word-spacing:9.211428px;}
.ws42{word-spacing:9.280170px;}
.ws91{word-spacing:9.348912px;}
.ws54{word-spacing:9.623880px;}
.wsa2{word-spacing:9.692622px;}
.ws99{word-spacing:9.761364px;}
.ws5d{word-spacing:9.898848px;}
.wsf0{word-spacing:9.901083px;}
.wsf4{word-spacing:10.177828px;}
.wsa5{word-spacing:10.517526px;}
.ws9e{word-spacing:10.586268px;}
.ws123{word-spacing:10.588597px;}
.ws12c{word-spacing:10.723752px;}
.ws150{word-spacing:10.792494px;}
.ws14d{word-spacing:10.861236px;}
.wsa1{word-spacing:11.411172px;}
.ws151{word-spacing:11.617398px;}
.ws155{word-spacing:11.754882px;}
.ws6f{word-spacing:11.823624px;}
.ws142{word-spacing:11.892366px;}
.ws156{word-spacing:12.167334px;}
.ws33{word-spacing:12.442302px;}
.ws63{word-spacing:12.579786px;}
.ws141{word-spacing:12.648528px;}
.ws6e{word-spacing:12.992238px;}
.ws10f{word-spacing:12.993779px;}
.ws8b{word-spacing:13.060980px;}
.wsa3{word-spacing:13.198464px;}
.ws60{word-spacing:13.404690px;}
.ws120{word-spacing:13.679187px;}
.ws14e{word-spacing:13.748400px;}
.wsd2{word-spacing:13.753600px;}
.ws56{word-spacing:14.229594px;}
.ws158{word-spacing:14.298336px;}
.ws9f{word-spacing:14.573304px;}
.ws152{word-spacing:15.604434px;}
.ws112{word-spacing:15.608916px;}
.ws178{word-spacing:15.945034px;}
.ws126{word-spacing:16.015027px;}
.ws61{word-spacing:16.429338px;}
.ws17a{word-spacing:16.564789px;}
.ws6d{word-spacing:16.566822px;}
.ws7b{word-spacing:16.773048px;}
.ws15d{word-spacing:16.839477px;}
.ws12e{word-spacing:16.841790px;}
.wsda{word-spacing:16.879206px;}
.ws0{word-spacing:16.880672px;}
.ws17b{word-spacing:16.906104px;}
.ws14f{word-spacing:16.910532px;}
.ws14b{word-spacing:16.979274px;}
.ws174{word-spacing:17.036275px;}
.ws185{word-spacing:17.062498px;}
.ws168{word-spacing:17.111982px;}
.ws131{word-spacing:17.116758px;}
.ws175{word-spacing:17.119620px;}
.ws11d{word-spacing:17.127257px;}
.ws140{word-spacing:17.185500px;}
.ws181{word-spacing:17.188689px;}
.ws189{word-spacing:17.244283px;}
.ws161{word-spacing:17.247251px;}
.ws12d{word-spacing:17.254242px;}
.ws15c{word-spacing:17.322984px;}
.ws15a{word-spacing:17.391726px;}
.wsb6{word-spacing:17.467991px;}
.ws184{word-spacing:17.533187px;}
.ws139{word-spacing:17.804178px;}
.ws7e{word-spacing:18.010404px;}
.ws10d{word-spacing:18.079393px;}
.ws13a{word-spacing:18.491598px;}
.wsf2{word-spacing:19.374425px;}
.wsdb{word-spacing:20.896215px;}
.ws50{word-spacing:21.035052px;}
.wsef{word-spacing:24.127324px;}
.ws121{word-spacing:29.542676px;}
.ws122{word-spacing:31.763863px;}
.ws8e{word-spacing:47.913174px;}
.wsd5{word-spacing:49.224472px;}
.wsff{word-spacing:53.279791px;}
.ws102{word-spacing:55.132272px;}
.ws14{word-spacing:58.281300px;}
.ws10c{word-spacing:63.930828px;}
.wscf{word-spacing:65.306429px;}
.wsd1{word-spacing:86.821500px;}
.ws16c{word-spacing:92.760455px;}
.ws171{word-spacing:100.335823px;}
.ws16e{word-spacing:101.813776px;}
.ws100{word-spacing:103.935000px;}
.wsd3{word-spacing:110.880740px;}
.wsd8{word-spacing:136.387224px;}
.ws104{word-spacing:138.306000px;}
.ws108{word-spacing:138.330000px;}
.ws165{word-spacing:147.025390px;}
.ws17e{word-spacing:178.619213px;}
.wsd7{word-spacing:188.833500px;}
.wsd9{word-spacing:291.946500px;}
.ws14a{word-spacing:926.002500px;}
._23{margin-left:-8.195290px;}
._6{margin-left:-6.969817px;}
._2{margin-left:-5.750422px;}
._14{margin-left:-4.399488px;}
._5{margin-left:-3.227882px;}
._1{margin-left:-1.446094px;}
._0{width:1.386797px;}
._3e{width:3.280733px;}
._30{width:7.190413px;}
._b{width:14.189776px;}
._d{width:15.971662px;}
._24{width:17.164105px;}
._3{width:18.470660px;}
._f{width:19.737550px;}
._11{width:20.765107px;}
._9{width:22.057196px;}
._12{width:23.441022px;}
._13{width:24.477175px;}
._4{width:25.583957px;}
._18{width:26.809380px;}
._19{width:28.238040px;}
._7{width:29.444033px;}
._10{width:30.798928px;}
._e{width:32.469961px;}
._17{width:34.645968px;}
._a{width:35.984911px;}
._1a{width:37.189422px;}
._1c{width:38.770488px;}
._21{width:39.870360px;}
._15{width:41.176458px;}
._1e{width:42.968773px;}
._8{width:44.174168px;}
._1f{width:45.575946px;}
._22{width:47.019528px;}
._16{width:49.494240px;}
._25{width:51.144048px;}
._20{width:57.193344px;}
._c{width:59.775600px;}
._3c{width:60.974154px;}
._26{width:62.076538px;}
._3d{width:66.173098px;}
._1b{width:67.367160px;}
._3b{width:68.744941px;}
._1d{width:70.116840px;}
._3f{width:74.444470px;}
._27{width:77.708400px;}
._40{width:79.304508px;}
._2d{width:103.188646px;}
._35{width:110.976817px;}
._41{width:118.724030px;}
._39{width:121.120500px;}
._36{width:138.835511px;}
._34{width:155.450989px;}
._3a{width:173.166000px;}
._2a{width:187.937724px;}
._33{width:203.687448px;}
._2c{width:207.048000px;}
._38{width:209.600724px;}
._32{width:210.897552px;}
._28{width:241.419000px;}
._29{width:251.875914px;}
._2b{width:254.598544px;}
._2e{width:286.240914px;}
._2f{width:347.313541px;}
._37{width:513.228000px;}
._31{width:537.178093px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:47.820000px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs7{font-size:71.730000px;}
.fs8{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y50{bottom:41.308500px;}
.ycc{bottom:41.592000px;}
.y51{bottom:43.522500px;}
.y169{bottom:88.089000px;}
.y26{bottom:88.683000px;}
.y103{bottom:90.213000px;}
.y90{bottom:90.733500px;}
.y13e{bottom:94.501500px;}
.y14a{bottom:95.515500px;}
.yb9{bottom:98.815500px;}
.ycb{bottom:99.829500px;}
.y171{bottom:101.307000px;}
.y18b{bottom:104.295000px;}
.y7b{bottom:106.497000px;}
.y8c{bottom:107.511000px;}
.y161{bottom:109.872000px;}
.y168{bottom:110.886000px;}
.y25{bottom:111.480000px;}
.y102{bottom:113.010000px;}
.y8f{bottom:113.530500px;}
.y13d{bottom:117.298500px;}
.y149{bottom:118.312500px;}
.y126{bottom:118.810500px;}
.yb8{bottom:121.612500px;}
.yca{bottom:122.626500px;}
.y170{bottom:124.104000px;}
.y18a{bottom:127.092000px;}
.y7a{bottom:129.294000px;}
.y8b{bottom:130.308000px;}
.y160{bottom:132.669000px;}
.y167{bottom:133.683000px;}
.y24{bottom:134.277000px;}
.y101{bottom:135.807000px;}
.y8e{bottom:136.327500px;}
.y13c{bottom:140.095500px;}
.y148{bottom:141.109500px;}
.yb7{bottom:144.409500px;}
.yc9{bottom:145.423500px;}
.y16f{bottom:146.901000px;}
.y189{bottom:149.889000px;}
.y79{bottom:152.091000px;}
.y125{bottom:152.100000px;}
.y8a{bottom:153.105000px;}
.y15f{bottom:155.467500px;}
.y166{bottom:156.480000px;}
.y23{bottom:157.074000px;}
.y100{bottom:158.604000px;}
.y8d{bottom:159.124500px;}
.y13b{bottom:162.892500px;}
.y147{bottom:163.906500px;}
.yb6{bottom:167.206500px;}
.yc8{bottom:168.220500px;}
.y16e{bottom:169.698000px;}
.y188{bottom:172.686000px;}
.y78{bottom:174.888000px;}
.y89{bottom:175.902000px;}
.y124{bottom:177.885000px;}
.y15e{bottom:178.264500px;}
.y165{bottom:179.278500px;}
.y22{bottom:179.871000px;}
.yff{bottom:181.401000px;}
.y4f{bottom:181.921500px;}
.y13a{bottom:185.691000px;}
.y146{bottom:186.705000px;}
.yb5{bottom:190.003500px;}
.yc7{bottom:191.017500px;}
.y16d{bottom:192.495000px;}
.y187{bottom:195.483000px;}
.y77{bottom:197.685000px;}
.y88{bottom:198.699000px;}
.y123{bottom:200.682000px;}
.y15d{bottom:201.061500px;}
.y164{bottom:202.075500px;}
.y21{bottom:202.669500px;}
.yfe{bottom:204.198000px;}
.y4e{bottom:204.718500px;}
.y139{bottom:208.488000px;}
.y145{bottom:209.502000px;}
.yb4{bottom:212.800500px;}
.yc6{bottom:213.814500px;}
.y16c{bottom:215.292000px;}
.y186{bottom:218.280000px;}
.y76{bottom:220.482000px;}
.y87{bottom:221.496000px;}
.y15c{bottom:223.858500px;}
.y163{bottom:224.872500px;}
.y20{bottom:225.466500px;}
.y122{bottom:226.468500px;}
.yfd{bottom:226.995000px;}
.y4d{bottom:227.515500px;}
.y138{bottom:231.285000px;}
.y144{bottom:232.299000px;}
.yb3{bottom:235.597500px;}
.yc5{bottom:236.611500px;}
.y16b{bottom:238.089000px;}
.y185{bottom:241.078500px;}
.y75{bottom:243.280500px;}
.y86{bottom:244.294500px;}
.y15b{bottom:246.655500px;}
.y162{bottom:247.669500px;}
.y1f{bottom:248.263500px;}
.y121{bottom:249.265500px;}
.yfc{bottom:249.792000px;}
.y4c{bottom:250.312500px;}
.y137{bottom:254.082000px;}
.y143{bottom:255.096000px;}
.yb2{bottom:258.394500px;}
.yc4{bottom:259.408500px;}
.y184{bottom:263.875500px;}
.y74{bottom:266.077500px;}
.y85{bottom:267.091500px;}
.y16a{bottom:271.347000px;}
.yfb{bottom:272.589000px;}
.y4b{bottom:273.109500px;}
.y120{bottom:275.052000px;}
.y136{bottom:276.879000px;}
.y142{bottom:277.893000px;}
.yb1{bottom:281.191500px;}
.yc3{bottom:282.205500px;}
.y183{bottom:286.672500px;}
.y73{bottom:288.874500px;}
.y84{bottom:289.888500px;}
.yfa{bottom:295.387500px;}
.y4a{bottom:295.908000px;}
.y1e{bottom:299.454000px;}
.y135{bottom:299.676000px;}
.y141{bottom:300.690000px;}
.y11f{bottom:300.837000px;}
.yb0{bottom:303.990000px;}
.yc2{bottom:305.002500px;}
.y15a{bottom:306.331500px;}
.y182{bottom:309.469500px;}
.y72{bottom:311.671500px;}
.y83{bottom:312.685500px;}
.y49{bottom:318.705000px;}
.y134{bottom:322.473000px;}
.y140{bottom:323.487000px;}
.y11e{bottom:323.634000px;}
.yaf{bottom:326.787000px;}
.yc1{bottom:327.801000px;}
.yf9{bottom:328.644000px;}
.y159{bottom:329.128500px;}
.y181{bottom:332.266500px;}
.y71{bottom:334.468500px;}
.y82{bottom:335.482500px;}
.y1d{bottom:340.627500px;}
.y48{bottom:341.502000px;}
.y133{bottom:345.270000px;}
.y13f{bottom:346.284000px;}
.yae{bottom:349.584000px;}
.yc0{bottom:350.598000px;}
.y158{bottom:351.925500px;}
.y180{bottom:355.063500px;}
.y11d{bottom:356.923500px;}
.y70{bottom:357.265500px;}
.y81{bottom:358.279500px;}
.y1c{bottom:359.202000px;}
.y47{bottom:364.299000px;}
.yad{bottom:372.381000px;}
.ye2{bottom:373.014000px;}
.y1b{bottom:373.066500px;}
.ybf{bottom:373.395000px;}
.yf8{bottom:374.028000px;}
.y157{bottom:374.722500px;}
.y17f{bottom:377.860500px;}
.y11c{bottom:379.720500px;}
.y6f{bottom:380.062500px;}
.y80{bottom:381.076500px;}
.y46{bottom:387.096000px;}
.y1a{bottom:395.020500px;}
.yac{bottom:395.178000px;}
.ye1{bottom:395.811000px;}
.ybe{bottom:396.192000px;}
.yf7{bottom:396.825000px;}
.y156{bottom:397.519500px;}
.y132{bottom:397.623000px;}
.y17e{bottom:400.657500px;}
.y11b{bottom:402.517500px;}
.y6e{bottom:402.859500px;}
.y7f{bottom:403.873500px;}
.y45{bottom:409.893000px;}
.yab{bottom:417.975000px;}
.ye0{bottom:418.608000px;}
.ybd{bottom:418.989000px;}
.y19{bottom:419.206500px;}
.yf6{bottom:419.622000px;}
.y155{bottom:420.318000px;}
.y131{bottom:420.420000px;}
.y17d{bottom:423.454500px;}
.y11a{bottom:425.314500px;}
.y6d{bottom:425.656500px;}
.y7e{bottom:426.670500px;}
.y44{bottom:432.690000px;}
.yaa{bottom:440.772000px;}
.ydf{bottom:441.405000px;}
.ybc{bottom:441.786000px;}
.yf5{bottom:442.419000px;}
.y154{bottom:443.115000px;}
.y130{bottom:446.205000px;}
.y17c{bottom:446.251500px;}
.y6c{bottom:448.453500px;}
.y7d{bottom:449.467500px;}
.y18{bottom:454.609500px;}
.y43{bottom:455.487000px;}
.ya9{bottom:463.569000px;}
.yde{bottom:464.202000px;}
.ybb{bottom:464.583000px;}
.yf4{bottom:465.216000px;}
.y153{bottom:465.912000px;}
.y12f{bottom:469.002000px;}
.y17b{bottom:469.048500px;}
.y6b{bottom:471.250500px;}
.y119{bottom:471.421500px;}
.y7c{bottom:472.264500px;}
.y17{bottom:476.562000px;}
.y42{bottom:478.284000px;}
.ya8{bottom:486.366000px;}
.ydd{bottom:486.999000px;}
.yba{bottom:487.380000px;}
.yf3{bottom:488.013000px;}
.y152{bottom:488.709000px;}
.y17a{bottom:491.845500px;}
.y12e{bottom:494.788500px;}
.y16{bottom:498.514500px;}
.y41{bottom:501.081000px;}
.y118{bottom:505.945500px;}
.ydc{bottom:509.796000px;}
.yf2{bottom:510.810000px;}
.y151{bottom:511.506000px;}
.y6a{bottom:512.994000px;}
.y179{bottom:514.642500px;}
.y12d{bottom:517.585500px;}
.y15{bottom:520.467000px;}
.y40{bottom:523.878000px;}
.y10d{bottom:527.728500px;}
.y117{bottom:528.742500px;}
.ydb{bottom:532.593000px;}
.yf1{bottom:533.607000px;}
.y150{bottom:534.303000px;}
.y69{bottom:535.792500px;}
.y178{bottom:537.439500px;}
.y14{bottom:542.419500px;}
.y12c{bottom:543.370500px;}
.y3f{bottom:546.675000px;}
.y10c{bottom:550.525500px;}
.y116{bottom:551.539500px;}
.yda{bottom:555.390000px;}
.yf0{bottom:556.404000px;}
.y14f{bottom:557.100000px;}
.y68{bottom:558.589500px;}
.y177{bottom:560.238000px;}
.y13{bottom:564.373500px;}
.ya7{bottom:568.458000px;}
.y12b{bottom:569.157000px;}
.y3e{bottom:569.472000px;}
.y10b{bottom:573.322500px;}
.y115{bottom:574.336500px;}
.yd9{bottom:578.187000px;}
.yef{bottom:579.201000px;}
.y14e{bottom:579.897000px;}
.y67{bottom:581.386500px;}
.y176{bottom:583.035000px;}
.y12{bottom:586.326000px;}
.ya6{bottom:591.256500px;}
.y12a{bottom:591.954000px;}
.y3d{bottom:592.269000px;}
.y10a{bottom:596.119500px;}
.y114{bottom:597.133500px;}
.yd8{bottom:600.984000px;}
.yee{bottom:601.998000px;}
.y14d{bottom:602.694000px;}
.y66{bottom:604.183500px;}
.y175{bottom:605.832000px;}
.y11{bottom:608.278500px;}
.ya5{bottom:614.053500px;}
.y3c{bottom:615.067500px;}
.y109{bottom:618.918000px;}
.y113{bottom:619.930500px;}
.yd7{bottom:623.781000px;}
.yed{bottom:624.795000px;}
.y129{bottom:625.243500px;}
.y14c{bottom:625.491000px;}
.y65{bottom:626.980500px;}
.y174{bottom:628.629000px;}
.y10{bottom:630.231000px;}
.ya4{bottom:636.850500px;}
.y3b{bottom:637.864500px;}
.y108{bottom:641.715000px;}
.y112{bottom:642.729000px;}
.yd6{bottom:646.578000px;}
.y14b{bottom:647.274000px;}
.yec{bottom:647.592000px;}
.y64{bottom:649.777500px;}
.y173{bottom:651.426000px;}
.yf{bottom:652.183500px;}
.ya3{bottom:659.647500px;}
.y3a{bottom:660.661500px;}
.y107{bottom:664.512000px;}
.y111{bottom:665.526000px;}
.yd5{bottom:669.376500px;}
.yeb{bottom:670.390500px;}
.y128{bottom:671.350500px;}
.y63{bottom:672.574500px;}
.ye{bottom:674.137500px;}
.ya2{bottom:682.444500px;}
.y39{bottom:683.458500px;}
.y172{bottom:684.684000px;}
.y106{bottom:687.309000px;}
.y110{bottom:688.323000px;}
.yd4{bottom:692.173500px;}
.yea{bottom:693.187500px;}
.y127{bottom:694.147500px;}
.y62{bottom:695.371500px;}
.yd{bottom:696.090000px;}
.ya1{bottom:705.241500px;}
.y38{bottom:706.255500px;}
.y105{bottom:710.106000px;}
.y10f{bottom:711.120000px;}
.yd3{bottom:714.970500px;}
.ye9{bottom:715.984500px;}
.yc{bottom:718.042500px;}
.y61{bottom:718.168500px;}
.ya0{bottom:728.038500px;}
.y37{bottom:729.052500px;}
.y104{bottom:732.903000px;}
.y10e{bottom:733.917000px;}
.yd2{bottom:737.767500px;}
.ye8{bottom:738.781500px;}
.yb{bottom:739.995000px;}
.y60{bottom:740.965500px;}
.y9f{bottom:750.835500px;}
.y36{bottom:751.849500px;}
.yd1{bottom:760.564500px;}
.ye7{bottom:761.578500px;}
.ya{bottom:761.947500px;}
.y5f{bottom:763.762500px;}
.y9e{bottom:773.632500px;}
.y35{bottom:774.646500px;}
.yd0{bottom:783.361500px;}
.y9{bottom:783.900000px;}
.ye6{bottom:784.375500px;}
.y5e{bottom:786.559500px;}
.y9d{bottom:796.429500px;}
.y34{bottom:797.443500px;}
.y8{bottom:805.854000px;}
.ycf{bottom:806.158500px;}
.ye5{bottom:807.172500px;}
.y5d{bottom:809.356500px;}
.y9c{bottom:819.226500px;}
.y33{bottom:820.240500px;}
.y7{bottom:827.806500px;}
.yce{bottom:828.955500px;}
.ye4{bottom:829.969500px;}
.y5c{bottom:832.155000px;}
.y9b{bottom:842.023500px;}
.y32{bottom:843.037500px;}
.y6{bottom:849.759000px;}
.ycd{bottom:851.752500px;}
.ye3{bottom:852.766500px;}
.y5b{bottom:854.952000px;}
.y9a{bottom:864.820500px;}
.y31{bottom:865.834500px;}
.y5a{bottom:877.749000px;}
.y99{bottom:887.617500px;}
.y30{bottom:888.631500px;}
.y59{bottom:900.546000px;}
.y98{bottom:910.416000px;}
.y2f{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.y58{bottom:923.343000px;}
.y97{bottom:933.213000px;}
.y2e{bottom:934.227000px;}
.y57{bottom:946.140000px;}
.y96{bottom:956.010000px;}
.y2d{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y56{bottom:968.937000px;}
.y95{bottom:978.807000px;}
.y2c{bottom:979.821000px;}
.y55{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y94{bottom:1001.604000px;}
.y2b{bottom:1002.618000px;}
.y54{bottom:1014.531000px;}
.y93{bottom:1024.401000px;}
.y2a{bottom:1025.415000px;}
.y53{bottom:1037.328000px;}
.y92{bottom:1047.198000px;}
.y29{bottom:1048.212000px;}
.y91{bottom:1069.995000px;}
.y52{bottom:1070.586000px;}
.y28{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y27{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h6{height:32.278824px;}
.he{height:35.865000px;}
.h1{height:35.865450px;}
.h7{height:37.013299px;}
.h10{height:37.801710px;}
.h12{height:37.802342px;}
.h5{height:41.125613px;}
.h4{height:41.484266px;}
.hf{height:47.157012px;}
.h9{height:47.294496px;}
.hc{height:47.706948px;}
.h3{height:53.463379px;}
.h8{height:53.929630px;}
.h2{height:71.065171px;}
.hd{height:91.407000px;}
.hb{height:91.407450px;}
.h11{height:92.541000px;}
.ha{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:127.558500px;}
.x1d{left:136.525500px;}
.x14{left:143.706000px;}
.xe{left:153.070500px;}
.x6{left:178.044000px;}
.x22{left:180.270000px;}
.x21{left:181.558500px;}
.xc{left:199.812000px;}
.x5{left:207.712500px;}
.xa{left:246.345000px;}
.x13{left:262.747500px;}
.x15{left:267.937500px;}
.x1e{left:333.040500px;}
.x16{left:336.894000px;}
.xd{left:404.023500px;}
.x9{left:410.130000px;}
.x4{left:417.429000px;}
.xb{left:419.664000px;}
.x17{left:431.362500px;}
.x1f{left:447.636000px;}
.x10{left:452.577000px;}
.xf{left:464.346000px;}
.x20{left:478.003500px;}
.x12{left:489.858000px;}
.x18{left:500.319000px;}
.x19{left:569.274000px;}
.x2{left:573.774000px;}
.x11{left:578.070000px;}
.x7{left:600.802500px;}
.x8{left:612.426000px;}
.x1a{left:663.742500px;}
.x1{left:696.322500px;}
.x1b{left:733.783500px;}
.x1c{left:747.441000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1f{letter-spacing:-90.983856pt;}
.ls1b{letter-spacing:-76.318896pt;}
.ls1d{letter-spacing:-55.299120pt;}
.ls1e{letter-spacing:-54.626976pt;}
.ls1c{letter-spacing:-51.082944pt;}
.ls9{letter-spacing:-13.992816pt;}
.ls6{letter-spacing:-13.320672pt;}
.lsd{letter-spacing:-7.026960pt;}
.ls8{letter-spacing:-0.733248pt;}
.ls7{letter-spacing:-0.672144pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000384pt;}
.ls15{letter-spacing:0.002667pt;}
.ls1a{letter-spacing:1.279298pt;}
.ls12{letter-spacing:2.260198pt;}
.ls0{letter-spacing:2.656693pt;}
.lsc{letter-spacing:5.129456pt;}
.ls11{letter-spacing:15.029528pt;}
.ls16{letter-spacing:15.092736pt;}
.ls18{letter-spacing:15.153451pt;}
.ls14{letter-spacing:15.273333pt;}
.lse{letter-spacing:15.276000pt;}
.ls13{letter-spacing:15.278667pt;}
.lsf{letter-spacing:15.337104pt;}
.ls17{letter-spacing:15.339939pt;}
.ls10{letter-spacing:15.459312pt;}
.ls19{letter-spacing:15.459528pt;}
.ls4{letter-spacing:184.106667pt;}
.lsa{letter-spacing:284.806544pt;}
.ls2{letter-spacing:851.373333pt;}
.ls5{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws48{word-spacing:-15.276000pt;}
.ws13{word-spacing:-13.283467pt;}
.ws153{word-spacing:-3.360720pt;}
.wse9{word-spacing:-3.238055pt;}
.ws1f{word-spacing:-3.177408pt;}
.ws94{word-spacing:-3.055200pt;}
.ws39{word-spacing:-2.994096pt;}
.wse0{word-spacing:-2.936649pt;}
.ws90{word-spacing:-2.932992pt;}
.ws154{word-spacing:-2.810784pt;}
.ws9c{word-spacing:-2.749680pt;}
.ws1a{word-spacing:-2.688576pt;}
.ws12{word-spacing:-2.656693pt;}
.ws36{word-spacing:-2.627472pt;}
.ws8a{word-spacing:-2.566368pt;}
.ws128{word-spacing:-2.449167pt;}
.ws52{word-spacing:-2.444160pt;}
.ws88{word-spacing:-2.321952pt;}
.wsc6{word-spacing:-2.265180pt;}
.wsa0{word-spacing:-2.260848pt;}
.ws31{word-spacing:-2.138640pt;}
.ws12a{word-spacing:-1.772016pt;}
.ws6a{word-spacing:-1.710912pt;}
.ws147{word-spacing:-1.649808pt;}
.ws130{word-spacing:-1.588704pt;}
.wsbb{word-spacing:-1.471481pt;}
.ws129{word-spacing:-1.434624pt;}
.ws13f{word-spacing:-1.405392pt;}
.ws10{word-spacing:-1.328347pt;}
.ws92{word-spacing:-1.283184pt;}
.ws84{word-spacing:-1.222080pt;}
.ws55{word-spacing:-1.160976pt;}
.wsad{word-spacing:-1.105183pt;}
.ws187{word-spacing:-1.100982pt;}
.ws29{word-spacing:-1.099872pt;}
.ws177{word-spacing:-1.044907pt;}
.ws47{word-spacing:-1.038768pt;}
.ws67{word-spacing:-0.977664pt;}
.ws97{word-spacing:-0.855456pt;}
.ws30{word-spacing:-0.794352pt;}
.ws109{word-spacing:-0.739321pt;}
.wsfa{word-spacing:-0.738189pt;}
.ws57{word-spacing:-0.733248pt;}
.ws118{word-spacing:-0.676280pt;}
.ws32{word-spacing:-0.672144pt;}
.ws62{word-spacing:-0.611040pt;}
.ws7c{word-spacing:-0.549936pt;}
.ws115{word-spacing:-0.491880pt;}
.ws179{word-spacing:-0.489790pt;}
.ws45{word-spacing:-0.488832pt;}
.wsac{word-spacing:-0.434924pt;}
.ws74{word-spacing:-0.427728pt;}
.ws11f{word-spacing:-0.375652pt;}
.ws15{word-spacing:-0.366624pt;}
.wscc{word-spacing:-0.314417pt;}
.wsb8{word-spacing:-0.311708pt;}
.wsba{word-spacing:-0.309401pt;}
.ws172{word-spacing:-0.306525pt;}
.ws167{word-spacing:-0.306337pt;}
.ws3f{word-spacing:-0.305520pt;}
.wse6{word-spacing:-0.305117pt;}
.ws170{word-spacing:-0.304936pt;}
.ws166{word-spacing:-0.303000pt;}
.wsbe{word-spacing:-0.294306pt;}
.wsb0{word-spacing:-0.250271pt;}
.ws15e{word-spacing:-0.247688pt;}
.ws16d{word-spacing:-0.246113pt;}
.ws19{word-spacing:-0.244416pt;}
.ws16b{word-spacing:-0.241739pt;}
.ws163{word-spacing:-0.241686pt;}
.ws16a{word-spacing:-0.240843pt;}
.ws16f{word-spacing:-0.240147pt;}
.wse4{word-spacing:-0.237016pt;}
.wsab{word-spacing:-0.197294pt;}
.wsc9{word-spacing:-0.186850pt;}
.ws17c{word-spacing:-0.185920pt;}
.ws111{word-spacing:-0.185839pt;}
.ws34{word-spacing:-0.183312pt;}
.wsb{word-spacing:-0.159402pt;}
.wsf6{word-spacing:-0.137204pt;}
.ws110{word-spacing:-0.124956pt;}
.wsaf{word-spacing:-0.124061pt;}
.ws1d{word-spacing:-0.122208pt;}
.wsdc{word-spacing:-0.120939pt;}
.ws186{word-spacing:-0.111893pt;}
.ws9{word-spacing:-0.106268pt;}
.wse2{word-spacing:-0.072104pt;}
.wsc7{word-spacing:-0.070542pt;}
.ws173{word-spacing:-0.070481pt;}
.wsb1{word-spacing:-0.063185pt;}
.wsdd{word-spacing:-0.061950pt;}
.ws17{word-spacing:-0.061104pt;}
.ws119{word-spacing:-0.060804pt;}
.wsf{word-spacing:-0.053134pt;}
.ws11e{word-spacing:-0.051867pt;}
.ws1{word-spacing:-0.042507pt;}
.wsc3{word-spacing:-0.013474pt;}
.ws11c{word-spacing:-0.004491pt;}
.wscd{word-spacing:-0.003947pt;}
.wsb4{word-spacing:-0.003157pt;}
.wse5{word-spacing:-0.002967pt;}
.ws169{word-spacing:-0.002667pt;}
.wsa7{word-spacing:-0.002544pt;}
.ws182{word-spacing:-0.002342pt;}
.ws101{word-spacing:-0.002283pt;}
.wsd6{word-spacing:-0.002053pt;}
.ws162{word-spacing:-0.001931pt;}
.wsce{word-spacing:-0.001808pt;}
.wsb5{word-spacing:-0.001579pt;}
.wsfd{word-spacing:-0.001328pt;}
.wsfe{word-spacing:-0.001317pt;}
.ws106{word-spacing:-0.001088pt;}
.wsec{word-spacing:-0.001072pt;}
.ws107{word-spacing:-0.000597pt;}
.ws3{word-spacing:0.000000pt;}
.ws103{word-spacing:0.000843pt;}
.wsfb{word-spacing:0.000859pt;}
.ws11a{word-spacing:0.000934pt;}
.wsd4{word-spacing:0.001333pt;}
.ws10a{word-spacing:0.001595pt;}
.ws10b{word-spacing:0.002800pt;}
.ws17d{word-spacing:0.006610pt;}
.wse3{word-spacing:0.050989pt;}
.wsc{word-spacing:0.053134pt;}
.wsbc{word-spacing:0.057143pt;}
.wsae{word-spacing:0.057457pt;}
.ws16{word-spacing:0.061104pt;}
.ws17f{word-spacing:0.064023pt;}
.wse8{word-spacing:0.064753pt;}
.ws180{word-spacing:0.068436pt;}
.wsa{word-spacing:0.106268pt;}
.ws11b{word-spacing:0.112060pt;}
.ws160{word-spacing:0.116214pt;}
.ws18a{word-spacing:0.118753pt;}
.wse1{word-spacing:0.120141pt;}
.ws188{word-spacing:0.120587pt;}
.ws1e{word-spacing:0.122208pt;}
.ws5{word-spacing:0.159402pt;}
.ws37{word-spacing:0.183312pt;}
.wsea{word-spacing:0.183981pt;}
.wsfc{word-spacing:0.189184pt;}
.ws127{word-spacing:0.243530pt;}
.ws21{word-spacing:0.244416pt;}
.wsc2{word-spacing:0.245964pt;}
.ws11{word-spacing:0.265669pt;}
.wse7{word-spacing:0.295461pt;}
.wsb7{word-spacing:0.302623pt;}
.ws28{word-spacing:0.305520pt;}
.ws4f{word-spacing:0.366624pt;}
.ws183{word-spacing:0.366666pt;}
.ws2{word-spacing:0.367262pt;}
.ws8d{word-spacing:0.427728pt;}
.ws116{word-spacing:0.430060pt;}
.ws135{word-spacing:0.488832pt;}
.ws82{word-spacing:0.549936pt;}
.ws85{word-spacing:0.611040pt;}
.ws3d{word-spacing:0.672144pt;}
.ws6{word-spacing:0.690740pt;}
.ws26{word-spacing:0.733248pt;}
.ws23{word-spacing:0.794352pt;}
.ws53{word-spacing:0.855456pt;}
.wscb{word-spacing:0.913078pt;}
.ws5a{word-spacing:0.916560pt;}
.ws10e{word-spacing:0.923776pt;}
.ws59{word-spacing:0.977664pt;}
.wsf9{word-spacing:0.979525pt;}
.wsb9{word-spacing:1.036230pt;}
.ws8f{word-spacing:1.038768pt;}
.ws164{word-spacing:1.082360pt;}
.ws41{word-spacing:1.099872pt;}
.wsbf{word-spacing:1.160359pt;}
.ws5b{word-spacing:1.160976pt;}
.wsc0{word-spacing:1.218754pt;}
.ws12b{word-spacing:1.222080pt;}
.ws9a{word-spacing:1.283184pt;}
.ws20{word-spacing:1.344288pt;}
.ws95{word-spacing:1.405392pt;}
.ws78{word-spacing:1.466496pt;}
.ws72{word-spacing:1.527600pt;}
.ws86{word-spacing:1.588704pt;}
.wsd{word-spacing:1.594016pt;}
.ws7f{word-spacing:1.649808pt;}
.ws4e{word-spacing:1.710912pt;}
.ws4b{word-spacing:1.772016pt;}
.ws25{word-spacing:1.833120pt;}
.ws137{word-spacing:1.894224pt;}
.wsf5{word-spacing:1.895950pt;}
.ws7{word-spacing:1.912819pt;}
.ws145{word-spacing:1.955328pt;}
.ws80{word-spacing:2.016432pt;}
.ws87{word-spacing:2.077536pt;}
.wsb2{word-spacing:2.081165pt;}
.ws24{word-spacing:2.138640pt;}
.ws68{word-spacing:2.199744pt;}
.wsca{word-spacing:2.258411pt;}
.ws13d{word-spacing:2.260848pt;}
.ws4d{word-spacing:2.383056pt;}
.ws8{word-spacing:2.391024pt;}
.wsa8{word-spacing:2.442184pt;}
.ws58{word-spacing:2.444160pt;}
.ws146{word-spacing:2.505264pt;}
.ws2b{word-spacing:2.566368pt;}
.wsa9{word-spacing:2.566912pt;}
.ws157{word-spacing:2.627472pt;}
.ws79{word-spacing:2.688576pt;}
.ws18{word-spacing:2.810784pt;}
.ws148{word-spacing:2.871888pt;}
.ws3a{word-spacing:2.932992pt;}
.ws144{word-spacing:2.994096pt;}
.ws27{word-spacing:3.055200pt;}
.ws89{word-spacing:3.116304pt;}
.wsf3{word-spacing:3.117454pt;}
.ws13c{word-spacing:3.177408pt;}
.ws138{word-spacing:3.421824pt;}
.ws4{word-spacing:3.453701pt;}
.ws51{word-spacing:3.482928pt;}
.ws13e{word-spacing:3.544032pt;}
.ws132{word-spacing:3.605136pt;}
.ws4c{word-spacing:3.727344pt;}
.wsaa{word-spacing:3.786754pt;}
.ws14c{word-spacing:3.788448pt;}
.wsb3{word-spacing:3.790456pt;}
.wsf7{word-spacing:3.967587pt;}
.ws22{word-spacing:3.971760pt;}
.wsc5{word-spacing:3.973465pt;}
.ws1b{word-spacing:4.093968pt;}
.ws7a{word-spacing:4.155072pt;}
.ws1c{word-spacing:4.216176pt;}
.ws125{word-spacing:4.217692pt;}
.ws76{word-spacing:4.277280pt;}
.ws44{word-spacing:4.338384pt;}
.wsc1{word-spacing:4.396999pt;}
.ws8c{word-spacing:4.399488pt;}
.ws49{word-spacing:4.460592pt;}
.wsdf{word-spacing:4.521079pt;}
.ws12f{word-spacing:4.521696pt;}
.ws117{word-spacing:4.523369pt;}
.ws75{word-spacing:4.582800pt;}
.wsee{word-spacing:4.583061pt;}
.ws3c{word-spacing:4.643904pt;}
.ws5f{word-spacing:4.705008pt;}
.wsc4{word-spacing:4.706263pt;}
.ws5c{word-spacing:4.766112pt;}
.ws113{word-spacing:4.768381pt;}
.ws3b{word-spacing:4.827216pt;}
.ws93{word-spacing:4.888320pt;}
.ws5e{word-spacing:4.949424pt;}
.ws105{word-spacing:4.951369pt;}
.wse{word-spacing:4.994583pt;}
.ws71{word-spacing:5.071632pt;}
.wsed{word-spacing:5.073577pt;}
.ws35{word-spacing:5.254944pt;}
.ws70{word-spacing:5.316048pt;}
.wsbd{word-spacing:5.377079pt;}
.wseb{word-spacing:5.377110pt;}
.ws3e{word-spacing:5.377152pt;}
.wsd0{word-spacing:5.379369pt;}
.ws73{word-spacing:5.438256pt;}
.wsc8{word-spacing:5.442115pt;}
.ws83{word-spacing:5.499360pt;}
.ws9b{word-spacing:5.621568pt;}
.ws15f{word-spacing:5.621631pt;}
.ws2d{word-spacing:5.682672pt;}
.ws6b{word-spacing:5.743776pt;}
.wsf1{word-spacing:5.804315pt;}
.ws96{word-spacing:5.804880pt;}
.ws81{word-spacing:5.988192pt;}
.ws98{word-spacing:6.049296pt;}
.ws124{word-spacing:6.051367pt;}
.ws69{word-spacing:6.110400pt;}
.ws15b{word-spacing:6.171504pt;}
.wsa6{word-spacing:6.232608pt;}
.ws18b{word-spacing:6.289184pt;}
.ws133{word-spacing:6.293712pt;}
.wsf8{word-spacing:6.296588pt;}
.ws134{word-spacing:6.415920pt;}
.ws40{word-spacing:6.477024pt;}
.ws2c{word-spacing:6.538128pt;}
.ws159{word-spacing:6.599232pt;}
.ws18d{word-spacing:6.719157pt;}
.ws66{word-spacing:6.721440pt;}
.ws43{word-spacing:6.782544pt;}
.ws77{word-spacing:6.843648pt;}
.ws6c{word-spacing:6.965856pt;}
.ws4a{word-spacing:7.026960pt;}
.ws13b{word-spacing:7.088064pt;}
.ws176{word-spacing:7.146710pt;}
.ws2a{word-spacing:7.149168pt;}
.ws18c{word-spacing:7.167258pt;}
.ws65{word-spacing:7.271376pt;}
.wsa4{word-spacing:7.393584pt;}
.ws7d{word-spacing:7.454688pt;}
.ws143{word-spacing:7.515792pt;}
.ws136{word-spacing:7.576896pt;}
.ws9d{word-spacing:7.699104pt;}
.wsde{word-spacing:7.759162pt;}
.ws2e{word-spacing:7.760208pt;}
.ws38{word-spacing:7.882416pt;}
.ws46{word-spacing:7.943520pt;}
.ws149{word-spacing:8.004624pt;}
.ws64{word-spacing:8.065728pt;}
.ws114{word-spacing:8.071333pt;}
.ws2f{word-spacing:8.187936pt;}
.ws42{word-spacing:8.249040pt;}
.ws91{word-spacing:8.310144pt;}
.ws54{word-spacing:8.554560pt;}
.wsa2{word-spacing:8.615664pt;}
.ws99{word-spacing:8.676768pt;}
.ws5d{word-spacing:8.798976pt;}
.wsf0{word-spacing:8.800963pt;}
.wsf4{word-spacing:9.046958pt;}
.wsa5{word-spacing:9.348912pt;}
.ws9e{word-spacing:9.410016pt;}
.ws123{word-spacing:9.412087pt;}
.ws12c{word-spacing:9.532224pt;}
.ws150{word-spacing:9.593328pt;}
.ws14d{word-spacing:9.654432pt;}
.wsa1{word-spacing:10.143264pt;}
.ws151{word-spacing:10.326576pt;}
.ws155{word-spacing:10.448784pt;}
.ws6f{word-spacing:10.509888pt;}
.ws142{word-spacing:10.570992pt;}
.ws156{word-spacing:10.815408pt;}
.ws33{word-spacing:11.059824pt;}
.ws63{word-spacing:11.182032pt;}
.ws141{word-spacing:11.243136pt;}
.ws6e{word-spacing:11.548656pt;}
.ws10f{word-spacing:11.550026pt;}
.ws8b{word-spacing:11.609760pt;}
.wsa3{word-spacing:11.731968pt;}
.ws60{word-spacing:11.915280pt;}
.ws120{word-spacing:12.159278pt;}
.ws14e{word-spacing:12.220800pt;}
.wsd2{word-spacing:12.225422pt;}
.ws56{word-spacing:12.648528pt;}
.ws158{word-spacing:12.709632pt;}
.ws9f{word-spacing:12.954048pt;}
.ws152{word-spacing:13.870608pt;}
.ws112{word-spacing:13.874592pt;}
.ws178{word-spacing:14.173363pt;}
.ws126{word-spacing:14.235580pt;}
.ws61{word-spacing:14.603856pt;}
.ws17a{word-spacing:14.724257pt;}
.ws6d{word-spacing:14.726064pt;}
.ws7b{word-spacing:14.909376pt;}
.ws15d{word-spacing:14.968424pt;}
.ws12e{word-spacing:14.970480pt;}
.wsda{word-spacing:15.003739pt;}
.ws0{word-spacing:15.005042pt;}
.ws17b{word-spacing:15.027648pt;}
.ws14f{word-spacing:15.031584pt;}
.ws14b{word-spacing:15.092688pt;}
.ws174{word-spacing:15.143356pt;}
.ws185{word-spacing:15.166665pt;}
.ws168{word-spacing:15.210651pt;}
.ws131{word-spacing:15.214896pt;}
.ws175{word-spacing:15.217440pt;}
.ws11d{word-spacing:15.224228pt;}
.ws140{word-spacing:15.276000pt;}
.ws181{word-spacing:15.278835pt;}
.ws189{word-spacing:15.328251pt;}
.ws161{word-spacing:15.330890pt;}
.ws12d{word-spacing:15.337104pt;}
.ws15c{word-spacing:15.398208pt;}
.ws15a{word-spacing:15.459312pt;}
.wsb6{word-spacing:15.527103pt;}
.ws184{word-spacing:15.585055pt;}
.ws139{word-spacing:15.825936pt;}
.ws7e{word-spacing:16.009248pt;}
.ws10d{word-spacing:16.070572pt;}
.ws13a{word-spacing:16.436976pt;}
.wsf2{word-spacing:17.221711pt;}
.wsdb{word-spacing:18.574413pt;}
.ws50{word-spacing:18.697824pt;}
.wsef{word-spacing:21.446511pt;}
.ws121{word-spacing:26.260157pt;}
.ws122{word-spacing:28.234545pt;}
.ws8e{word-spacing:42.589488pt;}
.wsd5{word-spacing:43.755086pt;}
.wsff{word-spacing:47.359814pt;}
.ws102{word-spacing:49.006464pt;}
.ws14{word-spacing:51.805600pt;}
.ws10c{word-spacing:56.827403pt;}
.wscf{word-spacing:58.050159pt;}
.wsd1{word-spacing:77.174667pt;}
.ws16c{word-spacing:82.453738pt;}
.ws171{word-spacing:89.187398pt;}
.ws16e{word-spacing:90.501134pt;}
.ws100{word-spacing:92.386667pt;}
.wsd3{word-spacing:98.560658pt;}
.wsd8{word-spacing:121.233088pt;}
.ws104{word-spacing:122.938667pt;}
.ws108{word-spacing:122.960000pt;}
.ws165{word-spacing:130.689235pt;}
.ws17e{word-spacing:158.772634pt;}
.wsd7{word-spacing:167.852000pt;}
.wsd9{word-spacing:259.508000pt;}
.ws14a{word-spacing:823.113333pt;}
._23{margin-left:-7.284702pt;}
._6{margin-left:-6.195393pt;}
._2{margin-left:-5.111486pt;}
._14{margin-left:-3.910656pt;}
._5{margin-left:-2.869229pt;}
._1{margin-left:-1.285417pt;}
._0{width:1.232709pt;}
._3e{width:2.916207pt;}
._30{width:6.391478pt;}
._b{width:12.613134pt;}
._d{width:14.197033pt;}
._24{width:15.256982pt;}
._3{width:16.418365pt;}
._f{width:17.544489pt;}
._11{width:18.457873pt;}
._9{width:19.606397pt;}
._12{width:20.836464pt;}
._13{width:21.757489pt;}
._4{width:22.741295pt;}
._18{width:23.830560pt;}
._19{width:25.100480pt;}
._7{width:26.172474pt;}
._10{width:27.376825pt;}
._e{width:28.862188pt;}
._17{width:30.796416pt;}
._a{width:31.986588pt;}
._1a{width:33.057264pt;}
._1c{width:34.462656pt;}
._21{width:35.440320pt;}
._15{width:36.601296pt;}
._1e{width:38.194465pt;}
._8{width:39.265927pt;}
._1f{width:40.511952pt;}
._22{width:41.795136pt;}
._16{width:43.994880pt;}
._25{width:45.461376pt;}
._20{width:50.838528pt;}
._c{width:53.133867pt;}
._3c{width:54.199248pt;}
._26{width:55.179145pt;}
._3d{width:58.820531pt;}
._1b{width:59.881920pt;}
._3b{width:61.106614pt;}
._1d{width:62.326080pt;}
._3f{width:66.172862pt;}
._27{width:69.074133pt;}
._40{width:70.492896pt;}
._2d{width:91.723241pt;}
._35{width:98.646060pt;}
._41{width:105.532471pt;}
._39{width:107.662667pt;}
._36{width:123.409343pt;}
._34{width:138.178657pt;}
._3a{width:153.925333pt;}
._2a{width:167.055755pt;}
._33{width:181.055509pt;}
._2c{width:184.042667pt;}
._38{width:186.311755pt;}
._32{width:187.464491pt;}
._28{width:214.594667pt;}
._29{width:223.889701pt;}
._2b{width:226.309817pt;}
._2e{width:254.436368pt;}
._2f{width:308.723148pt;}
._37{width:456.202667pt;}
._31{width:477.491638pt;}
.fs6{font-size:42.506667pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs7{font-size:63.760000pt;}
.fs8{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:36.718667pt;}
.ycc{bottom:36.970667pt;}
.y51{bottom:38.686667pt;}
.y169{bottom:78.301333pt;}
.y26{bottom:78.829333pt;}
.y103{bottom:80.189333pt;}
.y90{bottom:80.652000pt;}
.y13e{bottom:84.001333pt;}
.y14a{bottom:84.902667pt;}
.yb9{bottom:87.836000pt;}
.ycb{bottom:88.737333pt;}
.y171{bottom:90.050667pt;}
.y18b{bottom:92.706667pt;}
.y7b{bottom:94.664000pt;}
.y8c{bottom:95.565333pt;}
.y161{bottom:97.664000pt;}
.y168{bottom:98.565333pt;}
.y25{bottom:99.093333pt;}
.y102{bottom:100.453333pt;}
.y8f{bottom:100.916000pt;}
.y13d{bottom:104.265333pt;}
.y149{bottom:105.166667pt;}
.y126{bottom:105.609333pt;}
.yb8{bottom:108.100000pt;}
.yca{bottom:109.001333pt;}
.y170{bottom:110.314667pt;}
.y18a{bottom:112.970667pt;}
.y7a{bottom:114.928000pt;}
.y8b{bottom:115.829333pt;}
.y160{bottom:117.928000pt;}
.y167{bottom:118.829333pt;}
.y24{bottom:119.357333pt;}
.y101{bottom:120.717333pt;}
.y8e{bottom:121.180000pt;}
.y13c{bottom:124.529333pt;}
.y148{bottom:125.430667pt;}
.yb7{bottom:128.364000pt;}
.yc9{bottom:129.265333pt;}
.y16f{bottom:130.578667pt;}
.y189{bottom:133.234667pt;}
.y79{bottom:135.192000pt;}
.y125{bottom:135.200000pt;}
.y8a{bottom:136.093333pt;}
.y15f{bottom:138.193333pt;}
.y166{bottom:139.093333pt;}
.y23{bottom:139.621333pt;}
.y100{bottom:140.981333pt;}
.y8d{bottom:141.444000pt;}
.y13b{bottom:144.793333pt;}
.y147{bottom:145.694667pt;}
.yb6{bottom:148.628000pt;}
.yc8{bottom:149.529333pt;}
.y16e{bottom:150.842667pt;}
.y188{bottom:153.498667pt;}
.y78{bottom:155.456000pt;}
.y89{bottom:156.357333pt;}
.y124{bottom:158.120000pt;}
.y15e{bottom:158.457333pt;}
.y165{bottom:159.358667pt;}
.y22{bottom:159.885333pt;}
.yff{bottom:161.245333pt;}
.y4f{bottom:161.708000pt;}
.y13a{bottom:165.058667pt;}
.y146{bottom:165.960000pt;}
.yb5{bottom:168.892000pt;}
.yc7{bottom:169.793333pt;}
.y16d{bottom:171.106667pt;}
.y187{bottom:173.762667pt;}
.y77{bottom:175.720000pt;}
.y88{bottom:176.621333pt;}
.y123{bottom:178.384000pt;}
.y15d{bottom:178.721333pt;}
.y164{bottom:179.622667pt;}
.y21{bottom:180.150667pt;}
.yfe{bottom:181.509333pt;}
.y4e{bottom:181.972000pt;}
.y139{bottom:185.322667pt;}
.y145{bottom:186.224000pt;}
.yb4{bottom:189.156000pt;}
.yc6{bottom:190.057333pt;}
.y16c{bottom:191.370667pt;}
.y186{bottom:194.026667pt;}
.y76{bottom:195.984000pt;}
.y87{bottom:196.885333pt;}
.y15c{bottom:198.985333pt;}
.y163{bottom:199.886667pt;}
.y20{bottom:200.414667pt;}
.y122{bottom:201.305333pt;}
.yfd{bottom:201.773333pt;}
.y4d{bottom:202.236000pt;}
.y138{bottom:205.586667pt;}
.y144{bottom:206.488000pt;}
.yb3{bottom:209.420000pt;}
.yc5{bottom:210.321333pt;}
.y16b{bottom:211.634667pt;}
.y185{bottom:214.292000pt;}
.y75{bottom:216.249333pt;}
.y86{bottom:217.150667pt;}
.y15b{bottom:219.249333pt;}
.y162{bottom:220.150667pt;}
.y1f{bottom:220.678667pt;}
.y121{bottom:221.569333pt;}
.yfc{bottom:222.037333pt;}
.y4c{bottom:222.500000pt;}
.y137{bottom:225.850667pt;}
.y143{bottom:226.752000pt;}
.yb2{bottom:229.684000pt;}
.yc4{bottom:230.585333pt;}
.y184{bottom:234.556000pt;}
.y74{bottom:236.513333pt;}
.y85{bottom:237.414667pt;}
.y16a{bottom:241.197333pt;}
.yfb{bottom:242.301333pt;}
.y4b{bottom:242.764000pt;}
.y120{bottom:244.490667pt;}
.y136{bottom:246.114667pt;}
.y142{bottom:247.016000pt;}
.yb1{bottom:249.948000pt;}
.yc3{bottom:250.849333pt;}
.y183{bottom:254.820000pt;}
.y73{bottom:256.777333pt;}
.y84{bottom:257.678667pt;}
.yfa{bottom:262.566667pt;}
.y4a{bottom:263.029333pt;}
.y1e{bottom:266.181333pt;}
.y135{bottom:266.378667pt;}
.y141{bottom:267.280000pt;}
.y11f{bottom:267.410667pt;}
.yb0{bottom:270.213333pt;}
.yc2{bottom:271.113333pt;}
.y15a{bottom:272.294667pt;}
.y182{bottom:275.084000pt;}
.y72{bottom:277.041333pt;}
.y83{bottom:277.942667pt;}
.y49{bottom:283.293333pt;}
.y134{bottom:286.642667pt;}
.y140{bottom:287.544000pt;}
.y11e{bottom:287.674667pt;}
.yaf{bottom:290.477333pt;}
.yc1{bottom:291.378667pt;}
.yf9{bottom:292.128000pt;}
.y159{bottom:292.558667pt;}
.y181{bottom:295.348000pt;}
.y71{bottom:297.305333pt;}
.y82{bottom:298.206667pt;}
.y1d{bottom:302.780000pt;}
.y48{bottom:303.557333pt;}
.y133{bottom:306.906667pt;}
.y13f{bottom:307.808000pt;}
.yae{bottom:310.741333pt;}
.yc0{bottom:311.642667pt;}
.y158{bottom:312.822667pt;}
.y180{bottom:315.612000pt;}
.y11d{bottom:317.265333pt;}
.y70{bottom:317.569333pt;}
.y81{bottom:318.470667pt;}
.y1c{bottom:319.290667pt;}
.y47{bottom:323.821333pt;}
.yad{bottom:331.005333pt;}
.ye2{bottom:331.568000pt;}
.y1b{bottom:331.614667pt;}
.ybf{bottom:331.906667pt;}
.yf8{bottom:332.469333pt;}
.y157{bottom:333.086667pt;}
.y17f{bottom:335.876000pt;}
.y11c{bottom:337.529333pt;}
.y6f{bottom:337.833333pt;}
.y80{bottom:338.734667pt;}
.y46{bottom:344.085333pt;}
.y1a{bottom:351.129333pt;}
.yac{bottom:351.269333pt;}
.ye1{bottom:351.832000pt;}
.ybe{bottom:352.170667pt;}
.yf7{bottom:352.733333pt;}
.y156{bottom:353.350667pt;}
.y132{bottom:353.442667pt;}
.y17e{bottom:356.140000pt;}
.y11b{bottom:357.793333pt;}
.y6e{bottom:358.097333pt;}
.y7f{bottom:358.998667pt;}
.y45{bottom:364.349333pt;}
.yab{bottom:371.533333pt;}
.ye0{bottom:372.096000pt;}
.ybd{bottom:372.434667pt;}
.y19{bottom:372.628000pt;}
.yf6{bottom:372.997333pt;}
.y155{bottom:373.616000pt;}
.y131{bottom:373.706667pt;}
.y17d{bottom:376.404000pt;}
.y11a{bottom:378.057333pt;}
.y6d{bottom:378.361333pt;}
.y7e{bottom:379.262667pt;}
.y44{bottom:384.613333pt;}
.yaa{bottom:391.797333pt;}
.ydf{bottom:392.360000pt;}
.ybc{bottom:392.698667pt;}
.yf5{bottom:393.261333pt;}
.y154{bottom:393.880000pt;}
.y130{bottom:396.626667pt;}
.y17c{bottom:396.668000pt;}
.y6c{bottom:398.625333pt;}
.y7d{bottom:399.526667pt;}
.y18{bottom:404.097333pt;}
.y43{bottom:404.877333pt;}
.ya9{bottom:412.061333pt;}
.yde{bottom:412.624000pt;}
.ybb{bottom:412.962667pt;}
.yf4{bottom:413.525333pt;}
.y153{bottom:414.144000pt;}
.y12f{bottom:416.890667pt;}
.y17b{bottom:416.932000pt;}
.y6b{bottom:418.889333pt;}
.y119{bottom:419.041333pt;}
.y7c{bottom:419.790667pt;}
.y17{bottom:423.610667pt;}
.y42{bottom:425.141333pt;}
.ya8{bottom:432.325333pt;}
.ydd{bottom:432.888000pt;}
.yba{bottom:433.226667pt;}
.yf3{bottom:433.789333pt;}
.y152{bottom:434.408000pt;}
.y17a{bottom:437.196000pt;}
.y12e{bottom:439.812000pt;}
.y16{bottom:443.124000pt;}
.y41{bottom:445.405333pt;}
.y118{bottom:449.729333pt;}
.ydc{bottom:453.152000pt;}
.yf2{bottom:454.053333pt;}
.y151{bottom:454.672000pt;}
.y6a{bottom:455.994667pt;}
.y179{bottom:457.460000pt;}
.y12d{bottom:460.076000pt;}
.y15{bottom:462.637333pt;}
.y40{bottom:465.669333pt;}
.y10d{bottom:469.092000pt;}
.y117{bottom:469.993333pt;}
.ydb{bottom:473.416000pt;}
.yf1{bottom:474.317333pt;}
.y150{bottom:474.936000pt;}
.y69{bottom:476.260000pt;}
.y178{bottom:477.724000pt;}
.y14{bottom:482.150667pt;}
.y12c{bottom:482.996000pt;}
.y3f{bottom:485.933333pt;}
.y10c{bottom:489.356000pt;}
.y116{bottom:490.257333pt;}
.yda{bottom:493.680000pt;}
.yf0{bottom:494.581333pt;}
.y14f{bottom:495.200000pt;}
.y68{bottom:496.524000pt;}
.y177{bottom:497.989333pt;}
.y13{bottom:501.665333pt;}
.ya7{bottom:505.296000pt;}
.y12b{bottom:505.917333pt;}
.y3e{bottom:506.197333pt;}
.y10b{bottom:509.620000pt;}
.y115{bottom:510.521333pt;}
.yd9{bottom:513.944000pt;}
.yef{bottom:514.845333pt;}
.y14e{bottom:515.464000pt;}
.y67{bottom:516.788000pt;}
.y176{bottom:518.253333pt;}
.y12{bottom:521.178667pt;}
.ya6{bottom:525.561333pt;}
.y12a{bottom:526.181333pt;}
.y3d{bottom:526.461333pt;}
.y10a{bottom:529.884000pt;}
.y114{bottom:530.785333pt;}
.yd8{bottom:534.208000pt;}
.yee{bottom:535.109333pt;}
.y14d{bottom:535.728000pt;}
.y66{bottom:537.052000pt;}
.y175{bottom:538.517333pt;}
.y11{bottom:540.692000pt;}
.ya5{bottom:545.825333pt;}
.y3c{bottom:546.726667pt;}
.y109{bottom:550.149333pt;}
.y113{bottom:551.049333pt;}
.yd7{bottom:554.472000pt;}
.yed{bottom:555.373333pt;}
.y129{bottom:555.772000pt;}
.y14c{bottom:555.992000pt;}
.y65{bottom:557.316000pt;}
.y174{bottom:558.781333pt;}
.y10{bottom:560.205333pt;}
.ya4{bottom:566.089333pt;}
.y3b{bottom:566.990667pt;}
.y108{bottom:570.413333pt;}
.y112{bottom:571.314667pt;}
.yd6{bottom:574.736000pt;}
.y14b{bottom:575.354667pt;}
.yec{bottom:575.637333pt;}
.y64{bottom:577.580000pt;}
.y173{bottom:579.045333pt;}
.yf{bottom:579.718667pt;}
.ya3{bottom:586.353333pt;}
.y3a{bottom:587.254667pt;}
.y107{bottom:590.677333pt;}
.y111{bottom:591.578667pt;}
.yd5{bottom:595.001333pt;}
.yeb{bottom:595.902667pt;}
.y128{bottom:596.756000pt;}
.y63{bottom:597.844000pt;}
.ye{bottom:599.233333pt;}
.ya2{bottom:606.617333pt;}
.y39{bottom:607.518667pt;}
.y172{bottom:608.608000pt;}
.y106{bottom:610.941333pt;}
.y110{bottom:611.842667pt;}
.yd4{bottom:615.265333pt;}
.yea{bottom:616.166667pt;}
.y127{bottom:617.020000pt;}
.y62{bottom:618.108000pt;}
.yd{bottom:618.746667pt;}
.ya1{bottom:626.881333pt;}
.y38{bottom:627.782667pt;}
.y105{bottom:631.205333pt;}
.y10f{bottom:632.106667pt;}
.yd3{bottom:635.529333pt;}
.ye9{bottom:636.430667pt;}
.yc{bottom:638.260000pt;}
.y61{bottom:638.372000pt;}
.ya0{bottom:647.145333pt;}
.y37{bottom:648.046667pt;}
.y104{bottom:651.469333pt;}
.y10e{bottom:652.370667pt;}
.yd2{bottom:655.793333pt;}
.ye8{bottom:656.694667pt;}
.yb{bottom:657.773333pt;}
.y60{bottom:658.636000pt;}
.y9f{bottom:667.409333pt;}
.y36{bottom:668.310667pt;}
.yd1{bottom:676.057333pt;}
.ye7{bottom:676.958667pt;}
.ya{bottom:677.286667pt;}
.y5f{bottom:678.900000pt;}
.y9e{bottom:687.673333pt;}
.y35{bottom:688.574667pt;}
.yd0{bottom:696.321333pt;}
.y9{bottom:696.800000pt;}
.ye6{bottom:697.222667pt;}
.y5e{bottom:699.164000pt;}
.y9d{bottom:707.937333pt;}
.y34{bottom:708.838667pt;}
.y8{bottom:716.314667pt;}
.ycf{bottom:716.585333pt;}
.ye5{bottom:717.486667pt;}
.y5d{bottom:719.428000pt;}
.y9c{bottom:728.201333pt;}
.y33{bottom:729.102667pt;}
.y7{bottom:735.828000pt;}
.yce{bottom:736.849333pt;}
.ye4{bottom:737.750667pt;}
.y5c{bottom:739.693333pt;}
.y9b{bottom:748.465333pt;}
.y32{bottom:749.366667pt;}
.y6{bottom:755.341333pt;}
.ycd{bottom:757.113333pt;}
.ye3{bottom:758.014667pt;}
.y5b{bottom:759.957333pt;}
.y9a{bottom:768.729333pt;}
.y31{bottom:769.630667pt;}
.y5a{bottom:780.221333pt;}
.y99{bottom:788.993333pt;}
.y30{bottom:789.894667pt;}
.y59{bottom:800.485333pt;}
.y98{bottom:809.258667pt;}
.y2f{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.y58{bottom:820.749333pt;}
.y97{bottom:829.522667pt;}
.y2e{bottom:830.424000pt;}
.y57{bottom:841.013333pt;}
.y96{bottom:849.786667pt;}
.y2d{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y56{bottom:861.277333pt;}
.y95{bottom:870.050667pt;}
.y2c{bottom:870.952000pt;}
.y55{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y94{bottom:890.314667pt;}
.y2b{bottom:891.216000pt;}
.y54{bottom:901.805333pt;}
.y93{bottom:910.578667pt;}
.y2a{bottom:911.480000pt;}
.y53{bottom:922.069333pt;}
.y92{bottom:930.842667pt;}
.y29{bottom:931.744000pt;}
.y91{bottom:951.106667pt;}
.y52{bottom:951.632000pt;}
.y28{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y27{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h6{height:28.692288pt;}
.he{height:31.880000pt;}
.h1{height:31.880400pt;}
.h7{height:32.900710pt;}
.h10{height:33.601520pt;}
.h12{height:33.602082pt;}
.h5{height:36.556100pt;}
.h4{height:36.874903pt;}
.hf{height:41.917344pt;}
.h9{height:42.039552pt;}
.hc{height:42.406176pt;}
.h3{height:47.523004pt;}
.h8{height:47.937449pt;}
.h2{height:63.169041pt;}
.hd{height:81.250667pt;}
.hb{height:81.251067pt;}
.h11{height:82.258667pt;}
.ha{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385333pt;}
.x1d{left:121.356000pt;}
.x14{left:127.738667pt;}
.xe{left:136.062667pt;}
.x6{left:158.261333pt;}
.x22{left:160.240000pt;}
.x21{left:161.385333pt;}
.xc{left:177.610667pt;}
.x5{left:184.633333pt;}
.xa{left:218.973333pt;}
.x13{left:233.553333pt;}
.x15{left:238.166667pt;}
.x1e{left:296.036000pt;}
.x16{left:299.461333pt;}
.xd{left:359.132000pt;}
.x9{left:364.560000pt;}
.x4{left:371.048000pt;}
.xb{left:373.034667pt;}
.x17{left:383.433333pt;}
.x1f{left:397.898667pt;}
.x10{left:402.290667pt;}
.xf{left:412.752000pt;}
.x20{left:424.892000pt;}
.x12{left:435.429333pt;}
.x18{left:444.728000pt;}
.x19{left:506.021333pt;}
.x2{left:510.021333pt;}
.x11{left:513.840000pt;}
.x7{left:534.046667pt;}
.x8{left:544.378667pt;}
.x1a{left:589.993333pt;}
.x1{left:618.953333pt;}
.x1b{left:652.252000pt;}
.x1c{left:664.392000pt;}
}




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