
    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_8f82eb61fc4043545297efe1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_621df63aa714856013e30c73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_4a43ef5e9beb548a68fb7ac4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_5b30cbcd4477099ff3af89c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f3e39768d770fb719cbf1bd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a1801b7c8cb614403ed8aa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_710ecf303c1e81b24c177598.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e0452b56da90034d0683be52.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ac3b52a99a29aa520c04ea2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_3775a65e5070f02d65b14cd1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_52104241b3255b8dc1f5d4d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.658000;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_d00c1fc9d5b1c5605b4327fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_13aecdb9e1ff51d2c2483875.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_087c07abb56c68c61dbeb3f9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ebc0753de9be9967a29873bb.woff2')format("woff");}.fff{font-family:fff;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_02aa8d61b6c015952055b9ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b96effb93f8673dc9b224ede.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_57e23a3e6efafa21e06f4816.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c8ba3ddd4e308d8c7cafeeca.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7ea7a6690fa441b88a1cbe53.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cf02b31747bfb8b9971ce2bb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_9ce7286932ba95c6ae97dc89.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7fd27fe3edff407c07d92cd2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f928c370d97d45aef4cdbea1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_89dadffb263e1ca447ec0051.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918000;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:ff1a;src:url('chunks/assets/font_ebc0753de9be9967a29873bb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.859000;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:ff1b;src:url('chunks/assets/font_d57a3e04d05de654b36871ba.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:2.262000;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:ff1c;src:url('chunks/assets/font_8ea036f67f6d565e2f5cea40.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.453000;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:ff1d;src:url('chunks/assets/font_7c9636a9302e2fd3c6f86258.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m1e{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);}
.m13{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);}
.mf{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);}
.m1d{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);}
.m6{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);}
.md{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);}
.m1f{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);}
.m16{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);}
.m19{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);}
.m8{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);}
.m1a{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);}
.m1c{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);}
.m14{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{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);}
.m15{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);}
.ma{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);}
.m17{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);}
.m11{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);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{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);}
.mb{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);}
.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);}
.m5{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);}
.m12{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);}
.m7{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);}
.m2{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);}
.m9{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);}
.v13{vertical-align:-62.760000px;}
.v15{vertical-align:-53.796000px;}
.v14{vertical-align:-44.832000px;}
.v5{vertical-align:-22.854000px;}
.v1{vertical-align:-12.912000px;}
.v16{vertical-align:-10.134000px;}
.v6{vertical-align:-8.964000px;}
.v3{vertical-align:-5.976000px;}
.v12{vertical-align:-4.488000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.814000px;}
.v8{vertical-align:14.778000px;}
.vc{vertical-align:16.182000px;}
.v18{vertical-align:18.906000px;}
.v7{vertical-align:21.690000px;}
.v4{vertical-align:22.854000px;}
.vb{vertical-align:27.024000px;}
.v2{vertical-align:31.236000px;}
.va{vertical-align:36.468000px;}
.vf{vertical-align:44.280000px;}
.ve{vertical-align:63.852000px;}
.v19{vertical-align:68.034000px;}
.v17{vertical-align:74.004000px;}
.vd{vertical-align:82.782000px;}
.v11{vertical-align:108.750000px;}
.v10{vertical-align:127.680000px;}
.ls10{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000187px;}
.ls43{letter-spacing:0.000300px;}
.ls8d{letter-spacing:0.000428px;}
.ls36{letter-spacing:0.001050px;}
.ls28{letter-spacing:0.002137px;}
.ls75{letter-spacing:0.002149px;}
.ls35{letter-spacing:0.002153px;}
.ls5c{letter-spacing:0.002400px;}
.ls7f{letter-spacing:0.002706px;}
.ls47{letter-spacing:0.003269px;}
.ls37{letter-spacing:0.004338px;}
.ls3f{letter-spacing:0.004344px;}
.ls80{letter-spacing:0.005025px;}
.ls15{letter-spacing:0.005781px;}
.ls2f{letter-spacing:0.006304px;}
.ls1b{letter-spacing:0.006744px;}
.ls6e{letter-spacing:0.007867px;}
.ls3{letter-spacing:0.010295px;}
.ls19{letter-spacing:0.012673px;}
.ls8f{letter-spacing:0.017380px;}
.ls26{letter-spacing:0.017869px;}
.lsc{letter-spacing:0.018012px;}
.ls51{letter-spacing:0.025128px;}
.ls7a{letter-spacing:0.327273px;}
.ls4e{letter-spacing:1.004227px;}
.ls13{letter-spacing:1.673717px;}
.ls24{letter-spacing:1.767274px;}
.ls63{letter-spacing:1.772564px;}
.ls90{letter-spacing:1.774169px;}
.ls6a{letter-spacing:1.780891px;}
.ls92{letter-spacing:1.786891px;}
.ls68{letter-spacing:1.790286px;}
.ls91{letter-spacing:1.791891px;}
.ls7c{letter-spacing:1.793236px;}
.ls66{letter-spacing:1.796401px;}
.ls1f{letter-spacing:1.832729px;}
.ls12{letter-spacing:2.151922px;}
.ls30{letter-spacing:2.290911px;}
.ls23{letter-spacing:2.356366px;}
.ls34{letter-spacing:2.981971px;}
.ls93{letter-spacing:2.985113px;}
.ls40{letter-spacing:2.986031px;}
.ls17{letter-spacing:2.986362px;}
.lsd{letter-spacing:2.987468px;}
.ls77{letter-spacing:2.987971px;}
.ls29{letter-spacing:2.989739px;}
.ls5e{letter-spacing:2.990915px;}
.ls65{letter-spacing:2.991113px;}
.ls1c{letter-spacing:2.992362px;}
.ls48{letter-spacing:3.446479px;}
.ls82{letter-spacing:3.702221px;}
.ls70{letter-spacing:3.730912px;}
.ls7e{letter-spacing:3.756979px;}
.ls79{letter-spacing:3.766260px;}
.ls7b{letter-spacing:3.770678px;}
.ls2c{letter-spacing:3.771239px;}
.ls78{letter-spacing:3.777239px;}
.ls84{letter-spacing:3.778566px;}
.ls83{letter-spacing:3.796367px;}
.ls42{letter-spacing:3.797845px;}
.ls56{letter-spacing:3.861821px;}
.ls50{letter-spacing:3.999518px;}
.ls61{letter-spacing:4.400783px;}
.ls55{letter-spacing:5.301823px;}
.ls6f{letter-spacing:5.662328px;}
.ls2d{letter-spacing:5.851739px;}
.ls4a{letter-spacing:6.455765px;}
.ls49{letter-spacing:6.515540px;}
.ls41{letter-spacing:7.069097px;}
.ls3a{letter-spacing:7.134551px;}
.ls60{letter-spacing:10.865464px;}
.ls3b{letter-spacing:10.930918px;}
.ls7{letter-spacing:12.266035px;}
.ls46{letter-spacing:13.270183px;}
.ls32{letter-spacing:14.530921px;}
.ls5a{letter-spacing:14.596376px;}
.ls8{letter-spacing:15.276532px;}
.lse{letter-spacing:15.332544px;}
.ls5{letter-spacing:15.386342px;}
.ls4f{letter-spacing:15.890301px;}
.ls88{letter-spacing:16.363650px;}
.ls52{letter-spacing:16.557841px;}
.ls14{letter-spacing:16.617617px;}
.ls1{letter-spacing:17.332526px;}
.ls5d{letter-spacing:17.534915px;}
.ls20{letter-spacing:18.130924px;}
.ls38{letter-spacing:18.185412px;}
.ls21{letter-spacing:18.196379px;}
.ls4{letter-spacing:18.342557px;}
.ls16{letter-spacing:19.588362px;}
.ls1a{letter-spacing:19.594362px;}
.ls59{letter-spacing:19.832744px;}
.ls57{letter-spacing:19.898198px;}
.ls67{letter-spacing:19.963653px;}
.ls53{letter-spacing:19.965050px;}
.ls1e{letter-spacing:20.029108px;}
.ls89{letter-spacing:20.342700px;}
.ls58{letter-spacing:20.487290px;}
.ls33{letter-spacing:21.167971px;}
.ls3c{letter-spacing:21.169115px;}
.ls27{letter-spacing:21.169739px;}
.ls8c{letter-spacing:21.175739px;}
.ls76{letter-spacing:21.178059px;}
.ls44{letter-spacing:21.280114px;}
.lsb{letter-spacing:21.419468px;}
.ls9{letter-spacing:21.420532px;}
.ls11{letter-spacing:21.578992px;}
.ls25{letter-spacing:21.796382px;}
.ls31{letter-spacing:21.861836px;}
.ls6b{letter-spacing:21.992746px;}
.ls5b{letter-spacing:22.580783px;}
.ls4d{letter-spacing:23.432035px;}
.ls62{letter-spacing:23.432747px;}
.ls22{letter-spacing:23.498201px;}
.ls54{letter-spacing:23.629111px;}
.ls8a{letter-spacing:23.694565px;}
.ls87{letter-spacing:23.760020px;}
.ls6c{letter-spacing:23.842328px;}
.ls7d{letter-spacing:23.848328px;}
.ls85{letter-spacing:24.803971px;}
.ls4b{letter-spacing:24.806874px;}
.ls64{letter-spacing:24.807113px;}
.ls69{letter-spacing:24.813113px;}
.ls5f{letter-spacing:25.200021px;}
.ls73{letter-spacing:25.592749px;}
.ls39{letter-spacing:26.560677px;}
.ls3e{letter-spacing:26.566677px;}
.ls1d{letter-spacing:27.163659px;}
.ls71{letter-spacing:27.229114px;}
.ls81{letter-spacing:27.478328px;}
.ls2e{letter-spacing:27.490932px;}
.ls74{letter-spacing:29.074328px;}
.ls72{letter-spacing:29.080328px;}
.ls86{letter-spacing:30.370934px;}
.lsa{letter-spacing:33.462605px;}
.ls2{letter-spacing:33.839194px;}
.ls6{letter-spacing:33.892992px;}
.ls4c{letter-spacing:35.148053px;}
.ls8b{letter-spacing:35.869121px;}
.lsf{letter-spacing:35.883533px;}
.ls2a{letter-spacing:48.187739px;}
.ls8e{letter-spacing:48.193739px;}
.ls0{letter-spacing:50.806526px;}
.ls18{letter-spacing:64.984362px;}
.ls3d{letter-spacing:119.543412px;}
.ls6d{letter-spacing:141.840118px;}
.ls2b{letter-spacing:1010.666712px;}
.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;}
}
.ws8b{word-spacing:-65.454600px;}
.ws9b{word-spacing:-54.589136px;}
.ws8d{word-spacing:-50.923679px;}
.ws54{word-spacing:-45.674220px;}
.ws63{word-spacing:-43.157983px;}
.ws4c{word-spacing:-42.637126px;}
.ws44{word-spacing:-38.937826px;}
.ws9c{word-spacing:-37.636395px;}
.ws8a{word-spacing:-36.379667px;}
.ws9{word-spacing:-36.071827px;}
.ws8e{word-spacing:-33.453846px;}
.ws5f{word-spacing:-33.211407px;}
.ws4f{word-spacing:-32.727300px;}
.ws58{word-spacing:-31.771663px;}
.ws53{word-spacing:-31.706208px;}
.ws66{word-spacing:-31.633157px;}
.wsa3{word-spacing:-30.551309px;}
.ws46{word-spacing:-29.887800px;}
.ws28{word-spacing:-27.646998px;}
.ws5e{word-spacing:-24.506202px;}
.ws95{word-spacing:-23.000746px;}
.ws56{word-spacing:-22.935292px;}
.ws64{word-spacing:-20.945370px;}
.ws11{word-spacing:-20.739283px;}
.ws10{word-spacing:-20.685485px;}
.ws97{word-spacing:-19.313804px;}
.ws57{word-spacing:-18.183288px;}
.ws80{word-spacing:-17.672742px;}
.ws9f{word-spacing:-17.607287px;}
.ws83{word-spacing:-17.358834px;}
.ws65{word-spacing:-16.605662px;}
.ws0{word-spacing:-16.139475px;}
.ws9d{word-spacing:-15.709104px;}
.ws6e{word-spacing:-15.578195px;}
.ws2e{word-spacing:-15.447286px;}
.ws7f{word-spacing:-15.054558px;}
.ws23{word-spacing:-14.645022px;}
.ws3d{word-spacing:-14.596376px;}
.wsa8{word-spacing:-14.465695px;}
.ws84{word-spacing:-14.465467px;}
.wsac{word-spacing:-14.405920px;}
.wsaa{word-spacing:-14.107042px;}
.ws86{word-spacing:-13.680011px;}
.ws13{word-spacing:-13.541057px;}
.ws5{word-spacing:-13.449600px;}
.ws8{word-spacing:-13.433460px;}
.wse{word-spacing:-13.379662px;}
.ws3a{word-spacing:-12.763647px;}
.ws6c{word-spacing:-12.632738px;}
.wsaf{word-spacing:-12.493100px;}
.ws87{word-spacing:-12.305465px;}
.ws42{word-spacing:-12.174556px;}
.ws33{word-spacing:-12.109101px;}
.ws30{word-spacing:-12.043646px;}
.ws99{word-spacing:-12.038102px;}
.ws1e{word-spacing:-11.955120px;}
.ws6d{word-spacing:-11.912737px;}
.ws19{word-spacing:-11.835569px;}
.ws82{word-spacing:-11.716373px;}
.ws3e{word-spacing:-11.476915px;}
.ws6f{word-spacing:-11.417140px;}
.ws35{word-spacing:-11.323646px;}
.ws48{word-spacing:-11.258191px;}
.ws41{word-spacing:-11.192737px;}
.ws31{word-spacing:-11.127282px;}
.ws32{word-spacing:-11.068373px;}
.ws43{word-spacing:-11.061827px;}
.ws3c{word-spacing:-10.996373px;}
.ws2a{word-spacing:-10.930918px;}
.ws2f{word-spacing:-10.865464px;}
.ws5a{word-spacing:-10.800009px;}
.ws7c{word-spacing:-10.734554px;}
.ws37{word-spacing:-10.669100px;}
.wsa7{word-spacing:-10.646034px;}
.ws3b{word-spacing:-10.603645px;}
.wsb1{word-spacing:-10.586259px;}
.wsd{word-spacing:-10.582145px;}
.ws39{word-spacing:-10.538191px;}
.ws36{word-spacing:-10.479281px;}
.ws59{word-spacing:-10.472736px;}
.ws20{word-spacing:-10.400954px;}
.ws24{word-spacing:-10.341179px;}
.ws47{word-spacing:-10.281403px;}
.ws1f{word-spacing:-10.221628px;}
.ws91{word-spacing:-10.086554px;}
.wsb0{word-spacing:-10.042301px;}
.ws88{word-spacing:-10.021099px;}
.ws6{word-spacing:-9.982525px;}
.ws1d{word-spacing:-9.922750px;}
.ws9e{word-spacing:-9.824735px;}
.ws49{word-spacing:-9.818190px;}
.ws25{word-spacing:-9.803198px;}
.ws75{word-spacing:-9.743423px;}
.ws21{word-spacing:-9.693826px;}
.ws3f{word-spacing:-9.687281px;}
.ws22{word-spacing:-9.683647px;}
.wsa5{word-spacing:-9.564096px;}
.ws50{word-spacing:-9.556372px;}
.wsa0{word-spacing:-9.450522px;}
.ws96{word-spacing:-9.432008px;}
.ws14{word-spacing:-9.301743px;}
.ws76{word-spacing:-9.265218px;}
.ws7{word-spacing:-9.247945px;}
.ws77{word-spacing:-9.205442px;}
.wsc{word-spacing:-9.194147px;}
.ws4a{word-spacing:-9.163644px;}
.wsa4{word-spacing:-9.151644px;}
.ws5b{word-spacing:-9.098189px;}
.ws12{word-spacing:-9.086550px;}
.ws40{word-spacing:-8.973826px;}
.wsb2{word-spacing:-8.912542px;}
.ws7a{word-spacing:-8.901826px;}
.wsa9{word-spacing:-8.852766px;}
.wsa6{word-spacing:-8.733215px;}
.ws34{word-spacing:-8.509098px;}
.ws4d{word-spacing:-8.399158px;}
.ws51{word-spacing:-8.312734px;}
.ws26{word-spacing:-8.189257px;}
.ws68{word-spacing:-8.129482px;}
.ws85{word-spacing:-7.789097px;}
.ws1b{word-spacing:-7.711052px;}
.wsab{word-spacing:-7.471950px;}
.ws78{word-spacing:-7.317824px;}
.ws6b{word-spacing:-7.265461px;}
.ws5d{word-spacing:-7.252370px;}
.ws8f{word-spacing:-7.141097px;}
.ws38{word-spacing:-7.069097px;}
.ws70{word-spacing:-6.623136px;}
.ws89{word-spacing:-6.617460px;}
.ws74{word-spacing:-6.521518px;}
.ws27{word-spacing:-6.037336px;}
.wsae{word-spacing:-5.923762px;}
.wsa1{word-spacing:-5.917784px;}
.wsad{word-spacing:-5.858009px;}
.ws29{word-spacing:-5.825459px;}
.ws52{word-spacing:-5.563641px;}
.wsa2{word-spacing:-5.505333px;}
.ws18{word-spacing:-5.027128px;}
.ws1c{word-spacing:-4.961375px;}
.ws62{word-spacing:-4.516367px;}
.ws7b{word-spacing:-4.189094px;}
.ws55{word-spacing:-4.123640px;}
.ws1a{word-spacing:-3.885414px;}
.ws98{word-spacing:-3.665458px;}
.ws9a{word-spacing:-3.652367px;}
.ws61{word-spacing:-3.600003px;}
.ws6a{word-spacing:-3.338185px;}
.ws7d{word-spacing:-3.272730px;}
.ws69{word-spacing:-3.148366px;}
.ws94{word-spacing:-3.141821px;}
.ws81{word-spacing:-0.720001px;}
.ws2{word-spacing:-0.086077px;}
.ws60{word-spacing:-0.072745px;}
.ws73{word-spacing:-0.059776px;}
.ws4b{word-spacing:-0.052364px;}
.wsa{word-spacing:-0.035866px;}
.ws8c{word-spacing:-0.001164px;}
.ws15{word-spacing:0.000000px;}
.ws71{word-spacing:0.011955px;}
.ws4e{word-spacing:0.013091px;}
.ws90{word-spacing:0.058909px;}
.ws92{word-spacing:2.415275px;}
.ws16{word-spacing:2.683639px;}
.ws5c{word-spacing:3.351276px;}
.ws72{word-spacing:3.359389px;}
.ws93{word-spacing:3.613094px;}
.ws79{word-spacing:3.744003px;}
.ws17{word-spacing:11.429123px;}
.ws4{word-spacing:14.288815px;}
.wsf{word-spacing:15.278746px;}
.wsb{word-spacing:21.379597px;}
.ws1{word-spacing:23.312640px;}
.ws7e{word-spacing:33.309846px;}
.ws2d{word-spacing:34.370970px;}
.ws3{word-spacing:47.772846px;}
.ws45{word-spacing:51.055386px;}
.ws67{word-spacing:1144.553357px;}
.ws2b{word-spacing:2202.937881px;}
.ws2c{word-spacing:2229.126812px;}
._37{margin-left:-27.490932px;}
._3e{margin-left:-18.196379px;}
._1{margin-left:-8.091257px;}
._9{margin-left:-7.047590px;}
._2{margin-left:-5.881958px;}
._a{margin-left:-4.832140px;}
._6{margin-left:-3.704958px;}
._0{margin-left:-2.668393px;}
._7{margin-left:-1.560154px;}
._4{width:1.673717px;}
._5{width:3.239085px;}
._39{width:4.662497px;}
._3b{width:10.075711px;}
._3c{width:16.971889px;}
._8{width:18.343751px;}
._3d{width:19.567929px;}
._3{width:20.959727px;}
._11{width:22.573668px;}
._31{width:23.878520px;}
._10{width:25.404630px;}
._e{width:26.405294px;}
._b{width:27.511275px;}
._30{width:29.426201px;}
._3f{width:30.879326px;}
._35{width:31.969948px;}
._34{width:33.564321px;}
._40{width:35.865360px;}
._36{width:37.570940px;}
._32{width:40.632061px;}
._d{width:42.201574px;}
._c{width:45.495220px;}
._38{width:48.894586px;}
._f{width:60.672234px;}
._3a{width:64.471081px;}
._33{width:68.981042px;}
._2c{width:1111.944350px;}
._2b{width:1250.762207px;}
._18{width:1257.390467px;}
._20{width:1310.467559px;}
._17{width:1344.800007px;}
._21{width:1400.042636px;}
._23{width:1435.082360px;}
._1d{width:1496.544230px;}
._1b{width:1549.452909px;}
._24{width:1565.952701px;}
._26{width:1571.472401px;}
._19{width:1605.870758px;}
._1a{width:1632.007149px;}
._1f{width:1634.299861px;}
._14{width:1667.812323px;}
._28{width:1702.422854px;}
._22{width:1733.592688px;}
._15{width:1775.354524px;}
._1c{width:1812.886312px;}
._2a{width:1822.272914px;}
._29{width:1838.712776px;}
._1e{width:1843.586027px;}
._2f{width:1859.538095px;}
._25{width:1942.002283px;}
._2e{width:1984.545625px;}
._27{width:2027.298235px;}
._16{width:2047.056916px;}
._13{width:2050.160744px;}
._2d{width:2199.471254px;}
._12{width:2238.676320px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y140{bottom:156.391500px;}
.y13f{bottom:158.427000px;}
.y40{bottom:160.314000px;}
.y13e{bottom:169.651500px;}
.y28{bottom:173.425500px;}
.y8d{bottom:186.754500px;}
.y75{bottom:190.800000px;}
.y3f{bottom:191.107500px;}
.y17b{bottom:194.725500px;}
.yaa{bottom:196.435500px;}
.y17a{bottom:199.650000px;}
.ya9{bottom:200.481000px;}
.y155{bottom:205.468500px;}
.y119{bottom:207.525000px;}
.y12b{bottom:208.128000px;}
.y12a{bottom:213.051000px;}
.y74{bottom:221.286000px;}
.yf3{bottom:221.910000px;}
.y3e{bottom:238.572000px;}
.y179{bottom:240.480000px;}
.ya8{bottom:240.649500px;}
.y166{bottom:245.074500px;}
.y154{bottom:250.071000px;}
.y8c{bottom:251.770500px;}
.yf2{bottom:252.396000px;}
.y118{bottom:254.736000px;}
.y59{bottom:263.203500px;}
.y73{bottom:263.505000px;}
.ydd{bottom:264.778500px;}
.y129{bottom:265.821000px;}
.y3d{bottom:269.365500px;}
.y13d{bottom:270.724500px;}
.ya7{bottom:271.134000px;}
.y11{bottom:276.609000px;}
.yc7{bottom:280.536000px;}
.y178{bottom:281.310000px;}
.y72{bottom:293.991000px;}
.ydc{bottom:295.263000px;}
.y165{bottom:299.076000px;}
.y3c{bottom:300.159000px;}
.ya6{bottom:301.620000px;}
.y153{bottom:301.816500px;}
.y10{bottom:304.254000px;}
.y8b{bottom:304.731000px;}
.yf1{bottom:304.765500px;}
.y117{bottom:306.577500px;}
.y8a{bottom:308.776500px;}
.y58{bottom:310.051500px;}
.y128{bottom:317.130000px;}
.y13c{bottom:321.810000px;}
.y71{bottom:324.477000px;}
.y199{bottom:326.940000px;}
.y3b{bottom:330.952500px;}
.yf{bottom:331.900500px;}
.y177{bottom:333.055500px;}
.y13b{bottom:335.071500px;}
.ydb{bottom:338.757000px;}
.y57{bottom:340.537500px;}
.y164{bottom:351.307500px;}
.ya5{bottom:353.365500px;}
.y198{bottom:353.838000px;}
.y70{bottom:354.963000px;}
.y89{bottom:356.257500px;}
.ye{bottom:356.559000px;}
.y3a{bottom:361.746000px;}
.y152{bottom:362.601000px;}
.y116{bottom:368.040000px;}
.yda{bottom:369.241500px;}
.yf0{bottom:369.252000px;}
.y127{bottom:370.336500px;}
.y56{bottom:371.023500px;}
.y197{bottom:380.737500px;}
.y13a{bottom:383.797500px;}
.yd{bottom:384.205500px;}
.yc6{bottom:384.340500px;}
.y88{bottom:386.928000px;}
.y39{bottom:392.539500px;}
.y176{bottom:393.013500px;}
.y115{bottom:398.524500px;}
.yef{bottom:399.736500px;}
.y55{bottom:401.509500px;}
.y105{bottom:402.198000px;}
.y163{bottom:405.582000px;}
.y6f{bottom:407.631000px;}
.y196{bottom:407.637000px;}
.y151{bottom:407.755500px;}
.yc{bottom:411.850500px;}
.ya4{bottom:413.218500px;}
.yc5{bottom:414.826500px;}
.y38{bottom:423.333000px;}
.y175{bottom:423.499500px;}
.yee{bottom:430.222500px;}
.y104{bottom:432.684000px;}
.yd9{bottom:433.995000px;}
.y87{bottom:434.409000px;}
.y195{bottom:434.536500px;}
.y139{bottom:436.143000px;}
.yb{bottom:439.497000px;}
.y126{bottom:439.603500px;}
.ya3{bottom:443.704500px;}
.y114{bottom:444.433500px;}
.yc4{bottom:445.312500px;}
.y54{bottom:448.359000px;}
.y162{bottom:457.813500px;}
.y150{bottom:459.501000px;}
.yed{bottom:460.708500px;}
.y194{bottom:461.434500px;}
.y174{bottom:462.835500px;}
.y103{bottom:463.170000px;}
.ya{bottom:467.143500px;}
.y125{bottom:470.089500px;}
.ya2{bottom:470.611500px;}
.y37{bottom:470.797500px;}
.ya1{bottom:472.647000px;}
.y6e{bottom:473.818500px;}
.yc3{bottom:475.798500px;}
.y86{bottom:481.891500px;}
.ya0{bottom:483.871500px;}
.y193{bottom:488.334000px;}
.y113{bottom:491.740500px;}
.yec{bottom:491.818500px;}
.y102{bottom:493.654500px;}
.y9{bottom:494.790000px;}
.y53{bottom:495.208500px;}
.y138{bottom:500.490000px;}
.y6d{bottom:504.304500px;}
.yc2{bottom:506.284500px;}
.yd8{bottom:507.829500px;}
.y161{bottom:510.045000px;}
.y173{bottom:514.581000px;}
.y192{bottom:515.233500px;}
.y14f{bottom:516.240000px;}
.y36{bottom:518.262000px;}
.y14e{bottom:520.285500px;}
.yeb{bottom:522.304500px;}
.y124{bottom:522.826500px;}
.y9f{bottom:524.040000px;}
.y101{bottom:524.140500px;}
.y52{bottom:525.693000px;}
.y137{bottom:530.976000px;}
.y85{bottom:533.821500px;}
.yd7{bottom:534.727500px;}
.y6c{bottom:535.711500px;}
.yc1{bottom:536.769000px;}
.y112{bottom:538.951500px;}
.y191{bottom:542.133000px;}
.y9e{bottom:550.945500px;}
.y100{bottom:554.626500px;}
.y51{bottom:556.179000px;}
.yd6{bottom:561.627000px;}
.y9d{bottom:564.207000px;}
.y160{bottom:564.321000px;}
.y14d{bottom:565.440000px;}
.y35{bottom:565.726500px;}
.y6b{bottom:566.197500px;}
.y27{bottom:568.854000px;}
.y190{bottom:569.031000px;}
.y172{bottom:574.537500px;}
.yea{bottom:574.675500px;}
.y123{bottom:576.033000px;}
.y136{bottom:583.321500px;}
.y111{bottom:584.859000px;}
.yff{bottom:585.112500px;}
.y50{bottom:586.665000px;}
.yd5{bottom:588.526500px;}
.y84{bottom:595.798500px;}
.y18f{bottom:595.930500px;}
.y6a{bottom:596.683500px;}
.y26{bottom:599.338500px;}
.yc0{bottom:602.506500px;}
.y9c{bottom:604.374000px;}
.y14c{bottom:610.594500px;}
.y34{bottom:613.191000px;}
.y171{bottom:613.873500px;}
.y4f{bottom:617.151000px;}
.y15f{bottom:618.595500px;}
.y18e{bottom:622.830000px;}
.y83{bottom:626.284500px;}
.y69{bottom:627.169500px;}
.ybf{bottom:629.406000px;}
.y25{bottom:629.824500px;}
.y110{bottom:632.070000px;}
.y8{bottom:633.127500px;}
.y9b{bottom:634.860000px;}
.yfe{bottom:636.858000px;}
.yd4{bottom:638.712000px;}
.ye9{bottom:639.160500px;}
.y122{bottom:645.300000px;}
.y135{bottom:647.670000px;}
.y18d{bottom:649.729500px;}
.y170{bottom:654.703500px;}
.y14b{bottom:655.747500px;}
.y82{bottom:656.955000px;}
.y68{bottom:657.655500px;}
.y33{bottom:660.655500px;}
.y4e{bottom:664.000500px;}
.y9a{bottom:665.346000px;}
.ye8{bottom:669.646500px;}
.y24{bottom:670.201500px;}
.y15e{bottom:670.827000px;}
.y18c{bottom:676.627500px;}
.y10f{bottom:679.282500px;}
.ybd{bottom:684.201000px;}
.y7{bottom:685.537500px;}
.y81{bottom:687.441000px;}
.yfd{bottom:687.583500px;}
.ybc{bottom:687.895500px;}
.ybb{bottom:688.338000px;}
.y67{bottom:689.064000px;}
.yb9{bottom:689.460000px;}
.y4d{bottom:694.486500px;}
.y16f{bottom:695.533500px;}
.y99{bottom:695.830500px;}
.y134{bottom:696.394500px;}
.y23{bottom:697.101000px;}
.y121{bottom:698.038500px;}
.ye7{bottom:700.131000px;}
.y14a{bottom:700.902000px;}
.y18b{bottom:703.527000px;}
.y32{bottom:708.120000px;}
.y6{bottom:712.437000px;}
.yfc{bottom:714.483000px;}
.yba{bottom:715.237500px;}
.yb8{bottom:716.358000px;}
.y66{bottom:719.548500px;}
.yd2{bottom:722.811000px;}
.y15d{bottom:723.058500px;}
.y22{bottom:724.000500px;}
.y4c{bottom:724.971000px;}
.y10e{bottom:725.190000px;}
.y18a{bottom:730.426500px;}
.y16e{bottom:734.869500px;}
.y80{bottom:738.538500px;}
.y5{bottom:739.336500px;}
.y133{bottom:745.120500px;}
.y98{bottom:747.576000px;}
.yd3{bottom:749.709000px;}
.y65{bottom:750.034500px;}
.y120{bottom:750.808500px;}
.y21{bottom:750.900000px;}
.ye6{bottom:752.502000px;}
.y149{bottom:752.647500px;}
.y4b{bottom:755.457000px;}
.y31{bottom:755.584500px;}
.y189{bottom:757.326000px;}
.yd1{bottom:760.917000px;}
.y7f{bottom:765.438000px;}
.y10d{bottom:771.097500px;}
.yf9{bottom:772.585500px;}
.yfb{bottom:773.347500px;}
.y132{bottom:775.606500px;}
.y15c{bottom:776.574000px;}
.yd0{bottom:776.608500px;}
.y20{bottom:777.798000px;}
.y64{bottom:780.520500px;}
.y188{bottom:784.224000px;}
.y4a{bottom:785.943000px;}
.y16d{bottom:786.615000px;}
.yf8{bottom:799.485000px;}
.ybe{bottom:800.092500px;}
.yfa{bottom:800.247000px;}
.y148{bottom:800.806500px;}
.y11f{bottom:802.116000px;}
.y30{bottom:803.049000px;}
.ycf{bottom:803.508000px;}
.y1f{bottom:804.697500px;}
.y97{bottom:807.429000px;}
.y63{bottom:811.006500px;}
.y187{bottom:811.123500px;}
.y49{bottom:816.429000px;}
.ye5{bottom:816.987000px;}
.y10c{bottom:818.308500px;}
.y7e{bottom:823.540500px;}
.y131{bottom:827.953500px;}
.y1e{bottom:831.597000px;}
.y186{bottom:838.023000px;}
.y62{bottom:842.415000px;}
.y16c{bottom:846.573000px;}
.y48{bottom:846.913500px;}
.ye4{bottom:847.473000px;}
.y96{bottom:847.597500px;}
.y15b{bottom:847.599000px;}
.y7d{bottom:850.440000px;}
.y2f{bottom:850.515000px;}
.y11e{bottom:854.853000px;}
.y1d{bottom:858.496500px;}
.y4{bottom:860.287500px;}
.y147{bottom:861.591000px;}
.y185{bottom:864.922500px;}
.y10b{bottom:865.521000px;}
.y3{bottom:865.606500px;}
.y61{bottom:872.899500px;}
.yce{bottom:875.487000px;}
.y130{bottom:876.712500px;}
.y15a{bottom:878.083500px;}
.ye3{bottom:878.583000px;}
.yb7{bottom:879.393000px;}
.yf7{bottom:882.825000px;}
.yb6{bottom:883.087500px;}
.yb5{bottom:883.534500px;}
.yb3{bottom:884.655000px;}
.y1c{bottom:885.394500px;}
.y95{bottom:887.764500px;}
.y16b{bottom:888.477000px;}
.y184{bottom:891.820500px;}
.y47{bottom:893.763000px;}
.y2e{bottom:897.979500px;}
.ycd{bottom:902.386500px;}
.y60{bottom:903.385500px;}
.y146{bottom:906.193500px;}
.y11d{bottom:908.061000px;}
.y159{bottom:908.569500px;}
.ye2{bottom:909.069000px;}
.yf6{bottom:909.724500px;}
.yb4{bottom:910.434000px;}
.yb2{bottom:911.554500px;}
.y1b{bottom:912.294000px;}
.y7c{bottom:916.773000px;}
.y10a{bottom:917.361000px;}
.y94{bottom:918.250500px;}
.y183{bottom:918.720000px;}
.y46{bottom:924.249000px;}
.y16a{bottom:927.813000px;}
.y5f{bottom:933.871500px;}
.y1a{bottom:939.193500px;}
.y12f{bottom:941.059500px;}
.y7b{bottom:943.671000px;}
.y2d{bottom:945.444000px;}
.y182{bottom:945.619500px;}
.y93{bottom:948.735000px;}
.y145{bottom:951.348000px;}
.y45{bottom:954.735000px;}
.ye1{bottom:961.438500px;}
.y158{bottom:962.085000px;}
.y5e{bottom:964.357500px;}
.y19{bottom:966.093000px;}
.y169{bottom:967.149000px;}
.y181{bottom:972.519000px;}
.y11c{bottom:977.328000px;}
.y109{bottom:978.823500px;}
.y92{bottom:979.221000px;}
.y2{bottom:983.244000px;}
.y44{bottom:985.221000px;}
.ycc{bottom:988.855500px;}
.y12e{bottom:989.493000px;}
.y2c{bottom:992.908500px;}
.y18{bottom:992.991000px;}
.yf5{bottom:993.066000px;}
.y5d{bottom:995.766000px;}
.y144{bottom:995.950500px;}
.y180{bottom:999.417000px;}
.y7a{bottom:1006.378500px;}
.y168{bottom:1006.485000px;}
.y108{bottom:1009.309500px;}
.y79{bottom:1010.073000px;}
.ycb{bottom:1015.755000px;}
.y91{bottom:1019.388000px;}
.y17{bottom:1019.890500px;}
.yf4{bottom:1019.964000px;}
.ye0{bottom:1025.925000px;}
.y5c{bottom:1026.250500px;}
.y17f{bottom:1026.316500px;}
.y143{bottom:1030.824000px;}
.y43{bottom:1032.070500px;}
.y17e{bottom:1033.489500px;}
.y11b{bottom:1034.416500px;}
.y78{bottom:1036.972500px;}
.y12d{bottom:1038.819000px;}
.y107{bottom:1039.795500px;}
.y1{bottom:1040.139000px;}
.y2b{bottom:1040.373000px;}
.y142{bottom:1042.048500px;}
.y167{bottom:1047.315000px;}
.y157{bottom:1055.130000px;}
.y5b{bottom:1056.736500px;}
.ydf{bottom:1057.035000px;}
.y16{bottom:1058.595000px;}
.y90{bottom:1059.556500px;}
.y17d{bottom:1063.975500px;}
.y15{bottom:1064.019000px;}
.yad{bottom:1076.115000px;}
.yaf{bottom:1077.235500px;}
.y42{bottom:1078.920000px;}
.y156{bottom:1085.616000px;}
.y11a{bottom:1087.153500px;}
.y5a{bottom:1087.222500px;}
.yde{bottom:1087.521000px;}
.y12c{bottom:1087.545000px;}
.y2a{bottom:1087.837500px;}
.y141{bottom:1088.145000px;}
.y13{bottom:1090.725000px;}
.y106{bottom:1091.635500px;}
.y17c{bottom:1094.461500px;}
.y8f{bottom:1095.678000px;}
.y14{bottom:1096.663500px;}
.yca{bottom:1098.529500px;}
.y8e{bottom:1099.723500px;}
.yae{bottom:1100.440500px;}
.yc9{bottom:1102.224000px;}
.yac{bottom:1103.014500px;}
.y77{bottom:1104.135000px;}
.y41{bottom:1109.404500px;}
.yb1{bottom:1113.816000px;}
.yb0{bottom:1117.510500px;}
.yc8{bottom:1129.123500px;}
.yab{bottom:1129.914000px;}
.y76{bottom:1131.034500px;}
.y12{bottom:1139.890500px;}
.y29{bottom:1192.194000px;}
.h22{height:6.697916px;}
.he{height:17.494800px;}
.hb{height:29.457331px;}
.h1e{height:29.833916px;}
.h17{height:31.800699px;}
.ha{height:33.665702px;}
.h7{height:40.348800px;}
.hc{height:42.799330px;}
.h5{height:44.831700px;}
.hd{height:46.865494px;}
.h8{height:47.063280px;}
.h9{height:49.090950px;}
.h6{height:50.211840px;}
.hf{height:51.147331px;}
.h1d{height:51.153331px;}
.h1f{height:51.523916px;}
.h20{height:51.529916px;}
.h3{height:53.798400px;}
.h26{height:57.413702px;}
.h14{height:57.419702px;}
.h11{height:57.891908px;}
.h15{height:57.897908px;}
.h21{height:59.609700px;}
.h2{height:60.254040px;}
.h12{height:60.689702px;}
.h1c{height:60.695702px;}
.h18{height:61.167908px;}
.h1b{height:61.173908px;}
.h13{height:65.272950px;}
.h24{height:65.507702px;}
.h10{height:66.301916px;}
.h4{height:76.067700px;}
.h23{height:76.395024px;}
.h25{height:77.111702px;}
.h29{height:77.117702px;}
.h19{height:93.370950px;}
.h28{height:93.988950px;}
.h16{height:97.517702px;}
.h27{height:99.834699px;}
.h1a{height:142.415702px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x10{left:108.000000px;}
.x11{left:110.739000px;}
.x16{left:114.363000px;}
.x9d{left:115.471500px;}
.x15{left:120.273000px;}
.x1{left:125.685000px;}
.x18{left:127.318500px;}
.x1a{left:130.416000px;}
.x14{left:132.999000px;}
.x5a{left:138.325500px;}
.x9e{left:140.212500px;}
.x17{left:150.178500px;}
.x98{left:152.242500px;}
.x58{left:155.943000px;}
.xf{left:158.809500px;}
.x77{left:160.057500px;}
.xe{left:173.754000px;}
.xa{left:176.496000px;}
.x59{left:188.413500px;}
.x5e{left:190.546500px;}
.x56{left:205.012500px;}
.x7a{left:211.747500px;}
.xc{left:214.422000px;}
.x93{left:215.536500px;}
.xd{left:221.125500px;}
.x7b{left:228.819000px;}
.x92{left:233.935500px;}
.x95{left:235.510500px;}
.x31{left:236.634000px;}
.x6f{left:237.930000px;}
.x46{left:252.366000px;}
.x32{left:253.459500px;}
.x20{left:258.010500px;}
.x67{left:260.439000px;}
.x55{left:262.758000px;}
.x1f{left:264.655500px;}
.x70{left:265.678500px;}
.x68{left:266.853000px;}
.x33{left:270.778500px;}
.x47{left:273.525000px;}
.x85{left:275.766000px;}
.x2b{left:281.644500px;}
.x52{left:283.365000px;}
.x75{left:284.845500px;}
.x4e{left:286.870500px;}
.x1c{left:291.421500px;}
.x48{left:293.823000px;}
.x34{left:295.876500px;}
.x73{left:297.541500px;}
.x35{left:300.436500px;}
.x3c{left:302.680500px;}
.x79{left:304.063500px;}
.x57{left:305.911500px;}
.x8f{left:307.243500px;}
.x36{left:308.617500px;}
.x1d{left:313.503000px;}
.x86{left:315.453000px;}
.x37{left:318.636000px;}
.x82{left:321.535500px;}
.x89{left:322.632000px;}
.x99{left:325.540500px;}
.x38{left:326.817000px;}
.x6{left:329.793000px;}
.x71{left:331.681500px;}
.x40{left:333.966000px;}
.x27{left:337.387500px;}
.x88{left:338.985000px;}
.x8a{left:340.783500px;}
.x1b{left:343.783500px;}
.x9a{left:344.997000px;}
.x39{left:349.450500px;}
.x8c{left:354.013500px;}
.x8b{left:357.199500px;}
.x97{left:360.400500px;}
.x76{left:363.487500px;}
.x2{left:369.174000px;}
.x84{left:370.770000px;}
.x19{left:373.006500px;}
.x21{left:374.716500px;}
.x96{left:376.570500px;}
.x5{left:381.384000px;}
.x3{left:383.352000px;}
.x78{left:388.584000px;}
.x1e{left:389.691000px;}
.x7{left:392.640000px;}
.x74{left:400.602000px;}
.x22{left:402.843000px;}
.x94{left:404.725500px;}
.x7c{left:406.036500px;}
.x3d{left:407.649000px;}
.x13{left:409.203000px;}
.x83{left:411.472500px;}
.x8{left:414.060000px;}
.x4d{left:415.495500px;}
.x87{left:417.475500px;}
.x2a{left:419.884500px;}
.x53{left:428.260500px;}
.x50{left:429.291000px;}
.x3a{left:459.573000px;}
.x8d{left:464.134500px;}
.x54{left:468.748500px;}
.x51{left:469.780500px;}
.x3e{left:475.749000px;}
.x90{left:480.310500px;}
.x3b{left:482.391000px;}
.x7d{left:483.579000px;}
.x8e{left:486.954000px;}
.x23{left:490.068000px;}
.x3f{left:498.567000px;}
.x4{left:499.705500px;}
.x91{left:503.130000px;}
.x45{left:510.295500px;}
.xb{left:511.759500px;}
.x72{left:524.448000px;}
.x49{left:538.615500px;}
.x5b{left:545.980500px;}
.x4a{left:554.266500px;}
.x28{left:555.523500px;}
.x4f{left:560.820000px;}
.x2c{left:568.875000px;}
.x4c{left:570.099000px;}
.x2d{left:575.367000px;}
.x2e{left:581.275500px;}
.x7e{left:588.972000px;}
.x5f{left:600.658500px;}
.x5c{left:607.218000px;}
.x2f{left:611.730000px;}
.x5d{left:614.223000px;}
.x7f{left:620.368500px;}
.x4b{left:630.454500px;}
.x60{left:636.369000px;}
.x41{left:641.337000px;}
.x9b{left:644.782500px;}
.x30{left:645.805500px;}
.x42{left:649.519500px;}
.x61{left:658.552500px;}
.x43{left:661.344000px;}
.x44{left:669.526500px;}
.x80{left:675.103500px;}
.x9c{left:679.222500px;}
.x62{left:686.226000px;}
.x24{left:688.935000px;}
.x63{left:694.407000px;}
.x25{left:698.968500px;}
.x29{left:701.268000px;}
.x64{left:704.406000px;}
.x65{left:712.588500px;}
.x69{left:718.926000px;}
.x6d{left:734.148000px;}
.x6a{left:735.289500px;}
.x26{left:744.235500px;}
.x6b{left:745.545000px;}
.x6e{left:750.511500px;}
.x6c{left:761.908500px;}
.x66{left:791.013000px;}
.x12{left:799.195500px;}
.x81{left:806.079000px;}
@media print{
.v13{vertical-align:-55.786667pt;}
.v15{vertical-align:-47.818667pt;}
.v14{vertical-align:-39.850667pt;}
.v5{vertical-align:-20.314667pt;}
.v1{vertical-align:-11.477333pt;}
.v16{vertical-align:-9.008000pt;}
.v6{vertical-align:-7.968000pt;}
.v3{vertical-align:-5.312000pt;}
.v12{vertical-align:-3.989333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.168000pt;}
.v8{vertical-align:13.136000pt;}
.vc{vertical-align:14.384000pt;}
.v18{vertical-align:16.805333pt;}
.v7{vertical-align:19.280000pt;}
.v4{vertical-align:20.314667pt;}
.vb{vertical-align:24.021333pt;}
.v2{vertical-align:27.765333pt;}
.va{vertical-align:32.416000pt;}
.vf{vertical-align:39.360000pt;}
.ve{vertical-align:56.757333pt;}
.v19{vertical-align:60.474667pt;}
.v17{vertical-align:65.781333pt;}
.vd{vertical-align:73.584000pt;}
.v11{vertical-align:96.666667pt;}
.v10{vertical-align:113.493333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000166pt;}
.ls43{letter-spacing:0.000267pt;}
.ls8d{letter-spacing:0.000380pt;}
.ls36{letter-spacing:0.000933pt;}
.ls28{letter-spacing:0.001899pt;}
.ls75{letter-spacing:0.001911pt;}
.ls35{letter-spacing:0.001914pt;}
.ls5c{letter-spacing:0.002133pt;}
.ls7f{letter-spacing:0.002405pt;}
.ls47{letter-spacing:0.002906pt;}
.ls37{letter-spacing:0.003856pt;}
.ls3f{letter-spacing:0.003861pt;}
.ls80{letter-spacing:0.004467pt;}
.ls15{letter-spacing:0.005138pt;}
.ls2f{letter-spacing:0.005603pt;}
.ls1b{letter-spacing:0.005995pt;}
.ls6e{letter-spacing:0.006993pt;}
.ls3{letter-spacing:0.009151pt;}
.ls19{letter-spacing:0.011265pt;}
.ls8f{letter-spacing:0.015449pt;}
.ls26{letter-spacing:0.015883pt;}
.lsc{letter-spacing:0.016010pt;}
.ls51{letter-spacing:0.022336pt;}
.ls7a{letter-spacing:0.290909pt;}
.ls4e{letter-spacing:0.892646pt;}
.ls13{letter-spacing:1.487748pt;}
.ls24{letter-spacing:1.570910pt;}
.ls63{letter-spacing:1.575612pt;}
.ls90{letter-spacing:1.577039pt;}
.ls6a{letter-spacing:1.583014pt;}
.ls92{letter-spacing:1.588347pt;}
.ls68{letter-spacing:1.591366pt;}
.ls91{letter-spacing:1.592792pt;}
.ls7c{letter-spacing:1.593987pt;}
.ls66{letter-spacing:1.596801pt;}
.ls1f{letter-spacing:1.629092pt;}
.ls12{letter-spacing:1.912819pt;}
.ls30{letter-spacing:2.036365pt;}
.ls23{letter-spacing:2.094547pt;}
.ls34{letter-spacing:2.650641pt;}
.ls93{letter-spacing:2.653433pt;}
.ls40{letter-spacing:2.654249pt;}
.ls17{letter-spacing:2.654544pt;}
.lsd{letter-spacing:2.655527pt;}
.ls77{letter-spacing:2.655975pt;}
.ls29{letter-spacing:2.657546pt;}
.ls5e{letter-spacing:2.658591pt;}
.ls65{letter-spacing:2.658767pt;}
.ls1c{letter-spacing:2.659878pt;}
.ls48{letter-spacing:3.063537pt;}
.ls82{letter-spacing:3.290863pt;}
.ls70{letter-spacing:3.316366pt;}
.ls7e{letter-spacing:3.339537pt;}
.ls79{letter-spacing:3.347787pt;}
.ls7b{letter-spacing:3.351714pt;}
.ls2c{letter-spacing:3.352213pt;}
.ls78{letter-spacing:3.357546pt;}
.ls84{letter-spacing:3.358725pt;}
.ls83{letter-spacing:3.374548pt;}
.ls42{letter-spacing:3.375862pt;}
.ls56{letter-spacing:3.432730pt;}
.ls50{letter-spacing:3.555127pt;}
.ls61{letter-spacing:3.911807pt;}
.ls55{letter-spacing:4.712731pt;}
.ls6f{letter-spacing:5.033181pt;}
.ls2d{letter-spacing:5.201546pt;}
.ls4a{letter-spacing:5.738458pt;}
.ls49{letter-spacing:5.791591pt;}
.ls41{letter-spacing:6.283642pt;}
.ls3a{letter-spacing:6.341823pt;}
.ls60{letter-spacing:9.658190pt;}
.ls3b{letter-spacing:9.716372pt;}
.ls7{letter-spacing:10.903142pt;}
.ls46{letter-spacing:11.795718pt;}
.ls32{letter-spacing:12.916374pt;}
.ls5a{letter-spacing:12.974556pt;}
.ls8{letter-spacing:13.579139pt;}
.lse{letter-spacing:13.628928pt;}
.ls5{letter-spacing:13.676749pt;}
.ls4f{letter-spacing:14.124712pt;}
.ls88{letter-spacing:14.545467pt;}
.ls52{letter-spacing:14.718081pt;}
.ls14{letter-spacing:14.771215pt;}
.ls1{letter-spacing:15.406690pt;}
.ls5d{letter-spacing:15.586591pt;}
.ls20{letter-spacing:16.116377pt;}
.ls38{letter-spacing:16.164811pt;}
.ls21{letter-spacing:16.174559pt;}
.ls4{letter-spacing:16.304495pt;}
.ls16{letter-spacing:17.411878pt;}
.ls1a{letter-spacing:17.417211pt;}
.ls59{letter-spacing:17.629106pt;}
.ls57{letter-spacing:17.687287pt;}
.ls67{letter-spacing:17.745469pt;}
.ls53{letter-spacing:17.746711pt;}
.ls1e{letter-spacing:17.803651pt;}
.ls89{letter-spacing:18.082400pt;}
.ls58{letter-spacing:18.210924pt;}
.ls33{letter-spacing:18.815975pt;}
.ls3c{letter-spacing:18.816991pt;}
.ls27{letter-spacing:18.817546pt;}
.ls8c{letter-spacing:18.822879pt;}
.ls76{letter-spacing:18.824941pt;}
.ls44{letter-spacing:18.915657pt;}
.lsb{letter-spacing:19.039527pt;}
.ls9{letter-spacing:19.040473pt;}
.ls11{letter-spacing:19.181326pt;}
.ls25{letter-spacing:19.374562pt;}
.ls31{letter-spacing:19.432743pt;}
.ls6b{letter-spacing:19.549107pt;}
.ls5b{letter-spacing:20.071807pt;}
.ls4d{letter-spacing:20.828476pt;}
.ls62{letter-spacing:20.829108pt;}
.ls22{letter-spacing:20.887290pt;}
.ls54{letter-spacing:21.003654pt;}
.ls8a{letter-spacing:21.061836pt;}
.ls87{letter-spacing:21.120018pt;}
.ls6c{letter-spacing:21.193181pt;}
.ls7d{letter-spacing:21.198514pt;}
.ls85{letter-spacing:22.047975pt;}
.ls4b{letter-spacing:22.050555pt;}
.ls64{letter-spacing:22.050767pt;}
.ls69{letter-spacing:22.056100pt;}
.ls5f{letter-spacing:22.400019pt;}
.ls73{letter-spacing:22.749110pt;}
.ls39{letter-spacing:23.609490pt;}
.ls3e{letter-spacing:23.614824pt;}
.ls1d{letter-spacing:24.145475pt;}
.ls71{letter-spacing:24.203657pt;}
.ls81{letter-spacing:24.425181pt;}
.ls2e{letter-spacing:24.436384pt;}
.ls74{letter-spacing:25.843847pt;}
.ls72{letter-spacing:25.849181pt;}
.ls86{letter-spacing:26.996386pt;}
.lsa{letter-spacing:29.744538pt;}
.ls2{letter-spacing:30.079283pt;}
.ls6{letter-spacing:30.127104pt;}
.ls4c{letter-spacing:31.242714pt;}
.ls8b{letter-spacing:31.883663pt;}
.lsf{letter-spacing:31.896474pt;}
.ls2a{letter-spacing:42.833546pt;}
.ls8e{letter-spacing:42.838879pt;}
.ls0{letter-spacing:45.161356pt;}
.ls18{letter-spacing:57.763878pt;}
.ls3d{letter-spacing:106.260811pt;}
.ls6d{letter-spacing:126.080105pt;}
.ls2b{letter-spacing:898.370411pt;}
.ws8b{word-spacing:-58.181867pt;}
.ws9b{word-spacing:-48.523677pt;}
.ws8d{word-spacing:-45.265492pt;}
.ws54{word-spacing:-40.599307pt;}
.ws63{word-spacing:-38.362652pt;}
.ws4c{word-spacing:-37.899668pt;}
.ws44{word-spacing:-34.611401pt;}
.ws9c{word-spacing:-33.454573pt;}
.ws8a{word-spacing:-32.337481pt;}
.ws9{word-spacing:-32.063846pt;}
.ws8e{word-spacing:-29.736752pt;}
.ws5f{word-spacing:-29.521250pt;}
.ws4f{word-spacing:-29.090933pt;}
.ws58{word-spacing:-28.241478pt;}
.ws53{word-spacing:-28.183296pt;}
.ws66{word-spacing:-28.118362pt;}
.wsa3{word-spacing:-27.156719pt;}
.ws46{word-spacing:-26.566933pt;}
.ws28{word-spacing:-24.575109pt;}
.ws5e{word-spacing:-21.783291pt;}
.ws95{word-spacing:-20.445108pt;}
.ws56{word-spacing:-20.386926pt;}
.ws64{word-spacing:-18.618107pt;}
.ws11{word-spacing:-18.434918pt;}
.ws10{word-spacing:-18.387098pt;}
.ws97{word-spacing:-17.167826pt;}
.ws57{word-spacing:-16.162923pt;}
.ws80{word-spacing:-15.709104pt;}
.ws9f{word-spacing:-15.650922pt;}
.ws83{word-spacing:-15.430075pt;}
.ws65{word-spacing:-14.760588pt;}
.ws0{word-spacing:-14.346200pt;}
.ws9d{word-spacing:-13.963648pt;}
.ws6e{word-spacing:-13.847284pt;}
.ws2e{word-spacing:-13.730921pt;}
.ws7f{word-spacing:-13.381829pt;}
.ws23{word-spacing:-13.017797pt;}
.ws3d{word-spacing:-12.974556pt;}
.wsa8{word-spacing:-12.858396pt;}
.ws84{word-spacing:-12.858193pt;}
.wsac{word-spacing:-12.805262pt;}
.wsaa{word-spacing:-12.539593pt;}
.ws86{word-spacing:-12.160010pt;}
.ws13{word-spacing:-12.036495pt;}
.ws5{word-spacing:-11.955200pt;}
.ws8{word-spacing:-11.940854pt;}
.wse{word-spacing:-11.893033pt;}
.ws3a{word-spacing:-11.345464pt;}
.ws6c{word-spacing:-11.229100pt;}
.wsaf{word-spacing:-11.104978pt;}
.ws87{word-spacing:-10.938191pt;}
.ws42{word-spacing:-10.821827pt;}
.ws33{word-spacing:-10.763645pt;}
.ws30{word-spacing:-10.705463pt;}
.ws99{word-spacing:-10.700535pt;}
.ws1e{word-spacing:-10.626773pt;}
.ws6d{word-spacing:-10.589100pt;}
.ws19{word-spacing:-10.520506pt;}
.ws82{word-spacing:-10.414554pt;}
.ws3e{word-spacing:-10.201702pt;}
.ws6f{word-spacing:-10.148569pt;}
.ws35{word-spacing:-10.065463pt;}
.ws48{word-spacing:-10.007281pt;}
.ws41{word-spacing:-9.949099pt;}
.ws31{word-spacing:-9.890917pt;}
.ws32{word-spacing:-9.838554pt;}
.ws43{word-spacing:-9.832735pt;}
.ws3c{word-spacing:-9.774554pt;}
.ws2a{word-spacing:-9.716372pt;}
.ws2f{word-spacing:-9.658190pt;}
.ws5a{word-spacing:-9.600008pt;}
.ws7c{word-spacing:-9.541826pt;}
.ws37{word-spacing:-9.483644pt;}
.wsa7{word-spacing:-9.463142pt;}
.ws3b{word-spacing:-9.425462pt;}
.wsb1{word-spacing:-9.410008pt;}
.wsd{word-spacing:-9.406351pt;}
.ws39{word-spacing:-9.367281pt;}
.ws36{word-spacing:-9.314917pt;}
.ws59{word-spacing:-9.309099pt;}
.ws20{word-spacing:-9.245293pt;}
.ws24{word-spacing:-9.192159pt;}
.ws47{word-spacing:-9.139025pt;}
.ws1f{word-spacing:-9.085891pt;}
.ws91{word-spacing:-8.965826pt;}
.wsb0{word-spacing:-8.926490pt;}
.ws88{word-spacing:-8.907644pt;}
.ws6{word-spacing:-8.873356pt;}
.ws1d{word-spacing:-8.820222pt;}
.ws9e{word-spacing:-8.733098pt;}
.ws49{word-spacing:-8.727280pt;}
.ws25{word-spacing:-8.713954pt;}
.ws75{word-spacing:-8.660820pt;}
.ws21{word-spacing:-8.616734pt;}
.ws3f{word-spacing:-8.610916pt;}
.ws22{word-spacing:-8.607686pt;}
.wsa5{word-spacing:-8.501419pt;}
.ws50{word-spacing:-8.494553pt;}
.wsa0{word-spacing:-8.400464pt;}
.ws96{word-spacing:-8.384007pt;}
.ws14{word-spacing:-8.268216pt;}
.ws76{word-spacing:-8.235749pt;}
.ws7{word-spacing:-8.220396pt;}
.ws77{word-spacing:-8.182615pt;}
.wsc{word-spacing:-8.172575pt;}
.ws4a{word-spacing:-8.145461pt;}
.wsa4{word-spacing:-8.134795pt;}
.ws5b{word-spacing:-8.087279pt;}
.ws12{word-spacing:-8.076933pt;}
.ws40{word-spacing:-7.976734pt;}
.wsb2{word-spacing:-7.922260pt;}
.ws7a{word-spacing:-7.912734pt;}
.wsa9{word-spacing:-7.869126pt;}
.wsa6{word-spacing:-7.762858pt;}
.ws34{word-spacing:-7.563643pt;}
.ws4d{word-spacing:-7.465919pt;}
.ws51{word-spacing:-7.389097pt;}
.ws26{word-spacing:-7.279340pt;}
.ws68{word-spacing:-7.226206pt;}
.ws85{word-spacing:-6.923642pt;}
.ws1b{word-spacing:-6.854269pt;}
.wsab{word-spacing:-6.641733pt;}
.ws78{word-spacing:-6.504733pt;}
.ws6b{word-spacing:-6.458187pt;}
.ws5d{word-spacing:-6.446551pt;}
.ws8f{word-spacing:-6.347642pt;}
.ws38{word-spacing:-6.283642pt;}
.ws70{word-spacing:-5.887232pt;}
.ws89{word-spacing:-5.882187pt;}
.ws74{word-spacing:-5.796905pt;}
.ws27{word-spacing:-5.366521pt;}
.wsae{word-spacing:-5.265566pt;}
.wsa1{word-spacing:-5.260253pt;}
.wsad{word-spacing:-5.207119pt;}
.ws29{word-spacing:-5.178186pt;}
.ws52{word-spacing:-4.945459pt;}
.wsa2{word-spacing:-4.893629pt;}
.ws18{word-spacing:-4.468558pt;}
.ws1c{word-spacing:-4.410111pt;}
.ws62{word-spacing:-4.014549pt;}
.ws7b{word-spacing:-3.723639pt;}
.ws55{word-spacing:-3.665458pt;}
.ws1a{word-spacing:-3.453701pt;}
.ws98{word-spacing:-3.258185pt;}
.ws9a{word-spacing:-3.246548pt;}
.ws61{word-spacing:-3.200003pt;}
.ws6a{word-spacing:-2.967275pt;}
.ws7d{word-spacing:-2.909093pt;}
.ws69{word-spacing:-2.798548pt;}
.ws94{word-spacing:-2.792730pt;}
.ws81{word-spacing:-0.640001pt;}
.ws2{word-spacing:-0.076513pt;}
.ws60{word-spacing:-0.064662pt;}
.ws73{word-spacing:-0.053134pt;}
.ws4b{word-spacing:-0.046545pt;}
.wsa{word-spacing:-0.031881pt;}
.ws8c{word-spacing:-0.001034pt;}
.ws15{word-spacing:0.000000pt;}
.ws71{word-spacing:0.010627pt;}
.ws4e{word-spacing:0.011636pt;}
.ws90{word-spacing:0.052364pt;}
.ws92{word-spacing:2.146911pt;}
.ws16{word-spacing:2.385457pt;}
.ws5c{word-spacing:2.978912pt;}
.ws72{word-spacing:2.986123pt;}
.ws93{word-spacing:3.211639pt;}
.ws79{word-spacing:3.328003pt;}
.ws17{word-spacing:10.159221pt;}
.ws4{word-spacing:12.701169pt;}
.wsf{word-spacing:13.581107pt;}
.wsb{word-spacing:19.004087pt;}
.ws1{word-spacing:20.722347pt;}
.ws7e{word-spacing:29.608752pt;}
.ws2d{word-spacing:30.551973pt;}
.ws3{word-spacing:42.464752pt;}
.ws45{word-spacing:45.382565pt;}
.ws67{word-spacing:1017.380761pt;}
.ws2b{word-spacing:1958.167006pt;}
.ws2c{word-spacing:1981.446055pt;}
._37{margin-left:-24.436384pt;}
._3e{margin-left:-16.174559pt;}
._1{margin-left:-7.192228pt;}
._9{margin-left:-6.264525pt;}
._2{margin-left:-5.228407pt;}
._a{margin-left:-4.295235pt;}
._6{margin-left:-3.293296pt;}
._0{margin-left:-2.371905pt;}
._7{margin-left:-1.386803pt;}
._4{width:1.487748pt;}
._5{width:2.879187pt;}
._39{width:4.144442pt;}
._3b{width:8.956188pt;}
._3c{width:15.086123pt;}
._8{width:16.305556pt;}
._3d{width:17.393714pt;}
._3{width:18.630868pt;}
._11{width:20.065483pt;}
._31{width:21.225351pt;}
._10{width:22.581893pt;}
._e{width:23.471373pt;}
._b{width:24.454466pt;}
._30{width:26.156623pt;}
._3f{width:27.448290pt;}
._35{width:28.417731pt;}
._34{width:29.834952pt;}
._40{width:31.880320pt;}
._36{width:33.396391pt;}
._32{width:36.117388pt;}
._d{width:37.512510pt;}
._c{width:40.440195pt;}
._38{width:43.461854pt;}
._f{width:53.930875pt;}
._3a{width:57.307627pt;}
._33{width:61.316482pt;}
._2c{width:988.394978pt;}
._2b{width:1111.788628pt;}
._18{width:1117.680415pt;}
._20{width:1164.860052pt;}
._17{width:1195.377784pt;}
._21{width:1244.482343pt;}
._23{width:1275.628765pt;}
._1d{width:1330.261538pt;}
._1b{width:1377.291475pt;}
._24{width:1391.957956pt;}
._26{width:1396.864356pt;}
._19{width:1427.440674pt;}
._1a{width:1450.673021pt;}
._1f{width:1452.710988pt;}
._14{width:1482.499843pt;}
._28{width:1513.264759pt;}
._22{width:1540.971278pt;}
._15{width:1578.092910pt;}
._1c{width:1611.454499pt;}
._2a{width:1619.798146pt;}
._29{width:1634.411356pt;}
._1e{width:1638.743135pt;}
._2f{width:1652.922751pt;}
._25{width:1726.224251pt;}
._2e{width:1764.040555pt;}
._27{width:1802.042876pt;}
._16{width:1819.606147pt;}
._13{width:1822.365106pt;}
._2d{width:1955.085559pt;}
._12{width:1989.934507pt;}
.fs8{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:139.014667pt;}
.y13f{bottom:140.824000pt;}
.y40{bottom:142.501333pt;}
.y13e{bottom:150.801333pt;}
.y28{bottom:154.156000pt;}
.y8d{bottom:166.004000pt;}
.y75{bottom:169.600000pt;}
.y3f{bottom:169.873333pt;}
.y17b{bottom:173.089333pt;}
.yaa{bottom:174.609333pt;}
.y17a{bottom:177.466667pt;}
.ya9{bottom:178.205333pt;}
.y155{bottom:182.638667pt;}
.y119{bottom:184.466667pt;}
.y12b{bottom:185.002667pt;}
.y12a{bottom:189.378667pt;}
.y74{bottom:196.698667pt;}
.yf3{bottom:197.253333pt;}
.y3e{bottom:212.064000pt;}
.y179{bottom:213.760000pt;}
.ya8{bottom:213.910667pt;}
.y166{bottom:217.844000pt;}
.y154{bottom:222.285333pt;}
.y8c{bottom:223.796000pt;}
.yf2{bottom:224.352000pt;}
.y118{bottom:226.432000pt;}
.y59{bottom:233.958667pt;}
.y73{bottom:234.226667pt;}
.ydd{bottom:235.358667pt;}
.y129{bottom:236.285333pt;}
.y3d{bottom:239.436000pt;}
.y13d{bottom:240.644000pt;}
.ya7{bottom:241.008000pt;}
.y11{bottom:245.874667pt;}
.yc7{bottom:249.365333pt;}
.y178{bottom:250.053333pt;}
.y72{bottom:261.325333pt;}
.ydc{bottom:262.456000pt;}
.y165{bottom:265.845333pt;}
.y3c{bottom:266.808000pt;}
.ya6{bottom:268.106667pt;}
.y153{bottom:268.281333pt;}
.y10{bottom:270.448000pt;}
.y8b{bottom:270.872000pt;}
.yf1{bottom:270.902667pt;}
.y117{bottom:272.513333pt;}
.y8a{bottom:274.468000pt;}
.y58{bottom:275.601333pt;}
.y128{bottom:281.893333pt;}
.y13c{bottom:286.053333pt;}
.y71{bottom:288.424000pt;}
.y199{bottom:290.613333pt;}
.y3b{bottom:294.180000pt;}
.yf{bottom:295.022667pt;}
.y177{bottom:296.049333pt;}
.y13b{bottom:297.841333pt;}
.ydb{bottom:301.117333pt;}
.y57{bottom:302.700000pt;}
.y164{bottom:312.273333pt;}
.ya5{bottom:314.102667pt;}
.y198{bottom:314.522667pt;}
.y70{bottom:315.522667pt;}
.y89{bottom:316.673333pt;}
.ye{bottom:316.941333pt;}
.y3a{bottom:321.552000pt;}
.y152{bottom:322.312000pt;}
.y116{bottom:327.146667pt;}
.yda{bottom:328.214667pt;}
.yf0{bottom:328.224000pt;}
.y127{bottom:329.188000pt;}
.y56{bottom:329.798667pt;}
.y197{bottom:338.433333pt;}
.y13a{bottom:341.153333pt;}
.yd{bottom:341.516000pt;}
.yc6{bottom:341.636000pt;}
.y88{bottom:343.936000pt;}
.y39{bottom:348.924000pt;}
.y176{bottom:349.345333pt;}
.y115{bottom:354.244000pt;}
.yef{bottom:355.321333pt;}
.y55{bottom:356.897333pt;}
.y105{bottom:357.509333pt;}
.y163{bottom:360.517333pt;}
.y6f{bottom:362.338667pt;}
.y196{bottom:362.344000pt;}
.y151{bottom:362.449333pt;}
.yc{bottom:366.089333pt;}
.ya4{bottom:367.305333pt;}
.yc5{bottom:368.734667pt;}
.y38{bottom:376.296000pt;}
.y175{bottom:376.444000pt;}
.yee{bottom:382.420000pt;}
.y104{bottom:384.608000pt;}
.yd9{bottom:385.773333pt;}
.y87{bottom:386.141333pt;}
.y195{bottom:386.254667pt;}
.y139{bottom:387.682667pt;}
.yb{bottom:390.664000pt;}
.y126{bottom:390.758667pt;}
.ya3{bottom:394.404000pt;}
.y114{bottom:395.052000pt;}
.yc4{bottom:395.833333pt;}
.y54{bottom:398.541333pt;}
.y162{bottom:406.945333pt;}
.y150{bottom:408.445333pt;}
.yed{bottom:409.518667pt;}
.y194{bottom:410.164000pt;}
.y174{bottom:411.409333pt;}
.y103{bottom:411.706667pt;}
.ya{bottom:415.238667pt;}
.y125{bottom:417.857333pt;}
.ya2{bottom:418.321333pt;}
.y37{bottom:418.486667pt;}
.ya1{bottom:420.130667pt;}
.y6e{bottom:421.172000pt;}
.yc3{bottom:422.932000pt;}
.y86{bottom:428.348000pt;}
.ya0{bottom:430.108000pt;}
.y193{bottom:434.074667pt;}
.y113{bottom:437.102667pt;}
.yec{bottom:437.172000pt;}
.y102{bottom:438.804000pt;}
.y9{bottom:439.813333pt;}
.y53{bottom:440.185333pt;}
.y138{bottom:444.880000pt;}
.y6d{bottom:448.270667pt;}
.yc2{bottom:450.030667pt;}
.yd8{bottom:451.404000pt;}
.y161{bottom:453.373333pt;}
.y173{bottom:457.405333pt;}
.y192{bottom:457.985333pt;}
.y14f{bottom:458.880000pt;}
.y36{bottom:460.677333pt;}
.y14e{bottom:462.476000pt;}
.yeb{bottom:464.270667pt;}
.y124{bottom:464.734667pt;}
.y9f{bottom:465.813333pt;}
.y101{bottom:465.902667pt;}
.y52{bottom:467.282667pt;}
.y137{bottom:471.978667pt;}
.y85{bottom:474.508000pt;}
.yd7{bottom:475.313333pt;}
.y6c{bottom:476.188000pt;}
.yc1{bottom:477.128000pt;}
.y112{bottom:479.068000pt;}
.y191{bottom:481.896000pt;}
.y9e{bottom:489.729333pt;}
.y100{bottom:493.001333pt;}
.y51{bottom:494.381333pt;}
.yd6{bottom:499.224000pt;}
.y9d{bottom:501.517333pt;}
.y160{bottom:501.618667pt;}
.y14d{bottom:502.613333pt;}
.y35{bottom:502.868000pt;}
.y6b{bottom:503.286667pt;}
.y27{bottom:505.648000pt;}
.y190{bottom:505.805333pt;}
.y172{bottom:510.700000pt;}
.yea{bottom:510.822667pt;}
.y123{bottom:512.029333pt;}
.y136{bottom:518.508000pt;}
.y111{bottom:519.874667pt;}
.yff{bottom:520.100000pt;}
.y50{bottom:521.480000pt;}
.yd5{bottom:523.134667pt;}
.y84{bottom:529.598667pt;}
.y18f{bottom:529.716000pt;}
.y6a{bottom:530.385333pt;}
.y26{bottom:532.745333pt;}
.yc0{bottom:535.561333pt;}
.y9c{bottom:537.221333pt;}
.y14c{bottom:542.750667pt;}
.y34{bottom:545.058667pt;}
.y171{bottom:545.665333pt;}
.y4f{bottom:548.578667pt;}
.y15f{bottom:549.862667pt;}
.y18e{bottom:553.626667pt;}
.y83{bottom:556.697333pt;}
.y69{bottom:557.484000pt;}
.ybf{bottom:559.472000pt;}
.y25{bottom:559.844000pt;}
.y110{bottom:561.840000pt;}
.y8{bottom:562.780000pt;}
.y9b{bottom:564.320000pt;}
.yfe{bottom:566.096000pt;}
.yd4{bottom:567.744000pt;}
.ye9{bottom:568.142667pt;}
.y122{bottom:573.600000pt;}
.y135{bottom:575.706667pt;}
.y18d{bottom:577.537333pt;}
.y170{bottom:581.958667pt;}
.y14b{bottom:582.886667pt;}
.y82{bottom:583.960000pt;}
.y68{bottom:584.582667pt;}
.y33{bottom:587.249333pt;}
.y4e{bottom:590.222667pt;}
.y9a{bottom:591.418667pt;}
.ye8{bottom:595.241333pt;}
.y24{bottom:595.734667pt;}
.y15e{bottom:596.290667pt;}
.y18c{bottom:601.446667pt;}
.y10f{bottom:603.806667pt;}
.ybd{bottom:608.178667pt;}
.y7{bottom:609.366667pt;}
.y81{bottom:611.058667pt;}
.yfd{bottom:611.185333pt;}
.ybc{bottom:611.462667pt;}
.ybb{bottom:611.856000pt;}
.y67{bottom:612.501333pt;}
.yb9{bottom:612.853333pt;}
.y4d{bottom:617.321333pt;}
.y16f{bottom:618.252000pt;}
.y99{bottom:618.516000pt;}
.y134{bottom:619.017333pt;}
.y23{bottom:619.645333pt;}
.y121{bottom:620.478667pt;}
.ye7{bottom:622.338667pt;}
.y14a{bottom:623.024000pt;}
.y18b{bottom:625.357333pt;}
.y32{bottom:629.440000pt;}
.y6{bottom:633.277333pt;}
.yfc{bottom:635.096000pt;}
.yba{bottom:635.766667pt;}
.yb8{bottom:636.762667pt;}
.y66{bottom:639.598667pt;}
.yd2{bottom:642.498667pt;}
.y15d{bottom:642.718667pt;}
.y22{bottom:643.556000pt;}
.y4c{bottom:644.418667pt;}
.y10e{bottom:644.613333pt;}
.y18a{bottom:649.268000pt;}
.y16e{bottom:653.217333pt;}
.y80{bottom:656.478667pt;}
.y5{bottom:657.188000pt;}
.y133{bottom:662.329333pt;}
.y98{bottom:664.512000pt;}
.yd3{bottom:666.408000pt;}
.y65{bottom:666.697333pt;}
.y120{bottom:667.385333pt;}
.y21{bottom:667.466667pt;}
.ye6{bottom:668.890667pt;}
.y149{bottom:669.020000pt;}
.y4b{bottom:671.517333pt;}
.y31{bottom:671.630667pt;}
.y189{bottom:673.178667pt;}
.yd1{bottom:676.370667pt;}
.y7f{bottom:680.389333pt;}
.y10d{bottom:685.420000pt;}
.yf9{bottom:686.742667pt;}
.yfb{bottom:687.420000pt;}
.y132{bottom:689.428000pt;}
.y15c{bottom:690.288000pt;}
.yd0{bottom:690.318667pt;}
.y20{bottom:691.376000pt;}
.y64{bottom:693.796000pt;}
.y188{bottom:697.088000pt;}
.y4a{bottom:698.616000pt;}
.y16d{bottom:699.213333pt;}
.yf8{bottom:710.653333pt;}
.ybe{bottom:711.193333pt;}
.yfa{bottom:711.330667pt;}
.y148{bottom:711.828000pt;}
.y11f{bottom:712.992000pt;}
.y30{bottom:713.821333pt;}
.ycf{bottom:714.229333pt;}
.y1f{bottom:715.286667pt;}
.y97{bottom:717.714667pt;}
.y63{bottom:720.894667pt;}
.y187{bottom:720.998667pt;}
.y49{bottom:725.714667pt;}
.ye5{bottom:726.210667pt;}
.y10c{bottom:727.385333pt;}
.y7e{bottom:732.036000pt;}
.y131{bottom:735.958667pt;}
.y1e{bottom:739.197333pt;}
.y186{bottom:744.909333pt;}
.y62{bottom:748.813333pt;}
.y16c{bottom:752.509333pt;}
.y48{bottom:752.812000pt;}
.ye4{bottom:753.309333pt;}
.y96{bottom:753.420000pt;}
.y15b{bottom:753.421333pt;}
.y7d{bottom:755.946667pt;}
.y2f{bottom:756.013333pt;}
.y11e{bottom:759.869333pt;}
.y1d{bottom:763.108000pt;}
.y4{bottom:764.700000pt;}
.y147{bottom:765.858667pt;}
.y185{bottom:768.820000pt;}
.y10b{bottom:769.352000pt;}
.y3{bottom:769.428000pt;}
.y61{bottom:775.910667pt;}
.yce{bottom:778.210667pt;}
.y130{bottom:779.300000pt;}
.y15a{bottom:780.518667pt;}
.ye3{bottom:780.962667pt;}
.yb7{bottom:781.682667pt;}
.yf7{bottom:784.733333pt;}
.yb6{bottom:784.966667pt;}
.yb5{bottom:785.364000pt;}
.yb3{bottom:786.360000pt;}
.y1c{bottom:787.017333pt;}
.y95{bottom:789.124000pt;}
.y16b{bottom:789.757333pt;}
.y184{bottom:792.729333pt;}
.y47{bottom:794.456000pt;}
.y2e{bottom:798.204000pt;}
.ycd{bottom:802.121333pt;}
.y60{bottom:803.009333pt;}
.y146{bottom:805.505333pt;}
.y11d{bottom:807.165333pt;}
.y159{bottom:807.617333pt;}
.ye2{bottom:808.061333pt;}
.yf6{bottom:808.644000pt;}
.yb4{bottom:809.274667pt;}
.yb2{bottom:810.270667pt;}
.y1b{bottom:810.928000pt;}
.y7c{bottom:814.909333pt;}
.y10a{bottom:815.432000pt;}
.y94{bottom:816.222667pt;}
.y183{bottom:816.640000pt;}
.y46{bottom:821.554667pt;}
.y16a{bottom:824.722667pt;}
.y5f{bottom:830.108000pt;}
.y1a{bottom:834.838667pt;}
.y12f{bottom:836.497333pt;}
.y7b{bottom:838.818667pt;}
.y2d{bottom:840.394667pt;}
.y182{bottom:840.550667pt;}
.y93{bottom:843.320000pt;}
.y145{bottom:845.642667pt;}
.y45{bottom:848.653333pt;}
.ye1{bottom:854.612000pt;}
.y158{bottom:855.186667pt;}
.y5e{bottom:857.206667pt;}
.y19{bottom:858.749333pt;}
.y169{bottom:859.688000pt;}
.y181{bottom:864.461333pt;}
.y11c{bottom:868.736000pt;}
.y109{bottom:870.065333pt;}
.y92{bottom:870.418667pt;}
.y2{bottom:873.994667pt;}
.y44{bottom:875.752000pt;}
.ycc{bottom:878.982667pt;}
.y12e{bottom:879.549333pt;}
.y2c{bottom:882.585333pt;}
.y18{bottom:882.658667pt;}
.yf5{bottom:882.725333pt;}
.y5d{bottom:885.125333pt;}
.y144{bottom:885.289333pt;}
.y180{bottom:888.370667pt;}
.y7a{bottom:894.558667pt;}
.y168{bottom:894.653333pt;}
.y108{bottom:897.164000pt;}
.y79{bottom:897.842667pt;}
.ycb{bottom:902.893333pt;}
.y91{bottom:906.122667pt;}
.y17{bottom:906.569333pt;}
.yf4{bottom:906.634667pt;}
.ye0{bottom:911.933333pt;}
.y5c{bottom:912.222667pt;}
.y17f{bottom:912.281333pt;}
.y143{bottom:916.288000pt;}
.y43{bottom:917.396000pt;}
.y17e{bottom:918.657333pt;}
.y11b{bottom:919.481333pt;}
.y78{bottom:921.753333pt;}
.y12d{bottom:923.394667pt;}
.y107{bottom:924.262667pt;}
.y1{bottom:924.568000pt;}
.y2b{bottom:924.776000pt;}
.y142{bottom:926.265333pt;}
.y167{bottom:930.946667pt;}
.y157{bottom:937.893333pt;}
.y5b{bottom:939.321333pt;}
.ydf{bottom:939.586667pt;}
.y16{bottom:940.973333pt;}
.y90{bottom:941.828000pt;}
.y17d{bottom:945.756000pt;}
.y15{bottom:945.794667pt;}
.yad{bottom:956.546667pt;}
.yaf{bottom:957.542667pt;}
.y42{bottom:959.040000pt;}
.y156{bottom:964.992000pt;}
.y11a{bottom:966.358667pt;}
.y5a{bottom:966.420000pt;}
.yde{bottom:966.685333pt;}
.y12c{bottom:966.706667pt;}
.y2a{bottom:966.966667pt;}
.y141{bottom:967.240000pt;}
.y13{bottom:969.533333pt;}
.y106{bottom:970.342667pt;}
.y17c{bottom:972.854667pt;}
.y8f{bottom:973.936000pt;}
.y14{bottom:974.812000pt;}
.yca{bottom:976.470667pt;}
.y8e{bottom:977.532000pt;}
.yae{bottom:978.169333pt;}
.yc9{bottom:979.754667pt;}
.yac{bottom:980.457333pt;}
.y77{bottom:981.453333pt;}
.y41{bottom:986.137333pt;}
.yb1{bottom:990.058667pt;}
.yb0{bottom:993.342667pt;}
.yc8{bottom:1003.665333pt;}
.yab{bottom:1004.368000pt;}
.y76{bottom:1005.364000pt;}
.y12{bottom:1013.236000pt;}
.y29{bottom:1059.728000pt;}
.h22{height:5.953703pt;}
.he{height:15.550933pt;}
.hb{height:26.184294pt;}
.h1e{height:26.519037pt;}
.h17{height:28.267288pt;}
.ha{height:29.925069pt;}
.h7{height:35.865600pt;}
.hc{height:38.043849pt;}
.h5{height:39.850400pt;}
.hd{height:41.658217pt;}
.h8{height:41.834027pt;}
.h9{height:43.636400pt;}
.h6{height:44.632747pt;}
.hf{height:45.464294pt;}
.h1d{height:45.469628pt;}
.h1f{height:45.799037pt;}
.h20{height:45.804370pt;}
.h3{height:47.820800pt;}
.h26{height:51.034402pt;}
.h14{height:51.039735pt;}
.h11{height:51.459474pt;}
.h15{height:51.464807pt;}
.h21{height:52.986400pt;}
.h2{height:53.559147pt;}
.h12{height:53.946402pt;}
.h1c{height:53.951735pt;}
.h18{height:54.371474pt;}
.h1b{height:54.376807pt;}
.h13{height:58.020400pt;}
.h24{height:58.229069pt;}
.h10{height:58.935037pt;}
.h4{height:67.615733pt;}
.h23{height:67.906688pt;}
.h25{height:68.543735pt;}
.h29{height:68.549069pt;}
.h19{height:82.996400pt;}
.h28{height:83.545733pt;}
.h16{height:86.682402pt;}
.h27{height:88.741955pt;}
.h1a{height:126.591735pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x10{left:96.000000pt;}
.x11{left:98.434667pt;}
.x16{left:101.656000pt;}
.x9d{left:102.641333pt;}
.x15{left:106.909333pt;}
.x1{left:111.720000pt;}
.x18{left:113.172000pt;}
.x1a{left:115.925333pt;}
.x14{left:118.221333pt;}
.x5a{left:122.956000pt;}
.x9e{left:124.633333pt;}
.x17{left:133.492000pt;}
.x98{left:135.326667pt;}
.x58{left:138.616000pt;}
.xf{left:141.164000pt;}
.x77{left:142.273333pt;}
.xe{left:154.448000pt;}
.xa{left:156.885333pt;}
.x59{left:167.478667pt;}
.x5e{left:169.374667pt;}
.x56{left:182.233333pt;}
.x7a{left:188.220000pt;}
.xc{left:190.597333pt;}
.x93{left:191.588000pt;}
.xd{left:196.556000pt;}
.x7b{left:203.394667pt;}
.x92{left:207.942667pt;}
.x95{left:209.342667pt;}
.x31{left:210.341333pt;}
.x6f{left:211.493333pt;}
.x46{left:224.325333pt;}
.x32{left:225.297333pt;}
.x20{left:229.342667pt;}
.x67{left:231.501333pt;}
.x55{left:233.562667pt;}
.x1f{left:235.249333pt;}
.x70{left:236.158667pt;}
.x68{left:237.202667pt;}
.x33{left:240.692000pt;}
.x47{left:243.133333pt;}
.x85{left:245.125333pt;}
.x2b{left:250.350667pt;}
.x52{left:251.880000pt;}
.x75{left:253.196000pt;}
.x4e{left:254.996000pt;}
.x1c{left:259.041333pt;}
.x48{left:261.176000pt;}
.x34{left:263.001333pt;}
.x73{left:264.481333pt;}
.x35{left:267.054667pt;}
.x3c{left:269.049333pt;}
.x79{left:270.278667pt;}
.x57{left:271.921333pt;}
.x8f{left:273.105333pt;}
.x36{left:274.326667pt;}
.x1d{left:278.669333pt;}
.x86{left:280.402667pt;}
.x37{left:283.232000pt;}
.x82{left:285.809333pt;}
.x89{left:286.784000pt;}
.x99{left:289.369333pt;}
.x38{left:290.504000pt;}
.x6{left:293.149333pt;}
.x71{left:294.828000pt;}
.x40{left:296.858667pt;}
.x27{left:299.900000pt;}
.x88{left:301.320000pt;}
.x8a{left:302.918667pt;}
.x1b{left:305.585333pt;}
.x9a{left:306.664000pt;}
.x39{left:310.622667pt;}
.x8c{left:314.678667pt;}
.x8b{left:317.510667pt;}
.x97{left:320.356000pt;}
.x76{left:323.100000pt;}
.x2{left:328.154667pt;}
.x84{left:329.573333pt;}
.x19{left:331.561333pt;}
.x21{left:333.081333pt;}
.x96{left:334.729333pt;}
.x5{left:339.008000pt;}
.x3{left:340.757333pt;}
.x78{left:345.408000pt;}
.x1e{left:346.392000pt;}
.x7{left:349.013333pt;}
.x74{left:356.090667pt;}
.x22{left:358.082667pt;}
.x94{left:359.756000pt;}
.x7c{left:360.921333pt;}
.x3d{left:362.354667pt;}
.x13{left:363.736000pt;}
.x83{left:365.753333pt;}
.x8{left:368.053333pt;}
.x4d{left:369.329333pt;}
.x87{left:371.089333pt;}
.x2a{left:373.230667pt;}
.x53{left:380.676000pt;}
.x50{left:381.592000pt;}
.x3a{left:408.509333pt;}
.x8d{left:412.564000pt;}
.x54{left:416.665333pt;}
.x51{left:417.582667pt;}
.x3e{left:422.888000pt;}
.x90{left:426.942667pt;}
.x3b{left:428.792000pt;}
.x7d{left:429.848000pt;}
.x8e{left:432.848000pt;}
.x23{left:435.616000pt;}
.x3f{left:443.170667pt;}
.x4{left:444.182667pt;}
.x91{left:447.226667pt;}
.x45{left:453.596000pt;}
.xb{left:454.897333pt;}
.x72{left:466.176000pt;}
.x49{left:478.769333pt;}
.x5b{left:485.316000pt;}
.x4a{left:492.681333pt;}
.x28{left:493.798667pt;}
.x4f{left:498.506667pt;}
.x2c{left:505.666667pt;}
.x4c{left:506.754667pt;}
.x2d{left:511.437333pt;}
.x2e{left:516.689333pt;}
.x7e{left:523.530667pt;}
.x5f{left:533.918667pt;}
.x5c{left:539.749333pt;}
.x2f{left:543.760000pt;}
.x5d{left:545.976000pt;}
.x7f{left:551.438667pt;}
.x4b{left:560.404000pt;}
.x60{left:565.661333pt;}
.x41{left:570.077333pt;}
.x9b{left:573.140000pt;}
.x30{left:574.049333pt;}
.x42{left:577.350667pt;}
.x61{left:585.380000pt;}
.x43{left:587.861333pt;}
.x44{left:595.134667pt;}
.x80{left:600.092000pt;}
.x9c{left:603.753333pt;}
.x62{left:609.978667pt;}
.x24{left:612.386667pt;}
.x63{left:617.250667pt;}
.x25{left:621.305333pt;}
.x29{left:623.349333pt;}
.x64{left:626.138667pt;}
.x65{left:633.412000pt;}
.x69{left:639.045333pt;}
.x6d{left:652.576000pt;}
.x6a{left:653.590667pt;}
.x26{left:661.542667pt;}
.x6b{left:662.706667pt;}
.x6e{left:667.121333pt;}
.x6c{left:677.252000pt;}
.x66{left:703.122667pt;}
.x12{left:710.396000pt;}
.x81{left:716.514667pt;}
}




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