
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_7dcb9f76cb1a045a49c41caf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_446766e4343c9f300d166a56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba47a36da8a11de25484e7bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_e1a7b9cc5ade7939ecd65624.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014000;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_b1a2c671f51cfa7dde9b42c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_2cd7e635393d5f99f856efc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.388000;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_fc861fbfb099b34a8a796591.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;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;}
.m15{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);}
.m23{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);}
.ma{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);}
.m20{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);}
.m18{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);}
.m17{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);}
.m1d{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);}
.m19{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);}
.m9{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);}
.m1a{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);}
.m21{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);}
.m7{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m26{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);}
.m4{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);}
.m16{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);}
.m1c{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);}
.m28{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);}
.me{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);}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1b{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);}
.m22{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);}
.m1e{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);}
.m25{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);}
.m11{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);}
.m2{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);}
.m27{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m5{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);}
.m14{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);}
.md{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);}
.mb{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);}
.m10{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);}
.m8{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);}
.m29{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);}
.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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000178px;}
.ls1d{letter-spacing:0.000292px;}
.ls2b{letter-spacing:0.000422px;}
.ls19{letter-spacing:0.000566px;}
.ls13{letter-spacing:0.000624px;}
.ls24{letter-spacing:0.000741px;}
.ls21{letter-spacing:0.000800px;}
.ls33{letter-spacing:0.000959px;}
.ls26{letter-spacing:0.001036px;}
.ls1c{letter-spacing:0.001102px;}
.ls2c{letter-spacing:0.001133px;}
.ls28{letter-spacing:0.001155px;}
.ls23{letter-spacing:0.001544px;}
.ls32{letter-spacing:0.001565px;}
.ls9{letter-spacing:0.001933px;}
.lsb{letter-spacing:0.001952px;}
.ls20{letter-spacing:0.002544px;}
.ls15{letter-spacing:0.002744px;}
.ls22{letter-spacing:0.003070px;}
.ls35{letter-spacing:0.003294px;}
.ls1{letter-spacing:0.004200px;}
.ls2a{letter-spacing:0.004267px;}
.ls1e{letter-spacing:0.004754px;}
.ls1b{letter-spacing:0.004800px;}
.ls2f{letter-spacing:0.005075px;}
.lsa{letter-spacing:0.005700px;}
.lsf{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls4{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls6{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls2e{letter-spacing:12.137535px;}
.ls34{letter-spacing:13.207880px;}
.ls1a{letter-spacing:13.292240px;}
.ls2d{letter-spacing:13.312054px;}
.ls31{letter-spacing:13.412950px;}
.ls30{letter-spacing:13.446566px;}
.ls16{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.454400px;}
.ls17{letter-spacing:13.457678px;}
.ls25{letter-spacing:13.478400px;}
.ls29{letter-spacing:13.730769px;}
.ls27{letter-spacing:13.879812px;}
.ls18{letter-spacing:14.432753px;}
.ls10{letter-spacing:14.794931px;}
.ls2{letter-spacing:14.938766px;}
.ls11{letter-spacing:14.943900px;}
.ls14{letter-spacing:19.723590px;}
.ls0{letter-spacing:57.415200px;}
.ls7{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls12{letter-spacing:94.215000px;}
.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;}
}
.ws2e{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.ws9a{word-spacing:-13.449600px;}
.ws17{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.wsa{word-spacing:-10.460700px;}
.ws8b{word-spacing:-3.466985px;}
.ws6f{word-spacing:-3.168107px;}
.ws7f{word-spacing:-3.048556px;}
.ws5c{word-spacing:-2.630126px;}
.ws6b{word-spacing:-2.331248px;}
.wsc5{word-spacing:-2.313331px;}
.ws4c{word-spacing:-2.032370px;}
.ws90{word-spacing:-1.972595px;}
.ws7e{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.wsc6{word-spacing:-1.882944px;}
.ws75{word-spacing:-1.853044px;}
.ws63{word-spacing:-1.793268px;}
.ws93{word-spacing:-1.733492px;}
.ws34{word-spacing:-1.613941px;}
.ws5e{word-spacing:-1.494390px;}
.ws65{word-spacing:-1.374839px;}
.wsd8{word-spacing:-1.344960px;}
.ws6{word-spacing:-1.322630px;}
.wsd9{word-spacing:-1.312295px;}
.ws6e{word-spacing:-1.255288px;}
.ws57{word-spacing:-1.195512px;}
.ws2d{word-spacing:-1.135736px;}
.ws49{word-spacing:-1.016185px;}
.wsa0{word-spacing:-0.968371px;}
.ws9d{word-spacing:-0.914573px;}
.wsa3{word-spacing:-0.869942px;}
.wsa4{word-spacing:-0.860774px;}
.ws45{word-spacing:-0.836858px;}
.ws41{word-spacing:-0.777083px;}
.ws50{word-spacing:-0.597756px;}
.ws59{word-spacing:-0.537984px;}
.ws53{word-spacing:-0.537980px;}
.wsb3{word-spacing:-0.484186px;}
.ws91{word-spacing:-0.478205px;}
.ws9f{word-spacing:-0.376589px;}
.ws39{word-spacing:-0.358654px;}
.ws1f{word-spacing:-0.322790px;}
.ws2c{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.268992px;}
.ws26{word-spacing:-0.239102px;}
.wsa7{word-spacing:-0.215194px;}
.wsb2{word-spacing:-0.196692px;}
.ws30{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.161395px;}
.wsd6{word-spacing:-0.130898px;}
.ws28{word-spacing:-0.119551px;}
.wsa2{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.059776px;}
.ws1a{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.wse1{word-spacing:-0.028560px;}
.wsce{word-spacing:-0.006998px;}
.wsdd{word-spacing:-0.006422px;}
.wsde{word-spacing:-0.005290px;}
.ws4{word-spacing:-0.005117px;}
.wsd5{word-spacing:-0.004570px;}
.wsa5{word-spacing:-0.002304px;}
.wsc0{word-spacing:-0.001046px;}
.wse0{word-spacing:-0.000998px;}
.wsd4{word-spacing:-0.000960px;}
.ws9{word-spacing:-0.000696px;}
.ws0{word-spacing:0.000000px;}
.wsbe{word-spacing:0.000710px;}
.wsd7{word-spacing:0.001430px;}
.ws19{word-spacing:0.053798px;}
.ws38{word-spacing:0.059776px;}
.ws81{word-spacing:0.095641px;}
.ws24{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws1b{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws82{word-spacing:0.191282px;}
.wsc{word-spacing:0.209214px;}
.ws9e{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsbd{word-spacing:0.268992px;}
.wse{word-spacing:0.292900px;}
.ws33{word-spacing:0.298878px;}
.wsbf{word-spacing:0.322790px;}
.ws61{word-spacing:0.358654px;}
.wsdf{word-spacing:0.376589px;}
.ws43{word-spacing:0.418429px;}
.wsd0{word-spacing:0.430387px;}
.ws62{word-spacing:0.478205px;}
.wsc9{word-spacing:0.484186px;}
.ws54{word-spacing:0.657532px;}
.wsb4{word-spacing:0.699379px;}
.ws23{word-spacing:0.753178px;}
.ws35{word-spacing:0.777083px;}
.ws99{word-spacing:0.806976px;}
.ws4b{word-spacing:0.836858px;}
.ws52{word-spacing:0.896634px;}
.ws77{word-spacing:0.956410px;}
.ws96{word-spacing:1.016185px;}
.ws8a{word-spacing:1.075961px;}
.ws1d{word-spacing:1.075968px;}
.ws98{word-spacing:1.129766px;}
.ws66{word-spacing:1.135736px;}
.wsb9{word-spacing:1.183565px;}
.ws51{word-spacing:1.195512px;}
.wsb1{word-spacing:1.291162px;}
.ws4d{word-spacing:1.315063px;}
.wsb5{word-spacing:1.343021px;}
.ws73{word-spacing:1.374839px;}
.ws2b{word-spacing:1.434614px;}
.ws22{word-spacing:1.452557px;}
.ws70{word-spacing:1.494390px;}
.wsac{word-spacing:1.506355px;}
.ws29{word-spacing:1.613941px;}
.ws37{word-spacing:1.673717px;}
.ws21{word-spacing:1.721549px;}
.wsa9{word-spacing:1.775347px;}
.ws87{word-spacing:1.793268px;}
.ws84{word-spacing:1.853044px;}
.ws69{word-spacing:1.912819px;}
.ws64{word-spacing:1.972595px;}
.wsd{word-spacing:2.008454px;}
.ws5b{word-spacing:2.032370px;}
.ws8f{word-spacing:2.092146px;}
.ws20{word-spacing:2.098138px;}
.ws55{word-spacing:2.151922px;}
.ws32{word-spacing:2.211697px;}
.ws1c{word-spacing:2.259533px;}
.ws4f{word-spacing:2.271473px;}
.ws9c{word-spacing:2.313331px;}
.ws4e{word-spacing:2.331248px;}
.ws7b{word-spacing:2.450800px;}
.wsae{word-spacing:2.474726px;}
.ws42{word-spacing:2.510575px;}
.ws2a{word-spacing:2.570351px;}
.ws94{word-spacing:2.630126px;}
.ws40{word-spacing:2.689902px;}
.ws95{word-spacing:2.749678px;}
.ws46{word-spacing:2.809453px;}
.ws18{word-spacing:2.869236px;}
.wse2{word-spacing:2.905114px;}
.wse3{word-spacing:2.958912px;}
.ws6c{word-spacing:2.988780px;}
.wsda{word-spacing:3.012710px;}
.ws68{word-spacing:3.108331px;}
.wscf{word-spacing:3.120307px;}
.ws5a{word-spacing:3.168107px;}
.wsaa{word-spacing:3.222125px;}
.wse5{word-spacing:3.223622px;}
.wsba{word-spacing:3.225216px;}
.ws5f{word-spacing:3.227882px;}
.wsb0{word-spacing:3.227904px;}
.wsb8{word-spacing:3.228490px;}
.ws3e{word-spacing:3.287658px;}
.wse4{word-spacing:3.335501px;}
.ws56{word-spacing:3.347434px;}
.wsbb{word-spacing:3.389299px;}
.ws3c{word-spacing:3.466985px;}
.ws97{word-spacing:3.526760px;}
.ws25{word-spacing:3.586536px;}
.wsad{word-spacing:3.604493px;}
.ws88{word-spacing:3.646312px;}
.ws60{word-spacing:3.706087px;}
.ws3d{word-spacing:3.765863px;}
.wsc7{word-spacing:3.765888px;}
.wsc8{word-spacing:3.819686px;}
.ws92{word-spacing:3.825638px;}
.wsdb{word-spacing:3.873485px;}
.ws3a{word-spacing:4.004965px;}
.ws48{word-spacing:4.064741px;}
.ws6a{word-spacing:4.124516px;}
.ws89{word-spacing:4.184292px;}
.ws47{word-spacing:4.244068px;}
.ws4a{word-spacing:4.303843px;}
.wsd3{word-spacing:4.303872px;}
.wsc4{word-spacing:4.411469px;}
.ws8d{word-spacing:4.423394px;}
.ws44{word-spacing:4.483170px;}
.ws8e{word-spacing:4.542946px;}
.wsa1{word-spacing:4.572864px;}
.ws79{word-spacing:4.602721px;}
.ws86{word-spacing:4.662497px;}
.wsdc{word-spacing:4.680461px;}
.ws3f{word-spacing:4.722272px;}
.ws7d{word-spacing:4.782048px;}
.wscd{word-spacing:4.788058px;}
.ws7a{word-spacing:4.841824px;}
.wsc2{word-spacing:4.841856px;}
.ws31{word-spacing:4.961375px;}
.wsb6{word-spacing:5.003251px;}
.ws83{word-spacing:5.080926px;}
.ws74{word-spacing:5.140702px;}
.ws9b{word-spacing:5.218445px;}
.wsb7{word-spacing:5.272243px;}
.ws58{word-spacing:5.320028px;}
.wsc3{word-spacing:5.379840px;}
.wsd2{word-spacing:5.433638px;}
.ws71{word-spacing:5.439580px;}
.ws7c{word-spacing:5.738458px;}
.ws67{word-spacing:5.798233px;}
.wsaf{word-spacing:5.864026px;}
.wsbc{word-spacing:5.971622px;}
.ws72{word-spacing:5.977560px;}
.wsa6{word-spacing:6.025421px;}
.ws14{word-spacing:6.067206px;}
.ws5d{word-spacing:6.097111px;}
.ws15{word-spacing:6.150892px;}
.ws76{word-spacing:6.156887px;}
.ws6d{word-spacing:6.216662px;}
.wsd1{word-spacing:6.563405px;}
.ws78{word-spacing:6.754643px;}
.wsab{word-spacing:7.047590px;}
.ws85{word-spacing:7.053521px;}
.wscb{word-spacing:7.477978px;}
.wsca{word-spacing:7.531776px;}
.ws2f{word-spacing:7.651277px;}
.ws8c{word-spacing:8.428360px;}
.ws12{word-spacing:8.661460px;}
.wsb{word-spacing:10.460700px;}
.wsc1{word-spacing:11.512858px;}
.ws8{word-spacing:15.483541px;}
.wsf{word-spacing:16.142252px;}
.ws10{word-spacing:16.151321px;}
.ws11{word-spacing:17.699504px;}
.wscc{word-spacing:26.253619px;}
.ws13{word-spacing:27.448877px;}
.ws5{word-spacing:40.068708px;}
.ws80{word-spacing:631.327561px;}
._25{margin-left:-19.472342px;}
._26{margin-left:-8.069760px;}
._a{margin-left:-7.029628px;}
._8{margin-left:-5.397721px;}
._15{margin-left:-4.376556px;}
._3{margin-left:-3.287641px;}
._6{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._7{width:1.091170px;}
._4{width:2.992670px;}
._0{width:10.165172px;}
._f{width:11.955150px;}
._9{width:12.971268px;}
._c{width:14.512624px;}
._b{width:15.900575px;}
._19{width:17.142660px;}
._e{width:18.231558px;}
._d{width:19.863775px;}
._14{width:21.014914px;}
._18{width:22.894055px;}
._1c{width:24.554835px;}
._12{width:25.703508px;}
._21{width:27.019871px;}
._16{width:28.141371px;}
._13{width:29.529146px;}
._17{width:31.382190px;}
._2{width:33.355008px;}
._24{width:35.130355px;}
._1b{width:36.881545px;}
._22{width:38.253407px;}
._1d{width:39.319408px;}
._5{width:54.408869px;}
._23{width:61.868160px;}
._10{width:418.811859px;}
._1e{width:1092.430310px;}
._20{width:1121.919097px;}
._1a{width:1324.032422px;}
._1f{width:2008.909301px;}
._11{width:2032.819301px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fsc{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yd{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.yc{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y51{bottom:31.890000px;}
.y2{bottom:37.114269px;}
.y1da{bottom:90.513000px;}
.y248{bottom:92.709000px;}
.y10e{bottom:93.117000px;}
.y20e{bottom:97.281000px;}
.y28{bottom:102.823500px;}
.y27d{bottom:103.557000px;}
.y1d9{bottom:104.709000px;}
.ybc{bottom:104.902500px;}
.y12a{bottom:105.351000px;}
.y144{bottom:105.799500px;}
.y221{bottom:106.246500px;}
.y21c{bottom:106.695000px;}
.y247{bottom:109.968000px;}
.y1d0{bottom:111.808500px;}
.y10d{bottom:111.946500px;}
.y50{bottom:115.327500px;}
.y20d{bottom:116.110500px;}
.y1d8{bottom:118.906500px;}
.y27{bottom:120.711000px;}
.y27c{bottom:120.817500px;}
.ybb{bottom:123.732000px;}
.y129{bottom:124.180500px;}
.y143{bottom:124.627500px;}
.y220{bottom:125.076000px;}
.y21b{bottom:125.524500px;}
.y1cf{bottom:126.004500px;}
.y246{bottom:127.228500px;}
.y87{bottom:128.196000px;}
.y10c{bottom:130.776000px;}
.y1d7{bottom:133.102500px;}
.y4f{bottom:134.157000px;}
.y20c{bottom:134.940000px;}
.y27b{bottom:138.078000px;}
.y26{bottom:138.600000px;}
.y1ce{bottom:140.202000px;}
.yba{bottom:142.561500px;}
.y19f{bottom:142.822500px;}
.y128{bottom:143.010000px;}
.y142{bottom:143.457000px;}
.y21f{bottom:143.905500px;}
.y21a{bottom:144.354000px;}
.y245{bottom:144.489000px;}
.y86{bottom:147.025500px;}
.y1d6{bottom:147.300000px;}
.y10b{bottom:149.605500px;}
.y4e{bottom:152.986500px;}
.y20b{bottom:153.769500px;}
.y1cd{bottom:154.398000px;}
.y27a{bottom:155.338500px;}
.y25{bottom:156.487500px;}
.y19e{bottom:159.261000px;}
.yb9{bottom:161.391000px;}
.y1d5{bottom:161.496000px;}
.y244{bottom:161.749500px;}
.y127{bottom:161.839500px;}
.y141{bottom:162.286500px;}
.y21e{bottom:162.735000px;}
.y219{bottom:163.183500px;}
.y85{bottom:165.855000px;}
.y10a{bottom:168.435000px;}
.y1cc{bottom:168.595500px;}
.yd0{bottom:171.139500px;}
.y20a{bottom:172.599000px;}
.y24{bottom:174.375000px;}
.y1d4{bottom:175.693500px;}
.y19d{bottom:175.699500px;}
.y4d{bottom:176.299500px;}
.y243{bottom:179.010000px;}
.yb8{bottom:180.220500px;}
.y126{bottom:180.669000px;}
.y140{bottom:181.116000px;}
.y218{bottom:182.013000px;}
.y1cb{bottom:182.791500px;}
.y84{bottom:184.684500px;}
.y21d{bottom:186.048000px;}
.y109{bottom:187.264500px;}
.y279{bottom:189.858000px;}
.y1d3{bottom:189.889500px;}
.ycf{bottom:189.967500px;}
.y209{bottom:191.428500px;}
.y19c{bottom:192.138000px;}
.y23{bottom:192.264000px;}
.y242{bottom:196.270500px;}
.y1ca{bottom:196.989000px;}
.yb7{bottom:199.050000px;}
.y125{bottom:199.497000px;}
.y13f{bottom:199.945500px;}
.y217{bottom:200.842500px;}
.y83{bottom:203.514000px;}
.y1d2{bottom:204.087000px;}
.y108{bottom:206.094000px;}
.y278{bottom:207.118500px;}
.y19b{bottom:208.576500px;}
.yce{bottom:208.797000px;}
.y22{bottom:210.151500px;}
.y208{bottom:210.258000px;}
.y241{bottom:213.531000px;}
.yb6{bottom:217.878000px;}
.y1d1{bottom:218.283000px;}
.y124{bottom:218.326500px;}
.y13e{bottom:218.775000px;}
.y216{bottom:219.672000px;}
.y82{bottom:222.343500px;}
.y277{bottom:224.379000px;}
.y107{bottom:224.923500px;}
.y19a{bottom:225.015000px;}
.ycd{bottom:227.626500px;}
.y21{bottom:228.039000px;}
.y207{bottom:229.086000px;}
.y240{bottom:230.791500px;}
.yb5{bottom:236.707500px;}
.y193{bottom:236.970000px;}
.y123{bottom:237.156000px;}
.y13d{bottom:237.604500px;}
.y215{bottom:238.501500px;}
.y1c9{bottom:239.683500px;}
.y81{bottom:241.173000px;}
.y199{bottom:241.453500px;}
.y276{bottom:241.639500px;}
.y106{bottom:243.753000px;}
.ycc{bottom:246.456000px;}
.y206{bottom:247.915500px;}
.y23f{bottom:248.050500px;}
.y4c{bottom:251.449500px;}
.y1c8{bottom:253.879500px;}
.y16a{bottom:255.090000px;}
.yb4{bottom:255.537000px;}
.y13c{bottom:256.434000px;}
.y214{bottom:257.331000px;}
.y198{bottom:257.892000px;}
.y275{bottom:258.900000px;}
.y80{bottom:260.002500px;}
.y122{bottom:260.469000px;}
.y105{bottom:262.582500px;}
.ycb{bottom:265.285500px;}
.y23e{bottom:265.311000px;}
.y205{bottom:266.745000px;}
.y1c7{bottom:268.077000px;}
.y4b{bottom:270.907500px;}
.y169{bottom:273.919500px;}
.y197{bottom:274.330500px;}
.yb3{bottom:274.366500px;}
.y13b{bottom:275.263500px;}
.y213{bottom:276.160500px;}
.y7f{bottom:278.832000px;}
.y104{bottom:281.410500px;}
.y1c6{bottom:282.273000px;}
.y23d{bottom:282.571500px;}
.yca{bottom:284.115000px;}
.y204{bottom:285.574500px;}
.y196{bottom:290.769000px;}
.y168{bottom:292.747500px;}
.yb2{bottom:293.196000px;}
.y274{bottom:293.421000px;}
.y121{bottom:294.093000px;}
.y212{bottom:294.990000px;}
.y1c5{bottom:296.470500px;}
.y7e{bottom:297.661500px;}
.y103{bottom:300.240000px;}
.yc9{bottom:302.944500px;}
.y23c{bottom:304.315500px;}
.y203{bottom:304.404000px;}
.y195{bottom:307.206000px;}
.y20{bottom:307.299000px;}
.y4a{bottom:308.296500px;}
.y273{bottom:310.681500px;}
.y167{bottom:311.577000px;}
.y120{bottom:312.922500px;}
.y211{bottom:313.819500px;}
.y7d{bottom:316.491000px;}
.yb1{bottom:316.509000px;}
.y13a{bottom:317.406000px;}
.y1c4{bottom:317.869500px;}
.y102{bottom:319.069500px;}
.yc8{bottom:321.774000px;}
.y202{bottom:323.233500px;}
.y194{bottom:323.644500px;}
.y1f{bottom:325.186500px;}
.y49{bottom:327.753000px;}
.y272{bottom:327.940500px;}
.y166{bottom:330.406500px;}
.y11f{bottom:331.752000px;}
.y1c3{bottom:332.065500px;}
.y210{bottom:332.649000px;}
.y7c{bottom:335.320500px;}
.yb0{bottom:336.684000px;}
.y101{bottom:337.899000px;}
.y23b{bottom:337.939500px;}
.y1bd{bottom:339.163500px;}
.y201{bottom:342.063000px;}
.y1e{bottom:343.074000px;}
.y271{bottom:345.201000px;}
.y1c2{bottom:346.263000px;}
.y48{bottom:347.211000px;}
.y165{bottom:349.236000px;}
.y11e{bottom:350.581500px;}
.y139{bottom:351.030000px;}
.y20f{bottom:351.478500px;}
.y1bc{bottom:353.361000px;}
.y7b{bottom:354.150000px;}
.y192{bottom:354.757500px;}
.yc7{bottom:355.339500px;}
.y100{bottom:356.728500px;}
.y1c1{bottom:360.459000px;}
.y200{bottom:360.892500px;}
.y1d{bottom:360.963000px;}
.y270{bottom:362.461500px;}
.y23a{bottom:364.480500px;}
.y47{bottom:366.667500px;}
.y1bb{bottom:367.557000px;}
.y164{bottom:368.065500px;}
.y11d{bottom:369.411000px;}
.y138{bottom:369.859500px;}
.yaf{bottom:370.308000px;}
.y191{bottom:371.196000px;}
.y7a{bottom:372.979500px;}
.y1c0{bottom:374.656500px;}
.yff{bottom:375.558000px;}
.y1ff{bottom:379.722000px;}
.y1ba{bottom:381.754500px;}
.y239{bottom:382.054500px;}
.y46{bottom:386.125500px;}
.y163{bottom:386.895000px;}
.y190{bottom:387.634500px;}
.y11c{bottom:388.240500px;}
.y137{bottom:388.689000px;}
.y1bf{bottom:388.852500px;}
.yae{bottom:389.137500px;}
.y79{bottom:391.809000px;}
.yfe{bottom:394.387500px;}
.y26f{bottom:396.982500px;}
.y1fe{bottom:398.551500px;}
.y1c{bottom:399.024000px;}
.y238{bottom:399.628500px;}
.y1be{bottom:403.050000px;}
.y18f{bottom:404.073000px;}
.y45{bottom:405.582000px;}
.y162{bottom:405.724500px;}
.y136{bottom:407.518500px;}
.yad{bottom:407.967000px;}
.y78{bottom:410.638500px;}
.y11b{bottom:411.553500px;}
.yfd{bottom:413.217000px;}
.y26e{bottom:414.243000px;}
.y1b{bottom:416.913000px;}
.y237{bottom:417.202500px;}
.y1fd{bottom:417.381000px;}
.y18e{bottom:420.511500px;}
.y1b9{bottom:424.449000px;}
.y161{bottom:424.554000px;}
.y44{bottom:425.038500px;}
.y135{bottom:426.348000px;}
.yac{bottom:426.796500px;}
.y77{bottom:429.468000px;}
.y26d{bottom:431.503500px;}
.yfc{bottom:432.046500px;}
.y236{bottom:434.776500px;}
.y1a{bottom:434.800500px;}
.y1fc{bottom:436.210500px;}
.y18d{bottom:436.950000px;}
.y1b7{bottom:438.645000px;}
.y160{bottom:443.383500px;}
.y43{bottom:444.496500px;}
.y11a{bottom:445.177500px;}
.yab{bottom:445.626000px;}
.y76{bottom:448.297500px;}
.y26c{bottom:448.764000px;}
.yfb{bottom:450.876000px;}
.y235{bottom:452.350500px;}
.y19{bottom:452.688000px;}
.y1b6{bottom:452.842500px;}
.y18c{bottom:453.388500px;}
.y1fb{bottom:455.040000px;}
.y15f{bottom:462.213000px;}
.y42{bottom:463.953000px;}
.y119{bottom:464.007000px;}
.yaa{bottom:464.454000px;}
.y26b{bottom:466.024500px;}
.y1b5{bottom:467.038500px;}
.y75{bottom:467.127000px;}
.yfa{bottom:469.705500px;}
.y18b{bottom:469.827000px;}
.y234{bottom:469.924500px;}
.y1fa{bottom:473.869500px;}
.y15e{bottom:481.042500px;}
.y1b4{bottom:481.236000px;}
.y118{bottom:482.836500px;}
.ya9{bottom:483.283500px;}
.y41{bottom:483.409500px;}
.y74{bottom:485.956500px;}
.y18a{bottom:486.264000px;}
.y233{bottom:487.498500px;}
.y18{bottom:488.509500px;}
.yf9{bottom:488.535000px;}
.y1f9{bottom:492.699000px;}
.y1b3{bottom:495.432000px;}
.y15d{bottom:499.872000px;}
.y26a{bottom:500.544000px;}
.y117{bottom:501.666000px;}
.ya8{bottom:502.113000px;}
.y189{bottom:502.702500px;}
.y40{bottom:502.867500px;}
.y73{bottom:504.786000px;}
.y17{bottom:506.397000px;}
.yf8{bottom:507.364500px;}
.y1b8{bottom:509.629500px;}
.y1f8{bottom:511.528500px;}
.y232{bottom:514.039500px;}
.y269{bottom:517.804500px;}
.y15c{bottom:518.701500px;}
.y188{bottom:519.141000px;}
.y116{bottom:520.495500px;}
.ya7{bottom:520.942500px;}
.y3f{bottom:522.324000px;}
.y72{bottom:523.615500px;}
.y16{bottom:524.286000px;}
.yf7{bottom:526.194000px;}
.y1f7{bottom:530.358000px;}
.y1ae{bottom:531.028500px;}
.y268{bottom:535.065000px;}
.y187{bottom:535.579500px;}
.y15b{bottom:537.531000px;}
.y115{bottom:539.323500px;}
.ya6{bottom:539.772000px;}
.y231{bottom:540.580500px;}
.y3e{bottom:541.782000px;}
.y15{bottom:542.173500px;}
.y71{bottom:542.445000px;}
.yf6{bottom:545.023500px;}
.y1ad{bottom:545.224500px;}
.y1f6{bottom:549.187500px;}
.y186{bottom:552.018000px;}
.y1b2{bottom:552.324000px;}
.y267{bottom:552.325500px;}
.y15a{bottom:556.360500px;}
.y114{bottom:558.153000px;}
.ya5{bottom:558.601500px;}
.y1ac{bottom:559.422000px;}
.y14{bottom:560.061000px;}
.y3d{bottom:561.238500px;}
.y70{bottom:561.274500px;}
.yf5{bottom:563.853000px;}
.y1b1{bottom:566.520000px;}
.y230{bottom:567.120000px;}
.y1f5{bottom:568.017000px;}
.y185{bottom:568.456500px;}
.y266{bottom:569.586000px;}
.y1ab{bottom:573.618000px;}
.y159{bottom:575.190000px;}
.y113{bottom:576.982500px;}
.ya4{bottom:577.431000px;}
.y13{bottom:577.950000px;}
.y6f{bottom:580.104000px;}
.y3c{bottom:580.695000px;}
.y1b0{bottom:580.717500px;}
.yf4{bottom:582.682500px;}
.y22e{bottom:584.694000px;}
.y184{bottom:584.895000px;}
.y265{bottom:586.846500px;}
.y1aa{bottom:587.815500px;}
.y22f{bottom:589.576500px;}
.y1f4{bottom:591.330000px;}
.y158{bottom:594.019500px;}
.y1af{bottom:594.913500px;}
.y112{bottom:595.812000px;}
.y12{bottom:595.837500px;}
.ya3{bottom:596.260500px;}
.y173{bottom:596.850000px;}
.y6e{bottom:598.932000px;}
.y3b{bottom:600.153000px;}
.y183{bottom:601.333500px;}
.yf3{bottom:601.512000px;}
.y1a9{bottom:602.011500px;}
.y22d{bottom:602.268000px;}
.y264{bottom:604.107000px;}
.y157{bottom:612.849000px;}
.y172{bottom:613.288500px;}
.y11{bottom:613.725000px;}
.y111{bottom:614.641500px;}
.ya2{bottom:615.090000px;}
.y1a8{bottom:616.209000px;}
.y6d{bottom:617.761500px;}
.y182{bottom:617.772000px;}
.y263{bottom:621.366000px;}
.y1f3{bottom:624.954000px;}
.y22c{bottom:628.809000px;}
.y10{bottom:631.614000px;}
.y156{bottom:631.678500px;}
.y110{bottom:633.471000px;}
.ya1{bottom:633.919500px;}
.y181{bottom:634.210500px;}
.y6c{bottom:636.591000px;}
.y1a7{bottom:637.608000px;}
.y262{bottom:638.626500px;}
.y3a{bottom:638.737500px;}
.y1f2{bottom:643.783500px;}
.y22b{bottom:646.383000px;}
.yf0{bottom:646.974000px;}
.yf{bottom:649.501500px;}
.y155{bottom:650.508000px;}
.y180{bottom:650.647500px;}
.yf2{bottom:651.457500px;}
.y134{bottom:652.300500px;}
.ya0{bottom:652.749000px;}
.y6b{bottom:655.420500px;}
.y261{bottom:655.887000px;}
.y10f{bottom:656.784000px;}
.y39{bottom:659.217000px;}
.y1f1{bottom:662.611500px;}
.yef{bottom:663.412500px;}
.y22a{bottom:663.957000px;}
.y17f{bottom:667.086000px;}
.ye{bottom:667.389000px;}
.y1a6{bottom:667.659000px;}
.yf1{bottom:667.896000px;}
.y38{bottom:671.017500px;}
.y133{bottom:671.130000px;}
.y9f{bottom:671.578500px;}
.y260{bottom:673.147500px;}
.y154{bottom:673.821000px;}
.y6a{bottom:674.250000px;}
.yee{bottom:679.851000px;}
.y1f0{bottom:681.441000px;}
.y17e{bottom:683.524500px;}
.yb{bottom:689.760055px;}
.y132{bottom:689.959500px;}
.y9e{bottom:690.408000px;}
.y229{bottom:690.498000px;}
.y37{bottom:691.497000px;}
.y69{bottom:693.079500px;}
.y17d{bottom:699.963000px;}
.y1ef{bottom:700.270500px;}
.y1a5{bottom:700.279500px;}
.y36{bottom:703.296000px;}
.yed{bottom:703.491000px;}
.y153{bottom:707.445000px;}
.y25f{bottom:707.668500px;}
.y228{bottom:708.072000px;}
.y131{bottom:708.789000px;}
.y9d{bottom:709.237500px;}
.y68{bottom:711.909000px;}
.yea{bottom:715.446000px;}
.y17c{bottom:716.401500px;}
.y1ee{bottom:719.100000px;}
.y1a4{bottom:719.109000px;}
.yec{bottom:719.929500px;}
.y35{bottom:723.775500px;}
.y25e{bottom:724.929000px;}
.y227{bottom:725.646000px;}
.y152{bottom:726.273000px;}
.y130{bottom:727.618500px;}
.y9c{bottom:728.067000px;}
.y67{bottom:730.738500px;}
.ye9{bottom:731.884500px;}
.y17b{bottom:732.840000px;}
.y34{bottom:735.576000px;}
.yeb{bottom:736.368000px;}
.y1ed{bottom:737.929500px;}
.y1a3{bottom:737.938500px;}
.y25d{bottom:742.189500px;}
.y226{bottom:743.220000px;}
.y151{bottom:745.102500px;}
.y12f{bottom:746.448000px;}
.y9b{bottom:746.896500px;}
.y17a{bottom:749.278500px;}
.y66{bottom:749.568000px;}
.y33{bottom:756.054000px;}
.y1ec{bottom:756.759000px;}
.y1a2{bottom:756.768000px;}
.y25c{bottom:759.450000px;}
.y150{bottom:763.932000px;}
.y12e{bottom:765.277500px;}
.y179{bottom:765.717000px;}
.y9a{bottom:765.726000px;}
.ye8{bottom:767.481000px;}
.y32{bottom:767.854500px;}
.y65{bottom:768.397500px;}
.y225{bottom:769.761000px;}
.y1eb{bottom:775.588500px;}
.y25b{bottom:776.709000px;}
.y1a1{bottom:780.081000px;}
.y178{bottom:782.155500px;}
.y14f{bottom:782.761500px;}
.ye7{bottom:783.919500px;}
.y31{bottom:783.994500px;}
.y12d{bottom:784.107000px;}
.y99{bottom:784.555500px;}
.y64{bottom:787.227000px;}
.y224{bottom:787.806000px;}
.y25a{bottom:793.969500px;}
.y1ea{bottom:794.418000px;}
.y177{bottom:798.594000px;}
.ye6{bottom:800.358000px;}
.y14e{bottom:801.591000px;}
.y12c{bottom:802.936500px;}
.y98{bottom:803.385000px;}
.y30{bottom:804.474000px;}
.y223{bottom:805.851000px;}
.y63{bottom:806.056500px;}
.y259{bottom:811.230000px;}
.ye1{bottom:812.313000px;}
.y1e9{bottom:813.247500px;}
.y176{bottom:815.031000px;}
.ye5{bottom:816.795000px;}
.y1a0{bottom:819.474000px;}
.y14d{bottom:820.420500px;}
.y2f{bottom:820.612500px;}
.yc6{bottom:821.766000px;}
.y97{bottom:822.214500px;}
.y222{bottom:823.896000px;}
.y62{bottom:824.886000px;}
.y258{bottom:828.490500px;}
.ye0{bottom:828.751500px;}
.y175{bottom:831.469500px;}
.y1e8{bottom:832.077000px;}
.y2e{bottom:832.413000px;}
.ye4{bottom:833.233500px;}
.y14c{bottom:839.250000px;}
.yc5{bottom:840.595500px;}
.y96{bottom:841.044000px;}
.y61{bottom:843.715500px;}
.y257{bottom:845.751000px;}
.y174{bottom:847.908000px;}
.ye3{bottom:849.672000px;}
.y1e7{bottom:850.906500px;}
.y2d{bottom:852.892500px;}
.y14b{bottom:858.079500px;}
.yc4{bottom:859.425000px;}
.y95{bottom:859.873500px;}
.y60{bottom:862.545000px;}
.y256{bottom:863.011500px;}
.y2c{bottom:864.691500px;}
.ye2{bottom:866.110500px;}
.y1e6{bottom:869.736000px;}
.y14a{bottom:876.909000px;}
.yc3{bottom:878.254500px;}
.y94{bottom:878.703000px;}
.y171{bottom:879.021000px;}
.y255{bottom:880.272000px;}
.y2b{bottom:880.831500px;}
.y5f{bottom:881.374500px;}
.y1e5{bottom:888.565500px;}
.y170{bottom:895.459500px;}
.y149{bottom:895.738500px;}
.y2a{bottom:896.971500px;}
.yc2{bottom:897.084000px;}
.ydf{bottom:897.223500px;}
.y93{bottom:897.532500px;}
.y5e{bottom:900.204000px;}
.y1e4{bottom:907.395000px;}
.y16f{bottom:911.898000px;}
.yde{bottom:913.662000px;}
.y148{bottom:914.568000px;}
.y253{bottom:914.791500px;}
.y254{bottom:914.793000px;}
.yc1{bottom:915.913500px;}
.y92{bottom:916.362000px;}
.ydb{bottom:917.398500px;}
.y29{bottom:917.449500px;}
.y5d{bottom:919.033500px;}
.y12b{bottom:920.397000px;}
.y1e3{bottom:926.224500px;}
.y16e{bottom:928.336500px;}
.ydd{bottom:930.100500px;}
.y252{bottom:932.052000px;}
.y147{bottom:933.397500px;}
.yda{bottom:933.835500px;}
.yc0{bottom:934.743000px;}
.y91{bottom:935.191500px;}
.y5c{bottom:937.863000px;}
.y16d{bottom:944.775000px;}
.y1e2{bottom:945.054000px;}
.ydc{bottom:946.539000px;}
.y251{bottom:949.312500px;}
.ybf{bottom:953.572500px;}
.y90{bottom:954.021000px;}
.y5b{bottom:956.692500px;}
.y146{bottom:956.710500px;}
.ya{bottom:957.643500px;}
.y16c{bottom:961.213500px;}
.y1e1{bottom:963.883500px;}
.y16b{bottom:964.948500px;}
.y250{bottom:966.573000px;}
.ybe{bottom:972.402000px;}
.y8f{bottom:972.849000px;}
.y5a{bottom:975.522000px;}
.y9{bottom:976.473000px;}
.y145{bottom:976.884000px;}
.yd9{bottom:977.650500px;}
.y24f{bottom:983.833500px;}
.y1e0{bottom:987.196500px;}
.y8e{bottom:991.678500px;}
.yd8{bottom:994.089000px;}
.y59{bottom:994.351500px;}
.y8{bottom:995.302500px;}
.ybd{bottom:995.713500px;}
.y24e{bottom:1001.094000px;}
.y1df{bottom:1006.026000px;}
.yd4{bottom:1006.045500px;}
.y8d{bottom:1010.508000px;}
.yd7{bottom:1010.527500px;}
.y58{bottom:1013.181000px;}
.y24d{bottom:1018.354500px;}
.yd3{bottom:1022.482500px;}
.y1de{bottom:1024.855500px;}
.yd6{bottom:1026.966000px;}
.y8c{bottom:1029.337500px;}
.y57{bottom:1032.010500px;}
.y24c{bottom:1035.615000px;}
.y7{bottom:1041.199500px;}
.yd5{bottom:1043.404500px;}
.y1dd{bottom:1043.685000px;}
.y8b{bottom:1048.167000px;}
.y56{bottom:1050.840000px;}
.y24b{bottom:1052.875500px;}
.y1dc{bottom:1062.513000px;}
.y8a{bottom:1066.996500px;}
.y6{bottom:1069.443000px;}
.y55{bottom:1069.669500px;}
.y24a{bottom:1070.134500px;}
.yd2{bottom:1074.517500px;}
.y1db{bottom:1081.342500px;}
.y89{bottom:1085.826000px;}
.y249{bottom:1087.395000px;}
.y54{bottom:1088.499000px;}
.y5{bottom:1097.688000px;}
.y88{bottom:1104.655500px;}
.yd1{bottom:1106.137500px;}
.y53{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y52{bottom:1173.397500px;}
.h14{height:24.889752px;}
.h8{height:25.508090px;}
.hd{height:26.217754px;}
.h16{height:27.655250px;}
.hb{height:30.587087px;}
.hc{height:30.670772px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.h15{height:34.430832px;}
.he{height:34.956859px;}
.h13{height:35.052500px;}
.hf{height:38.734848px;}
.h10{height:39.326630px;}
.h3{height:39.402747px;}
.h17{height:39.434227px;}
.h4{height:41.001535px;}
.h11{height:43.038432px;}
.h12{height:43.695964px;}
.h5{height:43.815515px;}
.h2{height:50.931027px;}
.h7{height:54.405312px;}
.h6{height:77.469696px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:59.014071px;}
.x44{left:62.967000px;}
.x42{left:77.146500px;}
.x41{left:84.510000px;}
.x7e{left:86.272500px;}
.x58{left:95.269500px;}
.x3d{left:104.100000px;}
.x43{left:110.367000px;}
.x3b{left:126.486000px;}
.x3c{left:127.797000px;}
.x40{left:133.399500px;}
.x5c{left:134.779500px;}
.x5d{left:182.616000px;}
.x5b{left:229.726500px;}
.x82{left:240.283500px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.x37{left:269.247000px;}
.x5{left:270.754500px;}
.x3e{left:271.992000px;}
.x3a{left:280.900500px;}
.x9{left:282.786000px;}
.x59{left:293.590500px;}
.xd{left:298.224000px;}
.x3f{left:302.553000px;}
.xe{left:305.697000px;}
.x50{left:307.941000px;}
.x7{left:309.433500px;}
.x7c{left:310.692000px;}
.x76{left:313.446000px;}
.x8{left:321.189000px;}
.x51{left:322.884000px;}
.x5a{left:324.151500px;}
.x56{left:325.423500px;}
.xa{left:329.259000px;}
.x54{left:335.518500px;}
.x57{left:340.368000px;}
.x11{left:344.850000px;}
.x77{left:349.267500px;}
.x55{left:350.463000px;}
.x12{left:352.321500px;}
.x13{left:356.065500px;}
.x14{left:363.537000px;}
.x27{left:369.609000px;}
.x7d{left:376.507500px;}
.x2e{left:378.432000px;}
.x19{left:380.091000px;}
.x64{left:381.622500px;}
.x28{left:384.552000px;}
.x29{left:388.326000px;}
.x7b{left:392.016000px;}
.x2f{left:393.376500px;}
.x1a{left:395.034000px;}
.x65{left:396.567000px;}
.x1b{left:398.793000px;}
.x23{left:400.620000px;}
.x2a{left:403.269000px;}
.x6c{left:405.019500px;}
.x49{left:412.218000px;}
.x1c{left:413.737500px;}
.x24{left:415.564500px;}
.x25{left:419.374500px;}
.x5e{left:421.803000px;}
.x4a{left:427.161000px;}
.x32{left:430.399500px;}
.x26{left:434.319000px;}
.x34{left:437.880000px;}
.x70{left:439.744500px;}
.x4b{left:445.845000px;}
.x45{left:449.199000px;}
.x35{left:452.824500px;}
.x71{left:454.689000px;}
.x46{left:464.142000px;}
.x68{left:465.456000px;}
.x47{left:471.763500px;}
.x69{left:480.400500px;}
.x48{left:486.708000px;}
.x6a{left:487.849500px;}
.x62{left:491.014500px;}
.x6b{left:502.794000px;}
.x63{left:505.959000px;}
.x15{left:598.239000px;}
.x60{left:602.820000px;}
.x1f{left:605.686500px;}
.x16{left:613.182000px;}
.x17{left:616.993500px;}
.x20{left:620.629500px;}
.x18{left:631.936500px;}
.x66{left:634.408500px;}
.x61{left:636.436500px;}
.xb{left:647.493000px;}
.x67{left:649.351500px;}
.x38{left:650.391000px;}
.xc{left:654.964500px;}
.x4c{left:656.368500px;}
.x85{left:661.273500px;}
.x39{left:665.335500px;}
.x4d{left:671.313000px;}
.x30{left:684.405000px;}
.x6d{left:686.713500px;}
.x86{left:688.173000px;}
.x1d{left:693.466500px;}
.x31{left:699.348000px;}
.x74{left:702.570000px;}
.x1e{left:708.411000px;}
.x75{left:717.514500px;}
.x83{left:728.406000px;}
.x7f{left:736.797000px;}
.x78{left:745.402500px;}
.x84{left:755.305500px;}
.x52{left:757.257000px;}
.x79{left:760.347000px;}
.x80{left:763.696500px;}
.x21{left:770.488500px;}
.x53{left:772.201500px;}
.x22{left:785.433000px;}
.x7a{left:787.746000px;}
.x5f{left:789.357000px;}
.x4e{left:795.943500px;}
.x2b{left:799.216500px;}
.x36{left:800.952000px;}
.x4f{left:810.888000px;}
.x6e{left:811.984500px;}
.x2c{left:814.161000px;}
.x72{left:815.214000px;}
.x81{left:816.336000px;}
.x2d{left:817.890000px;}
.x73{left:818.968500px;}
.xf{left:825.801000px;}
.x6f{left:826.929000px;}
.x33{left:831.894000px;}
.x10{left:833.049000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000158pt;}
.ls1d{letter-spacing:0.000260pt;}
.ls2b{letter-spacing:0.000375pt;}
.ls19{letter-spacing:0.000503pt;}
.ls13{letter-spacing:0.000554pt;}
.ls24{letter-spacing:0.000659pt;}
.ls21{letter-spacing:0.000711pt;}
.ls33{letter-spacing:0.000853pt;}
.ls26{letter-spacing:0.000921pt;}
.ls1c{letter-spacing:0.000980pt;}
.ls2c{letter-spacing:0.001007pt;}
.ls28{letter-spacing:0.001026pt;}
.ls23{letter-spacing:0.001372pt;}
.ls32{letter-spacing:0.001391pt;}
.ls9{letter-spacing:0.001718pt;}
.lsb{letter-spacing:0.001735pt;}
.ls20{letter-spacing:0.002262pt;}
.ls15{letter-spacing:0.002439pt;}
.ls22{letter-spacing:0.002729pt;}
.ls35{letter-spacing:0.002928pt;}
.ls1{letter-spacing:0.003733pt;}
.ls2a{letter-spacing:0.003793pt;}
.ls1e{letter-spacing:0.004226pt;}
.ls1b{letter-spacing:0.004267pt;}
.ls2f{letter-spacing:0.004512pt;}
.lsa{letter-spacing:0.005067pt;}
.lsf{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls4{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls6{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls2e{letter-spacing:10.788920pt;}
.ls34{letter-spacing:11.740338pt;}
.ls1a{letter-spacing:11.815324pt;}
.ls2d{letter-spacing:11.832937pt;}
.ls31{letter-spacing:11.922622pt;}
.ls30{letter-spacing:11.952503pt;}
.ls16{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.959467pt;}
.ls17{letter-spacing:11.962381pt;}
.ls25{letter-spacing:11.980800pt;}
.ls29{letter-spacing:12.205128pt;}
.ls27{letter-spacing:12.337610pt;}
.ls18{letter-spacing:12.829114pt;}
.ls10{letter-spacing:13.151050pt;}
.ls2{letter-spacing:13.278903pt;}
.ls11{letter-spacing:13.283467pt;}
.ls14{letter-spacing:17.532080pt;}
.ls0{letter-spacing:51.035733pt;}
.ls7{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls12{letter-spacing:83.746667pt;}
.ws2e{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.ws9a{word-spacing:-11.955200pt;}
.ws17{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.wsa{word-spacing:-9.298400pt;}
.ws8b{word-spacing:-3.081764pt;}
.ws6f{word-spacing:-2.816095pt;}
.ws7f{word-spacing:-2.709827pt;}
.ws5c{word-spacing:-2.337890pt;}
.ws6b{word-spacing:-2.072221pt;}
.wsc5{word-spacing:-2.056294pt;}
.ws4c{word-spacing:-1.806551pt;}
.ws90{word-spacing:-1.753418pt;}
.ws7e{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.wsc6{word-spacing:-1.673728pt;}
.ws75{word-spacing:-1.647150pt;}
.ws63{word-spacing:-1.594016pt;}
.ws93{word-spacing:-1.540882pt;}
.ws34{word-spacing:-1.434614pt;}
.ws5e{word-spacing:-1.328347pt;}
.ws65{word-spacing:-1.222079pt;}
.wsd8{word-spacing:-1.195520pt;}
.ws6{word-spacing:-1.175671pt;}
.wsd9{word-spacing:-1.166484pt;}
.ws6e{word-spacing:-1.115811pt;}
.ws57{word-spacing:-1.062677pt;}
.ws2d{word-spacing:-1.009543pt;}
.ws49{word-spacing:-0.903276pt;}
.wsa0{word-spacing:-0.860774pt;}
.ws9d{word-spacing:-0.812954pt;}
.wsa3{word-spacing:-0.773282pt;}
.wsa4{word-spacing:-0.765133pt;}
.ws45{word-spacing:-0.743874pt;}
.ws41{word-spacing:-0.690740pt;}
.ws50{word-spacing:-0.531339pt;}
.ws59{word-spacing:-0.478208pt;}
.ws53{word-spacing:-0.478205pt;}
.wsb3{word-spacing:-0.430387pt;}
.ws91{word-spacing:-0.425071pt;}
.ws9f{word-spacing:-0.334746pt;}
.ws39{word-spacing:-0.318803pt;}
.ws1f{word-spacing:-0.286925pt;}
.ws2c{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.239104pt;}
.ws26{word-spacing:-0.212535pt;}
.wsa7{word-spacing:-0.191283pt;}
.wsb2{word-spacing:-0.174837pt;}
.ws30{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.143462pt;}
.wsd6{word-spacing:-0.116354pt;}
.ws28{word-spacing:-0.106268pt;}
.wsa2{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.053134pt;}
.ws1a{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.wse1{word-spacing:-0.025387pt;}
.wsce{word-spacing:-0.006221pt;}
.wsdd{word-spacing:-0.005709pt;}
.wsde{word-spacing:-0.004702pt;}
.ws4{word-spacing:-0.004548pt;}
.wsd5{word-spacing:-0.004062pt;}
.wsa5{word-spacing:-0.002048pt;}
.wsc0{word-spacing:-0.000930pt;}
.wse0{word-spacing:-0.000887pt;}
.wsd4{word-spacing:-0.000853pt;}
.ws9{word-spacing:-0.000619pt;}
.ws0{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.000631pt;}
.wsd7{word-spacing:0.001271pt;}
.ws19{word-spacing:0.047821pt;}
.ws38{word-spacing:0.053134pt;}
.ws81{word-spacing:0.085014pt;}
.ws24{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws1b{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws82{word-spacing:0.170029pt;}
.wsc{word-spacing:0.185968pt;}
.ws9e{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsbd{word-spacing:0.239104pt;}
.wse{word-spacing:0.260355pt;}
.ws33{word-spacing:0.265669pt;}
.wsbf{word-spacing:0.286925pt;}
.ws61{word-spacing:0.318803pt;}
.wsdf{word-spacing:0.334746pt;}
.ws43{word-spacing:0.371937pt;}
.wsd0{word-spacing:0.382566pt;}
.ws62{word-spacing:0.425071pt;}
.wsc9{word-spacing:0.430387pt;}
.ws54{word-spacing:0.584473pt;}
.wsb4{word-spacing:0.621670pt;}
.ws23{word-spacing:0.669491pt;}
.ws35{word-spacing:0.690740pt;}
.ws99{word-spacing:0.717312pt;}
.ws4b{word-spacing:0.743874pt;}
.ws52{word-spacing:0.797008pt;}
.ws77{word-spacing:0.850142pt;}
.ws96{word-spacing:0.903276pt;}
.ws8a{word-spacing:0.956410pt;}
.ws1d{word-spacing:0.956416pt;}
.ws98{word-spacing:1.004237pt;}
.ws66{word-spacing:1.009543pt;}
.wsb9{word-spacing:1.052058pt;}
.ws51{word-spacing:1.062677pt;}
.wsb1{word-spacing:1.147699pt;}
.ws4d{word-spacing:1.168945pt;}
.wsb5{word-spacing:1.193796pt;}
.ws73{word-spacing:1.222079pt;}
.ws2b{word-spacing:1.275213pt;}
.ws22{word-spacing:1.291162pt;}
.ws70{word-spacing:1.328347pt;}
.wsac{word-spacing:1.338982pt;}
.ws29{word-spacing:1.434614pt;}
.ws37{word-spacing:1.487748pt;}
.ws21{word-spacing:1.530266pt;}
.wsa9{word-spacing:1.578086pt;}
.ws87{word-spacing:1.594016pt;}
.ws84{word-spacing:1.647150pt;}
.ws69{word-spacing:1.700284pt;}
.ws64{word-spacing:1.753418pt;}
.wsd{word-spacing:1.785293pt;}
.ws5b{word-spacing:1.806551pt;}
.ws8f{word-spacing:1.859685pt;}
.ws20{word-spacing:1.865011pt;}
.ws55{word-spacing:1.912819pt;}
.ws32{word-spacing:1.965953pt;}
.ws1c{word-spacing:2.008474pt;}
.ws4f{word-spacing:2.019087pt;}
.ws9c{word-spacing:2.056294pt;}
.ws4e{word-spacing:2.072221pt;}
.ws7b{word-spacing:2.178489pt;}
.wsae{word-spacing:2.199757pt;}
.ws42{word-spacing:2.231622pt;}
.ws2a{word-spacing:2.284756pt;}
.ws94{word-spacing:2.337890pt;}
.ws40{word-spacing:2.391024pt;}
.ws95{word-spacing:2.444158pt;}
.ws46{word-spacing:2.497292pt;}
.ws18{word-spacing:2.550432pt;}
.wse2{word-spacing:2.582323pt;}
.wse3{word-spacing:2.630144pt;}
.ws6c{word-spacing:2.656693pt;}
.wsda{word-spacing:2.677965pt;}
.ws68{word-spacing:2.762961pt;}
.wscf{word-spacing:2.773606pt;}
.ws5a{word-spacing:2.816095pt;}
.wsaa{word-spacing:2.864111pt;}
.wse5{word-spacing:2.865442pt;}
.wsba{word-spacing:2.866859pt;}
.ws5f{word-spacing:2.869229pt;}
.wsb0{word-spacing:2.869248pt;}
.wsb8{word-spacing:2.869769pt;}
.ws3e{word-spacing:2.922363pt;}
.wse4{word-spacing:2.964890pt;}
.ws56{word-spacing:2.975497pt;}
.wsbb{word-spacing:3.012710pt;}
.ws3c{word-spacing:3.081764pt;}
.ws97{word-spacing:3.134898pt;}
.ws25{word-spacing:3.188032pt;}
.wsad{word-spacing:3.203994pt;}
.ws88{word-spacing:3.241166pt;}
.ws60{word-spacing:3.294300pt;}
.ws3d{word-spacing:3.347434pt;}
.wsc7{word-spacing:3.347456pt;}
.wsc8{word-spacing:3.395277pt;}
.ws92{word-spacing:3.400567pt;}
.wsdb{word-spacing:3.443098pt;}
.ws3a{word-spacing:3.559969pt;}
.ws48{word-spacing:3.613103pt;}
.ws6a{word-spacing:3.666237pt;}
.ws89{word-spacing:3.719371pt;}
.ws47{word-spacing:3.772505pt;}
.ws4a{word-spacing:3.825638pt;}
.wsd3{word-spacing:3.825664pt;}
.wsc4{word-spacing:3.921306pt;}
.ws8d{word-spacing:3.931906pt;}
.ws44{word-spacing:3.985040pt;}
.ws8e{word-spacing:4.038174pt;}
.wsa1{word-spacing:4.064768pt;}
.ws79{word-spacing:4.091308pt;}
.ws86{word-spacing:4.144442pt;}
.wsdc{word-spacing:4.160410pt;}
.ws3f{word-spacing:4.197575pt;}
.ws7d{word-spacing:4.250709pt;}
.wscd{word-spacing:4.256051pt;}
.ws7a{word-spacing:4.303843pt;}
.wsc2{word-spacing:4.303872pt;}
.ws31{word-spacing:4.410111pt;}
.wsb6{word-spacing:4.447334pt;}
.ws83{word-spacing:4.516379pt;}
.ws74{word-spacing:4.569513pt;}
.ws9b{word-spacing:4.638618pt;}
.wsb7{word-spacing:4.686438pt;}
.ws58{word-spacing:4.728914pt;}
.wsc3{word-spacing:4.782080pt;}
.wsd2{word-spacing:4.829901pt;}
.ws71{word-spacing:4.835182pt;}
.ws7c{word-spacing:5.100851pt;}
.ws67{word-spacing:5.153985pt;}
.wsaf{word-spacing:5.212467pt;}
.wsbc{word-spacing:5.308109pt;}
.ws72{word-spacing:5.313387pt;}
.wsa6{word-spacing:5.355930pt;}
.ws14{word-spacing:5.393072pt;}
.ws5d{word-spacing:5.419654pt;}
.ws15{word-spacing:5.467459pt;}
.ws76{word-spacing:5.472788pt;}
.ws6d{word-spacing:5.525922pt;}
.wsd1{word-spacing:5.834138pt;}
.ws78{word-spacing:6.004127pt;}
.wsab{word-spacing:6.264525pt;}
.ws85{word-spacing:6.269796pt;}
.wscb{word-spacing:6.647091pt;}
.wsca{word-spacing:6.694912pt;}
.ws2f{word-spacing:6.801135pt;}
.ws8c{word-spacing:7.491875pt;}
.ws12{word-spacing:7.699075pt;}
.wsb{word-spacing:9.298400pt;}
.wsc1{word-spacing:10.233651pt;}
.ws8{word-spacing:13.763148pt;}
.wsf{word-spacing:14.348669pt;}
.ws10{word-spacing:14.356730pt;}
.ws11{word-spacing:15.732893pt;}
.wscc{word-spacing:23.336550pt;}
.ws13{word-spacing:24.399002pt;}
.ws5{word-spacing:35.616629pt;}
.ws80{word-spacing:561.180054pt;}
._25{margin-left:-17.308748pt;}
._26{margin-left:-7.173120pt;}
._a{margin-left:-6.248558pt;}
._8{margin-left:-4.797974pt;}
._15{margin-left:-3.890272pt;}
._3{margin-left:-2.922348pt;}
._6{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._7{width:0.969929pt;}
._4{width:2.660151pt;}
._0{width:9.035708pt;}
._f{width:10.626800pt;}
._9{width:11.530016pt;}
._c{width:12.900110pt;}
._b{width:14.133844pt;}
._19{width:15.237920pt;}
._e{width:16.205829pt;}
._d{width:17.656689pt;}
._14{width:18.679923pt;}
._18{width:20.350271pt;}
._1c{width:21.826520pt;}
._12{width:22.847563pt;}
._21{width:24.017663pt;}
._16{width:25.014552pt;}
._13{width:26.248130pt;}
._17{width:27.895280pt;}
._2{width:29.648896pt;}
._24{width:31.226982pt;}
._1b{width:32.783596pt;}
._22{width:34.003029pt;}
._1d{width:34.950585pt;}
._5{width:48.363439pt;}
._23{width:54.993920pt;}
._10{width:372.277208pt;}
._1e{width:971.049165pt;}
._20{width:997.261419pt;}
._1a{width:1176.917709pt;}
._1f{width:1785.697156pt;}
._11{width:1806.950490pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fsc{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.yc{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y51{bottom:28.346667pt;}
.y2{bottom:32.990462pt;}
.y1da{bottom:80.456000pt;}
.y248{bottom:82.408000pt;}
.y10e{bottom:82.770667pt;}
.y20e{bottom:86.472000pt;}
.y28{bottom:91.398667pt;}
.y27d{bottom:92.050667pt;}
.y1d9{bottom:93.074667pt;}
.ybc{bottom:93.246667pt;}
.y12a{bottom:93.645333pt;}
.y144{bottom:94.044000pt;}
.y221{bottom:94.441333pt;}
.y21c{bottom:94.840000pt;}
.y247{bottom:97.749333pt;}
.y1d0{bottom:99.385333pt;}
.y10d{bottom:99.508000pt;}
.y50{bottom:102.513333pt;}
.y20d{bottom:103.209333pt;}
.y1d8{bottom:105.694667pt;}
.y27{bottom:107.298667pt;}
.y27c{bottom:107.393333pt;}
.ybb{bottom:109.984000pt;}
.y129{bottom:110.382667pt;}
.y143{bottom:110.780000pt;}
.y220{bottom:111.178667pt;}
.y21b{bottom:111.577333pt;}
.y1cf{bottom:112.004000pt;}
.y246{bottom:113.092000pt;}
.y87{bottom:113.952000pt;}
.y10c{bottom:116.245333pt;}
.y1d7{bottom:118.313333pt;}
.y4f{bottom:119.250667pt;}
.y20c{bottom:119.946667pt;}
.y27b{bottom:122.736000pt;}
.y26{bottom:123.200000pt;}
.y1ce{bottom:124.624000pt;}
.yba{bottom:126.721333pt;}
.y19f{bottom:126.953333pt;}
.y128{bottom:127.120000pt;}
.y142{bottom:127.517333pt;}
.y21f{bottom:127.916000pt;}
.y21a{bottom:128.314667pt;}
.y245{bottom:128.434667pt;}
.y86{bottom:130.689333pt;}
.y1d6{bottom:130.933333pt;}
.y10b{bottom:132.982667pt;}
.y4e{bottom:135.988000pt;}
.y20b{bottom:136.684000pt;}
.y1cd{bottom:137.242667pt;}
.y27a{bottom:138.078667pt;}
.y25{bottom:139.100000pt;}
.y19e{bottom:141.565333pt;}
.yb9{bottom:143.458667pt;}
.y1d5{bottom:143.552000pt;}
.y244{bottom:143.777333pt;}
.y127{bottom:143.857333pt;}
.y141{bottom:144.254667pt;}
.y21e{bottom:144.653333pt;}
.y219{bottom:145.052000pt;}
.y85{bottom:147.426667pt;}
.y10a{bottom:149.720000pt;}
.y1cc{bottom:149.862667pt;}
.yd0{bottom:152.124000pt;}
.y20a{bottom:153.421333pt;}
.y24{bottom:155.000000pt;}
.y1d4{bottom:156.172000pt;}
.y19d{bottom:156.177333pt;}
.y4d{bottom:156.710667pt;}
.y243{bottom:159.120000pt;}
.yb8{bottom:160.196000pt;}
.y126{bottom:160.594667pt;}
.y140{bottom:160.992000pt;}
.y218{bottom:161.789333pt;}
.y1cb{bottom:162.481333pt;}
.y84{bottom:164.164000pt;}
.y21d{bottom:165.376000pt;}
.y109{bottom:166.457333pt;}
.y279{bottom:168.762667pt;}
.y1d3{bottom:168.790667pt;}
.ycf{bottom:168.860000pt;}
.y209{bottom:170.158667pt;}
.y19c{bottom:170.789333pt;}
.y23{bottom:170.901333pt;}
.y242{bottom:174.462667pt;}
.y1ca{bottom:175.101333pt;}
.yb7{bottom:176.933333pt;}
.y125{bottom:177.330667pt;}
.y13f{bottom:177.729333pt;}
.y217{bottom:178.526667pt;}
.y83{bottom:180.901333pt;}
.y1d2{bottom:181.410667pt;}
.y108{bottom:183.194667pt;}
.y278{bottom:184.105333pt;}
.y19b{bottom:185.401333pt;}
.yce{bottom:185.597333pt;}
.y22{bottom:186.801333pt;}
.y208{bottom:186.896000pt;}
.y241{bottom:189.805333pt;}
.yb6{bottom:193.669333pt;}
.y1d1{bottom:194.029333pt;}
.y124{bottom:194.068000pt;}
.y13e{bottom:194.466667pt;}
.y216{bottom:195.264000pt;}
.y82{bottom:197.638667pt;}
.y277{bottom:199.448000pt;}
.y107{bottom:199.932000pt;}
.y19a{bottom:200.013333pt;}
.ycd{bottom:202.334667pt;}
.y21{bottom:202.701333pt;}
.y207{bottom:203.632000pt;}
.y240{bottom:205.148000pt;}
.yb5{bottom:210.406667pt;}
.y193{bottom:210.640000pt;}
.y123{bottom:210.805333pt;}
.y13d{bottom:211.204000pt;}
.y215{bottom:212.001333pt;}
.y1c9{bottom:213.052000pt;}
.y81{bottom:214.376000pt;}
.y199{bottom:214.625333pt;}
.y276{bottom:214.790667pt;}
.y106{bottom:216.669333pt;}
.ycc{bottom:219.072000pt;}
.y206{bottom:220.369333pt;}
.y23f{bottom:220.489333pt;}
.y4c{bottom:223.510667pt;}
.y1c8{bottom:225.670667pt;}
.y16a{bottom:226.746667pt;}
.yb4{bottom:227.144000pt;}
.y13c{bottom:227.941333pt;}
.y214{bottom:228.738667pt;}
.y198{bottom:229.237333pt;}
.y275{bottom:230.133333pt;}
.y80{bottom:231.113333pt;}
.y122{bottom:231.528000pt;}
.y105{bottom:233.406667pt;}
.ycb{bottom:235.809333pt;}
.y23e{bottom:235.832000pt;}
.y205{bottom:237.106667pt;}
.y1c7{bottom:238.290667pt;}
.y4b{bottom:240.806667pt;}
.y169{bottom:243.484000pt;}
.y197{bottom:243.849333pt;}
.yb3{bottom:243.881333pt;}
.y13b{bottom:244.678667pt;}
.y213{bottom:245.476000pt;}
.y7f{bottom:247.850667pt;}
.y104{bottom:250.142667pt;}
.y1c6{bottom:250.909333pt;}
.y23d{bottom:251.174667pt;}
.yca{bottom:252.546667pt;}
.y204{bottom:253.844000pt;}
.y196{bottom:258.461333pt;}
.y168{bottom:260.220000pt;}
.yb2{bottom:260.618667pt;}
.y274{bottom:260.818667pt;}
.y121{bottom:261.416000pt;}
.y212{bottom:262.213333pt;}
.y1c5{bottom:263.529333pt;}
.y7e{bottom:264.588000pt;}
.y103{bottom:266.880000pt;}
.yc9{bottom:269.284000pt;}
.y23c{bottom:270.502667pt;}
.y203{bottom:270.581333pt;}
.y195{bottom:273.072000pt;}
.y20{bottom:273.154667pt;}
.y4a{bottom:274.041333pt;}
.y273{bottom:276.161333pt;}
.y167{bottom:276.957333pt;}
.y120{bottom:278.153333pt;}
.y211{bottom:278.950667pt;}
.y7d{bottom:281.325333pt;}
.yb1{bottom:281.341333pt;}
.y13a{bottom:282.138667pt;}
.y1c4{bottom:282.550667pt;}
.y102{bottom:283.617333pt;}
.yc8{bottom:286.021333pt;}
.y202{bottom:287.318667pt;}
.y194{bottom:287.684000pt;}
.y1f{bottom:289.054667pt;}
.y49{bottom:291.336000pt;}
.y272{bottom:291.502667pt;}
.y166{bottom:293.694667pt;}
.y11f{bottom:294.890667pt;}
.y1c3{bottom:295.169333pt;}
.y210{bottom:295.688000pt;}
.y7c{bottom:298.062667pt;}
.yb0{bottom:299.274667pt;}
.y101{bottom:300.354667pt;}
.y23b{bottom:300.390667pt;}
.y1bd{bottom:301.478667pt;}
.y201{bottom:304.056000pt;}
.y1e{bottom:304.954667pt;}
.y271{bottom:306.845333pt;}
.y1c2{bottom:307.789333pt;}
.y48{bottom:308.632000pt;}
.y165{bottom:310.432000pt;}
.y11e{bottom:311.628000pt;}
.y139{bottom:312.026667pt;}
.y20f{bottom:312.425333pt;}
.y1bc{bottom:314.098667pt;}
.y7b{bottom:314.800000pt;}
.y192{bottom:315.340000pt;}
.yc7{bottom:315.857333pt;}
.y100{bottom:317.092000pt;}
.y1c1{bottom:320.408000pt;}
.y200{bottom:320.793333pt;}
.y1d{bottom:320.856000pt;}
.y270{bottom:322.188000pt;}
.y23a{bottom:323.982667pt;}
.y47{bottom:325.926667pt;}
.y1bb{bottom:326.717333pt;}
.y164{bottom:327.169333pt;}
.y11d{bottom:328.365333pt;}
.y138{bottom:328.764000pt;}
.yaf{bottom:329.162667pt;}
.y191{bottom:329.952000pt;}
.y7a{bottom:331.537333pt;}
.y1c0{bottom:333.028000pt;}
.yff{bottom:333.829333pt;}
.y1ff{bottom:337.530667pt;}
.y1ba{bottom:339.337333pt;}
.y239{bottom:339.604000pt;}
.y46{bottom:343.222667pt;}
.y163{bottom:343.906667pt;}
.y190{bottom:344.564000pt;}
.y11c{bottom:345.102667pt;}
.y137{bottom:345.501333pt;}
.y1bf{bottom:345.646667pt;}
.yae{bottom:345.900000pt;}
.y79{bottom:348.274667pt;}
.yfe{bottom:350.566667pt;}
.y26f{bottom:352.873333pt;}
.y1fe{bottom:354.268000pt;}
.y1c{bottom:354.688000pt;}
.y238{bottom:355.225333pt;}
.y1be{bottom:358.266667pt;}
.y18f{bottom:359.176000pt;}
.y45{bottom:360.517333pt;}
.y162{bottom:360.644000pt;}
.y136{bottom:362.238667pt;}
.yad{bottom:362.637333pt;}
.y78{bottom:365.012000pt;}
.y11b{bottom:365.825333pt;}
.yfd{bottom:367.304000pt;}
.y26e{bottom:368.216000pt;}
.y1b{bottom:370.589333pt;}
.y237{bottom:370.846667pt;}
.y1fd{bottom:371.005333pt;}
.y18e{bottom:373.788000pt;}
.y1b9{bottom:377.288000pt;}
.y161{bottom:377.381333pt;}
.y44{bottom:377.812000pt;}
.y135{bottom:378.976000pt;}
.yac{bottom:379.374667pt;}
.y77{bottom:381.749333pt;}
.y26d{bottom:383.558667pt;}
.yfc{bottom:384.041333pt;}
.y236{bottom:386.468000pt;}
.y1a{bottom:386.489333pt;}
.y1fc{bottom:387.742667pt;}
.y18d{bottom:388.400000pt;}
.y1b7{bottom:389.906667pt;}
.y160{bottom:394.118667pt;}
.y43{bottom:395.108000pt;}
.y11a{bottom:395.713333pt;}
.yab{bottom:396.112000pt;}
.y76{bottom:398.486667pt;}
.y26c{bottom:398.901333pt;}
.yfb{bottom:400.778667pt;}
.y235{bottom:402.089333pt;}
.y19{bottom:402.389333pt;}
.y1b6{bottom:402.526667pt;}
.y18c{bottom:403.012000pt;}
.y1fb{bottom:404.480000pt;}
.y15f{bottom:410.856000pt;}
.y42{bottom:412.402667pt;}
.y119{bottom:412.450667pt;}
.yaa{bottom:412.848000pt;}
.y26b{bottom:414.244000pt;}
.y1b5{bottom:415.145333pt;}
.y75{bottom:415.224000pt;}
.yfa{bottom:417.516000pt;}
.y18b{bottom:417.624000pt;}
.y234{bottom:417.710667pt;}
.y1fa{bottom:421.217333pt;}
.y15e{bottom:427.593333pt;}
.y1b4{bottom:427.765333pt;}
.y118{bottom:429.188000pt;}
.ya9{bottom:429.585333pt;}
.y41{bottom:429.697333pt;}
.y74{bottom:431.961333pt;}
.y18a{bottom:432.234667pt;}
.y233{bottom:433.332000pt;}
.y18{bottom:434.230667pt;}
.yf9{bottom:434.253333pt;}
.y1f9{bottom:437.954667pt;}
.y1b3{bottom:440.384000pt;}
.y15d{bottom:444.330667pt;}
.y26a{bottom:444.928000pt;}
.y117{bottom:445.925333pt;}
.ya8{bottom:446.322667pt;}
.y189{bottom:446.846667pt;}
.y40{bottom:446.993333pt;}
.y73{bottom:448.698667pt;}
.y17{bottom:450.130667pt;}
.yf8{bottom:450.990667pt;}
.y1b8{bottom:453.004000pt;}
.y1f8{bottom:454.692000pt;}
.y232{bottom:456.924000pt;}
.y269{bottom:460.270667pt;}
.y15c{bottom:461.068000pt;}
.y188{bottom:461.458667pt;}
.y116{bottom:462.662667pt;}
.ya7{bottom:463.060000pt;}
.y3f{bottom:464.288000pt;}
.y72{bottom:465.436000pt;}
.y16{bottom:466.032000pt;}
.yf7{bottom:467.728000pt;}
.y1f7{bottom:471.429333pt;}
.y1ae{bottom:472.025333pt;}
.y268{bottom:475.613333pt;}
.y187{bottom:476.070667pt;}
.y15b{bottom:477.805333pt;}
.y115{bottom:479.398667pt;}
.ya6{bottom:479.797333pt;}
.y231{bottom:480.516000pt;}
.y3e{bottom:481.584000pt;}
.y15{bottom:481.932000pt;}
.y71{bottom:482.173333pt;}
.yf6{bottom:484.465333pt;}
.y1ad{bottom:484.644000pt;}
.y1f6{bottom:488.166667pt;}
.y186{bottom:490.682667pt;}
.y1b2{bottom:490.954667pt;}
.y267{bottom:490.956000pt;}
.y15a{bottom:494.542667pt;}
.y114{bottom:496.136000pt;}
.ya5{bottom:496.534667pt;}
.y1ac{bottom:497.264000pt;}
.y14{bottom:497.832000pt;}
.y3d{bottom:498.878667pt;}
.y70{bottom:498.910667pt;}
.yf5{bottom:501.202667pt;}
.y1b1{bottom:503.573333pt;}
.y230{bottom:504.106667pt;}
.y1f5{bottom:504.904000pt;}
.y185{bottom:505.294667pt;}
.y266{bottom:506.298667pt;}
.y1ab{bottom:509.882667pt;}
.y159{bottom:511.280000pt;}
.y113{bottom:512.873333pt;}
.ya4{bottom:513.272000pt;}
.y13{bottom:513.733333pt;}
.y6f{bottom:515.648000pt;}
.y3c{bottom:516.173333pt;}
.y1b0{bottom:516.193333pt;}
.yf4{bottom:517.940000pt;}
.y22e{bottom:519.728000pt;}
.y184{bottom:519.906667pt;}
.y265{bottom:521.641333pt;}
.y1aa{bottom:522.502667pt;}
.y22f{bottom:524.068000pt;}
.y1f4{bottom:525.626667pt;}
.y158{bottom:528.017333pt;}
.y1af{bottom:528.812000pt;}
.y112{bottom:529.610667pt;}
.y12{bottom:529.633333pt;}
.ya3{bottom:530.009333pt;}
.y173{bottom:530.533333pt;}
.y6e{bottom:532.384000pt;}
.y3b{bottom:533.469333pt;}
.y183{bottom:534.518667pt;}
.yf3{bottom:534.677333pt;}
.y1a9{bottom:535.121333pt;}
.y22d{bottom:535.349333pt;}
.y264{bottom:536.984000pt;}
.y157{bottom:544.754667pt;}
.y172{bottom:545.145333pt;}
.y11{bottom:545.533333pt;}
.y111{bottom:546.348000pt;}
.ya2{bottom:546.746667pt;}
.y1a8{bottom:547.741333pt;}
.y6d{bottom:549.121333pt;}
.y182{bottom:549.130667pt;}
.y263{bottom:552.325333pt;}
.y1f3{bottom:555.514667pt;}
.y22c{bottom:558.941333pt;}
.y10{bottom:561.434667pt;}
.y156{bottom:561.492000pt;}
.y110{bottom:563.085333pt;}
.ya1{bottom:563.484000pt;}
.y181{bottom:563.742667pt;}
.y6c{bottom:565.858667pt;}
.y1a7{bottom:566.762667pt;}
.y262{bottom:567.668000pt;}
.y3a{bottom:567.766667pt;}
.y1f2{bottom:572.252000pt;}
.y22b{bottom:574.562667pt;}
.yf0{bottom:575.088000pt;}
.yf{bottom:577.334667pt;}
.y155{bottom:578.229333pt;}
.y180{bottom:578.353333pt;}
.yf2{bottom:579.073333pt;}
.y134{bottom:579.822667pt;}
.ya0{bottom:580.221333pt;}
.y6b{bottom:582.596000pt;}
.y261{bottom:583.010667pt;}
.y10f{bottom:583.808000pt;}
.y39{bottom:585.970667pt;}
.y1f1{bottom:588.988000pt;}
.yef{bottom:589.700000pt;}
.y22a{bottom:590.184000pt;}
.y17f{bottom:592.965333pt;}
.ye{bottom:593.234667pt;}
.y1a6{bottom:593.474667pt;}
.yf1{bottom:593.685333pt;}
.y38{bottom:596.460000pt;}
.y133{bottom:596.560000pt;}
.y9f{bottom:596.958667pt;}
.y260{bottom:598.353333pt;}
.y154{bottom:598.952000pt;}
.y6a{bottom:599.333333pt;}
.yee{bottom:604.312000pt;}
.y1f0{bottom:605.725333pt;}
.y17e{bottom:607.577333pt;}
.yb{bottom:613.120048pt;}
.y132{bottom:613.297333pt;}
.y9e{bottom:613.696000pt;}
.y229{bottom:613.776000pt;}
.y37{bottom:614.664000pt;}
.y69{bottom:616.070667pt;}
.y17d{bottom:622.189333pt;}
.y1ef{bottom:622.462667pt;}
.y1a5{bottom:622.470667pt;}
.y36{bottom:625.152000pt;}
.yed{bottom:625.325333pt;}
.y153{bottom:628.840000pt;}
.y25f{bottom:629.038667pt;}
.y228{bottom:629.397333pt;}
.y131{bottom:630.034667pt;}
.y9d{bottom:630.433333pt;}
.y68{bottom:632.808000pt;}
.yea{bottom:635.952000pt;}
.y17c{bottom:636.801333pt;}
.y1ee{bottom:639.200000pt;}
.y1a4{bottom:639.208000pt;}
.yec{bottom:639.937333pt;}
.y35{bottom:643.356000pt;}
.y25e{bottom:644.381333pt;}
.y227{bottom:645.018667pt;}
.y152{bottom:645.576000pt;}
.y130{bottom:646.772000pt;}
.y9c{bottom:647.170667pt;}
.y67{bottom:649.545333pt;}
.ye9{bottom:650.564000pt;}
.y17b{bottom:651.413333pt;}
.y34{bottom:653.845333pt;}
.yeb{bottom:654.549333pt;}
.y1ed{bottom:655.937333pt;}
.y1a3{bottom:655.945333pt;}
.y25d{bottom:659.724000pt;}
.y226{bottom:660.640000pt;}
.y151{bottom:662.313333pt;}
.y12f{bottom:663.509333pt;}
.y9b{bottom:663.908000pt;}
.y17a{bottom:666.025333pt;}
.y66{bottom:666.282667pt;}
.y33{bottom:672.048000pt;}
.y1ec{bottom:672.674667pt;}
.y1a2{bottom:672.682667pt;}
.y25c{bottom:675.066667pt;}
.y150{bottom:679.050667pt;}
.y12e{bottom:680.246667pt;}
.y179{bottom:680.637333pt;}
.y9a{bottom:680.645333pt;}
.ye8{bottom:682.205333pt;}
.y32{bottom:682.537333pt;}
.y65{bottom:683.020000pt;}
.y225{bottom:684.232000pt;}
.y1eb{bottom:689.412000pt;}
.y25b{bottom:690.408000pt;}
.y1a1{bottom:693.405333pt;}
.y178{bottom:695.249333pt;}
.y14f{bottom:695.788000pt;}
.ye7{bottom:696.817333pt;}
.y31{bottom:696.884000pt;}
.y12d{bottom:696.984000pt;}
.y99{bottom:697.382667pt;}
.y64{bottom:699.757333pt;}
.y224{bottom:700.272000pt;}
.y25a{bottom:705.750667pt;}
.y1ea{bottom:706.149333pt;}
.y177{bottom:709.861333pt;}
.ye6{bottom:711.429333pt;}
.y14e{bottom:712.525333pt;}
.y12c{bottom:713.721333pt;}
.y98{bottom:714.120000pt;}
.y30{bottom:715.088000pt;}
.y223{bottom:716.312000pt;}
.y63{bottom:716.494667pt;}
.y259{bottom:721.093333pt;}
.ye1{bottom:722.056000pt;}
.y1e9{bottom:722.886667pt;}
.y176{bottom:724.472000pt;}
.ye5{bottom:726.040000pt;}
.y1a0{bottom:728.421333pt;}
.y14d{bottom:729.262667pt;}
.y2f{bottom:729.433333pt;}
.yc6{bottom:730.458667pt;}
.y97{bottom:730.857333pt;}
.y222{bottom:732.352000pt;}
.y62{bottom:733.232000pt;}
.y258{bottom:736.436000pt;}
.ye0{bottom:736.668000pt;}
.y175{bottom:739.084000pt;}
.y1e8{bottom:739.624000pt;}
.y2e{bottom:739.922667pt;}
.ye4{bottom:740.652000pt;}
.y14c{bottom:746.000000pt;}
.yc5{bottom:747.196000pt;}
.y96{bottom:747.594667pt;}
.y61{bottom:749.969333pt;}
.y257{bottom:751.778667pt;}
.y174{bottom:753.696000pt;}
.ye3{bottom:755.264000pt;}
.y1e7{bottom:756.361333pt;}
.y2d{bottom:758.126667pt;}
.y14b{bottom:762.737333pt;}
.yc4{bottom:763.933333pt;}
.y95{bottom:764.332000pt;}
.y60{bottom:766.706667pt;}
.y256{bottom:767.121333pt;}
.y2c{bottom:768.614667pt;}
.ye2{bottom:769.876000pt;}
.y1e6{bottom:773.098667pt;}
.y14a{bottom:779.474667pt;}
.yc3{bottom:780.670667pt;}
.y94{bottom:781.069333pt;}
.y171{bottom:781.352000pt;}
.y255{bottom:782.464000pt;}
.y2b{bottom:782.961333pt;}
.y5f{bottom:783.444000pt;}
.y1e5{bottom:789.836000pt;}
.y170{bottom:795.964000pt;}
.y149{bottom:796.212000pt;}
.y2a{bottom:797.308000pt;}
.yc2{bottom:797.408000pt;}
.ydf{bottom:797.532000pt;}
.y93{bottom:797.806667pt;}
.y5e{bottom:800.181333pt;}
.y1e4{bottom:806.573333pt;}
.y16f{bottom:810.576000pt;}
.yde{bottom:812.144000pt;}
.y148{bottom:812.949333pt;}
.y253{bottom:813.148000pt;}
.y254{bottom:813.149333pt;}
.yc1{bottom:814.145333pt;}
.y92{bottom:814.544000pt;}
.ydb{bottom:815.465333pt;}
.y29{bottom:815.510667pt;}
.y5d{bottom:816.918667pt;}
.y12b{bottom:818.130667pt;}
.y1e3{bottom:823.310667pt;}
.y16e{bottom:825.188000pt;}
.ydd{bottom:826.756000pt;}
.y252{bottom:828.490667pt;}
.y147{bottom:829.686667pt;}
.yda{bottom:830.076000pt;}
.yc0{bottom:830.882667pt;}
.y91{bottom:831.281333pt;}
.y5c{bottom:833.656000pt;}
.y16d{bottom:839.800000pt;}
.y1e2{bottom:840.048000pt;}
.ydc{bottom:841.368000pt;}
.y251{bottom:843.833333pt;}
.ybf{bottom:847.620000pt;}
.y90{bottom:848.018667pt;}
.y5b{bottom:850.393333pt;}
.y146{bottom:850.409333pt;}
.ya{bottom:851.238667pt;}
.y16c{bottom:854.412000pt;}
.y1e1{bottom:856.785333pt;}
.y16b{bottom:857.732000pt;}
.y250{bottom:859.176000pt;}
.ybe{bottom:864.357333pt;}
.y8f{bottom:864.754667pt;}
.y5a{bottom:867.130667pt;}
.y9{bottom:867.976000pt;}
.y145{bottom:868.341333pt;}
.yd9{bottom:869.022667pt;}
.y24f{bottom:874.518667pt;}
.y1e0{bottom:877.508000pt;}
.y8e{bottom:881.492000pt;}
.yd8{bottom:883.634667pt;}
.y59{bottom:883.868000pt;}
.y8{bottom:884.713333pt;}
.ybd{bottom:885.078667pt;}
.y24e{bottom:889.861333pt;}
.y1df{bottom:894.245333pt;}
.yd4{bottom:894.262667pt;}
.y8d{bottom:898.229333pt;}
.yd7{bottom:898.246667pt;}
.y58{bottom:900.605333pt;}
.y24d{bottom:905.204000pt;}
.yd3{bottom:908.873333pt;}
.y1de{bottom:910.982667pt;}
.yd6{bottom:912.858667pt;}
.y8c{bottom:914.966667pt;}
.y57{bottom:917.342667pt;}
.y24c{bottom:920.546667pt;}
.y7{bottom:925.510667pt;}
.yd5{bottom:927.470667pt;}
.y1dd{bottom:927.720000pt;}
.y8b{bottom:931.704000pt;}
.y56{bottom:934.080000pt;}
.y24b{bottom:935.889333pt;}
.y1dc{bottom:944.456000pt;}
.y8a{bottom:948.441333pt;}
.y6{bottom:950.616000pt;}
.y55{bottom:950.817333pt;}
.y24a{bottom:951.230667pt;}
.yd2{bottom:955.126667pt;}
.y1db{bottom:961.193333pt;}
.y89{bottom:965.178667pt;}
.y249{bottom:966.573333pt;}
.y54{bottom:967.554667pt;}
.y5{bottom:975.722667pt;}
.y88{bottom:981.916000pt;}
.yd1{bottom:983.233333pt;}
.y53{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y52{bottom:1043.020000pt;}
.h14{height:22.124224pt;}
.h8{height:22.673858pt;}
.hd{height:23.304670pt;}
.h16{height:24.582445pt;}
.hb{height:27.188522pt;}
.hc{height:27.262909pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.h15{height:30.605184pt;}
.he{height:31.072763pt;}
.h13{height:31.157778pt;}
.hf{height:34.430976pt;}
.h10{height:34.957005pt;}
.h3{height:35.024664pt;}
.h17{height:35.052646pt;}
.h4{height:36.445809pt;}
.h11{height:38.256384pt;}
.h12{height:38.840857pt;}
.h5{height:38.947124pt;}
.h2{height:45.272024pt;}
.h7{height:48.360277pt;}
.h6{height:68.861952pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:52.456952pt;}
.x44{left:55.970667pt;}
.x42{left:68.574667pt;}
.x41{left:75.120000pt;}
.x7e{left:76.686667pt;}
.x58{left:84.684000pt;}
.x3d{left:92.533333pt;}
.x43{left:98.104000pt;}
.x3b{left:112.432000pt;}
.x3c{left:113.597333pt;}
.x40{left:118.577333pt;}
.x5c{left:119.804000pt;}
.x5d{left:162.325333pt;}
.x5b{left:204.201333pt;}
.x82{left:213.585333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.x37{left:239.330667pt;}
.x5{left:240.670667pt;}
.x3e{left:241.770667pt;}
.x3a{left:249.689333pt;}
.x9{left:251.365333pt;}
.x59{left:260.969333pt;}
.xd{left:265.088000pt;}
.x3f{left:268.936000pt;}
.xe{left:271.730667pt;}
.x50{left:273.725333pt;}
.x7{left:275.052000pt;}
.x7c{left:276.170667pt;}
.x76{left:278.618667pt;}
.x8{left:285.501333pt;}
.x51{left:287.008000pt;}
.x5a{left:288.134667pt;}
.x56{left:289.265333pt;}
.xa{left:292.674667pt;}
.x54{left:298.238667pt;}
.x57{left:302.549333pt;}
.x11{left:306.533333pt;}
.x77{left:310.460000pt;}
.x55{left:311.522667pt;}
.x12{left:313.174667pt;}
.x13{left:316.502667pt;}
.x14{left:323.144000pt;}
.x27{left:328.541333pt;}
.x7d{left:334.673333pt;}
.x2e{left:336.384000pt;}
.x19{left:337.858667pt;}
.x64{left:339.220000pt;}
.x28{left:341.824000pt;}
.x29{left:345.178667pt;}
.x7b{left:348.458667pt;}
.x2f{left:349.668000pt;}
.x1a{left:351.141333pt;}
.x65{left:352.504000pt;}
.x1b{left:354.482667pt;}
.x23{left:356.106667pt;}
.x2a{left:358.461333pt;}
.x6c{left:360.017333pt;}
.x49{left:366.416000pt;}
.x1c{left:367.766667pt;}
.x24{left:369.390667pt;}
.x25{left:372.777333pt;}
.x5e{left:374.936000pt;}
.x4a{left:379.698667pt;}
.x32{left:382.577333pt;}
.x26{left:386.061333pt;}
.x34{left:389.226667pt;}
.x70{left:390.884000pt;}
.x4b{left:396.306667pt;}
.x45{left:399.288000pt;}
.x35{left:402.510667pt;}
.x71{left:404.168000pt;}
.x46{left:412.570667pt;}
.x68{left:413.738667pt;}
.x47{left:419.345333pt;}
.x69{left:427.022667pt;}
.x48{left:432.629333pt;}
.x6a{left:433.644000pt;}
.x62{left:436.457333pt;}
.x6b{left:446.928000pt;}
.x63{left:449.741333pt;}
.x15{left:531.768000pt;}
.x60{left:535.840000pt;}
.x1f{left:538.388000pt;}
.x16{left:545.050667pt;}
.x17{left:548.438667pt;}
.x20{left:551.670667pt;}
.x18{left:561.721333pt;}
.x66{left:563.918667pt;}
.x61{left:565.721333pt;}
.xb{left:575.549333pt;}
.x67{left:577.201333pt;}
.x38{left:578.125333pt;}
.xc{left:582.190667pt;}
.x4c{left:583.438667pt;}
.x85{left:587.798667pt;}
.x39{left:591.409333pt;}
.x4d{left:596.722667pt;}
.x30{left:608.360000pt;}
.x6d{left:610.412000pt;}
.x86{left:611.709333pt;}
.x1d{left:616.414667pt;}
.x31{left:621.642667pt;}
.x74{left:624.506667pt;}
.x1e{left:629.698667pt;}
.x75{left:637.790667pt;}
.x83{left:647.472000pt;}
.x7f{left:654.930667pt;}
.x78{left:662.580000pt;}
.x84{left:671.382667pt;}
.x52{left:673.117333pt;}
.x79{left:675.864000pt;}
.x80{left:678.841333pt;}
.x21{left:684.878667pt;}
.x53{left:686.401333pt;}
.x22{left:698.162667pt;}
.x7a{left:700.218667pt;}
.x5f{left:701.650667pt;}
.x4e{left:707.505333pt;}
.x2b{left:710.414667pt;}
.x36{left:711.957333pt;}
.x4f{left:720.789333pt;}
.x6e{left:721.764000pt;}
.x2c{left:723.698667pt;}
.x72{left:724.634667pt;}
.x81{left:725.632000pt;}
.x2d{left:727.013333pt;}
.x73{left:727.972000pt;}
.xf{left:734.045333pt;}
.x6f{left:735.048000pt;}
.x33{left:739.461333pt;}
.x10{left:740.488000pt;}
}




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