
    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_d3a9566ffe62b51701db3936.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bd74f520bff6690cccb71976.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f7991ffe3ccec9c5f966db1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_1c9f9b4c99bfa9ee5a475e1a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_13a1999338caa2aaaeb19125.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_26d3ce53b8c39006f3ec1e9b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1430776cdbb4ab87a6f18382.woff')format("woff");}.ff7{font-family:ff7;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6a99c70a037e73afa45f5e2d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_18d0d466105f901f6b591f7b.woff')format("woff");}.ff9{font-family:ff9;line-height:2.399000;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_7edefbce59422efe7c3f1d9c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_acd56cfdac44552b1639367e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.046000;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_c5c4c8dc2c5c9b29720401a7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.389000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.mc{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);}
.m23{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);}
.m26{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);}
.m1d{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);}
.m7{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);}
.m22{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);}
.m1c{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);}
.md{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);}
.m27{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);}
.m21{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);}
.m16{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);}
.m10{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);}
.mb{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);}
.m15{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);}
.mf{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);}
.m13{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);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m1b{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);}
.m1a{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);}
.m6{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);}
.m2{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);}
.m19{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);}
.m18{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);}
.m1e{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);}
.m8{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);}
.me{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);}
.m24{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);}
.m20{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);}
.ma{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);}
.m4{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);}
.m12{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);}
.m17{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);}
.m9{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);}
.m5{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);}
.v15{vertical-align:-33.570000px;}
.v9{vertical-align:-23.754000px;}
.v1{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v17{vertical-align:17.274000px;}
.vf{vertical-align:18.906000px;}
.v5{vertical-align:19.926000px;}
.v16{vertical-align:21.138000px;}
.v2{vertical-align:22.572000px;}
.v4{vertical-align:23.754000px;}
.vd{vertical-align:27.030000px;}
.v7{vertical-align:43.680000px;}
.vc{vertical-align:44.898000px;}
.v3{vertical-align:46.326000px;}
.va{vertical-align:53.016000px;}
.v14{vertical-align:54.144000px;}
.ve{vertical-align:59.472000px;}
.vb{vertical-align:68.034000px;}
.v6{vertical-align:72.654000px;}
.v10{vertical-align:89.178000px;}
.v8{vertical-align:92.580000px;}
.v11{vertical-align:112.932000px;}
.v13{vertical-align:120.876000px;}
.v12{vertical-align:137.190000px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.000493px;}
.ls6{letter-spacing:0.000513px;}
.ls54{letter-spacing:0.001593px;}
.ls1c{letter-spacing:0.001603px;}
.ls2{letter-spacing:0.002149px;}
.lsb{letter-spacing:0.002157px;}
.ls47{letter-spacing:0.002423px;}
.ls36{letter-spacing:0.002682px;}
.ls21{letter-spacing:0.002690px;}
.lsc{letter-spacing:0.004326px;}
.lsa{letter-spacing:0.004332px;}
.ls7{letter-spacing:0.004861px;}
.ls2b{letter-spacing:0.004869px;}
.ls56{letter-spacing:0.004937px;}
.ls40{letter-spacing:0.005972px;}
.ls4d{letter-spacing:0.010244px;}
.ls50{letter-spacing:0.013522px;}
.ls6b{letter-spacing:0.016158px;}
.ls3e{letter-spacing:0.019543px;}
.ls61{letter-spacing:0.024880px;}
.ls1a{letter-spacing:0.025005px;}
.ls60{letter-spacing:0.028819px;}
.ls5c{letter-spacing:0.031465px;}
.ls64{letter-spacing:0.032597px;}
.ls51{letter-spacing:0.065455px;}
.ls66{letter-spacing:0.286924px;}
.ls2d{letter-spacing:0.916364px;}
.ls57{letter-spacing:1.832729px;}
.ls5{letter-spacing:2.350878px;}
.ls6a{letter-spacing:2.487275px;}
.ls10{letter-spacing:2.981971px;}
.ls8{letter-spacing:2.984915px;}
.ls38{letter-spacing:2.985072px;}
.ls5a{letter-spacing:2.986031px;}
.ls11{letter-spacing:2.987971px;}
.ls4{letter-spacing:2.988509px;}
.ls30{letter-spacing:2.988960px;}
.ls58{letter-spacing:2.989289px;}
.ls62{letter-spacing:2.989739px;}
.lsd{letter-spacing:2.990915px;}
.ls42{letter-spacing:2.991072px;}
.ls5b{letter-spacing:2.992059px;}
.ls67{letter-spacing:2.993947px;}
.ls32{letter-spacing:3.460878px;}
.ls5e{letter-spacing:7.131703px;}
.ls3f{letter-spacing:7.134493px;}
.ls48{letter-spacing:7.140493px;}
.ls39{letter-spacing:7.161039px;}
.ls3a{letter-spacing:7.172700px;}
.ls37{letter-spacing:9.088332px;}
.ls1{letter-spacing:9.290915px;}
.ls3c{letter-spacing:9.902700px;}
.ls2a{letter-spacing:10.157971px;}
.ls19{letter-spacing:10.930918px;}
.ls12{letter-spacing:13.892746px;}
.ls28{letter-spacing:13.895971px;}
.ls24{letter-spacing:13.896509px;}
.ls65{letter-spacing:14.084712px;}
.lsf{letter-spacing:14.530921px;}
.ls27{letter-spacing:14.596376px;}
.ls3b{letter-spacing:17.528915px;}
.ls16{letter-spacing:17.534915px;}
.ls26{letter-spacing:18.130924px;}
.ls15{letter-spacing:18.179412px;}
.lse{letter-spacing:18.196379px;}
.ls46{letter-spacing:18.261833px;}
.ls4b{letter-spacing:18.523652px;}
.ls41{letter-spacing:19.178198px;}
.ls17{letter-spacing:19.570925px;}
.ls63{letter-spacing:20.029108px;}
.ls33{letter-spacing:20.225471px;}
.ls43{letter-spacing:20.749108px;}
.ls44{letter-spacing:20.814563px;}
.ls3{letter-spacing:21.141836px;}
.ls20{letter-spacing:21.168509px;}
.ls59{letter-spacing:21.170915px;}
.ls3d{letter-spacing:21.600018px;}
.ls25{letter-spacing:21.665473px;}
.ls1b{letter-spacing:21.719412px;}
.ls53{letter-spacing:21.861836px;}
.ls2c{letter-spacing:22.123655px;}
.ls4a{letter-spacing:22.254564px;}
.ls55{letter-spacing:22.320019px;}
.ls69{letter-spacing:22.843655px;}
.ls5f{letter-spacing:22.974565px;}
.ls5d{letter-spacing:24.218202px;}
.ls2f{letter-spacing:24.610930px;}
.ls1d{letter-spacing:24.722700px;}
.ls68{letter-spacing:24.794915px;}
.ls34{letter-spacing:25.265476px;}
.ls49{letter-spacing:25.723658px;}
.ls4e{letter-spacing:26.050931px;}
.ls1f{letter-spacing:28.341842px;}
.ls4c{letter-spacing:28.603660px;}
.ls23{letter-spacing:28.734569px;}
.ls31{letter-spacing:29.061842px;}
.ls4f{letter-spacing:29.520025px;}
.ls52{letter-spacing:29.847298px;}
.ls1e{letter-spacing:29.912752px;}
.ls35{letter-spacing:32.530936px;}
.ls13{letter-spacing:32.727300px;}
.ls18{letter-spacing:32.858209px;}
.ls22{letter-spacing:36.589121px;}
.ls14{letter-spacing:39.140149px;}
.ls9{letter-spacing:41.301853px;}
.ls45{letter-spacing:109.499412px;}
.ls29{letter-spacing:131.938869px;}
.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;}
}
.ws2f{word-spacing:-51.820407px;}
.ws96{word-spacing:-47.258221px;}
.ws5b{word-spacing:-45.294583px;}
.ws1b{word-spacing:-44.378219px;}
.ws19{word-spacing:-42.637126px;}
.ws9a{word-spacing:-41.236398px;}
.ws92{word-spacing:-31.771663px;}
.ws8a{word-spacing:-31.706208px;}
.ws2e{word-spacing:-29.349843px;}
.ws98{word-spacing:-24.440748px;}
.ws33{word-spacing:-24.178929px;}
.wsb5{word-spacing:-18.549834px;}
.ws1f{word-spacing:-18.183288px;}
.ws44{word-spacing:-14.111859px;}
.ws4c{word-spacing:-9.909826px;}
.ws56{word-spacing:-7.880734px;}
.ws4a{word-spacing:-7.252370px;}
.ws95{word-spacing:-6.859642px;}
.ws29{word-spacing:-6.336005px;}
.ws30{word-spacing:-3.652367px;}
.ws57{word-spacing:-3.194184px;}
.ws3a{word-spacing:-2.866911px;}
.wsb9{word-spacing:-2.605093px;}
.ws8e{word-spacing:-2.408729px;}
.ws5{word-spacing:-1.960640px;}
.ws16{word-spacing:-1.623274px;}
.ws40{word-spacing:-1.361456px;}
.wsa6{word-spacing:-0.772364px;}
.ws2a{word-spacing:-0.510546px;}
.ws94{word-spacing:-0.314182px;}
.ws52{word-spacing:-0.248727px;}
.ws79{word-spacing:-0.222029px;}
.ws7c{word-spacing:-0.219113px;}
.ws39{word-spacing:-0.216029px;}
.wsb3{word-spacing:-0.117818px;}
.wsbf{word-spacing:-0.059776px;}
.ws73{word-spacing:-0.052364px;}
.wsc{word-spacing:0.000000px;}
.ws2d{word-spacing:0.013091px;}
.ws8f{word-spacing:0.274909px;}
.ws13{word-spacing:0.405819px;}
.wsad{word-spacing:0.471273px;}
.ws91{word-spacing:0.667637px;}
.ws7d{word-spacing:0.864001px;}
.wsba{word-spacing:0.929455px;}
.ws84{word-spacing:1.060365px;}
.ws83{word-spacing:1.125819px;}
.ws5a{word-spacing:1.387638px;}
.wsa3{word-spacing:1.518547px;}
.ws6e{word-spacing:1.649456px;}
.ws18{word-spacing:1.714911px;}
.ws8{word-spacing:1.745448px;}
.ws42{word-spacing:1.780365px;}
.ws93{word-spacing:1.911274px;}
.wsbe{word-spacing:2.107638px;}
.ws8b{word-spacing:2.173093px;}
.ws86{word-spacing:2.238547px;}
.ws85{word-spacing:2.304002px;}
.wsa4{word-spacing:2.369457px;}
.ws63{word-spacing:2.434911px;}
.wsa7{word-spacing:2.500366px;}
.wsa8{word-spacing:2.565820px;}
.ws77{word-spacing:2.696730px;}
.ws60{word-spacing:2.762184px;}
.wsac{word-spacing:2.827639px;}
.ws6{word-spacing:2.881184px;}
.ws74{word-spacing:2.893093px;}
.wsa5{word-spacing:2.958548px;}
.ws68{word-spacing:3.024003px;}
.wsc0{word-spacing:3.089457px;}
.ws22{word-spacing:3.154912px;}
.wsc4{word-spacing:3.180062px;}
.ws23{word-spacing:3.220366px;}
.ws3{word-spacing:3.239838px;}
.ws35{word-spacing:3.285821px;}
.ws2{word-spacing:3.299613px;}
.ws26{word-spacing:3.351276px;}
.wsc3{word-spacing:3.359389px;}
.ws1e{word-spacing:3.416730px;}
.ws14{word-spacing:3.482185px;}
.ws4d{word-spacing:3.547639px;}
.wsa{word-spacing:3.613094px;}
.wsb{word-spacing:3.678549px;}
.ws2b{word-spacing:3.744003px;}
.ws4f{word-spacing:3.809458px;}
.ws34{word-spacing:3.874912px;}
.ws4e{word-spacing:3.940367px;}
.ws17{word-spacing:4.005822px;}
.ws25{word-spacing:4.071276px;}
.ws1a{word-spacing:4.136731px;}
.wsbc{word-spacing:4.202185px;}
.wsb0{word-spacing:4.267640px;}
.ws41{word-spacing:4.333095px;}
.ws55{word-spacing:4.398549px;}
.ws8d{word-spacing:4.464004px;}
.wsb7{word-spacing:4.529458px;}
.ws4{word-spacing:4.554901px;}
.ws64{word-spacing:4.594913px;}
.ws88{word-spacing:4.660368px;}
.ws70{word-spacing:4.725822px;}
.ws7{word-spacing:4.794003px;}
.ws1c{word-spacing:4.922186px;}
.ws6d{word-spacing:5.118550px;}
.ws66{word-spacing:5.184004px;}
.ws67{word-spacing:5.249459px;}
.ws6c{word-spacing:5.380368px;}
.ws45{word-spacing:5.445823px;}
.ws3c{word-spacing:5.511277px;}
.ws10{word-spacing:5.642187px;}
.ws72{word-spacing:5.707641px;}
.wsab{word-spacing:5.773096px;}
.ws3f{word-spacing:5.904005px;}
.ws7a{word-spacing:5.969460px;}
.ws46{word-spacing:6.034914px;}
.ws62{word-spacing:6.100369px;}
.wsc7{word-spacing:6.109066px;}
.wsb8{word-spacing:6.231278px;}
.ws6f{word-spacing:6.296733px;}
.ws80{word-spacing:6.362187px;}
.wsb1{word-spacing:6.427642px;}
.wsb4{word-spacing:6.689460px;}
.ws1d{word-spacing:6.754915px;}
.ws87{word-spacing:6.885824px;}
.wsaf{word-spacing:6.951279px;}
.ws8c{word-spacing:7.016733px;}
.ws51{word-spacing:7.055116px;}
.ws78{word-spacing:7.055971px;}
.ws7e{word-spacing:7.074786px;}
.wsa2{word-spacing:7.083450px;}
.ws5c{word-spacing:7.344006px;}
.ws5d{word-spacing:7.409461px;}
.ws53{word-spacing:7.540370px;}
.ws54{word-spacing:7.605825px;}
.ws7f{word-spacing:7.671279px;}
.ws81{word-spacing:7.802188px;}
.ws61{word-spacing:7.933098px;}
.ws12{word-spacing:8.064007px;}
.ws75{word-spacing:8.129461px;}
.ws27{word-spacing:8.194916px;}
.ws21{word-spacing:8.260371px;}
.ws58{word-spacing:8.456734px;}
.ws9{word-spacing:8.718553px;}
.wsbb{word-spacing:8.980371px;}
.ws5e{word-spacing:9.111280px;}
.ws3d{word-spacing:9.176735px;}
.ws59{word-spacing:9.307644px;}
.ws28{word-spacing:9.438553px;}
.wsbd{word-spacing:9.569463px;}
.ws5f{word-spacing:9.634917px;}
.wsb2{word-spacing:9.831281px;}
.ws49{word-spacing:9.962190px;}
.ws89{word-spacing:10.027645px;}
.ws37{word-spacing:10.093099px;}
.ws24{word-spacing:10.420372px;}
.ws90{word-spacing:10.616736px;}
.ws97{word-spacing:10.682191px;}
.ws82{word-spacing:10.691971px;}
.ws4b{word-spacing:10.747645px;}
.ws76{word-spacing:10.834046px;}
.ws2c{word-spacing:10.840046px;}
.ws32{word-spacing:10.876046px;}
.wsb6{word-spacing:10.878555px;}
.ws50{word-spacing:10.924046px;}
.ws3b{word-spacing:10.986786px;}
.wsae{word-spacing:11.271282px;}
.ws7b{word-spacing:11.807116px;}
.ws69{word-spacing:11.818046px;}
.ws9f{word-spacing:11.878697px;}
.ws31{word-spacing:12.226046px;}
.ws43{word-spacing:13.038556px;}
.ws9c{word-spacing:13.085971px;}
.ws9b{word-spacing:13.087058px;}
.ws99{word-spacing:13.095422px;}
.ws38{word-spacing:13.133971px;}
.wsaa{word-spacing:13.331971px;}
.wsa9{word-spacing:13.475971px;}
.ws6b{word-spacing:14.416046px;}
.ws6a{word-spacing:14.422046px;}
.ws71{word-spacing:14.871285px;}
.wsa1{word-spacing:15.664046px;}
.ws20{word-spacing:16.340338px;}
.ws48{word-spacing:17.601422px;}
.ws47{word-spacing:17.607422px;}
.wsc1{word-spacing:17.884860px;}
.ws1{word-spacing:18.602197px;}
.wsa0{word-spacing:18.864016px;}
.wsc6{word-spacing:19.845499px;}
.wsc2{word-spacing:20.933415px;}
.ws9e{word-spacing:20.958563px;}
.ws3e{word-spacing:20.986046px;}
.wsc5{word-spacing:21.220338px;}
.ws36{word-spacing:22.546046px;}
.ws11{word-spacing:22.834279px;}
.ws65{word-spacing:22.894055px;}
.ws0{word-spacing:26.827469px;}
.ws15{word-spacing:26.901841px;}
.ws9d{word-spacing:43.097116px;}
.wsf{word-spacing:68.682164px;}
.wsd{word-spacing:2033.883877px;}
.wse{word-spacing:2243.704097px;}
._2b{margin-left:-30.243769px;}
._30{margin-left:-7.280653px;}
._f{margin-left:-5.918589px;}
._5{margin-left:-4.901599px;}
._13{margin-left:-3.238529px;}
._0{margin-left:-2.223667px;}
._3{margin-left:-1.183542px;}
._23{width:1.052815px;}
._1{width:2.223667px;}
._1d{width:3.665458px;}
._33{width:5.561852px;}
._29{width:7.529068px;}
._2f{width:11.323646px;}
._6{width:15.780758px;}
._1c{width:17.640322px;}
._25{width:19.700045px;}
._2e{width:21.403654px;}
._7{width:22.654952px;}
._20{width:24.114968px;}
._18{width:25.394596px;}
._2{width:26.540366px;}
._19{width:28.207354px;}
._4{width:30.234484px;}
._22{width:32.003721px;}
._1f{width:33.709119px;}
._27{width:35.280029px;}
._24{width:36.589121px;}
._2c{width:37.638176px;}
._31{width:38.681879px;}
._21{width:40.127870px;}
._2a{width:41.430608px;}
._1b{width:43.489529px;}
._1e{width:45.154389px;}
._28{width:47.127312px;}
._26{width:49.087372px;}
._34{width:51.447316px;}
._32{width:52.756408px;}
._35{width:62.578936px;}
._1a{width:68.431092px;}
._2d{width:69.601944px;}
._14{width:1184.990078px;}
._a{width:1234.506168px;}
._c{width:1237.387960px;}
._e{width:1488.339107px;}
._15{width:1497.764569px;}
._10{width:1541.648615px;}
._12{width:1596.079168px;}
._16{width:1625.471861px;}
._b{width:1637.513710px;}
._11{width:1748.786539px;}
._d{width:1926.819472px;}
._9{width:2091.765064px;}
._17{width:2224.420488px;}
._8{width:2237.682190px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y18{bottom:85.479000px;}
.y35{bottom:115.965000px;}
.y17{bottom:133.537500px;}
.y33{bottom:141.469500px;}
.y32{bottom:146.451000px;}
.ydb{bottom:147.822000px;}
.ya1{bottom:150.586500px;}
.y34{bottom:152.389500px;}
.y142{bottom:169.230000px;}
.y12c{bottom:170.031000px;}
.y52{bottom:171.954000px;}
.y31{bottom:176.937000px;}
.yda{bottom:178.308000px;}
.ya0{bottom:181.072500px;}
.y16{bottom:181.596000px;}
.ybf{bottom:182.875500px;}
.y30{bottom:207.421500px;}
.yd9{bottom:208.792500px;}
.y9f{bottom:211.557000px;}
.y141{bottom:222.495000px;}
.y15{bottom:229.653000px;}
.y2f{bottom:237.907500px;}
.yd8{bottom:239.278500px;}
.y9e{bottom:242.043000px;}
.y12b{bottom:244.206000px;}
.y140{bottom:252.981000px;}
.yf9{bottom:259.167000px;}
.y2e{bottom:262.750500px;}
.y2c{bottom:268.393500px;}
.yd7{bottom:269.764500px;}
.y9d{bottom:272.529000px;}
.y12a{bottom:274.692000px;}
.y2d{bottom:274.836000px;}
.y14{bottom:277.711500px;}
.y13f{bottom:283.467000px;}
.y2b{bottom:298.879500px;}
.ybe{bottom:299.622000px;}
.yd6{bottom:300.250500px;}
.y9c{bottom:303.015000px;}
.y51{bottom:304.818000px;}
.y129{bottom:305.178000px;}
.y83{bottom:307.404000px;}
.y111{bottom:310.386000px;}
.yf8{bottom:319.384500px;}
.y50{bottom:324.382500px;}
.y13{bottom:325.770000px;}
.y2a{bottom:329.365500px;}
.y6e{bottom:329.899500px;}
.ybd{bottom:330.108000px;}
.yd5{bottom:330.736500px;}
.y9a{bottom:333.501000px;}
.y128{bottom:335.664000px;}
.y13e{bottom:336.732000px;}
.y82{bottom:337.890000px;}
.y9b{bottom:339.438000px;}
.y10f{bottom:340.872000px;}
.y110{bottom:346.810500px;}
.yf7{bottom:349.870500px;}
.ybb{bottom:355.611000px;}
.y4f{bottom:359.850000px;}
.y6d{bottom:360.385500px;}
.yba{bottom:360.592500px;}
.ye1{bottom:361.221000px;}
.yd4{bottom:362.592000px;}
.y99{bottom:363.985500px;}
.y127{bottom:366.150000px;}
.ybc{bottom:366.531000px;}
.y13d{bottom:367.218000px;}
.y81{bottom:368.376000px;}
.y10e{bottom:371.358000px;}
.y12{bottom:373.827000px;}
.yf6{bottom:380.356500px;}
.y29{bottom:381.111000px;}
.y4e{bottom:390.336000px;}
.y6c{bottom:390.871500px;}
.yb9{bottom:391.078500px;}
.ye0{bottom:391.707000px;}
.yd3{bottom:393.078000px;}
.y157{bottom:393.733500px;}
.y97{bottom:394.471500px;}
.y126{bottom:396.634500px;}
.y80{bottom:398.860500px;}
.y98{bottom:400.410000px;}
.y10d{bottom:401.842500px;}
.yf5{bottom:410.842500px;}
.yb8{bottom:419.031000px;}
.y13c{bottom:420.483000px;}
.y156{bottom:420.633000px;}
.y4d{bottom:420.822000px;}
.y6a{bottom:421.356000px;}
.yb7{bottom:421.564500px;}
.y11{bottom:421.885500px;}
.ydf{bottom:422.193000px;}
.yd2{bottom:423.564000px;}
.y96{bottom:424.957500px;}
.y125{bottom:427.120500px;}
.y6b{bottom:427.294500px;}
.y7f{bottom:429.346500px;}
.y10c{bottom:432.328500px;}
.yf4{bottom:441.327000px;}
.y28{bottom:441.382500px;}
.y155{bottom:447.532500px;}
.y13b{bottom:450.967500px;}
.y4b{bottom:451.308000px;}
.y68{bottom:451.842000px;}
.yb6{bottom:452.050500px;}
.yde{bottom:452.679000px;}
.yd1{bottom:454.050000px;}
.y95{bottom:455.443500px;}
.y4c{bottom:457.246500px;}
.y124{bottom:457.606500px;}
.y69{bottom:457.780500px;}
.y7e{bottom:459.832500px;}
.y10b{bottom:462.814500px;}
.y10{bottom:469.944000px;}
.yf3{bottom:471.813000px;}
.y27{bottom:471.868500px;}
.y154{bottom:474.432000px;}
.yb5{bottom:480.003000px;}
.y13a{bottom:481.453500px;}
.y49{bottom:481.794000px;}
.y66{bottom:482.328000px;}
.yb4{bottom:482.536500px;}
.ydd{bottom:483.165000px;}
.yd0{bottom:484.534500px;}
.y4a{bottom:487.731000px;}
.y123{bottom:488.092500px;}
.y67{bottom:488.266500px;}
.y94{bottom:490.065000px;}
.y7d{bottom:490.318500px;}
.y10a{bottom:493.300500px;}
.y153{bottom:501.330000px;}
.yf2{bottom:502.299000px;}
.y26{bottom:502.354500px;}
.yb3{bottom:513.021000px;}
.y65{bottom:513.348000px;}
.ydc{bottom:513.649500px;}
.ycf{bottom:515.020500px;}
.y48{bottom:516.970500px;}
.yf{bottom:518.001000px;}
.y93{bottom:520.549500px;}
.y7c{bottom:520.803000px;}
.y122{bottom:520.899000px;}
.y109{bottom:523.786500px;}
.y47{bottom:528.195000px;}
.y152{bottom:528.229500px;}
.yf0{bottom:532.785000px;}
.y25{bottom:532.839000px;}
.y139{bottom:534.766500px;}
.yf1{bottom:538.723500px;}
.y64{bottom:543.834000px;}
.yce{bottom:545.506500px;}
.y92{bottom:551.035500px;}
.y121{bottom:551.383500px;}
.y107{bottom:554.271000px;}
.y151{bottom:555.129000px;}
.y7b{bottom:559.813500px;}
.y108{bottom:560.209500px;}
.yef{bottom:563.271000px;}
.y24{bottom:563.325000px;}
.yb2{bottom:565.509000px;}
.ye{bottom:566.059500px;}
.y63{bottom:574.320000px;}
.y46{bottom:574.596000px;}
.ycd{bottom:575.992500px;}
.y91{bottom:581.521500px;}
.y120{bottom:581.869500px;}
.y150{bottom:582.028500px;}
.y105{bottom:584.757000px;}
.y7a{bottom:590.299500px;}
.y106{bottom:590.695500px;}
.yee{bottom:593.755500px;}
.y23{bottom:593.811000px;}
.y138{bottom:604.636500px;}
.y62{bottom:604.804500px;}
.y45{bottom:605.080500px;}
.ycc{bottom:606.478500px;}
.y14f{bottom:608.926500px;}
.y90{bottom:612.007500px;}
.y11f{bottom:612.355500px;}
.yd{bottom:614.118000px;}
.yed{bottom:618.958500px;}
.y79{bottom:620.785500px;}
.yec{bottom:624.241500px;}
.y22{bottom:624.297000px;}
.y104{bottom:626.749500px;}
.yb1{bottom:630.667500px;}
.y137{bottom:635.122500px;}
.y60{bottom:635.290500px;}
.y44{bottom:635.566500px;}
.y14e{bottom:635.826000px;}
.ycb{bottom:636.963000px;}
.y61{bottom:641.229000px;}
.y8f{bottom:642.493500px;}
.y11e{bottom:642.841500px;}
.yeb{bottom:649.443000px;}
.y78{bottom:651.271500px;}
.ye9{bottom:654.727500px;}
.y103{bottom:657.235500px;}
.yea{bottom:660.666000px;}
.yaf{bottom:661.153500px;}
.y14d{bottom:662.725500px;}
.y136{bottom:665.608500px;}
.y5f{bottom:665.776500px;}
.y43{bottom:666.052500px;}
.yc{bottom:666.468000px;}
.yb0{bottom:667.092000px;}
.y8e{bottom:672.978000px;}
.y11d{bottom:673.327500px;}
.y21{bottom:676.042500px;}
.y77{bottom:681.757500px;}
.ye8{bottom:685.213500px;}
.y102{bottom:687.721500px;}
.y14c{bottom:689.625000px;}
.yca{bottom:690.079500px;}
.yae{bottom:691.639500px;}
.y135{bottom:696.093000px;}
.y41{bottom:696.538500px;}
.y42{bottom:702.477000px;}
.y5e{bottom:703.080000px;}
.y11c{bottom:703.812000px;}
.y8d{bottom:707.599500px;}
.y76{bottom:712.242000px;}
.y5d{bottom:714.304500px;}
.ye7{bottom:715.699500px;}
.y14b{bottom:716.523000px;}
.y101{bottom:718.206000px;}
.yad{bottom:722.125500px;}
.y134{bottom:726.579000px;}
.y40{bottom:727.024500px;}
.y11b{bottom:734.298000px;}
.y20{bottom:736.314000px;}
.y8c{bottom:738.085500px;}
.y75{bottom:742.728000px;}
.y14a{bottom:743.422500px;}
.ye6{bottom:746.184000px;}
.yff{bottom:748.692000px;}
.yac{bottom:752.610000px;}
.y100{bottom:754.630500px;}
.yb{bottom:756.904500px;}
.y133{bottom:757.065000px;}
.yc9{bottom:758.829000px;}
.y5c{bottom:765.892500px;}
.y1f{bottom:766.800000px;}
.y11a{bottom:767.104500px;}
.y8b{bottom:768.571500px;}
.y149{bottom:770.322000px;}
.y74{bottom:773.214000px;}
.y3f{bottom:773.425500px;}
.ye5{bottom:776.670000px;}
.yfe{bottom:779.178000px;}
.yaa{bottom:783.096000px;}
.ya{bottom:783.804000px;}
.y132{bottom:787.551000px;}
.yab{bottom:789.034500px;}
.yc8{bottom:789.313500px;}
.y5b{bottom:796.378500px;}
.y148{bottom:797.221500px;}
.y1e{bottom:797.286000px;}
.y119{bottom:797.590500px;}
.y8a{bottom:799.057500px;}
.y73{bottom:803.700000px;}
.yfd{bottom:809.664000px;}
.y9{bottom:810.703500px;}
.ya9{bottom:813.582000px;}
.ye4{bottom:819.153000px;}
.y131{bottom:819.603000px;}
.yc7{bottom:819.799500px;}
.y3e{bottom:819.825000px;}
.y5a{bottom:821.881500px;}
.y59{bottom:826.864500px;}
.y118{bottom:828.076500px;}
.y89{bottom:829.542000px;}
.y72{bottom:834.184500px;}
.y8{bottom:837.603000px;}
.yfc{bottom:840.150000px;}
.ya8{bottom:844.810500px;}
.y1d{bottom:849.031500px;}
.y130{bottom:850.089000px;}
.yc6{bottom:850.285500px;}
.y3d{bottom:855.001500px;}
.y57{bottom:857.349000px;}
.y117{bottom:858.561000px;}
.y88{bottom:860.028000px;}
.ye3{bottom:861.636000px;}
.y58{bottom:863.287500px;}
.y7{bottom:864.501000px;}
.y71{bottom:864.670500px;}
.y3c{bottom:866.226000px;}
.yfb{bottom:870.634500px;}
.ya7{bottom:875.296500px;}
.y12f{bottom:880.575000px;}
.yc5{bottom:880.771500px;}
.y55{bottom:887.835000px;}
.y116{bottom:889.047000px;}
.y87{bottom:890.514000px;}
.y147{bottom:891.367500px;}
.y6{bottom:891.400500px;}
.y56{bottom:893.773500px;}
.y70{bottom:895.156500px;}
.ya6{bottom:905.781000px;}
.y12e{bottom:911.061000px;}
.yc4{bottom:911.257500px;}
.y3a{bottom:912.627000px;}
.ye2{bottom:913.381500px;}
.y5{bottom:918.300000px;}
.y54{bottom:918.321000px;}
.y3b{bottom:918.565500px;}
.y115{bottom:919.533000px;}
.y146{bottom:921.853500px;}
.y1c{bottom:924.508500px;}
.ya5{bottom:936.267000px;}
.y86{bottom:938.620500px;}
.y12d{bottom:941.545500px;}
.yc3{bottom:941.742000px;}
.y39{bottom:943.113000px;}
.yfa{bottom:949.051500px;}
.y85{bottom:949.845000px;}
.y114{bottom:950.019000px;}
.y145{bottom:952.339500px;}
.y6f{bottom:955.426500px;}
.y4{bottom:957.004500px;}
.ya4{bottom:966.753000px;}
.y53{bottom:970.600500px;}
.y1b{bottom:971.358000px;}
.yc2{bottom:972.228000px;}
.y38{bottom:973.599000px;}
.y113{bottom:980.505000px;}
.y144{bottom:982.825500px;}
.y3{bottom:984.508500px;}
.yc1{bottom:1002.714000px;}
.y37{bottom:1004.085000px;}
.ya3{bottom:1004.680500px;}
.y84{bottom:1009.174500px;}
.y112{bottom:1010.989500px;}
.y143{bottom:1013.310000px;}
.ya2{bottom:1015.905000px;}
.y1a{bottom:1018.206000px;}
.yc0{bottom:1033.200000px;}
.y2{bottom:1033.674000px;}
.y36{bottom:1034.571000px;}
.y1{bottom:1065.055500px;}
.y19{bottom:1117.360500px;}
.h1f{height:29.127297px;}
.h5{height:35.865450px;}
.h4{height:41.723369px;}
.h3{height:44.831700px;}
.h2{height:49.090950px;}
.h1{height:50.068378px;}
.hb{height:59.613450px;}
.h7{height:59.619450px;}
.he{height:62.090184px;}
.h1b{height:62.889450px;}
.h1c{height:63.393450px;}
.h1e{height:66.364950px;}
.h8{height:69.016950px;}
.h12{height:69.022950px;}
.h1d{height:70.228950px;}
.h9{height:75.272184px;}
.h15{height:79.545450px;}
.h14{height:79.551450px;}
.h6{height:82.191450px;}
.h19{height:93.370950px;}
.h16{height:94.910184px;}
.ha{height:95.198184px;}
.h13{height:95.204184px;}
.h18{height:103.234950px;}
.hf{height:103.893450px;}
.hc{height:103.899450px;}
.h11{height:107.787450px;}
.hd{height:107.793450px;}
.h1a{height:138.268950px;}
.h10{height:148.797450px;}
.h17{height:156.741450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14c{left:103.909500px;}
.x9f{left:106.086000px;}
.xb{left:108.000000px;}
.xa{left:114.363000px;}
.x12e{left:116.460000px;}
.x10f{left:117.772500px;}
.x9{left:120.273000px;}
.x110{left:124.111500px;}
.x8{left:126.636000px;}
.x20{left:128.269500px;}
.xf{left:130.416000px;}
.x14f{left:131.977500px;}
.x7{left:133.000500px;}
.x111{left:136.662000px;}
.xe7{left:138.307500px;}
.x10d{left:140.188500px;}
.x21{left:141.451500px;}
.x3f{left:142.999500px;}
.x10e{left:146.425500px;}
.x22{left:147.942000px;}
.xd{left:150.180000px;}
.x14d{left:152.832000px;}
.x40{left:154.306500px;}
.xf9{left:155.724000px;}
.x23{left:157.692000px;}
.x6{left:158.809500px;}
.x107{left:160.465500px;}
.x61{left:164.494500px;}
.x55{left:167.752500px;}
.x1{left:169.351500px;}
.x5{left:173.754000px;}
.x108{left:174.849000px;}
.x56{left:176.212500px;}
.xd7{left:178.087500px;}
.x26{left:179.650500px;}
.x87{left:181.180500px;}
.x11{left:182.596500px;}
.x135{left:183.669000px;}
.x41{left:184.791000px;}
.x75{left:186.462000px;}
.xbb{left:189.669000px;}
.x103{left:193.407000px;}
.x88{left:195.120000px;}
.x9c{left:197.616000px;}
.x7e{left:199.450500px;}
.xe8{left:202.096500px;}
.x104{left:203.157000px;}
.x57{left:205.411500px;}
.xa4{left:207.856500px;}
.xfa{left:209.952000px;}
.xd8{left:212.164500px;}
.x12f{left:213.264000px;}
.x132{left:214.698000px;}
.x10b{left:216.061500px;}
.x47{left:219.544500px;}
.xae{left:220.548000px;}
.xc9{left:222.346500px;}
.xa9{left:223.795500px;}
.x58{left:225.316500px;}
.x101{left:226.956000px;}
.xe9{left:228.153000px;}
.xeb{left:229.555500px;}
.x133{left:230.572500px;}
.x12b{left:233.235000px;}
.x48{left:234.957000px;}
.x148{left:237.381000px;}
.x27{left:238.441500px;}
.x14{left:241.551000px;}
.x144{left:243.004500px;}
.x28{left:244.933500px;}
.xdb{left:247.287000px;}
.xca{left:250.860000px;}
.x10c{left:252.157500px;}
.x15{left:254.733000px;}
.x62{left:256.750500px;}
.x29{left:259.300500px;}
.x16{left:260.968500px;}
.xdc{left:262.128000px;}
.xbc{left:263.361000px;}
.x59{left:265.425000px;}
.xb9{left:266.494500px;}
.x76{left:268.293000px;}
.x17{left:270.718500px;}
.xea{left:273.463500px;}
.x2a{left:275.779500px;}
.x9d{left:277.336500px;}
.x63{left:278.797500px;}
.x13c{left:279.898500px;}
.x18{left:281.517000px;}
.x9e{left:285.796500px;}
.x11e{left:287.722500px;}
.x77{left:289.150500px;}
.x106{left:290.871000px;}
.x2b{left:292.471500px;}
.x149{left:293.719500px;}
.xe6{left:295.519500px;}
.xcb{left:297.735000px;}
.x19{left:298.806000px;}
.x109{left:300.942000px;}
.x5a{left:302.385000px;}
.x78{left:305.631000px;}
.x10a{left:307.177500px;}
.x2c{left:309.484500px;}
.xdd{left:311.428500px;}
.x1a{left:313.072500px;}
.xc6{left:315.390000px;}
.x13d{left:316.608000px;}
.x2d{left:318.702000px;}
.x64{left:319.852500px;}
.x79{left:322.321500px;}
.xa8{left:326.967000px;}
.x112{left:328.288500px;}
.xde{left:330.831000px;}
.xa0{left:332.061000px;}
.x5b{left:334.750500px;}
.x65{left:337.935000px;}
.x7a{left:339.334500px;}
.xd0{left:341.296500px;}
.x5c{left:342.850500px;}
.x1b{left:344.589000px;}
.x10{left:345.765000px;}
.x113{left:347.808000px;}
.x2{left:348.817500px;}
.x5d{left:351.033000px;}
.x14a{left:352.713000px;}
.x7f{left:355.414500px;}
.x2e{left:356.479500px;}
.x114{left:357.559500px;}
.x14e{left:361.228500px;}
.xe1{left:362.518500px;}
.x136{left:363.891000px;}
.x46{left:365.128500px;}
.x85{left:366.156000px;}
.xd2{left:369.627000px;}
.x4{left:370.806000px;}
.xe{left:373.006500px;}
.xc7{left:374.808000px;}
.x66{left:376.665000px;}
.xdf{left:380.320500px;}
.x117{left:382.456500px;}
.x14b{left:383.661000px;}
.x42{left:384.768000px;}
.x7b{left:386.329500px;}
.xe0{left:387.418500px;}
.x5e{left:389.229000px;}
.x86{left:390.448500px;}
.x118{left:392.229000px;}
.x44{left:393.942000px;}
.x102{left:395.389500px;}
.x67{left:396.465000px;}
.xd3{left:397.899000px;}
.x49{left:399.694500px;}
.xd9{left:400.939500px;}
.x141{left:403.308000px;}
.x80{left:404.437500px;}
.x2f{left:406.431000px;}
.x3{left:409.812000px;}
.x81{left:410.928000px;}
.xda{left:416.152500px;}
.x122{left:418.621500px;}
.x147{left:422.289000px;}
.x123{left:423.919500px;}
.xfb{left:425.967000px;}
.x94{left:430.062000px;}
.x12c{left:431.499000px;}
.x82{left:433.458000px;}
.x7c{left:435.582000px;}
.x142{left:437.482500px;}
.x12d{left:439.681500px;}
.x13e{left:440.812500px;}
.x90{left:443.454000px;}
.x137{left:444.976500px;}
.xa1{left:446.335500px;}
.x5f{left:452.856000px;}
.x45{left:457.569000px;}
.xf6{left:458.806500px;}
.x43{left:463.962000px;}
.xc0{left:465.346500px;}
.x145{left:468.831000px;}
.x130{left:470.851500px;}
.xf7{left:473.245500px;}
.x134{left:474.880500px;}
.xec{left:476.578500px;}
.xaa{left:478.305000px;}
.x4a{left:479.580000px;}
.x8c{left:480.666000px;}
.x83{left:483.111000px;}
.x72{left:485.335500px;}
.xab{left:486.766500px;}
.xcc{left:489.387000px;}
.x60{left:494.937000px;}
.xb3{left:496.179000px;}
.x3b{left:498.069000px;}
.x84{left:500.208000px;}
.x124{left:503.427000px;}
.x73{left:504.754500px;}
.xaf{left:506.937000px;}
.x119{left:508.585500px;}
.x127{left:511.147500px;}
.xc8{left:513.063000px;}
.x74{left:514.504500px;}
.xe5{left:517.842000px;}
.x11f{left:519.094500px;}
.x24{left:522.532500px;}
.x35{left:526.881000px;}
.x3c{left:528.039000px;}
.xd4{left:529.570500px;}
.x4f{left:531.178500px;}
.xb4{left:532.381500px;}
.x125{left:538.206000px;}
.xb5{left:540.703500px;}
.x25{left:544.842000px;}
.x13a{left:545.913000px;}
.x11a{left:546.940500px;}
.x36{left:548.347500px;}
.x13f{left:550.570500px;}
.x120{left:551.842500px;}
.x98{left:553.740000px;}
.x37{left:554.832000px;}
.x100{left:557.658000px;}
.x68{left:559.504500px;}
.xd1{left:562.005000px;}
.x38{left:564.582000px;}
.x50{left:566.227500px;}
.x143{left:571.366500px;}
.x8b{left:574.099500px;}
.x30{left:576.241500px;}
.x51{left:577.387500px;}
.x11b{left:581.385000px;}
.xcd{left:583.164000px;}
.x6d{left:584.337000px;}
.xf0{left:586.410000px;}
.x1e{left:588.499500px;}
.xb0{left:589.645500px;}
.x31{left:591.442500px;}
.xac{left:593.254500px;}
.x4b{left:595.054500px;}
.x128{left:596.377500px;}
.xc5{left:598.452000px;}
.xc4{left:600.610500px;}
.xb6{left:601.645500px;}
.x99{left:603.793500px;}
.x52{left:606.064500px;}
.xb1{left:607.639500px;}
.x4c{left:609.177000px;}
.xee{left:611.208000px;}
.xb2{left:614.737500px;}
.x6e{left:616.212000px;}
.x121{left:619.117500px;}
.x12{left:620.413500px;}
.x53{left:622.209000px;}
.x89{left:624.279000px;}
.xe2{left:626.409000px;}
.xba{left:628.429500px;}
.xff{left:631.279500px;}
.xa6{left:633.771000px;}
.xf4{left:635.938500px;}
.x4d{left:638.020500px;}
.xf1{left:639.390000px;}
.xa2{left:641.025000px;}
.xe3{left:642.139500px;}
.xa5{left:644.146500px;}
.x95{left:646.240500px;}
.xef{left:649.128000px;}
.xad{left:650.587500px;}
.x96{left:652.731000px;}
.x6f{left:654.105000px;}
.x13{left:656.392500px;}
.x8a{left:658.866000px;}
.x4e{left:660.532500px;}
.xa7{left:662.560500px;}
.x138{left:663.600000px;}
.x3d{left:665.394000px;}
.x1f{left:666.556500px;}
.x1c{left:668.790000px;}
.xf3{left:670.375500px;}
.xbd{left:671.377500px;}
.x54{left:673.161000px;}
.x129{left:675.571500px;}
.x69{left:679.995000px;}
.x139{left:681.811500px;}
.x11c{left:684.966000px;}
.x131{left:686.017500px;}
.x9a{left:688.654500px;}
.x8d{left:689.889000px;}
.x7d{left:691.726500px;}
.x3e{left:694.128000px;}
.xc1{left:695.196000px;}
.xfc{left:697.980000px;}
.x91{left:699.841500px;}
.xb7{left:701.772000px;}
.xe4{left:703.333500px;}
.x70{left:704.470500px;}
.x1d{left:705.922500px;}
.x11d{left:709.959000px;}
.x6a{left:712.234500px;}
.x105{left:714.730500px;}
.x97{left:716.466000px;}
.x39{left:718.146000px;}
.x71{left:721.161000px;}
.xfd{left:723.489000px;}
.xf2{left:724.572000px;}
.x146{left:727.248000px;}
.x8e{left:728.908500px;}
.x32{left:731.469000px;}
.x3a{left:733.353000px;}
.x126{left:734.353500px;}
.x92{left:736.762500px;}
.x140{left:737.973000px;}
.xc2{left:740.938500px;}
.xa3{left:743.320500px;}
.x6b{left:745.735500px;}
.xed{left:747.453000px;}
.x8f{left:749.320500px;}
.xd5{left:751.030500px;}
.x9b{left:754.728000px;}
.xbe{left:756.709500px;}
.xb8{left:758.965500px;}
.xce{left:760.915500px;}
.x13b{left:763.332000px;}
.x12a{left:764.376000px;}
.x33{left:770.755500px;}
.x93{left:773.383500px;}
.xcf{left:776.070000px;}
.xc3{left:778.030500px;}
.x34{left:782.347500px;}
.x115{left:783.912000px;}
.xbf{left:787.965000px;}
.x6c{left:790.965000px;}
.xfe{left:792.822000px;}
.xf8{left:797.569500px;}
.xc{left:799.195500px;}
.x116{left:802.878000px;}
.xd6{left:805.015500px;}
.xf5{left:806.097000px;}
@media print{
.v15{vertical-align:-29.840000pt;}
.v9{vertical-align:-21.114667pt;}
.v1{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v17{vertical-align:15.354667pt;}
.vf{vertical-align:16.805333pt;}
.v5{vertical-align:17.712000pt;}
.v16{vertical-align:18.789333pt;}
.v2{vertical-align:20.064000pt;}
.v4{vertical-align:21.114667pt;}
.vd{vertical-align:24.026667pt;}
.v7{vertical-align:38.826667pt;}
.vc{vertical-align:39.909333pt;}
.v3{vertical-align:41.178667pt;}
.va{vertical-align:47.125333pt;}
.v14{vertical-align:48.128000pt;}
.ve{vertical-align:52.864000pt;}
.vb{vertical-align:60.474667pt;}
.v6{vertical-align:64.581333pt;}
.v10{vertical-align:79.269333pt;}
.v8{vertical-align:82.293333pt;}
.v11{vertical-align:100.384000pt;}
.v13{vertical-align:107.445333pt;}
.v12{vertical-align:121.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.000438pt;}
.ls6{letter-spacing:0.000456pt;}
.ls54{letter-spacing:0.001416pt;}
.ls1c{letter-spacing:0.001425pt;}
.ls2{letter-spacing:0.001911pt;}
.lsb{letter-spacing:0.001917pt;}
.ls47{letter-spacing:0.002153pt;}
.ls36{letter-spacing:0.002384pt;}
.ls21{letter-spacing:0.002391pt;}
.lsc{letter-spacing:0.003845pt;}
.lsa{letter-spacing:0.003851pt;}
.ls7{letter-spacing:0.004321pt;}
.ls2b{letter-spacing:0.004328pt;}
.ls56{letter-spacing:0.004389pt;}
.ls40{letter-spacing:0.005308pt;}
.ls4d{letter-spacing:0.009106pt;}
.ls50{letter-spacing:0.012019pt;}
.ls6b{letter-spacing:0.014363pt;}
.ls3e{letter-spacing:0.017372pt;}
.ls61{letter-spacing:0.022115pt;}
.ls1a{letter-spacing:0.022227pt;}
.ls60{letter-spacing:0.025617pt;}
.ls5c{letter-spacing:0.027969pt;}
.ls64{letter-spacing:0.028975pt;}
.ls51{letter-spacing:0.058182pt;}
.ls66{letter-spacing:0.255043pt;}
.ls2d{letter-spacing:0.814546pt;}
.ls57{letter-spacing:1.629092pt;}
.ls5{letter-spacing:2.089669pt;}
.ls6a{letter-spacing:2.210911pt;}
.ls10{letter-spacing:2.650641pt;}
.ls8{letter-spacing:2.653258pt;}
.ls38{letter-spacing:2.653398pt;}
.ls5a{letter-spacing:2.654249pt;}
.ls11{letter-spacing:2.655975pt;}
.ls4{letter-spacing:2.656452pt;}
.ls30{letter-spacing:2.656853pt;}
.ls58{letter-spacing:2.657146pt;}
.ls62{letter-spacing:2.657546pt;}
.lsd{letter-spacing:2.658591pt;}
.ls42{letter-spacing:2.658731pt;}
.ls5b{letter-spacing:2.659608pt;}
.ls67{letter-spacing:2.661287pt;}
.ls32{letter-spacing:3.076336pt;}
.ls5e{letter-spacing:6.339291pt;}
.ls3f{letter-spacing:6.341771pt;}
.ls48{letter-spacing:6.347104pt;}
.ls39{letter-spacing:6.365368pt;}
.ls3a{letter-spacing:6.375733pt;}
.ls37{letter-spacing:8.078517pt;}
.ls1{letter-spacing:8.258591pt;}
.ls3c{letter-spacing:8.802400pt;}
.ls2a{letter-spacing:9.029308pt;}
.ls19{letter-spacing:9.716372pt;}
.ls12{letter-spacing:12.349107pt;}
.ls28{letter-spacing:12.351975pt;}
.ls24{letter-spacing:12.352452pt;}
.ls65{letter-spacing:12.519744pt;}
.lsf{letter-spacing:12.916374pt;}
.ls27{letter-spacing:12.974556pt;}
.ls3b{letter-spacing:15.581258pt;}
.ls16{letter-spacing:15.586591pt;}
.ls26{letter-spacing:16.116377pt;}
.ls15{letter-spacing:16.159477pt;}
.lse{letter-spacing:16.174559pt;}
.ls46{letter-spacing:16.232741pt;}
.ls4b{letter-spacing:16.465468pt;}
.ls41{letter-spacing:17.047287pt;}
.ls17{letter-spacing:17.396378pt;}
.ls63{letter-spacing:17.803651pt;}
.ls33{letter-spacing:17.978197pt;}
.ls43{letter-spacing:18.443652pt;}
.ls44{letter-spacing:18.501834pt;}
.ls3{letter-spacing:18.792743pt;}
.ls20{letter-spacing:18.816452pt;}
.ls59{letter-spacing:18.818591pt;}
.ls3d{letter-spacing:19.200016pt;}
.ls25{letter-spacing:19.258198pt;}
.ls1b{letter-spacing:19.306144pt;}
.ls53{letter-spacing:19.432743pt;}
.ls2c{letter-spacing:19.665471pt;}
.ls4a{letter-spacing:19.781835pt;}
.ls55{letter-spacing:19.840017pt;}
.ls69{letter-spacing:20.305471pt;}
.ls5f{letter-spacing:20.421835pt;}
.ls5d{letter-spacing:21.527291pt;}
.ls2f{letter-spacing:21.876382pt;}
.ls1d{letter-spacing:21.975733pt;}
.ls68{letter-spacing:22.039925pt;}
.ls34{letter-spacing:22.458201pt;}
.ls49{letter-spacing:22.865474pt;}
.ls4e{letter-spacing:23.156383pt;}
.ls1f{letter-spacing:25.192748pt;}
.ls4c{letter-spacing:25.425476pt;}
.ls23{letter-spacing:25.541839pt;}
.ls31{letter-spacing:25.832749pt;}
.ls4f{letter-spacing:26.240022pt;}
.ls52{letter-spacing:26.530931pt;}
.ls1e{letter-spacing:26.589113pt;}
.ls35{letter-spacing:28.916388pt;}
.ls13{letter-spacing:29.090933pt;}
.ls18{letter-spacing:29.207297pt;}
.ls22{letter-spacing:32.523663pt;}
.ls14{letter-spacing:34.791244pt;}
.ls9{letter-spacing:36.712758pt;}
.ls45{letter-spacing:97.332811pt;}
.ls29{letter-spacing:117.278995pt;}
.ws2f{word-spacing:-46.062584pt;}
.ws96{word-spacing:-42.007308pt;}
.ws5b{word-spacing:-40.261852pt;}
.ws1b{word-spacing:-39.447306pt;}
.ws19{word-spacing:-37.899668pt;}
.ws9a{word-spacing:-36.654576pt;}
.ws92{word-spacing:-28.241478pt;}
.ws8a{word-spacing:-28.183296pt;}
.ws2e{word-spacing:-26.088749pt;}
.ws98{word-spacing:-21.725109pt;}
.ws33{word-spacing:-21.492382pt;}
.wsb5{word-spacing:-16.488741pt;}
.ws1f{word-spacing:-16.162923pt;}
.ws44{word-spacing:-12.543875pt;}
.ws4c{word-spacing:-8.808735pt;}
.ws56{word-spacing:-7.005097pt;}
.ws4a{word-spacing:-6.446551pt;}
.ws95{word-spacing:-6.097460pt;}
.ws29{word-spacing:-5.632005pt;}
.ws30{word-spacing:-3.246548pt;}
.ws57{word-spacing:-2.839275pt;}
.ws3a{word-spacing:-2.548366pt;}
.wsb9{word-spacing:-2.315638pt;}
.ws8e{word-spacing:-2.141093pt;}
.ws5{word-spacing:-1.742791pt;}
.ws16{word-spacing:-1.442910pt;}
.ws40{word-spacing:-1.210183pt;}
.wsa6{word-spacing:-0.686546pt;}
.ws2a{word-spacing:-0.453819pt;}
.ws94{word-spacing:-0.279273pt;}
.ws52{word-spacing:-0.221091pt;}
.ws79{word-spacing:-0.197359pt;}
.ws7c{word-spacing:-0.194767pt;}
.ws39{word-spacing:-0.192025pt;}
.wsb3{word-spacing:-0.104727pt;}
.wsbf{word-spacing:-0.053134pt;}
.ws73{word-spacing:-0.046545pt;}
.wsc{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.011636pt;}
.ws8f{word-spacing:0.244364pt;}
.ws13{word-spacing:0.360728pt;}
.wsad{word-spacing:0.418909pt;}
.ws91{word-spacing:0.593455pt;}
.ws7d{word-spacing:0.768001pt;}
.wsba{word-spacing:0.826183pt;}
.ws84{word-spacing:0.942546pt;}
.ws83{word-spacing:1.000728pt;}
.ws5a{word-spacing:1.233456pt;}
.wsa3{word-spacing:1.349819pt;}
.ws6e{word-spacing:1.466183pt;}
.ws18{word-spacing:1.524365pt;}
.ws8{word-spacing:1.551509pt;}
.ws42{word-spacing:1.582547pt;}
.ws93{word-spacing:1.698911pt;}
.wsbe{word-spacing:1.873456pt;}
.ws8b{word-spacing:1.931638pt;}
.ws86{word-spacing:1.989820pt;}
.ws85{word-spacing:2.048002pt;}
.wsa4{word-spacing:2.106184pt;}
.ws63{word-spacing:2.164365pt;}
.wsa7{word-spacing:2.222547pt;}
.wsa8{word-spacing:2.280729pt;}
.ws77{word-spacing:2.397093pt;}
.ws60{word-spacing:2.455275pt;}
.wsac{word-spacing:2.513457pt;}
.ws6{word-spacing:2.561052pt;}
.ws74{word-spacing:2.571639pt;}
.wsa5{word-spacing:2.629820pt;}
.ws68{word-spacing:2.688002pt;}
.wsc0{word-spacing:2.746184pt;}
.ws22{word-spacing:2.804366pt;}
.wsc4{word-spacing:2.826722pt;}
.ws23{word-spacing:2.862548pt;}
.ws3{word-spacing:2.879856pt;}
.ws35{word-spacing:2.920730pt;}
.ws2{word-spacing:2.932989pt;}
.ws26{word-spacing:2.978912pt;}
.wsc3{word-spacing:2.986123pt;}
.ws1e{word-spacing:3.037093pt;}
.ws14{word-spacing:3.095275pt;}
.ws4d{word-spacing:3.153457pt;}
.wsa{word-spacing:3.211639pt;}
.wsb{word-spacing:3.269821pt;}
.ws2b{word-spacing:3.328003pt;}
.ws4f{word-spacing:3.386185pt;}
.ws34{word-spacing:3.444367pt;}
.ws4e{word-spacing:3.502548pt;}
.ws17{word-spacing:3.560730pt;}
.ws25{word-spacing:3.618912pt;}
.ws1a{word-spacing:3.677094pt;}
.wsbc{word-spacing:3.735276pt;}
.wsb0{word-spacing:3.793458pt;}
.ws41{word-spacing:3.851640pt;}
.ws55{word-spacing:3.909821pt;}
.ws8d{word-spacing:3.968003pt;}
.wsb7{word-spacing:4.026185pt;}
.ws4{word-spacing:4.048801pt;}
.ws64{word-spacing:4.084367pt;}
.ws88{word-spacing:4.142549pt;}
.ws70{word-spacing:4.200731pt;}
.ws7{word-spacing:4.261336pt;}
.ws1c{word-spacing:4.375276pt;}
.ws6d{word-spacing:4.549822pt;}
.ws66{word-spacing:4.608004pt;}
.ws67{word-spacing:4.666186pt;}
.ws6c{word-spacing:4.782549pt;}
.ws45{word-spacing:4.840731pt;}
.ws3c{word-spacing:4.898913pt;}
.ws10{word-spacing:5.015277pt;}
.ws72{word-spacing:5.073459pt;}
.wsab{word-spacing:5.131641pt;}
.ws3f{word-spacing:5.248004pt;}
.ws7a{word-spacing:5.306186pt;}
.ws46{word-spacing:5.364368pt;}
.ws62{word-spacing:5.422550pt;}
.wsc7{word-spacing:5.430281pt;}
.wsb8{word-spacing:5.538914pt;}
.ws6f{word-spacing:5.597096pt;}
.ws80{word-spacing:5.655277pt;}
.wsb1{word-spacing:5.713459pt;}
.wsb4{word-spacing:5.946187pt;}
.ws1d{word-spacing:6.004369pt;}
.ws87{word-spacing:6.120732pt;}
.wsaf{word-spacing:6.178914pt;}
.ws8c{word-spacing:6.237096pt;}
.ws51{word-spacing:6.271215pt;}
.ws78{word-spacing:6.271974pt;}
.ws7e{word-spacing:6.288699pt;}
.wsa2{word-spacing:6.296400pt;}
.ws5c{word-spacing:6.528005pt;}
.ws5d{word-spacing:6.586187pt;}
.ws53{word-spacing:6.702551pt;}
.ws54{word-spacing:6.760733pt;}
.ws7f{word-spacing:6.818915pt;}
.ws81{word-spacing:6.935279pt;}
.ws61{word-spacing:7.051642pt;}
.ws12{word-spacing:7.168006pt;}
.ws75{word-spacing:7.226188pt;}
.ws27{word-spacing:7.284370pt;}
.ws21{word-spacing:7.342552pt;}
.ws58{word-spacing:7.517097pt;}
.ws9{word-spacing:7.749825pt;}
.wsbb{word-spacing:7.982552pt;}
.ws5e{word-spacing:8.098916pt;}
.ws3d{word-spacing:8.157098pt;}
.ws59{word-spacing:8.273461pt;}
.ws28{word-spacing:8.389825pt;}
.wsbd{word-spacing:8.506189pt;}
.ws5f{word-spacing:8.564371pt;}
.wsb2{word-spacing:8.738916pt;}
.ws49{word-spacing:8.855280pt;}
.ws89{word-spacing:8.913462pt;}
.ws37{word-spacing:8.971644pt;}
.ws24{word-spacing:9.262553pt;}
.ws90{word-spacing:9.437099pt;}
.ws97{word-spacing:9.495281pt;}
.ws82{word-spacing:9.503974pt;}
.ws4b{word-spacing:9.553463pt;}
.ws76{word-spacing:9.630263pt;}
.ws2c{word-spacing:9.635596pt;}
.ws32{word-spacing:9.667596pt;}
.wsb6{word-spacing:9.669826pt;}
.ws50{word-spacing:9.710263pt;}
.ws3b{word-spacing:9.766032pt;}
.wsae{word-spacing:10.018917pt;}
.ws7b{word-spacing:10.495215pt;}
.ws69{word-spacing:10.504930pt;}
.ws9f{word-spacing:10.558842pt;}
.ws31{word-spacing:10.867596pt;}
.ws43{word-spacing:11.589828pt;}
.ws9c{word-spacing:11.631974pt;}
.ws9b{word-spacing:11.632941pt;}
.ws99{word-spacing:11.640376pt;}
.ws38{word-spacing:11.674641pt;}
.wsaa{word-spacing:11.850641pt;}
.wsa9{word-spacing:11.978641pt;}
.ws6b{word-spacing:12.814263pt;}
.ws6a{word-spacing:12.819596pt;}
.ws71{word-spacing:13.218920pt;}
.wsa1{word-spacing:13.923596pt;}
.ws20{word-spacing:14.524745pt;}
.ws48{word-spacing:15.645709pt;}
.ws47{word-spacing:15.651042pt;}
.wsc1{word-spacing:15.897653pt;}
.ws1{word-spacing:16.535287pt;}
.wsa0{word-spacing:16.768014pt;}
.wsc6{word-spacing:17.640444pt;}
.wsc2{word-spacing:18.607480pt;}
.ws9e{word-spacing:18.629834pt;}
.ws3e{word-spacing:18.654263pt;}
.wsc5{word-spacing:18.862523pt;}
.ws36{word-spacing:20.040930pt;}
.ws11{word-spacing:20.297137pt;}
.ws65{word-spacing:20.350271pt;}
.ws0{word-spacing:23.846639pt;}
.ws15{word-spacing:23.912747pt;}
.ws9d{word-spacing:38.308548pt;}
.wsf{word-spacing:61.050813pt;}
.wsd{word-spacing:1807.896779pt;}
.wse{word-spacing:1994.403642pt;}
._2b{margin-left:-26.883350pt;}
._30{margin-left:-6.471692pt;}
._f{margin-left:-5.260968pt;}
._5{margin-left:-4.356977pt;}
._13{margin-left:-2.878692pt;}
._0{margin-left:-1.976593pt;}
._3{margin-left:-1.052037pt;}
._23{width:0.935836pt;}
._1{width:1.976593pt;}
._1d{width:3.258185pt;}
._33{width:4.943868pt;}
._29{width:6.692505pt;}
._2f{width:10.065463pt;}
._6{width:14.027341pt;}
._1c{width:15.680286pt;}
._25{width:17.511151pt;}
._2e{width:19.025470pt;}
._7{width:20.137735pt;}
._20{width:21.435527pt;}
._18{width:22.572974pt;}
._2{width:23.591437pt;}
._19{width:25.073204pt;}
._4{width:26.875097pt;}
._22{width:28.447752pt;}
._1f{width:29.963661pt;}
._27{width:31.360026pt;}
._24{width:32.523663pt;}
._2c{width:33.456156pt;}
._31{width:34.383893pt;}
._21{width:35.669218pt;}
._2a{width:36.827207pt;}
._1b{width:38.657359pt;}
._1e{width:40.137235pt;}
._28{width:41.890944pt;}
._26{width:43.633219pt;}
._34{width:45.730947pt;}
._32{width:46.894585pt;}
._35{width:55.625721pt;}
._1a{width:60.827637pt;}
._2d{width:61.868395pt;}
._14{width:1053.324514pt;}
._a{width:1097.338816pt;}
._c{width:1099.900409pt;}
._e{width:1322.968095pt;}
._15{width:1331.346284pt;}
._10{width:1370.354325pt;}
._12{width:1418.737038pt;}
._16{width:1444.863877pt;}
._b{width:1455.567742pt;}
._11{width:1554.476923pt;}
._d{width:1712.728420pt;}
._9{width:1859.346724pt;}
._17{width:1977.262656pt;}
._8{width:1989.050835pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:75.981333pt;}
.y35{bottom:103.080000pt;}
.y17{bottom:118.700000pt;}
.y33{bottom:125.750667pt;}
.y32{bottom:130.178667pt;}
.ydb{bottom:131.397333pt;}
.ya1{bottom:133.854667pt;}
.y34{bottom:135.457333pt;}
.y142{bottom:150.426667pt;}
.y12c{bottom:151.138667pt;}
.y52{bottom:152.848000pt;}
.y31{bottom:157.277333pt;}
.yda{bottom:158.496000pt;}
.ya0{bottom:160.953333pt;}
.y16{bottom:161.418667pt;}
.ybf{bottom:162.556000pt;}
.y30{bottom:184.374667pt;}
.yd9{bottom:185.593333pt;}
.y9f{bottom:188.050667pt;}
.y141{bottom:197.773333pt;}
.y15{bottom:204.136000pt;}
.y2f{bottom:211.473333pt;}
.yd8{bottom:212.692000pt;}
.y9e{bottom:215.149333pt;}
.y12b{bottom:217.072000pt;}
.y140{bottom:224.872000pt;}
.yf9{bottom:230.370667pt;}
.y2e{bottom:233.556000pt;}
.y2c{bottom:238.572000pt;}
.yd7{bottom:239.790667pt;}
.y9d{bottom:242.248000pt;}
.y12a{bottom:244.170667pt;}
.y2d{bottom:244.298667pt;}
.y14{bottom:246.854667pt;}
.y13f{bottom:251.970667pt;}
.y2b{bottom:265.670667pt;}
.ybe{bottom:266.330667pt;}
.yd6{bottom:266.889333pt;}
.y9c{bottom:269.346667pt;}
.y51{bottom:270.949333pt;}
.y129{bottom:271.269333pt;}
.y83{bottom:273.248000pt;}
.y111{bottom:275.898667pt;}
.yf8{bottom:283.897333pt;}
.y50{bottom:288.340000pt;}
.y13{bottom:289.573333pt;}
.y2a{bottom:292.769333pt;}
.y6e{bottom:293.244000pt;}
.ybd{bottom:293.429333pt;}
.yd5{bottom:293.988000pt;}
.y9a{bottom:296.445333pt;}
.y128{bottom:298.368000pt;}
.y13e{bottom:299.317333pt;}
.y82{bottom:300.346667pt;}
.y9b{bottom:301.722667pt;}
.y10f{bottom:302.997333pt;}
.y110{bottom:308.276000pt;}
.yf7{bottom:310.996000pt;}
.ybb{bottom:316.098667pt;}
.y4f{bottom:319.866667pt;}
.y6d{bottom:320.342667pt;}
.yba{bottom:320.526667pt;}
.ye1{bottom:321.085333pt;}
.yd4{bottom:322.304000pt;}
.y99{bottom:323.542667pt;}
.y127{bottom:325.466667pt;}
.ybc{bottom:325.805333pt;}
.y13d{bottom:326.416000pt;}
.y81{bottom:327.445333pt;}
.y10e{bottom:330.096000pt;}
.y12{bottom:332.290667pt;}
.yf6{bottom:338.094667pt;}
.y29{bottom:338.765333pt;}
.y4e{bottom:346.965333pt;}
.y6c{bottom:347.441333pt;}
.yb9{bottom:347.625333pt;}
.ye0{bottom:348.184000pt;}
.yd3{bottom:349.402667pt;}
.y157{bottom:349.985333pt;}
.y97{bottom:350.641333pt;}
.y126{bottom:352.564000pt;}
.y80{bottom:354.542667pt;}
.y98{bottom:355.920000pt;}
.y10d{bottom:357.193333pt;}
.yf5{bottom:365.193333pt;}
.yb8{bottom:372.472000pt;}
.y13c{bottom:373.762667pt;}
.y156{bottom:373.896000pt;}
.y4d{bottom:374.064000pt;}
.y6a{bottom:374.538667pt;}
.yb7{bottom:374.724000pt;}
.y11{bottom:375.009333pt;}
.ydf{bottom:375.282667pt;}
.yd2{bottom:376.501333pt;}
.y96{bottom:377.740000pt;}
.y125{bottom:379.662667pt;}
.y6b{bottom:379.817333pt;}
.y7f{bottom:381.641333pt;}
.y10c{bottom:384.292000pt;}
.yf4{bottom:392.290667pt;}
.y28{bottom:392.340000pt;}
.y155{bottom:397.806667pt;}
.y13b{bottom:400.860000pt;}
.y4b{bottom:401.162667pt;}
.y68{bottom:401.637333pt;}
.yb6{bottom:401.822667pt;}
.yde{bottom:402.381333pt;}
.yd1{bottom:403.600000pt;}
.y95{bottom:404.838667pt;}
.y4c{bottom:406.441333pt;}
.y124{bottom:406.761333pt;}
.y69{bottom:406.916000pt;}
.y7e{bottom:408.740000pt;}
.y10b{bottom:411.390667pt;}
.y10{bottom:417.728000pt;}
.yf3{bottom:419.389333pt;}
.y27{bottom:419.438667pt;}
.y154{bottom:421.717333pt;}
.yb5{bottom:426.669333pt;}
.y13a{bottom:427.958667pt;}
.y49{bottom:428.261333pt;}
.y66{bottom:428.736000pt;}
.yb4{bottom:428.921333pt;}
.ydd{bottom:429.480000pt;}
.yd0{bottom:430.697333pt;}
.y4a{bottom:433.538667pt;}
.y123{bottom:433.860000pt;}
.y67{bottom:434.014667pt;}
.y94{bottom:435.613333pt;}
.y7d{bottom:435.838667pt;}
.y10a{bottom:438.489333pt;}
.y153{bottom:445.626667pt;}
.yf2{bottom:446.488000pt;}
.y26{bottom:446.537333pt;}
.yb3{bottom:456.018667pt;}
.y65{bottom:456.309333pt;}
.ydc{bottom:456.577333pt;}
.ycf{bottom:457.796000pt;}
.y48{bottom:459.529333pt;}
.yf{bottom:460.445333pt;}
.y93{bottom:462.710667pt;}
.y7c{bottom:462.936000pt;}
.y122{bottom:463.021333pt;}
.y109{bottom:465.588000pt;}
.y47{bottom:469.506667pt;}
.y152{bottom:469.537333pt;}
.yf0{bottom:473.586667pt;}
.y25{bottom:473.634667pt;}
.y139{bottom:475.348000pt;}
.yf1{bottom:478.865333pt;}
.y64{bottom:483.408000pt;}
.yce{bottom:484.894667pt;}
.y92{bottom:489.809333pt;}
.y121{bottom:490.118667pt;}
.y107{bottom:492.685333pt;}
.y151{bottom:493.448000pt;}
.y7b{bottom:497.612000pt;}
.y108{bottom:497.964000pt;}
.yef{bottom:500.685333pt;}
.y24{bottom:500.733333pt;}
.yb2{bottom:502.674667pt;}
.ye{bottom:503.164000pt;}
.y63{bottom:510.506667pt;}
.y46{bottom:510.752000pt;}
.ycd{bottom:511.993333pt;}
.y91{bottom:516.908000pt;}
.y120{bottom:517.217333pt;}
.y150{bottom:517.358667pt;}
.y105{bottom:519.784000pt;}
.y7a{bottom:524.710667pt;}
.y106{bottom:525.062667pt;}
.yee{bottom:527.782667pt;}
.y23{bottom:527.832000pt;}
.y138{bottom:537.454667pt;}
.y62{bottom:537.604000pt;}
.y45{bottom:537.849333pt;}
.ycc{bottom:539.092000pt;}
.y14f{bottom:541.268000pt;}
.y90{bottom:544.006667pt;}
.y11f{bottom:544.316000pt;}
.yd{bottom:545.882667pt;}
.yed{bottom:550.185333pt;}
.y79{bottom:551.809333pt;}
.yec{bottom:554.881333pt;}
.y22{bottom:554.930667pt;}
.y104{bottom:557.110667pt;}
.yb1{bottom:560.593333pt;}
.y137{bottom:564.553333pt;}
.y60{bottom:564.702667pt;}
.y44{bottom:564.948000pt;}
.y14e{bottom:565.178667pt;}
.ycb{bottom:566.189333pt;}
.y61{bottom:569.981333pt;}
.y8f{bottom:571.105333pt;}
.y11e{bottom:571.414667pt;}
.yeb{bottom:577.282667pt;}
.y78{bottom:578.908000pt;}
.ye9{bottom:581.980000pt;}
.y103{bottom:584.209333pt;}
.yea{bottom:587.258667pt;}
.yaf{bottom:587.692000pt;}
.y14d{bottom:589.089333pt;}
.y136{bottom:591.652000pt;}
.y5f{bottom:591.801333pt;}
.y43{bottom:592.046667pt;}
.yc{bottom:592.416000pt;}
.yb0{bottom:592.970667pt;}
.y8e{bottom:598.202667pt;}
.y11d{bottom:598.513333pt;}
.y21{bottom:600.926667pt;}
.y77{bottom:606.006667pt;}
.ye8{bottom:609.078667pt;}
.y102{bottom:611.308000pt;}
.y14c{bottom:613.000000pt;}
.yca{bottom:613.404000pt;}
.yae{bottom:614.790667pt;}
.y135{bottom:618.749333pt;}
.y41{bottom:619.145333pt;}
.y42{bottom:624.424000pt;}
.y5e{bottom:624.960000pt;}
.y11c{bottom:625.610667pt;}
.y8d{bottom:628.977333pt;}
.y76{bottom:633.104000pt;}
.y5d{bottom:634.937333pt;}
.ye7{bottom:636.177333pt;}
.y14b{bottom:636.909333pt;}
.y101{bottom:638.405333pt;}
.yad{bottom:641.889333pt;}
.y134{bottom:645.848000pt;}
.y40{bottom:646.244000pt;}
.y11b{bottom:652.709333pt;}
.y20{bottom:654.501333pt;}
.y8c{bottom:656.076000pt;}
.y75{bottom:660.202667pt;}
.y14a{bottom:660.820000pt;}
.ye6{bottom:663.274667pt;}
.yff{bottom:665.504000pt;}
.yac{bottom:668.986667pt;}
.y100{bottom:670.782667pt;}
.yb{bottom:672.804000pt;}
.y133{bottom:672.946667pt;}
.yc9{bottom:674.514667pt;}
.y5c{bottom:680.793333pt;}
.y1f{bottom:681.600000pt;}
.y11a{bottom:681.870667pt;}
.y8b{bottom:683.174667pt;}
.y149{bottom:684.730667pt;}
.y74{bottom:687.301333pt;}
.y3f{bottom:687.489333pt;}
.ye5{bottom:690.373333pt;}
.yfe{bottom:692.602667pt;}
.yaa{bottom:696.085333pt;}
.ya{bottom:696.714667pt;}
.y132{bottom:700.045333pt;}
.yab{bottom:701.364000pt;}
.yc8{bottom:701.612000pt;}
.y5b{bottom:707.892000pt;}
.y148{bottom:708.641333pt;}
.y1e{bottom:708.698667pt;}
.y119{bottom:708.969333pt;}
.y8a{bottom:710.273333pt;}
.y73{bottom:714.400000pt;}
.yfd{bottom:719.701333pt;}
.y9{bottom:720.625333pt;}
.ya9{bottom:723.184000pt;}
.ye4{bottom:728.136000pt;}
.y131{bottom:728.536000pt;}
.yc7{bottom:728.710667pt;}
.y3e{bottom:728.733333pt;}
.y5a{bottom:730.561333pt;}
.y59{bottom:734.990667pt;}
.y118{bottom:736.068000pt;}
.y89{bottom:737.370667pt;}
.y72{bottom:741.497333pt;}
.y8{bottom:744.536000pt;}
.yfc{bottom:746.800000pt;}
.ya8{bottom:750.942667pt;}
.y1d{bottom:754.694667pt;}
.y130{bottom:755.634667pt;}
.yc6{bottom:755.809333pt;}
.y3d{bottom:760.001333pt;}
.y57{bottom:762.088000pt;}
.y117{bottom:763.165333pt;}
.y88{bottom:764.469333pt;}
.ye3{bottom:765.898667pt;}
.y58{bottom:767.366667pt;}
.y7{bottom:768.445333pt;}
.y71{bottom:768.596000pt;}
.y3c{bottom:769.978667pt;}
.yfb{bottom:773.897333pt;}
.ya7{bottom:778.041333pt;}
.y12f{bottom:782.733333pt;}
.yc5{bottom:782.908000pt;}
.y55{bottom:789.186667pt;}
.y116{bottom:790.264000pt;}
.y87{bottom:791.568000pt;}
.y147{bottom:792.326667pt;}
.y6{bottom:792.356000pt;}
.y56{bottom:794.465333pt;}
.y70{bottom:795.694667pt;}
.ya6{bottom:805.138667pt;}
.y12e{bottom:809.832000pt;}
.yc4{bottom:810.006667pt;}
.y3a{bottom:811.224000pt;}
.ye2{bottom:811.894667pt;}
.y5{bottom:816.266667pt;}
.y54{bottom:816.285333pt;}
.y3b{bottom:816.502667pt;}
.y115{bottom:817.362667pt;}
.y146{bottom:819.425333pt;}
.y1c{bottom:821.785333pt;}
.ya5{bottom:832.237333pt;}
.y86{bottom:834.329333pt;}
.y12d{bottom:836.929333pt;}
.yc3{bottom:837.104000pt;}
.y39{bottom:838.322667pt;}
.yfa{bottom:843.601333pt;}
.y85{bottom:844.306667pt;}
.y114{bottom:844.461333pt;}
.y145{bottom:846.524000pt;}
.y6f{bottom:849.268000pt;}
.y4{bottom:850.670667pt;}
.ya4{bottom:859.336000pt;}
.y53{bottom:862.756000pt;}
.y1b{bottom:863.429333pt;}
.yc2{bottom:864.202667pt;}
.y38{bottom:865.421333pt;}
.y113{bottom:871.560000pt;}
.y144{bottom:873.622667pt;}
.y3{bottom:875.118667pt;}
.yc1{bottom:891.301333pt;}
.y37{bottom:892.520000pt;}
.ya3{bottom:893.049333pt;}
.y84{bottom:897.044000pt;}
.y112{bottom:898.657333pt;}
.y143{bottom:900.720000pt;}
.ya2{bottom:903.026667pt;}
.y1a{bottom:905.072000pt;}
.yc0{bottom:918.400000pt;}
.y2{bottom:918.821333pt;}
.y36{bottom:919.618667pt;}
.y1{bottom:946.716000pt;}
.y19{bottom:993.209333pt;}
.h1f{height:25.890931pt;}
.h5{height:31.880400pt;}
.h4{height:37.087439pt;}
.h3{height:39.850400pt;}
.h2{height:43.636400pt;}
.h1{height:44.505225pt;}
.hb{height:52.989733pt;}
.h7{height:52.995067pt;}
.he{height:55.191275pt;}
.h1b{height:55.901733pt;}
.h1c{height:56.349733pt;}
.h1e{height:58.991067pt;}
.h8{height:61.348400pt;}
.h12{height:61.353733pt;}
.h1d{height:62.425733pt;}
.h9{height:66.908608pt;}
.h15{height:70.707067pt;}
.h14{height:70.712400pt;}
.h6{height:73.059067pt;}
.h19{height:82.996400pt;}
.h16{height:84.364608pt;}
.ha{height:84.620608pt;}
.h13{height:84.625941pt;}
.h18{height:91.764400pt;}
.hf{height:92.349733pt;}
.hc{height:92.355067pt;}
.h11{height:95.811067pt;}
.hd{height:95.816400pt;}
.h1a{height:122.905733pt;}
.h10{height:132.264400pt;}
.h17{height:139.325733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14c{left:92.364000pt;}
.x9f{left:94.298667pt;}
.xb{left:96.000000pt;}
.xa{left:101.656000pt;}
.x12e{left:103.520000pt;}
.x10f{left:104.686667pt;}
.x9{left:106.909333pt;}
.x110{left:110.321333pt;}
.x8{left:112.565333pt;}
.x20{left:114.017333pt;}
.xf{left:115.925333pt;}
.x14f{left:117.313333pt;}
.x7{left:118.222667pt;}
.x111{left:121.477333pt;}
.xe7{left:122.940000pt;}
.x10d{left:124.612000pt;}
.x21{left:125.734667pt;}
.x3f{left:127.110667pt;}
.x10e{left:130.156000pt;}
.x22{left:131.504000pt;}
.xd{left:133.493333pt;}
.x14d{left:135.850667pt;}
.x40{left:137.161333pt;}
.xf9{left:138.421333pt;}
.x23{left:140.170667pt;}
.x6{left:141.164000pt;}
.x107{left:142.636000pt;}
.x61{left:146.217333pt;}
.x55{left:149.113333pt;}
.x1{left:150.534667pt;}
.x5{left:154.448000pt;}
.x108{left:155.421333pt;}
.x56{left:156.633333pt;}
.xd7{left:158.300000pt;}
.x26{left:159.689333pt;}
.x87{left:161.049333pt;}
.x11{left:162.308000pt;}
.x135{left:163.261333pt;}
.x41{left:164.258667pt;}
.x75{left:165.744000pt;}
.xbb{left:168.594667pt;}
.x103{left:171.917333pt;}
.x88{left:173.440000pt;}
.x9c{left:175.658667pt;}
.x7e{left:177.289333pt;}
.xe8{left:179.641333pt;}
.x104{left:180.584000pt;}
.x57{left:182.588000pt;}
.xa4{left:184.761333pt;}
.xfa{left:186.624000pt;}
.xd8{left:188.590667pt;}
.x12f{left:189.568000pt;}
.x132{left:190.842667pt;}
.x10b{left:192.054667pt;}
.x47{left:195.150667pt;}
.xae{left:196.042667pt;}
.xc9{left:197.641333pt;}
.xa9{left:198.929333pt;}
.x58{left:200.281333pt;}
.x101{left:201.738667pt;}
.xe9{left:202.802667pt;}
.xeb{left:204.049333pt;}
.x133{left:204.953333pt;}
.x12b{left:207.320000pt;}
.x48{left:208.850667pt;}
.x148{left:211.005333pt;}
.x27{left:211.948000pt;}
.x14{left:214.712000pt;}
.x144{left:216.004000pt;}
.x28{left:217.718667pt;}
.xdb{left:219.810667pt;}
.xca{left:222.986667pt;}
.x10c{left:224.140000pt;}
.x15{left:226.429333pt;}
.x62{left:228.222667pt;}
.x29{left:230.489333pt;}
.x16{left:231.972000pt;}
.xdc{left:233.002667pt;}
.xbc{left:234.098667pt;}
.x59{left:235.933333pt;}
.xb9{left:236.884000pt;}
.x76{left:238.482667pt;}
.x17{left:240.638667pt;}
.xea{left:243.078667pt;}
.x2a{left:245.137333pt;}
.x9d{left:246.521333pt;}
.x63{left:247.820000pt;}
.x13c{left:248.798667pt;}
.x18{left:250.237333pt;}
.x9e{left:254.041333pt;}
.x11e{left:255.753333pt;}
.x77{left:257.022667pt;}
.x106{left:258.552000pt;}
.x2b{left:259.974667pt;}
.x149{left:261.084000pt;}
.xe6{left:262.684000pt;}
.xcb{left:264.653333pt;}
.x19{left:265.605333pt;}
.x109{left:267.504000pt;}
.x5a{left:268.786667pt;}
.x78{left:271.672000pt;}
.x10a{left:273.046667pt;}
.x2c{left:275.097333pt;}
.xdd{left:276.825333pt;}
.x1a{left:278.286667pt;}
.xc6{left:280.346667pt;}
.x13d{left:281.429333pt;}
.x2d{left:283.290667pt;}
.x64{left:284.313333pt;}
.x79{left:286.508000pt;}
.xa8{left:290.637333pt;}
.x112{left:291.812000pt;}
.xde{left:294.072000pt;}
.xa0{left:295.165333pt;}
.x5b{left:297.556000pt;}
.x65{left:300.386667pt;}
.x7a{left:301.630667pt;}
.xd0{left:303.374667pt;}
.x5c{left:304.756000pt;}
.x1b{left:306.301333pt;}
.x10{left:307.346667pt;}
.x113{left:309.162667pt;}
.x2{left:310.060000pt;}
.x5d{left:312.029333pt;}
.x14a{left:313.522667pt;}
.x7f{left:315.924000pt;}
.x2e{left:316.870667pt;}
.x114{left:317.830667pt;}
.x14e{left:321.092000pt;}
.xe1{left:322.238667pt;}
.x136{left:323.458667pt;}
.x46{left:324.558667pt;}
.x85{left:325.472000pt;}
.xd2{left:328.557333pt;}
.x4{left:329.605333pt;}
.xe{left:331.561333pt;}
.xc7{left:333.162667pt;}
.x66{left:334.813333pt;}
.xdf{left:338.062667pt;}
.x117{left:339.961333pt;}
.x14b{left:341.032000pt;}
.x42{left:342.016000pt;}
.x7b{left:343.404000pt;}
.xe0{left:344.372000pt;}
.x5e{left:345.981333pt;}
.x86{left:347.065333pt;}
.x118{left:348.648000pt;}
.x44{left:350.170667pt;}
.x102{left:351.457333pt;}
.x67{left:352.413333pt;}
.xd3{left:353.688000pt;}
.x49{left:355.284000pt;}
.xd9{left:356.390667pt;}
.x141{left:358.496000pt;}
.x80{left:359.500000pt;}
.x2f{left:361.272000pt;}
.x3{left:364.277333pt;}
.x81{left:365.269333pt;}
.xda{left:369.913333pt;}
.x122{left:372.108000pt;}
.x147{left:375.368000pt;}
.x123{left:376.817333pt;}
.xfb{left:378.637333pt;}
.x94{left:382.277333pt;}
.x12c{left:383.554667pt;}
.x82{left:385.296000pt;}
.x7c{left:387.184000pt;}
.x142{left:388.873333pt;}
.x12d{left:390.828000pt;}
.x13e{left:391.833333pt;}
.x90{left:394.181333pt;}
.x137{left:395.534667pt;}
.xa1{left:396.742667pt;}
.x5f{left:402.538667pt;}
.x45{left:406.728000pt;}
.xf6{left:407.828000pt;}
.x43{left:412.410667pt;}
.xc0{left:413.641333pt;}
.x145{left:416.738667pt;}
.x130{left:418.534667pt;}
.xf7{left:420.662667pt;}
.x134{left:422.116000pt;}
.xec{left:423.625333pt;}
.xaa{left:425.160000pt;}
.x4a{left:426.293333pt;}
.x8c{left:427.258667pt;}
.x83{left:429.432000pt;}
.x72{left:431.409333pt;}
.xab{left:432.681333pt;}
.xcc{left:435.010667pt;}
.x60{left:439.944000pt;}
.xb3{left:441.048000pt;}
.x3b{left:442.728000pt;}
.x84{left:444.629333pt;}
.x124{left:447.490667pt;}
.x73{left:448.670667pt;}
.xaf{left:450.610667pt;}
.x119{left:452.076000pt;}
.x127{left:454.353333pt;}
.xc8{left:456.056000pt;}
.x74{left:457.337333pt;}
.xe5{left:460.304000pt;}
.x11f{left:461.417333pt;}
.x24{left:464.473333pt;}
.x35{left:468.338667pt;}
.x3c{left:469.368000pt;}
.xd4{left:470.729333pt;}
.x4f{left:472.158667pt;}
.xb4{left:473.228000pt;}
.x125{left:478.405333pt;}
.xb5{left:480.625333pt;}
.x25{left:484.304000pt;}
.x13a{left:485.256000pt;}
.x11a{left:486.169333pt;}
.x36{left:487.420000pt;}
.x13f{left:489.396000pt;}
.x120{left:490.526667pt;}
.x98{left:492.213333pt;}
.x37{left:493.184000pt;}
.x100{left:495.696000pt;}
.x68{left:497.337333pt;}
.xd1{left:499.560000pt;}
.x38{left:501.850667pt;}
.x50{left:503.313333pt;}
.x143{left:507.881333pt;}
.x8b{left:510.310667pt;}
.x30{left:512.214667pt;}
.x51{left:513.233333pt;}
.x11b{left:516.786667pt;}
.xcd{left:518.368000pt;}
.x6d{left:519.410667pt;}
.xf0{left:521.253333pt;}
.x1e{left:523.110667pt;}
.xb0{left:524.129333pt;}
.x31{left:525.726667pt;}
.xac{left:527.337333pt;}
.x4b{left:528.937333pt;}
.x128{left:530.113333pt;}
.xc5{left:531.957333pt;}
.xc4{left:533.876000pt;}
.xb6{left:534.796000pt;}
.x99{left:536.705333pt;}
.x52{left:538.724000pt;}
.xb1{left:540.124000pt;}
.x4c{left:541.490667pt;}
.xee{left:543.296000pt;}
.xb2{left:546.433333pt;}
.x6e{left:547.744000pt;}
.x121{left:550.326667pt;}
.x12{left:551.478667pt;}
.x53{left:553.074667pt;}
.x89{left:554.914667pt;}
.xe2{left:556.808000pt;}
.xba{left:558.604000pt;}
.xff{left:561.137333pt;}
.xa6{left:563.352000pt;}
.xf4{left:565.278667pt;}
.x4d{left:567.129333pt;}
.xf1{left:568.346667pt;}
.xa2{left:569.800000pt;}
.xe3{left:570.790667pt;}
.xa5{left:572.574667pt;}
.x95{left:574.436000pt;}
.xef{left:577.002667pt;}
.xad{left:578.300000pt;}
.x96{left:580.205333pt;}
.x6f{left:581.426667pt;}
.x13{left:583.460000pt;}
.x8a{left:585.658667pt;}
.x4e{left:587.140000pt;}
.xa7{left:588.942667pt;}
.x138{left:589.866667pt;}
.x3d{left:591.461333pt;}
.x1f{left:592.494667pt;}
.x1c{left:594.480000pt;}
.xf3{left:595.889333pt;}
.xbd{left:596.780000pt;}
.x54{left:598.365333pt;}
.x129{left:600.508000pt;}
.x69{left:604.440000pt;}
.x139{left:606.054667pt;}
.x11c{left:608.858667pt;}
.x131{left:609.793333pt;}
.x9a{left:612.137333pt;}
.x8d{left:613.234667pt;}
.x7d{left:614.868000pt;}
.x3e{left:617.002667pt;}
.xc1{left:617.952000pt;}
.xfc{left:620.426667pt;}
.x91{left:622.081333pt;}
.xb7{left:623.797333pt;}
.xe4{left:625.185333pt;}
.x70{left:626.196000pt;}
.x1d{left:627.486667pt;}
.x11d{left:631.074667pt;}
.x6a{left:633.097333pt;}
.x105{left:635.316000pt;}
.x97{left:636.858667pt;}
.x39{left:638.352000pt;}
.x71{left:641.032000pt;}
.xfd{left:643.101333pt;}
.xf2{left:644.064000pt;}
.x146{left:646.442667pt;}
.x8e{left:647.918667pt;}
.x32{left:650.194667pt;}
.x3a{left:651.869333pt;}
.x126{left:652.758667pt;}
.x92{left:654.900000pt;}
.x140{left:655.976000pt;}
.xc2{left:658.612000pt;}
.xa3{left:660.729333pt;}
.x6b{left:662.876000pt;}
.xed{left:664.402667pt;}
.x8f{left:666.062667pt;}
.xd5{left:667.582667pt;}
.x9b{left:670.869333pt;}
.xbe{left:672.630667pt;}
.xb8{left:674.636000pt;}
.xce{left:676.369333pt;}
.x13b{left:678.517333pt;}
.x12a{left:679.445333pt;}
.x33{left:685.116000pt;}
.x93{left:687.452000pt;}
.xcf{left:689.840000pt;}
.xc3{left:691.582667pt;}
.x34{left:695.420000pt;}
.x115{left:696.810667pt;}
.xbf{left:700.413333pt;}
.x6c{left:703.080000pt;}
.xfe{left:704.730667pt;}
.xf8{left:708.950667pt;}
.xc{left:710.396000pt;}
.x116{left:713.669333pt;}
.xd6{left:715.569333pt;}
.xf5{left:716.530667pt;}
}




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