
    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_89eb0cfd9eb520013fc2bff6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc13d4e1e2330b42f1c65dc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_a6a3df637c64bf5088e4625f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7690df2bee5afae6e1e0f1ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.226000;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_4db460640da21f9fea178d18.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_d487b913328e08f1794ac3aa.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_3aec0ddedfc601a1235fd0e5.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_52521e14869355c48b53979a.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_406c742f4afd6cba7b78875c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;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_caaf3509cc82f7b19892ce21.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.676000;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_29690cdffc6363ed6d2bfcdc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.593000;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_7c379f8efb88d25983d05971.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740000;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_2d907b5530e46ce69ecb5365.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a0880014cbe85f65a7bac5b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.869000;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;}
.m5{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);}
.m19{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);}
.m23{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);}
.m3{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);}
.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);}
.me{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m28{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);}
.m6{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);}
.m20{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);}
.mf{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);}
.m2{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);}
.m4{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);}
.m27{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);}
.m1b{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);}
.m26{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);}
.m7{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);}
.md{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);}
.m11{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);}
.m24{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);}
.m16{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);}
.m18{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);}
.m25{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.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);}
.m13{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);}
.m8{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);}
.m9{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);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1a{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);}
.m17{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);}
.m21{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);}
.m14{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mb{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:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.614000px;}
.v3{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls16{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000124px;}
.ls1b{letter-spacing:0.000182px;}
.ls27{letter-spacing:0.000435px;}
.ls4b{letter-spacing:0.000447px;}
.ls24{letter-spacing:0.002132px;}
.ls22{letter-spacing:0.002224px;}
.ls4e{letter-spacing:0.002338px;}
.ls3a{letter-spacing:0.002477px;}
.ls2e{letter-spacing:0.002506px;}
.ls5{letter-spacing:0.002870px;}
.ls23{letter-spacing:0.003226px;}
.ls15{letter-spacing:0.003488px;}
.ls18{letter-spacing:0.003494px;}
.ls28{letter-spacing:0.003859px;}
.ls2d{letter-spacing:0.004090px;}
.ls3b{letter-spacing:0.004241px;}
.ls42{letter-spacing:0.004704px;}
.ls4a{letter-spacing:0.004800px;}
.ls26{letter-spacing:1.214948px;}
.ls17{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.983200px;}
.ls29{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls51{letter-spacing:11.646318px;}
.ls14{letter-spacing:11.954850px;}
.ls50{letter-spacing:12.429992px;}
.ls4d{letter-spacing:13.173516px;}
.ls48{letter-spacing:13.190164px;}
.ls45{letter-spacing:13.234144px;}
.ls49{letter-spacing:13.244278px;}
.ls47{letter-spacing:13.433048px;}
.ls52{letter-spacing:13.439732px;}
.ls43{letter-spacing:13.448400px;}
.ls2c{letter-spacing:13.448870px;}
.ls2b{letter-spacing:13.450090px;}
.ls38{letter-spacing:13.451338px;}
.ls46{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.462165px;}
.lsd{letter-spacing:14.449332px;}
.ls10{letter-spacing:14.450940px;}
.lsf{letter-spacing:14.450976px;}
.lse{letter-spacing:14.457062px;}
.ls11{letter-spacing:14.457098px;}
.ls44{letter-spacing:14.620988px;}
.ls34{letter-spacing:14.689540px;}
.ls35{letter-spacing:14.689927px;}
.ls37{letter-spacing:14.801790px;}
.ls20{letter-spacing:14.904124px;}
.ls1f{letter-spacing:14.908766px;}
.ls21{letter-spacing:14.910124px;}
.lsa{letter-spacing:14.940124px;}
.lsb{letter-spacing:14.944200px;}
.ls9{letter-spacing:14.944638px;}
.lsc{letter-spacing:14.946124px;}
.ls1a{letter-spacing:14.974948px;}
.ls19{letter-spacing:14.975822px;}
.ls3e{letter-spacing:14.995838px;}
.ls3d{letter-spacing:14.995873px;}
.ls33{letter-spacing:15.012703px;}
.ls32{letter-spacing:15.017159px;}
.ls12{letter-spacing:15.099932px;}
.ls13{letter-spacing:15.103118px;}
.ls1c{letter-spacing:15.529472px;}
.ls1d{letter-spacing:15.533653px;}
.ls1e{letter-spacing:15.535355px;}
.ls3c{letter-spacing:15.663065px;}
.ls25{letter-spacing:15.716006px;}
.ls40{letter-spacing:15.971024px;}
.ls41{letter-spacing:15.974829px;}
.ls30{letter-spacing:16.680712px;}
.ls2f{letter-spacing:16.682788px;}
.ls31{letter-spacing:16.916495px;}
.ls3f{letter-spacing:17.133653px;}
.ls4c{letter-spacing:17.320988px;}
.ls4f{letter-spacing:18.615106px;}
.ls7{letter-spacing:20.159259px;}
.ls8{letter-spacing:20.163065px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls39{letter-spacing:351.487133px;}
.ls2a{letter-spacing:479.233133px;}
.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;}
}
.ws0{word-spacing:-117.622397px;}
.ws13{word-spacing:-17.394700px;}
.wsa{word-spacing:-15.655334px;}
.ws3a{word-spacing:-14.943900px;}
.ws5{word-spacing:-14.355754px;}
.ws29{word-spacing:-13.915795px;}
.ws5c{word-spacing:-13.449600px;}
.ws27{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws50{word-spacing:-3.885414px;}
.ws51{word-spacing:-3.646312px;}
.ws3c{word-spacing:-3.586536px;}
.ws8d{word-spacing:-3.407209px;}
.ws92{word-spacing:-3.287658px;}
.wsad{word-spacing:-3.281702px;}
.ws5a{word-spacing:-3.048556px;}
.wsb8{word-spacing:-3.012710px;}
.ws98{word-spacing:-2.809453px;}
.ws73{word-spacing:-2.749678px;}
.ws9e{word-spacing:-2.450800px;}
.wsc5{word-spacing:-2.420928px;}
.wsd5{word-spacing:-2.367130px;}
.wse1{word-spacing:-2.313331px;}
.ws59{word-spacing:-2.211697px;}
.wse6{word-spacing:-2.151936px;}
.ws2e{word-spacing:-2.092146px;}
.wsf6{word-spacing:-1.936742px;}
.ws15{word-spacing:-1.912819px;}
.wsc{word-spacing:-1.908367px;}
.ws21{word-spacing:-1.793268px;}
.wse2{word-spacing:-1.775347px;}
.wsa0{word-spacing:-1.733492px;}
.wsab{word-spacing:-1.721549px;}
.ws4f{word-spacing:-1.673717px;}
.ws16{word-spacing:-1.494390px;}
.ws8a{word-spacing:-1.434614px;}
.ws58{word-spacing:-1.374839px;}
.wsdb{word-spacing:-1.344960px;}
.wsb{word-spacing:-1.322630px;}
.ws49{word-spacing:-1.315063px;}
.ws6d{word-spacing:-1.195512px;}
.wse0{word-spacing:-1.183565px;}
.ws9f{word-spacing:-1.135736px;}
.wsdc{word-spacing:-1.022170px;}
.ws57{word-spacing:-1.016185px;}
.ws11{word-spacing:-0.956410px;}
.wsb0{word-spacing:-0.806976px;}
.ws2c{word-spacing:-0.777083px;}
.wsb3{word-spacing:-0.753178px;}
.ws54{word-spacing:-0.597756px;}
.wsd6{word-spacing:-0.591782px;}
.wsc7{word-spacing:-0.537984px;}
.ws17{word-spacing:-0.537980px;}
.wsd4{word-spacing:-0.430387px;}
.ws52{word-spacing:-0.418429px;}
.ws53{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.325757px;}
.wsb9{word-spacing:-0.322790px;}
.ws8b{word-spacing:-0.298878px;}
.wsb7{word-spacing:-0.268992px;}
.ws75{word-spacing:-0.242999px;}
.ws20{word-spacing:-0.239102px;}
.wsae{word-spacing:-0.215194px;}
.ws2b{word-spacing:-0.179327px;}
.wsa2{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.ws1{word-spacing:-0.107597px;}
.ws1b{word-spacing:-0.059776px;}
.ws5e{word-spacing:-0.053798px;}
.ws80{word-spacing:-0.025776px;}
.ws8{word-spacing:-0.015571px;}
.wsf8{word-spacing:-0.009312px;}
.wsf3{word-spacing:-0.004512px;}
.ws7f{word-spacing:-0.004378px;}
.wsbd{word-spacing:-0.004339px;}
.wsf0{word-spacing:-0.003754px;}
.wsc2{word-spacing:-0.003466px;}
.wsf5{word-spacing:-0.003139px;}
.wsee{word-spacing:-0.003082px;}
.wsde{word-spacing:-0.002304px;}
.wsf9{word-spacing:-0.001622px;}
.ws9{word-spacing:-0.001219px;}
.wsed{word-spacing:-0.001066px;}
.wsd8{word-spacing:-0.001037px;}
.ws6{word-spacing:-0.000292px;}
.ws2{word-spacing:0.000000px;}
.ws61{word-spacing:0.000710px;}
.wsba{word-spacing:0.001661px;}
.ws26{word-spacing:0.001867px;}
.ws76{word-spacing:0.005100px;}
.wsa1{word-spacing:0.053798px;}
.ws86{word-spacing:0.054392px;}
.ws37{word-spacing:0.059776px;}
.ws74{word-spacing:0.071371px;}
.wsa6{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.ws19{word-spacing:0.159986px;}
.wsc4{word-spacing:0.161395px;}
.ws1a{word-spacing:0.179327px;}
.ws36{word-spacing:0.239102px;}
.ws6f{word-spacing:0.268992px;}
.ws7b{word-spacing:0.286924px;}
.ws35{word-spacing:0.298878px;}
.wsd9{word-spacing:0.322790px;}
.wsf{word-spacing:0.358654px;}
.ws90{word-spacing:0.418429px;}
.ws91{word-spacing:0.478205px;}
.ws3e{word-spacing:0.537980px;}
.ws6e{word-spacing:0.537984px;}
.ws7{word-spacing:0.556186px;}
.wsb6{word-spacing:0.591782px;}
.ws42{word-spacing:0.597756px;}
.wse9{word-spacing:0.645581px;}
.ws84{word-spacing:0.717307px;}
.wscc{word-spacing:0.753178px;}
.ws4e{word-spacing:0.777083px;}
.wsa8{word-spacing:0.860774px;}
.ws85{word-spacing:0.956410px;}
.ws88{word-spacing:1.016185px;}
.ws89{word-spacing:1.030983px;}
.ws9c{word-spacing:1.135736px;}
.wsaa{word-spacing:1.183565px;}
.ws8c{word-spacing:1.195512px;}
.ws6b{word-spacing:1.243336px;}
.wsea{word-spacing:1.291162px;}
.ws4d{word-spacing:1.315063px;}
.wse3{word-spacing:1.344960px;}
.ws1f{word-spacing:1.434614px;}
.wsc1{word-spacing:1.506355px;}
.ws12{word-spacing:1.613941px;}
.ws3b{word-spacing:1.673717px;}
.wse8{word-spacing:1.721549px;}
.ws41{word-spacing:1.733492px;}
.ws40{word-spacing:1.793268px;}
.ws2f{word-spacing:1.853044px;}
.ws70{word-spacing:1.912819px;}
.wsa3{word-spacing:1.936742px;}
.ws4c{word-spacing:1.972595px;}
.wsbb{word-spacing:1.990541px;}
.ws9b{word-spacing:2.032370px;}
.wsf2{word-spacing:2.098138px;}
.ws97{word-spacing:2.151922px;}
.ws87{word-spacing:2.211697px;}
.wsd{word-spacing:2.271473px;}
.ws46{word-spacing:2.450800px;}
.ws93{word-spacing:2.570351px;}
.wsd3{word-spacing:2.743718px;}
.ws6c{word-spacing:2.749678px;}
.ws71{word-spacing:2.809453px;}
.ws24{word-spacing:3.048556px;}
.wsc9{word-spacing:3.066509px;}
.ws7c{word-spacing:3.108331px;}
.ws47{word-spacing:3.168107px;}
.ws33{word-spacing:3.227882px;}
.ws8e{word-spacing:3.347434px;}
.wse5{word-spacing:3.389299px;}
.ws9d{word-spacing:3.407209px;}
.wsd2{word-spacing:3.604493px;}
.wsce{word-spacing:3.658291px;}
.ws55{word-spacing:3.765863px;}
.ws2d{word-spacing:3.825638px;}
.ws78{word-spacing:3.873485px;}
.ws10{word-spacing:3.885414px;}
.wsc0{word-spacing:4.034880px;}
.ws2a{word-spacing:4.064741px;}
.ws7e{word-spacing:4.088678px;}
.ws39{word-spacing:4.244068px;}
.ws77{word-spacing:4.250074px;}
.ws25{word-spacing:4.303843px;}
.ws4b{word-spacing:4.363619px;}
.ws7d{word-spacing:4.465267px;}
.wsec{word-spacing:4.519066px;}
.wsc3{word-spacing:4.626662px;}
.ws94{word-spacing:4.722272px;}
.ws96{word-spacing:4.841824px;}
.wsbe{word-spacing:4.895654px;}
.ws72{word-spacing:4.901599px;}
.wsaf{word-spacing:5.110848px;}
.ws4a{word-spacing:5.140702px;}
.wscf{word-spacing:5.164646px;}
.ws14{word-spacing:5.200477px;}
.wsb1{word-spacing:5.218445px;}
.ws8f{word-spacing:5.260253px;}
.wsca{word-spacing:5.272243px;}
.ws38{word-spacing:5.320028px;}
.wsda{word-spacing:5.366150px;}
.wsb4{word-spacing:5.372323px;}
.wsb2{word-spacing:5.375798px;}
.wsd7{word-spacing:5.376326px;}
.wsf4{word-spacing:5.376787px;}
.wse4{word-spacing:5.378275px;}
.wsbc{word-spacing:5.378323px;}
.wsa5{word-spacing:5.379840px;}
.wsc6{word-spacing:5.379926px;}
.wsa7{word-spacing:5.381347px;}
.wsbf{word-spacing:5.541235px;}
.wscd{word-spacing:5.595034px;}
.ws34{word-spacing:5.618906px;}
.wsc8{word-spacing:5.648832px;}
.wsa4{word-spacing:5.702630px;}
.ws3d{word-spacing:5.858009px;}
.wsf1{word-spacing:5.917824px;}
.ws1c{word-spacing:5.971475px;}
.ws1d{word-spacing:5.977560px;}
.ws23{word-spacing:6.156887px;}
.ws3f{word-spacing:6.336214px;}
.ws95{word-spacing:6.694867px;}
.wsd0{word-spacing:6.724800px;}
.wsf7{word-spacing:6.886195px;}
.ws30{word-spacing:7.113296px;}
.wsac{word-spacing:7.585574px;}
.ws44{word-spacing:7.890379px;}
.ws48{word-spacing:8.009930px;}
.wsb5{word-spacing:8.069760px;}
.ws32{word-spacing:8.368584px;}
.wsa9{word-spacing:8.446349px;}
.ws9a{word-spacing:8.547911px;}
.ws56{word-spacing:9.085891px;}
.wsdd{word-spacing:9.199526px;}
.wsd1{word-spacing:9.898906px;}
.ws45{word-spacing:9.982525px;}
.wsdf{word-spacing:10.490688px;}
.wsef{word-spacing:10.705882px;}
.wseb{word-spacing:10.813478px;}
.ws99{word-spacing:11.716018px;}
.ws22{word-spacing:12.672427px;}
.wse7{word-spacing:13.503398px;}
.ws43{word-spacing:15.123227px;}
.wscb{word-spacing:18.883238px;}
.ws31{word-spacing:27.795654px;}
.ws4{word-spacing:40.042186px;}
.ws5b{word-spacing:255.434803px;}
.ws6a{word-spacing:260.653248px;}
.ws81{word-spacing:273.401088px;}
.ws66{word-spacing:287.498650px;}
.ws7a{word-spacing:289.704384px;}
.ws83{word-spacing:293.004710px;}
.ws67{word-spacing:294.223450px;}
.ws5f{word-spacing:294.277248px;}
.ws69{word-spacing:300.948250px;}
.ws64{word-spacing:307.726848px;}
.ws60{word-spacing:314.397850px;}
.ws68{word-spacing:321.122650px;}
.ws65{word-spacing:334.572250px;}
.ws5d{word-spacing:334.626048px;}
.ws82{word-spacing:365.550710px;}
.ws79{word-spacing:401.874048px;}
.ws63{word-spacing:440.928710px;}
.ws62{word-spacing:506.748710px;}
.ws28{word-spacing:1059.226290px;}
._1{margin-left:-7.711052px;}
._3{margin-left:-6.634800px;}
._5{margin-left:-4.949453px;}
._4{margin-left:-2.992850px;}
._0{margin-left:-1.279388px;}
._8{width:1.091170px;}
._2{width:2.997107px;}
._16{width:4.542946px;}
._59{width:7.687255px;}
._15{width:9.205442px;}
._54{width:10.843484px;}
._5b{width:11.998683px;}
._11{width:13.150632px;}
._2d{width:14.346180px;}
._57{width:15.708895px;}
._2e{width:16.856428px;}
._6{width:17.861069px;}
._7{width:19.797811px;}
._9{width:21.782419px;}
._e{width:22.858380px;}
._14{width:24.352770px;}
._12{width:25.524181px;}
._b{width:26.624242px;}
._56{width:27.795654px;}
._55{width:29.170493px;}
._f{width:30.545332px;}
._d{width:31.908596px;}
._a{width:33.080007px;}
._5c{width:34.835359px;}
._c{width:36.830163px;}
._13{width:38.973691px;}
._58{width:41.101978px;}
._3e{width:225.738086px;}
._44{width:231.913238px;}
._32{width:255.420198px;}
._46{width:274.640832px;}
._4f{width:281.311834px;}
._24{width:287.498650px;}
._45{width:291.210739px;}
._52{width:294.809203px;}
._49{width:301.486234px;}
._3d{width:303.138672px;}
._4e{width:304.714138px;}
._33{width:306.758477px;}
._47{width:317.128264px;}
._1e{width:321.176448px;}
._1d{width:327.566684px;}
._53{width:329.100881px;}
._31{width:330.214579px;}
._4a{width:331.552637px;}
._41{width:339.037517px;}
._40{width:341.888832px;}
._48{width:345.062938px;}
._19{width:348.021850px;}
._43{width:368.788032px;}
._1b{width:374.974848px;}
._4b{width:385.411738px;}
._39{width:395.736845px;}
._4d{width:398.699942px;}
._30{width:400.098701px;}
._50{width:402.519629px;}
._38{width:409.890010px;}
._51{width:412.303162px;}
._34{width:419.842714px;}
._35{width:421.187674px;}
._3f{width:425.391158px;}
._4c{width:427.315152px;}
._3a{width:430.760362px;}
._36{width:437.781744px;}
._1c{width:439.909517px;}
._37{width:441.738662px;}
._2c{width:448.988085px;}
._2b{width:452.808943px;}
._1f{width:459.976320px;}
._20{width:471.800805px;}
._22{width:475.034333px;}
._3b{width:491.663578px;}
._42{width:492.954739px;}
._3c{width:497.097216px;}
._21{width:500.590013px;}
._1a{width:506.727130px;}
._28{width:515.704253px;}
._29{width:525.172608px;}
._2a{width:538.296778px;}
._27{width:551.748547px;}
._2f{width:554.015923px;}
._23{width:566.819942px;}
._25{width:570.639629px;}
._26{width:581.287814px;}
._17{width:602.057894px;}
._18{width:643.159872px;}
._5a{width:2074.293126px;}
._10{width:2098.203126px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(144,38,54);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.425340px;}
.y2{bottom:13.800505px;}
.y12{bottom:14.151273px;}
.y30{bottom:63.780000px;}
.y164{bottom:108.957000px;}
.yd1{bottom:116.580000px;}
.y2f{bottom:116.760000px;}
.yb0{bottom:126.874500px;}
.y8e{bottom:127.903500px;}
.y163{bottom:128.325000px;}
.y130{bottom:129.759000px;}
.yd0{bottom:130.777500px;}
.y2e{bottom:137.023500px;}
.yfb{bottom:141.739500px;}
.y10e{bottom:143.386500px;}
.y162{bottom:147.691500px;}
.y8d{bottom:148.168500px;}
.y12f{bottom:149.125500px;}
.ycf{bottom:152.835000px;}
.y2d{bottom:157.288500px;}
.yfa{bottom:162.004500px;}
.y10d{bottom:163.650000px;}
.y161{bottom:167.059500px;}
.y8c{bottom:168.432000px;}
.y12e{bottom:168.493500px;}
.yce{bottom:169.630500px;}
.y2c{bottom:177.552000px;}
.yf9{bottom:182.268000px;}
.y10c{bottom:183.913500px;}
.y5e{bottom:186.364500px;}
.ycd{bottom:186.426000px;}
.y160{bottom:186.427500px;}
.y12d{bottom:187.860000px;}
.y8b{bottom:188.697000px;}
.y2b{bottom:197.815500px;}
.yf8{bottom:202.531500px;}
.ycc{bottom:203.221500px;}
.y10b{bottom:204.178500px;}
.y15f{bottom:205.794000px;}
.y5d{bottom:206.629500px;}
.y12c{bottom:207.228000px;}
.y8a{bottom:217.927500px;}
.y2a{bottom:218.080500px;}
.ycb{bottom:220.017000px;}
.yf7{bottom:222.796500px;}
.y10a{bottom:224.442000px;}
.y15e{bottom:225.162000px;}
.y12b{bottom:226.596000px;}
.y5c{bottom:226.893000px;}
.y167{bottom:231.100500px;}
.yca{bottom:236.812500px;}
.y29{bottom:238.344000px;}
.yf6{bottom:243.060000px;}
.y15d{bottom:244.528500px;}
.y109{bottom:244.707000px;}
.y12a{bottom:245.962500px;}
.y5b{bottom:247.158000px;}
.y166{bottom:250.468500px;}
.y89{bottom:252.747000px;}
.yc9{bottom:253.609500px;}
.y28{bottom:258.609000px;}
.yf5{bottom:263.325000px;}
.y15c{bottom:263.896500px;}
.y108{bottom:264.970500px;}
.y129{bottom:265.330500px;}
.y5a{bottom:267.421500px;}
.y165{bottom:269.835000px;}
.yc8{bottom:270.405000px;}
.y88{bottom:273.010500px;}
.y27{bottom:278.872500px;}
.y15b{bottom:283.264500px;}
.yf4{bottom:283.588500px;}
.y128{bottom:284.697000px;}
.y107{bottom:285.234000px;}
.yc7{bottom:287.200500px;}
.y59{bottom:287.685000px;}
.y87{bottom:293.274000px;}
.y26{bottom:299.136000px;}
.y15a{bottom:302.631000px;}
.yf3{bottom:303.852000px;}
.yc6{bottom:303.996000px;}
.y127{bottom:304.065000px;}
.y106{bottom:305.499000px;}
.y58{bottom:307.950000px;}
.y85{bottom:313.539000px;}
.y86{bottom:318.963000px;}
.y25{bottom:319.401000px;}
.yc5{bottom:320.791500px;}
.y159{bottom:321.999000px;}
.y126{bottom:323.433000px;}
.yf2{bottom:324.117000px;}
.y105{bottom:325.762500px;}
.y57{bottom:328.213500px;}
.y84{bottom:333.802500px;}
.yc4{bottom:337.587000px;}
.y158{bottom:341.367000px;}
.y125{bottom:342.799500px;}
.yf1{bottom:344.380500px;}
.y104{bottom:346.027500px;}
.y56{bottom:348.478500px;}
.y24{bottom:348.631500px;}
.y83{bottom:354.067500px;}
.yc3{bottom:354.382500px;}
.y157{bottom:360.733500px;}
.y124{bottom:362.167500px;}
.yf0{bottom:364.645500px;}
.y103{bottom:366.291000px;}
.y55{bottom:368.742000px;}
.yc2{bottom:371.178000px;}
.y156{bottom:380.101500px;}
.y123{bottom:381.534000px;}
.y82{bottom:383.298000px;}
.yef{bottom:384.909000px;}
.y102{bottom:386.554500px;}
.yc1{bottom:387.973500px;}
.y54{bottom:389.005500px;}
.y155{bottom:399.468000px;}
.y122{bottom:400.902000px;}
.yee{bottom:405.172500px;}
.y101{bottom:406.819500px;}
.y53{bottom:409.270500px;}
.yc0{bottom:411.970500px;}
.y81{bottom:418.117500px;}
.y154{bottom:418.836000px;}
.y121{bottom:420.270000px;}
.y23{bottom:424.725000px;}
.y100{bottom:427.083000px;}
.y52{bottom:429.534000px;}
.yed{bottom:434.403000px;}
.y153{bottom:438.204000px;}
.y80{bottom:438.381000px;}
.y120{bottom:439.636500px;}
.ybf{bottom:443.590500px;}
.yff{bottom:447.348000px;}
.y152{bottom:457.570500px;}
.y7f{bottom:458.644500px;}
.y51{bottom:458.764500px;}
.y11f{bottom:459.004500px;}
.ybe{bottom:462.823500px;}
.y22{bottom:462.922500px;}
.yfe{bottom:467.611500px;}
.yec{bottom:469.222500px;}
.y151{bottom:476.938500px;}
.y11e{bottom:478.371000px;}
.y7e{bottom:478.909500px;}
.y21{bottom:483.186000px;}
.yfd{bottom:487.875000px;}
.yeb{bottom:489.487500px;}
.y50{bottom:493.584000px;}
.y150{bottom:496.305000px;}
.y11d{bottom:497.739000px;}
.y7d{bottom:499.173000px;}
.ybd{bottom:499.935000px;}
.yaf{bottom:503.431500px;}
.y20{bottom:503.451000px;}
.yfc{bottom:508.140000px;}
.yea{bottom:509.751000px;}
.y14f{bottom:515.673000px;}
.y11c{bottom:517.107000px;}
.y7c{bottom:519.438000px;}
.ybc{bottom:520.198500px;}
.yae{bottom:523.695000px;}
.y1f{bottom:523.714500px;}
.y4f{bottom:528.403500px;}
.ye9{bottom:530.016000px;}
.y14e{bottom:535.041000px;}
.y7b{bottom:539.701500px;}
.ybb{bottom:540.463500px;}
.yad{bottom:543.960000px;}
.y1e{bottom:543.979500px;}
.y11b{bottom:545.440500px;}
.y4e{bottom:548.667000px;}
.ye8{bottom:550.279500px;}
.y14d{bottom:554.407500px;}
.y7a{bottom:559.965000px;}
.yba{bottom:560.727000px;}
.yac{bottom:564.223500px;}
.y1d{bottom:564.243000px;}
.y4d{bottom:568.932000px;}
.ye7{bottom:570.543000px;}
.y14c{bottom:573.775500px;}
.y79{bottom:580.230000px;}
.yb9{bottom:580.992000px;}
.yab{bottom:584.487000px;}
.y1c{bottom:584.506500px;}
.y11a{bottom:584.892000px;}
.y4c{bottom:589.195500px;}
.ye6{bottom:590.808000px;}
.y14b{bottom:593.142000px;}
.y119{bottom:600.090000px;}
.y78{bottom:600.493500px;}
.yb8{bottom:601.255500px;}
.yaa{bottom:604.752000px;}
.y1b{bottom:604.771500px;}
.y4b{bottom:609.460500px;}
.y14a{bottom:612.510000px;}
.y77{bottom:620.758500px;}
.yb7{bottom:621.519000px;}
.y118{bottom:624.255000px;}
.ya9{bottom:625.015500px;}
.y1a{bottom:625.035000px;}
.y4a{bottom:629.724000px;}
.y149{bottom:631.878000px;}
.ye5{bottom:633.936000px;}
.y117{bottom:639.453000px;}
.y76{bottom:641.022000px;}
.yb6{bottom:641.784000px;}
.ya8{bottom:645.280500px;}
.y19{bottom:645.300000px;}
.ye4{bottom:648.133500px;}
.y49{bottom:649.987500px;}
.y148{bottom:651.244500px;}
.y75{bottom:661.285500px;}
.yb5{bottom:662.047500px;}
.y116{bottom:663.618000px;}
.y18{bottom:665.563500px;}
.ye3{bottom:670.191000px;}
.y48{bottom:670.252500px;}
.y147{bottom:670.612500px;}
.y115{bottom:678.816000px;}
.y74{bottom:681.550500px;}
.yb4{bottom:682.312500px;}
.y17{bottom:685.827000px;}
.ye2{bottom:686.986500px;}
.ya7{bottom:688.408500px;}
.y146{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y114{bottom:694.014000px;}
.y73{bottom:701.814000px;}
.ya6{bottom:702.604500px;}
.ye1{bottom:703.425000px;}
.y16{bottom:706.092000px;}
.y145{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.yb3{bottom:717.312000px;}
.y113{bottom:718.177500px;}
.ye0{bottom:720.670500px;}
.y72{bottom:722.077500px;}
.ya5{bottom:724.663500px;}
.y15{bottom:726.355500px;}
.y144{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y112{bottom:733.375500px;}
.yb2{bottom:736.545000px;}
.ydf{bottom:738.274500px;}
.ya4{bottom:741.459000px;}
.y71{bottom:742.342500px;}
.y14{bottom:746.620500px;}
.y143{bottom:748.081500px;}
.y111{bottom:748.573500px;}
.y44{bottom:751.308000px;}
.yde{bottom:755.070000px;}
.yb1{bottom:755.778000px;}
.ya3{bottom:758.254500px;}
.y70{bottom:762.606000px;}
.y110{bottom:763.771500px;}
.y142{bottom:767.449500px;}
.y43{bottom:771.573000px;}
.ydd{bottom:771.865500px;}
.ya2{bottom:775.050000px;}
.y10f{bottom:778.969500px;}
.y11{bottom:782.052055px;}
.y10{bottom:782.818500px;}
.y6f{bottom:782.871000px;}
.y141{bottom:786.816000px;}
.ydc{bottom:788.661000px;}
.y42{bottom:791.836500px;}
.ya1{bottom:791.845500px;}
.y6e{bottom:803.134500px;}
.ydb{bottom:805.456500px;}
.y140{bottom:806.184000px;}
.ya0{bottom:808.641000px;}
.y41{bottom:812.101500px;}
.yf{bottom:821.824500px;}
.yda{bottom:822.252000px;}
.y6d{bottom:823.398000px;}
.y9f{bottom:825.436500px;}
.y13f{bottom:825.552000px;}
.y40{bottom:832.365000px;}
.yd9{bottom:839.047500px;}
.y9e{bottom:841.875000px;}
.y6b{bottom:843.663000px;}
.ye{bottom:844.863000px;}
.y13e{bottom:844.918500px;}
.y6c{bottom:849.087000px;}
.y3f{bottom:852.628500px;}
.yd8{bottom:855.843000px;}
.y9d{bottom:859.120500px;}
.yd{bottom:863.020500px;}
.y6a{bottom:863.926500px;}
.y13d{bottom:864.286500px;}
.yd7{bottom:872.638500px;}
.y3e{bottom:872.893500px;}
.yc{bottom:876.295500px;}
.y9c{bottom:876.724500px;}
.y13c{bottom:883.653000px;}
.y69{bottom:884.191500px;}
.yd6{bottom:889.077000px;}
.y3d{bottom:893.157000px;}
.y9b{bottom:893.520000px;}
.yb{bottom:899.334000px;}
.y13b{bottom:903.021000px;}
.y68{bottom:904.455000px;}
.yd5{bottom:906.681000px;}
.y9a{bottom:910.315500px;}
.y3c{bottom:913.422000px;}
.ya{bottom:917.491500px;}
.y13a{bottom:922.389000px;}
.y67{bottom:924.718500px;}
.y99{bottom:927.111000px;}
.yd4{bottom:930.678000px;}
.y3b{bottom:933.685500px;}
.y9{bottom:935.649000px;}
.y139{bottom:941.755500px;}
.y98{bottom:943.906500px;}
.y66{bottom:944.983500px;}
.y8{bottom:953.805000px;}
.y3a{bottom:953.949000px;}
.y97{bottom:960.702000px;}
.y138{bottom:961.123500px;}
.yd3{bottom:962.298000px;}
.y65{bottom:965.247000px;}
.y39{bottom:974.214000px;}
.y7{bottom:976.047000px;}
.y96{bottom:977.497500px;}
.y137{bottom:980.490000px;}
.yd2{bottom:981.531000px;}
.y64{bottom:985.512000px;}
.y95{bottom:994.293000px;}
.y38{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y136{bottom:999.858000px;}
.y63{bottom:1005.775500px;}
.y94{bottom:1011.088500px;}
.y37{bottom:1014.742500px;}
.y135{bottom:1019.226000px;}
.y62{bottom:1026.039000px;}
.y93{bottom:1027.884000px;}
.y36{bottom:1035.006000px;}
.y134{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y92{bottom:1044.322500px;}
.y61{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y133{bottom:1057.960500px;}
.y91{bottom:1061.926500px;}
.y60{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y132{bottom:1077.327000px;}
.y90{bottom:1085.923500px;}
.y5f{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y131{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y8f{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.ha{height:25.508090px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h10{height:36.104462px;}
.h17{height:37.927872px;}
.h16{height:38.412058px;}
.h13{height:38.734848px;}
.h8{height:39.457760px;}
.h15{height:39.488026px;}
.h11{height:42.840113px;}
.hd{height:43.038432px;}
.h4{height:43.875290px;}
.hf{height:45.094826px;}
.h9{height:50.731891px;}
.h2{height:51.025140px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.he{height:56.368391px;}
.h14{height:58.987760px;}
.h12{height:64.536113px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:166.304160px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.652455px;}
.x47{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x6f{left:144.895500px;}
.x4{left:146.170500px;}
.x6e{left:158.092500px;}
.x70{left:159.840000px;}
.x71{left:166.797000px;}
.x6b{left:168.307500px;}
.x4e{left:177.219000px;}
.xa4{left:178.230000px;}
.xb{left:181.872000px;}
.x1c{left:183.274500px;}
.x72{left:185.028000px;}
.x4c{left:186.304500px;}
.x8{left:190.257000px;}
.x4a{left:191.934000px;}
.x1d{left:194.557500px;}
.x4d{left:196.453500px;}
.x6d{left:199.069500px;}
.x1e{left:202.029000px;}
.x1f{left:205.840500px;}
.x60{left:209.575500px;}
.x93{left:210.985500px;}
.x20{left:213.312000px;}
.x21{left:217.123500px;}
.x94{left:218.457000px;}
.x61{left:220.039500px;}
.x4b{left:221.328000px;}
.x49{left:222.924000px;}
.x9f{left:224.034000px;}
.x54{left:226.360500px;}
.x8b{left:228.705000px;}
.x95{left:229.740000px;}
.x22{left:232.066500px;}
.x1b{left:235.071000px;}
.x9a{left:236.566500px;}
.xa0{left:238.978500px;}
.x2e{left:240.394500px;}
.xa1{left:242.640000px;}
.x2f{left:244.138500px;}
.x8e{left:245.641500px;}
.x53{left:247.549500px;}
.x30{left:251.610000px;}
.x41{left:252.688500px;}
.x67{left:253.729500px;}
.xa3{left:256.476000px;}
.x5e{left:258.231000px;}
.x57{left:259.701000px;}
.x51{left:260.746500px;}
.x55{left:262.494000px;}
.x52{left:264.261000px;}
.x8c{left:266.214000px;}
.x42{left:267.631500px;}
.x56{left:269.451000px;}
.x59{left:270.988500px;}
.x5c{left:273.225000px;}
.x5d{left:277.192500px;}
.x7e{left:280.500000px;}
.x5b{left:283.917000px;}
.x66{left:285.241500px;}
.x5a{left:286.257000px;}
.x58{left:287.682000px;}
.x68{left:290.413500px;}
.x3d{left:295.818000px;}
.x6a{left:297.400500px;}
.x69{left:299.155500px;}
.x50{left:301.723500px;}
.x4f{left:308.637000px;}
.x3e{left:310.762500px;}
.x3f{left:314.509500px;}
.x65{left:323.713500px;}
.x40{left:329.452500px;}
.x7f{left:338.964000px;}
.x6c{left:371.419500px;}
.x13{left:375.514500px;}
.x14{left:382.986000px;}
.x15{left:390.540000px;}
.x73{left:392.500500px;}
.x16{left:398.013000px;}
.x5f{left:402.444000px;}
.x25{left:406.806000px;}
.x74{left:411.256500px;}
.x26{left:414.277500px;}
.x8d{left:417.820500px;}
.x45{left:419.206500px;}
.x7c{left:424.191000px;}
.x75{left:426.199500px;}
.x35{left:430.147500px;}
.x76{left:431.550000px;}
.x46{left:434.151000px;}
.x7d{left:439.135500px;}
.x36{left:445.090500px;}
.x77{left:446.494500px;}
.x37{left:448.774500px;}
.x78{left:450.304500px;}
.x97{left:462.046500px;}
.x38{left:463.719000px;}
.x79{left:465.249000px;}
.x39{left:467.401500px;}
.x98{left:469.099500px;}
.x85{left:478.572000px;}
.x3a{left:482.346000px;}
.x99{left:484.044000px;}
.x64{left:499.116000px;}
.x9d{left:511.240500px;}
.x9e{left:526.185000px;}
.x7a{left:530.721000px;}
.x89{left:536.950500px;}
.x28{left:541.680000px;}
.x9b{left:543.919500px;}
.x7b{left:545.664000px;}
.x86{left:547.795500px;}
.x8a{left:551.895000px;}
.xf{left:554.836500px;}
.x29{left:556.624500px;}
.x9c{left:558.864000px;}
.x2a{left:560.286000px;}
.x10{left:562.308000px;}
.x87{left:566.497500px;}
.x11{left:569.929500px;}
.x2b{left:575.229000px;}
.x12{left:577.402500px;}
.x2c{left:578.890500px;}
.x88{left:581.442000px;}
.x80{left:584.760000px;}
.x2d{left:593.835000px;}
.xc{left:596.899500px;}
.x43{left:599.191500px;}
.xa8{left:600.679500px;}
.xb0{left:606.517500px;}
.xaa{left:609.337500px;}
.x3b{left:611.796000px;}
.x44{left:614.134500px;}
.x81{left:622.042500px;}
.xa5{left:623.256000px;}
.xac{left:625.636500px;}
.x3c{left:626.739000px;}
.xb1{left:633.417000px;}
.xab{left:635.968500px;}
.x82{left:636.987000px;}
.x83{left:640.797000px;}
.x63{left:644.395500px;}
.xa6{left:650.155500px;}
.xad{left:652.534500px;}
.xd{left:653.895000px;}
.x84{left:655.741500px;}
.xe{left:660.856500px;}
.x96{left:668.622000px;}
.x31{left:672.613500px;}
.xa2{left:675.195000px;}
.x32{left:680.085000px;}
.x33{left:683.896500px;}
.xae{left:685.527000px;}
.x34{left:691.368000px;}
.x8f{left:692.379000px;}
.xa7{left:695.251500px;}
.x90{left:699.850500px;}
.x6{left:701.339982px;}
.x91{left:703.662000px;}
.x92{left:711.133500px;}
.xaf{left:712.426500px;}
.x9{left:719.172000px;}
.xa9{left:729.876000px;}
.x27{left:734.329500px;}
.x23{left:738.240000px;}
.x62{left:742.998000px;}
.x48{left:744.837000px;}
.x17{left:749.274000px;}
.x24{left:753.184500px;}
.x18{left:756.745500px;}
.x19{left:764.367000px;}
.x1a{left:771.838500px;}
.xa{left:776.167500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.434667pt;}
.v3{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000110pt;}
.ls1b{letter-spacing:0.000162pt;}
.ls27{letter-spacing:0.000387pt;}
.ls4b{letter-spacing:0.000397pt;}
.ls24{letter-spacing:0.001895pt;}
.ls22{letter-spacing:0.001977pt;}
.ls4e{letter-spacing:0.002078pt;}
.ls3a{letter-spacing:0.002202pt;}
.ls2e{letter-spacing:0.002227pt;}
.ls5{letter-spacing:0.002551pt;}
.ls23{letter-spacing:0.002868pt;}
.ls15{letter-spacing:0.003100pt;}
.ls18{letter-spacing:0.003106pt;}
.ls28{letter-spacing:0.003430pt;}
.ls2d{letter-spacing:0.003635pt;}
.ls3b{letter-spacing:0.003770pt;}
.ls42{letter-spacing:0.004181pt;}
.ls4a{letter-spacing:0.004267pt;}
.ls26{letter-spacing:1.079954pt;}
.ls17{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.651733pt;}
.ls29{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls51{letter-spacing:10.352283pt;}
.ls14{letter-spacing:10.626533pt;}
.ls50{letter-spacing:11.048882pt;}
.ls4d{letter-spacing:11.709792pt;}
.ls48{letter-spacing:11.724590pt;}
.ls45{letter-spacing:11.763683pt;}
.ls49{letter-spacing:11.772691pt;}
.ls47{letter-spacing:11.940487pt;}
.ls52{letter-spacing:11.946428pt;}
.ls43{letter-spacing:11.954133pt;}
.ls2c{letter-spacing:11.954551pt;}
.ls2b{letter-spacing:11.955635pt;}
.ls38{letter-spacing:11.956745pt;}
.ls46{letter-spacing:11.959467pt;}
.ls53{letter-spacing:11.966369pt;}
.lsd{letter-spacing:12.843851pt;}
.ls10{letter-spacing:12.845280pt;}
.lsf{letter-spacing:12.845312pt;}
.lse{letter-spacing:12.850722pt;}
.ls11{letter-spacing:12.850754pt;}
.ls44{letter-spacing:12.996434pt;}
.ls34{letter-spacing:13.057369pt;}
.ls35{letter-spacing:13.057712pt;}
.ls37{letter-spacing:13.157147pt;}
.ls20{letter-spacing:13.248110pt;}
.ls1f{letter-spacing:13.252237pt;}
.ls21{letter-spacing:13.253443pt;}
.lsa{letter-spacing:13.280110pt;}
.lsb{letter-spacing:13.283733pt;}
.ls9{letter-spacing:13.284123pt;}
.lsc{letter-spacing:13.285443pt;}
.ls1a{letter-spacing:13.311065pt;}
.ls19{letter-spacing:13.311841pt;}
.ls3e{letter-spacing:13.329634pt;}
.ls3d{letter-spacing:13.329665pt;}
.ls33{letter-spacing:13.344624pt;}
.ls32{letter-spacing:13.348586pt;}
.ls12{letter-spacing:13.422162pt;}
.ls13{letter-spacing:13.424994pt;}
.ls1c{letter-spacing:13.803975pt;}
.ls1d{letter-spacing:13.807692pt;}
.ls1e{letter-spacing:13.809204pt;}
.ls3c{letter-spacing:13.922724pt;}
.ls25{letter-spacing:13.969783pt;}
.ls40{letter-spacing:14.196465pt;}
.ls41{letter-spacing:14.199848pt;}
.ls30{letter-spacing:14.827299pt;}
.ls2f{letter-spacing:14.829145pt;}
.ls31{letter-spacing:15.036884pt;}
.ls3f{letter-spacing:15.229914pt;}
.ls4c{letter-spacing:15.396434pt;}
.ls4f{letter-spacing:16.546761pt;}
.ls7{letter-spacing:17.919341pt;}
.ls8{letter-spacing:17.922724pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls39{letter-spacing:312.433007pt;}
.ls2a{letter-spacing:425.985007pt;}
.ws0{word-spacing:-104.553242pt;}
.ws13{word-spacing:-15.461955pt;}
.wsa{word-spacing:-13.915853pt;}
.ws3a{word-spacing:-13.283467pt;}
.ws5{word-spacing:-12.760670pt;}
.ws29{word-spacing:-12.369595pt;}
.ws5c{word-spacing:-11.955200pt;}
.ws27{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws50{word-spacing:-3.453701pt;}
.ws51{word-spacing:-3.241166pt;}
.ws3c{word-spacing:-3.188032pt;}
.ws8d{word-spacing:-3.028630pt;}
.ws92{word-spacing:-2.922363pt;}
.wsad{word-spacing:-2.917069pt;}
.ws5a{word-spacing:-2.709827pt;}
.wsb8{word-spacing:-2.677965pt;}
.ws98{word-spacing:-2.497292pt;}
.ws73{word-spacing:-2.444158pt;}
.ws9e{word-spacing:-2.178489pt;}
.wsc5{word-spacing:-2.151936pt;}
.wsd5{word-spacing:-2.104115pt;}
.wse1{word-spacing:-2.056294pt;}
.ws59{word-spacing:-1.965953pt;}
.wse6{word-spacing:-1.912832pt;}
.ws2e{word-spacing:-1.859685pt;}
.wsf6{word-spacing:-1.721549pt;}
.ws15{word-spacing:-1.700284pt;}
.wsc{word-spacing:-1.696326pt;}
.ws21{word-spacing:-1.594016pt;}
.wse2{word-spacing:-1.578086pt;}
.wsa0{word-spacing:-1.540882pt;}
.wsab{word-spacing:-1.530266pt;}
.ws4f{word-spacing:-1.487748pt;}
.ws16{word-spacing:-1.328347pt;}
.ws8a{word-spacing:-1.275213pt;}
.ws58{word-spacing:-1.222079pt;}
.wsdb{word-spacing:-1.195520pt;}
.wsb{word-spacing:-1.175671pt;}
.ws49{word-spacing:-1.168945pt;}
.ws6d{word-spacing:-1.062677pt;}
.wse0{word-spacing:-1.052058pt;}
.ws9f{word-spacing:-1.009543pt;}
.wsdc{word-spacing:-0.908595pt;}
.ws57{word-spacing:-0.903276pt;}
.ws11{word-spacing:-0.850142pt;}
.wsb0{word-spacing:-0.717312pt;}
.ws2c{word-spacing:-0.690740pt;}
.wsb3{word-spacing:-0.669491pt;}
.ws54{word-spacing:-0.531339pt;}
.wsd6{word-spacing:-0.526029pt;}
.wsc7{word-spacing:-0.478208pt;}
.ws17{word-spacing:-0.478205pt;}
.wsd4{word-spacing:-0.382566pt;}
.ws52{word-spacing:-0.371937pt;}
.ws53{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.289562pt;}
.wsb9{word-spacing:-0.286925pt;}
.ws8b{word-spacing:-0.265669pt;}
.wsb7{word-spacing:-0.239104pt;}
.ws75{word-spacing:-0.215999pt;}
.ws20{word-spacing:-0.212535pt;}
.wsae{word-spacing:-0.191283pt;}
.ws2b{word-spacing:-0.159402pt;}
.wsa2{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.ws1{word-spacing:-0.095642pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws5e{word-spacing:-0.047821pt;}
.ws80{word-spacing:-0.022912pt;}
.ws8{word-spacing:-0.013841pt;}
.wsf8{word-spacing:-0.008277pt;}
.wsf3{word-spacing:-0.004011pt;}
.ws7f{word-spacing:-0.003891pt;}
.wsbd{word-spacing:-0.003857pt;}
.wsf0{word-spacing:-0.003337pt;}
.wsc2{word-spacing:-0.003081pt;}
.wsf5{word-spacing:-0.002790pt;}
.wsee{word-spacing:-0.002739pt;}
.wsde{word-spacing:-0.002048pt;}
.wsf9{word-spacing:-0.001442pt;}
.ws9{word-spacing:-0.001084pt;}
.wsed{word-spacing:-0.000947pt;}
.wsd8{word-spacing:-0.000922pt;}
.ws6{word-spacing:-0.000259pt;}
.ws2{word-spacing:0.000000pt;}
.ws61{word-spacing:0.000631pt;}
.wsba{word-spacing:0.001476pt;}
.ws26{word-spacing:0.001660pt;}
.ws76{word-spacing:0.004533pt;}
.wsa1{word-spacing:0.047821pt;}
.ws86{word-spacing:0.048349pt;}
.ws37{word-spacing:0.053134pt;}
.ws74{word-spacing:0.063441pt;}
.wsa6{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.ws19{word-spacing:0.142210pt;}
.wsc4{word-spacing:0.143462pt;}
.ws1a{word-spacing:0.159402pt;}
.ws36{word-spacing:0.212535pt;}
.ws6f{word-spacing:0.239104pt;}
.ws7b{word-spacing:0.255043pt;}
.ws35{word-spacing:0.265669pt;}
.wsd9{word-spacing:0.286925pt;}
.wsf{word-spacing:0.318803pt;}
.ws90{word-spacing:0.371937pt;}
.ws91{word-spacing:0.425071pt;}
.ws3e{word-spacing:0.478205pt;}
.ws6e{word-spacing:0.478208pt;}
.ws7{word-spacing:0.494387pt;}
.wsb6{word-spacing:0.526029pt;}
.ws42{word-spacing:0.531339pt;}
.wse9{word-spacing:0.573850pt;}
.ws84{word-spacing:0.637606pt;}
.wscc{word-spacing:0.669491pt;}
.ws4e{word-spacing:0.690740pt;}
.wsa8{word-spacing:0.765133pt;}
.ws85{word-spacing:0.850142pt;}
.ws88{word-spacing:0.903276pt;}
.ws89{word-spacing:0.916429pt;}
.ws9c{word-spacing:1.009543pt;}
.wsaa{word-spacing:1.052058pt;}
.ws8c{word-spacing:1.062677pt;}
.ws6b{word-spacing:1.105187pt;}
.wsea{word-spacing:1.147699pt;}
.ws4d{word-spacing:1.168945pt;}
.wse3{word-spacing:1.195520pt;}
.ws1f{word-spacing:1.275213pt;}
.wsc1{word-spacing:1.338982pt;}
.ws12{word-spacing:1.434614pt;}
.ws3b{word-spacing:1.487748pt;}
.wse8{word-spacing:1.530266pt;}
.ws41{word-spacing:1.540882pt;}
.ws40{word-spacing:1.594016pt;}
.ws2f{word-spacing:1.647150pt;}
.ws70{word-spacing:1.700284pt;}
.wsa3{word-spacing:1.721549pt;}
.ws4c{word-spacing:1.753418pt;}
.wsbb{word-spacing:1.769370pt;}
.ws9b{word-spacing:1.806551pt;}
.wsf2{word-spacing:1.865011pt;}
.ws97{word-spacing:1.912819pt;}
.ws87{word-spacing:1.965953pt;}
.wsd{word-spacing:2.019087pt;}
.ws46{word-spacing:2.178489pt;}
.ws93{word-spacing:2.284756pt;}
.wsd3{word-spacing:2.438861pt;}
.ws6c{word-spacing:2.444158pt;}
.ws71{word-spacing:2.497292pt;}
.ws24{word-spacing:2.709827pt;}
.wsc9{word-spacing:2.725786pt;}
.ws7c{word-spacing:2.762961pt;}
.ws47{word-spacing:2.816095pt;}
.ws33{word-spacing:2.869229pt;}
.ws8e{word-spacing:2.975497pt;}
.wse5{word-spacing:3.012710pt;}
.ws9d{word-spacing:3.028630pt;}
.wsd2{word-spacing:3.203994pt;}
.wsce{word-spacing:3.251814pt;}
.ws55{word-spacing:3.347434pt;}
.ws2d{word-spacing:3.400567pt;}
.ws78{word-spacing:3.443098pt;}
.ws10{word-spacing:3.453701pt;}
.wsc0{word-spacing:3.586560pt;}
.ws2a{word-spacing:3.613103pt;}
.ws7e{word-spacing:3.634381pt;}
.ws39{word-spacing:3.772505pt;}
.ws77{word-spacing:3.777843pt;}
.ws25{word-spacing:3.825638pt;}
.ws4b{word-spacing:3.878772pt;}
.ws7d{word-spacing:3.969126pt;}
.wsec{word-spacing:4.016947pt;}
.wsc3{word-spacing:4.112589pt;}
.ws94{word-spacing:4.197575pt;}
.ws96{word-spacing:4.303843pt;}
.wsbe{word-spacing:4.351693pt;}
.ws72{word-spacing:4.356977pt;}
.wsaf{word-spacing:4.542976pt;}
.ws4a{word-spacing:4.569513pt;}
.wscf{word-spacing:4.590797pt;}
.ws14{word-spacing:4.622646pt;}
.wsb1{word-spacing:4.638618pt;}
.ws8f{word-spacing:4.675780pt;}
.wsca{word-spacing:4.686438pt;}
.ws38{word-spacing:4.728914pt;}
.wsda{word-spacing:4.769911pt;}
.wsb4{word-spacing:4.775398pt;}
.wsb2{word-spacing:4.778487pt;}
.wsd7{word-spacing:4.778957pt;}
.wsf4{word-spacing:4.779366pt;}
.wse4{word-spacing:4.780689pt;}
.wsbc{word-spacing:4.780732pt;}
.wsa5{word-spacing:4.782080pt;}
.wsc6{word-spacing:4.782157pt;}
.wsa7{word-spacing:4.783420pt;}
.wsbf{word-spacing:4.925542pt;}
.wscd{word-spacing:4.973363pt;}
.ws34{word-spacing:4.994583pt;}
.wsc8{word-spacing:5.021184pt;}
.wsa4{word-spacing:5.069005pt;}
.ws3d{word-spacing:5.207119pt;}
.wsf1{word-spacing:5.260288pt;}
.ws1c{word-spacing:5.307978pt;}
.ws1d{word-spacing:5.313387pt;}
.ws23{word-spacing:5.472788pt;}
.ws3f{word-spacing:5.632190pt;}
.ws95{word-spacing:5.950993pt;}
.wsd0{word-spacing:5.977600pt;}
.wsf7{word-spacing:6.121062pt;}
.ws30{word-spacing:6.322930pt;}
.wsac{word-spacing:6.742733pt;}
.ws44{word-spacing:7.013670pt;}
.ws48{word-spacing:7.119938pt;}
.wsb5{word-spacing:7.173120pt;}
.ws32{word-spacing:7.438741pt;}
.wsa9{word-spacing:7.507866pt;}
.ws9a{word-spacing:7.598143pt;}
.ws56{word-spacing:8.076348pt;}
.wsdd{word-spacing:8.177357pt;}
.wsd1{word-spacing:8.799027pt;}
.ws45{word-spacing:8.873356pt;}
.wsdf{word-spacing:9.325056pt;}
.wsef{word-spacing:9.516339pt;}
.wseb{word-spacing:9.611981pt;}
.ws99{word-spacing:10.414238pt;}
.ws22{word-spacing:11.264380pt;}
.wse7{word-spacing:12.003021pt;}
.ws43{word-spacing:13.442868pt;}
.wscb{word-spacing:16.785101pt;}
.ws31{word-spacing:24.707248pt;}
.ws4{word-spacing:35.593054pt;}
.ws5b{word-spacing:227.053158pt;}
.ws6a{word-spacing:231.691776pt;}
.ws81{word-spacing:243.023189pt;}
.ws66{word-spacing:255.554355pt;}
.ws7a{word-spacing:257.515008pt;}
.ws83{word-spacing:260.448631pt;}
.ws67{word-spacing:261.531955pt;}
.ws5f{word-spacing:261.579776pt;}
.ws69{word-spacing:267.509555pt;}
.ws64{word-spacing:273.534976pt;}
.ws60{word-spacing:279.464755pt;}
.ws68{word-spacing:285.442355pt;}
.ws65{word-spacing:297.397555pt;}
.ws5d{word-spacing:297.445376pt;}
.ws82{word-spacing:324.933965pt;}
.ws79{word-spacing:357.221376pt;}
.ws63{word-spacing:391.936631pt;}
.ws62{word-spacing:450.443298pt;}
.ws28{word-spacing:941.534480pt;}
._1{margin-left:-6.854269pt;}
._3{margin-left:-5.897600pt;}
._5{margin-left:-4.399514pt;}
._4{margin-left:-2.660311pt;}
._0{margin-left:-1.137234pt;}
._8{width:0.969929pt;}
._2{width:2.664095pt;}
._16{width:4.038174pt;}
._59{width:6.833116pt;}
._15{width:8.182615pt;}
._54{width:9.638652pt;}
._5b{width:10.665496pt;}
._11{width:11.689451pt;}
._2d{width:12.752160pt;}
._57{width:13.963462pt;}
._2e{width:14.983491pt;}
._6{width:15.876506pt;}
._7{width:17.598054pt;}
._9{width:19.362150pt;}
._e{width:20.318560pt;}
._14{width:21.646906pt;}
._12{width:22.688161pt;}
._b{width:23.665993pt;}
._56{width:24.707248pt;}
._55{width:25.929327pt;}
._f{width:27.151406pt;}
._d{width:28.363196pt;}
._a{width:29.404451pt;}
._5c{width:30.964763pt;}
._c{width:32.737923pt;}
._13{width:34.643281pt;}
._58{width:36.535091pt;}
._3e{width:200.656077pt;}
._44{width:206.145101pt;}
._32{width:227.040176pt;}
._46{width:244.125184pt;}
._4f{width:250.054963pt;}
._24{width:255.554355pt;}
._45{width:258.853990pt;}
._52{width:262.052625pt;}
._49{width:267.987763pt;}
._3d{width:269.456597pt;}
._4e{width:270.857011pt;}
._33{width:272.674202pt;}
._47{width:281.891791pt;}
._1e{width:285.490176pt;}
._1d{width:291.170386pt;}
._53{width:292.534117pt;}
._31{width:293.524070pt;}
._4a{width:294.713455pt;}
._41{width:301.366682pt;}
._40{width:303.901184pt;}
._48{width:306.722611pt;}
._19{width:309.352755pt;}
._43{width:327.811584pt;}
._1b{width:333.310976pt;}
._4b{width:342.588211pt;}
._39{width:351.766084pt;}
._4d{width:354.399949pt;}
._30{width:355.643290pt;}
._50{width:357.795226pt;}
._38{width:364.346675pt;}
._51{width:366.491699pt;}
._34{width:373.193523pt;}
._35{width:374.389043pt;}
._3f{width:378.125474pt;}
._4c{width:379.835691pt;}
._3a{width:382.898099pt;}
._36{width:389.139328pt;}
._1c{width:391.030682pt;}
._37{width:392.656589pt;}
._2c{width:399.100520pt;}
._2b{width:402.496838pt;}
._1f{width:408.867840pt;}
._20{width:419.378493pt;}
._22{width:422.252740pt;}
._3b{width:437.034291pt;}
._42{width:438.181990pt;}
._3c{width:441.864192pt;}
._21{width:444.968900pt;}
._1a{width:450.424115pt;}
._28{width:458.403780pt;}
._29{width:466.820096pt;}
._2a{width:478.486025pt;}
._27{width:490.443153pt;}
._2f{width:492.458598pt;}
._23{width:503.839949pt;}
._25{width:507.235226pt;}
._26{width:516.700279pt;}
._17{width:535.162573pt;}
._18{width:571.697664pt;}
._5a{width:1843.816112pt;}
._10{width:1865.069445pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:3.044747pt;}
.y2{bottom:12.267116pt;}
.y12{bottom:12.578910pt;}
.y30{bottom:56.693333pt;}
.y164{bottom:96.850667pt;}
.yd1{bottom:103.626667pt;}
.y2f{bottom:103.786667pt;}
.yb0{bottom:112.777333pt;}
.y8e{bottom:113.692000pt;}
.y163{bottom:114.066667pt;}
.y130{bottom:115.341333pt;}
.yd0{bottom:116.246667pt;}
.y2e{bottom:121.798667pt;}
.yfb{bottom:125.990667pt;}
.y10e{bottom:127.454667pt;}
.y162{bottom:131.281333pt;}
.y8d{bottom:131.705333pt;}
.y12f{bottom:132.556000pt;}
.ycf{bottom:135.853333pt;}
.y2d{bottom:139.812000pt;}
.yfa{bottom:144.004000pt;}
.y10d{bottom:145.466667pt;}
.y161{bottom:148.497333pt;}
.y8c{bottom:149.717333pt;}
.y12e{bottom:149.772000pt;}
.yce{bottom:150.782667pt;}
.y2c{bottom:157.824000pt;}
.yf9{bottom:162.016000pt;}
.y10c{bottom:163.478667pt;}
.y5e{bottom:165.657333pt;}
.ycd{bottom:165.712000pt;}
.y160{bottom:165.713333pt;}
.y12d{bottom:166.986667pt;}
.y8b{bottom:167.730667pt;}
.y2b{bottom:175.836000pt;}
.yf8{bottom:180.028000pt;}
.ycc{bottom:180.641333pt;}
.y10b{bottom:181.492000pt;}
.y15f{bottom:182.928000pt;}
.y5d{bottom:183.670667pt;}
.y12c{bottom:184.202667pt;}
.y8a{bottom:193.713333pt;}
.y2a{bottom:193.849333pt;}
.ycb{bottom:195.570667pt;}
.yf7{bottom:198.041333pt;}
.y10a{bottom:199.504000pt;}
.y15e{bottom:200.144000pt;}
.y12b{bottom:201.418667pt;}
.y5c{bottom:201.682667pt;}
.y167{bottom:205.422667pt;}
.yca{bottom:210.500000pt;}
.y29{bottom:211.861333pt;}
.yf6{bottom:216.053333pt;}
.y15d{bottom:217.358667pt;}
.y109{bottom:217.517333pt;}
.y12a{bottom:218.633333pt;}
.y5b{bottom:219.696000pt;}
.y166{bottom:222.638667pt;}
.y89{bottom:224.664000pt;}
.yc9{bottom:225.430667pt;}
.y28{bottom:229.874667pt;}
.yf5{bottom:234.066667pt;}
.y15c{bottom:234.574667pt;}
.y108{bottom:235.529333pt;}
.y129{bottom:235.849333pt;}
.y5a{bottom:237.708000pt;}
.y165{bottom:239.853333pt;}
.yc8{bottom:240.360000pt;}
.y88{bottom:242.676000pt;}
.y27{bottom:247.886667pt;}
.y15b{bottom:251.790667pt;}
.yf4{bottom:252.078667pt;}
.y128{bottom:253.064000pt;}
.y107{bottom:253.541333pt;}
.yc7{bottom:255.289333pt;}
.y59{bottom:255.720000pt;}
.y87{bottom:260.688000pt;}
.y26{bottom:265.898667pt;}
.y15a{bottom:269.005333pt;}
.yf3{bottom:270.090667pt;}
.yc6{bottom:270.218667pt;}
.y127{bottom:270.280000pt;}
.y106{bottom:271.554667pt;}
.y58{bottom:273.733333pt;}
.y85{bottom:278.701333pt;}
.y86{bottom:283.522667pt;}
.y25{bottom:283.912000pt;}
.yc5{bottom:285.148000pt;}
.y159{bottom:286.221333pt;}
.y126{bottom:287.496000pt;}
.yf2{bottom:288.104000pt;}
.y105{bottom:289.566667pt;}
.y57{bottom:291.745333pt;}
.y84{bottom:296.713333pt;}
.yc4{bottom:300.077333pt;}
.y158{bottom:303.437333pt;}
.y125{bottom:304.710667pt;}
.yf1{bottom:306.116000pt;}
.y104{bottom:307.580000pt;}
.y56{bottom:309.758667pt;}
.y24{bottom:309.894667pt;}
.y83{bottom:314.726667pt;}
.yc3{bottom:315.006667pt;}
.y157{bottom:320.652000pt;}
.y124{bottom:321.926667pt;}
.yf0{bottom:324.129333pt;}
.y103{bottom:325.592000pt;}
.y55{bottom:327.770667pt;}
.yc2{bottom:329.936000pt;}
.y156{bottom:337.868000pt;}
.y123{bottom:339.141333pt;}
.y82{bottom:340.709333pt;}
.yef{bottom:342.141333pt;}
.y102{bottom:343.604000pt;}
.yc1{bottom:344.865333pt;}
.y54{bottom:345.782667pt;}
.y155{bottom:355.082667pt;}
.y122{bottom:356.357333pt;}
.yee{bottom:360.153333pt;}
.y101{bottom:361.617333pt;}
.y53{bottom:363.796000pt;}
.yc0{bottom:366.196000pt;}
.y81{bottom:371.660000pt;}
.y154{bottom:372.298667pt;}
.y121{bottom:373.573333pt;}
.y23{bottom:377.533333pt;}
.y100{bottom:379.629333pt;}
.y52{bottom:381.808000pt;}
.yed{bottom:386.136000pt;}
.y153{bottom:389.514667pt;}
.y80{bottom:389.672000pt;}
.y120{bottom:390.788000pt;}
.ybf{bottom:394.302667pt;}
.yff{bottom:397.642667pt;}
.y152{bottom:406.729333pt;}
.y7f{bottom:407.684000pt;}
.y51{bottom:407.790667pt;}
.y11f{bottom:408.004000pt;}
.ybe{bottom:411.398667pt;}
.y22{bottom:411.486667pt;}
.yfe{bottom:415.654667pt;}
.yec{bottom:417.086667pt;}
.y151{bottom:423.945333pt;}
.y11e{bottom:425.218667pt;}
.y7e{bottom:425.697333pt;}
.y21{bottom:429.498667pt;}
.yfd{bottom:433.666667pt;}
.yeb{bottom:435.100000pt;}
.y50{bottom:438.741333pt;}
.y150{bottom:441.160000pt;}
.y11d{bottom:442.434667pt;}
.y7d{bottom:443.709333pt;}
.ybd{bottom:444.386667pt;}
.yaf{bottom:447.494667pt;}
.y20{bottom:447.512000pt;}
.yfc{bottom:451.680000pt;}
.yea{bottom:453.112000pt;}
.y14f{bottom:458.376000pt;}
.y11c{bottom:459.650667pt;}
.y7c{bottom:461.722667pt;}
.ybc{bottom:462.398667pt;}
.yae{bottom:465.506667pt;}
.y1f{bottom:465.524000pt;}
.y4f{bottom:469.692000pt;}
.ye9{bottom:471.125333pt;}
.y14e{bottom:475.592000pt;}
.y7b{bottom:479.734667pt;}
.ybb{bottom:480.412000pt;}
.yad{bottom:483.520000pt;}
.y1e{bottom:483.537333pt;}
.y11b{bottom:484.836000pt;}
.y4e{bottom:487.704000pt;}
.ye8{bottom:489.137333pt;}
.y14d{bottom:492.806667pt;}
.y7a{bottom:497.746667pt;}
.yba{bottom:498.424000pt;}
.yac{bottom:501.532000pt;}
.y1d{bottom:501.549333pt;}
.y4d{bottom:505.717333pt;}
.ye7{bottom:507.149333pt;}
.y14c{bottom:510.022667pt;}
.y79{bottom:515.760000pt;}
.yb9{bottom:516.437333pt;}
.yab{bottom:519.544000pt;}
.y1c{bottom:519.561333pt;}
.y11a{bottom:519.904000pt;}
.y4c{bottom:523.729333pt;}
.ye6{bottom:525.162667pt;}
.y14b{bottom:527.237333pt;}
.y119{bottom:533.413333pt;}
.y78{bottom:533.772000pt;}
.yb8{bottom:534.449333pt;}
.yaa{bottom:537.557333pt;}
.y1b{bottom:537.574667pt;}
.y4b{bottom:541.742667pt;}
.y14a{bottom:544.453333pt;}
.y77{bottom:551.785333pt;}
.yb7{bottom:552.461333pt;}
.y118{bottom:554.893333pt;}
.ya9{bottom:555.569333pt;}
.y1a{bottom:555.586667pt;}
.y4a{bottom:559.754667pt;}
.y149{bottom:561.669333pt;}
.ye5{bottom:563.498667pt;}
.y117{bottom:568.402667pt;}
.y76{bottom:569.797333pt;}
.yb6{bottom:570.474667pt;}
.ya8{bottom:573.582667pt;}
.y19{bottom:573.600000pt;}
.ye4{bottom:576.118667pt;}
.y49{bottom:577.766667pt;}
.y148{bottom:578.884000pt;}
.y75{bottom:587.809333pt;}
.yb5{bottom:588.486667pt;}
.y116{bottom:589.882667pt;}
.y18{bottom:591.612000pt;}
.ye3{bottom:595.725333pt;}
.y48{bottom:595.780000pt;}
.y147{bottom:596.100000pt;}
.y115{bottom:603.392000pt;}
.y74{bottom:605.822667pt;}
.yb4{bottom:606.500000pt;}
.y17{bottom:609.624000pt;}
.ye2{bottom:610.654667pt;}
.ya7{bottom:611.918667pt;}
.y146{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y114{bottom:616.901333pt;}
.y73{bottom:623.834667pt;}
.ya6{bottom:624.537333pt;}
.ye1{bottom:625.266667pt;}
.y16{bottom:627.637333pt;}
.y145{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.yb3{bottom:637.610667pt;}
.y113{bottom:638.380000pt;}
.ye0{bottom:640.596000pt;}
.y72{bottom:641.846667pt;}
.ya5{bottom:644.145333pt;}
.y15{bottom:645.649333pt;}
.y144{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y112{bottom:651.889333pt;}
.yb2{bottom:654.706667pt;}
.ydf{bottom:656.244000pt;}
.ya4{bottom:659.074667pt;}
.y71{bottom:659.860000pt;}
.y14{bottom:663.662667pt;}
.y143{bottom:664.961333pt;}
.y111{bottom:665.398667pt;}
.y44{bottom:667.829333pt;}
.yde{bottom:671.173333pt;}
.yb1{bottom:671.802667pt;}
.ya3{bottom:674.004000pt;}
.y70{bottom:677.872000pt;}
.y110{bottom:678.908000pt;}
.y142{bottom:682.177333pt;}
.y43{bottom:685.842667pt;}
.ydd{bottom:686.102667pt;}
.ya2{bottom:688.933333pt;}
.y10f{bottom:692.417333pt;}
.y11{bottom:695.157382pt;}
.y10{bottom:695.838667pt;}
.y6f{bottom:695.885333pt;}
.y141{bottom:699.392000pt;}
.ydc{bottom:701.032000pt;}
.y42{bottom:703.854667pt;}
.ya1{bottom:703.862667pt;}
.y6e{bottom:713.897333pt;}
.ydb{bottom:715.961333pt;}
.y140{bottom:716.608000pt;}
.ya0{bottom:718.792000pt;}
.y41{bottom:721.868000pt;}
.yf{bottom:730.510667pt;}
.yda{bottom:730.890667pt;}
.y6d{bottom:731.909333pt;}
.y9f{bottom:733.721333pt;}
.y13f{bottom:733.824000pt;}
.y40{bottom:739.880000pt;}
.yd9{bottom:745.820000pt;}
.y9e{bottom:748.333333pt;}
.y6b{bottom:749.922667pt;}
.ye{bottom:750.989333pt;}
.y13e{bottom:751.038667pt;}
.y6c{bottom:754.744000pt;}
.y3f{bottom:757.892000pt;}
.yd8{bottom:760.749333pt;}
.y9d{bottom:763.662667pt;}
.yd{bottom:767.129333pt;}
.y6a{bottom:767.934667pt;}
.y13d{bottom:768.254667pt;}
.yd7{bottom:775.678667pt;}
.y3e{bottom:775.905333pt;}
.yc{bottom:778.929333pt;}
.y9c{bottom:779.310667pt;}
.y13c{bottom:785.469333pt;}
.y69{bottom:785.948000pt;}
.yd6{bottom:790.290667pt;}
.y3d{bottom:793.917333pt;}
.y9b{bottom:794.240000pt;}
.yb{bottom:799.408000pt;}
.y13b{bottom:802.685333pt;}
.y68{bottom:803.960000pt;}
.yd5{bottom:805.938667pt;}
.y9a{bottom:809.169333pt;}
.y3c{bottom:811.930667pt;}
.ya{bottom:815.548000pt;}
.y13a{bottom:819.901333pt;}
.y67{bottom:821.972000pt;}
.y99{bottom:824.098667pt;}
.yd4{bottom:827.269333pt;}
.y3b{bottom:829.942667pt;}
.y9{bottom:831.688000pt;}
.y139{bottom:837.116000pt;}
.y98{bottom:839.028000pt;}
.y66{bottom:839.985333pt;}
.y8{bottom:847.826667pt;}
.y3a{bottom:847.954667pt;}
.y97{bottom:853.957333pt;}
.y138{bottom:854.332000pt;}
.yd3{bottom:855.376000pt;}
.y65{bottom:857.997333pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:867.597333pt;}
.y96{bottom:868.886667pt;}
.y137{bottom:871.546667pt;}
.yd2{bottom:872.472000pt;}
.y64{bottom:876.010667pt;}
.y95{bottom:883.816000pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y136{bottom:888.762667pt;}
.y63{bottom:894.022667pt;}
.y94{bottom:898.745333pt;}
.y37{bottom:901.993333pt;}
.y135{bottom:905.978667pt;}
.y62{bottom:912.034667pt;}
.y93{bottom:913.674667pt;}
.y36{bottom:920.005333pt;}
.y134{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y92{bottom:928.286667pt;}
.y61{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y133{bottom:940.409333pt;}
.y91{bottom:943.934667pt;}
.y60{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y132{bottom:957.624000pt;}
.y90{bottom:965.265333pt;}
.y5f{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y131{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y8f{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h10{height:32.092855pt;}
.h17{height:33.713664pt;}
.h16{height:34.144051pt;}
.h13{height:34.430976pt;}
.h8{height:35.073565pt;}
.h15{height:35.100467pt;}
.h11{height:38.080100pt;}
.hd{height:38.256384pt;}
.h4{height:39.000258pt;}
.hf{height:40.084290pt;}
.h9{height:45.095014pt;}
.h2{height:45.355680pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.he{height:50.105236pt;}
.h14{height:52.433565pt;}
.h12{height:57.365434pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:147.825920pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.246627pt;}
.x47{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x6f{left:128.796000pt;}
.x4{left:129.929333pt;}
.x6e{left:140.526667pt;}
.x70{left:142.080000pt;}
.x71{left:148.264000pt;}
.x6b{left:149.606667pt;}
.x4e{left:157.528000pt;}
.xa4{left:158.426667pt;}
.xb{left:161.664000pt;}
.x1c{left:162.910667pt;}
.x72{left:164.469333pt;}
.x4c{left:165.604000pt;}
.x8{left:169.117333pt;}
.x4a{left:170.608000pt;}
.x1d{left:172.940000pt;}
.x4d{left:174.625333pt;}
.x6d{left:176.950667pt;}
.x1e{left:179.581333pt;}
.x1f{left:182.969333pt;}
.x60{left:186.289333pt;}
.x93{left:187.542667pt;}
.x20{left:189.610667pt;}
.x21{left:192.998667pt;}
.x94{left:194.184000pt;}
.x61{left:195.590667pt;}
.x4b{left:196.736000pt;}
.x49{left:198.154667pt;}
.x9f{left:199.141333pt;}
.x54{left:201.209333pt;}
.x8b{left:203.293333pt;}
.x95{left:204.213333pt;}
.x22{left:206.281333pt;}
.x1b{left:208.952000pt;}
.x9a{left:210.281333pt;}
.xa0{left:212.425333pt;}
.x2e{left:213.684000pt;}
.xa1{left:215.680000pt;}
.x2f{left:217.012000pt;}
.x8e{left:218.348000pt;}
.x53{left:220.044000pt;}
.x30{left:223.653333pt;}
.x41{left:224.612000pt;}
.x67{left:225.537333pt;}
.xa3{left:227.978667pt;}
.x5e{left:229.538667pt;}
.x57{left:230.845333pt;}
.x51{left:231.774667pt;}
.x55{left:233.328000pt;}
.x52{left:234.898667pt;}
.x8c{left:236.634667pt;}
.x42{left:237.894667pt;}
.x56{left:239.512000pt;}
.x59{left:240.878667pt;}
.x5c{left:242.866667pt;}
.x5d{left:246.393333pt;}
.x7e{left:249.333333pt;}
.x5b{left:252.370667pt;}
.x66{left:253.548000pt;}
.x5a{left:254.450667pt;}
.x58{left:255.717333pt;}
.x68{left:258.145333pt;}
.x3d{left:262.949333pt;}
.x6a{left:264.356000pt;}
.x69{left:265.916000pt;}
.x50{left:268.198667pt;}
.x4f{left:274.344000pt;}
.x3e{left:276.233333pt;}
.x3f{left:279.564000pt;}
.x65{left:287.745333pt;}
.x40{left:292.846667pt;}
.x7f{left:301.301333pt;}
.x6c{left:330.150667pt;}
.x13{left:333.790667pt;}
.x14{left:340.432000pt;}
.x15{left:347.146667pt;}
.x73{left:348.889333pt;}
.x16{left:353.789333pt;}
.x5f{left:357.728000pt;}
.x25{left:361.605333pt;}
.x74{left:365.561333pt;}
.x26{left:368.246667pt;}
.x8d{left:371.396000pt;}
.x45{left:372.628000pt;}
.x7c{left:377.058667pt;}
.x75{left:378.844000pt;}
.x35{left:382.353333pt;}
.x76{left:383.600000pt;}
.x46{left:385.912000pt;}
.x7d{left:390.342667pt;}
.x36{left:395.636000pt;}
.x77{left:396.884000pt;}
.x37{left:398.910667pt;}
.x78{left:400.270667pt;}
.x97{left:410.708000pt;}
.x38{left:412.194667pt;}
.x79{left:413.554667pt;}
.x39{left:415.468000pt;}
.x98{left:416.977333pt;}
.x85{left:425.397333pt;}
.x3a{left:428.752000pt;}
.x99{left:430.261333pt;}
.x64{left:443.658667pt;}
.x9d{left:454.436000pt;}
.x9e{left:467.720000pt;}
.x7a{left:471.752000pt;}
.x89{left:477.289333pt;}
.x28{left:481.493333pt;}
.x9b{left:483.484000pt;}
.x7b{left:485.034667pt;}
.x86{left:486.929333pt;}
.x8a{left:490.573333pt;}
.xf{left:493.188000pt;}
.x29{left:494.777333pt;}
.x9c{left:496.768000pt;}
.x2a{left:498.032000pt;}
.x10{left:499.829333pt;}
.x87{left:503.553333pt;}
.x11{left:506.604000pt;}
.x2b{left:511.314667pt;}
.x12{left:513.246667pt;}
.x2c{left:514.569333pt;}
.x88{left:516.837333pt;}
.x80{left:519.786667pt;}
.x2d{left:527.853333pt;}
.xc{left:530.577333pt;}
.x43{left:532.614667pt;}
.xa8{left:533.937333pt;}
.xb0{left:539.126667pt;}
.xaa{left:541.633333pt;}
.x3b{left:543.818667pt;}
.x44{left:545.897333pt;}
.x81{left:552.926667pt;}
.xa5{left:554.005333pt;}
.xac{left:556.121333pt;}
.x3c{left:557.101333pt;}
.xb1{left:563.037333pt;}
.xab{left:565.305333pt;}
.x82{left:566.210667pt;}
.x83{left:569.597333pt;}
.x63{left:572.796000pt;}
.xa6{left:577.916000pt;}
.xad{left:580.030667pt;}
.xd{left:581.240000pt;}
.x84{left:582.881333pt;}
.xe{left:587.428000pt;}
.x96{left:594.330667pt;}
.x31{left:597.878667pt;}
.xa2{left:600.173333pt;}
.x32{left:604.520000pt;}
.x33{left:607.908000pt;}
.xae{left:609.357333pt;}
.x34{left:614.549333pt;}
.x8f{left:615.448000pt;}
.xa7{left:618.001333pt;}
.x90{left:622.089333pt;}
.x6{left:623.413317pt;}
.x91{left:625.477333pt;}
.x92{left:632.118667pt;}
.xaf{left:633.268000pt;}
.x9{left:639.264000pt;}
.xa9{left:648.778667pt;}
.x27{left:652.737333pt;}
.x23{left:656.213333pt;}
.x62{left:660.442667pt;}
.x48{left:662.077333pt;}
.x17{left:666.021333pt;}
.x24{left:669.497333pt;}
.x18{left:672.662667pt;}
.x19{left:679.437333pt;}
.x1a{left:686.078667pt;}
.xa{left:689.926667pt;}
}




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