
    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_3cd0d027e63aa47064a49e28.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_ccf60c8ec4668aa1cb7e6cc6.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_de4dfebcb57cd86ee391051c.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_1a45d959bbe8cc4730827239.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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d48e642a54910032fd1657a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;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_a8b4314489efd828c65f2030.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_613eabda9e18752a61bc7a88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.215332;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_17fee1fb9cc6e8acf61436b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_b48058f9de7c99d28f319dfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_6c1e99f1af57e85a5ad83b91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.773000;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_3f521f5ca19d66fd939ea9e3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b6711591e8f5c6072ad63f82.woff2')format("woff");}.fff{font-family:fff;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{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);}
.m1f{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);}
.m29{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m2a{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);}
.m28{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m6{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);}
.m18{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);}
.m1c{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);}
.mb{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);}
.m25{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);}
.m8{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);}
.m1{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);}
.m24{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.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);}
.m13{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m11{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);}
.m9{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);}
.me{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);}
.m16{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);}
.m5{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);}
.m3{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);}
.m23{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m26{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);}
.m22{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);}
.m17{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);}
.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);}
.mf{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);}
.m1a{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);}
.md{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);}
.m20{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);}
.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);}
.ma{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.530000px;}
.v3{vertical-align:-10.488000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.248000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:23.011800px;}
.ls21{letter-spacing:-0.086184px;}
.ls28{letter-spacing:-0.078156px;}
.ls22{letter-spacing:-0.060120px;}
.ls24{letter-spacing:-0.048096px;}
.ls20{letter-spacing:-0.043092px;}
.ls2b{letter-spacing:-0.042084px;}
.ls29{letter-spacing:-0.030060px;}
.ls2c{letter-spacing:-0.024048px;}
.ls23{letter-spacing:-0.018036px;}
.ls26{letter-spacing:-0.012024px;}
.ls2a{letter-spacing:-0.006012px;}
.lsc{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000800px;}
.ls45{letter-spacing:0.001036px;}
.ls47{letter-spacing:0.001155px;}
.ls49{letter-spacing:0.001449px;}
.ls3f{letter-spacing:0.002841px;}
.ls42{letter-spacing:0.004800px;}
.ls1a{letter-spacing:0.006012px;}
.ls10{letter-spacing:0.009576px;}
.ls17{letter-spacing:0.012024px;}
.ls13{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.030060px;}
.ls12{letter-spacing:0.032400px;}
.ls14{letter-spacing:0.036072px;}
.ls15{letter-spacing:0.042084px;}
.ls18{letter-spacing:0.048096px;}
.ls19{letter-spacing:0.060120px;}
.ls1e{letter-spacing:0.066132px;}
.ls25{letter-spacing:0.072144px;}
.ls1d{letter-spacing:0.078156px;}
.ls27{letter-spacing:0.096192px;}
.ls1c{letter-spacing:0.102204px;}
.ls11{letter-spacing:0.181944px;}
.lsf{letter-spacing:0.191520px;}
.ls1b{letter-spacing:0.192384px;}
.ls33{letter-spacing:0.648088px;}
.ls1f{letter-spacing:0.717483px;}
.lsd{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls31{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls32{letter-spacing:2.994600px;}
.ls1{letter-spacing:2.998354px;}
.ls35{letter-spacing:9.415063px;}
.lsb{letter-spacing:11.954850px;}
.ls41{letter-spacing:12.110400px;}
.ls34{letter-spacing:12.374082px;}
.ls4d{letter-spacing:12.440400px;}
.ls48{letter-spacing:13.315514px;}
.ls3c{letter-spacing:13.354482px;}
.ls4b{letter-spacing:13.427277px;}
.ls3d{letter-spacing:13.448400px;}
.ls30{letter-spacing:13.450090px;}
.ls3b{letter-spacing:13.454400px;}
.ls3e{letter-spacing:13.585694px;}
.ls43{letter-spacing:13.616932px;}
.ls44{letter-spacing:13.617202px;}
.lse{letter-spacing:13.999460px;}
.ls6{letter-spacing:14.799390px;}
.ls40{letter-spacing:14.915106px;}
.ls4c{letter-spacing:14.938635px;}
.ls8{letter-spacing:14.944200px;}
.ls2d{letter-spacing:15.003548px;}
.ls7{letter-spacing:15.048499px;}
.ls2f{letter-spacing:15.115227px;}
.ls2e{letter-spacing:15.800435px;}
.lsa{letter-spacing:16.771024px;}
.ls4a{letter-spacing:17.597459px;}
.ls2{letter-spacing:17.935200px;}
.ls9{letter-spacing:20.106318px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.ls37{letter-spacing:114.621360px;}
.ls38{letter-spacing:124.033560px;}
.ls39{letter-spacing:124.037760px;}
.ls36{letter-spacing:124.048351px;}
.ls3a{letter-spacing:169.397760px;}
.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;}
}
.wsa5{word-spacing:-133.463071px;}
.ws9f{word-spacing:-88.121779px;}
.wsaa{word-spacing:-88.104401px;}
.ws6a{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws75{word-spacing:-13.449600px;}
.ws36{word-spacing:-12.161520px;}
.ws1e{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws60{word-spacing:-3.571128px;}
.ws5f{word-spacing:-3.480948px;}
.ws83{word-spacing:-2.749678px;}
.ws34{word-spacing:-2.630126px;}
.wse1{word-spacing:-2.420928px;}
.wsc2{word-spacing:-2.271473px;}
.ws4a{word-spacing:-2.104200px;}
.wsfb{word-spacing:-2.098138px;}
.ws5a{word-spacing:-2.056104px;}
.wse6{word-spacing:-2.044339px;}
.ws5b{word-spacing:-2.032056px;}
.ws5c{word-spacing:-2.014020px;}
.ws3b{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.wsbc{word-spacing:-1.853044px;}
.wse3{word-spacing:-1.349222px;}
.wse2{word-spacing:-1.344960px;}
.ws5{word-spacing:-1.322630px;}
.ws23{word-spacing:-1.315063px;}
.wsb5{word-spacing:-1.255288px;}
.wsc9{word-spacing:-1.237363px;}
.wsc0{word-spacing:-1.135736px;}
.wsc7{word-spacing:-1.129766px;}
.ws100{word-spacing:-1.075968px;}
.ws2b{word-spacing:-1.075961px;}
.ws101{word-spacing:-1.022170px;}
.ws17{word-spacing:-1.016185px;}
.ws2f{word-spacing:-0.956410px;}
.ws84{word-spacing:-0.896634px;}
.wsba{word-spacing:-0.836858px;}
.ws7b{word-spacing:-0.753178px;}
.wsac{word-spacing:-0.717307px;}
.wseb{word-spacing:-0.645581px;}
.wsc1{word-spacing:-0.597756px;}
.wscf{word-spacing:-0.591782px;}
.ws71{word-spacing:-0.537984px;}
.ws8d{word-spacing:-0.484186px;}
.wsb0{word-spacing:-0.358654px;}
.ws59{word-spacing:-0.342684px;}
.ws45{word-spacing:-0.336672px;}
.wsfc{word-spacing:-0.322790px;}
.ws13{word-spacing:-0.298878px;}
.ws72{word-spacing:-0.268992px;}
.ws54{word-spacing:-0.264528px;}
.ws14{word-spacing:-0.239102px;}
.ws8e{word-spacing:-0.215194px;}
.wse{word-spacing:-0.179327px;}
.ws98{word-spacing:-0.161395px;}
.ws1a{word-spacing:-0.119551px;}
.ws99{word-spacing:-0.107597px;}
.ws3c{word-spacing:-0.095760px;}
.ws9{word-spacing:-0.059776px;}
.wsc4{word-spacing:-0.053798px;}
.ws86{word-spacing:-0.028042px;}
.ws74{word-spacing:-0.024086px;}
.wsff{word-spacing:-0.009571px;}
.ws8f{word-spacing:-0.006278px;}
.ws58{word-spacing:-0.006012px;}
.ws73{word-spacing:-0.005558px;}
.ws9c{word-spacing:-0.004885px;}
.ws2{word-spacing:-0.004183px;}
.ws9a{word-spacing:-0.003891px;}
.wsea{word-spacing:-0.003466px;}
.wscd{word-spacing:-0.002822px;}
.ws7d{word-spacing:-0.001603px;}
.ws76{word-spacing:-0.001526px;}
.ws70{word-spacing:-0.001508px;}
.ws87{word-spacing:-0.000901px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.000629px;}
.ws4{word-spacing:0.053798px;}
.wsc{word-spacing:0.059776px;}
.ws57{word-spacing:0.090180px;}
.wsf8{word-spacing:0.107597px;}
.wsf{word-spacing:0.112398px;}
.ws7{word-spacing:0.119551px;}
.ws55{word-spacing:0.138276px;}
.ws44{word-spacing:0.144288px;}
.ws3e{word-spacing:0.151200px;}
.ws3f{word-spacing:0.156312px;}
.ws85{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.wsd2{word-spacing:0.215194px;}
.ws24{word-spacing:0.239102px;}
.wsd3{word-spacing:0.268992px;}
.ws64{word-spacing:0.298878px;}
.wsc6{word-spacing:0.322790px;}
.ws6c{word-spacing:0.358654px;}
.ws42{word-spacing:0.438876px;}
.ws30{word-spacing:0.537980px;}
.ws21{word-spacing:0.597756px;}
.ws29{word-spacing:0.657532px;}
.ws31{word-spacing:0.717307px;}
.ws47{word-spacing:0.721440px;}
.ws6e{word-spacing:0.777083px;}
.ws43{word-spacing:0.799596px;}
.wsec{word-spacing:0.806976px;}
.ws46{word-spacing:0.829656px;}
.ws6f{word-spacing:0.836858px;}
.wsbf{word-spacing:0.956410px;}
.wsd6{word-spacing:0.968371px;}
.wsee{word-spacing:1.075968px;}
.wsd9{word-spacing:1.129766px;}
.ws1c{word-spacing:1.195512px;}
.ws35{word-spacing:1.255288px;}
.wsb9{word-spacing:1.315063px;}
.ws7f{word-spacing:1.338977px;}
.ws102{word-spacing:1.452557px;}
.ws8{word-spacing:1.494390px;}
.wsfa{word-spacing:1.506355px;}
.ws2a{word-spacing:1.554166px;}
.wsed{word-spacing:1.667750px;}
.ws1f{word-spacing:1.673717px;}
.ws20{word-spacing:1.733492px;}
.wsb1{word-spacing:1.793268px;}
.ws12{word-spacing:1.853044px;}
.wse7{word-spacing:1.882944px;}
.wsb4{word-spacing:1.912819px;}
.wsf6{word-spacing:1.936742px;}
.ws82{word-spacing:2.104106px;}
.wsdd{word-spacing:2.205734px;}
.wsbd{word-spacing:2.271473px;}
.wsb8{word-spacing:2.331248px;}
.ws11{word-spacing:2.354508px;}
.ws39{word-spacing:2.450800px;}
.ws6d{word-spacing:2.510575px;}
.ws28{word-spacing:2.570351px;}
.wse9{word-spacing:2.689920px;}
.ws2d{word-spacing:2.809453px;}
.ws6b{word-spacing:2.869229px;}
.ws5e{word-spacing:2.915820px;}
.ws53{word-spacing:2.969928px;}
.wsb6{word-spacing:2.988780px;}
.ws5d{word-spacing:2.993976px;}
.wsbe{word-spacing:3.048556px;}
.wscb{word-spacing:3.066509px;}
.wsde{word-spacing:3.120307px;}
.wsdf{word-spacing:3.174106px;}
.wse0{word-spacing:3.218141px;}
.wsfe{word-spacing:3.220608px;}
.wsf5{word-spacing:3.220877px;}
.wsd5{word-spacing:3.222806px;}
.wse5{word-spacing:3.223066px;}
.wsc5{word-spacing:3.224822px;}
.wsd1{word-spacing:3.225533px;}
.wsc8{word-spacing:3.226963px;}
.wsf1{word-spacing:3.227837px;}
.wsca{word-spacing:3.227904px;}
.wsd4{word-spacing:3.229459px;}
.wsd7{word-spacing:3.230333px;}
.wsf2{word-spacing:3.281702px;}
.ws1b{word-spacing:3.347434px;}
.wsbb{word-spacing:3.407209px;}
.wsce{word-spacing:3.443098px;}
.ws3a{word-spacing:3.466985px;}
.ws15{word-spacing:3.583475px;}
.ws16{word-spacing:3.586536px;}
.wse4{word-spacing:3.604493px;}
.wsf4{word-spacing:3.819686px;}
.ws26{word-spacing:3.825638px;}
.ws25{word-spacing:3.885414px;}
.wse8{word-spacing:4.034880px;}
.ws2e{word-spacing:4.064741px;}
.ws56{word-spacing:4.070124px;}
.wsd8{word-spacing:4.088678px;}
.wsf3{word-spacing:4.142477px;}
.ws48{word-spacing:4.382748px;}
.wsf7{word-spacing:4.411469px;}
.wsb3{word-spacing:4.423394px;}
.ws80{word-spacing:4.447316px;}
.ws81{word-spacing:4.495136px;}
.ws69{word-spacing:4.542946px;}
.wsd0{word-spacing:4.788058px;}
.ws8c{word-spacing:4.841824px;}
.ws49{word-spacing:4.857696px;}
.wsdc{word-spacing:4.949453px;}
.ws68{word-spacing:5.021150px;}
.ws40{word-spacing:5.140260px;}
.ws10{word-spacing:5.140702px;}
.ws41{word-spacing:5.158296px;}
.ws18{word-spacing:5.260253px;}
.ws19{word-spacing:5.320028px;}
.wscc{word-spacing:5.326042px;}
.wsf0{word-spacing:5.433638px;}
.ws27{word-spacing:5.499355px;}
.ws67{word-spacing:5.738458px;}
.wsc3{word-spacing:5.917784px;}
.wsd{word-spacing:5.977560px;}
.ws8b{word-spacing:6.037336px;}
.ws38{word-spacing:6.156887px;}
.ws4f{word-spacing:6.168312px;}
.wsdb{word-spacing:6.455808px;}
.ws37{word-spacing:6.515540px;}
.ws65{word-spacing:6.635092px;}
.wsab{word-spacing:6.754643px;}
.ws32{word-spacing:6.874194px;}
.wsf9{word-spacing:7.101389px;}
.ws61{word-spacing:7.304580px;}
.ws62{word-spacing:7.617204px;}
.wsef{word-spacing:7.693171px;}
.wsfd{word-spacing:8.392550px;}
.wsad{word-spacing:8.488135px;}
.ws3d{word-spacing:9.097200px;}
.ws63{word-spacing:10.042301px;}
.wsaf{word-spacing:10.998710px;}
.ws2c{word-spacing:11.835569px;}
.ws66{word-spacing:11.895344px;}
.wsa{word-spacing:12.074671px;}
.ws8a{word-spacing:12.194222px;}
.wsae{word-spacing:13.389734px;}
.wsb{word-spacing:14.465695px;}
.wsda{word-spacing:15.655334px;}
.wsb7{word-spacing:16.378514px;}
.wsb2{word-spacing:16.438290px;}
.ws50{word-spacing:18.042012px;}
.ws51{word-spacing:18.120168px;}
.ws52{word-spacing:19.178280px;}
.ws33{word-spacing:19.247743px;}
.ws4b{word-spacing:28.875636px;}
.ws4e{word-spacing:32.494860px;}
.ws4d{word-spacing:32.873616px;}
.ws4c{word-spacing:32.897664px;}
.ws9e{word-spacing:105.210000px;}
.ws9b{word-spacing:105.605049px;}
.wsa0{word-spacing:110.912599px;}
.ws9d{word-spacing:112.472526px;}
.wsa4{word-spacing:114.595972px;}
.wsa2{word-spacing:114.612449px;}
.wsa3{word-spacing:114.633631px;}
.ws88{word-spacing:114.827305px;}
.ws89{word-spacing:114.876799px;}
.wsa1{word-spacing:125.036359px;}
.wsa9{word-spacing:129.555290px;}
.wsa6{word-spacing:136.012686px;}
.wsa7{word-spacing:139.155919px;}
.wsa8{word-spacing:159.974922px;}
.ws78{word-spacing:265.333709px;}
.ws79{word-spacing:265.387507px;}
.ws7c{word-spacing:268.185024px;}
.ws77{word-spacing:281.688422px;}
.ws7e{word-spacing:295.084224px;}
.ws91{word-spacing:503.768218px;}
.ws7a{word-spacing:509.686042px;}
.ws93{word-spacing:517.217818px;}
.ws90{word-spacing:519.477350px;}
.ws92{word-spacing:523.942618px;}
.ws94{word-spacing:537.392218px;}
.ws95{word-spacing:553.101350px;}
.ws96{word-spacing:557.566618px;}
.ws97{word-spacing:584.842406px;}
._58{margin-left:-124.123668px;}
._5e{margin-left:-7.693171px;}
._0{margin-left:-6.635092px;}
._3{margin-left:-5.164646px;}
._4{margin-left:-3.981082px;}
._7{margin-left:-2.047382px;}
._2{margin-left:-1.022170px;}
._8{width:1.091170px;}
._1{width:2.970452px;}
._1d{width:5.335040px;}
._18{width:10.476638px;}
._1a{width:12.213978px;}
._17{width:13.404746px;}
._62{width:14.410118px;}
._5{width:15.709133px;}
._6{width:17.645875px;}
._9{width:19.047597px;}
._14{width:20.718188px;}
._c{width:21.768968px;}
._5d{width:23.013606px;}
._d{width:24.448220px;}
._1b{width:26.420815px;}
._13{width:28.169319px;}
._e{width:29.170493px;}
._11{width:30.605107px;}
._5a{width:31.681068px;}
._a{width:33.907777px;}
._1e{width:35.249705px;}
._5f{width:36.269626px;}
._b{width:37.852966px;}
._15{width:39.571447px;}
._61{width:42.354000px;}
._1c{width:49.031004px;}
._5b{width:52.124323px;}
._12{width:55.313426px;}
._5c{width:68.954178px;}
._43{width:73.449880px;}
._44{width:75.528650px;}
._16{width:77.513942px;}
._3f{width:78.745794px;}
._40{width:82.259906px;}
._20{width:89.016970px;}
._42{width:92.752745px;}
._53{width:96.464835px;}
._1f{width:101.332032px;}
._41{width:104.482949px;}
._47{width:114.876799px;}
._52{width:116.955570px;}
._48{width:127.250431px;}
._51{width:161.599634px;}
._50{width:165.361218px;}
._59{width:169.335506px;}
._4f{width:180.803511px;}
._23{width:186.895642px;}
._25{width:203.196557px;}
._4c{width:216.192098px;}
._46{width:219.260759px;}
._45{width:225.398081px;}
._4a{width:234.059623px;}
._4e{width:235.395975px;}
._49{width:246.428951px;}
._24{width:255.857482px;}
._21{width:267.741821px;}
._2e{width:278.837107px;}
._4b{width:293.750024px;}
._28{width:295.138022px;}
._4d{width:306.177454px;}
._3a{width:308.587622px;}
._22{width:339.306509px;}
._54{width:360.610675px;}
._57{width:378.321024px;}
._36{width:509.686042px;}
._27{width:523.081843px;}
._2d{width:530.129434px;}
._31{width:536.531443px;}
._38{width:549.807475px;}
._55{width:571.392806px;}
._56{width:598.345805px;}
._3c{width:610.076899px;}
._39{width:619.327181px;}
._2c{width:640.792742px;}
._2f{width:648.593510px;}
._3b{width:661.074739px;}
._30{width:667.853338px;}
._3d{width:671.780621px;}
._37{width:683.401075px;}
._26{width:709.009114px;}
._2b{width:724.825843px;}
._2a{width:731.012659px;}
._34{width:732.088627px;}
._35{width:752.585818px;}
._33{width:772.276032px;}
._f{width:906.342032px;}
._3e{width:955.213002px;}
._32{width:1268.138928px;}
._29{width:1502.257670px;}
._19{width:1625.320116px;}
._60{width:2025.345000px;}
._10{width:2049.255000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fse{font-size:35.865600px;}
.fs10{font-size:37.658880px;}
.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;}
.fs9{font-size:47.880000px;}
.fsf{font-size:49.494528px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y64{bottom:-537.721050px;}
.y7b{bottom:-500.548746px;}
.y7a{bottom:-480.298827px;}
.y79{bottom:-460.048908px;}
.y78{bottom:-439.798989px;}
.y77{bottom:-410.549106px;}
.y76{bottom:-372.299259px;}
.y75{bottom:-352.139520px;}
.y74{bottom:-331.889601px;}
.y73{bottom:-311.639682px;}
.y72{bottom:-291.389763px;}
.y71{bottom:-271.139844px;}
.y70{bottom:-250.889925px;}
.y6f{bottom:-230.640006px;}
.y6e{bottom:-210.480267px;}
.y6d{bottom:-190.230348px;}
.y6c{bottom:-169.980429px;}
.y6b{bottom:-149.730510px;}
.y6a{bottom:-129.480591px;}
.y69{bottom:-109.230672px;}
.y68{bottom:-88.980753px;}
.y67{bottom:-59.821050px;}
.y66{bottom:-22.021050px;}
.y0{bottom:0.000000px;}
.y65{bottom:2.458950px;}
.y18{bottom:3.425340px;}
.y17{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y31{bottom:63.780000px;}
.y11c{bottom:111.238500px;}
.y30{bottom:114.499500px;}
.y190{bottom:115.710000px;}
.y61{bottom:122.314500px;}
.y13e{bottom:123.121500px;}
.yb4{bottom:130.354500px;}
.y11b{bottom:131.502000px;}
.yeb{bottom:131.898000px;}
.y2f{bottom:134.763000px;}
.y18f{bottom:135.078000px;}
.y15b{bottom:140.218500px;}
.y60{bottom:142.579500px;}
.y13d{bottom:143.386500px;}
.y18d{bottom:147.691500px;}
.yb3{bottom:150.619500px;}
.yea{bottom:152.971860px;}
.y18e{bottom:154.444500px;}
.y2e{bottom:155.026500px;}
.y15a{bottom:159.586500px;}
.y11a{bottom:160.732500px;}
.y5f{bottom:162.843000px;}
.y13c{bottom:163.650000px;}
.y18c{bottom:167.059500px;}
.ye9{bottom:168.164280px;}
.yb2{bottom:170.883000px;}
.y87{bottom:174.043500px;}
.y2d{bottom:175.291500px;}
.y159{bottom:178.953000px;}
.y5e{bottom:183.108000px;}
.ye8{bottom:183.356700px;}
.y13b{bottom:183.913500px;}
.y18b{bottom:186.427500px;}
.yb1{bottom:191.148000px;}
.y86{bottom:194.307000px;}
.y2c{bottom:195.555000px;}
.y158{bottom:198.321000px;}
.ye7{bottom:198.549120px;}
.y119{bottom:201.641550px;}
.y5d{bottom:203.371500px;}
.y13a{bottom:204.178500px;}
.y18a{bottom:205.794000px;}
.yb0{bottom:211.411500px;}
.y118{bottom:213.148500px;}
.ye6{bottom:213.740160px;}
.y85{bottom:214.570500px;}
.y2b{bottom:215.820000px;}
.y157{bottom:217.689000px;}
.y5c{bottom:223.635000px;}
.y139{bottom:224.442000px;}
.y117{bottom:224.654400px;}
.y189{bottom:225.162000px;}
.ye5{bottom:228.932580px;}
.yaf{bottom:231.675000px;}
.y84{bottom:234.835500px;}
.y116{bottom:236.161350px;}
.y156{bottom:237.055500px;}
.y5b{bottom:243.900000px;}
.ye4{bottom:244.125000px;}
.y188{bottom:244.528500px;}
.y138{bottom:244.707000px;}
.y2a{bottom:245.049000px;}
.y115{bottom:247.668300px;}
.yae{bottom:251.940000px;}
.y83{bottom:255.099000px;}
.y155{bottom:256.423500px;}
.y114{bottom:259.175250px;}
.ye3{bottom:259.317420px;}
.y187{bottom:263.896500px;}
.y5a{bottom:264.163500px;}
.y137{bottom:264.970500px;}
.y113{bottom:270.682200px;}
.yad{bottom:272.203500px;}
.y82{bottom:275.362500px;}
.y154{bottom:275.790000px;}
.ye2{bottom:281.135220px;}
.y112{bottom:282.189150px;}
.y186{bottom:283.264500px;}
.y136{bottom:285.234000px;}
.yac{bottom:292.468500px;}
.y59{bottom:293.394000px;}
.y111{bottom:293.696100px;}
.y153{bottom:295.158000px;}
.y81{bottom:295.627500px;}
.y185{bottom:302.631000px;}
.ye1{bottom:302.953020px;}
.y110{bottom:305.203050px;}
.y135{bottom:305.499000px;}
.yab{bottom:312.732000px;}
.y152{bottom:314.526000px;}
.y80{bottom:315.891000px;}
.y10f{bottom:316.710000px;}
.y29{bottom:321.457500px;}
.y184{bottom:321.999000px;}
.y134{bottom:325.762500px;}
.y58{bottom:328.213500px;}
.y10e{bottom:328.216950px;}
.yaa{bottom:332.995500px;}
.y103{bottom:333.199200px;}
.ye0{bottom:333.222000px;}
.y151{bottom:333.892500px;}
.y10d{bottom:339.723900px;}
.y183{bottom:341.367000px;}
.y7f{bottom:345.121500px;}
.y133{bottom:346.027500px;}
.y57{bottom:348.478500px;}
.y10c{bottom:351.229800px;}
.ydf{bottom:352.455000px;}
.ya9{bottom:353.260500px;}
.y28{bottom:359.655000px;}
.y182{bottom:360.733500px;}
.y10b{bottom:362.736750px;}
.y132{bottom:366.291000px;}
.y56{bottom:368.742000px;}
.y150{bottom:372.627000px;}
.ya8{bottom:373.524000px;}
.y10a{bottom:374.243700px;}
.y27{bottom:379.918500px;}
.y7e{bottom:379.941000px;}
.y181{bottom:380.101500px;}
.y109{bottom:385.750650px;}
.y131{bottom:386.554500px;}
.y55{bottom:389.005500px;}
.yde{bottom:389.559000px;}
.y14f{bottom:391.995000px;}
.ya7{bottom:393.789000px;}
.y108{bottom:397.257600px;}
.y180{bottom:399.468000px;}
.y26{bottom:400.183500px;}
.y7d{bottom:400.206000px;}
.y130{bottom:406.819500px;}
.y107{bottom:408.764550px;}
.y54{bottom:409.270500px;}
.ydd{bottom:409.822500px;}
.y14e{bottom:411.363000px;}
.ya6{bottom:414.052500px;}
.y17f{bottom:418.836000px;}
.y106{bottom:420.271500px;}
.y25{bottom:420.447000px;}
.y12f{bottom:427.083000px;}
.y53{bottom:429.534000px;}
.ydc{bottom:430.087500px;}
.y105{bottom:431.778450px;}
.ya5{bottom:434.316000px;}
.y7c{bottom:435.205500px;}
.y17e{bottom:438.204000px;}
.y14d{bottom:439.696500px;}
.y24{bottom:440.712000px;}
.y104{bottom:443.285400px;}
.y12e{bottom:447.348000px;}
.y52{bottom:449.799000px;}
.ydb{bottom:450.351000px;}
.ya4{bottom:454.581000px;}
.y17d{bottom:457.570500px;}
.y62{bottom:457.635000px;}
.y101{bottom:459.833400px;}
.y23{bottom:460.975500px;}
.y100{bottom:465.587400px;}
.y12d{bottom:467.611500px;}
.y51{bottom:470.062500px;}
.yda{bottom:470.616000px;}
.y102{bottom:471.340350px;}
.ya3{bottom:474.844500px;}
.y17c{bottom:476.938500px;}
.y14c{bottom:479.148000px;}
.y22{bottom:481.239000px;}
.y12c{bottom:487.875000px;}
.yff{bottom:487.940850px;}
.y50{bottom:490.326000px;}
.yd9{bottom:490.879500px;}
.ya2{bottom:495.109500px;}
.y17b{bottom:496.305000px;}
.y21{bottom:501.504000px;}
.y14b{bottom:503.313000px;}
.y12b{bottom:508.140000px;}
.y4f{bottom:510.591000px;}
.yd8{bottom:511.143000px;}
.yfe{bottom:514.495500px;}
.ya1{bottom:515.373000px;}
.y17a{bottom:515.673000px;}
.y20{bottom:521.767500px;}
.y14a{bottom:527.478000px;}
.y12a{bottom:528.403500px;}
.y4e{bottom:530.854500px;}
.yfd{bottom:533.728500px;}
.y179{bottom:535.041000px;}
.ya0{bottom:535.636500px;}
.y1f{bottom:542.032500px;}
.y149{bottom:542.676000px;}
.y129{bottom:548.667000px;}
.y4d{bottom:551.119500px;}
.yfc{bottom:552.961500px;}
.yd7{bottom:554.272500px;}
.y178{bottom:554.407500px;}
.y148{bottom:557.874000px;}
.y1e{bottom:562.296000px;}
.y9f{bottom:564.867000px;}
.yd5{bottom:568.468500px;}
.y128{bottom:568.932000px;}
.y63{bottom:569.368950px;}
.y4c{bottom:571.383000px;}
.yd6{bottom:572.808000px;}
.y147{bottom:573.072000px;}
.y177{bottom:573.775500px;}
.y1d{bottom:582.559500px;}
.yd3{bottom:582.666000px;}
.yd4{bottom:587.005500px;}
.y127{bottom:589.195500px;}
.y4b{bottom:591.646500px;}
.y176{bottom:593.142000px;}
.yfb{bottom:594.625500px;}
.yd2{bottom:596.862000px;}
.y9e{bottom:599.686500px;}
.yd1{bottom:601.201500px;}
.y1c{bottom:602.824500px;}
.y146{bottom:606.202500px;}
.y126{bottom:609.460500px;}
.yfa{bottom:611.139000px;}
.y4a{bottom:611.911500px;}
.y175{bottom:612.510000px;}
.yd0{bottom:618.637500px;}
.y1b{bottom:623.088000px;}
.y145{bottom:626.466000px;}
.yf9{bottom:627.652500px;}
.y125{bottom:629.724000px;}
.y174{bottom:631.878000px;}
.y49{bottom:632.175000px;}
.y9d{bottom:634.506000px;}
.ycf{bottom:635.151000px;}
.y1a{bottom:643.353000px;}
.yf8{bottom:644.164500px;}
.y144{bottom:646.731000px;}
.y124{bottom:649.987500px;}
.y173{bottom:651.244500px;}
.yce{bottom:651.664500px;}
.y48{bottom:652.438500px;}
.y9c{bottom:654.771000px;}
.yf7{bottom:660.678000px;}
.y19{bottom:663.616500px;}
.y143{bottom:666.994500px;}
.ycd{bottom:668.178000px;}
.y123{bottom:670.252500px;}
.y172{bottom:670.612500px;}
.y47{bottom:672.703500px;}
.y9b{bottom:675.034500px;}
.yf6{bottom:677.191500px;}
.ycc{bottom:684.690000px;}
.y142{bottom:687.258000px;}
.y171{bottom:689.979000px;}
.y122{bottom:690.516000px;}
.y46{bottom:692.967000px;}
.yf5{bottom:693.705000px;}
.y16{bottom:699.048055px;}
.y15{bottom:699.442500px;}
.ycb{bottom:701.128500px;}
.y9a{bottom:704.265000px;}
.y141{bottom:707.523000px;}
.y170{bottom:709.347000px;}
.yf4{bottom:710.217000px;}
.y121{bottom:710.781000px;}
.y45{bottom:713.232000px;}
.yca{bottom:718.267500px;}
.yf3{bottom:726.730500px;}
.y140{bottom:727.786500px;}
.y16f{bottom:728.715000px;}
.y120{bottom:731.044500px;}
.yc7{bottom:734.704500px;}
.yc9{bottom:735.018000px;}
.y14{bottom:738.814500px;}
.y99{bottom:739.084500px;}
.yc8{bottom:739.587000px;}
.y44{bottom:742.462500px;}
.yf2{bottom:743.244000px;}
.y16e{bottom:748.081500px;}
.y11f{bottom:751.308000px;}
.yc6{bottom:751.843500px;}
.y13{bottom:756.970500px;}
.y13f{bottom:757.017000px;}
.y98{bottom:759.349500px;}
.yf1{bottom:759.757500px;}
.y16d{bottom:767.449500px;}
.yc5{bottom:768.355500px;}
.y11e{bottom:771.573000px;}
.yf0{bottom:776.269500px;}
.y43{bottom:777.282000px;}
.y97{bottom:779.613000px;}
.y12{bottom:780.010500px;}
.yc4{bottom:784.869000px;}
.y16c{bottom:786.816000px;}
.y11d{bottom:791.836500px;}
.yef{bottom:792.783000px;}
.y11{bottom:798.168000px;}
.y96{bottom:799.876500px;}
.yc3{bottom:801.382500px;}
.y16b{bottom:806.184000px;}
.y10{bottom:811.441500px;}
.y42{bottom:812.101500px;}
.yee{bottom:816.498000px;}
.yc2{bottom:817.896000px;}
.y16a{bottom:825.552000px;}
.y95{bottom:829.107000px;}
.y41{bottom:832.365000px;}
.yc1{bottom:834.408000px;}
.yf{bottom:834.481500px;}
.y169{bottom:844.918500px;}
.yed{bottom:848.118000px;}
.yc0{bottom:850.921500px;}
.y40{bottom:852.628500px;}
.ye{bottom:852.639000px;}
.y94{bottom:863.926500px;}
.y168{bottom:864.286500px;}
.yec{bottom:867.351000px;}
.ybf{bottom:867.435000px;}
.yd{bottom:870.795000px;}
.y3f{bottom:872.893500px;}
.y167{bottom:883.653000px;}
.ybe{bottom:883.873500px;}
.yc{bottom:884.070000px;}
.y93{bottom:884.191500px;}
.y3e{bottom:893.157000px;}
.ybd{bottom:901.011000px;}
.yb{bottom:902.227500px;}
.y166{bottom:903.021000px;}
.y92{bottom:904.455000px;}
.y3d{bottom:913.422000px;}
.ybc{bottom:917.524500px;}
.ya{bottom:920.383500px;}
.y165{bottom:922.389000px;}
.y90{bottom:924.718500px;}
.y9{bottom:925.266000px;}
.y91{bottom:930.144000px;}
.y3c{bottom:933.685500px;}
.ybb{bottom:933.963000px;}
.y164{bottom:941.755500px;}
.y8f{bottom:944.983500px;}
.y8{bottom:947.508000px;}
.yba{bottom:951.100500px;}
.y3b{bottom:953.949000px;}
.y163{bottom:961.123500px;}
.y8e{bottom:965.247000px;}
.yb9{bottom:967.612500px;}
.y7{bottom:967.771500px;}
.y3a{bottom:974.214000px;}
.y162{bottom:980.490000px;}
.yb8{bottom:984.126000px;}
.y8d{bottom:985.512000px;}
.y39{bottom:994.477500px;}
.y161{bottom:999.858000px;}
.y8c{bottom:1005.775500px;}
.yb7{bottom:1007.842500px;}
.y6{bottom:1010.451000px;}
.y38{bottom:1014.742500px;}
.y160{bottom:1019.226000px;}
.y8b{bottom:1026.039000px;}
.y37{bottom:1035.006000px;}
.y15f{bottom:1038.592500px;}
.yb6{bottom:1039.461000px;}
.y5{bottom:1040.848500px;}
.y8a{bottom:1046.304000px;}
.y36{bottom:1055.269500px;}
.y15e{bottom:1057.960500px;}
.yb5{bottom:1058.694000px;}
.y89{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y15d{bottom:1077.327000px;}
.y88{bottom:1086.832500px;}
.y34{bottom:1095.798000px;}
.y15c{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y33{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h1f{height:27.114394px;}
.hc{height:33.112997px;}
.h1b{height:33.821261px;}
.hb{height:34.199443px;}
.h21{height:35.512324px;}
.h1c{height:35.636060px;}
.h12{height:35.991211px;}
.h18{height:38.734848px;}
.h8{height:39.457760px;}
.h1e{height:39.488026px;}
.h16{height:39.614278px;}
.h17{height:42.840113px;}
.hd{height:43.038432px;}
.h15{height:43.269961px;}
.h4{height:43.875290px;}
.h11{height:44.723848px;}
.hf{height:45.094826px;}
.h1d{height:46.673340px;}
.h20{height:50.126194px;}
.h14{height:50.440430px;}
.h9{height:50.731891px;}
.h2{height:50.931027px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h13{height:56.157012px;}
.he{height:56.368391px;}
.h22{height:58.524124px;}
.h23{height:58.528324px;}
.h19{height:58.981760px;}
.h1a{height:58.987760px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h10{height:553.731000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w4{width:521.107500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x27{left:-68.020500px;}
.x2a{left:-36.160606px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:58.056593px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x4{left:146.086500px;}
.x3c{left:147.147000px;}
.x38{left:150.762000px;}
.x41{left:155.293500px;}
.x29{left:166.069500px;}
.x73{left:178.057650px;}
.x79{left:184.833000px;}
.x26{left:185.904000px;}
.xb{left:187.366500px;}
.x8{left:188.368500px;}
.x43{left:192.753000px;}
.xc{left:194.838000px;}
.x3a{left:197.316000px;}
.x15{left:198.414000px;}
.x4d{left:200.365500px;}
.xd{left:202.459500px;}
.x3e{left:204.330000px;}
.x16{left:205.885500px;}
.x39{left:208.386000px;}
.xe{left:209.931000px;}
.x5d{left:212.067000px;}
.x4e{left:215.295000px;}
.x17{left:217.168500px;}
.x4c{left:218.943000px;}
.x42{left:220.654500px;}
.x44{left:222.369000px;}
.x45{left:223.815000px;}
.x54{left:225.888600px;}
.x7d{left:228.675000px;}
.x4b{left:231.306000px;}
.x77{left:232.941000px;}
.x3d{left:237.466500px;}
.x40{left:241.594500px;}
.x3f{left:242.967000px;}
.x47{left:248.367000px;}
.x5c{left:252.207000px;}
.x46{left:253.228500px;}
.x89{left:255.835500px;}
.x5b{left:257.134560px;}
.x5e{left:258.373500px;}
.x85{left:260.505000px;}
.x5a{left:262.217100px;}
.x24{left:264.670500px;}
.x75{left:267.339150px;}
.x60{left:268.755600px;}
.x76{left:270.869250px;}
.x74{left:271.872000px;}
.x59{left:274.318320px;}
.x86{left:275.448000px;}
.x58{left:278.178180px;}
.x25{left:279.615000px;}
.x56{left:287.025360px;}
.x57{left:291.826380px;}
.x61{left:315.854400px;}
.x7e{left:342.477000px;}
.x2b{left:349.594500px;}
.x62{left:354.145800px;}
.x55{left:357.935280px;}
.x48{left:366.952500px;}
.x49{left:372.930000px;}
.x64{left:388.074450px;}
.x63{left:389.862600px;}
.x1c{left:395.826000px;}
.x50{left:396.909000px;}
.x87{left:403.678500px;}
.x51{left:406.327500px;}
.x1d{left:410.770500px;}
.x3b{left:413.830500px;}
.x1e{left:418.116000px;}
.x66{left:421.840350px;}
.x65{left:425.579400px;}
.x1f{left:433.059000px;}
.x68{left:459.507000px;}
.x67{left:461.296200px;}
.x5f{left:470.590800px;}
.x4a{left:475.617000px;}
.x6a{left:495.223800px;}
.x69{left:497.011950px;}
.x13{left:514.866000px;}
.x28{left:516.799500px;}
.x20{left:521.172000px;}
.x14{left:522.339000px;}
.x21{left:528.645000px;}
.x22{left:532.455000px;}
.x6b{left:533.684250px;}
.x7f{left:536.727000px;}
.x23{left:547.399500px;}
.x80{left:551.671500px;}
.x92{left:559.509000px;}
.x6c{left:568.445550px;}
.x6d{left:570.187500px;}
.x4f{left:585.649500px;}
.x88{left:590.170500px;}
.x2e{left:593.598000px;}
.x8c{left:597.522000px;}
.x30{left:601.684500px;}
.x96{left:602.865000px;}
.x6e{left:604.162350px;}
.x52{left:606.423000px;}
.x2f{left:608.542500px;}
.x81{left:613.077000px;}
.x53{left:615.235500px;}
.x31{left:616.629000px;}
.x8d{left:624.421500px;}
.x18{left:628.131000px;}
.x97{left:629.763000px;}
.x82{left:631.831500px;}
.x9{left:635.937000px;}
.x6f{left:639.878100px;}
.x70{left:641.620050px;}
.x19{left:643.074000px;}
.x2c{left:647.332500px;}
.x1a{left:650.695500px;}
.x32{left:655.204500px;}
.x2d{left:662.277000px;}
.x1b{left:665.640000px;}
.x33{left:670.147500px;}
.x95{left:672.567000px;}
.x83{left:677.370000px;}
.x71{left:679.657350px;}
.x72{left:684.708900px;}
.xa{left:686.088000px;}
.x8e{left:691.005000px;}
.x7a{left:696.861000px;}
.x84{left:699.643500px;}
.x6{left:701.339982px;}
.x7b{left:711.805500px;}
.x36{left:714.189000px;}
.x8f{left:717.904500px;}
.x8a{left:723.259500px;}
.x90{left:728.512500px;}
.x7c{left:734.782500px;}
.x93{left:735.963000px;}
.x37{left:738.144000px;}
.xf{left:749.274000px;}
.x91{left:755.410500px;}
.x10{left:756.745500px;}
.x34{left:758.197500px;}
.x94{left:762.862500px;}
.x11{left:764.367000px;}
.x35{left:770.488500px;}
.x12{left:771.838500px;}
.x78{left:773.113500px;}
.x8b{left:776.392500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-9.322667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.109333pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:20.454933pt;}
.ls21{letter-spacing:-0.076608pt;}
.ls28{letter-spacing:-0.069472pt;}
.ls22{letter-spacing:-0.053440pt;}
.ls24{letter-spacing:-0.042752pt;}
.ls20{letter-spacing:-0.038304pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls29{letter-spacing:-0.026720pt;}
.ls2c{letter-spacing:-0.021376pt;}
.ls23{letter-spacing:-0.016032pt;}
.ls26{letter-spacing:-0.010688pt;}
.ls2a{letter-spacing:-0.005344pt;}
.lsc{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000711pt;}
.ls45{letter-spacing:0.000921pt;}
.ls47{letter-spacing:0.001026pt;}
.ls49{letter-spacing:0.001288pt;}
.ls3f{letter-spacing:0.002525pt;}
.ls42{letter-spacing:0.004267pt;}
.ls1a{letter-spacing:0.005344pt;}
.ls10{letter-spacing:0.008512pt;}
.ls17{letter-spacing:0.010688pt;}
.ls13{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.026720pt;}
.ls12{letter-spacing:0.028800pt;}
.ls14{letter-spacing:0.032064pt;}
.ls15{letter-spacing:0.037408pt;}
.ls18{letter-spacing:0.042752pt;}
.ls19{letter-spacing:0.053440pt;}
.ls1e{letter-spacing:0.058784pt;}
.ls25{letter-spacing:0.064128pt;}
.ls1d{letter-spacing:0.069472pt;}
.ls27{letter-spacing:0.085504pt;}
.ls1c{letter-spacing:0.090848pt;}
.ls11{letter-spacing:0.161728pt;}
.lsf{letter-spacing:0.170240pt;}
.ls1b{letter-spacing:0.171008pt;}
.ls33{letter-spacing:0.576078pt;}
.ls1f{letter-spacing:0.637762pt;}
.lsd{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls31{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls32{letter-spacing:2.661867pt;}
.ls1{letter-spacing:2.665203pt;}
.ls35{letter-spacing:8.368945pt;}
.lsb{letter-spacing:10.626533pt;}
.ls41{letter-spacing:10.764800pt;}
.ls34{letter-spacing:10.999184pt;}
.ls4d{letter-spacing:11.058133pt;}
.ls48{letter-spacing:11.836012pt;}
.ls3c{letter-spacing:11.870650pt;}
.ls4b{letter-spacing:11.935357pt;}
.ls3d{letter-spacing:11.954133pt;}
.ls30{letter-spacing:11.955635pt;}
.ls3b{letter-spacing:11.959467pt;}
.ls3e{letter-spacing:12.076173pt;}
.ls43{letter-spacing:12.103940pt;}
.ls44{letter-spacing:12.104179pt;}
.lse{letter-spacing:12.443965pt;}
.ls6{letter-spacing:13.155013pt;}
.ls40{letter-spacing:13.257872pt;}
.ls4c{letter-spacing:13.278787pt;}
.ls8{letter-spacing:13.283733pt;}
.ls2d{letter-spacing:13.336487pt;}
.ls7{letter-spacing:13.376444pt;}
.ls2f{letter-spacing:13.435758pt;}
.ls2e{letter-spacing:14.044831pt;}
.lsa{letter-spacing:14.907576pt;}
.ls4a{letter-spacing:15.642186pt;}
.ls2{letter-spacing:15.942400pt;}
.ls9{letter-spacing:17.872282pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ls37{letter-spacing:101.885653pt;}
.ls38{letter-spacing:110.252053pt;}
.ls39{letter-spacing:110.255787pt;}
.ls36{letter-spacing:110.265201pt;}
.ls3a{letter-spacing:150.575787pt;}
.wsa5{word-spacing:-118.633841pt;}
.ws9f{word-spacing:-78.330470pt;}
.wsaa{word-spacing:-78.315023pt;}
.ws6a{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws75{word-spacing:-11.955200pt;}
.ws36{word-spacing:-10.810240pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws60{word-spacing:-3.174336pt;}
.ws5f{word-spacing:-3.094176pt;}
.ws83{word-spacing:-2.444158pt;}
.ws34{word-spacing:-2.337890pt;}
.wse1{word-spacing:-2.151936pt;}
.wsc2{word-spacing:-2.019087pt;}
.ws4a{word-spacing:-1.870400pt;}
.wsfb{word-spacing:-1.865011pt;}
.ws5a{word-spacing:-1.827648pt;}
.wse6{word-spacing:-1.817190pt;}
.ws5b{word-spacing:-1.806272pt;}
.ws5c{word-spacing:-1.790240pt;}
.ws3b{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.wsbc{word-spacing:-1.647150pt;}
.wse3{word-spacing:-1.199309pt;}
.wse2{word-spacing:-1.195520pt;}
.ws5{word-spacing:-1.175671pt;}
.ws23{word-spacing:-1.168945pt;}
.wsb5{word-spacing:-1.115811pt;}
.wsc9{word-spacing:-1.099878pt;}
.wsc0{word-spacing:-1.009543pt;}
.wsc7{word-spacing:-1.004237pt;}
.ws100{word-spacing:-0.956416pt;}
.ws2b{word-spacing:-0.956410pt;}
.ws101{word-spacing:-0.908595pt;}
.ws17{word-spacing:-0.903276pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws84{word-spacing:-0.797008pt;}
.wsba{word-spacing:-0.743874pt;}
.ws7b{word-spacing:-0.669491pt;}
.wsac{word-spacing:-0.637606pt;}
.wseb{word-spacing:-0.573850pt;}
.wsc1{word-spacing:-0.531339pt;}
.wscf{word-spacing:-0.526029pt;}
.ws71{word-spacing:-0.478208pt;}
.ws8d{word-spacing:-0.430387pt;}
.wsb0{word-spacing:-0.318803pt;}
.ws59{word-spacing:-0.304608pt;}
.ws45{word-spacing:-0.299264pt;}
.wsfc{word-spacing:-0.286925pt;}
.ws13{word-spacing:-0.265669pt;}
.ws72{word-spacing:-0.239104pt;}
.ws54{word-spacing:-0.235136pt;}
.ws14{word-spacing:-0.212535pt;}
.ws8e{word-spacing:-0.191283pt;}
.wse{word-spacing:-0.159402pt;}
.ws98{word-spacing:-0.143462pt;}
.ws1a{word-spacing:-0.106268pt;}
.ws99{word-spacing:-0.095642pt;}
.ws3c{word-spacing:-0.085120pt;}
.ws9{word-spacing:-0.053134pt;}
.wsc4{word-spacing:-0.047821pt;}
.ws86{word-spacing:-0.024926pt;}
.ws74{word-spacing:-0.021410pt;}
.wsff{word-spacing:-0.008508pt;}
.ws8f{word-spacing:-0.005581pt;}
.ws58{word-spacing:-0.005344pt;}
.ws73{word-spacing:-0.004941pt;}
.ws9c{word-spacing:-0.004343pt;}
.ws2{word-spacing:-0.003718pt;}
.ws9a{word-spacing:-0.003459pt;}
.wsea{word-spacing:-0.003081pt;}
.wscd{word-spacing:-0.002509pt;}
.ws7d{word-spacing:-0.001425pt;}
.ws76{word-spacing:-0.001357pt;}
.ws70{word-spacing:-0.001341pt;}
.ws87{word-spacing:-0.000801pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.000559pt;}
.ws4{word-spacing:0.047821pt;}
.wsc{word-spacing:0.053134pt;}
.ws57{word-spacing:0.080160pt;}
.wsf8{word-spacing:0.095642pt;}
.wsf{word-spacing:0.099910pt;}
.ws7{word-spacing:0.106268pt;}
.ws55{word-spacing:0.122912pt;}
.ws44{word-spacing:0.128256pt;}
.ws3e{word-spacing:0.134400pt;}
.ws3f{word-spacing:0.138944pt;}
.ws85{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.wsd2{word-spacing:0.191283pt;}
.ws24{word-spacing:0.212535pt;}
.wsd3{word-spacing:0.239104pt;}
.ws64{word-spacing:0.265669pt;}
.wsc6{word-spacing:0.286925pt;}
.ws6c{word-spacing:0.318803pt;}
.ws42{word-spacing:0.390112pt;}
.ws30{word-spacing:0.478205pt;}
.ws21{word-spacing:0.531339pt;}
.ws29{word-spacing:0.584473pt;}
.ws31{word-spacing:0.637606pt;}
.ws47{word-spacing:0.641280pt;}
.ws6e{word-spacing:0.690740pt;}
.ws43{word-spacing:0.710752pt;}
.wsec{word-spacing:0.717312pt;}
.ws46{word-spacing:0.737472pt;}
.ws6f{word-spacing:0.743874pt;}
.wsbf{word-spacing:0.850142pt;}
.wsd6{word-spacing:0.860774pt;}
.wsee{word-spacing:0.956416pt;}
.wsd9{word-spacing:1.004237pt;}
.ws1c{word-spacing:1.062677pt;}
.ws35{word-spacing:1.115811pt;}
.wsb9{word-spacing:1.168945pt;}
.ws7f{word-spacing:1.190202pt;}
.ws102{word-spacing:1.291162pt;}
.ws8{word-spacing:1.328347pt;}
.wsfa{word-spacing:1.338982pt;}
.ws2a{word-spacing:1.381481pt;}
.wsed{word-spacing:1.482445pt;}
.ws1f{word-spacing:1.487748pt;}
.ws20{word-spacing:1.540882pt;}
.wsb1{word-spacing:1.594016pt;}
.ws12{word-spacing:1.647150pt;}
.wse7{word-spacing:1.673728pt;}
.wsb4{word-spacing:1.700284pt;}
.wsf6{word-spacing:1.721549pt;}
.ws82{word-spacing:1.870317pt;}
.wsdd{word-spacing:1.960653pt;}
.wsbd{word-spacing:2.019087pt;}
.wsb8{word-spacing:2.072221pt;}
.ws11{word-spacing:2.092896pt;}
.ws39{word-spacing:2.178489pt;}
.ws6d{word-spacing:2.231622pt;}
.ws28{word-spacing:2.284756pt;}
.wse9{word-spacing:2.391040pt;}
.ws2d{word-spacing:2.497292pt;}
.ws6b{word-spacing:2.550426pt;}
.ws5e{word-spacing:2.591840pt;}
.ws53{word-spacing:2.639936pt;}
.wsb6{word-spacing:2.656693pt;}
.ws5d{word-spacing:2.661312pt;}
.wsbe{word-spacing:2.709827pt;}
.wscb{word-spacing:2.725786pt;}
.wsde{word-spacing:2.773606pt;}
.wsdf{word-spacing:2.821427pt;}
.wse0{word-spacing:2.860570pt;}
.wsfe{word-spacing:2.862763pt;}
.wsf5{word-spacing:2.863002pt;}
.wsd5{word-spacing:2.864717pt;}
.wse5{word-spacing:2.864947pt;}
.wsc5{word-spacing:2.866509pt;}
.wsd1{word-spacing:2.867140pt;}
.wsc8{word-spacing:2.868412pt;}
.wsf1{word-spacing:2.869188pt;}
.wsca{word-spacing:2.869248pt;}
.wsd4{word-spacing:2.870630pt;}
.wsd7{word-spacing:2.871407pt;}
.wsf2{word-spacing:2.917069pt;}
.ws1b{word-spacing:2.975497pt;}
.wsbb{word-spacing:3.028630pt;}
.wsce{word-spacing:3.060531pt;}
.ws3a{word-spacing:3.081764pt;}
.ws15{word-spacing:3.185311pt;}
.ws16{word-spacing:3.188032pt;}
.wse4{word-spacing:3.203994pt;}
.wsf4{word-spacing:3.395277pt;}
.ws26{word-spacing:3.400567pt;}
.ws25{word-spacing:3.453701pt;}
.wse8{word-spacing:3.586560pt;}
.ws2e{word-spacing:3.613103pt;}
.ws56{word-spacing:3.617888pt;}
.wsd8{word-spacing:3.634381pt;}
.wsf3{word-spacing:3.682202pt;}
.ws48{word-spacing:3.895776pt;}
.wsf7{word-spacing:3.921306pt;}
.wsb3{word-spacing:3.931906pt;}
.ws80{word-spacing:3.953170pt;}
.ws81{word-spacing:3.995677pt;}
.ws69{word-spacing:4.038174pt;}
.wsd0{word-spacing:4.256051pt;}
.ws8c{word-spacing:4.303843pt;}
.ws49{word-spacing:4.317952pt;}
.wsdc{word-spacing:4.399514pt;}
.ws68{word-spacing:4.463245pt;}
.ws40{word-spacing:4.569120pt;}
.ws10{word-spacing:4.569513pt;}
.ws41{word-spacing:4.585152pt;}
.ws18{word-spacing:4.675780pt;}
.ws19{word-spacing:4.728914pt;}
.wscc{word-spacing:4.734259pt;}
.wsf0{word-spacing:4.829901pt;}
.ws27{word-spacing:4.888316pt;}
.ws67{word-spacing:5.100851pt;}
.wsc3{word-spacing:5.260253pt;}
.wsd{word-spacing:5.313387pt;}
.ws8b{word-spacing:5.366521pt;}
.ws38{word-spacing:5.472788pt;}
.ws4f{word-spacing:5.482944pt;}
.wsdb{word-spacing:5.738496pt;}
.ws37{word-spacing:5.791591pt;}
.ws65{word-spacing:5.897859pt;}
.wsab{word-spacing:6.004127pt;}
.ws32{word-spacing:6.110395pt;}
.wsf9{word-spacing:6.312346pt;}
.ws61{word-spacing:6.492960pt;}
.ws62{word-spacing:6.770848pt;}
.wsef{word-spacing:6.838374pt;}
.wsfd{word-spacing:7.460045pt;}
.wsad{word-spacing:7.545009pt;}
.ws3d{word-spacing:8.086400pt;}
.ws63{word-spacing:8.926490pt;}
.wsaf{word-spacing:9.776631pt;}
.ws2c{word-spacing:10.520506pt;}
.ws66{word-spacing:10.573639pt;}
.wsa{word-spacing:10.733041pt;}
.ws8a{word-spacing:10.839309pt;}
.wsae{word-spacing:11.901986pt;}
.wsb{word-spacing:12.858396pt;}
.wsda{word-spacing:13.915853pt;}
.wsb7{word-spacing:14.558679pt;}
.wsb2{word-spacing:14.611813pt;}
.ws50{word-spacing:16.037344pt;}
.ws51{word-spacing:16.106816pt;}
.ws52{word-spacing:17.047360pt;}
.ws33{word-spacing:17.109105pt;}
.ws4b{word-spacing:25.667232pt;}
.ws4e{word-spacing:28.884320pt;}
.ws4d{word-spacing:29.220992pt;}
.ws4c{word-spacing:29.242368pt;}
.ws9e{word-spacing:93.520000pt;}
.ws9b{word-spacing:93.871154pt;}
.wsa0{word-spacing:98.588977pt;}
.ws9d{word-spacing:99.975578pt;}
.wsa4{word-spacing:101.863086pt;}
.wsa2{word-spacing:101.877733pt;}
.wsa3{word-spacing:101.896561pt;}
.ws88{word-spacing:102.068716pt;}
.ws89{word-spacing:102.112711pt;}
.wsa1{word-spacing:111.143430pt;}
.wsa9{word-spacing:115.160258pt;}
.wsa6{word-spacing:120.900165pt;}
.wsa7{word-spacing:123.694150pt;}
.wsa8{word-spacing:142.199931pt;}
.ws78{word-spacing:235.852186pt;}
.ws79{word-spacing:235.900006pt;}
.ws7c{word-spacing:238.386688pt;}
.ws77{word-spacing:250.389709pt;}
.ws7e{word-spacing:262.297088pt;}
.ws91{word-spacing:447.793971pt;}
.ws7a{word-spacing:453.054259pt;}
.ws93{word-spacing:459.749171pt;}
.ws90{word-spacing:461.757645pt;}
.ws92{word-spacing:465.726771pt;}
.ws94{word-spacing:477.681971pt;}
.ws95{word-spacing:491.645645pt;}
.ws96{word-spacing:495.614771pt;}
.ws97{word-spacing:519.859917pt;}
._58{margin-left:-110.332150pt;}
._5e{margin-left:-6.838374pt;}
._0{margin-left:-5.897859pt;}
._3{margin-left:-4.590797pt;}
._4{margin-left:-3.538739pt;}
._7{margin-left:-1.819895pt;}
._2{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._1{width:2.640402pt;}
._1d{width:4.742258pt;}
._18{width:9.312567pt;}
._1a{width:10.856869pt;}
._17{width:11.915330pt;}
._62{width:12.808994pt;}
._5{width:13.963674pt;}
._6{width:15.685222pt;}
._9{width:16.931197pt;}
._14{width:18.416167pt;}
._c{width:19.350194pt;}
._5d{width:20.456539pt;}
._d{width:21.731751pt;}
._1b{width:23.485169pt;}
._13{width:25.039395pt;}
._e{width:25.929327pt;}
._11{width:27.204540pt;}
._5a{width:28.160949pt;}
._a{width:30.140246pt;}
._1e{width:31.333071pt;}
._5f{width:32.239668pt;}
._b{width:33.647081pt;}
._15{width:35.174620pt;}
._61{width:37.648000pt;}
._1c{width:43.583114pt;}
._5b{width:46.332732pt;}
._12{width:49.167490pt;}
._5c{width:61.292602pt;}
._43{width:65.288782pt;}
._44{width:67.136578pt;}
._16{width:68.901281pt;}
._3f{width:69.996261pt;}
._40{width:73.119916pt;}
._20{width:79.126195pt;}
._42{width:82.446885pt;}
._53{width:85.746520pt;}
._1f{width:90.072917pt;}
._41{width:92.873732pt;}
._47{width:102.112711pt;}
._52{width:103.960506pt;}
._48{width:113.111495pt;}
._51{width:143.644119pt;}
._50{width:146.987749pt;}
._59{width:150.520450pt;}
._4f{width:160.714232pt;}
._23{width:166.129459pt;}
._25{width:180.619162pt;}
._4c{width:192.170754pt;}
._46{width:194.898452pt;}
._45{width:200.353849pt;}
._4a{width:208.052998pt;}
._4e{width:209.240867pt;}
._49{width:219.047956pt;}
._24{width:227.428873pt;}
._21{width:237.992730pt;}
._2e{width:247.855206pt;}
._4b{width:261.111132pt;}
._28{width:262.344909pt;}
._4d{width:272.157737pt;}
._3a{width:274.300109pt;}
._22{width:301.605786pt;}
._54{width:320.542822pt;}
._57{width:336.285355pt;}
._36{width:453.054259pt;}
._27{width:464.961638pt;}
._2d{width:471.226163pt;}
._31{width:476.916838pt;}
._38{width:488.717756pt;}
._55{width:507.904717pt;}
._56{width:531.862938pt;}
._3c{width:542.290577pt;}
._39{width:550.513050pt;}
._2c{width:569.593549pt;}
._2f{width:576.527565pt;}
._3b{width:587.621990pt;}
._30{width:593.647411pt;}
._3d{width:597.138330pt;}
._37{width:607.467622pt;}
._26{width:630.230323pt;}
._2b{width:644.289638pt;}
._2a{width:649.789030pt;}
._34{width:650.745446pt;}
._35{width:668.965171pt;}
._33{width:686.467584pt;}
._f{width:805.637362pt;}
._3e{width:849.078224pt;}
._32{width:1127.234602pt;}
._29{width:1335.340151pt;}
._19{width:1444.728992pt;}
._60{width:1800.306667pt;}
._10{width:1821.560000pt;}
.fse{font-size:31.880533pt;}
.fs10{font-size:33.474560pt;}
.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;}
.fs9{font-size:42.560000pt;}
.fsf{font-size:43.995136pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y64{bottom:-477.974267pt;}
.y7b{bottom:-444.932219pt;}
.y7a{bottom:-426.932291pt;}
.y79{bottom:-408.932363pt;}
.y78{bottom:-390.932435pt;}
.y77{bottom:-364.932539pt;}
.y76{bottom:-330.932675pt;}
.y75{bottom:-313.012907pt;}
.y74{bottom:-295.012979pt;}
.y73{bottom:-277.013051pt;}
.y72{bottom:-259.013123pt;}
.y71{bottom:-241.013195pt;}
.y70{bottom:-223.013267pt;}
.y6f{bottom:-205.013339pt;}
.y6e{bottom:-187.093571pt;}
.y6d{bottom:-169.093643pt;}
.y6c{bottom:-151.093715pt;}
.y6b{bottom:-133.093787pt;}
.y6a{bottom:-115.093859pt;}
.y69{bottom:-97.093931pt;}
.y68{bottom:-79.094003pt;}
.y67{bottom:-53.174267pt;}
.y66{bottom:-19.574267pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:2.185733pt;}
.y18{bottom:3.044747pt;}
.y17{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y31{bottom:56.693333pt;}
.y11c{bottom:98.878667pt;}
.y30{bottom:101.777333pt;}
.y190{bottom:102.853333pt;}
.y61{bottom:108.724000pt;}
.y13e{bottom:109.441333pt;}
.yb4{bottom:115.870667pt;}
.y11b{bottom:116.890667pt;}
.yeb{bottom:117.242667pt;}
.y2f{bottom:119.789333pt;}
.y18f{bottom:120.069333pt;}
.y15b{bottom:124.638667pt;}
.y60{bottom:126.737333pt;}
.y13d{bottom:127.454667pt;}
.y18d{bottom:131.281333pt;}
.yb3{bottom:133.884000pt;}
.yea{bottom:135.974987pt;}
.y18e{bottom:137.284000pt;}
.y2e{bottom:137.801333pt;}
.y15a{bottom:141.854667pt;}
.y11a{bottom:142.873333pt;}
.y5f{bottom:144.749333pt;}
.y13c{bottom:145.466667pt;}
.y18c{bottom:148.497333pt;}
.ye9{bottom:149.479360pt;}
.yb2{bottom:151.896000pt;}
.y87{bottom:154.705333pt;}
.y2d{bottom:155.814667pt;}
.y159{bottom:159.069333pt;}
.y5e{bottom:162.762667pt;}
.ye8{bottom:162.983733pt;}
.y13b{bottom:163.478667pt;}
.y18b{bottom:165.713333pt;}
.yb1{bottom:169.909333pt;}
.y86{bottom:172.717333pt;}
.y2c{bottom:173.826667pt;}
.y158{bottom:176.285333pt;}
.ye7{bottom:176.488107pt;}
.y119{bottom:179.236933pt;}
.y5d{bottom:180.774667pt;}
.y13a{bottom:181.492000pt;}
.y18a{bottom:182.928000pt;}
.yb0{bottom:187.921333pt;}
.y118{bottom:189.465333pt;}
.ye6{bottom:189.991253pt;}
.y85{bottom:190.729333pt;}
.y2b{bottom:191.840000pt;}
.y157{bottom:193.501333pt;}
.y5c{bottom:198.786667pt;}
.y139{bottom:199.504000pt;}
.y117{bottom:199.692800pt;}
.y189{bottom:200.144000pt;}
.ye5{bottom:203.495627pt;}
.yaf{bottom:205.933333pt;}
.y84{bottom:208.742667pt;}
.y116{bottom:209.921200pt;}
.y156{bottom:210.716000pt;}
.y5b{bottom:216.800000pt;}
.ye4{bottom:217.000000pt;}
.y188{bottom:217.358667pt;}
.y138{bottom:217.517333pt;}
.y2a{bottom:217.821333pt;}
.y115{bottom:220.149600pt;}
.yae{bottom:223.946667pt;}
.y83{bottom:226.754667pt;}
.y155{bottom:227.932000pt;}
.y114{bottom:230.378000pt;}
.ye3{bottom:230.504373pt;}
.y187{bottom:234.574667pt;}
.y5a{bottom:234.812000pt;}
.y137{bottom:235.529333pt;}
.y113{bottom:240.606400pt;}
.yad{bottom:241.958667pt;}
.y82{bottom:244.766667pt;}
.y154{bottom:245.146667pt;}
.ye2{bottom:249.897973pt;}
.y112{bottom:250.834800pt;}
.y186{bottom:251.790667pt;}
.y136{bottom:253.541333pt;}
.yac{bottom:259.972000pt;}
.y59{bottom:260.794667pt;}
.y111{bottom:261.063200pt;}
.y153{bottom:262.362667pt;}
.y81{bottom:262.780000pt;}
.y185{bottom:269.005333pt;}
.ye1{bottom:269.291573pt;}
.y110{bottom:271.291600pt;}
.y135{bottom:271.554667pt;}
.yab{bottom:277.984000pt;}
.y152{bottom:279.578667pt;}
.y80{bottom:280.792000pt;}
.y10f{bottom:281.520000pt;}
.y29{bottom:285.740000pt;}
.y184{bottom:286.221333pt;}
.y134{bottom:289.566667pt;}
.y58{bottom:291.745333pt;}
.y10e{bottom:291.748400pt;}
.yaa{bottom:295.996000pt;}
.y103{bottom:296.177067pt;}
.ye0{bottom:296.197333pt;}
.y151{bottom:296.793333pt;}
.y10d{bottom:301.976800pt;}
.y183{bottom:303.437333pt;}
.y7f{bottom:306.774667pt;}
.y133{bottom:307.580000pt;}
.y57{bottom:309.758667pt;}
.y10c{bottom:312.204267pt;}
.ydf{bottom:313.293333pt;}
.ya9{bottom:314.009333pt;}
.y28{bottom:319.693333pt;}
.y182{bottom:320.652000pt;}
.y10b{bottom:322.432667pt;}
.y132{bottom:325.592000pt;}
.y56{bottom:327.770667pt;}
.y150{bottom:331.224000pt;}
.ya8{bottom:332.021333pt;}
.y10a{bottom:332.661067pt;}
.y27{bottom:337.705333pt;}
.y7e{bottom:337.725333pt;}
.y181{bottom:337.868000pt;}
.y109{bottom:342.889467pt;}
.y131{bottom:343.604000pt;}
.y55{bottom:345.782667pt;}
.yde{bottom:346.274667pt;}
.y14f{bottom:348.440000pt;}
.ya7{bottom:350.034667pt;}
.y108{bottom:353.117867pt;}
.y180{bottom:355.082667pt;}
.y26{bottom:355.718667pt;}
.y7d{bottom:355.738667pt;}
.y130{bottom:361.617333pt;}
.y107{bottom:363.346267pt;}
.y54{bottom:363.796000pt;}
.ydd{bottom:364.286667pt;}
.y14e{bottom:365.656000pt;}
.ya6{bottom:368.046667pt;}
.y17f{bottom:372.298667pt;}
.y106{bottom:373.574667pt;}
.y25{bottom:373.730667pt;}
.y12f{bottom:379.629333pt;}
.y53{bottom:381.808000pt;}
.ydc{bottom:382.300000pt;}
.y105{bottom:383.803067pt;}
.ya5{bottom:386.058667pt;}
.y7c{bottom:386.849333pt;}
.y17e{bottom:389.514667pt;}
.y14d{bottom:390.841333pt;}
.y24{bottom:391.744000pt;}
.y104{bottom:394.031467pt;}
.y12e{bottom:397.642667pt;}
.y52{bottom:399.821333pt;}
.ydb{bottom:400.312000pt;}
.ya4{bottom:404.072000pt;}
.y17d{bottom:406.729333pt;}
.y62{bottom:406.786667pt;}
.y101{bottom:408.740800pt;}
.y23{bottom:409.756000pt;}
.y100{bottom:413.855467pt;}
.y12d{bottom:415.654667pt;}
.y51{bottom:417.833333pt;}
.yda{bottom:418.325333pt;}
.y102{bottom:418.969200pt;}
.ya3{bottom:422.084000pt;}
.y17c{bottom:423.945333pt;}
.y14c{bottom:425.909333pt;}
.y22{bottom:427.768000pt;}
.y12c{bottom:433.666667pt;}
.yff{bottom:433.725200pt;}
.y50{bottom:435.845333pt;}
.yd9{bottom:436.337333pt;}
.ya2{bottom:440.097333pt;}
.y17b{bottom:441.160000pt;}
.y21{bottom:445.781333pt;}
.y14b{bottom:447.389333pt;}
.y12b{bottom:451.680000pt;}
.y4f{bottom:453.858667pt;}
.yd8{bottom:454.349333pt;}
.yfe{bottom:457.329333pt;}
.ya1{bottom:458.109333pt;}
.y17a{bottom:458.376000pt;}
.y20{bottom:463.793333pt;}
.y14a{bottom:468.869333pt;}
.y12a{bottom:469.692000pt;}
.y4e{bottom:471.870667pt;}
.yfd{bottom:474.425333pt;}
.y179{bottom:475.592000pt;}
.ya0{bottom:476.121333pt;}
.y1f{bottom:481.806667pt;}
.y149{bottom:482.378667pt;}
.y129{bottom:487.704000pt;}
.y4d{bottom:489.884000pt;}
.yfc{bottom:491.521333pt;}
.yd7{bottom:492.686667pt;}
.y178{bottom:492.806667pt;}
.y148{bottom:495.888000pt;}
.y1e{bottom:499.818667pt;}
.y9f{bottom:502.104000pt;}
.yd5{bottom:505.305333pt;}
.y128{bottom:505.717333pt;}
.y63{bottom:506.105733pt;}
.y4c{bottom:507.896000pt;}
.yd6{bottom:509.162667pt;}
.y147{bottom:509.397333pt;}
.y177{bottom:510.022667pt;}
.y1d{bottom:517.830667pt;}
.yd3{bottom:517.925333pt;}
.yd4{bottom:521.782667pt;}
.y127{bottom:523.729333pt;}
.y4b{bottom:525.908000pt;}
.y176{bottom:527.237333pt;}
.yfb{bottom:528.556000pt;}
.yd2{bottom:530.544000pt;}
.y9e{bottom:533.054667pt;}
.yd1{bottom:534.401333pt;}
.y1c{bottom:535.844000pt;}
.y146{bottom:538.846667pt;}
.y126{bottom:541.742667pt;}
.yfa{bottom:543.234667pt;}
.y4a{bottom:543.921333pt;}
.y175{bottom:544.453333pt;}
.yd0{bottom:549.900000pt;}
.y1b{bottom:553.856000pt;}
.y145{bottom:556.858667pt;}
.yf9{bottom:557.913333pt;}
.y125{bottom:559.754667pt;}
.y174{bottom:561.669333pt;}
.y49{bottom:561.933333pt;}
.y9d{bottom:564.005333pt;}
.ycf{bottom:564.578667pt;}
.y1a{bottom:571.869333pt;}
.yf8{bottom:572.590667pt;}
.y144{bottom:574.872000pt;}
.y124{bottom:577.766667pt;}
.y173{bottom:578.884000pt;}
.yce{bottom:579.257333pt;}
.y48{bottom:579.945333pt;}
.y9c{bottom:582.018667pt;}
.yf7{bottom:587.269333pt;}
.y19{bottom:589.881333pt;}
.y143{bottom:592.884000pt;}
.ycd{bottom:593.936000pt;}
.y123{bottom:595.780000pt;}
.y172{bottom:596.100000pt;}
.y47{bottom:597.958667pt;}
.y9b{bottom:600.030667pt;}
.yf6{bottom:601.948000pt;}
.ycc{bottom:608.613333pt;}
.y142{bottom:610.896000pt;}
.y171{bottom:613.314667pt;}
.y122{bottom:613.792000pt;}
.y46{bottom:615.970667pt;}
.yf5{bottom:616.626667pt;}
.y16{bottom:621.376048pt;}
.y15{bottom:621.726667pt;}
.ycb{bottom:623.225333pt;}
.y9a{bottom:626.013333pt;}
.y141{bottom:628.909333pt;}
.y170{bottom:630.530667pt;}
.yf4{bottom:631.304000pt;}
.y121{bottom:631.805333pt;}
.y45{bottom:633.984000pt;}
.yca{bottom:638.460000pt;}
.yf3{bottom:645.982667pt;}
.y140{bottom:646.921333pt;}
.y16f{bottom:647.746667pt;}
.y120{bottom:649.817333pt;}
.yc7{bottom:653.070667pt;}
.yc9{bottom:653.349333pt;}
.y14{bottom:656.724000pt;}
.y99{bottom:656.964000pt;}
.yc8{bottom:657.410667pt;}
.y44{bottom:659.966667pt;}
.yf2{bottom:660.661333pt;}
.y16e{bottom:664.961333pt;}
.y11f{bottom:667.829333pt;}
.yc6{bottom:668.305333pt;}
.y13{bottom:672.862667pt;}
.y13f{bottom:672.904000pt;}
.y98{bottom:674.977333pt;}
.yf1{bottom:675.340000pt;}
.y16d{bottom:682.177333pt;}
.yc5{bottom:682.982667pt;}
.y11e{bottom:685.842667pt;}
.yf0{bottom:690.017333pt;}
.y43{bottom:690.917333pt;}
.y97{bottom:692.989333pt;}
.y12{bottom:693.342667pt;}
.yc4{bottom:697.661333pt;}
.y16c{bottom:699.392000pt;}
.y11d{bottom:703.854667pt;}
.yef{bottom:704.696000pt;}
.y11{bottom:709.482667pt;}
.y96{bottom:711.001333pt;}
.yc3{bottom:712.340000pt;}
.y16b{bottom:716.608000pt;}
.y10{bottom:721.281333pt;}
.y42{bottom:721.868000pt;}
.yee{bottom:725.776000pt;}
.yc2{bottom:727.018667pt;}
.y16a{bottom:733.824000pt;}
.y95{bottom:736.984000pt;}
.y41{bottom:739.880000pt;}
.yc1{bottom:741.696000pt;}
.yf{bottom:741.761333pt;}
.y169{bottom:751.038667pt;}
.yed{bottom:753.882667pt;}
.yc0{bottom:756.374667pt;}
.y40{bottom:757.892000pt;}
.ye{bottom:757.901333pt;}
.y94{bottom:767.934667pt;}
.y168{bottom:768.254667pt;}
.yec{bottom:770.978667pt;}
.ybf{bottom:771.053333pt;}
.yd{bottom:774.040000pt;}
.y3f{bottom:775.905333pt;}
.y167{bottom:785.469333pt;}
.ybe{bottom:785.665333pt;}
.yc{bottom:785.840000pt;}
.y93{bottom:785.948000pt;}
.y3e{bottom:793.917333pt;}
.ybd{bottom:800.898667pt;}
.yb{bottom:801.980000pt;}
.y166{bottom:802.685333pt;}
.y92{bottom:803.960000pt;}
.y3d{bottom:811.930667pt;}
.ybc{bottom:815.577333pt;}
.ya{bottom:818.118667pt;}
.y165{bottom:819.901333pt;}
.y90{bottom:821.972000pt;}
.y9{bottom:822.458667pt;}
.y91{bottom:826.794667pt;}
.y3c{bottom:829.942667pt;}
.ybb{bottom:830.189333pt;}
.y164{bottom:837.116000pt;}
.y8f{bottom:839.985333pt;}
.y8{bottom:842.229333pt;}
.yba{bottom:845.422667pt;}
.y3b{bottom:847.954667pt;}
.y163{bottom:854.332000pt;}
.y8e{bottom:857.997333pt;}
.yb9{bottom:860.100000pt;}
.y7{bottom:860.241333pt;}
.y3a{bottom:865.968000pt;}
.y162{bottom:871.546667pt;}
.yb8{bottom:874.778667pt;}
.y8d{bottom:876.010667pt;}
.y39{bottom:883.980000pt;}
.y161{bottom:888.762667pt;}
.y8c{bottom:894.022667pt;}
.yb7{bottom:895.860000pt;}
.y6{bottom:898.178667pt;}
.y38{bottom:901.993333pt;}
.y160{bottom:905.978667pt;}
.y8b{bottom:912.034667pt;}
.y37{bottom:920.005333pt;}
.y15f{bottom:923.193333pt;}
.yb6{bottom:923.965333pt;}
.y5{bottom:925.198667pt;}
.y8a{bottom:930.048000pt;}
.y36{bottom:938.017333pt;}
.y15e{bottom:940.409333pt;}
.yb5{bottom:941.061333pt;}
.y89{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y15d{bottom:957.624000pt;}
.y88{bottom:966.073333pt;}
.y34{bottom:974.042667pt;}
.y15c{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y33{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h1f{height:24.101683pt;}
.hc{height:29.433775pt;}
.h1b{height:30.063343pt;}
.hb{height:30.399505pt;}
.h21{height:31.566510pt;}
.h1c{height:31.676498pt;}
.h12{height:31.992188pt;}
.h18{height:34.430976pt;}
.h8{height:35.073565pt;}
.h1e{height:35.100467pt;}
.h16{height:35.212691pt;}
.h17{height:38.080100pt;}
.hd{height:38.256384pt;}
.h15{height:38.462187pt;}
.h4{height:39.000258pt;}
.h11{height:39.754531pt;}
.hf{height:40.084290pt;}
.h1d{height:41.487413pt;}
.h20{height:44.556617pt;}
.h14{height:44.835938pt;}
.h9{height:45.095014pt;}
.h2{height:45.272024pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h13{height:49.917344pt;}
.he{height:50.105236pt;}
.h22{height:52.021443pt;}
.h23{height:52.025177pt;}
.h19{height:52.428231pt;}
.h1a{height:52.433565pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h10{height:492.205333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w4{width:463.206667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x27{left:-60.462667pt;}
.x2a{left:-32.142761pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:51.605861pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x4{left:129.854667pt;}
.x3c{left:130.797333pt;}
.x38{left:134.010667pt;}
.x41{left:138.038667pt;}
.x29{left:147.617333pt;}
.x73{left:158.273467pt;}
.x79{left:164.296000pt;}
.x26{left:165.248000pt;}
.xb{left:166.548000pt;}
.x8{left:167.438667pt;}
.x43{left:171.336000pt;}
.xc{left:173.189333pt;}
.x3a{left:175.392000pt;}
.x15{left:176.368000pt;}
.x4d{left:178.102667pt;}
.xd{left:179.964000pt;}
.x3e{left:181.626667pt;}
.x16{left:183.009333pt;}
.x39{left:185.232000pt;}
.xe{left:186.605333pt;}
.x5d{left:188.504000pt;}
.x4e{left:191.373333pt;}
.x17{left:193.038667pt;}
.x4c{left:194.616000pt;}
.x42{left:196.137333pt;}
.x44{left:197.661333pt;}
.x45{left:198.946667pt;}
.x54{left:200.789867pt;}
.x7d{left:203.266667pt;}
.x4b{left:205.605333pt;}
.x77{left:207.058667pt;}
.x3d{left:211.081333pt;}
.x40{left:214.750667pt;}
.x3f{left:215.970667pt;}
.x47{left:220.770667pt;}
.x5c{left:224.184000pt;}
.x46{left:225.092000pt;}
.x89{left:227.409333pt;}
.x5b{left:228.564053pt;}
.x5e{left:229.665333pt;}
.x85{left:231.560000pt;}
.x5a{left:233.081867pt;}
.x24{left:235.262667pt;}
.x75{left:237.634800pt;}
.x60{left:238.893867pt;}
.x76{left:240.772667pt;}
.x74{left:241.664000pt;}
.x59{left:243.838507pt;}
.x86{left:244.842667pt;}
.x58{left:247.269493pt;}
.x25{left:248.546667pt;}
.x56{left:255.133653pt;}
.x57{left:259.401227pt;}
.x61{left:280.759467pt;}
.x7e{left:304.424000pt;}
.x2b{left:310.750667pt;}
.x62{left:314.796267pt;}
.x55{left:318.164693pt;}
.x48{left:326.180000pt;}
.x49{left:331.493333pt;}
.x64{left:344.955067pt;}
.x63{left:346.544533pt;}
.x1c{left:351.845333pt;}
.x50{left:352.808000pt;}
.x87{left:358.825333pt;}
.x51{left:361.180000pt;}
.x1d{left:365.129333pt;}
.x3b{left:367.849333pt;}
.x1e{left:371.658667pt;}
.x66{left:374.969200pt;}
.x65{left:378.292800pt;}
.x1f{left:384.941333pt;}
.x68{left:408.450667pt;}
.x67{left:410.041067pt;}
.x5f{left:418.302933pt;}
.x4a{left:422.770667pt;}
.x6a{left:440.198933pt;}
.x69{left:441.788400pt;}
.x13{left:457.658667pt;}
.x28{left:459.377333pt;}
.x20{left:463.264000pt;}
.x14{left:464.301333pt;}
.x21{left:469.906667pt;}
.x22{left:473.293333pt;}
.x6b{left:474.386000pt;}
.x7f{left:477.090667pt;}
.x23{left:486.577333pt;}
.x80{left:490.374667pt;}
.x92{left:497.341333pt;}
.x6c{left:505.284933pt;}
.x6d{left:506.833333pt;}
.x4f{left:520.577333pt;}
.x88{left:524.596000pt;}
.x2e{left:527.642667pt;}
.x8c{left:531.130667pt;}
.x30{left:534.830667pt;}
.x96{left:535.880000pt;}
.x6e{left:537.033200pt;}
.x52{left:539.042667pt;}
.x2f{left:540.926667pt;}
.x81{left:544.957333pt;}
.x53{left:546.876000pt;}
.x31{left:548.114667pt;}
.x8d{left:555.041333pt;}
.x18{left:558.338667pt;}
.x97{left:559.789333pt;}
.x82{left:561.628000pt;}
.x9{left:565.277333pt;}
.x6f{left:568.780533pt;}
.x70{left:570.328933pt;}
.x19{left:571.621333pt;}
.x2c{left:575.406667pt;}
.x1a{left:578.396000pt;}
.x32{left:582.404000pt;}
.x2d{left:588.690667pt;}
.x1b{left:591.680000pt;}
.x33{left:595.686667pt;}
.x95{left:597.837333pt;}
.x83{left:602.106667pt;}
.x71{left:604.139867pt;}
.x72{left:608.630133pt;}
.xa{left:609.856000pt;}
.x8e{left:614.226667pt;}
.x7a{left:619.432000pt;}
.x84{left:621.905333pt;}
.x6{left:623.413317pt;}
.x7b{left:632.716000pt;}
.x36{left:634.834667pt;}
.x8f{left:638.137333pt;}
.x8a{left:642.897333pt;}
.x90{left:647.566667pt;}
.x7c{left:653.140000pt;}
.x93{left:654.189333pt;}
.x37{left:656.128000pt;}
.xf{left:666.021333pt;}
.x91{left:671.476000pt;}
.x10{left:672.662667pt;}
.x34{left:673.953333pt;}
.x94{left:678.100000pt;}
.x11{left:679.437333pt;}
.x35{left:684.878667pt;}
.x12{left:686.078667pt;}
.x78{left:687.212000pt;}
.x8b{left:690.126667pt;}
}




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