
    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_1ea4c7068d1393e325aff410.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e60f08a88293f1280dd48f05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_0535d27a780e88d10f2b62e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.011000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd5d8ca1a871e973b54de4fd.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_a42364f804f846c76ea8c00c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_137f2062b55ee3bdafa04ed9.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.222000;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_cd3a5be7889a6edfbec573a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703000;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_9993ea6b23826d9a43a97e18.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987000;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_1284c0abfb09c3fdfeef79f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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;}
.m6{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);}
.m24{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);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m9{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);}
.m1b{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);}
.m23{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);}
.mc{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);}
.mb{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);}
.m21{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);}
.m17{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);}
.m3{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);}
.m4{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);}
.m8{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);}
.m25{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);}
.mf{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);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1f{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);}
.m16{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);}
.m12{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);}
.m15{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);}
.m10{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);}
.m1d{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);}
.m14{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);}
.m1a{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);}
.m5{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);}
.m13{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);}
.m19{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);}
.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);}
.me{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);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v13{vertical-align:-19.530000px;}
.v10{vertical-align:-12.510000px;}
.v5{vertical-align:-11.268000px;}
.v4{vertical-align:-9.888000px;}
.v7{vertical-align:-8.070000px;}
.vd{vertical-align:-1.590000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.268000px;}
.ve{vertical-align:12.510000px;}
.v8{vertical-align:19.530000px;}
.v9{vertical-align:21.702000px;}
.v11{vertical-align:24.684000px;}
.v12{vertical-align:25.710000px;}
.va{vertical-align:32.880000px;}
.vc{vertical-align:35.874000px;}
.vf{vertical-align:41.004000px;}
.vb{vertical-align:44.844000px;}
.v3{vertical-align:46.704000px;}
.v2{vertical-align:57.186000px;}
.v1{vertical-align:74.718000px;}
.ls3{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.003634px;}
.ls47{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.503764px;}
.ls3a{letter-spacing:0.520013px;}
.ls17{letter-spacing:0.524362px;}
.ls23{letter-spacing:0.542815px;}
.ls24{letter-spacing:0.548815px;}
.ls44{letter-spacing:0.569108px;}
.ls1f{letter-spacing:0.651088px;}
.ls3e{letter-spacing:0.676741px;}
.ls28{letter-spacing:0.744583px;}
.ls1c{letter-spacing:0.748200px;}
.ls29{letter-spacing:0.750583px;}
.ls36{letter-spacing:1.193510px;}
.ls4{letter-spacing:1.275394px;}
.ls34{letter-spacing:1.317634px;}
.ls38{letter-spacing:1.403510px;}
.ls31{letter-spacing:1.420741px;}
.ls3f{letter-spacing:1.492200px;}
.ls2c{letter-spacing:1.497634px;}
.ls2e{letter-spacing:1.498200px;}
.lsd{letter-spacing:1.523108px;}
.ls32{letter-spacing:1.545634px;}
.ls1d{letter-spacing:1.612282px;}
.ls1b{letter-spacing:1.789694px;}
.ls1{letter-spacing:1.861130px;}
.ls19{letter-spacing:2.095694px;}
.lse{letter-spacing:2.177108px;}
.lsa{letter-spacing:2.272514px;}
.ls11{letter-spacing:2.601178px;}
.ls18{letter-spacing:2.988600px;}
.ls45{letter-spacing:2.989200px;}
.ls13{letter-spacing:3.496051px;}
.ls37{letter-spacing:3.507900px;}
.ls25{letter-spacing:3.553200px;}
.ls22{letter-spacing:3.559200px;}
.ls2f{letter-spacing:3.811331px;}
.lsb{letter-spacing:3.817331px;}
.ls40{letter-spacing:4.303200px;}
.ls2d{letter-spacing:8.590741px;}
.ls2{letter-spacing:11.954850px;}
.ls3d{letter-spacing:12.342783px;}
.ls2a{letter-spacing:12.370200px;}
.ls2b{letter-spacing:13.083483px;}
.ls8{letter-spacing:13.086783px;}
.ls33{letter-spacing:13.089483px;}
.ls1a{letter-spacing:13.092783px;}
.ls7{letter-spacing:13.116583px;}
.ls4f{letter-spacing:13.436004px;}
.ls46{letter-spacing:13.448400px;}
.ls4a{letter-spacing:13.454400px;}
.lsc{letter-spacing:13.519200px;}
.ls4b{letter-spacing:13.611129px;}
.ls4e{letter-spacing:13.614230px;}
.ls48{letter-spacing:13.617747px;}
.ls49{letter-spacing:13.638546px;}
.ls20{letter-spacing:14.824349px;}
.ls27{letter-spacing:14.884124px;}
.ls16{letter-spacing:16.434600px;}
.ls4d{letter-spacing:16.436004px;}
.ls26{letter-spacing:16.438290px;}
.ls42{letter-spacing:17.319483px;}
.ls43{letter-spacing:17.929200px;}
.ls6{letter-spacing:18.069483px;}
.ls5{letter-spacing:18.096583px;}
.ls21{letter-spacing:18.649987px;}
.ls30{letter-spacing:22.357200px;}
.ls41{letter-spacing:25.198741px;}
.ls9{letter-spacing:25.813609px;}
.ls0{letter-spacing:28.241510px;}
.ls1e{letter-spacing:72.400800px;}
.ls14{letter-spacing:78.810600px;}
.lsf{letter-spacing:79.620845px;}
.ls12{letter-spacing:80.893702px;}
.ls10{letter-spacing:81.079702px;}
.ls3b{letter-spacing:101.112600px;}
.ls39{letter-spacing:109.402800px;}
.ls35{letter-spacing:110.909510px;}
.ls3c{letter-spacing:159.003483px;}
.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;}
}
.ws25{word-spacing:-14.943900px;}
.ws2d{word-spacing:-13.449600px;}
.ws1a{word-spacing:-11.955150px;}
.ws80{word-spacing:-11.357400px;}
.ws90{word-spacing:-3.227882px;}
.ws60{word-spacing:-3.108331px;}
.ws8f{word-spacing:-2.869229px;}
.ws34{word-spacing:-2.749678px;}
.wse{word-spacing:-2.689902px;}
.ws30{word-spacing:-2.570351px;}
.ws4b{word-spacing:-2.510575px;}
.ws68{word-spacing:-2.331248px;}
.ws75{word-spacing:-2.211697px;}
.ws76{word-spacing:-2.032370px;}
.wsac{word-spacing:-1.990541px;}
.ws3{word-spacing:-1.908367px;}
.ws57{word-spacing:-1.733492px;}
.ws5b{word-spacing:-1.613941px;}
.ws7f{word-spacing:-1.554166px;}
.ws8d{word-spacing:-1.434614px;}
.ws2{word-spacing:-1.322630px;}
.ws37{word-spacing:-1.315063px;}
.ws3c{word-spacing:-1.255288px;}
.ws9d{word-spacing:-1.237363px;}
.ws3b{word-spacing:-1.195512px;}
.ws38{word-spacing:-1.135736px;}
.ws67{word-spacing:-0.896634px;}
.ws6c{word-spacing:-0.836858px;}
.wsbe{word-spacing:-0.806976px;}
.ws89{word-spacing:-0.777083px;}
.ws2e{word-spacing:-0.657532px;}
.wsb6{word-spacing:-0.645581px;}
.wsca{word-spacing:-0.484186px;}
.ws91{word-spacing:-0.418429px;}
.wsc{word-spacing:-0.358654px;}
.ws28{word-spacing:-0.298878px;}
.wsa9{word-spacing:-0.268992px;}
.ws14{word-spacing:-0.239102px;}
.ws9f{word-spacing:-0.215194px;}
.wsd{word-spacing:-0.179327px;}
.wsb3{word-spacing:-0.161395px;}
.ws5{word-spacing:-0.119551px;}
.ws98{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.059776px;}
.ws27{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws23{word-spacing:-0.045430px;}
.wsc0{word-spacing:-0.028800px;}
.ws0{word-spacing:0.000000px;}
.wsce{word-spacing:0.053798px;}
.wsb{word-spacing:0.059776px;}
.wsd2{word-spacing:0.107597px;}
.ws7{word-spacing:0.119551px;}
.wsad{word-spacing:0.161395px;}
.ws22{word-spacing:0.179327px;}
.wsb1{word-spacing:0.215194px;}
.ws41{word-spacing:0.239102px;}
.ws99{word-spacing:0.268992px;}
.wsa{word-spacing:0.298878px;}
.ws4c{word-spacing:0.358654px;}
.wscc{word-spacing:0.376589px;}
.ws74{word-spacing:0.418429px;}
.ws3d{word-spacing:0.537980px;}
.ws52{word-spacing:0.568500px;}
.ws6e{word-spacing:0.568800px;}
.wsb9{word-spacing:0.591782px;}
.ws13{word-spacing:0.597756px;}
.ws50{word-spacing:0.717307px;}
.ws17{word-spacing:0.777083px;}
.ws35{word-spacing:0.836858px;}
.ws16{word-spacing:0.896634px;}
.ws61{word-spacing:0.956410px;}
.ws63{word-spacing:1.016185px;}
.ws3f{word-spacing:1.135736px;}
.wscf{word-spacing:1.237363px;}
.ws20{word-spacing:1.255288px;}
.ws3e{word-spacing:1.315063px;}
.wsd5{word-spacing:1.398758px;}
.ws62{word-spacing:1.494390px;}
.ws4f{word-spacing:1.554166px;}
.wsb0{word-spacing:1.560154px;}
.ws21{word-spacing:1.613941px;}
.ws78{word-spacing:1.673717px;}
.ws64{word-spacing:1.733492px;}
.ws96{word-spacing:1.775347px;}
.ws53{word-spacing:1.793268px;}
.ws3a{word-spacing:1.853044px;}
.ws70{word-spacing:1.912819px;}
.ws54{word-spacing:1.972595px;}
.ws5c{word-spacing:2.032370px;}
.wsb8{word-spacing:2.098138px;}
.ws29{word-spacing:2.151922px;}
.wsc3{word-spacing:2.151936px;}
.ws2f{word-spacing:2.211697px;}
.ws1f{word-spacing:2.271473px;}
.ws12{word-spacing:2.331248px;}
.ws4{word-spacing:2.391024px;}
.ws6f{word-spacing:2.510575px;}
.ws72{word-spacing:2.570351px;}
.ws46{word-spacing:2.630126px;}
.ws9b{word-spacing:2.636122px;}
.ws5d{word-spacing:2.689902px;}
.ws1d{word-spacing:2.809453px;}
.wsbd{word-spacing:2.851315px;}
.ws18{word-spacing:2.869229px;}
.ws93{word-spacing:2.929004px;}
.ws6d{word-spacing:3.048556px;}
.ws8{word-spacing:3.168107px;}
.wsd3{word-spacing:3.174106px;}
.ws1{word-spacing:3.227904px;}
.ws45{word-spacing:3.287658px;}
.ws2a{word-spacing:3.347434px;}
.ws73{word-spacing:3.407209px;}
.ws97{word-spacing:3.443098px;}
.wsf{word-spacing:3.586536px;}
.ws9{word-spacing:3.646312px;}
.wsba{word-spacing:3.658291px;}
.ws36{word-spacing:3.706087px;}
.ws31{word-spacing:3.765863px;}
.wsc6{word-spacing:3.873485px;}
.ws56{word-spacing:3.885414px;}
.ws4e{word-spacing:3.945190px;}
.ws8b{word-spacing:3.999062px;}
.ws33{word-spacing:4.064741px;}
.ws44{word-spacing:4.124516px;}
.ws48{word-spacing:4.303843px;}
.ws49{word-spacing:4.363619px;}
.ws92{word-spacing:4.423394px;}
.ws55{word-spacing:4.542946px;}
.ws15{word-spacing:4.602721px;}
.wsab{word-spacing:4.626662px;}
.ws8e{word-spacing:4.662497px;}
.ws4d{word-spacing:4.722272px;}
.ws40{word-spacing:4.782048px;}
.wsb4{word-spacing:4.841856px;}
.ws6{word-spacing:4.901599px;}
.ws5f{word-spacing:5.021150px;}
.ws95{word-spacing:5.218445px;}
.ws5e{word-spacing:5.260253px;}
.ws66{word-spacing:5.439580px;}
.wsa2{word-spacing:5.487437px;}
.ws1e{word-spacing:5.499355px;}
.ws94{word-spacing:5.595034px;}
.ws65{word-spacing:5.738458px;}
.ws47{word-spacing:5.798233px;}
.ws39{word-spacing:5.858009px;}
.wscd{word-spacing:6.348211px;}
.ws43{word-spacing:6.575316px;}
.wsd1{word-spacing:6.886195px;}
.ws51{word-spacing:7.113296px;}
.ws79{word-spacing:7.173072px;}
.ws6a{word-spacing:7.292623px;}
.ws11{word-spacing:7.471950px;}
.ws58{word-spacing:7.950155px;}
.ws42{word-spacing:8.069706px;}
.wsa1{word-spacing:8.231155px;}
.ws4a{word-spacing:8.428360px;}
.ws77{word-spacing:8.727238px;}
.ws81{word-spacing:8.979062px;}
.ws8a{word-spacing:8.985062px;}
.wsbb{word-spacing:9.141091px;}
.wsa3{word-spacing:9.143635px;}
.wsc5{word-spacing:9.144403px;}
.wscb{word-spacing:9.144835px;}
.ws5a{word-spacing:9.743423px;}
.wsaf{word-spacing:10.221696px;}
.wsc7{word-spacing:10.275494px;}
.ws71{word-spacing:11.058486px;}
.ws10{word-spacing:11.775793px;}
.ws19{word-spacing:11.910929px;}
.ws9e{word-spacing:12.158438px;}
.wsa8{word-spacing:13.180608px;}
.wsb2{word-spacing:13.342003px;}
.wsbc{word-spacing:13.386499px;}
.wsd4{word-spacing:13.387862px;}
.ws9c{word-spacing:13.388381px;}
.wsa7{word-spacing:13.390022px;}
.wsbf{word-spacing:13.392374px;}
.wsc8{word-spacing:13.394285px;}
.wsb7{word-spacing:13.394381px;}
.wsa4{word-spacing:13.395802px;}
.wsae{word-spacing:13.557197px;}
.wsc2{word-spacing:13.611130px;}
.wsa6{word-spacing:13.664794px;}
.wsd0{word-spacing:14.633165px;}
.ws1c{word-spacing:14.884124px;}
.wsc4{word-spacing:15.063552px;}
.ws32{word-spacing:15.422105px;}
.ws83{word-spacing:15.877195px;}
.wsaa{word-spacing:16.300915px;}
.wsc1{word-spacing:16.396603px;}
.wsa0{word-spacing:16.623706px;}
.wsc9{word-spacing:16.838899px;}
.wsa5{word-spacing:17.000294px;}
.ws82{word-spacing:18.000827px;}
.ws6b{word-spacing:18.470660px;}
.ws59{word-spacing:18.769538px;}
.ws69{word-spacing:26.062162px;}
.wsb5{word-spacing:31.633459px;}
.ws7c{word-spacing:58.263667px;}
.ws86{word-spacing:75.202314px;}
.ws87{word-spacing:83.610334px;}
.ws7a{word-spacing:88.444570px;}
.ws7b{word-spacing:95.599757px;}
.ws7e{word-spacing:106.036646px;}
.ws7d{word-spacing:119.486246px;}
.ws9a{word-spacing:144.556301px;}
.ws84{word-spacing:219.486900px;}
.ws26{word-spacing:440.555098px;}
.ws88{word-spacing:523.942618px;}
.ws8c{word-spacing:594.468342px;}
.ws85{word-spacing:722.567453px;}
.ws24{word-spacing:998.850276px;}
.ws2c{word-spacing:1065.918499px;}
._1e{margin-left:-7.412286px;}
._5{margin-left:-6.321202px;}
._17{margin-left:-5.260253px;}
._0{margin-left:-3.981082px;}
._3{margin-left:-2.047382px;}
._1{margin-left:-1.022170px;}
._4{width:1.091170px;}
._2c{width:2.318454px;}
._2d{width:3.929681px;}
._3a{width:12.266035px;}
._15{width:13.434498px;}
._d{width:14.824386px;}
._2{width:16.677504px;}
._6{width:18.067243px;}
._8{width:19.740960px;}
._b{width:20.921460px;}
._c{width:22.251535px;}
._3c{width:23.264881px;}
._a{width:24.328669px;}
._14{width:26.241488px;}
._1a{width:27.437000px;}
._9{width:29.161621px;}
._16{width:30.993784px;}
._1b{width:32.577702px;}
._7{width:33.832990px;}
._10{width:35.566482px;}
._19{width:38.794364px;}
._22{width:40.653392px;}
._1f{width:42.043243px;}
._18{width:43.217759px;}
._39{width:45.965513px;}
._31{width:48.738222px;}
._21{width:52.865626px;}
._3b{width:61.868160px;}
._13{width:71.713267px;}
._34{width:89.143949px;}
._23{width:102.923069px;}
._2b{width:106.090445px;}
._36{width:107.811994px;}
._2e{width:109.199090px;}
._28{width:114.429197px;}
._33{width:116.419738px;}
._38{width:122.445158px;}
._37{width:125.350272px;}
._24{width:126.964224px;}
._11{width:129.000048px;}
._26{width:134.442202px;}
._29{width:145.094285px;}
._32{width:149.344358px;}
._25{width:150.904512px;}
._35{width:152.088077px;}
._2a{width:157.629312px;}
._12{width:160.104038px;}
._27{width:170.534198px;}
._2f{width:178.078141px;}
._30{width:210.943526px;}
._1d{width:241.070630px;}
._1c{width:298.742515px;}
._e{width:945.794327px;}
._20{width:2012.721000px;}
._f{width:2036.631000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fsc{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fsb{font-size:56.058000px;}
.fs0{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.425340px;}
.yb{bottom:14.151273px;}
.y2c{bottom:63.780000px;}
.y76{bottom:108.612000px;}
.y1ea{bottom:108.957000px;}
.y156{bottom:108.961500px;}
.y1b5{bottom:109.539000px;}
.y5b{bottom:110.802000px;}
.y122{bottom:114.036000px;}
.y5c{bottom:116.226000px;}
.y111{bottom:122.973000px;}
.yde{bottom:126.852000px;}
.y1e9{bottom:128.325000px;}
.y112{bottom:128.398500px;}
.y75{bottom:128.875500px;}
.y1b4{bottom:128.907000px;}
.y155{bottom:129.225000px;}
.y5a{bottom:131.065500px;}
.y136{bottom:132.021000px;}
.y2b{bottom:138.169500px;}
.y102{bottom:140.128500px;}
.y110{bottom:143.238000px;}
.ydd{bottom:147.117000px;}
.y1e8{bottom:147.691500px;}
.y185{bottom:148.113000px;}
.y1b3{bottom:148.275000px;}
.y121{bottom:149.139000px;}
.y154{bottom:149.488500px;}
.y59{bottom:151.330500px;}
.y135{bottom:152.286000px;}
.ya5{bottom:157.134000px;}
.y2a{bottom:158.434500px;}
.y101{bottom:160.392000px;}
.y74{bottom:162.171000px;}
.y10f{bottom:163.501500px;}
.y1e7{bottom:167.059500px;}
.ydc{bottom:167.380500px;}
.y1b2{bottom:167.641500px;}
.y184{bottom:168.376500px;}
.y120{bottom:169.404000px;}
.y153{bottom:169.753500px;}
.yb5{bottom:171.448500px;}
.y58{bottom:171.594000px;}
.y134{bottom:172.549500px;}
.ya4{bottom:177.399000px;}
.y29{bottom:178.698000px;}
.yff{bottom:180.657000px;}
.y10e{bottom:183.766500px;}
.y100{bottom:186.081000px;}
.y1e6{bottom:186.427500px;}
.y1b1{bottom:187.009500px;}
.ydb{bottom:187.645500px;}
.y183{bottom:188.641500px;}
.y11f{bottom:189.667500px;}
.y152{bottom:190.017000px;}
.yb4{bottom:191.712000px;}
.y57{bottom:191.857500px;}
.y133{bottom:192.814500px;}
.ya3{bottom:197.662500px;}
.y28{bottom:198.963000px;}
.yfd{bottom:200.920500px;}
.y10d{bottom:204.030000px;}
.y1e5{bottom:205.794000px;}
.yfe{bottom:206.344500px;}
.y1b0{bottom:206.376000px;}
.yda{bottom:207.909000px;}
.y182{bottom:208.905000px;}
.yb3{bottom:211.977000px;}
.y56{bottom:212.122500px;}
.y132{bottom:213.078000px;}
.ya2{bottom:217.927500px;}
.y27{bottom:219.226500px;}
.yfc{bottom:221.184000px;}
.y11e{bottom:221.749500px;}
.y10c{bottom:224.293500px;}
.y1e4{bottom:225.162000px;}
.y1af{bottom:225.744000px;}
.yd9{bottom:228.172500px;}
.y181{bottom:229.170000px;}
.y55{bottom:232.386000px;}
.y131{bottom:233.341500px;}
.y151{bottom:236.914500px;}
.ya0{bottom:238.191000px;}
.y26{bottom:239.490000px;}
.yb2{bottom:241.207500px;}
.yfb{bottom:241.449000px;}
.ya1{bottom:243.615000px;}
.y1e3{bottom:244.528500px;}
.y10b{bottom:244.558500px;}
.y1ae{bottom:245.112000px;}
.yd8{bottom:248.437500px;}
.y180{bottom:249.433500px;}
.y150{bottom:253.353000px;}
.y130{bottom:253.606500px;}
.y9e{bottom:258.454500px;}
.y25{bottom:259.755000px;}
.y54{bottom:261.616500px;}
.yfa{bottom:261.712500px;}
.y9f{bottom:263.880000px;}
.y1e2{bottom:263.896500px;}
.y1ad{bottom:264.478500px;}
.y10a{bottom:264.822000px;}
.yd7{bottom:268.701000px;}
.y17f{bottom:269.697000px;}
.y14f{bottom:269.790000px;}
.y12f{bottom:273.870000px;}
.yb1{bottom:276.027000px;}
.y9d{bottom:278.719500px;}
.y24{bottom:280.018500px;}
.yf9{bottom:281.977500px;}
.y1e1{bottom:283.264500px;}
.y1ac{bottom:283.846500px;}
.y109{bottom:285.087000px;}
.y14e{bottom:286.228500px;}
.yd6{bottom:288.966000px;}
.y17e{bottom:289.962000px;}
.y12e{bottom:294.135000px;}
.yb0{bottom:296.290500px;}
.y53{bottom:296.436000px;}
.y9b{bottom:298.983000px;}
.y23{bottom:300.283500px;}
.yf8{bottom:302.241000px;}
.y1e0{bottom:302.631000px;}
.y1ab{bottom:303.213000px;}
.y9c{bottom:304.408500px;}
.y108{bottom:305.350500px;}
.yd4{bottom:309.229500px;}
.y14d{bottom:310.168500px;}
.y17d{bottom:310.225500px;}
.y12d{bottom:314.398500px;}
.yd5{bottom:314.655000px;}
.yaf{bottom:316.554000px;}
.y52{bottom:316.701000px;}
.y14c{bottom:318.387000px;}
.y9a{bottom:319.248000px;}
.y22{bottom:320.547000px;}
.y1df{bottom:321.999000px;}
.yf6{bottom:322.504500px;}
.y1aa{bottom:322.581000px;}
.yf7{bottom:327.930000px;}
.yd3{bottom:329.493000px;}
.y17c{bottom:330.490500px;}
.y12c{bottom:334.662000px;}
.yae{bottom:336.819000px;}
.y99{bottom:339.511500px;}
.y107{bottom:340.351500px;}
.y21{bottom:340.810500px;}
.y1de{bottom:341.367000px;}
.y1a9{bottom:341.949000px;}
.yf4{bottom:342.769500px;}
.yf5{bottom:348.193500px;}
.yd2{bottom:349.758000px;}
.y17b{bottom:350.754000px;}
.y51{bottom:354.544500px;}
.y12b{bottom:354.927000px;}
.yad{bottom:357.082500px;}
.y14b{bottom:358.227000px;}
.y1dd{bottom:360.733500px;}
.y20{bottom:361.075500px;}
.y1a8{bottom:361.315500px;}
.yf3{bottom:363.033000px;}
.y98{bottom:368.742000px;}
.yd1{bottom:370.021500px;}
.y17a{bottom:371.017500px;}
.y50{bottom:375.162000px;}
.y12a{bottom:375.190500px;}
.yac{bottom:377.347500px;}
.y1dc{bottom:380.101500px;}
.y1a7{bottom:380.683500px;}
.y1f{bottom:381.339000px;}
.yf2{bottom:383.298000px;}
.yd0{bottom:390.286500px;}
.y179{bottom:391.282500px;}
.y14a{bottom:395.331000px;}
.y129{bottom:395.455500px;}
.yab{bottom:397.611000px;}
.y1db{bottom:399.468000px;}
.y1a6{bottom:400.050000px;}
.y1e{bottom:401.604000px;}
.y97{bottom:403.561500px;}
.y73{bottom:405.369000px;}
.y4f{bottom:405.558000px;}
.y178{bottom:411.546000px;}
.y149{bottom:415.594500px;}
.y128{bottom:415.719000px;}
.yaa{bottom:417.874500px;}
.y1da{bottom:418.836000px;}
.y1a5{bottom:419.418000px;}
.ycf{bottom:419.517000px;}
.y1d{bottom:421.867500px;}
.y96{bottom:423.825000px;}
.y72{bottom:425.632500px;}
.y4e{bottom:425.821500px;}
.y177{bottom:431.811000px;}
.y148{bottom:435.859500px;}
.y127{bottom:435.982500px;}
.y1d9{bottom:438.204000px;}
.y1a4{bottom:438.786000px;}
.y1c{bottom:442.131000px;}
.y95{bottom:444.090000px;}
.y71{bottom:445.897500px;}
.y4d{bottom:446.085000px;}
.y176{bottom:452.074500px;}
.ya9{bottom:452.875500px;}
.yce{bottom:454.336500px;}
.y147{bottom:456.123000px;}
.y126{bottom:456.247500px;}
.y1d8{bottom:457.570500px;}
.y1a3{bottom:458.152500px;}
.y94{bottom:464.353500px;}
.y70{bottom:466.161000px;}
.y4c{bottom:466.350000px;}
.y1b{bottom:471.361500px;}
.y175{bottom:472.338000px;}
.ycd{bottom:474.600000px;}
.y146{bottom:476.386500px;}
.y1d7{bottom:476.938500px;}
.y1a2{bottom:477.520500px;}
.y93{bottom:484.618500px;}
.y6f{bottom:486.426000px;}
.y4b{bottom:486.613500px;}
.y125{bottom:491.247000px;}
.y174{bottom:492.603000px;}
.ycc{bottom:494.863500px;}
.y1d6{bottom:496.305000px;}
.y145{bottom:496.651500px;}
.y1a1{bottom:496.887000px;}
.y92{bottom:504.882000px;}
.y6e{bottom:506.689500px;}
.y4a{bottom:506.878500px;}
.y173{bottom:512.866500px;}
.ycb{bottom:515.128500px;}
.y1d5{bottom:515.673000px;}
.y1a0{bottom:516.255000px;}
.y144{bottom:516.915000px;}
.y91{bottom:525.145500px;}
.y6d{bottom:526.953000px;}
.y49{bottom:527.142000px;}
.y1d4{bottom:535.041000px;}
.yca{bottom:535.392000px;}
.y19f{bottom:535.623000px;}
.y106{bottom:536.905500px;}
.y143{bottom:537.180000px;}
.y11d{bottom:539.631000px;}
.y172{bottom:542.097000px;}
.y90{bottom:545.410500px;}
.y6c{bottom:547.218000px;}
.y48{bottom:547.405500px;}
.y1a{bottom:547.770000px;}
.y1d3{bottom:554.407500px;}
.y19e{bottom:554.989500px;}
.yc8{bottom:555.657000px;}
.y105{bottom:557.169000px;}
.y142{bottom:557.443500px;}
.y11c{bottom:559.894500px;}
.yc9{bottom:561.081000px;}
.y8f{bottom:565.674000px;}
.y6b{bottom:567.481500px;}
.y47{bottom:567.670500px;}
.y1d1{bottom:573.775500px;}
.yc6{bottom:575.920500px;}
.y171{bottom:576.916500px;}
.y141{bottom:577.707000px;}
.y1d2{bottom:578.658000px;}
.yc7{bottom:581.344500px;}
.y19d{bottom:583.324500px;}
.y8e{bottom:585.939000px;}
.y19{bottom:585.967500px;}
.y6a{bottom:587.746500px;}
.y46{bottom:587.934000px;}
.y11b{bottom:591.976500px;}
.y104{bottom:592.170000px;}
.y1d0{bottom:593.142000px;}
.yc5{bottom:596.184000px;}
.y16f{bottom:597.181500px;}
.y140{bottom:597.972000px;}
.y170{bottom:602.605500px;}
.y8d{bottom:606.202500px;}
.y18{bottom:606.231000px;}
.y69{bottom:608.010000px;}
.y45{bottom:608.199000px;}
.y1cf{bottom:612.510000px;}
.yf1{bottom:615.168000px;}
.y16d{bottom:617.445000px;}
.y13e{bottom:618.235500px;}
.y16e{bottom:622.869000px;}
.y19c{bottom:623.386500px;}
.y13f{bottom:623.661000px;}
.yc4{bottom:625.414500px;}
.y8c{bottom:626.466000px;}
.y17{bottom:626.496000px;}
.y68{bottom:628.273500px;}
.y44{bottom:628.462500px;}
.y1ce{bottom:631.878000px;}
.y16c{bottom:637.708500px;}
.y13d{bottom:638.500500px;}
.y19b{bottom:641.962500px;}
.y8b{bottom:646.731000px;}
.y16{bottom:646.759500px;}
.y67{bottom:648.538500px;}
.y43{bottom:648.726000px;}
.yf0{bottom:649.987500px;}
.y1cd{bottom:651.244500px;}
.y16b{bottom:657.973500px;}
.y13c{bottom:658.764000px;}
.yc3{bottom:660.234000px;}
.y19a{bottom:660.538500px;}
.y8a{bottom:666.994500px;}
.y15{bottom:667.023000px;}
.y66{bottom:668.802000px;}
.yef{bottom:670.252500px;}
.y1cc{bottom:670.612500px;}
.y16a{bottom:678.237000px;}
.y13b{bottom:679.027500px;}
.y199{bottom:679.113000px;}
.yc2{bottom:680.499000px;}
.y42{bottom:684.538500px;}
.y89{bottom:687.258000px;}
.y14{bottom:687.288000px;}
.y65{bottom:689.067000px;}
.y1cb{bottom:689.979000px;}
.yee{bottom:690.516000px;}
.y198{bottom:697.689000px;}
.y168{bottom:698.502000px;}
.y13a{bottom:699.292500px;}
.yc1{bottom:700.762500px;}
.y41{bottom:703.422000px;}
.y169{bottom:703.926000px;}
.y88{bottom:707.523000px;}
.y13{bottom:707.551500px;}
.y64{bottom:709.330500px;}
.y1ca{bottom:709.347000px;}
.yed{bottom:710.781000px;}
.y197{bottom:716.263500px;}
.y139{bottom:719.556000px;}
.yc0{bottom:721.027500px;}
.y40{bottom:721.998000px;}
.y167{bottom:726.321000px;}
.y87{bottom:727.786500px;}
.y12{bottom:727.816500px;}
.y1c9{bottom:728.715000px;}
.y63{bottom:729.594000px;}
.yec{bottom:731.044500px;}
.y196{bottom:734.839500px;}
.y166{bottom:736.573500px;}
.y138{bottom:739.819500px;}
.y165{bottom:739.897500px;}
.y3f{bottom:740.572500px;}
.ybf{bottom:741.291000px;}
.y86{bottom:748.051500px;}
.y11{bottom:748.080000px;}
.y1c8{bottom:748.081500px;}
.y62{bottom:749.859000px;}
.yeb{bottom:751.308000px;}
.y195{bottom:753.415500px;}
.y3e{bottom:755.391000px;}
.ybe{bottom:761.554500px;}
.y164{bottom:762.927000px;}
.y1c7{bottom:767.449500px;}
.y85{bottom:768.315000px;}
.y10{bottom:768.343500px;}
.y61{bottom:770.122500px;}
.yea{bottom:771.573000px;}
.y194{bottom:771.990000px;}
.y137{bottom:774.820500px;}
.ybc{bottom:781.819500px;}
.y162{bottom:783.190500px;}
.y1c6{bottom:786.816000px;}
.y3d{bottom:787.141500px;}
.ybd{bottom:787.243500px;}
.y84{bottom:788.578500px;}
.yf{bottom:788.608500px;}
.y163{bottom:788.616000px;}
.y60{bottom:790.387500px;}
.y193{bottom:790.566000px;}
.ye9{bottom:791.836500px;}
.y3c{bottom:798.918000px;}
.ybb{bottom:802.083000px;}
.ya8{bottom:803.134500px;}
.y161{bottom:803.455500px;}
.y1c5{bottom:806.184000px;}
.y83{bottom:808.843500px;}
.ye{bottom:808.872000px;}
.y192{bottom:809.140500px;}
.ye8{bottom:812.101500px;}
.y1ee{bottom:813.555000px;}
.ya7{bottom:823.398000px;}
.y5f{bottom:823.683000px;}
.y160{bottom:823.719000px;}
.y1c4{bottom:825.552000px;}
.y191{bottom:827.716500px;}
.y82{bottom:829.107000px;}
.yd{bottom:829.137000px;}
.ye7{bottom:832.365000px;}
.y1ed{bottom:832.923000px;}
.y103{bottom:833.590500px;}
.y124{bottom:837.789000px;}
.yba{bottom:837.895500px;}
.y3b{bottom:843.663000px;}
.y1c3{bottom:844.918500px;}
.y190{bottom:846.292500px;}
.y1ec{bottom:852.289500px;}
.ye6{bottom:852.628500px;}
.y1eb{bottom:852.696000px;}
.yb9{bottom:856.470000px;}
.y123{bottom:858.054000px;}
.y81{bottom:858.337500px;}
.y15f{bottom:859.530000px;}
.y3a{bottom:863.926500px;}
.y1c2{bottom:864.286500px;}
.ya{bottom:864.568555px;}
.y9{bottom:864.961500px;}
.ye5{bottom:872.893500px;}
.yb8{bottom:875.046000px;}
.y18f{bottom:875.986500px;}
.y15e{bottom:878.106000px;}
.y1c1{bottom:883.653000px;}
.y39{bottom:884.191500px;}
.y80{bottom:893.157000px;}
.y15d{bottom:896.682000px;}
.ye4{bottom:898.582500px;}
.y18e{bottom:900.151500px;}
.yb7{bottom:902.724000px;}
.y1c0{bottom:903.021000px;}
.y8{bottom:904.335000px;}
.y38{bottom:904.455000px;}
.y11a{bottom:910.164000px;}
.y7f{bottom:913.422000px;}
.y15c{bottom:915.256500px;}
.ye3{bottom:918.846000px;}
.y1bf{bottom:922.389000px;}
.y7{bottom:922.491000px;}
.y37{bottom:924.718500px;}
.y119{bottom:930.427500px;}
.y7e{bottom:933.685500px;}
.y15b{bottom:933.832500px;}
.yb6{bottom:937.723500px;}
.y18d{bottom:938.349000px;}
.y6{bottom:940.648500px;}
.y1be{bottom:941.755500px;}
.y36{bottom:944.983500px;}
.y15a{bottom:948.651000px;}
.y118{bottom:950.692500px;}
.y7d{bottom:953.949000px;}
.y1bd{bottom:961.123500px;}
.y18c{bottom:962.512500px;}
.y35{bottom:965.247000px;}
.y5{bottom:967.771500px;}
.y117{bottom:970.956000px;}
.y7c{bottom:974.214000px;}
.y18b{bottom:977.710500px;}
.y159{bottom:978.082500px;}
.ye2{bottom:979.638000px;}
.y1bc{bottom:980.490000px;}
.y34{bottom:985.512000px;}
.y157{bottom:988.333500px;}
.ya6{bottom:990.936000px;}
.y116{bottom:991.219500px;}
.y18a{bottom:992.908500px;}
.y7b{bottom:994.477500px;}
.y158{bottom:999.544500px;}
.y1bb{bottom:999.858000px;}
.ye1{bottom:999.903000px;}
.y33{bottom:1005.775500px;}
.y189{bottom:1008.106500px;}
.y4{bottom:1010.451000px;}
.y115{bottom:1011.484500px;}
.y7a{bottom:1014.742500px;}
.y1ba{bottom:1019.226000px;}
.y32{bottom:1026.039000px;}
.y114{bottom:1031.748000px;}
.y188{bottom:1032.271500px;}
.y79{bottom:1035.006000px;}
.y1b9{bottom:1038.592500px;}
.y3{bottom:1040.848500px;}
.y31{bottom:1046.304000px;}
.y187{bottom:1047.469500px;}
.y78{bottom:1055.269500px;}
.y1b8{bottom:1057.960500px;}
.ye0{bottom:1060.695000px;}
.y113{bottom:1060.978500px;}
.y186{bottom:1062.667500px;}
.y30{bottom:1066.567500px;}
.y2{bottom:1071.244500px;}
.y77{bottom:1075.534500px;}
.y1b7{bottom:1077.327000px;}
.ydf{bottom:1080.958500px;}
.y2f{bottom:1086.832500px;}
.y5e{bottom:1095.798000px;}
.y1b6{bottom:1096.695000px;}
.y1{bottom:1100.145000px;}
.y2e{bottom:1116.063000px;}
.y5d{bottom:1121.487000px;}
.y2d{bottom:1168.366500px;}
.h10{height:23.242762px;}
.h6{height:25.508090px;}
.h12{height:30.582721px;}
.h13{height:33.072749px;}
.h8{height:33.112997px;}
.hc{height:33.299897px;}
.h7{height:34.199443px;}
.ha{height:35.052500px;}
.h1e{height:38.519654px;}
.h16{height:38.896243px;}
.h5{height:39.165235px;}
.hd{height:39.434227px;}
.h1a{height:40.931698px;}
.h19{height:40.937698px;}
.h4{height:43.217759px;}
.h9{height:43.516637px;}
.h2{height:43.815515px;}
.h14{height:44.938762px;}
.h11{height:44.944762px;}
.hf{height:46.714950px;}
.he{height:49.991558px;}
.h1d{height:51.611558px;}
.h15{height:71.776243px;}
.h3{height:77.792486px;}
.h1b{height:84.279515px;}
.h18{height:84.520637px;}
.hb{height:90.485897px;}
.h1c{height:99.792749px;}
.h17{height:101.656637px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:29.274117px;}
.x1{left:114.265500px;}
.x3{left:122.110500px;}
.x2{left:123.307500px;}
.x76{left:133.818000px;}
.x77{left:140.623500px;}
.x8{left:146.692500px;}
.x1b{left:151.744500px;}
.x17{left:156.001500px;}
.x16{left:157.632000px;}
.x1c{left:159.216000px;}
.xd{left:167.706000px;}
.x5f{left:172.780500px;}
.xe{left:175.177500px;}
.xac{left:176.518500px;}
.xa4{left:180.228000px;}
.x7e{left:182.353500px;}
.xa3{left:183.385500px;}
.x42{left:184.842000px;}
.xab{left:187.114500px;}
.x6{left:189.736500px;}
.x51{left:196.120500px;}
.x7{left:199.933500px;}
.x43{left:203.596500px;}
.x55{left:211.921500px;}
.x29{left:215.779500px;}
.x44{left:218.539500px;}
.x84{left:223.366500px;}
.x1a{left:225.900000px;}
.x60{left:229.632000px;}
.x11{left:232.671000px;}
.x96{left:235.588500px;}
.x12{left:240.142500px;}
.x97{left:242.394000px;}
.x72{left:244.222500px;}
.x73{left:250.647000px;}
.xb2{left:253.657500px;}
.x98{left:254.691000px;}
.xa0{left:256.678500px;}
.x79{left:257.982000px;}
.x9d{left:260.485500px;}
.x7c{left:261.933000px;}
.x7a{left:264.787500px;}
.x9f{left:266.604000px;}
.x56{left:269.230500px;}
.x57{left:276.037500px;}
.x3b{left:277.234500px;}
.x37{left:280.804500px;}
.xa6{left:284.620500px;}
.x80{left:288.352500px;}
.x3c{left:292.177500px;}
.x38{left:295.749000px;}
.x33{left:297.412500px;}
.x61{left:306.487500px;}
.x34{left:312.357000px;}
.x7b{left:313.807500px;}
.xa1{left:316.941000px;}
.x7f{left:319.185000px;}
.x3d{left:320.728500px;}
.x99{left:321.808500px;}
.xa5{left:323.833500px;}
.x8d{left:325.306500px;}
.x9a{left:328.615500px;}
.x8e{left:332.113500px;}
.x83{left:334.026000px;}
.x3e{left:335.671500px;}
.x22{left:338.929500px;}
.x4c{left:344.238000px;}
.x23{left:345.736500px;}
.xa7{left:346.983000px;}
.xb{left:351.948000px;}
.xc{left:359.419500px;}
.x1e{left:367.135500px;}
.x49{left:372.015000px;}
.x1f{left:374.607000px;}
.x13{left:386.010000px;}
.x4a{left:394.579500px;}
.x8f{left:396.409500px;}
.x94{left:400.965000px;}
.x1d{left:402.622500px;}
.x66{left:408.330000px;}
.x4b{left:409.524000px;}
.x67{left:414.756000px;}
.x45{left:421.252500px;}
.x46{left:436.197000px;}
.x47{left:440.007000px;}
.x81{left:441.145500px;}
.x9b{left:442.956000px;}
.x82{left:447.952500px;}
.x14{left:449.241000px;}
.x48{left:454.951500px;}
.x95{left:460.867500px;}
.x15{left:468.222000px;}
.x5c{left:470.151000px;}
.xa2{left:484.077000px;}
.x5d{left:485.917500px;}
.x6b{left:504.118500px;}
.x6c{left:508.624500px;}
.x9c{left:510.073500px;}
.x90{left:517.096500px;}
.x85{left:522.274500px;}
.x91{left:523.903500px;}
.x6d{left:525.468000px;}
.x86{left:529.081500px;}
.x68{left:533.296500px;}
.x4d{left:541.381500px;}
.x89{left:543.816000px;}
.x6e{left:544.959000px;}
.x4e{left:548.188500px;}
.x8a{left:550.621500px;}
.x69{left:551.901000px;}
.x6f{left:556.003500px;}
.x7d{left:558.328500px;}
.x52{left:559.999500px;}
.x53{left:564.505500px;}
.x6a{left:566.845500px;}
.x70{left:575.494500px;}
.x54{left:578.107500px;}
.x92{left:588.199500px;}
.x18{left:590.725500px;}
.x87{left:592.909500px;}
.x93{left:595.006500px;}
.x19{left:598.197000px;}
.x88{left:599.716500px;}
.x35{left:605.667000px;}
.x4f{left:610.896000px;}
.x8b{left:616.585500px;}
.x50{left:617.703000px;}
.x36{left:620.611500px;}
.x8c{left:623.392500px;}
.x24{left:625.611000px;}
.x25{left:632.416500px;}
.x20{left:634.530000px;}
.x39{left:635.983500px;}
.x2a{left:638.983500px;}
.x21{left:641.335500px;}
.x2b{left:646.455000px;}
.xaf{left:648.910500px;}
.x2c{left:650.266500px;}
.x78{left:652.954500px;}
.x3a{left:654.738000px;}
.xf{left:656.473500px;}
.x10{left:663.945000px;}
.x2d{left:665.209500px;}
.x62{left:667.030500px;}
.x74{left:670.774500px;}
.x26{left:671.784000px;}
.x27{left:675.546000px;}
.xb0{left:677.155500px;}
.x58{left:680.371500px;}
.xa8{left:682.074000px;}
.x63{left:688.627500px;}
.x28{left:690.490500px;}
.x59{left:696.411000px;}
.x4{left:701.339982px;}
.xb1{left:704.055000px;}
.x71{left:707.512500px;}
.x64{left:708.771000px;}
.x65{left:719.979000px;}
.x5a{left:724.969500px;}
.x2e{left:727.504500px;}
.x75{left:732.093000px;}
.x2f{left:734.977500px;}
.x3f{left:737.443500px;}
.x30{left:738.639000px;}
.x5b{left:741.009000px;}
.xad{left:749.590500px;}
.x40{left:752.386500px;}
.x31{left:753.582000px;}
.x41{left:756.183000px;}
.x32{left:757.243500px;}
.x9e{left:759.316500px;}
.xa9{left:760.687500px;}
.x9{left:764.367000px;}
.x5e{left:765.819000px;}
.xaa{left:767.494500px;}
.xa{left:771.838500px;}
.xae{left:776.490000px;}
@media print{
.v13{vertical-align:-17.360000pt;}
.v10{vertical-align:-11.120000pt;}
.v5{vertical-align:-10.016000pt;}
.v4{vertical-align:-8.789333pt;}
.v7{vertical-align:-7.173333pt;}
.vd{vertical-align:-1.413333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.016000pt;}
.ve{vertical-align:11.120000pt;}
.v8{vertical-align:17.360000pt;}
.v9{vertical-align:19.290667pt;}
.v11{vertical-align:21.941333pt;}
.v12{vertical-align:22.853333pt;}
.va{vertical-align:29.226667pt;}
.vc{vertical-align:31.888000pt;}
.vf{vertical-align:36.448000pt;}
.vb{vertical-align:39.861333pt;}
.v3{vertical-align:41.514667pt;}
.v2{vertical-align:50.832000pt;}
.v1{vertical-align:66.416000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.003230pt;}
.ls47{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.447791pt;}
.ls3a{letter-spacing:0.462234pt;}
.ls17{letter-spacing:0.466099pt;}
.ls23{letter-spacing:0.482502pt;}
.ls24{letter-spacing:0.487835pt;}
.ls44{letter-spacing:0.505874pt;}
.ls1f{letter-spacing:0.578745pt;}
.ls3e{letter-spacing:0.601548pt;}
.ls28{letter-spacing:0.661852pt;}
.ls1c{letter-spacing:0.665067pt;}
.ls29{letter-spacing:0.667185pt;}
.ls36{letter-spacing:1.060898pt;}
.ls4{letter-spacing:1.133683pt;}
.ls34{letter-spacing:1.171230pt;}
.ls38{letter-spacing:1.247565pt;}
.ls31{letter-spacing:1.262881pt;}
.ls3f{letter-spacing:1.326400pt;}
.ls2c{letter-spacing:1.331230pt;}
.ls2e{letter-spacing:1.331733pt;}
.lsd{letter-spacing:1.353874pt;}
.ls32{letter-spacing:1.373897pt;}
.ls1d{letter-spacing:1.433139pt;}
.ls1b{letter-spacing:1.590839pt;}
.ls1{letter-spacing:1.654338pt;}
.ls19{letter-spacing:1.862839pt;}
.lse{letter-spacing:1.935207pt;}
.lsa{letter-spacing:2.020013pt;}
.ls11{letter-spacing:2.312158pt;}
.ls18{letter-spacing:2.656533pt;}
.ls45{letter-spacing:2.657067pt;}
.ls13{letter-spacing:3.107601pt;}
.ls37{letter-spacing:3.118133pt;}
.ls25{letter-spacing:3.158400pt;}
.ls22{letter-spacing:3.163733pt;}
.ls2f{letter-spacing:3.387850pt;}
.lsb{letter-spacing:3.393183pt;}
.ls40{letter-spacing:3.825067pt;}
.ls2d{letter-spacing:7.636214pt;}
.ls2{letter-spacing:10.626533pt;}
.ls3d{letter-spacing:10.971362pt;}
.ls2a{letter-spacing:10.995733pt;}
.ls2b{letter-spacing:11.629762pt;}
.ls8{letter-spacing:11.632696pt;}
.ls33{letter-spacing:11.635096pt;}
.ls1a{letter-spacing:11.638029pt;}
.ls7{letter-spacing:11.659185pt;}
.ls4f{letter-spacing:11.943115pt;}
.ls46{letter-spacing:11.954133pt;}
.ls4a{letter-spacing:11.959467pt;}
.lsc{letter-spacing:12.017067pt;}
.ls4b{letter-spacing:12.098781pt;}
.ls4e{letter-spacing:12.101538pt;}
.ls48{letter-spacing:12.104664pt;}
.ls49{letter-spacing:12.123152pt;}
.ls20{letter-spacing:13.177199pt;}
.ls27{letter-spacing:13.230333pt;}
.ls16{letter-spacing:14.608533pt;}
.ls4d{letter-spacing:14.609782pt;}
.ls26{letter-spacing:14.611813pt;}
.ls42{letter-spacing:15.395096pt;}
.ls43{letter-spacing:15.937067pt;}
.ls6{letter-spacing:16.061762pt;}
.ls5{letter-spacing:16.085852pt;}
.ls21{letter-spacing:16.577766pt;}
.ls30{letter-spacing:19.873067pt;}
.ls41{letter-spacing:22.398881pt;}
.ls9{letter-spacing:22.945430pt;}
.ls0{letter-spacing:25.103565pt;}
.ls1e{letter-spacing:64.356267pt;}
.ls14{letter-spacing:70.053867pt;}
.lsf{letter-spacing:70.774084pt;}
.ls12{letter-spacing:71.905513pt;}
.ls10{letter-spacing:72.070846pt;}
.ls3b{letter-spacing:89.877867pt;}
.ls39{letter-spacing:97.246933pt;}
.ls35{letter-spacing:98.586231pt;}
.ls3c{letter-spacing:141.336429pt;}
.ws25{word-spacing:-13.283467pt;}
.ws2d{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws80{word-spacing:-10.095467pt;}
.ws90{word-spacing:-2.869229pt;}
.ws60{word-spacing:-2.762961pt;}
.ws8f{word-spacing:-2.550426pt;}
.ws34{word-spacing:-2.444158pt;}
.wse{word-spacing:-2.391024pt;}
.ws30{word-spacing:-2.284756pt;}
.ws4b{word-spacing:-2.231622pt;}
.ws68{word-spacing:-2.072221pt;}
.ws75{word-spacing:-1.965953pt;}
.ws76{word-spacing:-1.806551pt;}
.wsac{word-spacing:-1.769370pt;}
.ws3{word-spacing:-1.696326pt;}
.ws57{word-spacing:-1.540882pt;}
.ws5b{word-spacing:-1.434614pt;}
.ws7f{word-spacing:-1.381481pt;}
.ws8d{word-spacing:-1.275213pt;}
.ws2{word-spacing:-1.175671pt;}
.ws37{word-spacing:-1.168945pt;}
.ws3c{word-spacing:-1.115811pt;}
.ws9d{word-spacing:-1.099878pt;}
.ws3b{word-spacing:-1.062677pt;}
.ws38{word-spacing:-1.009543pt;}
.ws67{word-spacing:-0.797008pt;}
.ws6c{word-spacing:-0.743874pt;}
.wsbe{word-spacing:-0.717312pt;}
.ws89{word-spacing:-0.690740pt;}
.ws2e{word-spacing:-0.584473pt;}
.wsb6{word-spacing:-0.573850pt;}
.wsca{word-spacing:-0.430387pt;}
.ws91{word-spacing:-0.371937pt;}
.wsc{word-spacing:-0.318803pt;}
.ws28{word-spacing:-0.265669pt;}
.wsa9{word-spacing:-0.239104pt;}
.ws14{word-spacing:-0.212535pt;}
.ws9f{word-spacing:-0.191283pt;}
.wsd{word-spacing:-0.159402pt;}
.wsb3{word-spacing:-0.143462pt;}
.ws5{word-spacing:-0.106268pt;}
.ws98{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws27{word-spacing:-0.047821pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws23{word-spacing:-0.040382pt;}
.wsc0{word-spacing:-0.025600pt;}
.ws0{word-spacing:0.000000pt;}
.wsce{word-spacing:0.047821pt;}
.wsb{word-spacing:0.053134pt;}
.wsd2{word-spacing:0.095642pt;}
.ws7{word-spacing:0.106268pt;}
.wsad{word-spacing:0.143462pt;}
.ws22{word-spacing:0.159402pt;}
.wsb1{word-spacing:0.191283pt;}
.ws41{word-spacing:0.212535pt;}
.ws99{word-spacing:0.239104pt;}
.wsa{word-spacing:0.265669pt;}
.ws4c{word-spacing:0.318803pt;}
.wscc{word-spacing:0.334746pt;}
.ws74{word-spacing:0.371937pt;}
.ws3d{word-spacing:0.478205pt;}
.ws52{word-spacing:0.505333pt;}
.ws6e{word-spacing:0.505600pt;}
.wsb9{word-spacing:0.526029pt;}
.ws13{word-spacing:0.531339pt;}
.ws50{word-spacing:0.637606pt;}
.ws17{word-spacing:0.690740pt;}
.ws35{word-spacing:0.743874pt;}
.ws16{word-spacing:0.797008pt;}
.ws61{word-spacing:0.850142pt;}
.ws63{word-spacing:0.903276pt;}
.ws3f{word-spacing:1.009543pt;}
.wscf{word-spacing:1.099878pt;}
.ws20{word-spacing:1.115811pt;}
.ws3e{word-spacing:1.168945pt;}
.wsd5{word-spacing:1.243341pt;}
.ws62{word-spacing:1.328347pt;}
.ws4f{word-spacing:1.381481pt;}
.wsb0{word-spacing:1.386803pt;}
.ws21{word-spacing:1.434614pt;}
.ws78{word-spacing:1.487748pt;}
.ws64{word-spacing:1.540882pt;}
.ws96{word-spacing:1.578086pt;}
.ws53{word-spacing:1.594016pt;}
.ws3a{word-spacing:1.647150pt;}
.ws70{word-spacing:1.700284pt;}
.ws54{word-spacing:1.753418pt;}
.ws5c{word-spacing:1.806551pt;}
.wsb8{word-spacing:1.865011pt;}
.ws29{word-spacing:1.912819pt;}
.wsc3{word-spacing:1.912832pt;}
.ws2f{word-spacing:1.965953pt;}
.ws1f{word-spacing:2.019087pt;}
.ws12{word-spacing:2.072221pt;}
.ws4{word-spacing:2.125355pt;}
.ws6f{word-spacing:2.231622pt;}
.ws72{word-spacing:2.284756pt;}
.ws46{word-spacing:2.337890pt;}
.ws9b{word-spacing:2.343219pt;}
.ws5d{word-spacing:2.391024pt;}
.ws1d{word-spacing:2.497292pt;}
.wsbd{word-spacing:2.534502pt;}
.ws18{word-spacing:2.550426pt;}
.ws93{word-spacing:2.603559pt;}
.ws6d{word-spacing:2.709827pt;}
.ws8{word-spacing:2.816095pt;}
.wsd3{word-spacing:2.821427pt;}
.ws1{word-spacing:2.869248pt;}
.ws45{word-spacing:2.922363pt;}
.ws2a{word-spacing:2.975497pt;}
.ws73{word-spacing:3.028630pt;}
.ws97{word-spacing:3.060531pt;}
.wsf{word-spacing:3.188032pt;}
.ws9{word-spacing:3.241166pt;}
.wsba{word-spacing:3.251814pt;}
.ws36{word-spacing:3.294300pt;}
.ws31{word-spacing:3.347434pt;}
.wsc6{word-spacing:3.443098pt;}
.ws56{word-spacing:3.453701pt;}
.ws4e{word-spacing:3.506835pt;}
.ws8b{word-spacing:3.554722pt;}
.ws33{word-spacing:3.613103pt;}
.ws44{word-spacing:3.666237pt;}
.ws48{word-spacing:3.825638pt;}
.ws49{word-spacing:3.878772pt;}
.ws92{word-spacing:3.931906pt;}
.ws55{word-spacing:4.038174pt;}
.ws15{word-spacing:4.091308pt;}
.wsab{word-spacing:4.112589pt;}
.ws8e{word-spacing:4.144442pt;}
.ws4d{word-spacing:4.197575pt;}
.ws40{word-spacing:4.250709pt;}
.wsb4{word-spacing:4.303872pt;}
.ws6{word-spacing:4.356977pt;}
.ws5f{word-spacing:4.463245pt;}
.ws95{word-spacing:4.638618pt;}
.ws5e{word-spacing:4.675780pt;}
.ws66{word-spacing:4.835182pt;}
.wsa2{word-spacing:4.877722pt;}
.ws1e{word-spacing:4.888316pt;}
.ws94{word-spacing:4.973363pt;}
.ws65{word-spacing:5.100851pt;}
.ws47{word-spacing:5.153985pt;}
.ws39{word-spacing:5.207119pt;}
.wscd{word-spacing:5.642854pt;}
.ws43{word-spacing:5.844725pt;}
.wsd1{word-spacing:6.121062pt;}
.ws51{word-spacing:6.322930pt;}
.ws79{word-spacing:6.376064pt;}
.ws6a{word-spacing:6.482332pt;}
.ws11{word-spacing:6.641733pt;}
.ws58{word-spacing:7.066804pt;}
.ws42{word-spacing:7.173072pt;}
.wsa1{word-spacing:7.316582pt;}
.ws4a{word-spacing:7.491875pt;}
.ws77{word-spacing:7.757545pt;}
.ws81{word-spacing:7.981389pt;}
.ws8a{word-spacing:7.986722pt;}
.wsbb{word-spacing:8.125414pt;}
.wsa3{word-spacing:8.127676pt;}
.wsc5{word-spacing:8.128358pt;}
.wscb{word-spacing:8.128742pt;}
.ws5a{word-spacing:8.660820pt;}
.wsaf{word-spacing:9.085952pt;}
.wsc7{word-spacing:9.133773pt;}
.ws71{word-spacing:9.829765pt;}
.ws10{word-spacing:10.467372pt;}
.ws19{word-spacing:10.587492pt;}
.ws9e{word-spacing:10.807501pt;}
.wsa8{word-spacing:11.716096pt;}
.wsb2{word-spacing:11.859558pt;}
.wsbc{word-spacing:11.899110pt;}
.wsd4{word-spacing:11.900322pt;}
.ws9c{word-spacing:11.900783pt;}
.wsa7{word-spacing:11.902242pt;}
.wsbf{word-spacing:11.904333pt;}
.wsc8{word-spacing:11.906031pt;}
.wsb7{word-spacing:11.906116pt;}
.wsa4{word-spacing:11.907379pt;}
.wsae{word-spacing:12.050842pt;}
.wsc2{word-spacing:12.098782pt;}
.wsa6{word-spacing:12.146483pt;}
.wsd0{word-spacing:13.007258pt;}
.ws1c{word-spacing:13.230333pt;}
.wsc4{word-spacing:13.389824pt;}
.ws32{word-spacing:13.708538pt;}
.ws83{word-spacing:14.113062pt;}
.wsaa{word-spacing:14.489702pt;}
.wsc1{word-spacing:14.574758pt;}
.wsa0{word-spacing:14.776627pt;}
.wsc9{word-spacing:14.967910pt;}
.wsa5{word-spacing:15.111373pt;}
.ws82{word-spacing:16.000735pt;}
.ws6b{word-spacing:16.418365pt;}
.ws59{word-spacing:16.684034pt;}
.ws69{word-spacing:23.166366pt;}
.wsb5{word-spacing:28.118630pt;}
.ws7c{word-spacing:51.789926pt;}
.ws86{word-spacing:66.846501pt;}
.ws87{word-spacing:74.320297pt;}
.ws7a{word-spacing:78.617395pt;}
.ws7b{word-spacing:84.977562pt;}
.ws7e{word-spacing:94.254797pt;}
.ws7d{word-spacing:106.209997pt;}
.ws9a{word-spacing:128.494490pt;}
.ws84{word-spacing:195.099467pt;}
.ws26{word-spacing:391.604531pt;}
.ws88{word-spacing:465.726771pt;}
.ws8c{word-spacing:528.416304pt;}
.ws85{word-spacing:642.282180pt;}
.ws24{word-spacing:887.866912pt;}
.ws2c{word-spacing:947.483110pt;}
._1e{margin-left:-6.588699pt;}
._5{margin-left:-5.618846pt;}
._17{margin-left:-4.675780pt;}
._0{margin-left:-3.538739pt;}
._3{margin-left:-1.819895pt;}
._1{margin-left:-0.908595pt;}
._4{width:0.969929pt;}
._2c{width:2.060848pt;}
._2d{width:3.493050pt;}
._3a{width:10.903142pt;}
._15{width:11.941776pt;}
._d{width:13.177232pt;}
._2{width:14.824448pt;}
._6{width:16.059771pt;}
._8{width:17.547520pt;}
._b{width:18.596853pt;}
._c{width:19.779142pt;}
._3c{width:20.679894pt;}
._a{width:21.625484pt;}
._14{width:23.325767pt;}
._1a{width:24.388445pt;}
._9{width:25.921441pt;}
._16{width:27.550030pt;}
._1b{width:28.957957pt;}
._7{width:30.073769pt;}
._10{width:31.614651pt;}
._19{width:34.483879pt;}
._22{width:36.136349pt;}
._1f{width:37.371771pt;}
._18{width:38.415786pt;}
._39{width:40.858234pt;}
._31{width:43.322864pt;}
._21{width:46.991667pt;}
._3b{width:54.993920pt;}
._13{width:63.745126pt;}
._34{width:79.239066pt;}
._23{width:91.487172pt;}
._2b{width:94.302618pt;}
._36{width:95.832883pt;}
._2e{width:97.065858pt;}
._28{width:101.714842pt;}
._33{width:103.484211pt;}
._38{width:108.840141pt;}
._37{width:111.422464pt;}
._24{width:112.857088pt;}
._11{width:114.666709pt;}
._26{width:119.504179pt;}
._29{width:128.972698pt;}
._32{width:132.750541pt;}
._25{width:134.137344pt;}
._35{width:135.189402pt;}
._2a{width:140.114944pt;}
._12{width:142.314701pt;}
._27{width:151.585954pt;}
._2f{width:158.291681pt;}
._30{width:187.505357pt;}
._1d{width:214.285005pt;}
._1c{width:265.548902pt;}
._e{width:840.706068pt;}
._20{width:1789.085333pt;}
._f{width:1810.338667pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fsc{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fsb{font-size:49.829333pt;}
.fs0{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.044747pt;}
.yb{bottom:12.578910pt;}
.y2c{bottom:56.693333pt;}
.y76{bottom:96.544000pt;}
.y1ea{bottom:96.850667pt;}
.y156{bottom:96.854667pt;}
.y1b5{bottom:97.368000pt;}
.y5b{bottom:98.490667pt;}
.y122{bottom:101.365333pt;}
.y5c{bottom:103.312000pt;}
.y111{bottom:109.309333pt;}
.yde{bottom:112.757333pt;}
.y1e9{bottom:114.066667pt;}
.y112{bottom:114.132000pt;}
.y75{bottom:114.556000pt;}
.y1b4{bottom:114.584000pt;}
.y155{bottom:114.866667pt;}
.y5a{bottom:116.502667pt;}
.y136{bottom:117.352000pt;}
.y2b{bottom:122.817333pt;}
.y102{bottom:124.558667pt;}
.y110{bottom:127.322667pt;}
.ydd{bottom:130.770667pt;}
.y1e8{bottom:131.281333pt;}
.y185{bottom:131.656000pt;}
.y1b3{bottom:131.800000pt;}
.y121{bottom:132.568000pt;}
.y154{bottom:132.878667pt;}
.y59{bottom:134.516000pt;}
.y135{bottom:135.365333pt;}
.ya5{bottom:139.674667pt;}
.y2a{bottom:140.830667pt;}
.y101{bottom:142.570667pt;}
.y74{bottom:144.152000pt;}
.y10f{bottom:145.334667pt;}
.y1e7{bottom:148.497333pt;}
.ydc{bottom:148.782667pt;}
.y1b2{bottom:149.014667pt;}
.y184{bottom:149.668000pt;}
.y120{bottom:150.581333pt;}
.y153{bottom:150.892000pt;}
.yb5{bottom:152.398667pt;}
.y58{bottom:152.528000pt;}
.y134{bottom:153.377333pt;}
.ya4{bottom:157.688000pt;}
.y29{bottom:158.842667pt;}
.yff{bottom:160.584000pt;}
.y10e{bottom:163.348000pt;}
.y100{bottom:165.405333pt;}
.y1e6{bottom:165.713333pt;}
.y1b1{bottom:166.230667pt;}
.ydb{bottom:166.796000pt;}
.y183{bottom:167.681333pt;}
.y11f{bottom:168.593333pt;}
.y152{bottom:168.904000pt;}
.yb4{bottom:170.410667pt;}
.y57{bottom:170.540000pt;}
.y133{bottom:171.390667pt;}
.ya3{bottom:175.700000pt;}
.y28{bottom:176.856000pt;}
.yfd{bottom:178.596000pt;}
.y10d{bottom:181.360000pt;}
.y1e5{bottom:182.928000pt;}
.yfe{bottom:183.417333pt;}
.y1b0{bottom:183.445333pt;}
.yda{bottom:184.808000pt;}
.y182{bottom:185.693333pt;}
.yb3{bottom:188.424000pt;}
.y56{bottom:188.553333pt;}
.y132{bottom:189.402667pt;}
.ya2{bottom:193.713333pt;}
.y27{bottom:194.868000pt;}
.yfc{bottom:196.608000pt;}
.y11e{bottom:197.110667pt;}
.y10c{bottom:199.372000pt;}
.y1e4{bottom:200.144000pt;}
.y1af{bottom:200.661333pt;}
.yd9{bottom:202.820000pt;}
.y181{bottom:203.706667pt;}
.y55{bottom:206.565333pt;}
.y131{bottom:207.414667pt;}
.y151{bottom:210.590667pt;}
.ya0{bottom:211.725333pt;}
.y26{bottom:212.880000pt;}
.yb2{bottom:214.406667pt;}
.yfb{bottom:214.621333pt;}
.ya1{bottom:216.546667pt;}
.y1e3{bottom:217.358667pt;}
.y10b{bottom:217.385333pt;}
.y1ae{bottom:217.877333pt;}
.yd8{bottom:220.833333pt;}
.y180{bottom:221.718667pt;}
.y150{bottom:225.202667pt;}
.y130{bottom:225.428000pt;}
.y9e{bottom:229.737333pt;}
.y25{bottom:230.893333pt;}
.y54{bottom:232.548000pt;}
.yfa{bottom:232.633333pt;}
.y9f{bottom:234.560000pt;}
.y1e2{bottom:234.574667pt;}
.y1ad{bottom:235.092000pt;}
.y10a{bottom:235.397333pt;}
.yd7{bottom:238.845333pt;}
.y17f{bottom:239.730667pt;}
.y14f{bottom:239.813333pt;}
.y12f{bottom:243.440000pt;}
.yb1{bottom:245.357333pt;}
.y9d{bottom:247.750667pt;}
.y24{bottom:248.905333pt;}
.yf9{bottom:250.646667pt;}
.y1e1{bottom:251.790667pt;}
.y1ac{bottom:252.308000pt;}
.y109{bottom:253.410667pt;}
.y14e{bottom:254.425333pt;}
.yd6{bottom:256.858667pt;}
.y17e{bottom:257.744000pt;}
.y12e{bottom:261.453333pt;}
.yb0{bottom:263.369333pt;}
.y53{bottom:263.498667pt;}
.y9b{bottom:265.762667pt;}
.y23{bottom:266.918667pt;}
.yf8{bottom:268.658667pt;}
.y1e0{bottom:269.005333pt;}
.y1ab{bottom:269.522667pt;}
.y9c{bottom:270.585333pt;}
.y108{bottom:271.422667pt;}
.yd4{bottom:274.870667pt;}
.y14d{bottom:275.705333pt;}
.y17d{bottom:275.756000pt;}
.y12d{bottom:279.465333pt;}
.yd5{bottom:279.693333pt;}
.yaf{bottom:281.381333pt;}
.y52{bottom:281.512000pt;}
.y14c{bottom:283.010667pt;}
.y9a{bottom:283.776000pt;}
.y22{bottom:284.930667pt;}
.y1df{bottom:286.221333pt;}
.yf6{bottom:286.670667pt;}
.y1aa{bottom:286.738667pt;}
.yf7{bottom:291.493333pt;}
.yd3{bottom:292.882667pt;}
.y17c{bottom:293.769333pt;}
.y12c{bottom:297.477333pt;}
.yae{bottom:299.394667pt;}
.y99{bottom:301.788000pt;}
.y107{bottom:302.534667pt;}
.y21{bottom:302.942667pt;}
.y1de{bottom:303.437333pt;}
.y1a9{bottom:303.954667pt;}
.yf4{bottom:304.684000pt;}
.yf5{bottom:309.505333pt;}
.yd2{bottom:310.896000pt;}
.y17b{bottom:311.781333pt;}
.y51{bottom:315.150667pt;}
.y12b{bottom:315.490667pt;}
.yad{bottom:317.406667pt;}
.y14b{bottom:318.424000pt;}
.y1dd{bottom:320.652000pt;}
.y20{bottom:320.956000pt;}
.y1a8{bottom:321.169333pt;}
.yf3{bottom:322.696000pt;}
.y98{bottom:327.770667pt;}
.yd1{bottom:328.908000pt;}
.y17a{bottom:329.793333pt;}
.y50{bottom:333.477333pt;}
.y12a{bottom:333.502667pt;}
.yac{bottom:335.420000pt;}
.y1dc{bottom:337.868000pt;}
.y1a7{bottom:338.385333pt;}
.y1f{bottom:338.968000pt;}
.yf2{bottom:340.709333pt;}
.yd0{bottom:346.921333pt;}
.y179{bottom:347.806667pt;}
.y14a{bottom:351.405333pt;}
.y129{bottom:351.516000pt;}
.yab{bottom:353.432000pt;}
.y1db{bottom:355.082667pt;}
.y1a6{bottom:355.600000pt;}
.y1e{bottom:356.981333pt;}
.y97{bottom:358.721333pt;}
.y73{bottom:360.328000pt;}
.y4f{bottom:360.496000pt;}
.y178{bottom:365.818667pt;}
.y149{bottom:369.417333pt;}
.y128{bottom:369.528000pt;}
.yaa{bottom:371.444000pt;}
.y1da{bottom:372.298667pt;}
.y1a5{bottom:372.816000pt;}
.ycf{bottom:372.904000pt;}
.y1d{bottom:374.993333pt;}
.y96{bottom:376.733333pt;}
.y72{bottom:378.340000pt;}
.y4e{bottom:378.508000pt;}
.y177{bottom:383.832000pt;}
.y148{bottom:387.430667pt;}
.y127{bottom:387.540000pt;}
.y1d9{bottom:389.514667pt;}
.y1a4{bottom:390.032000pt;}
.y1c{bottom:393.005333pt;}
.y95{bottom:394.746667pt;}
.y71{bottom:396.353333pt;}
.y4d{bottom:396.520000pt;}
.y176{bottom:401.844000pt;}
.ya9{bottom:402.556000pt;}
.yce{bottom:403.854667pt;}
.y147{bottom:405.442667pt;}
.y126{bottom:405.553333pt;}
.y1d8{bottom:406.729333pt;}
.y1a3{bottom:407.246667pt;}
.y94{bottom:412.758667pt;}
.y70{bottom:414.365333pt;}
.y4c{bottom:414.533333pt;}
.y1b{bottom:418.988000pt;}
.y175{bottom:419.856000pt;}
.ycd{bottom:421.866667pt;}
.y146{bottom:423.454667pt;}
.y1d7{bottom:423.945333pt;}
.y1a2{bottom:424.462667pt;}
.y93{bottom:430.772000pt;}
.y6f{bottom:432.378667pt;}
.y4b{bottom:432.545333pt;}
.y125{bottom:436.664000pt;}
.y174{bottom:437.869333pt;}
.ycc{bottom:439.878667pt;}
.y1d6{bottom:441.160000pt;}
.y145{bottom:441.468000pt;}
.y1a1{bottom:441.677333pt;}
.y92{bottom:448.784000pt;}
.y6e{bottom:450.390667pt;}
.y4a{bottom:450.558667pt;}
.y173{bottom:455.881333pt;}
.ycb{bottom:457.892000pt;}
.y1d5{bottom:458.376000pt;}
.y1a0{bottom:458.893333pt;}
.y144{bottom:459.480000pt;}
.y91{bottom:466.796000pt;}
.y6d{bottom:468.402667pt;}
.y49{bottom:468.570667pt;}
.y1d4{bottom:475.592000pt;}
.yca{bottom:475.904000pt;}
.y19f{bottom:476.109333pt;}
.y106{bottom:477.249333pt;}
.y143{bottom:477.493333pt;}
.y11d{bottom:479.672000pt;}
.y172{bottom:481.864000pt;}
.y90{bottom:484.809333pt;}
.y6c{bottom:486.416000pt;}
.y48{bottom:486.582667pt;}
.y1a{bottom:486.906667pt;}
.y1d3{bottom:492.806667pt;}
.y19e{bottom:493.324000pt;}
.yc8{bottom:493.917333pt;}
.y105{bottom:495.261333pt;}
.y142{bottom:495.505333pt;}
.y11c{bottom:497.684000pt;}
.yc9{bottom:498.738667pt;}
.y8f{bottom:502.821333pt;}
.y6b{bottom:504.428000pt;}
.y47{bottom:504.596000pt;}
.y1d1{bottom:510.022667pt;}
.yc6{bottom:511.929333pt;}
.y171{bottom:512.814667pt;}
.y141{bottom:513.517333pt;}
.y1d2{bottom:514.362667pt;}
.yc7{bottom:516.750667pt;}
.y19d{bottom:518.510667pt;}
.y8e{bottom:520.834667pt;}
.y19{bottom:520.860000pt;}
.y6a{bottom:522.441333pt;}
.y46{bottom:522.608000pt;}
.y11b{bottom:526.201333pt;}
.y104{bottom:526.373333pt;}
.y1d0{bottom:527.237333pt;}
.yc5{bottom:529.941333pt;}
.y16f{bottom:530.828000pt;}
.y140{bottom:531.530667pt;}
.y170{bottom:535.649333pt;}
.y8d{bottom:538.846667pt;}
.y18{bottom:538.872000pt;}
.y69{bottom:540.453333pt;}
.y45{bottom:540.621333pt;}
.y1cf{bottom:544.453333pt;}
.yf1{bottom:546.816000pt;}
.y16d{bottom:548.840000pt;}
.y13e{bottom:549.542667pt;}
.y16e{bottom:553.661333pt;}
.y19c{bottom:554.121333pt;}
.y13f{bottom:554.365333pt;}
.yc4{bottom:555.924000pt;}
.y8c{bottom:556.858667pt;}
.y17{bottom:556.885333pt;}
.y68{bottom:558.465333pt;}
.y44{bottom:558.633333pt;}
.y1ce{bottom:561.669333pt;}
.y16c{bottom:566.852000pt;}
.y13d{bottom:567.556000pt;}
.y19b{bottom:570.633333pt;}
.y8b{bottom:574.872000pt;}
.y16{bottom:574.897333pt;}
.y67{bottom:576.478667pt;}
.y43{bottom:576.645333pt;}
.yf0{bottom:577.766667pt;}
.y1cd{bottom:578.884000pt;}
.y16b{bottom:584.865333pt;}
.y13c{bottom:585.568000pt;}
.yc3{bottom:586.874667pt;}
.y19a{bottom:587.145333pt;}
.y8a{bottom:592.884000pt;}
.y15{bottom:592.909333pt;}
.y66{bottom:594.490667pt;}
.yef{bottom:595.780000pt;}
.y1cc{bottom:596.100000pt;}
.y16a{bottom:602.877333pt;}
.y13b{bottom:603.580000pt;}
.y199{bottom:603.656000pt;}
.yc2{bottom:604.888000pt;}
.y42{bottom:608.478667pt;}
.y89{bottom:610.896000pt;}
.y14{bottom:610.922667pt;}
.y65{bottom:612.504000pt;}
.y1cb{bottom:613.314667pt;}
.yee{bottom:613.792000pt;}
.y198{bottom:620.168000pt;}
.y168{bottom:620.890667pt;}
.y13a{bottom:621.593333pt;}
.yc1{bottom:622.900000pt;}
.y41{bottom:625.264000pt;}
.y169{bottom:625.712000pt;}
.y88{bottom:628.909333pt;}
.y13{bottom:628.934667pt;}
.y64{bottom:630.516000pt;}
.y1ca{bottom:630.530667pt;}
.yed{bottom:631.805333pt;}
.y197{bottom:636.678667pt;}
.y139{bottom:639.605333pt;}
.yc0{bottom:640.913333pt;}
.y40{bottom:641.776000pt;}
.y167{bottom:645.618667pt;}
.y87{bottom:646.921333pt;}
.y12{bottom:646.948000pt;}
.y1c9{bottom:647.746667pt;}
.y63{bottom:648.528000pt;}
.yec{bottom:649.817333pt;}
.y196{bottom:653.190667pt;}
.y166{bottom:654.732000pt;}
.y138{bottom:657.617333pt;}
.y165{bottom:657.686667pt;}
.y3f{bottom:658.286667pt;}
.ybf{bottom:658.925333pt;}
.y86{bottom:664.934667pt;}
.y11{bottom:664.960000pt;}
.y1c8{bottom:664.961333pt;}
.y62{bottom:666.541333pt;}
.yeb{bottom:667.829333pt;}
.y195{bottom:669.702667pt;}
.y3e{bottom:671.458667pt;}
.ybe{bottom:676.937333pt;}
.y164{bottom:678.157333pt;}
.y1c7{bottom:682.177333pt;}
.y85{bottom:682.946667pt;}
.y10{bottom:682.972000pt;}
.y61{bottom:684.553333pt;}
.yea{bottom:685.842667pt;}
.y194{bottom:686.213333pt;}
.y137{bottom:688.729333pt;}
.ybc{bottom:694.950667pt;}
.y162{bottom:696.169333pt;}
.y1c6{bottom:699.392000pt;}
.y3d{bottom:699.681333pt;}
.ybd{bottom:699.772000pt;}
.y84{bottom:700.958667pt;}
.yf{bottom:700.985333pt;}
.y163{bottom:700.992000pt;}
.y60{bottom:702.566667pt;}
.y193{bottom:702.725333pt;}
.ye9{bottom:703.854667pt;}
.y3c{bottom:710.149333pt;}
.ybb{bottom:712.962667pt;}
.ya8{bottom:713.897333pt;}
.y161{bottom:714.182667pt;}
.y1c5{bottom:716.608000pt;}
.y83{bottom:718.972000pt;}
.ye{bottom:718.997333pt;}
.y192{bottom:719.236000pt;}
.ye8{bottom:721.868000pt;}
.y1ee{bottom:723.160000pt;}
.ya7{bottom:731.909333pt;}
.y5f{bottom:732.162667pt;}
.y160{bottom:732.194667pt;}
.y1c4{bottom:733.824000pt;}
.y191{bottom:735.748000pt;}
.y82{bottom:736.984000pt;}
.yd{bottom:737.010667pt;}
.ye7{bottom:739.880000pt;}
.y1ed{bottom:740.376000pt;}
.y103{bottom:740.969333pt;}
.y124{bottom:744.701333pt;}
.yba{bottom:744.796000pt;}
.y3b{bottom:749.922667pt;}
.y1c3{bottom:751.038667pt;}
.y190{bottom:752.260000pt;}
.y1ec{bottom:757.590667pt;}
.ye6{bottom:757.892000pt;}
.y1eb{bottom:757.952000pt;}
.yb9{bottom:761.306667pt;}
.y123{bottom:762.714667pt;}
.y81{bottom:762.966667pt;}
.y15f{bottom:764.026667pt;}
.y3a{bottom:767.934667pt;}
.y1c2{bottom:768.254667pt;}
.ya{bottom:768.505382pt;}
.y9{bottom:768.854667pt;}
.ye5{bottom:775.905333pt;}
.yb8{bottom:777.818667pt;}
.y18f{bottom:778.654667pt;}
.y15e{bottom:780.538667pt;}
.y1c1{bottom:785.469333pt;}
.y39{bottom:785.948000pt;}
.y80{bottom:793.917333pt;}
.y15d{bottom:797.050667pt;}
.ye4{bottom:798.740000pt;}
.y18e{bottom:800.134667pt;}
.yb7{bottom:802.421333pt;}
.y1c0{bottom:802.685333pt;}
.y8{bottom:803.853333pt;}
.y38{bottom:803.960000pt;}
.y11a{bottom:809.034667pt;}
.y7f{bottom:811.930667pt;}
.y15c{bottom:813.561333pt;}
.ye3{bottom:816.752000pt;}
.y1bf{bottom:819.901333pt;}
.y7{bottom:819.992000pt;}
.y37{bottom:821.972000pt;}
.y119{bottom:827.046667pt;}
.y7e{bottom:829.942667pt;}
.y15b{bottom:830.073333pt;}
.yb6{bottom:833.532000pt;}
.y18d{bottom:834.088000pt;}
.y6{bottom:836.132000pt;}
.y1be{bottom:837.116000pt;}
.y36{bottom:839.985333pt;}
.y15a{bottom:843.245333pt;}
.y118{bottom:845.060000pt;}
.y7d{bottom:847.954667pt;}
.y1bd{bottom:854.332000pt;}
.y18c{bottom:855.566667pt;}
.y35{bottom:857.997333pt;}
.y5{bottom:860.241333pt;}
.y117{bottom:863.072000pt;}
.y7c{bottom:865.968000pt;}
.y18b{bottom:869.076000pt;}
.y159{bottom:869.406667pt;}
.ye2{bottom:870.789333pt;}
.y1bc{bottom:871.546667pt;}
.y34{bottom:876.010667pt;}
.y157{bottom:878.518667pt;}
.ya6{bottom:880.832000pt;}
.y116{bottom:881.084000pt;}
.y18a{bottom:882.585333pt;}
.y7b{bottom:883.980000pt;}
.y158{bottom:888.484000pt;}
.y1bb{bottom:888.762667pt;}
.ye1{bottom:888.802667pt;}
.y33{bottom:894.022667pt;}
.y189{bottom:896.094667pt;}
.y4{bottom:898.178667pt;}
.y115{bottom:899.097333pt;}
.y7a{bottom:901.993333pt;}
.y1ba{bottom:905.978667pt;}
.y32{bottom:912.034667pt;}
.y114{bottom:917.109333pt;}
.y188{bottom:917.574667pt;}
.y79{bottom:920.005333pt;}
.y1b9{bottom:923.193333pt;}
.y3{bottom:925.198667pt;}
.y31{bottom:930.048000pt;}
.y187{bottom:931.084000pt;}
.y78{bottom:938.017333pt;}
.y1b8{bottom:940.409333pt;}
.ye0{bottom:942.840000pt;}
.y113{bottom:943.092000pt;}
.y186{bottom:944.593333pt;}
.y30{bottom:948.060000pt;}
.y2{bottom:952.217333pt;}
.y77{bottom:956.030667pt;}
.y1b7{bottom:957.624000pt;}
.ydf{bottom:960.852000pt;}
.y2f{bottom:966.073333pt;}
.y5e{bottom:974.042667pt;}
.y1b6{bottom:974.840000pt;}
.y1{bottom:977.906667pt;}
.y2e{bottom:992.056000pt;}
.y5d{bottom:996.877333pt;}
.y2d{bottom:1038.548000pt;}
.h10{height:20.660233pt;}
.h6{height:22.673858pt;}
.h12{height:27.184641pt;}
.h13{height:29.397999pt;}
.h8{height:29.433775pt;}
.hc{height:29.599908pt;}
.h7{height:30.399505pt;}
.ha{height:31.157778pt;}
.h1e{height:34.239693pt;}
.h16{height:34.574438pt;}
.h5{height:34.813542pt;}
.hd{height:35.052646pt;}
.h1a{height:36.383732pt;}
.h19{height:36.389065pt;}
.h4{height:38.415786pt;}
.h9{height:38.681455pt;}
.h2{height:38.947124pt;}
.h14{height:39.945566pt;}
.h11{height:39.950899pt;}
.hf{height:41.524400pt;}
.he{height:44.436941pt;}
.h1d{height:45.876941pt;}
.h15{height:63.801105pt;}
.h3{height:69.148877pt;}
.h1b{height:74.915124pt;}
.h18{height:75.129455pt;}
.hb{height:80.431908pt;}
.h1c{height:88.704666pt;}
.h17{height:90.361455pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:26.021437pt;}
.x1{left:101.569333pt;}
.x3{left:108.542667pt;}
.x2{left:109.606667pt;}
.x76{left:118.949333pt;}
.x77{left:124.998667pt;}
.x8{left:130.393333pt;}
.x1b{left:134.884000pt;}
.x17{left:138.668000pt;}
.x16{left:140.117333pt;}
.x1c{left:141.525333pt;}
.xd{left:149.072000pt;}
.x5f{left:153.582667pt;}
.xe{left:155.713333pt;}
.xac{left:156.905333pt;}
.xa4{left:160.202667pt;}
.x7e{left:162.092000pt;}
.xa3{left:163.009333pt;}
.x42{left:164.304000pt;}
.xab{left:166.324000pt;}
.x6{left:168.654667pt;}
.x51{left:174.329333pt;}
.x7{left:177.718667pt;}
.x43{left:180.974667pt;}
.x55{left:188.374667pt;}
.x29{left:191.804000pt;}
.x44{left:194.257333pt;}
.x84{left:198.548000pt;}
.x1a{left:200.800000pt;}
.x60{left:204.117333pt;}
.x11{left:206.818667pt;}
.x96{left:209.412000pt;}
.x12{left:213.460000pt;}
.x97{left:215.461333pt;}
.x72{left:217.086667pt;}
.x73{left:222.797333pt;}
.xb2{left:225.473333pt;}
.x98{left:226.392000pt;}
.xa0{left:228.158667pt;}
.x79{left:229.317333pt;}
.x9d{left:231.542667pt;}
.x7c{left:232.829333pt;}
.x7a{left:235.366667pt;}
.x9f{left:236.981333pt;}
.x56{left:239.316000pt;}
.x57{left:245.366667pt;}
.x3b{left:246.430667pt;}
.x37{left:249.604000pt;}
.xa6{left:252.996000pt;}
.x80{left:256.313333pt;}
.x3c{left:259.713333pt;}
.x38{left:262.888000pt;}
.x33{left:264.366667pt;}
.x61{left:272.433333pt;}
.x34{left:277.650667pt;}
.x7b{left:278.940000pt;}
.xa1{left:281.725333pt;}
.x7f{left:283.720000pt;}
.x3d{left:285.092000pt;}
.x99{left:286.052000pt;}
.xa5{left:287.852000pt;}
.x8d{left:289.161333pt;}
.x9a{left:292.102667pt;}
.x8e{left:295.212000pt;}
.x83{left:296.912000pt;}
.x3e{left:298.374667pt;}
.x22{left:301.270667pt;}
.x4c{left:305.989333pt;}
.x23{left:307.321333pt;}
.xa7{left:308.429333pt;}
.xb{left:312.842667pt;}
.xc{left:319.484000pt;}
.x1e{left:326.342667pt;}
.x49{left:330.680000pt;}
.x1f{left:332.984000pt;}
.x13{left:343.120000pt;}
.x4a{left:350.737333pt;}
.x8f{left:352.364000pt;}
.x94{left:356.413333pt;}
.x1d{left:357.886667pt;}
.x66{left:362.960000pt;}
.x4b{left:364.021333pt;}
.x67{left:368.672000pt;}
.x45{left:374.446667pt;}
.x46{left:387.730667pt;}
.x47{left:391.117333pt;}
.x81{left:392.129333pt;}
.x9b{left:393.738667pt;}
.x82{left:398.180000pt;}
.x14{left:399.325333pt;}
.x48{left:404.401333pt;}
.x95{left:409.660000pt;}
.x15{left:416.197333pt;}
.x5c{left:417.912000pt;}
.xa2{left:430.290667pt;}
.x5d{left:431.926667pt;}
.x6b{left:448.105333pt;}
.x6c{left:452.110667pt;}
.x9c{left:453.398667pt;}
.x90{left:459.641333pt;}
.x85{left:464.244000pt;}
.x91{left:465.692000pt;}
.x6d{left:467.082667pt;}
.x86{left:470.294667pt;}
.x68{left:474.041333pt;}
.x4d{left:481.228000pt;}
.x89{left:483.392000pt;}
.x6e{left:484.408000pt;}
.x4e{left:487.278667pt;}
.x8a{left:489.441333pt;}
.x69{left:490.578667pt;}
.x6f{left:494.225333pt;}
.x7d{left:496.292000pt;}
.x52{left:497.777333pt;}
.x53{left:501.782667pt;}
.x6a{left:503.862667pt;}
.x70{left:511.550667pt;}
.x54{left:513.873333pt;}
.x92{left:522.844000pt;}
.x18{left:525.089333pt;}
.x87{left:527.030667pt;}
.x93{left:528.894667pt;}
.x19{left:531.730667pt;}
.x88{left:533.081333pt;}
.x35{left:538.370667pt;}
.x4f{left:543.018667pt;}
.x8b{left:548.076000pt;}
.x50{left:549.069333pt;}
.x36{left:551.654667pt;}
.x8c{left:554.126667pt;}
.x24{left:556.098667pt;}
.x25{left:562.148000pt;}
.x20{left:564.026667pt;}
.x39{left:565.318667pt;}
.x2a{left:567.985333pt;}
.x21{left:570.076000pt;}
.x2b{left:574.626667pt;}
.xaf{left:576.809333pt;}
.x2c{left:578.014667pt;}
.x78{left:580.404000pt;}
.x3a{left:581.989333pt;}
.xf{left:583.532000pt;}
.x10{left:590.173333pt;}
.x2d{left:591.297333pt;}
.x62{left:592.916000pt;}
.x74{left:596.244000pt;}
.x26{left:597.141333pt;}
.x27{left:600.485333pt;}
.xb0{left:601.916000pt;}
.x58{left:604.774667pt;}
.xa8{left:606.288000pt;}
.x63{left:612.113333pt;}
.x28{left:613.769333pt;}
.x59{left:619.032000pt;}
.x4{left:623.413317pt;}
.xb1{left:625.826667pt;}
.x71{left:628.900000pt;}
.x64{left:630.018667pt;}
.x65{left:639.981333pt;}
.x5a{left:644.417333pt;}
.x2e{left:646.670667pt;}
.x75{left:650.749333pt;}
.x2f{left:653.313333pt;}
.x3f{left:655.505333pt;}
.x30{left:656.568000pt;}
.x5b{left:658.674667pt;}
.xad{left:666.302667pt;}
.x40{left:668.788000pt;}
.x31{left:669.850667pt;}
.x41{left:672.162667pt;}
.x32{left:673.105333pt;}
.x9e{left:674.948000pt;}
.xa9{left:676.166667pt;}
.x9{left:679.437333pt;}
.x5e{left:680.728000pt;}
.xaa{left:682.217333pt;}
.xa{left:686.078667pt;}
.xae{left:690.213333pt;}
}




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