
    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_aa99ffe4ea2a5eb976e20834.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1f5125995c6cbf37277eacb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_d005f26afb1fc4aca0687160.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_363624ccca45a4b50ad3ecd2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0b7b0536b4e73d8d2b02664.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6832a12a5c7540fd5bd57b47.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ef1ed70770fa5fe74647a36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.618000;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_1b03a949830a33db5ce5d9f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_703d97501fb79a620b7a7e4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb19d26bc398c0138ce54d37.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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_6f40881abf223d38ab2b68b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.540000;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_4df77fd61031f1d6c181e8b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_54bf16ed5b8c4c69ae270714.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708000;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_cd0961fccdf9c77a9280af9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.502000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{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);}
.m9{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m3{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);}
.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);}
.m4{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);}
.m24{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m11{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);}
.m10{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);}
.m5{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);}
.m17{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);}
.m7{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);}
.mb{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);}
.m26{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);}
.m20{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);}
.ma{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);}
.m15{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);}
.m1d{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);}
.m27{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);}
.m21{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);}
.m2{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);}
.m19{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);}
.m1b{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);}
.me{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);}
.m23{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);}
.m28{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);}
.m18{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);}
.m1a{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);}
.m25{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);}
.m14{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);}
.mf{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m13{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);}
.v5{vertical-align:-49.848000px;}
.v11{vertical-align:-22.980000px;}
.vb{vertical-align:-19.530000px;}
.v10{vertical-align:-15.840000px;}
.vd{vertical-align:-11.778000px;}
.v1{vertical-align:-9.666000px;}
.v7{vertical-align:-8.064000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.530000px;}
.v6{vertical-align:12.192000px;}
.v9{vertical-align:18.600000px;}
.v8{vertical-align:20.814000px;}
.vc{vertical-align:31.524000px;}
.v3{vertical-align:36.930000px;}
.v2{vertical-align:40.362000px;}
.vf{vertical-align:56.220000px;}
.v4{vertical-align:73.836000px;}
.ve{vertical-align:91.956000px;}
.ls25{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000893px;}
.ls96{letter-spacing:0.001145px;}
.ls8d{letter-spacing:0.001167px;}
.ls84{letter-spacing:0.002141px;}
.ls39{letter-spacing:0.003370px;}
.ls40{letter-spacing:0.132605px;}
.ls5e{letter-spacing:0.133853px;}
.ls70{letter-spacing:0.134582px;}
.ls2d{letter-spacing:0.138605px;}
.ls6e{letter-spacing:0.139853px;}
.ls77{letter-spacing:0.140582px;}
.ls97{letter-spacing:0.211724px;}
.ls94{letter-spacing:0.302760px;}
.ls45{letter-spacing:0.532320px;}
.ls33{letter-spacing:0.535133px;}
.ls19{letter-spacing:0.537082px;}
.ls3b{letter-spacing:0.538320px;}
.ls3f{letter-spacing:0.541133px;}
.ls92{letter-spacing:0.871145px;}
.ls5d{letter-spacing:1.001846px;}
.ls48{letter-spacing:1.075133px;}
.ls47{letter-spacing:1.078320px;}
.ls1b{letter-spacing:1.339133px;}
.ls85{letter-spacing:1.342858px;}
.ls1f{letter-spacing:1.345133px;}
.ls18{letter-spacing:1.348320px;}
.ls35{letter-spacing:1.375167px;}
.ls0{letter-spacing:1.448630px;}
.ls26{letter-spacing:1.482115px;}
.ls2a{letter-spacing:1.526821px;}
.ls69{letter-spacing:1.532821px;}
.ls10{letter-spacing:1.609133px;}
.ls50{letter-spacing:1.612320px;}
.ls12{letter-spacing:1.615133px;}
.ls99{letter-spacing:1.734195px;}
.ls3d{letter-spacing:1.743377px;}
.ls4f{letter-spacing:1.749377px;}
.ls5c{letter-spacing:1.880582px;}
.ls6{letter-spacing:1.880630px;}
.ls34{letter-spacing:1.884605px;}
.lsf{letter-spacing:1.886630px;}
.ls90{letter-spacing:2.118195px;}
.lsd{letter-spacing:2.149133px;}
.ls8{letter-spacing:2.152320px;}
.ls4{letter-spacing:2.155133px;}
.ls4e{letter-spacing:2.445888px;}
.ls8b{letter-spacing:2.617167px;}
.ls88{letter-spacing:2.623167px;}
.ls23{letter-spacing:2.685082px;}
.ls7a{letter-spacing:2.689133px;}
.ls1c{letter-spacing:2.691082px;}
.ls28{letter-spacing:2.738218px;}
.ls67{letter-spacing:2.900821px;}
.ls3e{letter-spacing:2.989167px;}
.ls38{letter-spacing:3.073687px;}
.ls27{letter-spacing:3.228115px;}
.ls9{letter-spacing:3.336010px;}
.ls64{letter-spacing:3.422812px;}
.ls6a{letter-spacing:3.428812px;}
.ls71{letter-spacing:3.547133px;}
.ls76{letter-spacing:3.553133px;}
.ls4b{letter-spacing:3.790186px;}
.ls63{letter-spacing:3.792422px;}
.ls4c{letter-spacing:3.796186px;}
.ls7{letter-spacing:4.034630px;}
.ls1d{letter-spacing:4.058582px;}
.ls1e{letter-spacing:4.064582px;}
.ls56{letter-spacing:4.298774px;}
.ls72{letter-spacing:4.514821px;}
.ls74{letter-spacing:4.520821px;}
.ls7d{letter-spacing:4.567853px;}
.ls79{letter-spacing:4.573853px;}
.ls4a{letter-spacing:4.599888px;}
.ls3c{letter-spacing:4.819687px;}
.ls59{letter-spacing:5.002214px;}
.ls95{letter-spacing:5.127959px;}
.ls5{letter-spacing:5.484010px;}
.lse{letter-spacing:5.490010px;}
.ls32{letter-spacing:5.918448px;}
.ls6d{letter-spacing:5.940422px;}
.ls73{letter-spacing:5.946422px;}
.ls87{letter-spacing:6.044812px;}
.ls42{letter-spacing:6.067687px;}
.ls17{letter-spacing:6.212582px;}
.ls68{letter-spacing:6.410812px;}
.ls6c{letter-spacing:6.416812px;}
.ls46{letter-spacing:6.481526px;}
.ls3{letter-spacing:6.482582px;}
.ls91{letter-spacing:6.655723px;}
.ls75{letter-spacing:6.662821px;}
.ls6f{letter-spacing:6.668821px;}
.ls7c{letter-spacing:6.971760px;}
.ls93{letter-spacing:7.179357px;}
.ls6b{letter-spacing:7.368701px;}
.ls7b{letter-spacing:7.374701px;}
.ls98{letter-spacing:7.896324px;}
.ls49{letter-spacing:8.067677px;}
.ls36{letter-spacing:8.118595px;}
.ls3a{letter-spacing:8.215687px;}
.ls41{letter-spacing:8.221687px;}
.ls8f{letter-spacing:8.564812px;}
.ls2e{letter-spacing:8.755687px;}
.ls80{letter-spacing:9.317846px;}
.ls60{letter-spacing:9.371846px;}
.ls62{letter-spacing:9.533846px;}
.ls2b{letter-spacing:9.805167px;}
.ls2c{letter-spacing:9.823167px;}
.ls57{letter-spacing:10.879167px;}
.ls78{letter-spacing:11.552218px;}
.ls44{letter-spacing:11.836973px;}
.ls52{letter-spacing:11.951702px;}
.ls53{letter-spacing:11.954218px;}
.ls51{letter-spacing:11.955744px;}
.ls15{letter-spacing:12.518819px;}
.ls7e{letter-spacing:12.826601px;}
.ls55{letter-spacing:12.902218px;}
.ls81{letter-spacing:13.417310px;}
.ls83{letter-spacing:13.449744px;}
.ls43{letter-spacing:13.865347px;}
.ls22{letter-spacing:14.395724px;}
.ls2f{letter-spacing:14.408218px;}
.ls8c{letter-spacing:14.573522px;}
.lsb{letter-spacing:14.939347px;}
.ls89{letter-spacing:14.943744px;}
.ls1{letter-spacing:14.945347px;}
.ls66{letter-spacing:15.743165px;}
.ls31{letter-spacing:15.746218px;}
.ls61{letter-spacing:15.749165px;}
.ls37{letter-spacing:17.629133px;}
.lsa{letter-spacing:17.635133px;}
.ls7f{letter-spacing:17.783971px;}
.ls65{letter-spacing:17.843971px;}
.ls5f{letter-spacing:17.849971px;}
.ls5b{letter-spacing:17.900429px;}
.ls5a{letter-spacing:19.460821px;}
.ls54{letter-spacing:19.999133px;}
.ls82{letter-spacing:20.077978px;}
.ls30{letter-spacing:20.245642px;}
.ls11{letter-spacing:21.035347px;}
.ls1a{letter-spacing:21.041347px;}
.ls58{letter-spacing:21.617347px;}
.ls8e{letter-spacing:22.115347px;}
.ls86{letter-spacing:34.625347px;}
.ls4d{letter-spacing:37.655347px;}
.ls2{letter-spacing:44.126819px;}
.lsc{letter-spacing:44.132819px;}
.ls14{letter-spacing:60.869347px;}
.ls21{letter-spacing:61.157347px;}
.ls13{letter-spacing:95.917133px;}
.ls20{letter-spacing:96.211133px;}
.ls8a{letter-spacing:112.729133px;}
.ls24{letter-spacing:243.733133px;}
.ls16{letter-spacing:313.093133px;}
.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;}
}
.ws1d{word-spacing:-55.089562px;}
.ws86{word-spacing:-44.683469px;}
.ws75{word-spacing:-37.712678px;}
.ws7d{word-spacing:-37.461216px;}
.ws82{word-spacing:-37.455216px;}
.ws44{word-spacing:-34.269581px;}
.ws92{word-spacing:-27.272625px;}
.ws46{word-spacing:-26.468813px;}
.ws50{word-spacing:-26.415014px;}
.ws74{word-spacing:-26.361216px;}
.ws55{word-spacing:-25.877030px;}
.ws54{word-spacing:-25.823232px;}
.ws60{word-spacing:-25.608038px;}
.ws5f{word-spacing:-25.554240px;}
.ws77{word-spacing:-24.925315px;}
.ws79{word-spacing:-24.767021px;}
.ws7a{word-spacing:-24.761021px;}
.ws5a{word-spacing:-23.886490px;}
.ws73{word-spacing:-17.446387px;}
.ws71{word-spacing:-15.970387px;}
.ws3{word-spacing:-14.943900px;}
.ws2d{word-spacing:-13.449600px;}
.ws72{word-spacing:-11.990736px;}
.ws63{word-spacing:-11.875632px;}
.ws64{word-spacing:-11.821834px;}
.ws8a{word-spacing:-10.909050px;}
.ws81{word-spacing:-10.460700px;}
.ws1b{word-spacing:-10.086194px;}
.ws1e{word-spacing:-7.248629px;}
.ws3a{word-spacing:-3.981082px;}
.ws6d{word-spacing:-3.873485px;}
.ws13{word-spacing:-3.819686px;}
.ws51{word-spacing:-3.550694px;}
.ws14{word-spacing:-3.496896px;}
.ws39{word-spacing:-3.389299px;}
.ws49{word-spacing:-3.227904px;}
.ws8b{word-spacing:-3.066509px;}
.ws28{word-spacing:-3.012710px;}
.ws3d{word-spacing:-2.958912px;}
.wsd{word-spacing:-2.851315px;}
.wsb3{word-spacing:-2.764768px;}
.wsb5{word-spacing:-2.761625px;}
.ws5b{word-spacing:-2.689920px;}
.ws88{word-spacing:-2.636122px;}
.ws16{word-spacing:-2.528525px;}
.ws30{word-spacing:-2.420928px;}
.ws2f{word-spacing:-2.367130px;}
.ws41{word-spacing:-2.313331px;}
.ws84{word-spacing:-2.148470px;}
.ws5c{word-spacing:-2.098138px;}
.ws5d{word-spacing:-2.044339px;}
.ws4b{word-spacing:-1.990541px;}
.ws78{word-spacing:-1.936742px;}
.ws15{word-spacing:-1.829146px;}
.ws19{word-spacing:-1.721549px;}
.ws4a{word-spacing:-1.667750px;}
.wsb2{word-spacing:-1.590026px;}
.ws80{word-spacing:-1.464498px;}
.ws8f{word-spacing:-1.398758px;}
.ws8e{word-spacing:-1.344960px;}
.wsbf{word-spacing:-1.297127px;}
.ws17{word-spacing:-1.237363px;}
.ws90{word-spacing:-1.183565px;}
.wsa2{word-spacing:-1.129756px;}
.ws12{word-spacing:-1.075968px;}
.ws83{word-spacing:-1.074192px;}
.ws9a{word-spacing:-0.968371px;}
.ws22{word-spacing:-0.914573px;}
.ws40{word-spacing:-0.699379px;}
.ws7e{word-spacing:-0.645581px;}
.wsaf{word-spacing:-0.627642px;}
.ws6c{word-spacing:-0.591782px;}
.wsb7{word-spacing:-0.543956px;}
.ws38{word-spacing:-0.537984px;}
.ws56{word-spacing:-0.484186px;}
.ws9d{word-spacing:-0.430387px;}
.ws53{word-spacing:-0.322790px;}
.ws3b{word-spacing:-0.268992px;}
.wsb{word-spacing:-0.215194px;}
.ws94{word-spacing:-0.209214px;}
.wsa6{word-spacing:-0.167371px;}
.ws6{word-spacing:-0.161395px;}
.ws97{word-spacing:-0.125528px;}
.ws29{word-spacing:-0.107597px;}
.ws93{word-spacing:-0.083686px;}
.ws4{word-spacing:-0.065455px;}
.ws1f{word-spacing:-0.053798px;}
.ws48{word-spacing:-0.043636px;}
.wsae{word-spacing:-0.041843px;}
.ws2{word-spacing:0.000000px;}
.ws61{word-spacing:0.000682px;}
.ws25{word-spacing:0.002237px;}
.ws26{word-spacing:0.006547px;}
.ws35{word-spacing:0.041843px;}
.wsa{word-spacing:0.053798px;}
.wsb1{word-spacing:0.083686px;}
.wsc{word-spacing:0.107597px;}
.ws36{word-spacing:0.125528px;}
.ws8{word-spacing:0.161395px;}
.wsbe{word-spacing:0.209214px;}
.ws20{word-spacing:0.215194px;}
.ws7{word-spacing:0.268992px;}
.wsf{word-spacing:0.322790px;}
.ws95{word-spacing:0.334742px;}
.ws3c{word-spacing:0.376589px;}
.ws76{word-spacing:0.430387px;}
.ws6f{word-spacing:0.699379px;}
.ws65{word-spacing:0.753178px;}
.ws3f{word-spacing:0.806976px;}
.wsa5{word-spacing:0.836856px;}
.ws4f{word-spacing:0.860774px;}
.wsaa{word-spacing:0.878699px;}
.ws4e{word-spacing:0.914573px;}
.ws21{word-spacing:0.968371px;}
.wsc2{word-spacing:1.087913px;}
.wse{word-spacing:1.129766px;}
.ws33{word-spacing:1.183565px;}
.wsb9{word-spacing:1.213441px;}
.ws6a{word-spacing:1.344960px;}
.ws8d{word-spacing:1.398758px;}
.ws3e{word-spacing:1.506355px;}
.ws8c{word-spacing:1.560154px;}
.ws59{word-spacing:1.667750px;}
.wsac{word-spacing:1.715555px;}
.wsa0{word-spacing:1.721549px;}
.ws2b{word-spacing:1.775347px;}
.ws37{word-spacing:1.829146px;}
.ws45{word-spacing:1.936742px;}
.ws2e{word-spacing:2.044339px;}
.ws31{word-spacing:2.098138px;}
.ws9c{word-spacing:2.151936px;}
.ws1a{word-spacing:2.205734px;}
.ws43{word-spacing:2.259533px;}
.ws52{word-spacing:2.313331px;}
.ws7c{word-spacing:2.367130px;}
.wsa9{word-spacing:2.385040px;}
.wsa4{word-spacing:2.468725px;}
.ws6e{word-spacing:2.474726px;}
.ws9f{word-spacing:2.528525px;}
.ws98{word-spacing:2.594254px;}
.ws7b{word-spacing:2.851315px;}
.ws70{word-spacing:2.958912px;}
.ws96{word-spacing:3.054524px;}
.ws9{word-spacing:3.066509px;}
.ws91{word-spacing:3.281702px;}
.ws34{word-spacing:3.443098px;}
.ws9b{word-spacing:3.496896px;}
.ws2c{word-spacing:3.658291px;}
.ws18{word-spacing:3.712090px;}
.wsbb{word-spacing:3.724009px;}
.ws7f{word-spacing:3.765852px;}
.wsb6{word-spacing:4.058752px;}
.ws5{word-spacing:4.142477px;}
.ws9e{word-spacing:4.411469px;}
.ws2a{word-spacing:4.572864px;}
.wsa7{word-spacing:4.602766px;}
.ws99{word-spacing:4.949453px;}
.ws6b{word-spacing:5.003251px;}
.ws32{word-spacing:5.272243px;}
.ws11{word-spacing:6.079219px;}
.wsb4{word-spacing:7.657232px;}
.ws87{word-spacing:7.975690px;}
.ws1c{word-spacing:8.930534px;}
.wsb0{word-spacing:8.996202px;}
.wsa3{word-spacing:9.289102px;}
.wsb8{word-spacing:9.874901px;}
.wsa1{word-spacing:10.293329px;}
.wsbd{word-spacing:10.377014px;}
.wsa8{word-spacing:10.418857px;}
.wsc3{word-spacing:10.502543px;}
.wsc1{word-spacing:10.628071px;}
.wsab{word-spacing:11.297556px;}
.wsc4{word-spacing:11.402210px;}
.wsc0{word-spacing:11.405606px;}
.wsad{word-spacing:11.449087px;}
.wsba{word-spacing:11.632298px;}
.ws62{word-spacing:11.905690px;}
.ws57{word-spacing:12.925934px;}
.ws67{word-spacing:13.180608px;}
.ws68{word-spacing:13.288205px;}
.ws4c{word-spacing:13.297999px;}
.ws58{word-spacing:13.393690px;}
.ws27{word-spacing:13.394122px;}
.ws23{word-spacing:13.395802px;}
.wsbc{word-spacing:14.142866px;}
.ws69{word-spacing:14.910698px;}
.ws4d{word-spacing:14.940698px;}
.ws89{word-spacing:16.092698px;}
.ws42{word-spacing:16.298195px;}
.ws5e{word-spacing:16.998698px;}
.ws1{word-spacing:17.861069px;}
.ws47{word-spacing:17.886698px;}
.ws66{word-spacing:18.183859px;}
.ws0{word-spacing:25.719808px;}
.ws85{word-spacing:40.285690px;}
.ws24{word-spacing:63.589709px;}
.ws10{word-spacing:65.389145px;}
._d{margin-left:-4.411469px;}
._2{margin-left:-3.346268px;}
._0{margin-left:-1.549386px;}
._3{width:1.570910px;}
._4{width:3.054534px;}
._b{width:4.233203px;}
._f{width:5.236344px;}
._c{width:6.458986px;}
._a{width:10.598285px;}
._8{width:12.384400px;}
._5{width:13.557197px;}
._1{width:14.740762px;}
._10{width:16.946496px;}
._7{width:18.020899px;}
._13{width:19.681696px;}
._e{width:22.293176px;}
._11{width:24.310667px;}
._14{width:29.068195px;}
._12{width:30.797503px;}
._6{width:59.770022px;}
._9{width:65.454600px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.877000px;}
.fs7{font-size:41.842800px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y33{bottom:126.979500px;}
.y169{bottom:130.939500px;}
.y60{bottom:139.311000px;}
.yba{bottom:140.133000px;}
.y92{bottom:143.271000px;}
.y32{bottom:143.416500px;}
.yb9{bottom:144.781500px;}
.y5f{bottom:151.266000px;}
.y5e{bottom:155.226000px;}
.y31{bottom:159.855000px;}
.y90{bottom:163.081500px;}
.y15a{bottom:163.221000px;}
.y91{bottom:167.964000px;}
.y159{bottom:175.176000px;}
.y30{bottom:176.293500px;}
.y5d{bottom:176.529000px;}
.y8f{bottom:179.520000px;}
.y11e{bottom:179.601000px;}
.y158{bottom:187.131000px;}
.y157{bottom:191.091000px;}
.yde{bottom:192.732000px;}
.y5c{bottom:192.967500px;}
.y8e{bottom:195.958500px;}
.y11d{bottom:196.039500px;}
.y2e{bottom:198.432000px;}
.y156{bottom:199.749000px;}
.y2d{bottom:207.658500px;}
.y2f{bottom:207.846000px;}
.ydd{bottom:209.170500px;}
.y5b{bottom:209.406000px;}
.y155{bottom:212.080500px;}
.y8d{bottom:212.397000px;}
.y11c{bottom:216.192000px;}
.y154{bottom:224.035500px;}
.ydc{bottom:225.609000px;}
.y5a{bottom:225.844500px;}
.y8b{bottom:228.835500px;}
.y119{bottom:232.978500px;}
.y2c{bottom:233.415000px;}
.y8c{bottom:233.716500px;}
.y153{bottom:235.990500px;}
.ydb{bottom:242.047500px;}
.y59{bottom:242.281500px;}
.y2b{bottom:243.507000px;}
.y8a{bottom:245.274000px;}
.y11b{bottom:246.741000px;}
.y152{bottom:247.945500px;}
.y11a{bottom:249.430500px;}
.y151{bottom:251.905500px;}
.yda{bottom:258.486000px;}
.y58{bottom:258.720000px;}
.y2a{bottom:260.032500px;}
.y89{bottom:261.711000px;}
.y117{bottom:264.499500px;}
.y118{bottom:265.476000px;}
.y29{bottom:270.123000px;}
.yd9{bottom:274.924500px;}
.y150{bottom:274.956000px;}
.y57{bottom:275.158500px;}
.y88{bottom:278.149500px;}
.y114{bottom:281.284500px;}
.yb8{bottom:289.410000px;}
.yd8{bottom:291.363000px;}
.y14f{bottom:291.394500px;}
.y56{bottom:291.597000px;}
.y28{bottom:294.583500px;}
.y87{bottom:294.588000px;}
.y116{bottom:295.047000px;}
.y115{bottom:297.738000px;}
.yb7{bottom:305.848500px;}
.yd7{bottom:307.800000px;}
.y14e{bottom:307.833000px;}
.y55{bottom:308.035500px;}
.y27{bottom:311.022000px;}
.y86{bottom:311.026500px;}
.y113{bottom:318.202500px;}
.yd6{bottom:324.238500px;}
.yb6{bottom:325.678500px;}
.y26{bottom:327.459000px;}
.y84{bottom:327.465000px;}
.y14d{bottom:328.381500px;}
.y53{bottom:328.593000px;}
.y85{bottom:332.347500px;}
.y112{bottom:334.641000px;}
.y52{bottom:337.819500px;}
.y54{bottom:338.007000px;}
.y83{bottom:340.615500px;}
.yd5{bottom:340.677000px;}
.yb3{bottom:341.488500px;}
.y25{bottom:343.897500px;}
.y82{bottom:345.265500px;}
.y111{bottom:351.079500px;}
.yb5{bottom:355.251000px;}
.yd4{bottom:357.115500px;}
.yb4{bottom:357.940500px;}
.y24{bottom:360.336000px;}
.y14c{bottom:360.927000px;}
.y81{bottom:361.852500px;}
.y110{bottom:367.518000px;}
.y51{bottom:367.899000px;}
.yd3{bottom:373.554000px;}
.y23{bottom:376.774500px;}
.y14b{bottom:377.365500px;}
.yb2{bottom:378.286500px;}
.y80{bottom:378.289500px;}
.y50{bottom:384.337500px;}
.y10f{bottom:387.394500px;}
.y10e{bottom:388.371000px;}
.yd2{bottom:389.992500px;}
.y22{bottom:393.213000px;}
.y14a{bottom:393.804000px;}
.yb0{bottom:394.725000px;}
.y7f{bottom:394.728000px;}
.yb1{bottom:399.607500px;}
.y4f{bottom:400.776000px;}
.y10b{bottom:404.181000px;}
.yd1{bottom:406.431000px;}
.y21{bottom:409.651500px;}
.y149{bottom:410.242500px;}
.yaf{bottom:411.163500px;}
.y7e{bottom:411.166500px;}
.y4e{bottom:417.214500px;}
.y10d{bottom:417.943500px;}
.y10c{bottom:420.633000px;}
.yd0{bottom:422.869500px;}
.y20{bottom:426.090000px;}
.y148{bottom:426.681000px;}
.yae{bottom:427.602000px;}
.y7d{bottom:427.605000px;}
.y4c{bottom:433.651500px;}
.y4d{bottom:438.534000px;}
.ycf{bottom:439.308000px;}
.y10a{bottom:441.099000px;}
.y1f{bottom:442.528500px;}
.y147{bottom:443.119500px;}
.yad{bottom:444.040500px;}
.y7c{bottom:444.043500px;}
.y4b{bottom:450.090000px;}
.y168{bottom:455.746500px;}
.y109{bottom:457.537500px;}
.y1e{bottom:458.967000px;}
.y146{bottom:459.558000px;}
.yce{bottom:459.855000px;}
.yac{bottom:460.477500px;}
.y7b{bottom:460.482000px;}
.y4a{bottom:466.528500px;}
.y167{bottom:472.185000px;}
.y1d{bottom:475.405500px;}
.y145{bottom:475.995000px;}
.yab{bottom:476.916000px;}
.y7a{bottom:476.920500px;}
.y108{bottom:477.414000px;}
.y107{bottom:478.390500px;}
.y49{bottom:482.967000px;}
.y166{bottom:488.622000px;}
.y1c{bottom:491.844000px;}
.y144{bottom:492.433500px;}
.yaa{bottom:493.354500px;}
.y79{bottom:493.359000px;}
.y104{bottom:494.200500px;}
.ycd{bottom:497.124000px;}
.y48{bottom:499.405500px;}
.y165{bottom:505.060500px;}
.y106{bottom:507.963000px;}
.y1b{bottom:508.281000px;}
.ya9{bottom:509.793000px;}
.y78{bottom:509.797500px;}
.y105{bottom:510.652500px;}
.y143{bottom:511.846500px;}
.ycc{bottom:513.562500px;}
.y47{bottom:515.844000px;}
.y164{bottom:521.499000px;}
.ya8{bottom:526.231500px;}
.y77{bottom:526.236000px;}
.y140{bottom:528.633000px;}
.y1a{bottom:528.829500px;}
.ycb{bottom:530.001000px;}
.y102{bottom:531.118500px;}
.y46{bottom:532.282500px;}
.y103{bottom:536.001000px;}
.y163{bottom:537.937500px;}
.y142{bottom:542.395500px;}
.ya7{bottom:542.670000px;}
.y76{bottom:542.674500px;}
.y141{bottom:545.085000px;}
.yca{bottom:546.439500px;}
.y101{bottom:547.557000px;}
.y45{bottom:548.721000px;}
.y162{bottom:554.376000px;}
.yc9{bottom:562.876500px;}
.y75{bottom:563.221500px;}
.y19{bottom:564.298500px;}
.y13f{bottom:565.087500px;}
.y44{bottom:565.159500px;}
.yff{bottom:567.433500px;}
.yfe{bottom:568.410000px;}
.y161{bottom:570.814500px;}
.yc8{bottom:579.315000px;}
.y18{bottom:580.737000px;}
.y13e{bottom:581.526000px;}
.y43{bottom:581.598000px;}
.y100{bottom:584.220000px;}
.y160{bottom:587.253000px;}
.y74{bottom:595.179000px;}
.yc7{bottom:595.753500px;}
.y17{bottom:597.175500px;}
.y13d{bottom:597.964500px;}
.yfd{bottom:597.982500px;}
.y42{bottom:598.036500px;}
.yfc{bottom:600.672000px;}
.y15f{bottom:603.691500px;}
.y73{bottom:611.617500px;}
.yc6{bottom:612.192000px;}
.y13c{bottom:614.403000px;}
.y41{bottom:614.473500px;}
.yfb{bottom:615.741000px;}
.yfa{bottom:616.717500px;}
.y16{bottom:617.724000px;}
.y15e{bottom:620.130000px;}
.y72{bottom:628.056000px;}
.yc5{bottom:628.630500px;}
.y13b{bottom:630.840000px;}
.y40{bottom:630.912000px;}
.yf7{bottom:632.526000px;}
.y15d{bottom:636.568500px;}
.y71{bottom:644.493000px;}
.yc4{bottom:645.069000px;}
.yf9{bottom:646.288500px;}
.y13a{bottom:647.278500px;}
.yf8{bottom:648.979500px;}
.y15{bottom:650.658000px;}
.y15c{bottom:653.005500px;}
.y70{bottom:660.931500px;}
.yc3{bottom:661.507500px;}
.ya6{bottom:663.313500px;}
.y139{bottom:663.717000px;}
.y14{bottom:667.096500px;}
.yf6{bottom:669.444000px;}
.y6f{bottom:677.370000px;}
.yc2{bottom:677.946000px;}
.y3f{bottom:678.514500px;}
.ya5{bottom:679.752000px;}
.y138{bottom:680.155500px;}
.y13{bottom:683.535000px;}
.yf5{bottom:685.882500px;}
.y6e{bottom:693.808500px;}
.yc1{bottom:694.384500px;}
.y3e{bottom:694.953000px;}
.y137{bottom:696.594000px;}
.y12{bottom:699.973500px;}
.yf4{bottom:702.321000px;}
.ya4{bottom:703.881000px;}
.y6d{bottom:710.247000px;}
.ybf{bottom:710.823000px;}
.y3d{bottom:711.391500px;}
.ya3{bottom:711.763500px;}
.y136{bottom:713.032500px;}
.yc0{bottom:715.704000px;}
.y11{bottom:716.410500px;}
.yf3{bottom:718.759500px;}
.y6c{bottom:726.685500px;}
.y3c{bottom:727.830000px;}
.y134{bottom:729.471000px;}
.ya2{bottom:732.040500px;}
.y10{bottom:732.849000px;}
.y135{bottom:734.353500px;}
.yf2{bottom:735.198000px;}
.y6b{bottom:743.124000px;}
.y3b{bottom:744.268500px;}
.y133{bottom:745.909500px;}
.yf{bottom:749.287500px;}
.yf1{bottom:751.636500px;}
.ya1{bottom:756.171000px;}
.y15b{bottom:756.519000px;}
.y6a{bottom:759.562500px;}
.y3a{bottom:760.707000px;}
.y132{bottom:762.348000px;}
.ye{bottom:765.726000px;}
.yf0{bottom:768.075000px;}
.ya0{bottom:772.609500px;}
.ybe{bottom:775.164000px;}
.y69{bottom:776.001000px;}
.y39{bottom:777.145500px;}
.y131{bottom:778.786500px;}
.yd{bottom:782.164500px;}
.yef{bottom:784.513500px;}
.y9f{bottom:789.048000px;}
.ybd{bottom:791.601000px;}
.y17e{bottom:792.358500px;}
.y68{bottom:792.439500px;}
.y38{bottom:793.584000px;}
.y130{bottom:795.225000px;}
.y193{bottom:796.468500px;}
.yc{bottom:798.603000px;}
.yee{bottom:800.952000px;}
.y17d{bottom:804.313500px;}
.y9e{bottom:805.486500px;}
.ybc{bottom:808.039500px;}
.y192{bottom:808.423500px;}
.y67{bottom:808.876500px;}
.y37{bottom:810.021000px;}
.y12f{bottom:811.662000px;}
.yb{bottom:815.041500px;}
.y17c{bottom:816.268500px;}
.yed{bottom:817.390500px;}
.y191{bottom:820.378500px;}
.y9d{bottom:821.925000px;}
.ybb{bottom:824.478000px;}
.y66{bottom:825.315000px;}
.y36{bottom:826.459500px;}
.y12e{bottom:828.100500px;}
.y17b{bottom:828.223500px;}
.ya{bottom:831.480000px;}
.y190{bottom:832.333500px;}
.yec{bottom:833.827500px;}
.y9c{bottom:838.362000px;}
.y17a{bottom:840.180000px;}
.y65{bottom:841.753500px;}
.y18f{bottom:844.288500px;}
.y12d{bottom:844.539000px;}
.y9{bottom:847.918500px;}
.y35{bottom:849.670500px;}
.yeb{bottom:850.266000px;}
.y179{bottom:852.135000px;}
.y9b{bottom:854.800500px;}
.y18e{bottom:856.243500px;}
.y64{bottom:858.192000px;}
.y12c{bottom:860.977500px;}
.y178{bottom:864.090000px;}
.yea{bottom:866.704500px;}
.y18d{bottom:868.198500px;}
.y8{bottom:868.465500px;}
.y9a{bottom:871.239000px;}
.y34{bottom:871.903500px;}
.y63{bottom:874.630500px;}
.y177{bottom:876.045000px;}
.y12b{bottom:879.537000px;}
.y18c{bottom:880.155000px;}
.ye9{bottom:883.143000px;}
.y127{bottom:886.143000px;}
.y176{bottom:888.000000px;}
.y12a{bottom:889.476000px;}
.y62{bottom:891.069000px;}
.y99{bottom:891.070500px;}
.y18b{bottom:892.110000px;}
.y126{bottom:895.369500px;}
.y7{bottom:897.247500px;}
.ye8{bottom:899.581500px;}
.y175{bottom:899.955000px;}
.y129{bottom:902.013000px;}
.y18a{bottom:904.065000px;}
.y96{bottom:906.880500px;}
.y174{bottom:911.910000px;}
.y128{bottom:911.952000px;}
.y6{bottom:915.180000px;}
.ye7{bottom:916.020000px;}
.y98{bottom:920.643000px;}
.y97{bottom:923.332500px;}
.y173{bottom:923.865000px;}
.y189{bottom:927.975000px;}
.y125{bottom:930.609000px;}
.ye6{bottom:932.458500px;}
.y5{bottom:933.114000px;}
.y172{bottom:935.820000px;}
.y188{bottom:939.930000px;}
.y95{bottom:941.179500px;}
.y124{bottom:947.047500px;}
.y171{bottom:947.776500px;}
.ye5{bottom:948.897000px;}
.y4{bottom:951.046500px;}
.y187{bottom:951.885000px;}
.y94{bottom:957.618000px;}
.y170{bottom:959.731500px;}
.y123{bottom:963.486000px;}
.y186{bottom:963.840000px;}
.ye4{bottom:965.335500px;}
.y16f{bottom:971.686500px;}
.y185{bottom:975.795000px;}
.y184{bottom:975.796500px;}
.ye3{bottom:981.774000px;}
.y16e{bottom:983.641500px;}
.y3{bottom:984.786000px;}
.y122{bottom:984.982500px;}
.y183{bottom:987.751500px;}
.y121{bottom:992.569500px;}
.y16d{bottom:995.596500px;}
.ye2{bottom:998.211000px;}
.y182{bottom:999.706500px;}
.y120{bottom:1001.796000px;}
.y93{bottom:1003.938000px;}
.y16c{bottom:1007.551500px;}
.y181{bottom:1011.661500px;}
.ye1{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y16b{bottom:1019.506500px;}
.y180{bottom:1023.616500px;}
.ye0{bottom:1031.088000px;}
.y16a{bottom:1031.461500px;}
.y17f{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.ydf{bottom:1047.526500px;}
.y61{bottom:1050.964500px;}
.y11f{bottom:1052.409000px;}
.h17{height:0.000000px;}
.h22{height:22.167190px;}
.h11{height:24.164595px;}
.h19{height:30.449894px;}
.h16{height:30.458068px;}
.h12{height:30.754458px;}
.h21{height:31.287155px;}
.h10{height:32.072607px;}
.hd{height:37.551283px;}
.hf{height:37.658880px;}
.h15{height:38.573453px;}
.he{height:38.734848px;}
.hc{height:38.791824px;}
.h6{height:39.541824px;}
.h4{height:43.935066px;}
.h5{height:47.127312px;}
.h2{height:50.068378px;}
.h3{height:52.722432px;}
.h13{height:52.886607px;}
.h14{height:56.151283px;}
.h1a{height:57.167453px;}
.h20{height:58.099824px;}
.h18{height:63.596607px;}
.h1f{height:67.355894px;}
.h1{height:72.098095px;}
.h1d{height:74.457283px;}
.ha{height:75.503453px;}
.h1e{height:75.509453px;}
.h1b{height:75.961824px;}
.h7{height:78.935453px;}
.h9{height:78.941453px;}
.h8{height:79.909824px;}
.h1c{height:91.956000px;}
.hb{height:112.409453px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2c{left:79.621500px;}
.x8{left:80.697000px;}
.x42{left:84.952500px;}
.x33{left:86.826000px;}
.x8b{left:91.834500px;}
.x82{left:93.666000px;}
.x20{left:95.641500px;}
.x8c{left:99.352500px;}
.xde{left:103.537500px;}
.x34{left:104.617500px;}
.x35{left:110.746500px;}
.x2d{left:112.231500px;}
.x2e{left:113.305500px;}
.xbf{left:114.895500px;}
.x36{left:118.780500px;}
.x2f{left:120.118500px;}
.x83{left:123.271500px;}
.x3c{left:126.961500px;}
.x93{left:133.062000px;}
.x9{left:134.307000px;}
.x23{left:136.765500px;}
.x30{left:139.788000px;}
.x84{left:142.758000px;}
.x8d{left:160.230000px;}
.xd1{left:165.787500px;}
.xd2{left:168.634500px;}
.x24{left:170.511000px;}
.x31{left:174.186000px;}
.x25{left:177.187500px;}
.xd3{left:183.534000px;}
.xd4{left:190.441500px;}
.x2{left:201.607500px;}
.x26{left:202.822500px;}
.xc{left:205.995000px;}
.x94{left:207.387000px;}
.xe{left:208.786500px;}
.xa{left:210.619500px;}
.x8e{left:212.757000px;}
.xf{left:216.426000px;}
.x95{left:218.817000px;}
.xc3{left:224.563500px;}
.xc8{left:225.862500px;}
.x3d{left:228.427500px;}
.x27{left:231.382500px;}
.xc9{left:235.026000px;}
.x28{left:237.924000px;}
.xc4{left:240.669000px;}
.xc0{left:249.679500px;}
.xce{left:254.212500px;}
.x3e{left:258.165000px;}
.x89{left:260.220000px;}
.x1{left:262.266000px;}
.x8f{left:264.196500px;}
.xd{left:268.797000px;}
.x8a{left:272.728500px;}
.x3f{left:277.200000px;}
.xd0{left:278.320500px;}
.xcf{left:284.634000px;}
.x40{left:287.686500px;}
.x29{left:291.883500px;}
.x97{left:292.941000px;}
.xc5{left:296.725500px;}
.xb{left:308.119500px;}
.x2a{left:322.194000px;}
.xc7{left:325.485000px;}
.x98{left:328.170000px;}
.xc6{left:329.865000px;}
.x99{left:332.716500px;}
.x41{left:334.852500px;}
.x85{left:340.140000px;}
.x9a{left:345.058500px;}
.x2b{left:346.960500px;}
.x90{left:351.309000px;}
.x37{left:355.255500px;}
.x91{left:357.283500px;}
.x38{left:360.591000px;}
.x21{left:361.735500px;}
.x9b{left:363.139500px;}
.x9c{left:367.686000px;}
.xca{left:373.243500px;}
.x22{left:374.244000px;}
.x39{left:379.174500px;}
.x9d{left:380.767500px;}
.xd5{left:382.275000px;}
.x86{left:383.524500px;}
.x6{left:384.684000px;}
.x9e{left:386.631000px;}
.x87{left:390.345000px;}
.xcb{left:392.541000px;}
.x7{left:396.288000px;}
.x3{left:397.365000px;}
.xd6{left:401.817000px;}
.x3a{left:403.093500px;}
.x5{left:405.022500px;}
.x4{left:407.212500px;}
.x3b{left:408.429000px;}
.xc1{left:409.672500px;}
.x92{left:413.875500px;}
.x10{left:416.025000px;}
.xcc{left:418.899000px;}
.x88{left:419.950500px;}
.x11{left:423.477000px;}
.x32{left:428.088000px;}
.xcd{left:431.407500px;}
.x96{left:433.297500px;}
.xc2{left:439.585500px;}
.x12{left:476.874000px;}
.x75{left:479.338500px;}
.x1f{left:480.999000px;}
.x14{left:484.405500px;}
.x59{left:490.626000px;}
.x16{left:491.877000px;}
.xb0{left:494.596500px;}
.x5a{left:496.489500px;}
.xb9{left:499.642500px;}
.xac{left:501.252000px;}
.x13{left:502.306500px;}
.xab{left:505.422000px;}
.x5b{left:507.550500px;}
.xdc{left:509.508000px;}
.xa1{left:510.871500px;}
.x5c{left:513.276000px;}
.xb4{left:514.699500px;}
.xad{left:521.364000px;}
.x17{left:524.977500px;}
.xb2{left:526.330500px;}
.xb1{left:530.154000px;}
.x5d{left:533.749500px;}
.x18{left:534.760500px;}
.xdf{left:536.976000px;}
.x5e{left:540.216000px;}
.x15{left:541.419000px;}
.x43{left:544.875000px;}
.x5f{left:546.079500px;}
.x19{left:548.595000px;}
.xb3{left:549.676500px;}
.x60{left:557.673000px;}
.xa2{left:560.901000px;}
.x51{left:564.522000px;}
.x45{left:566.434500px;}
.x46{left:567.504000px;}
.x52{left:570.468000px;}
.x44{left:573.166500px;}
.x55{left:574.944000px;}
.xba{left:578.595000px;}
.xb6{left:579.975000px;}
.x56{left:581.197500px;}
.xb5{left:583.800000px;}
.x47{left:586.632000px;}
.xa9{left:590.926500px;}
.x7b{left:592.330500px;}
.x61{left:594.025500px;}
.x7c{left:598.710000px;}
.xb7{left:599.742000px;}
.xaa{left:610.962000px;}
.x57{left:612.847500px;}
.x9f{left:614.461500px;}
.x6e{left:617.808000px;}
.x1a{left:619.798500px;}
.xd8{left:625.900500px;}
.x6f{left:629.874000px;}
.x1e{left:632.682000px;}
.xda{left:634.852500px;}
.x70{left:636.252000px;}
.x1c{left:639.775500px;}
.x58{left:645.618000px;}
.x1d{left:647.320500px;}
.x68{left:651.235500px;}
.x76{left:653.073000px;}
.x69{left:658.978500px;}
.x71{left:680.680500px;}
.x1b{left:682.378500px;}
.xa7{left:683.575500px;}
.x72{left:687.732000px;}
.xa8{left:689.830500px;}
.x48{left:691.618500px;}
.x6a{left:701.479500px;}
.x53{left:705.601500px;}
.x6b{left:707.563500px;}
.x4a{left:709.263000px;}
.x4b{left:710.332500px;}
.xd7{left:713.904000px;}
.x49{left:715.993500px;}
.x54{left:717.126000px;}
.x73{left:719.104500px;}
.x77{left:720.342000px;}
.xbb{left:722.275500px;}
.x78{left:725.281500px;}
.x79{left:726.351000px;}
.x4c{left:729.459000px;}
.xbc{left:733.009500px;}
.xa3{left:735.286500px;}
.xa0{left:740.284500px;}
.x6c{left:741.949500px;}
.x74{left:744.172500px;}
.xdb{left:745.440000px;}
.xa4{left:749.059500px;}
.x7a{left:750.417000px;}
.xae{left:756.826500px;}
.x6d{left:759.693000px;}
.xaf{left:765.468000px;}
.x7d{left:766.717500px;}
.x7e{left:775.896000px;}
.x4d{left:779.317500px;}
.xbd{left:784.567500px;}
.x4e{left:785.571000px;}
.xbe{left:789.430500px;}
.x4f{left:791.928000px;}
.xdd{left:796.065000px;}
.x7f{left:801.838500px;}
.x50{left:804.436500px;}
.x62{left:806.134500px;}
.x63{left:811.998000px;}
.x80{left:813.385500px;}
.x64{left:817.923000px;}
.xa5{left:819.910500px;}
.x65{left:823.258500px;}
.xb8{left:825.045000px;}
.x81{left:828.748500px;}
.x66{left:829.923000px;}
.xd9{left:831.190500px;}
.xa6{left:832.419000px;}
.x67{left:835.788000px;}
@media print{
.v5{vertical-align:-44.309333pt;}
.v11{vertical-align:-20.426667pt;}
.vb{vertical-align:-17.360000pt;}
.v10{vertical-align:-14.080000pt;}
.vd{vertical-align:-10.469333pt;}
.v1{vertical-align:-8.592000pt;}
.v7{vertical-align:-7.168000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.360000pt;}
.v6{vertical-align:10.837333pt;}
.v9{vertical-align:16.533333pt;}
.v8{vertical-align:18.501333pt;}
.vc{vertical-align:28.021333pt;}
.v3{vertical-align:32.826667pt;}
.v2{vertical-align:35.877333pt;}
.vf{vertical-align:49.973333pt;}
.v4{vertical-align:65.632000pt;}
.ve{vertical-align:81.738667pt;}
.ls25{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000794pt;}
.ls96{letter-spacing:0.001018pt;}
.ls8d{letter-spacing:0.001037pt;}
.ls84{letter-spacing:0.001903pt;}
.ls39{letter-spacing:0.002995pt;}
.ls40{letter-spacing:0.117871pt;}
.ls5e{letter-spacing:0.118980pt;}
.ls70{letter-spacing:0.119629pt;}
.ls2d{letter-spacing:0.123204pt;}
.ls6e{letter-spacing:0.124314pt;}
.ls77{letter-spacing:0.124962pt;}
.ls97{letter-spacing:0.188199pt;}
.ls94{letter-spacing:0.269120pt;}
.ls45{letter-spacing:0.473173pt;}
.ls33{letter-spacing:0.475674pt;}
.ls19{letter-spacing:0.477406pt;}
.ls3b{letter-spacing:0.478507pt;}
.ls3f{letter-spacing:0.481007pt;}
.ls92{letter-spacing:0.774351pt;}
.ls5d{letter-spacing:0.890530pt;}
.ls48{letter-spacing:0.955674pt;}
.ls47{letter-spacing:0.958507pt;}
.ls1b{letter-spacing:1.190340pt;}
.ls85{letter-spacing:1.193651pt;}
.ls1f{letter-spacing:1.195674pt;}
.ls18{letter-spacing:1.198507pt;}
.ls35{letter-spacing:1.222371pt;}
.ls0{letter-spacing:1.287671pt;}
.ls26{letter-spacing:1.317436pt;}
.ls2a{letter-spacing:1.357174pt;}
.ls69{letter-spacing:1.362508pt;}
.ls10{letter-spacing:1.430340pt;}
.ls50{letter-spacing:1.433173pt;}
.ls12{letter-spacing:1.435674pt;}
.ls99{letter-spacing:1.541507pt;}
.ls3d{letter-spacing:1.549668pt;}
.ls4f{letter-spacing:1.555002pt;}
.ls5c{letter-spacing:1.671629pt;}
.ls6{letter-spacing:1.671671pt;}
.ls34{letter-spacing:1.675204pt;}
.lsf{letter-spacing:1.677005pt;}
.ls90{letter-spacing:1.882840pt;}
.lsd{letter-spacing:1.910340pt;}
.ls8{letter-spacing:1.913173pt;}
.ls4{letter-spacing:1.915674pt;}
.ls4e{letter-spacing:2.174123pt;}
.ls8b{letter-spacing:2.326371pt;}
.ls88{letter-spacing:2.331704pt;}
.ls23{letter-spacing:2.386739pt;}
.ls7a{letter-spacing:2.390340pt;}
.ls1c{letter-spacing:2.392073pt;}
.ls28{letter-spacing:2.433971pt;}
.ls67{letter-spacing:2.578508pt;}
.ls3e{letter-spacing:2.657037pt;}
.ls38{letter-spacing:2.732166pt;}
.ls27{letter-spacing:2.869436pt;}
.ls9{letter-spacing:2.965342pt;}
.ls64{letter-spacing:3.042500pt;}
.ls6a{letter-spacing:3.047833pt;}
.ls71{letter-spacing:3.153007pt;}
.ls76{letter-spacing:3.158340pt;}
.ls4b{letter-spacing:3.369054pt;}
.ls63{letter-spacing:3.371042pt;}
.ls4c{letter-spacing:3.374387pt;}
.ls7{letter-spacing:3.586338pt;}
.ls1d{letter-spacing:3.607629pt;}
.ls1e{letter-spacing:3.612962pt;}
.ls56{letter-spacing:3.821133pt;}
.ls72{letter-spacing:4.013174pt;}
.ls74{letter-spacing:4.018508pt;}
.ls7d{letter-spacing:4.060314pt;}
.ls79{letter-spacing:4.065647pt;}
.ls4a{letter-spacing:4.088789pt;}
.ls3c{letter-spacing:4.284166pt;}
.ls59{letter-spacing:4.446413pt;}
.ls95{letter-spacing:4.558186pt;}
.ls5{letter-spacing:4.874675pt;}
.lse{letter-spacing:4.880009pt;}
.ls32{letter-spacing:5.260843pt;}
.ls6d{letter-spacing:5.280375pt;}
.ls73{letter-spacing:5.285709pt;}
.ls87{letter-spacing:5.373166pt;}
.ls42{letter-spacing:5.393499pt;}
.ls17{letter-spacing:5.522295pt;}
.ls68{letter-spacing:5.698500pt;}
.ls6c{letter-spacing:5.703833pt;}
.ls46{letter-spacing:5.761357pt;}
.ls3{letter-spacing:5.762295pt;}
.ls91{letter-spacing:5.916198pt;}
.ls75{letter-spacing:5.922508pt;}
.ls6f{letter-spacing:5.927841pt;}
.ls7c{letter-spacing:6.197120pt;}
.ls93{letter-spacing:6.381651pt;}
.ls6b{letter-spacing:6.549956pt;}
.ls7b{letter-spacing:6.555290pt;}
.ls98{letter-spacing:7.018955pt;}
.ls49{letter-spacing:7.171268pt;}
.ls36{letter-spacing:7.216529pt;}
.ls3a{letter-spacing:7.302833pt;}
.ls41{letter-spacing:7.308166pt;}
.ls8f{letter-spacing:7.613166pt;}
.ls2e{letter-spacing:7.782833pt;}
.ls80{letter-spacing:8.282530pt;}
.ls60{letter-spacing:8.330530pt;}
.ls62{letter-spacing:8.474530pt;}
.ls2b{letter-spacing:8.715704pt;}
.ls2c{letter-spacing:8.731704pt;}
.ls57{letter-spacing:9.670371pt;}
.ls78{letter-spacing:10.268638pt;}
.ls44{letter-spacing:10.521754pt;}
.ls52{letter-spacing:10.623735pt;}
.ls53{letter-spacing:10.625971pt;}
.ls51{letter-spacing:10.627328pt;}
.ls15{letter-spacing:11.127839pt;}
.ls7e{letter-spacing:11.401423pt;}
.ls55{letter-spacing:11.468638pt;}
.ls81{letter-spacing:11.926498pt;}
.ls83{letter-spacing:11.955328pt;}
.ls43{letter-spacing:12.324753pt;}
.ls22{letter-spacing:12.796199pt;}
.ls2f{letter-spacing:12.807305pt;}
.ls8c{letter-spacing:12.954242pt;}
.lsb{letter-spacing:13.279420pt;}
.ls89{letter-spacing:13.283328pt;}
.ls1{letter-spacing:13.284753pt;}
.ls66{letter-spacing:13.993924pt;}
.ls31{letter-spacing:13.996638pt;}
.ls61{letter-spacing:13.999258pt;}
.ls37{letter-spacing:15.670340pt;}
.lsa{letter-spacing:15.675674pt;}
.ls7f{letter-spacing:15.807974pt;}
.ls65{letter-spacing:15.861308pt;}
.ls5f{letter-spacing:15.866641pt;}
.ls5b{letter-spacing:15.911492pt;}
.ls5a{letter-spacing:17.298508pt;}
.ls54{letter-spacing:17.777007pt;}
.ls82{letter-spacing:17.847091pt;}
.ls30{letter-spacing:17.996126pt;}
.ls11{letter-spacing:18.698086pt;}
.ls1a{letter-spacing:18.703420pt;}
.ls58{letter-spacing:19.215420pt;}
.ls8e{letter-spacing:19.658086pt;}
.ls86{letter-spacing:30.778086pt;}
.ls4d{letter-spacing:33.471420pt;}
.ls2{letter-spacing:39.223839pt;}
.lsc{letter-spacing:39.229173pt;}
.ls14{letter-spacing:54.106086pt;}
.ls21{letter-spacing:54.362086pt;}
.ls13{letter-spacing:85.259674pt;}
.ls20{letter-spacing:85.521007pt;}
.ls8a{letter-spacing:100.203674pt;}
.ls24{letter-spacing:216.651674pt;}
.ls16{letter-spacing:278.305007pt;}
.ws1d{word-spacing:-48.968499pt;}
.ws86{word-spacing:-39.718639pt;}
.ws75{word-spacing:-33.522381pt;}
.ws7d{word-spacing:-33.298859pt;}
.ws82{word-spacing:-33.293525pt;}
.ws44{word-spacing:-30.461850pt;}
.ws92{word-spacing:-24.242333pt;}
.ws46{word-spacing:-23.527834pt;}
.ws50{word-spacing:-23.480013pt;}
.ws74{word-spacing:-23.432192pt;}
.ws55{word-spacing:-23.001805pt;}
.ws54{word-spacing:-22.953984pt;}
.ws60{word-spacing:-22.762701pt;}
.ws5f{word-spacing:-22.714880pt;}
.ws77{word-spacing:-22.155836pt;}
.ws79{word-spacing:-22.015130pt;}
.ws7a{word-spacing:-22.009796pt;}
.ws5a{word-spacing:-21.232435pt;}
.ws73{word-spacing:-15.507900pt;}
.ws71{word-spacing:-14.195900pt;}
.ws3{word-spacing:-13.283467pt;}
.ws2d{word-spacing:-11.955200pt;}
.ws72{word-spacing:-10.658432pt;}
.ws63{word-spacing:-10.556117pt;}
.ws64{word-spacing:-10.508297pt;}
.ws8a{word-spacing:-9.696933pt;}
.ws81{word-spacing:-9.298400pt;}
.ws1b{word-spacing:-8.965506pt;}
.ws1e{word-spacing:-6.443226pt;}
.ws3a{word-spacing:-3.538739pt;}
.ws6d{word-spacing:-3.443098pt;}
.ws13{word-spacing:-3.395277pt;}
.ws51{word-spacing:-3.156173pt;}
.ws14{word-spacing:-3.108352pt;}
.ws39{word-spacing:-3.012710pt;}
.ws49{word-spacing:-2.869248pt;}
.ws8b{word-spacing:-2.725786pt;}
.ws28{word-spacing:-2.677965pt;}
.ws3d{word-spacing:-2.630144pt;}
.wsd{word-spacing:-2.534502pt;}
.wsb3{word-spacing:-2.457572pt;}
.wsb5{word-spacing:-2.454778pt;}
.ws5b{word-spacing:-2.391040pt;}
.ws88{word-spacing:-2.343219pt;}
.ws16{word-spacing:-2.247578pt;}
.ws30{word-spacing:-2.151936pt;}
.ws2f{word-spacing:-2.104115pt;}
.ws41{word-spacing:-2.056294pt;}
.ws84{word-spacing:-1.909751pt;}
.ws5c{word-spacing:-1.865011pt;}
.ws5d{word-spacing:-1.817190pt;}
.ws4b{word-spacing:-1.769370pt;}
.ws78{word-spacing:-1.721549pt;}
.ws15{word-spacing:-1.625907pt;}
.ws19{word-spacing:-1.530266pt;}
.ws4a{word-spacing:-1.482445pt;}
.wsb2{word-spacing:-1.413357pt;}
.ws80{word-spacing:-1.301776pt;}
.ws8f{word-spacing:-1.243341pt;}
.ws8e{word-spacing:-1.195520pt;}
.wsbf{word-spacing:-1.153002pt;}
.ws17{word-spacing:-1.099878pt;}
.ws90{word-spacing:-1.052058pt;}
.wsa2{word-spacing:-1.004227pt;}
.ws12{word-spacing:-0.956416pt;}
.ws83{word-spacing:-0.954837pt;}
.ws9a{word-spacing:-0.860774pt;}
.ws22{word-spacing:-0.812954pt;}
.ws40{word-spacing:-0.621670pt;}
.ws7e{word-spacing:-0.573850pt;}
.wsaf{word-spacing:-0.557904pt;}
.ws6c{word-spacing:-0.526029pt;}
.wsb7{word-spacing:-0.483517pt;}
.ws38{word-spacing:-0.478208pt;}
.ws56{word-spacing:-0.430387pt;}
.ws9d{word-spacing:-0.382566pt;}
.ws53{word-spacing:-0.286925pt;}
.ws3b{word-spacing:-0.239104pt;}
.wsb{word-spacing:-0.191283pt;}
.ws94{word-spacing:-0.185968pt;}
.wsa6{word-spacing:-0.148774pt;}
.ws6{word-spacing:-0.143462pt;}
.ws97{word-spacing:-0.111581pt;}
.ws29{word-spacing:-0.095642pt;}
.ws93{word-spacing:-0.074387pt;}
.ws4{word-spacing:-0.058182pt;}
.ws1f{word-spacing:-0.047821pt;}
.ws48{word-spacing:-0.038788pt;}
.wsae{word-spacing:-0.037194pt;}
.ws2{word-spacing:0.000000pt;}
.ws61{word-spacing:0.000606pt;}
.ws25{word-spacing:0.001988pt;}
.ws26{word-spacing:0.005820pt;}
.ws35{word-spacing:0.037194pt;}
.wsa{word-spacing:0.047821pt;}
.wsb1{word-spacing:0.074387pt;}
.wsc{word-spacing:0.095642pt;}
.ws36{word-spacing:0.111581pt;}
.ws8{word-spacing:0.143462pt;}
.wsbe{word-spacing:0.185968pt;}
.ws20{word-spacing:0.191283pt;}
.ws7{word-spacing:0.239104pt;}
.wsf{word-spacing:0.286925pt;}
.ws95{word-spacing:0.297549pt;}
.ws3c{word-spacing:0.334746pt;}
.ws76{word-spacing:0.382566pt;}
.ws6f{word-spacing:0.621670pt;}
.ws65{word-spacing:0.669491pt;}
.ws3f{word-spacing:0.717312pt;}
.wsa5{word-spacing:0.743872pt;}
.ws4f{word-spacing:0.765133pt;}
.wsaa{word-spacing:0.781066pt;}
.ws4e{word-spacing:0.812954pt;}
.ws21{word-spacing:0.860774pt;}
.wsc2{word-spacing:0.967034pt;}
.wse{word-spacing:1.004237pt;}
.ws33{word-spacing:1.052058pt;}
.wsb9{word-spacing:1.078614pt;}
.ws6a{word-spacing:1.195520pt;}
.ws8d{word-spacing:1.243341pt;}
.ws3e{word-spacing:1.338982pt;}
.ws8c{word-spacing:1.386803pt;}
.ws59{word-spacing:1.482445pt;}
.wsac{word-spacing:1.524938pt;}
.wsa0{word-spacing:1.530266pt;}
.ws2b{word-spacing:1.578086pt;}
.ws37{word-spacing:1.625907pt;}
.ws45{word-spacing:1.721549pt;}
.ws2e{word-spacing:1.817190pt;}
.ws31{word-spacing:1.865011pt;}
.ws9c{word-spacing:1.912832pt;}
.ws1a{word-spacing:1.960653pt;}
.ws43{word-spacing:2.008474pt;}
.ws52{word-spacing:2.056294pt;}
.ws7c{word-spacing:2.104115pt;}
.wsa9{word-spacing:2.120035pt;}
.wsa4{word-spacing:2.194422pt;}
.ws6e{word-spacing:2.199757pt;}
.ws9f{word-spacing:2.247578pt;}
.ws98{word-spacing:2.306003pt;}
.ws7b{word-spacing:2.534502pt;}
.ws70{word-spacing:2.630144pt;}
.ws96{word-spacing:2.715133pt;}
.ws9{word-spacing:2.725786pt;}
.ws91{word-spacing:2.917069pt;}
.ws34{word-spacing:3.060531pt;}
.ws9b{word-spacing:3.108352pt;}
.ws2c{word-spacing:3.251814pt;}
.ws18{word-spacing:3.299635pt;}
.wsbb{word-spacing:3.310230pt;}
.ws7f{word-spacing:3.347424pt;}
.wsb6{word-spacing:3.607779pt;}
.ws5{word-spacing:3.682202pt;}
.ws9e{word-spacing:3.921306pt;}
.ws2a{word-spacing:4.064768pt;}
.wsa7{word-spacing:4.091347pt;}
.ws99{word-spacing:4.399514pt;}
.ws6b{word-spacing:4.447334pt;}
.ws32{word-spacing:4.686438pt;}
.ws11{word-spacing:5.403750pt;}
.wsb4{word-spacing:6.806429pt;}
.ws87{word-spacing:7.089502pt;}
.ws1c{word-spacing:7.938253pt;}
.wsb0{word-spacing:7.996624pt;}
.wsa3{word-spacing:8.256979pt;}
.wsb8{word-spacing:8.777690pt;}
.wsa1{word-spacing:9.149626pt;}
.wsbd{word-spacing:9.224013pt;}
.wsa8{word-spacing:9.261206pt;}
.wsc3{word-spacing:9.335594pt;}
.wsc1{word-spacing:9.447174pt;}
.wsab{word-spacing:10.042272pt;}
.wsc4{word-spacing:10.135298pt;}
.wsc0{word-spacing:10.138317pt;}
.wsad{word-spacing:10.176967pt;}
.wsba{word-spacing:10.339821pt;}
.ws62{word-spacing:10.582835pt;}
.ws57{word-spacing:11.489720pt;}
.ws67{word-spacing:11.716096pt;}
.ws68{word-spacing:11.811738pt;}
.ws4c{word-spacing:11.820444pt;}
.ws58{word-spacing:11.905502pt;}
.ws27{word-spacing:11.905886pt;}
.ws23{word-spacing:11.907379pt;}
.wsbc{word-spacing:12.571437pt;}
.ws69{word-spacing:13.253954pt;}
.ws4d{word-spacing:13.280620pt;}
.ws89{word-spacing:14.304620pt;}
.ws42{word-spacing:14.487285pt;}
.ws5e{word-spacing:15.109954pt;}
.ws1{word-spacing:15.876506pt;}
.ws47{word-spacing:15.899287pt;}
.ws66{word-spacing:16.163430pt;}
.ws0{word-spacing:22.862051pt;}
.ws85{word-spacing:35.809502pt;}
.ws24{word-spacing:56.524186pt;}
.ws10{word-spacing:58.123685pt;}
._d{margin-left:-3.921306pt;}
._2{margin-left:-2.974461pt;}
._0{margin-left:-1.377232pt;}
._3{width:1.396365pt;}
._4{width:2.715141pt;}
._b{width:3.762847pt;}
._f{width:4.654528pt;}
._c{width:5.741321pt;}
._a{width:9.420698pt;}
._8{width:11.008355pt;}
._5{width:12.050842pt;}
._1{width:13.102899pt;}
._10{width:15.063552pt;}
._7{width:16.018577pt;}
._13{width:17.494841pt;}
._e{width:19.816157pt;}
._11{width:21.609482pt;}
._14{width:25.838395pt;}
._12{width:27.375558pt;}
._6{width:53.128909pt;}
._9{width:58.181867pt;}
.fs6{font-size:29.224000pt;}
.fs7{font-size:37.193600pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:112.870667pt;}
.y169{bottom:116.390667pt;}
.y60{bottom:123.832000pt;}
.yba{bottom:124.562667pt;}
.y92{bottom:127.352000pt;}
.y32{bottom:127.481333pt;}
.yb9{bottom:128.694667pt;}
.y5f{bottom:134.458667pt;}
.y5e{bottom:137.978667pt;}
.y31{bottom:142.093333pt;}
.y90{bottom:144.961333pt;}
.y15a{bottom:145.085333pt;}
.y91{bottom:149.301333pt;}
.y159{bottom:155.712000pt;}
.y30{bottom:156.705333pt;}
.y5d{bottom:156.914667pt;}
.y8f{bottom:159.573333pt;}
.y11e{bottom:159.645333pt;}
.y158{bottom:166.338667pt;}
.y157{bottom:169.858667pt;}
.yde{bottom:171.317333pt;}
.y5c{bottom:171.526667pt;}
.y8e{bottom:174.185333pt;}
.y11d{bottom:174.257333pt;}
.y2e{bottom:176.384000pt;}
.y156{bottom:177.554667pt;}
.y2d{bottom:184.585333pt;}
.y2f{bottom:184.752000pt;}
.ydd{bottom:185.929333pt;}
.y5b{bottom:186.138667pt;}
.y155{bottom:188.516000pt;}
.y8d{bottom:188.797333pt;}
.y11c{bottom:192.170667pt;}
.y154{bottom:199.142667pt;}
.ydc{bottom:200.541333pt;}
.y5a{bottom:200.750667pt;}
.y8b{bottom:203.409333pt;}
.y119{bottom:207.092000pt;}
.y2c{bottom:207.480000pt;}
.y8c{bottom:207.748000pt;}
.y153{bottom:209.769333pt;}
.ydb{bottom:215.153333pt;}
.y59{bottom:215.361333pt;}
.y2b{bottom:216.450667pt;}
.y8a{bottom:218.021333pt;}
.y11b{bottom:219.325333pt;}
.y152{bottom:220.396000pt;}
.y11a{bottom:221.716000pt;}
.y151{bottom:223.916000pt;}
.yda{bottom:229.765333pt;}
.y58{bottom:229.973333pt;}
.y2a{bottom:231.140000pt;}
.y89{bottom:232.632000pt;}
.y117{bottom:235.110667pt;}
.y118{bottom:235.978667pt;}
.y29{bottom:240.109333pt;}
.yd9{bottom:244.377333pt;}
.y150{bottom:244.405333pt;}
.y57{bottom:244.585333pt;}
.y88{bottom:247.244000pt;}
.y114{bottom:250.030667pt;}
.yb8{bottom:257.253333pt;}
.yd8{bottom:258.989333pt;}
.y14f{bottom:259.017333pt;}
.y56{bottom:259.197333pt;}
.y28{bottom:261.852000pt;}
.y87{bottom:261.856000pt;}
.y116{bottom:262.264000pt;}
.y115{bottom:264.656000pt;}
.yb7{bottom:271.865333pt;}
.yd7{bottom:273.600000pt;}
.y14e{bottom:273.629333pt;}
.y55{bottom:273.809333pt;}
.y27{bottom:276.464000pt;}
.y86{bottom:276.468000pt;}
.y113{bottom:282.846667pt;}
.yd6{bottom:288.212000pt;}
.yb6{bottom:289.492000pt;}
.y26{bottom:291.074667pt;}
.y84{bottom:291.080000pt;}
.y14d{bottom:291.894667pt;}
.y53{bottom:292.082667pt;}
.y85{bottom:295.420000pt;}
.y112{bottom:297.458667pt;}
.y52{bottom:300.284000pt;}
.y54{bottom:300.450667pt;}
.y83{bottom:302.769333pt;}
.yd5{bottom:302.824000pt;}
.yb3{bottom:303.545333pt;}
.y25{bottom:305.686667pt;}
.y82{bottom:306.902667pt;}
.y111{bottom:312.070667pt;}
.yb5{bottom:315.778667pt;}
.yd4{bottom:317.436000pt;}
.yb4{bottom:318.169333pt;}
.y24{bottom:320.298667pt;}
.y14c{bottom:320.824000pt;}
.y81{bottom:321.646667pt;}
.y110{bottom:326.682667pt;}
.y51{bottom:327.021333pt;}
.yd3{bottom:332.048000pt;}
.y23{bottom:334.910667pt;}
.y14b{bottom:335.436000pt;}
.yb2{bottom:336.254667pt;}
.y80{bottom:336.257333pt;}
.y50{bottom:341.633333pt;}
.y10f{bottom:344.350667pt;}
.y10e{bottom:345.218667pt;}
.yd2{bottom:346.660000pt;}
.y22{bottom:349.522667pt;}
.y14a{bottom:350.048000pt;}
.yb0{bottom:350.866667pt;}
.y7f{bottom:350.869333pt;}
.yb1{bottom:355.206667pt;}
.y4f{bottom:356.245333pt;}
.y10b{bottom:359.272000pt;}
.yd1{bottom:361.272000pt;}
.y21{bottom:364.134667pt;}
.y149{bottom:364.660000pt;}
.yaf{bottom:365.478667pt;}
.y7e{bottom:365.481333pt;}
.y4e{bottom:370.857333pt;}
.y10d{bottom:371.505333pt;}
.y10c{bottom:373.896000pt;}
.yd0{bottom:375.884000pt;}
.y20{bottom:378.746667pt;}
.y148{bottom:379.272000pt;}
.yae{bottom:380.090667pt;}
.y7d{bottom:380.093333pt;}
.y4c{bottom:385.468000pt;}
.y4d{bottom:389.808000pt;}
.ycf{bottom:390.496000pt;}
.y10a{bottom:392.088000pt;}
.y1f{bottom:393.358667pt;}
.y147{bottom:393.884000pt;}
.yad{bottom:394.702667pt;}
.y7c{bottom:394.705333pt;}
.y4b{bottom:400.080000pt;}
.y168{bottom:405.108000pt;}
.y109{bottom:406.700000pt;}
.y1e{bottom:407.970667pt;}
.y146{bottom:408.496000pt;}
.yce{bottom:408.760000pt;}
.yac{bottom:409.313333pt;}
.y7b{bottom:409.317333pt;}
.y4a{bottom:414.692000pt;}
.y167{bottom:419.720000pt;}
.y1d{bottom:422.582667pt;}
.y145{bottom:423.106667pt;}
.yab{bottom:423.925333pt;}
.y7a{bottom:423.929333pt;}
.y108{bottom:424.368000pt;}
.y107{bottom:425.236000pt;}
.y49{bottom:429.304000pt;}
.y166{bottom:434.330667pt;}
.y1c{bottom:437.194667pt;}
.y144{bottom:437.718667pt;}
.yaa{bottom:438.537333pt;}
.y79{bottom:438.541333pt;}
.y104{bottom:439.289333pt;}
.ycd{bottom:441.888000pt;}
.y48{bottom:443.916000pt;}
.y165{bottom:448.942667pt;}
.y106{bottom:451.522667pt;}
.y1b{bottom:451.805333pt;}
.ya9{bottom:453.149333pt;}
.y78{bottom:453.153333pt;}
.y105{bottom:453.913333pt;}
.y143{bottom:454.974667pt;}
.ycc{bottom:456.500000pt;}
.y47{bottom:458.528000pt;}
.y164{bottom:463.554667pt;}
.ya8{bottom:467.761333pt;}
.y77{bottom:467.765333pt;}
.y140{bottom:469.896000pt;}
.y1a{bottom:470.070667pt;}
.ycb{bottom:471.112000pt;}
.y102{bottom:472.105333pt;}
.y46{bottom:473.140000pt;}
.y103{bottom:476.445333pt;}
.y163{bottom:478.166667pt;}
.y142{bottom:482.129333pt;}
.ya7{bottom:482.373333pt;}
.y76{bottom:482.377333pt;}
.y141{bottom:484.520000pt;}
.yca{bottom:485.724000pt;}
.y101{bottom:486.717333pt;}
.y45{bottom:487.752000pt;}
.y162{bottom:492.778667pt;}
.yc9{bottom:500.334667pt;}
.y75{bottom:500.641333pt;}
.y19{bottom:501.598667pt;}
.y13f{bottom:502.300000pt;}
.y44{bottom:502.364000pt;}
.yff{bottom:504.385333pt;}
.yfe{bottom:505.253333pt;}
.y161{bottom:507.390667pt;}
.yc8{bottom:514.946667pt;}
.y18{bottom:516.210667pt;}
.y13e{bottom:516.912000pt;}
.y43{bottom:516.976000pt;}
.y100{bottom:519.306667pt;}
.y160{bottom:522.002667pt;}
.y74{bottom:529.048000pt;}
.yc7{bottom:529.558667pt;}
.y17{bottom:530.822667pt;}
.y13d{bottom:531.524000pt;}
.yfd{bottom:531.540000pt;}
.y42{bottom:531.588000pt;}
.yfc{bottom:533.930667pt;}
.y15f{bottom:536.614667pt;}
.y73{bottom:543.660000pt;}
.yc6{bottom:544.170667pt;}
.y13c{bottom:546.136000pt;}
.y41{bottom:546.198667pt;}
.yfb{bottom:547.325333pt;}
.yfa{bottom:548.193333pt;}
.y16{bottom:549.088000pt;}
.y15e{bottom:551.226667pt;}
.y72{bottom:558.272000pt;}
.yc5{bottom:558.782667pt;}
.y13b{bottom:560.746667pt;}
.y40{bottom:560.810667pt;}
.yf7{bottom:562.245333pt;}
.y15d{bottom:565.838667pt;}
.y71{bottom:572.882667pt;}
.yc4{bottom:573.394667pt;}
.yf9{bottom:574.478667pt;}
.y13a{bottom:575.358667pt;}
.yf8{bottom:576.870667pt;}
.y15{bottom:578.362667pt;}
.y15c{bottom:580.449333pt;}
.y70{bottom:587.494667pt;}
.yc3{bottom:588.006667pt;}
.ya6{bottom:589.612000pt;}
.y139{bottom:589.970667pt;}
.y14{bottom:592.974667pt;}
.yf6{bottom:595.061333pt;}
.y6f{bottom:602.106667pt;}
.yc2{bottom:602.618667pt;}
.y3f{bottom:603.124000pt;}
.ya5{bottom:604.224000pt;}
.y138{bottom:604.582667pt;}
.y13{bottom:607.586667pt;}
.yf5{bottom:609.673333pt;}
.y6e{bottom:616.718667pt;}
.yc1{bottom:617.230667pt;}
.y3e{bottom:617.736000pt;}
.y137{bottom:619.194667pt;}
.y12{bottom:622.198667pt;}
.yf4{bottom:624.285333pt;}
.ya4{bottom:625.672000pt;}
.y6d{bottom:631.330667pt;}
.ybf{bottom:631.842667pt;}
.y3d{bottom:632.348000pt;}
.ya3{bottom:632.678667pt;}
.y136{bottom:633.806667pt;}
.yc0{bottom:636.181333pt;}
.y11{bottom:636.809333pt;}
.yf3{bottom:638.897333pt;}
.y6c{bottom:645.942667pt;}
.y3c{bottom:646.960000pt;}
.y134{bottom:648.418667pt;}
.ya2{bottom:650.702667pt;}
.y10{bottom:651.421333pt;}
.y135{bottom:652.758667pt;}
.yf2{bottom:653.509333pt;}
.y6b{bottom:660.554667pt;}
.y3b{bottom:661.572000pt;}
.y133{bottom:663.030667pt;}
.yf{bottom:666.033333pt;}
.yf1{bottom:668.121333pt;}
.ya1{bottom:672.152000pt;}
.y15b{bottom:672.461333pt;}
.y6a{bottom:675.166667pt;}
.y3a{bottom:676.184000pt;}
.y132{bottom:677.642667pt;}
.ye{bottom:680.645333pt;}
.yf0{bottom:682.733333pt;}
.ya0{bottom:686.764000pt;}
.ybe{bottom:689.034667pt;}
.y69{bottom:689.778667pt;}
.y39{bottom:690.796000pt;}
.y131{bottom:692.254667pt;}
.yd{bottom:695.257333pt;}
.yef{bottom:697.345333pt;}
.y9f{bottom:701.376000pt;}
.ybd{bottom:703.645333pt;}
.y17e{bottom:704.318667pt;}
.y68{bottom:704.390667pt;}
.y38{bottom:705.408000pt;}
.y130{bottom:706.866667pt;}
.y193{bottom:707.972000pt;}
.yc{bottom:709.869333pt;}
.yee{bottom:711.957333pt;}
.y17d{bottom:714.945333pt;}
.y9e{bottom:715.988000pt;}
.ybc{bottom:718.257333pt;}
.y192{bottom:718.598667pt;}
.y67{bottom:719.001333pt;}
.y37{bottom:720.018667pt;}
.y12f{bottom:721.477333pt;}
.yb{bottom:724.481333pt;}
.y17c{bottom:725.572000pt;}
.yed{bottom:726.569333pt;}
.y191{bottom:729.225333pt;}
.y9d{bottom:730.600000pt;}
.ybb{bottom:732.869333pt;}
.y66{bottom:733.613333pt;}
.y36{bottom:734.630667pt;}
.y12e{bottom:736.089333pt;}
.y17b{bottom:736.198667pt;}
.ya{bottom:739.093333pt;}
.y190{bottom:739.852000pt;}
.yec{bottom:741.180000pt;}
.y9c{bottom:745.210667pt;}
.y17a{bottom:746.826667pt;}
.y65{bottom:748.225333pt;}
.y18f{bottom:750.478667pt;}
.y12d{bottom:750.701333pt;}
.y9{bottom:753.705333pt;}
.y35{bottom:755.262667pt;}
.yeb{bottom:755.792000pt;}
.y179{bottom:757.453333pt;}
.y9b{bottom:759.822667pt;}
.y18e{bottom:761.105333pt;}
.y64{bottom:762.837333pt;}
.y12c{bottom:765.313333pt;}
.y178{bottom:768.080000pt;}
.yea{bottom:770.404000pt;}
.y18d{bottom:771.732000pt;}
.y8{bottom:771.969333pt;}
.y9a{bottom:774.434667pt;}
.y34{bottom:775.025333pt;}
.y63{bottom:777.449333pt;}
.y177{bottom:778.706667pt;}
.y12b{bottom:781.810667pt;}
.y18c{bottom:782.360000pt;}
.ye9{bottom:785.016000pt;}
.y127{bottom:787.682667pt;}
.y176{bottom:789.333333pt;}
.y12a{bottom:790.645333pt;}
.y62{bottom:792.061333pt;}
.y99{bottom:792.062667pt;}
.y18b{bottom:792.986667pt;}
.y126{bottom:795.884000pt;}
.y7{bottom:797.553333pt;}
.ye8{bottom:799.628000pt;}
.y175{bottom:799.960000pt;}
.y129{bottom:801.789333pt;}
.y18a{bottom:803.613333pt;}
.y96{bottom:806.116000pt;}
.y174{bottom:810.586667pt;}
.y128{bottom:810.624000pt;}
.y6{bottom:813.493333pt;}
.ye7{bottom:814.240000pt;}
.y98{bottom:818.349333pt;}
.y97{bottom:820.740000pt;}
.y173{bottom:821.213333pt;}
.y189{bottom:824.866667pt;}
.y125{bottom:827.208000pt;}
.ye6{bottom:828.852000pt;}
.y5{bottom:829.434667pt;}
.y172{bottom:831.840000pt;}
.y188{bottom:835.493333pt;}
.y95{bottom:836.604000pt;}
.y124{bottom:841.820000pt;}
.y171{bottom:842.468000pt;}
.ye5{bottom:843.464000pt;}
.y4{bottom:845.374667pt;}
.y187{bottom:846.120000pt;}
.y94{bottom:851.216000pt;}
.y170{bottom:853.094667pt;}
.y123{bottom:856.432000pt;}
.y186{bottom:856.746667pt;}
.ye4{bottom:858.076000pt;}
.y16f{bottom:863.721333pt;}
.y185{bottom:867.373333pt;}
.y184{bottom:867.374667pt;}
.ye3{bottom:872.688000pt;}
.y16e{bottom:874.348000pt;}
.y3{bottom:875.365333pt;}
.y122{bottom:875.540000pt;}
.y183{bottom:878.001333pt;}
.y121{bottom:882.284000pt;}
.y16d{bottom:884.974667pt;}
.ye2{bottom:887.298667pt;}
.y182{bottom:888.628000pt;}
.y120{bottom:890.485333pt;}
.y93{bottom:892.389333pt;}
.y16c{bottom:895.601333pt;}
.y181{bottom:899.254667pt;}
.ye1{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y16b{bottom:906.228000pt;}
.y180{bottom:909.881333pt;}
.ye0{bottom:916.522667pt;}
.y16a{bottom:916.854667pt;}
.y17f{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.ydf{bottom:931.134667pt;}
.y61{bottom:934.190667pt;}
.y11f{bottom:935.474667pt;}
.h17{height:0.000000pt;}
.h22{height:19.704169pt;}
.h11{height:21.479640pt;}
.h19{height:27.066573pt;}
.h16{height:27.073838pt;}
.h12{height:27.337296pt;}
.h21{height:27.810805pt;}
.h10{height:28.508984pt;}
.hd{height:33.378918pt;}
.hf{height:33.474560pt;}
.h15{height:34.287514pt;}
.he{height:34.430976pt;}
.hc{height:34.481621pt;}
.h6{height:35.148288pt;}
.h4{height:39.053392pt;}
.h5{height:41.890944pt;}
.h2{height:44.505225pt;}
.h3{height:46.864384pt;}
.h13{height:47.010317pt;}
.h14{height:49.912252pt;}
.h1a{height:50.815514pt;}
.h20{height:51.644288pt;}
.h18{height:56.530317pt;}
.h1f{height:59.871906pt;}
.h1{height:64.087196pt;}
.h1d{height:66.184252pt;}
.ha{height:67.114180pt;}
.h1e{height:67.119514pt;}
.h1b{height:67.521621pt;}
.h7{height:70.164847pt;}
.h9{height:70.170180pt;}
.h8{height:71.030955pt;}
.h1c{height:81.738667pt;}
.hb{height:99.919514pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:70.774667pt;}
.x8{left:71.730667pt;}
.x42{left:75.513333pt;}
.x33{left:77.178667pt;}
.x8b{left:81.630667pt;}
.x82{left:83.258667pt;}
.x20{left:85.014667pt;}
.x8c{left:88.313333pt;}
.xde{left:92.033333pt;}
.x34{left:92.993333pt;}
.x35{left:98.441333pt;}
.x2d{left:99.761333pt;}
.x2e{left:100.716000pt;}
.xbf{left:102.129333pt;}
.x36{left:105.582667pt;}
.x2f{left:106.772000pt;}
.x83{left:109.574667pt;}
.x3c{left:112.854667pt;}
.x93{left:118.277333pt;}
.x9{left:119.384000pt;}
.x23{left:121.569333pt;}
.x30{left:124.256000pt;}
.x84{left:126.896000pt;}
.x8d{left:142.426667pt;}
.xd1{left:147.366667pt;}
.xd2{left:149.897333pt;}
.x24{left:151.565333pt;}
.x31{left:154.832000pt;}
.x25{left:157.500000pt;}
.xd3{left:163.141333pt;}
.xd4{left:169.281333pt;}
.x2{left:179.206667pt;}
.x26{left:180.286667pt;}
.xc{left:183.106667pt;}
.x94{left:184.344000pt;}
.xe{left:185.588000pt;}
.xa{left:187.217333pt;}
.x8e{left:189.117333pt;}
.xf{left:192.378667pt;}
.x95{left:194.504000pt;}
.xc3{left:199.612000pt;}
.xc8{left:200.766667pt;}
.x3d{left:203.046667pt;}
.x27{left:205.673333pt;}
.xc9{left:208.912000pt;}
.x28{left:211.488000pt;}
.xc4{left:213.928000pt;}
.xc0{left:221.937333pt;}
.xce{left:225.966667pt;}
.x3e{left:229.480000pt;}
.x89{left:231.306667pt;}
.x1{left:233.125333pt;}
.x8f{left:234.841333pt;}
.xd{left:238.930667pt;}
.x8a{left:242.425333pt;}
.x3f{left:246.400000pt;}
.xd0{left:247.396000pt;}
.xcf{left:253.008000pt;}
.x40{left:255.721333pt;}
.x29{left:259.452000pt;}
.x97{left:260.392000pt;}
.xc5{left:263.756000pt;}
.xb{left:273.884000pt;}
.x2a{left:286.394667pt;}
.xc7{left:289.320000pt;}
.x98{left:291.706667pt;}
.xc6{left:293.213333pt;}
.x99{left:295.748000pt;}
.x41{left:297.646667pt;}
.x85{left:302.346667pt;}
.x9a{left:306.718667pt;}
.x2b{left:308.409333pt;}
.x90{left:312.274667pt;}
.x37{left:315.782667pt;}
.x91{left:317.585333pt;}
.x38{left:320.525333pt;}
.x21{left:321.542667pt;}
.x9b{left:322.790667pt;}
.x9c{left:326.832000pt;}
.xca{left:331.772000pt;}
.x22{left:332.661333pt;}
.x39{left:337.044000pt;}
.x9d{left:338.460000pt;}
.xd5{left:339.800000pt;}
.x86{left:340.910667pt;}
.x6{left:341.941333pt;}
.x9e{left:343.672000pt;}
.x87{left:346.973333pt;}
.xcb{left:348.925333pt;}
.x7{left:352.256000pt;}
.x3{left:353.213333pt;}
.xd6{left:357.170667pt;}
.x3a{left:358.305333pt;}
.x5{left:360.020000pt;}
.x4{left:361.966667pt;}
.x3b{left:363.048000pt;}
.xc1{left:364.153333pt;}
.x92{left:367.889333pt;}
.x10{left:369.800000pt;}
.xcc{left:372.354667pt;}
.x88{left:373.289333pt;}
.x11{left:376.424000pt;}
.x32{left:380.522667pt;}
.xcd{left:383.473333pt;}
.x96{left:385.153333pt;}
.xc2{left:390.742667pt;}
.x12{left:423.888000pt;}
.x75{left:426.078667pt;}
.x1f{left:427.554667pt;}
.x14{left:430.582667pt;}
.x59{left:436.112000pt;}
.x16{left:437.224000pt;}
.xb0{left:439.641333pt;}
.x5a{left:441.324000pt;}
.xb9{left:444.126667pt;}
.xac{left:445.557333pt;}
.x13{left:446.494667pt;}
.xab{left:449.264000pt;}
.x5b{left:451.156000pt;}
.xdc{left:452.896000pt;}
.xa1{left:454.108000pt;}
.x5c{left:456.245333pt;}
.xb4{left:457.510667pt;}
.xad{left:463.434667pt;}
.x17{left:466.646667pt;}
.xb2{left:467.849333pt;}
.xb1{left:471.248000pt;}
.x5d{left:474.444000pt;}
.x18{left:475.342667pt;}
.xdf{left:477.312000pt;}
.x5e{left:480.192000pt;}
.x15{left:481.261333pt;}
.x43{left:484.333333pt;}
.x5f{left:485.404000pt;}
.x19{left:487.640000pt;}
.xb3{left:488.601333pt;}
.x60{left:495.709333pt;}
.xa2{left:498.578667pt;}
.x51{left:501.797333pt;}
.x45{left:503.497333pt;}
.x46{left:504.448000pt;}
.x52{left:507.082667pt;}
.x44{left:509.481333pt;}
.x55{left:511.061333pt;}
.xba{left:514.306667pt;}
.xb6{left:515.533333pt;}
.x56{left:516.620000pt;}
.xb5{left:518.933333pt;}
.x47{left:521.450667pt;}
.xa9{left:525.268000pt;}
.x7b{left:526.516000pt;}
.x61{left:528.022667pt;}
.x7c{left:532.186667pt;}
.xb7{left:533.104000pt;}
.xaa{left:543.077333pt;}
.x57{left:544.753333pt;}
.x9f{left:546.188000pt;}
.x6e{left:549.162667pt;}
.x1a{left:550.932000pt;}
.xd8{left:556.356000pt;}
.x6f{left:559.888000pt;}
.x1e{left:562.384000pt;}
.xda{left:564.313333pt;}
.x70{left:565.557333pt;}
.x1c{left:568.689333pt;}
.x58{left:573.882667pt;}
.x1d{left:575.396000pt;}
.x68{left:578.876000pt;}
.x76{left:580.509333pt;}
.x69{left:585.758667pt;}
.x71{left:605.049333pt;}
.x1b{left:606.558667pt;}
.xa7{left:607.622667pt;}
.x72{left:611.317333pt;}
.xa8{left:613.182667pt;}
.x48{left:614.772000pt;}
.x6a{left:623.537333pt;}
.x53{left:627.201333pt;}
.x6b{left:628.945333pt;}
.x4a{left:630.456000pt;}
.x4b{left:631.406667pt;}
.xd7{left:634.581333pt;}
.x49{left:636.438667pt;}
.x54{left:637.445333pt;}
.x73{left:639.204000pt;}
.x77{left:640.304000pt;}
.xbb{left:642.022667pt;}
.x78{left:644.694667pt;}
.x79{left:645.645333pt;}
.x4c{left:648.408000pt;}
.xbc{left:651.564000pt;}
.xa3{left:653.588000pt;}
.xa0{left:658.030667pt;}
.x6c{left:659.510667pt;}
.x74{left:661.486667pt;}
.xdb{left:662.613333pt;}
.xa4{left:665.830667pt;}
.x7a{left:667.037333pt;}
.xae{left:672.734667pt;}
.x6d{left:675.282667pt;}
.xaf{left:680.416000pt;}
.x7d{left:681.526667pt;}
.x7e{left:689.685333pt;}
.x4d{left:692.726667pt;}
.xbd{left:697.393333pt;}
.x4e{left:698.285333pt;}
.xbe{left:701.716000pt;}
.x4f{left:703.936000pt;}
.xdd{left:707.613333pt;}
.x7f{left:712.745333pt;}
.x50{left:715.054667pt;}
.x62{left:716.564000pt;}
.x63{left:721.776000pt;}
.x80{left:723.009333pt;}
.x64{left:727.042667pt;}
.xa5{left:728.809333pt;}
.x65{left:731.785333pt;}
.xb8{left:733.373333pt;}
.x81{left:736.665333pt;}
.x66{left:737.709333pt;}
.xd9{left:738.836000pt;}
.xa6{left:739.928000pt;}
.x67{left:742.922667pt;}
}




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