
    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_4efac14269acf9be28330426.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_905a8d55bbc7f050546d9a88.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_de0abdcbcde69e8398288919.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d92a435e3065f766c63ac634.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_525c371eb0b1869954aee982.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7c3a4b10004599590ac946c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.427000;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_1f0abd3e4e44872028cc45fb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2fcd9682ca1c615943077351.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a9c80847562a0e9f718a457b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.211426;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_c2dbf89feeb206c472622993.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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);}
.m2{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);}
.m20{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);}
.m4{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);}
.m23{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);}
.m14{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);}
.m1c{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);}
.m1b{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);}
.m1{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m12{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);}
.md{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);}
.m1d{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);}
.m26{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);}
.m9{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);}
.m1f{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);}
.m3{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);}
.m17{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);}
.m19{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);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m8{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);}
.mc{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);}
.m24{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);}
.m10{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);}
.m1e{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);}
.m1a{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);}
.ma{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);}
.m21{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);}
.m11{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);}
.mb{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);}
.m15{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);}
.m7{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);}
.m25{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);}
.m28{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);}
.m18{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);}
.m5{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);}
.mf{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);}
.v1{vertical-align:-11.952000px;}
.v6{vertical-align:-6.318000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.688000px;}
.va{vertical-align:12.906000px;}
.v5{vertical-align:15.186000px;}
.v9{vertical-align:21.696000px;}
.v4{vertical-align:23.910000px;}
.v2{vertical-align:28.392000px;}
.v7{vertical-align:47.820000px;}
.v3{vertical-align:56.790000px;}
.v8{vertical-align:63.012000px;}
.ls1a{letter-spacing:-0.005746px;}
.ls3{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000435px;}
.ls1d{letter-spacing:0.000466px;}
.lse{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.000608px;}
.ls2d{letter-spacing:0.000800px;}
.ls39{letter-spacing:0.000964px;}
.lsd{letter-spacing:0.002302px;}
.ls15{letter-spacing:0.005746px;}
.ls12{letter-spacing:0.006069px;}
.ls14{letter-spacing:0.045965px;}
.ls1c{letter-spacing:0.074693px;}
.ls1b{letter-spacing:0.132149px;}
.ls17{letter-spacing:0.166622px;}
.ls13{letter-spacing:0.195350px;}
.ls19{letter-spacing:0.206842px;}
.ls16{letter-spacing:0.293026px;}
.ls9{letter-spacing:0.497764px;}
.ls11{letter-spacing:0.503764px;}
.ls8{letter-spacing:0.520267px;}
.lsc{letter-spacing:2.990100px;}
.lsf{letter-spacing:3.358500px;}
.lsa{letter-spacing:3.364500px;}
.ls1f{letter-spacing:3.559200px;}
.ls0{letter-spacing:10.658566px;}
.ls36{letter-spacing:11.823869px;}
.ls2{letter-spacing:11.954850px;}
.ls35{letter-spacing:12.338155px;}
.ls5{letter-spacing:12.732203px;}
.ls34{letter-spacing:13.066727px;}
.ls24{letter-spacing:13.203904px;}
.ls2a{letter-spacing:13.294954px;}
.ls32{letter-spacing:13.300895px;}
.lsb{letter-spacing:13.448100px;}
.ls21{letter-spacing:13.448400px;}
.ls20{letter-spacing:13.454400px;}
.ls31{letter-spacing:13.476931px;}
.ls2b{letter-spacing:13.481053px;}
.ls33{letter-spacing:13.523319px;}
.ls28{letter-spacing:13.574642px;}
.ls29{letter-spacing:13.629347px;}
.ls22{letter-spacing:14.362165px;}
.ls37{letter-spacing:14.750400px;}
.ls4{letter-spacing:15.003676px;}
.ls6{letter-spacing:15.063451px;}
.ls27{letter-spacing:15.573929px;}
.ls7{letter-spacing:15.720983px;}
.ls23{letter-spacing:16.362165px;}
.ls38{letter-spacing:16.676400px;}
.ls30{letter-spacing:16.682400px;}
.ls3a{letter-spacing:17.997459px;}
.ls2f{letter-spacing:18.232753px;}
.ls2c{letter-spacing:19.868047px;}
.ls26{letter-spacing:20.462165px;}
.ls2e{letter-spacing:21.673929px;}
.ls1{letter-spacing:28.453654px;}
.ls25{letter-spacing:33.809224px;}
.ls10{letter-spacing:255.706348px;}
.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;}
}
.ws6c{word-spacing:-14.943900px;}
.ws8b{word-spacing:-14.369746px;}
.wsc2{word-spacing:-13.449600px;}
.ws24{word-spacing:-11.955150px;}
.ws3{word-spacing:-10.460700px;}
.ws109{word-spacing:-3.430855px;}
.ws59{word-spacing:-3.168107px;}
.ws5f{word-spacing:-2.988780px;}
.ws93{word-spacing:-2.630126px;}
.ws135{word-spacing:-2.474726px;}
.wsb6{word-spacing:-2.450800px;}
.ws68{word-spacing:-2.391024px;}
.ws53{word-spacing:-2.331248px;}
.ws70{word-spacing:-2.271473px;}
.ws71{word-spacing:-2.211697px;}
.ws13a{word-spacing:-2.098138px;}
.wsa6{word-spacing:-2.092146px;}
.ws141{word-spacing:-2.044339px;}
.ws45{word-spacing:-2.032370px;}
.ws8e{word-spacing:-2.028197px;}
.wsb5{word-spacing:-1.972595px;}
.ws94{word-spacing:-1.912819px;}
.ws134{word-spacing:-1.882944px;}
.ws57{word-spacing:-1.853044px;}
.ws5a{word-spacing:-1.793268px;}
.ws42{word-spacing:-1.733492px;}
.ws96{word-spacing:-1.673717px;}
.ws13b{word-spacing:-1.613952px;}
.ws89{word-spacing:-1.613941px;}
.ws132{word-spacing:-1.463308px;}
.ws131{word-spacing:-1.452557px;}
.ws17{word-spacing:-1.434614px;}
.ws78{word-spacing:-1.344960px;}
.ws3e{word-spacing:-1.315063px;}
.ws79{word-spacing:-1.291162px;}
.ws3d{word-spacing:-1.255288px;}
.ws148{word-spacing:-1.203874px;}
.ws14a{word-spacing:-1.201203px;}
.ws14c{word-spacing:-1.195710px;}
.wsa4{word-spacing:-1.195512px;}
.ws14b{word-spacing:-1.183565px;}
.ws149{word-spacing:-1.173268px;}
.ws6f{word-spacing:-1.135736px;}
.ws133{word-spacing:-1.129766px;}
.ws156{word-spacing:-1.075968px;}
.ws60{word-spacing:-1.075961px;}
.ws9e{word-spacing:-1.016185px;}
.ws130{word-spacing:-0.968371px;}
.wsa1{word-spacing:-0.956410px;}
.ws56{word-spacing:-0.896634px;}
.ws2d{word-spacing:-0.777083px;}
.wsf9{word-spacing:-0.753178px;}
.ws6e{word-spacing:-0.717307px;}
.ws8a{word-spacing:-0.657532px;}
.ws145{word-spacing:-0.645581px;}
.ws12f{word-spacing:-0.558975px;}
.ws12e{word-spacing:-0.537984px;}
.ws3f{word-spacing:-0.537980px;}
.ws2b{word-spacing:-0.478205px;}
.wsfc{word-spacing:-0.430387px;}
.ws91{word-spacing:-0.396446px;}
.ws101{word-spacing:-0.376589px;}
.ws41{word-spacing:-0.358654px;}
.wsf2{word-spacing:-0.322790px;}
.ws9c{word-spacing:-0.303744px;}
.ws11{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.273235px;}
.ws92{word-spacing:-0.270043px;}
.wsdd{word-spacing:-0.268992px;}
.wsde{word-spacing:-0.246406px;}
.ws14{word-spacing:-0.239102px;}
.ws146{word-spacing:-0.216880px;}
.wsbd{word-spacing:-0.215194px;}
.ws9b{word-spacing:-0.199969px;}
.ws15{word-spacing:-0.179327px;}
.ws100{word-spacing:-0.166911px;}
.ws12d{word-spacing:-0.161521px;}
.wsd9{word-spacing:-0.161395px;}
.ws8f{word-spacing:-0.149386px;}
.ws103{word-spacing:-0.133733px;}
.ws1c{word-spacing:-0.119551px;}
.wsf4{word-spacing:-0.107597px;}
.ws90{word-spacing:-0.097675px;}
.ws16{word-spacing:-0.059776px;}
.wsf7{word-spacing:-0.053798px;}
.ws85{word-spacing:-0.041843px;}
.ws126{word-spacing:-0.038567px;}
.ws152{word-spacing:-0.012979px;}
.ws143{word-spacing:-0.012874px;}
.wsf3{word-spacing:-0.010282px;}
.wsd2{word-spacing:-0.008467px;}
.ws14e{word-spacing:-0.007882px;}
.wsc1{word-spacing:-0.007488px;}
.ws136{word-spacing:-0.007267px;}
.wsc9{word-spacing:-0.006998px;}
.wsd0{word-spacing:-0.006979px;}
.wsf0{word-spacing:-0.006883px;}
.ws104{word-spacing:-0.006029px;}
.wscf{word-spacing:-0.005914px;}
.ws120{word-spacing:-0.005510px;}
.ws113{word-spacing:-0.005155px;}
.ws88{word-spacing:-0.004504px;}
.ws86{word-spacing:-0.004387px;}
.wsec{word-spacing:-0.004378px;}
.wsf5{word-spacing:-0.004282px;}
.ws12b{word-spacing:-0.003955px;}
.ws139{word-spacing:-0.003302px;}
.wsef{word-spacing:-0.003178px;}
.ws84{word-spacing:-0.003126px;}
.wsd8{word-spacing:-0.002986px;}
.ws9a{word-spacing:-0.002898px;}
.wsed{word-spacing:-0.002467px;}
.ws142{word-spacing:-0.002026px;}
.wsc3{word-spacing:-0.001267px;}
.ws87{word-spacing:-0.000560px;}
.ws151{word-spacing:-0.000394px;}
.ws0{word-spacing:0.000000px;}
.ws7f{word-spacing:0.000748px;}
.wsd1{word-spacing:0.000778px;}
.ws144{word-spacing:0.001709px;}
.ws23{word-spacing:0.001726px;}
.wsb1{word-spacing:0.003786px;}
.ws4a{word-spacing:0.008576px;}
.wsaf{word-spacing:0.017441px;}
.ws150{word-spacing:0.035760px;}
.ws7c{word-spacing:0.041843px;}
.wsa{word-spacing:0.047821px;}
.ws49{word-spacing:0.053798px;}
.ws12{word-spacing:0.059776px;}
.ws4c{word-spacing:0.095641px;}
.wsee{word-spacing:0.107597px;}
.wsf6{word-spacing:0.116260px;}
.ws10{word-spacing:0.119551px;}
.ws2{word-spacing:0.125528px;}
.wsa0{word-spacing:0.136653px;}
.ws14d{word-spacing:0.136776px;}
.wsd3{word-spacing:0.161395px;}
.ws7d{word-spacing:0.167371px;}
.wsf{word-spacing:0.179327px;}
.ws4b{word-spacing:0.191282px;}
.ws5{word-spacing:0.203231px;}
.ws6{word-spacing:0.209214px;}
.wsbc{word-spacing:0.215194px;}
.ws2e{word-spacing:0.239102px;}
.ws157{word-spacing:0.244824px;}
.ws99{word-spacing:0.248685px;}
.wsc8{word-spacing:0.268992px;}
.ws29{word-spacing:0.298878px;}
.ws9d{word-spacing:0.309681px;}
.ws77{word-spacing:0.321610px;}
.ws11d{word-spacing:0.322790px;}
.wsc{word-spacing:0.358654px;}
.ws7b{word-spacing:0.376500px;}
.ws73{word-spacing:0.418429px;}
.ws8{word-spacing:0.430387px;}
.ws74{word-spacing:0.478205px;}
.wsb2{word-spacing:0.537980px;}
.ws124{word-spacing:0.591782px;}
.ws5d{word-spacing:0.597756px;}
.wsc6{word-spacing:0.645581px;}
.ws64{word-spacing:0.657532px;}
.wsc5{word-spacing:0.699379px;}
.ws13{word-spacing:0.717307px;}
.ws48{word-spacing:0.777083px;}
.ws35{word-spacing:0.836858px;}
.ws129{word-spacing:0.854717px;}
.ws38{word-spacing:0.860234px;}
.ws128{word-spacing:0.860774px;}
.ws25{word-spacing:0.896634px;}
.ws107{word-spacing:0.914573px;}
.ws72{word-spacing:0.956410px;}
.ws13d{word-spacing:0.968371px;}
.wsd5{word-spacing:1.022170px;}
.ws36{word-spacing:1.075961px;}
.wsfe{word-spacing:1.129766px;}
.ws6d{word-spacing:1.135736px;}
.ws58{word-spacing:1.195512px;}
.ws31{word-spacing:1.255288px;}
.ws13e{word-spacing:1.291162px;}
.wsb0{word-spacing:1.315063px;}
.ws2f{word-spacing:1.374839px;}
.wsca{word-spacing:1.398758px;}
.ws4d{word-spacing:1.434614px;}
.ws11b{word-spacing:1.452557px;}
.ws20{word-spacing:1.494390px;}
.ws21{word-spacing:1.554166px;}
.wsa8{word-spacing:1.613941px;}
.wse0{word-spacing:1.613952px;}
.ws155{word-spacing:1.661180px;}
.wsea{word-spacing:1.667750px;}
.ws5b{word-spacing:1.673717px;}
.ws2a{word-spacing:1.733492px;}
.ws1a{word-spacing:1.793268px;}
.wse8{word-spacing:1.882944px;}
.wsaa{word-spacing:1.912819px;}
.wsab{word-spacing:1.972595px;}
.ws34{word-spacing:2.032370px;}
.ws47{word-spacing:2.092146px;}
.ws11e{word-spacing:2.098138px;}
.ws154{word-spacing:2.151936px;}
.wsc0{word-spacing:2.205734px;}
.ws39{word-spacing:2.211697px;}
.wsd6{word-spacing:2.259533px;}
.wsad{word-spacing:2.271473px;}
.ws54{word-spacing:2.331248px;}
.wsa9{word-spacing:2.391024px;}
.ws4f{word-spacing:2.450800px;}
.ws7{word-spacing:2.510252px;}
.ws76{word-spacing:2.510575px;}
.wsdb{word-spacing:2.528525px;}
.wsb9{word-spacing:2.630126px;}
.wse{word-spacing:2.689902px;}
.ws4{word-spacing:2.760598px;}
.wsae{word-spacing:2.809453px;}
.ws46{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.wsd7{word-spacing:2.905114px;}
.ws1f{word-spacing:2.929004px;}
.ws138{word-spacing:2.958912px;}
.ws98{word-spacing:2.988780px;}
.ws123{word-spacing:3.012710px;}
.wsd{word-spacing:3.048556px;}
.ws147{word-spacing:3.066509px;}
.ws110{word-spacing:3.219398px;}
.ws13f{word-spacing:3.219754px;}
.ws137{word-spacing:3.221616px;}
.ws105{word-spacing:3.221933px;}
.ws14f{word-spacing:3.222010px;}
.wsf1{word-spacing:3.222211px;}
.ws140{word-spacing:3.222451px;}
.ws11f{word-spacing:3.222758px;}
.wse1{word-spacing:3.222854px;}
.wsfb{word-spacing:3.222883px;}
.ws102{word-spacing:3.223891px;}
.ws12c{word-spacing:3.224371px;}
.ws108{word-spacing:3.224986px;}
.wse7{word-spacing:3.225082px;}
.ws153{word-spacing:3.225600px;}
.ws6a{word-spacing:3.227882px;}
.wsc7{word-spacing:3.227904px;}
.wse9{word-spacing:3.227933px;}
.ws11a{word-spacing:3.230986px;}
.ws106{word-spacing:3.281702px;}
.ws4e{word-spacing:3.287658px;}
.ws12a{word-spacing:3.335501px;}
.wsa3{word-spacing:3.347434px;}
.wscd{word-spacing:3.443098px;}
.wscc{word-spacing:3.448007px;}
.wsf8{word-spacing:3.460814px;}
.ws125{word-spacing:3.465335px;}
.wsb3{word-spacing:3.466985px;}
.ws159{word-spacing:3.496896px;}
.ws30{word-spacing:3.526760px;}
.ws18{word-spacing:3.583475px;}
.wsce{word-spacing:3.604493px;}
.ws5c{word-spacing:3.646312px;}
.wsbf{word-spacing:3.658291px;}
.wse6{word-spacing:3.765888px;}
.ws127{word-spacing:3.819686px;}
.ws44{word-spacing:3.885414px;}
.ws8c{word-spacing:3.981082px;}
.ws97{word-spacing:4.004965px;}
.ws69{word-spacing:4.064741px;}
.ws5e{word-spacing:4.124516px;}
.ws63{word-spacing:4.184292px;}
.ws10a{word-spacing:4.196275px;}
.ws61{word-spacing:4.244068px;}
.wsfd{word-spacing:4.250074px;}
.ws19{word-spacing:4.303872px;}
.wsb8{word-spacing:4.363619px;}
.wscb{word-spacing:4.411469px;}
.ws32{word-spacing:4.542946px;}
.ws26{word-spacing:4.662497px;}
.wsff{word-spacing:4.680461px;}
.ws66{word-spacing:4.722272px;}
.wsd4{word-spacing:4.734259px;}
.ws22{word-spacing:4.782048px;}
.ws122{word-spacing:4.788058px;}
.wsa5{word-spacing:4.841824px;}
.wsfa{word-spacing:4.895654px;}
.ws2c{word-spacing:4.961375px;}
.ws50{word-spacing:5.080926px;}
.ws10c{word-spacing:5.082778px;}
.ws10b{word-spacing:5.110848px;}
.ws28{word-spacing:5.200477px;}
.ws3a{word-spacing:5.259575px;}
.ws3c{word-spacing:5.260253px;}
.ws3b{word-spacing:5.264257px;}
.wsbb{word-spacing:5.272243px;}
.wsb7{word-spacing:5.320028px;}
.ws95{word-spacing:5.379804px;}
.ws1b{word-spacing:5.439580px;}
.wsa7{word-spacing:5.499355px;}
.wse2{word-spacing:5.541235px;}
.wse4{word-spacing:5.552189px;}
.wsa2{word-spacing:5.559131px;}
.wse3{word-spacing:5.595034px;}
.ws27{word-spacing:5.618906px;}
.ws1d{word-spacing:5.678682px;}
.ws10e{word-spacing:5.702630px;}
.ws6b{word-spacing:5.858009px;}
.wsac{word-spacing:5.917784px;}
.ws67{word-spacing:5.977560px;}
.wsda{word-spacing:6.025421px;}
.ws55{word-spacing:6.037336px;}
.ws75{word-spacing:6.097111px;}
.ws37{word-spacing:6.156887px;}
.ws158{word-spacing:6.294413px;}
.ws10d{word-spacing:6.402010px;}
.ws116{word-spacing:6.499145px;}
.ws115{word-spacing:6.509606px;}
.ws118{word-spacing:6.516895px;}
.ws114{word-spacing:6.563405px;}
.ws62{word-spacing:6.754643px;}
.ws43{word-spacing:6.814418px;}
.ws33{word-spacing:6.933970px;}
.wsba{word-spacing:6.939994px;}
.ws65{word-spacing:6.993745px;}
.wse5{word-spacing:6.993792px;}
.ws1e{word-spacing:7.053521px;}
.ws10f{word-spacing:7.101389px;}
.ws51{word-spacing:7.232848px;}
.ws40{word-spacing:7.711052px;}
.wsb4{word-spacing:7.830604px;}
.ws9f{word-spacing:8.069706px;}
.ws52{word-spacing:8.129482px;}
.ws119{word-spacing:8.231155px;}
.ws8d{word-spacing:8.308808px;}
.ws11c{word-spacing:8.607744px;}
.wseb{word-spacing:8.612381px;}
.ws112{word-spacing:9.199526px;}
.wsbe{word-spacing:10.755293px;}
.ws111{word-spacing:11.082470px;}
.ws13c{word-spacing:11.136269px;}
.wsdc{word-spacing:11.243866px;}
.ws121{word-spacing:15.009754px;}
.wsc4{word-spacing:17.592077px;}
.ws117{word-spacing:23.271577px;}
.ws9{word-spacing:27.221990px;}
.ws1{word-spacing:28.881541px;}
.ws80{word-spacing:145.559102px;}
.ws83{word-spacing:284.836406px;}
.ws7e{word-spacing:343.504721px;}
.ws7a{word-spacing:443.740146px;}
.ws82{word-spacing:539.618346px;}
.ws81{word-spacing:549.979901px;}
._42{margin-left:-30.073306px;}
._41{margin-left:-25.350827px;}
._3b{margin-left:-24.101537px;}
._43{margin-left:-22.457829px;}
._40{margin-left:-20.963426px;}
._45{margin-left:-19.902317px;}
._24{margin-left:-8.093536px;}
._9{margin-left:-6.766613px;}
._3{margin-left:-5.164637px;}
._a{margin-left:-3.753892px;}
._1{margin-left:-2.343197px;}
._4{margin-left:-1.147707px;}
._44{width:1.001138px;}
._3f{width:3.174097px;}
._b{width:4.435365px;}
._3d{width:6.521387px;}
._47{width:10.365242px;}
._0{width:12.971268px;}
._26{width:14.023380px;}
._14{width:15.649237px;}
._6{width:17.346895px;}
._8{width:18.363080px;}
._e{width:19.546621px;}
._7{width:21.220338px;}
._c{width:22.368045px;}
._f{width:23.551586px;}
._15{width:25.548100px;}
._2a{width:26.659918px;}
._5{width:28.285829px;}
._27{width:29.828024px;}
._28{width:31.358304px;}
._46{width:32.405429px;}
._29{width:33.498255px;}
._13{width:34.562267px;}
._d{width:36.188179px;}
._16{width:38.710703px;}
._12{width:40.181174px;}
._25{width:43.456861px;}
._3e{width:61.868160px;}
._2{width:69.500473px;}
._3c{width:88.767360px;}
._35{width:125.435596px;}
._17{width:129.976391px;}
._19{width:164.550685px;}
._1d{width:180.857509px;}
._36{width:182.072264px;}
._33{width:186.384708px;}
._20{width:192.764839px;}
._1a{width:217.344627px;}
._30{width:226.140097px;}
._1f{width:229.969265px;}
._32{width:233.561369px;}
._22{width:234.942608px;}
._37{width:237.300029px;}
._23{width:253.480651px;}
._21{width:258.945541px;}
._2f{width:265.070380px;}
._39{width:270.477276px;}
._2d{width:303.036416px;}
._1b{width:314.803010px;}
._1c{width:317.002757px;}
._2e{width:322.868053px;}
._31{width:327.828982px;}
._34{width:336.326558px;}
._1e{width:384.955830px;}
._2b{width:410.716965px;}
._2c{width:414.638278px;}
._38{width:416.879816px;}
._18{width:1000.120028px;}
._10{width:1700.810700px;}
._3a{width:2488.460700px;}
._11{width:2512.370700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs9{font-size:31.143000px;}
.fs0{font-size:41.842800px;}
.fs8{font-size:43.600200px;}
.fs7{font-size:45.429600px;}
.fs6{font-size:47.337600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:57.456000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fs4{font-size:71.731200px;}
.fsb{font-size:72.144000px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y1b5{bottom:2.808545px;}
.y1b1{bottom:4.073531px;}
.y1b6{bottom:31.181901px;}
.y1b3{bottom:31.182241px;}
.y1b2{bottom:45.653971px;}
.y40{bottom:45.921000px;}
.y17{bottom:100.260000px;}
.y1ac{bottom:103.828500px;}
.y275{bottom:105.961500px;}
.y133{bottom:110.400000px;}
.y3f{bottom:111.270000px;}
.yb5{bottom:111.463500px;}
.y1f2{bottom:111.924000px;}
.y1be{bottom:112.122000px;}
.y72{bottom:114.882000px;}
.y16{bottom:118.147500px;}
.y1e0{bottom:118.365000px;}
.y23e{bottom:120.628500px;}
.ye2{bottom:124.237500px;}
.y1ab{bottom:124.719000px;}
.y272{bottom:125.112000px;}
.y132{bottom:131.290500px;}
.y3e{bottom:132.160500px;}
.yb4{bottom:132.354000px;}
.y1f1{bottom:132.816000px;}
.y1bd{bottom:133.012500px;}
.y71{bottom:135.774000px;}
.y15{bottom:136.035000px;}
.y1f0{bottom:136.147500px;}
.y1de{bottom:139.255500px;}
.y23d{bottom:139.779000px;}
.y271{bottom:144.262500px;}
.y1df{bottom:144.681000px;}
.ye1{bottom:145.128000px;}
.y1aa{bottom:145.611000px;}
.y131{bottom:152.182500px;}
.y20d{bottom:152.397000px;}
.y3d{bottom:153.052500px;}
.yb3{bottom:153.246000px;}
.y1ef{bottom:153.706500px;}
.y1bc{bottom:153.904500px;}
.y14{bottom:153.924000px;}
.y70{bottom:156.666000px;}
.y23c{bottom:158.929500px;}
.y1dd{bottom:160.147500px;}
.y270{bottom:163.413000px;}
.ye0{bottom:166.020000px;}
.y1a9{bottom:170.986500px;}
.y13{bottom:171.811500px;}
.y130{bottom:173.074500px;}
.y3c{bottom:173.944500px;}
.yb2{bottom:174.138000px;}
.y1ee{bottom:174.598500px;}
.y1ba{bottom:174.796500px;}
.y6f{bottom:177.556500px;}
.y23b{bottom:178.080000px;}
.y10d{bottom:178.513500px;}
.y1bb{bottom:180.220500px;}
.y20c{bottom:180.862500px;}
.y1dc{bottom:181.039500px;}
.y26f{bottom:182.563500px;}
.ydf{bottom:186.912000px;}
.y12{bottom:189.699000px;}
.y12f{bottom:193.965000px;}
.y3b{bottom:194.835000px;}
.yb1{bottom:195.028500px;}
.y1ed{bottom:195.490500px;}
.y1b9{bottom:195.687000px;}
.y23a{bottom:197.230500px;}
.y6e{bottom:198.448500px;}
.y10c{bottom:199.405500px;}
.y26e{bottom:201.714000px;}
.y1db{bottom:201.930000px;}
.y11{bottom:207.586500px;}
.yde{bottom:207.802500px;}
.y20b{bottom:209.328000px;}
.y12e{bottom:214.857000px;}
.y3a{bottom:215.727000px;}
.yb0{bottom:215.920500px;}
.y1ec{bottom:216.381000px;}
.y6d{bottom:219.340500px;}
.y1a8{bottom:220.153500px;}
.y10b{bottom:220.296000px;}
.y26d{bottom:220.864500px;}
.y1da{bottom:222.822000px;}
.y10{bottom:225.475500px;}
.ydd{bottom:228.694500px;}
.y1b8{bottom:231.315000px;}
.y1a5{bottom:232.108500px;}
.y239{bottom:235.531500px;}
.y12d{bottom:235.749000px;}
.y39{bottom:236.619000px;}
.yaf{bottom:236.812500px;}
.y1eb{bottom:237.273000px;}
.y20a{bottom:237.793500px;}
.y1a4{bottom:238.086000px;}
.y26c{bottom:240.015000px;}
.y6c{bottom:240.232500px;}
.y10a{bottom:241.188000px;}
.y1d9{bottom:243.714000px;}
.y1a7{bottom:244.063500px;}
.ydc{bottom:249.586500px;}
.y1b7{bottom:250.548000px;}
.yf{bottom:252.330000px;}
.y238{bottom:254.682000px;}
.y1ea{bottom:255.435000px;}
.y1a6{bottom:256.018500px;}
.y12c{bottom:256.639500px;}
.y38{bottom:257.511000px;}
.yae{bottom:257.703000px;}
.y1e9{bottom:258.165000px;}
.y26b{bottom:259.165500px;}
.y6b{bottom:261.123000px;}
.y109{bottom:262.080000px;}
.y1d8{bottom:264.606000px;}
.y209{bottom:266.257500px;}
.ye{bottom:270.217500px;}
.ydb{bottom:270.478500px;}
.y237{bottom:273.832500px;}
.y1a3{bottom:275.176500px;}
.y1b0{bottom:275.967000px;}
.y12b{bottom:277.531500px;}
.y26a{bottom:278.316000px;}
.y37{bottom:278.401500px;}
.y1e8{bottom:279.055500px;}
.y19f{bottom:281.154000px;}
.y274{bottom:281.316000px;}
.y6a{bottom:282.015000px;}
.y108{bottom:282.970500px;}
.yad{bottom:283.078500px;}
.y140{bottom:284.713500px;}
.y1d6{bottom:285.496500px;}
.y208{bottom:285.757500px;}
.y1a2{bottom:287.131500px;}
.yd{bottom:288.105000px;}
.y1d7{bottom:290.922000px;}
.y236{bottom:292.984500px;}
.y19e{bottom:293.109000px;}
.yda{bottom:295.852500px;}
.y269{bottom:297.466500px;}
.y12a{bottom:298.423500px;}
.y19a{bottom:299.086500px;}
.y36{bottom:299.293500px;}
.y1e7{bottom:299.947500px;}
.y69{bottom:302.907000px;}
.y107{bottom:303.862500px;}
.y1b4{bottom:304.340356px;}
.y19d{bottom:305.064000px;}
.y207{bottom:305.256000px;}
.y13f{bottom:305.605500px;}
.yc{bottom:305.994000px;}
.y1d5{bottom:306.388500px;}
.y199{bottom:311.043000px;}
.y235{bottom:312.135000px;}
.y268{bottom:316.617000px;}
.y19c{bottom:317.020500px;}
.yac{bottom:318.421500px;}
.y35{bottom:320.185500px;}
.y1e6{bottom:320.839500px;}
.y1a1{bottom:322.998000px;}
.y68{bottom:323.797500px;}
.yb{bottom:323.881500px;}
.y106{bottom:324.754500px;}
.y13e{bottom:326.496000px;}
.y1d4{bottom:327.280500px;}
.y19b{bottom:328.975500px;}
.yd9{bottom:331.195500px;}
.y234{bottom:331.285500px;}
.y206{bottom:333.720000px;}
.y1a0{bottom:334.953000px;}
.y267{bottom:335.767500px;}
.yab{bottom:339.312000px;}
.y34{bottom:341.076000px;}
.y1e5{bottom:341.730000px;}
.ya{bottom:341.769000px;}
.y67{bottom:344.689500px;}
.y105{bottom:345.645000px;}
.y13d{bottom:347.388000px;}
.y1d3{bottom:348.171000px;}
.y233{bottom:350.436000px;}
.yd8{bottom:352.086000px;}
.y205{bottom:353.220000px;}
.y198{bottom:354.109500px;}
.y266{bottom:354.918000px;}
.y9{bottom:359.658000px;}
.yaa{bottom:360.204000px;}
.y129{bottom:362.622000px;}
.y66{bottom:365.581500px;}
.y195{bottom:366.066000px;}
.y33{bottom:366.451500px;}
.y104{bottom:366.537000px;}
.y13c{bottom:368.280000px;}
.y1d2{bottom:369.063000px;}
.y232{bottom:369.586500px;}
.y194{bottom:372.043500px;}
.y204{bottom:372.718500px;}
.yd7{bottom:372.978000px;}
.y265{bottom:374.070000px;}
.y8{bottom:377.545500px;}
.y197{bottom:378.021000px;}
.ya9{bottom:381.096000px;}
.y128{bottom:383.514000px;}
.y65{bottom:386.472000px;}
.y103{bottom:387.429000px;}
.y231{bottom:388.737000px;}
.y13b{bottom:389.170500px;}
.y1d1{bottom:389.955000px;}
.y196{bottom:389.976000px;}
.y203{bottom:392.217000px;}
.y264{bottom:393.220500px;}
.yd6{bottom:393.870000px;}
.y7{bottom:401.410500px;}
.ya8{bottom:401.986500px;}
.y127{bottom:404.406000px;}
.y64{bottom:407.364000px;}
.y230{bottom:407.887500px;}
.y102{bottom:408.321000px;}
.y190{bottom:409.132500px;}
.y13a{bottom:410.062500px;}
.y1cf{bottom:410.845500px;}
.y202{bottom:411.715500px;}
.y263{bottom:412.371000px;}
.yd5{bottom:414.760500px;}
.y192{bottom:415.111500px;}
.y1d0{bottom:416.271000px;}
.y6{bottom:419.299500px;}
.y18f{bottom:421.089000px;}
.ya7{bottom:422.878500px;}
.y126{bottom:425.296500px;}
.y22f{bottom:427.038000px;}
.y191{bottom:427.066500px;}
.y63{bottom:428.256000px;}
.y101{bottom:429.211500px;}
.y139{bottom:430.954500px;}
.y262{bottom:431.521500px;}
.y1ce{bottom:431.737500px;}
.y18e{bottom:433.044000px;}
.yd4{bottom:435.652500px;}
.y193{bottom:436.840500px;}
.y5{bottom:437.187000px;}
.ya6{bottom:443.770500px;}
.y32{bottom:445.663500px;}
.y125{bottom:446.188500px;}
.y62{bottom:449.146500px;}
.y100{bottom:450.103500px;}
.y261{bottom:450.672000px;}
.y138{bottom:451.846500px;}
.y18a{bottom:452.200500px;}
.y1cc{bottom:452.629500px;}
.y4{bottom:455.074500px;}
.yd3{bottom:456.544500px;}
.y1cd{bottom:458.053500px;}
.y18c{bottom:458.178000px;}
.y189{bottom:464.155500px;}
.ya5{bottom:464.661000px;}
.y22e{bottom:465.339000px;}
.y124{bottom:467.080500px;}
.y260{bottom:469.822500px;}
.y61{bottom:470.038500px;}
.y18b{bottom:470.134500px;}
.yff{bottom:470.995500px;}
.y137{bottom:472.737000px;}
.y1cb{bottom:473.520000px;}
.y18d{bottom:476.112000px;}
.yd2{bottom:477.435000px;}
.y3{bottom:478.941000px;}
.y31{bottom:484.486500px;}
.y22d{bottom:484.489500px;}
.y123{bottom:487.971000px;}
.y25f{bottom:488.973000px;}
.ya4{bottom:490.036500px;}
.y60{bottom:490.930500px;}
.yfe{bottom:491.886000px;}
.y136{bottom:493.629000px;}
.y1ca{bottom:494.412000px;}
.y188{bottom:495.268500px;}
.y2{bottom:496.828500px;}
.y1e3{bottom:499.837500px;}
.y185{bottom:501.246000px;}
.yd1{bottom:502.810500px;}
.y22c{bottom:503.640000px;}
.y30{bottom:505.378500px;}
.y187{bottom:507.223500px;}
.y25e{bottom:508.123500px;}
.y122{bottom:508.863000px;}
.y5f{bottom:511.822500px;}
.yfd{bottom:512.778000px;}
.y184{bottom:513.201000px;}
.y135{bottom:514.521000px;}
.y1{bottom:514.716000px;}
.y1c9{bottom:515.304000px;}
.y186{bottom:519.178500px;}
.y22b{bottom:522.790500px;}
.y2f{bottom:526.270500px;}
.y25d{bottom:527.274000px;}
.ya3{bottom:528.861000px;}
.y121{bottom:529.755000px;}
.y5e{bottom:532.713000px;}
.yfc{bottom:533.670000px;}
.y1c8{bottom:536.194500px;}
.yd0{bottom:538.152000px;}
.y183{bottom:538.336500px;}
.y22a{bottom:541.941000px;}
.y25c{bottom:546.424500px;}
.y2e{bottom:547.162500px;}
.ya2{bottom:549.751500px;}
.y134{bottom:550.147500px;}
.y182{bottom:550.291500px;}
.y120{bottom:550.645500px;}
.y5d{bottom:553.605000px;}
.yfb{bottom:554.560500px;}
.y17d{bottom:556.269000px;}
.y1c7{bottom:557.086500px;}
.ycf{bottom:559.044000px;}
.y229{bottom:561.091500px;}
.y181{bottom:562.246500px;}
.y25b{bottom:565.575000px;}
.y2d{bottom:568.053000px;}
.y17c{bottom:568.224000px;}
.ya1{bottom:570.643500px;}
.y11f{bottom:571.537500px;}
.y180{bottom:574.203000px;}
.y5c{bottom:574.497000px;}
.yfa{bottom:575.452500px;}
.y1c6{bottom:577.978500px;}
.yce{bottom:579.936000px;}
.y17b{bottom:580.180500px;}
.y228{bottom:580.242000px;}
.y25a{bottom:584.725500px;}
.y17f{bottom:586.158000px;}
.y2c{bottom:588.945000px;}
.ya0{bottom:591.535500px;}
.y11e{bottom:592.429500px;}
.y5b{bottom:595.387500px;}
.yf9{bottom:596.344500px;}
.y17e{bottom:598.113000px;}
.y1c5{bottom:598.870500px;}
.y227{bottom:599.392500px;}
.ycd{bottom:600.828000px;}
.y259{bottom:603.876000px;}
.y2b{bottom:609.837000px;}
.y11d{bottom:613.320000px;}
.y5a{bottom:616.279500px;}
.yf8{bottom:617.235000px;}
.y17a{bottom:617.269500px;}
.y226{bottom:618.543000px;}
.ycb{bottom:618.988500px;}
.y1c4{bottom:619.761000px;}
.yca{bottom:621.718500px;}
.y258{bottom:623.026500px;}
.ycc{bottom:627.144000px;}
.y179{bottom:629.226000px;}
.y2a{bottom:630.727500px;}
.y11c{bottom:634.212000px;}
.y59{bottom:637.171500px;}
.y225{bottom:637.693500px;}
.yf7{bottom:638.127000px;}
.y1c3{bottom:640.653000px;}
.y9f{bottom:641.376000px;}
.y257{bottom:642.177000px;}
.yc9{bottom:642.610500px;}
.y29{bottom:651.619500px;}
.y11b{bottom:655.104000px;}
.y9e{bottom:655.572000px;}
.y224{bottom:656.844000px;}
.y58{bottom:658.062000px;}
.yf6{bottom:659.019000px;}
.y178{bottom:660.337500px;}
.y256{bottom:661.327500px;}
.y1c2{bottom:661.545000px;}
.y171{bottom:666.315000px;}
.yc8{bottom:667.984500px;}
.y177{bottom:672.292500px;}
.y28{bottom:672.511500px;}
.y11a{bottom:675.996000px;}
.y170{bottom:678.271500px;}
.y57{bottom:678.954000px;}
.yf5{bottom:679.911000px;}
.y255{bottom:680.478000px;}
.y1c1{bottom:682.435500px;}
.y176{bottom:684.249000px;}
.y16d{bottom:690.226500px;}
.y9d{bottom:691.168500px;}
.y27{bottom:693.402000px;}
.y223{bottom:695.146500px;}
.y175{bottom:696.204000px;}
.y119{bottom:696.886500px;}
.y254{bottom:699.628500px;}
.y56{bottom:699.846000px;}
.yf4{bottom:700.801500px;}
.y16c{bottom:702.181500px;}
.yc7{bottom:703.327500px;}
.y9a{bottom:705.364500px;}
.y174{bottom:708.159000px;}
.y99{bottom:712.464000px;}
.y16f{bottom:714.136500px;}
.y26{bottom:714.294000px;}
.y222{bottom:714.297000px;}
.y118{bottom:717.778500px;}
.y253{bottom:718.779000px;}
.y9c{bottom:719.562000px;}
.y173{bottom:720.114000px;}
.y55{bottom:720.736500px;}
.yc6{bottom:724.219500px;}
.y16e{bottom:726.091500px;}
.yf3{bottom:726.177000px;}
.y172{bottom:732.069000px;}
.y221{bottom:733.447500px;}
.y9b{bottom:733.758000px;}
.y25{bottom:735.186000px;}
.y252{bottom:737.929500px;}
.y117{bottom:738.670500px;}
.y54{bottom:741.628500px;}
.yc5{bottom:745.110000px;}
.y1fd{bottom:746.112000px;}
.y1e2{bottom:750.535500px;}
.y16b{bottom:751.227000px;}
.y220{bottom:752.598000px;}
.y98{bottom:755.157000px;}
.y24{bottom:756.076500px;}
.y251{bottom:757.081500px;}
.y167{bottom:757.204500px;}
.y116{bottom:759.561000px;}
.yf2{bottom:761.518500px;}
.y53{bottom:762.520500px;}
.y16a{bottom:763.182000px;}
.yc4{bottom:766.002000px;}
.y166{bottom:769.159500px;}
.y97{bottom:769.354500px;}
.y21f{bottom:771.748500px;}
.y169{bottom:775.137000px;}
.y250{bottom:776.232000px;}
.y94{bottom:776.452500px;}
.y23{bottom:776.968500px;}
.y115{bottom:780.453000px;}
.y165{bottom:781.114500px;}
.yf1{bottom:782.410500px;}
.y52{bottom:783.411000px;}
.y96{bottom:783.550500px;}
.y1fc{bottom:784.936500px;}
.yc3{bottom:786.894000px;}
.y168{bottom:787.092000px;}
.y21e{bottom:790.899000px;}
.y24f{bottom:795.382500px;}
.y95{bottom:797.748000px;}
.y22{bottom:797.860500px;}
.y114{bottom:801.345000px;}
.yf0{bottom:803.302500px;}
.y51{bottom:804.303000px;}
.y1fb{bottom:805.827000px;}
.y164{bottom:806.250000px;}
.yc2{bottom:807.784500px;}
.y21d{bottom:810.049500px;}
.y24e{bottom:814.533000px;}
.y163{bottom:818.205000px;}
.y21{bottom:818.751000px;}
.y93{bottom:819.147000px;}
.y113{bottom:822.235500px;}
.y15e{bottom:824.182500px;}
.yef{bottom:824.193000px;}
.y50{bottom:825.195000px;}
.y91{bottom:826.245000px;}
.y1fa{bottom:826.719000px;}
.yc1{bottom:828.676500px;}
.y21c{bottom:829.200000px;}
.y162{bottom:830.160000px;}
.y92{bottom:833.343000px;}
.y24d{bottom:833.683500px;}
.y1c0{bottom:834.102000px;}
.y15d{bottom:836.137500px;}
.y15f{bottom:839.934000px;}
.y161{bottom:842.115000px;}
.y112{bottom:843.127500px;}
.yee{bottom:845.085000px;}
.y4f{bottom:846.087000px;}
.y1f9{bottom:847.611000px;}
.y21b{bottom:848.350500px;}
.y20{bottom:848.610000px;}
.yc0{bottom:849.568500px;}
.y24c{bottom:852.834000px;}
.y160{bottom:854.070000px;}
.y90{bottom:854.743500px;}
.y111{bottom:864.019500px;}
.yed{bottom:865.977000px;}
.y4e{bottom:866.977500px;}
.y21a{bottom:867.501000px;}
.y1f8{bottom:868.503000px;}
.y8f{bottom:868.939500px;}
.ybf{bottom:870.460500px;}
.y24b{bottom:871.984500px;}
.y15c{bottom:873.228000px;}
.y8c{bottom:883.137000px;}
.y110{bottom:884.910000px;}
.y15b{bottom:885.183000px;}
.y219{bottom:886.651500px;}
.yec{bottom:886.867500px;}
.y4d{bottom:887.869500px;}
.y1f{bottom:888.630000px;}
.y1f7{bottom:889.393500px;}
.y1e4{bottom:890.335500px;}
.y24a{bottom:891.135000px;}
.ybe{bottom:891.351000px;}
.y15a{bottom:897.138000px;}
.y8e{bottom:897.333000px;}
.y150{bottom:903.115500px;}
.y1e{bottom:904.768500px;}
.y10f{bottom:905.802000px;}
.y4c{bottom:908.761500px;}
.y159{bottom:909.093000px;}
.y1f6{bottom:910.285500px;}
.y8d{bottom:911.530500px;}
.ybd{bottom:912.243000px;}
.y14f{bottom:915.070500px;}
.y1d{bottom:920.908500px;}
.y158{bottom:921.048000px;}
.y218{bottom:924.952500px;}
.y10e{bottom:926.694000px;}
.y14e{bottom:927.025500px;}
.y249{bottom:929.436000px;}
.y4b{bottom:929.652000px;}
.y1f5{bottom:931.177500px;}
.y87{bottom:932.929500px;}
.y157{bottom:933.003000px;}
.ybc{bottom:933.135000px;}
.y14a{bottom:938.980500px;}
.y8b{bottom:940.027500px;}
.y217{bottom:944.103000px;}
.y156{bottom:944.959500px;}
.y86{bottom:947.125500px;}
.yeb{bottom:947.584500px;}
.y248{bottom:948.586500px;}
.y76{bottom:950.544000px;}
.y14d{bottom:950.937000px;}
.y1f4{bottom:952.068000px;}
.ybb{bottom:954.025500px;}
.y8a{bottom:954.223500px;}
.y4a{bottom:955.027500px;}
.y155{bottom:956.914500px;}
.y83{bottom:961.323000px;}
.y14c{bottom:962.892000px;}
.y279{bottom:963.007500px;}
.y216{bottom:963.253500px;}
.y247{bottom:967.737000px;}
.y89{bottom:968.421000px;}
.yea{bottom:968.476500px;}
.y154{bottom:968.869500px;}
.y1c{bottom:969.925500px;}
.y75{bottom:971.436000px;}
.y1f3{bottom:972.960000px;}
.y14b{bottom:974.847000px;}
.yba{bottom:974.917500px;}
.y85{bottom:975.519000px;}
.y153{bottom:980.824500px;}
.y278{bottom:982.158000px;}
.y215{bottom:982.404000px;}
.y88{bottom:982.617000px;}
.y246{bottom:986.887500px;}
.ye9{bottom:989.368500px;}
.y84{bottom:989.716500px;}
.y201{bottom:992.326500px;}
.y152{bottom:992.779500px;}
.y49{bottom:993.852000px;}
.yb9{bottom:995.809500px;}
.y74{bottom:996.810000px;}
.y1e1{bottom:1000.291500px;}
.y277{bottom:1001.308500px;}
.y214{bottom:1001.554500px;}
.y273{bottom:1004.083500px;}
.y151{bottom:1004.734500px;}
.y245{bottom:1006.038000px;}
.y1b{bottom:1008.748500px;}
.ye8{bottom:1010.260500px;}
.y82{bottom:1011.115500px;}
.y200{bottom:1013.218500px;}
.y48{bottom:1014.742500px;}
.yb8{bottom:1016.700000px;}
.y73{bottom:1017.702000px;}
.y7e{bottom:1018.213500px;}
.y213{bottom:1020.705000px;}
.y1bf{bottom:1021.183500px;}
.y149{bottom:1023.892500px;}
.y244{bottom:1025.188500px;}
.y81{bottom:1025.311500px;}
.y145{bottom:1029.870000px;}
.ye7{bottom:1031.151000px;}
.y7d{bottom:1032.411000px;}
.y1ff{bottom:1034.110500px;}
.y47{bottom:1035.634500px;}
.y147{bottom:1035.847500px;}
.y1af{bottom:1037.592000px;}
.y7a{bottom:1039.509000px;}
.y212{bottom:1039.855500px;}
.y1a{bottom:1040.086500px;}
.y143{bottom:1041.825000px;}
.yb7{bottom:1042.075500px;}
.y243{bottom:1044.339000px;}
.y7c{bottom:1046.607000px;}
.y146{bottom:1047.802500px;}
.ye6{bottom:1052.043000px;}
.y80{bottom:1053.705000px;}
.y144{bottom:1053.780000px;}
.y46{bottom:1056.526500px;}
.y1ae{bottom:1058.484000px;}
.y211{bottom:1059.007500px;}
.y1fe{bottom:1059.484500px;}
.y148{bottom:1059.757500px;}
.y7b{bottom:1060.804500px;}
.y242{bottom:1063.489500px;}
.y7f{bottom:1067.902500px;}
.y19{bottom:1071.424500px;}
.ye5{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y210{bottom:1078.158000px;}
.y142{bottom:1078.915500px;}
.y241{bottom:1082.640000px;}
.y276{bottom:1082.848500px;}
.y1ad{bottom:1083.858000px;}
.y141{bottom:1084.893000px;}
.y79{bottom:1089.301500px;}
.ye4{bottom:1093.825500px;}
.y20f{bottom:1097.308500px;}
.y44{bottom:1098.309000px;}
.y240{bottom:1101.790500px;}
.y18{bottom:1102.761000px;}
.yb6{bottom:1103.734500px;}
.ye3{bottom:1114.717500px;}
.y20e{bottom:1116.459000px;}
.y43{bottom:1119.201000px;}
.y23f{bottom:1120.941000px;}
.y78{bottom:1122.340500px;}
.y42{bottom:1140.091500px;}
.y77{bottom:1141.573500px;}
.y41{bottom:1200.196500px;}
.h12{height:15.042069px;}
.h1a{height:17.928000px;}
.hf{height:22.864061px;}
.h1c{height:27.138122px;}
.h1b{height:30.084428px;}
.hc{height:34.574294px;}
.h2{height:37.993262px;}
.h10{height:41.250077px;}
.ha{height:41.723369px;}
.h6{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.875290px;}
.hb{height:48.848947px;}
.h20{height:49.172947px;}
.h1f{height:51.536947px;}
.h21{height:51.542947px;}
.h9{height:51.861658px;}
.h19{height:53.444180px;}
.h11{height:54.162344px;}
.h8{height:54.276245px;}
.h22{height:60.848947px;}
.h1d{height:61.754947px;}
.h1e{height:61.760947px;}
.h16{height:61.903262px;}
.h18{height:67.106602px;}
.hd{height:71.813105px;}
.h5{height:77.792486px;}
.h4{height:78.115277px;}
.h13{height:85.813262px;}
.h15{height:85.819262px;}
.he{height:100.211105px;}
.h14{height:133.639262px;}
.h17{height:403.722000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:90.720003px;}
.w4{width:122.364006px;}
.w3{width:257.040005px;}
.w2{width:715.546800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x89{left:7.560022px;}
.x94{left:15.875958px;}
.x8b{left:29.160022px;}
.x87{left:45.723597px;}
.x1{left:53.574000px;}
.x8d{left:57.564020px;}
.x29{left:62.754000px;}
.x28{left:70.030500px;}
.x8f{left:78.084009px;}
.x97{left:82.620044px;}
.xc4{left:84.220500px;}
.xc3{left:85.848000px;}
.x85{left:88.473000px;}
.x91{left:89.748029px;}
.x42{left:104.062500px;}
.xcd{left:108.441000px;}
.xce{left:123.234000px;}
.xd0{left:130.980000px;}
.xcf{left:132.520500px;}
.x8a{left:142.491587px;}
.xca{left:151.029000px;}
.xc8{left:155.865000px;}
.x92{left:161.136035px;}
.x8c{left:163.443613px;}
.xcb{left:171.415500px;}
.xcc{left:178.945500px;}
.x8e{left:191.847611px;}
.x90{left:212.367600px;}
.x88{left:214.764587px;}
.x4d{left:219.537000px;}
.x44{left:221.383500px;}
.x5c{left:223.848000px;}
.x79{left:225.051000px;}
.x62{left:226.441500px;}
.x4e{left:229.432500px;}
.x5d{left:230.811000px;}
.x68{left:232.168500px;}
.x43{left:233.460000px;}
.x61{left:234.642000px;}
.x4c{left:235.921500px;}
.x6f{left:237.321000px;}
.x63{left:238.356000px;}
.x78{left:241.599000px;}
.x6c{left:244.191000px;}
.x6b{left:245.271000px;}
.xd1{left:246.934500px;}
.x3{left:248.526000px;}
.x2{left:249.591000px;}
.xbe{left:252.699000px;}
.xa2{left:254.299500px;}
.x45{left:255.898500px;}
.x74{left:263.866500px;}
.xa3{left:266.592000px;}
.x59{left:268.839000px;}
.x6d{left:270.370500px;}
.x5e{left:271.584000px;}
.x31{left:275.868000px;}
.x4{left:281.479500px;}
.xa4{left:285.525000px;}
.xb9{left:288.984000px;}
.xa5{left:292.330500px;}
.xd{left:297.016500px;}
.x30{left:304.243500px;}
.x5{left:310.839000px;}
.xe{left:311.959500px;}
.x6{left:318.310500px;}
.xf{left:319.573500px;}
.xbb{left:323.632500px;}
.x7{left:325.932000px;}
.x2c{left:330.807000px;}
.x8{left:333.403500px;}
.x10{left:334.518000px;}
.x57{left:341.902500px;}
.xc9{left:343.002000px;}
.xaf{left:345.549000px;}
.x58{left:346.636500px;}
.x35{left:351.339000px;}
.xc6{left:354.031500px;}
.x32{left:356.373000px;}
.xc7{left:357.816000px;}
.x33{left:363.180000px;}
.x36{left:366.283500px;}
.xba{left:367.599000px;}
.xb3{left:371.415000px;}
.x7a{left:376.515000px;}
.x46{left:378.136500px;}
.x50{left:380.740500px;}
.x4f{left:381.861000px;}
.x5a{left:385.548000px;}
.x6e{left:389.559000px;}
.xbf{left:390.636000px;}
.x9d{left:392.608500px;}
.xb4{left:393.831000px;}
.x75{left:395.836500px;}
.x5f{left:399.199500px;}
.x64{left:401.913000px;}
.x7c{left:405.202500px;}
.x9e{left:407.553000px;}
.x2a{left:412.011000px;}
.xa1{left:413.566500px;}
.x51{left:414.858000px;}
.x60{left:416.254500px;}
.x47{left:417.625500px;}
.x9f{left:419.200500px;}
.x65{left:420.366000px;}
.x82{left:421.708500px;}
.x71{left:425.308500px;}
.x22{left:426.879000px;}
.x83{left:430.939500px;}
.xb5{left:434.286000px;}
.x23{left:441.823500px;}
.x24{left:449.445000px;}
.x25{left:464.388000px;}
.x80{left:480.664500px;}
.xac{left:483.685500px;}
.xd7{left:487.383000px;}
.xb1{left:490.375500px;}
.x81{left:495.609000px;}
.xd4{left:496.792500px;}
.x93{left:505.500622px;}
.x37{left:512.580000px;}
.x99{left:515.718000px;}
.x2d{left:521.569500px;}
.xa0{left:524.485500px;}
.x38{left:527.524500px;}
.x39{left:531.253500px;}
.x66{left:533.488500px;}
.x4a{left:534.967500px;}
.x2e{left:536.512500px;}
.x69{left:538.431000px;}
.x52{left:540.088500px;}
.x48{left:542.431500px;}
.x5b{left:543.754500px;}
.x7d{left:545.125500px;}
.x3a{left:546.196500px;}
.x49{left:547.458000px;}
.x54{left:549.027000px;}
.x67{left:550.930500px;}
.x55{left:551.982000px;}
.xd2{left:553.354500px;}
.x84{left:556.050000px;}
.x53{left:559.786500px;}
.x9a{left:561.078000px;}
.x6a{left:563.704500px;}
.x70{left:568.443000px;}
.xa8{left:575.215500px;}
.xc1{left:578.946000px;}
.xa9{left:582.022500px;}
.x4b{left:585.012000px;}
.x76{left:588.019500px;}
.xc2{left:593.890500px;}
.x7b{left:596.188500px;}
.x17{left:598.387500px;}
.x7e{left:604.087500px;}
.xad{left:606.976500px;}
.x2b{left:608.239500px;}
.x9b{left:610.117500px;}
.x9{left:611.886000px;}
.x18{left:613.332000px;}
.xa{left:619.359000px;}
.x96{left:620.391587px;}
.xae{left:621.921000px;}
.xb{left:626.965500px;}
.x11{left:630.862500px;}
.x9c{left:632.533500px;}
.xc{left:634.437000px;}
.x95{left:638.772582px;}
.x98{left:641.019626px;}
.x1b{left:643.810500px;}
.x12{left:645.807000px;}
.x34{left:649.108500px;}
.xa6{left:651.562500px;}
.x1c{left:658.755000px;}
.x3f{left:660.000000px;}
.x1d{left:666.294000px;}
.x40{left:667.323000px;}
.x72{left:673.870500px;}
.x73{left:678.603000px;}
.x1e{left:681.237000px;}
.x41{left:682.267500px;}
.xb6{left:684.579000px;}
.xbc{left:687.199500px;}
.x26{left:689.548500px;}
.xa7{left:701.640000px;}
.x27{left:704.491500px;}
.xb7{left:706.995000px;}
.x86{left:708.947782px;}
.xaa{left:719.841000px;}
.xab{left:726.646500px;}
.x13{left:732.498000px;}
.xb0{left:734.733000px;}
.x14{left:747.441000px;}
.xc5{left:753.483000px;}
.x15{left:755.062500px;}
.x56{left:763.899000px;}
.x3b{left:766.275000px;}
.x16{left:770.007000px;}
.xb2{left:774.108000px;}
.x7f{left:775.668000px;}
.x77{left:778.282500px;}
.x3c{left:781.218000px;}
.x3d{left:788.697000px;}
.xd5{left:790.899000px;}
.xd3{left:792.220500px;}
.xb8{left:794.554500px;}
.x20{left:795.613500px;}
.x2f{left:801.873000px;}
.x3e{left:803.641500px;}
.xbd{left:809.478000px;}
.x21{left:810.558000px;}
.x19{left:817.698000px;}
.x1f{left:829.074000px;}
.x1a{left:832.642500px;}
.xc0{left:833.838000px;}
.xd6{left:837.972000px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v6{vertical-align:-5.616000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.389333pt;}
.va{vertical-align:11.472000pt;}
.v5{vertical-align:13.498667pt;}
.v9{vertical-align:19.285333pt;}
.v4{vertical-align:21.253333pt;}
.v2{vertical-align:25.237333pt;}
.v7{vertical-align:42.506667pt;}
.v3{vertical-align:50.480000pt;}
.v8{vertical-align:56.010667pt;}
.ls1a{letter-spacing:-0.005107pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000387pt;}
.ls1d{letter-spacing:0.000414pt;}
.lse{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.000540pt;}
.ls2d{letter-spacing:0.000711pt;}
.ls39{letter-spacing:0.000857pt;}
.lsd{letter-spacing:0.002046pt;}
.ls15{letter-spacing:0.005107pt;}
.ls12{letter-spacing:0.005395pt;}
.ls14{letter-spacing:0.040858pt;}
.ls1c{letter-spacing:0.066394pt;}
.ls1b{letter-spacing:0.117466pt;}
.ls17{letter-spacing:0.148109pt;}
.ls13{letter-spacing:0.173645pt;}
.ls19{letter-spacing:0.183859pt;}
.ls16{letter-spacing:0.260467pt;}
.ls9{letter-spacing:0.442457pt;}
.ls11{letter-spacing:0.447791pt;}
.ls8{letter-spacing:0.462460pt;}
.lsc{letter-spacing:2.657867pt;}
.lsf{letter-spacing:2.985333pt;}
.lsa{letter-spacing:2.990667pt;}
.ls1f{letter-spacing:3.163733pt;}
.ls0{letter-spacing:9.474281pt;}
.ls36{letter-spacing:10.510106pt;}
.ls2{letter-spacing:10.626533pt;}
.ls35{letter-spacing:10.967249pt;}
.ls5{letter-spacing:11.317514pt;}
.ls34{letter-spacing:11.614868pt;}
.ls24{letter-spacing:11.736804pt;}
.ls2a{letter-spacing:11.817737pt;}
.ls32{letter-spacing:11.823018pt;}
.lsb{letter-spacing:11.953867pt;}
.ls21{letter-spacing:11.954133pt;}
.ls20{letter-spacing:11.959467pt;}
.ls31{letter-spacing:11.979494pt;}
.ls2b{letter-spacing:11.983158pt;}
.ls33{letter-spacing:12.020728pt;}
.ls28{letter-spacing:12.066349pt;}
.ls29{letter-spacing:12.114975pt;}
.ls22{letter-spacing:12.766369pt;}
.ls37{letter-spacing:13.111467pt;}
.ls4{letter-spacing:13.336601pt;}
.ls6{letter-spacing:13.389734pt;}
.ls27{letter-spacing:13.843493pt;}
.ls7{letter-spacing:13.974207pt;}
.ls23{letter-spacing:14.544146pt;}
.ls38{letter-spacing:14.823467pt;}
.ls30{letter-spacing:14.828800pt;}
.ls3a{letter-spacing:15.997741pt;}
.ls2f{letter-spacing:16.206892pt;}
.ls2c{letter-spacing:17.660486pt;}
.ls26{letter-spacing:18.188591pt;}
.ls2e{letter-spacing:19.265715pt;}
.ls1{letter-spacing:25.292137pt;}
.ls25{letter-spacing:30.052643pt;}
.ls10{letter-spacing:227.294531pt;}
.ws6c{word-spacing:-13.283467pt;}
.ws8b{word-spacing:-12.773107pt;}
.wsc2{word-spacing:-11.955200pt;}
.ws24{word-spacing:-10.626800pt;}
.ws3{word-spacing:-9.298400pt;}
.ws109{word-spacing:-3.049649pt;}
.ws59{word-spacing:-2.816095pt;}
.ws5f{word-spacing:-2.656693pt;}
.ws93{word-spacing:-2.337890pt;}
.ws135{word-spacing:-2.199757pt;}
.wsb6{word-spacing:-2.178489pt;}
.ws68{word-spacing:-2.125355pt;}
.ws53{word-spacing:-2.072221pt;}
.ws70{word-spacing:-2.019087pt;}
.ws71{word-spacing:-1.965953pt;}
.ws13a{word-spacing:-1.865011pt;}
.wsa6{word-spacing:-1.859685pt;}
.ws141{word-spacing:-1.817190pt;}
.ws45{word-spacing:-1.806551pt;}
.ws8e{word-spacing:-1.802842pt;}
.wsb5{word-spacing:-1.753418pt;}
.ws94{word-spacing:-1.700284pt;}
.ws134{word-spacing:-1.673728pt;}
.ws57{word-spacing:-1.647150pt;}
.ws5a{word-spacing:-1.594016pt;}
.ws42{word-spacing:-1.540882pt;}
.ws96{word-spacing:-1.487748pt;}
.ws13b{word-spacing:-1.434624pt;}
.ws89{word-spacing:-1.434614pt;}
.ws132{word-spacing:-1.300718pt;}
.ws131{word-spacing:-1.291162pt;}
.ws17{word-spacing:-1.275213pt;}
.ws78{word-spacing:-1.195520pt;}
.ws3e{word-spacing:-1.168945pt;}
.ws79{word-spacing:-1.147699pt;}
.ws3d{word-spacing:-1.115811pt;}
.ws148{word-spacing:-1.070111pt;}
.ws14a{word-spacing:-1.067736pt;}
.ws14c{word-spacing:-1.062853pt;}
.wsa4{word-spacing:-1.062677pt;}
.ws14b{word-spacing:-1.052058pt;}
.ws149{word-spacing:-1.042905pt;}
.ws6f{word-spacing:-1.009543pt;}
.ws133{word-spacing:-1.004237pt;}
.ws156{word-spacing:-0.956416pt;}
.ws60{word-spacing:-0.956410pt;}
.ws9e{word-spacing:-0.903276pt;}
.ws130{word-spacing:-0.860774pt;}
.wsa1{word-spacing:-0.850142pt;}
.ws56{word-spacing:-0.797008pt;}
.ws2d{word-spacing:-0.690740pt;}
.wsf9{word-spacing:-0.669491pt;}
.ws6e{word-spacing:-0.637606pt;}
.ws8a{word-spacing:-0.584473pt;}
.ws145{word-spacing:-0.573850pt;}
.ws12f{word-spacing:-0.496867pt;}
.ws12e{word-spacing:-0.478208pt;}
.ws3f{word-spacing:-0.478205pt;}
.ws2b{word-spacing:-0.425071pt;}
.wsfc{word-spacing:-0.382566pt;}
.ws91{word-spacing:-0.352397pt;}
.ws101{word-spacing:-0.334746pt;}
.ws41{word-spacing:-0.318803pt;}
.wsf2{word-spacing:-0.286925pt;}
.ws9c{word-spacing:-0.269995pt;}
.ws11{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.242876pt;}
.ws92{word-spacing:-0.240038pt;}
.wsdd{word-spacing:-0.239104pt;}
.wsde{word-spacing:-0.219027pt;}
.ws14{word-spacing:-0.212535pt;}
.ws146{word-spacing:-0.192782pt;}
.wsbd{word-spacing:-0.191283pt;}
.ws9b{word-spacing:-0.177750pt;}
.ws15{word-spacing:-0.159402pt;}
.ws100{word-spacing:-0.148365pt;}
.ws12d{word-spacing:-0.143574pt;}
.wsd9{word-spacing:-0.143462pt;}
.ws8f{word-spacing:-0.132787pt;}
.ws103{word-spacing:-0.118874pt;}
.ws1c{word-spacing:-0.106268pt;}
.wsf4{word-spacing:-0.095642pt;}
.ws90{word-spacing:-0.086822pt;}
.ws16{word-spacing:-0.053134pt;}
.wsf7{word-spacing:-0.047821pt;}
.ws85{word-spacing:-0.037194pt;}
.ws126{word-spacing:-0.034282pt;}
.ws152{word-spacing:-0.011537pt;}
.ws143{word-spacing:-0.011443pt;}
.wsf3{word-spacing:-0.009139pt;}
.wsd2{word-spacing:-0.007526pt;}
.ws14e{word-spacing:-0.007006pt;}
.wsc1{word-spacing:-0.006656pt;}
.ws136{word-spacing:-0.006460pt;}
.wsc9{word-spacing:-0.006221pt;}
.wsd0{word-spacing:-0.006204pt;}
.wsf0{word-spacing:-0.006118pt;}
.ws104{word-spacing:-0.005359pt;}
.wscf{word-spacing:-0.005257pt;}
.ws120{word-spacing:-0.004898pt;}
.ws113{word-spacing:-0.004582pt;}
.ws88{word-spacing:-0.004003pt;}
.ws86{word-spacing:-0.003900pt;}
.wsec{word-spacing:-0.003891pt;}
.wsf5{word-spacing:-0.003806pt;}
.ws12b{word-spacing:-0.003516pt;}
.ws139{word-spacing:-0.002935pt;}
.wsef{word-spacing:-0.002825pt;}
.ws84{word-spacing:-0.002779pt;}
.wsd8{word-spacing:-0.002654pt;}
.ws9a{word-spacing:-0.002576pt;}
.wsed{word-spacing:-0.002193pt;}
.ws142{word-spacing:-0.001801pt;}
.wsc3{word-spacing:-0.001126pt;}
.ws87{word-spacing:-0.000498pt;}
.ws151{word-spacing:-0.000350pt;}
.ws0{word-spacing:0.000000pt;}
.ws7f{word-spacing:0.000665pt;}
.wsd1{word-spacing:0.000691pt;}
.ws144{word-spacing:0.001519pt;}
.ws23{word-spacing:0.001534pt;}
.wsb1{word-spacing:0.003365pt;}
.ws4a{word-spacing:0.007623pt;}
.wsaf{word-spacing:0.015504pt;}
.ws150{word-spacing:0.031786pt;}
.ws7c{word-spacing:0.037194pt;}
.wsa{word-spacing:0.042507pt;}
.ws49{word-spacing:0.047821pt;}
.ws12{word-spacing:0.053134pt;}
.ws4c{word-spacing:0.085014pt;}
.wsee{word-spacing:0.095642pt;}
.wsf6{word-spacing:0.103342pt;}
.ws10{word-spacing:0.106268pt;}
.ws2{word-spacing:0.111581pt;}
.wsa0{word-spacing:0.121469pt;}
.ws14d{word-spacing:0.121579pt;}
.wsd3{word-spacing:0.143462pt;}
.ws7d{word-spacing:0.148774pt;}
.wsf{word-spacing:0.159402pt;}
.ws4b{word-spacing:0.170029pt;}
.ws5{word-spacing:0.180650pt;}
.ws6{word-spacing:0.185968pt;}
.wsbc{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.212535pt;}
.ws157{word-spacing:0.217621pt;}
.ws99{word-spacing:0.221053pt;}
.wsc8{word-spacing:0.239104pt;}
.ws29{word-spacing:0.265669pt;}
.ws9d{word-spacing:0.275272pt;}
.ws77{word-spacing:0.285875pt;}
.ws11d{word-spacing:0.286925pt;}
.wsc{word-spacing:0.318803pt;}
.ws7b{word-spacing:0.334667pt;}
.ws73{word-spacing:0.371937pt;}
.ws8{word-spacing:0.382566pt;}
.ws74{word-spacing:0.425071pt;}
.wsb2{word-spacing:0.478205pt;}
.ws124{word-spacing:0.526029pt;}
.ws5d{word-spacing:0.531339pt;}
.wsc6{word-spacing:0.573850pt;}
.ws64{word-spacing:0.584473pt;}
.wsc5{word-spacing:0.621670pt;}
.ws13{word-spacing:0.637606pt;}
.ws48{word-spacing:0.690740pt;}
.ws35{word-spacing:0.743874pt;}
.ws129{word-spacing:0.759748pt;}
.ws38{word-spacing:0.764653pt;}
.ws128{word-spacing:0.765133pt;}
.ws25{word-spacing:0.797008pt;}
.ws107{word-spacing:0.812954pt;}
.ws72{word-spacing:0.850142pt;}
.ws13d{word-spacing:0.860774pt;}
.wsd5{word-spacing:0.908595pt;}
.ws36{word-spacing:0.956410pt;}
.wsfe{word-spacing:1.004237pt;}
.ws6d{word-spacing:1.009543pt;}
.ws58{word-spacing:1.062677pt;}
.ws31{word-spacing:1.115811pt;}
.ws13e{word-spacing:1.147699pt;}
.wsb0{word-spacing:1.168945pt;}
.ws2f{word-spacing:1.222079pt;}
.wsca{word-spacing:1.243341pt;}
.ws4d{word-spacing:1.275213pt;}
.ws11b{word-spacing:1.291162pt;}
.ws20{word-spacing:1.328347pt;}
.ws21{word-spacing:1.381481pt;}
.wsa8{word-spacing:1.434614pt;}
.wse0{word-spacing:1.434624pt;}
.ws155{word-spacing:1.476604pt;}
.wsea{word-spacing:1.482445pt;}
.ws5b{word-spacing:1.487748pt;}
.ws2a{word-spacing:1.540882pt;}
.ws1a{word-spacing:1.594016pt;}
.wse8{word-spacing:1.673728pt;}
.wsaa{word-spacing:1.700284pt;}
.wsab{word-spacing:1.753418pt;}
.ws34{word-spacing:1.806551pt;}
.ws47{word-spacing:1.859685pt;}
.ws11e{word-spacing:1.865011pt;}
.ws154{word-spacing:1.912832pt;}
.wsc0{word-spacing:1.960653pt;}
.ws39{word-spacing:1.965953pt;}
.wsd6{word-spacing:2.008474pt;}
.wsad{word-spacing:2.019087pt;}
.ws54{word-spacing:2.072221pt;}
.wsa9{word-spacing:2.125355pt;}
.ws4f{word-spacing:2.178489pt;}
.ws7{word-spacing:2.231335pt;}
.ws76{word-spacing:2.231622pt;}
.wsdb{word-spacing:2.247578pt;}
.wsb9{word-spacing:2.337890pt;}
.wse{word-spacing:2.391024pt;}
.ws4{word-spacing:2.453865pt;}
.wsae{word-spacing:2.497292pt;}
.ws46{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.wsd7{word-spacing:2.582323pt;}
.ws1f{word-spacing:2.603559pt;}
.ws138{word-spacing:2.630144pt;}
.ws98{word-spacing:2.656693pt;}
.ws123{word-spacing:2.677965pt;}
.wsd{word-spacing:2.709827pt;}
.ws147{word-spacing:2.725786pt;}
.ws110{word-spacing:2.861687pt;}
.ws13f{word-spacing:2.862003pt;}
.ws137{word-spacing:2.863659pt;}
.ws105{word-spacing:2.863940pt;}
.ws14f{word-spacing:2.864009pt;}
.wsf1{word-spacing:2.864188pt;}
.ws140{word-spacing:2.864401pt;}
.ws11f{word-spacing:2.864674pt;}
.wse1{word-spacing:2.864759pt;}
.wsfb{word-spacing:2.864785pt;}
.ws102{word-spacing:2.865681pt;}
.ws12c{word-spacing:2.866108pt;}
.ws108{word-spacing:2.866654pt;}
.wse7{word-spacing:2.866739pt;}
.ws153{word-spacing:2.867200pt;}
.ws6a{word-spacing:2.869229pt;}
.wsc7{word-spacing:2.869248pt;}
.wse9{word-spacing:2.869274pt;}
.ws11a{word-spacing:2.871987pt;}
.ws106{word-spacing:2.917069pt;}
.ws4e{word-spacing:2.922363pt;}
.ws12a{word-spacing:2.964890pt;}
.wsa3{word-spacing:2.975497pt;}
.wscd{word-spacing:3.060531pt;}
.wscc{word-spacing:3.064895pt;}
.wsf8{word-spacing:3.076279pt;}
.ws125{word-spacing:3.080298pt;}
.wsb3{word-spacing:3.081764pt;}
.ws159{word-spacing:3.108352pt;}
.ws30{word-spacing:3.134898pt;}
.ws18{word-spacing:3.185311pt;}
.wsce{word-spacing:3.203994pt;}
.ws5c{word-spacing:3.241166pt;}
.wsbf{word-spacing:3.251814pt;}
.wse6{word-spacing:3.347456pt;}
.ws127{word-spacing:3.395277pt;}
.ws44{word-spacing:3.453701pt;}
.ws8c{word-spacing:3.538739pt;}
.ws97{word-spacing:3.559969pt;}
.ws69{word-spacing:3.613103pt;}
.ws5e{word-spacing:3.666237pt;}
.ws63{word-spacing:3.719371pt;}
.ws10a{word-spacing:3.730022pt;}
.ws61{word-spacing:3.772505pt;}
.wsfd{word-spacing:3.777843pt;}
.ws19{word-spacing:3.825664pt;}
.wsb8{word-spacing:3.878772pt;}
.wscb{word-spacing:3.921306pt;}
.ws32{word-spacing:4.038174pt;}
.ws26{word-spacing:4.144442pt;}
.wsff{word-spacing:4.160410pt;}
.ws66{word-spacing:4.197575pt;}
.wsd4{word-spacing:4.208230pt;}
.ws22{word-spacing:4.250709pt;}
.ws122{word-spacing:4.256051pt;}
.wsa5{word-spacing:4.303843pt;}
.wsfa{word-spacing:4.351693pt;}
.ws2c{word-spacing:4.410111pt;}
.ws50{word-spacing:4.516379pt;}
.ws10c{word-spacing:4.518025pt;}
.ws10b{word-spacing:4.542976pt;}
.ws28{word-spacing:4.622646pt;}
.ws3a{word-spacing:4.675178pt;}
.ws3c{word-spacing:4.675780pt;}
.ws3b{word-spacing:4.679339pt;}
.wsbb{word-spacing:4.686438pt;}
.wsb7{word-spacing:4.728914pt;}
.ws95{word-spacing:4.782048pt;}
.ws1b{word-spacing:4.835182pt;}
.wsa7{word-spacing:4.888316pt;}
.wse2{word-spacing:4.925542pt;}
.wse4{word-spacing:4.935279pt;}
.wsa2{word-spacing:4.941450pt;}
.wse3{word-spacing:4.973363pt;}
.ws27{word-spacing:4.994583pt;}
.ws1d{word-spacing:5.047717pt;}
.ws10e{word-spacing:5.069005pt;}
.ws6b{word-spacing:5.207119pt;}
.wsac{word-spacing:5.260253pt;}
.ws67{word-spacing:5.313387pt;}
.wsda{word-spacing:5.355930pt;}
.ws55{word-spacing:5.366521pt;}
.ws75{word-spacing:5.419654pt;}
.ws37{word-spacing:5.472788pt;}
.ws158{word-spacing:5.595034pt;}
.ws10d{word-spacing:5.690675pt;}
.ws116{word-spacing:5.777018pt;}
.ws115{word-spacing:5.786317pt;}
.ws118{word-spacing:5.792795pt;}
.ws114{word-spacing:5.834138pt;}
.ws62{word-spacing:6.004127pt;}
.ws43{word-spacing:6.057261pt;}
.ws33{word-spacing:6.163529pt;}
.wsba{word-spacing:6.168883pt;}
.ws65{word-spacing:6.216662pt;}
.wse5{word-spacing:6.216704pt;}
.ws1e{word-spacing:6.269796pt;}
.ws10f{word-spacing:6.312346pt;}
.ws51{word-spacing:6.429198pt;}
.ws40{word-spacing:6.854269pt;}
.wsb4{word-spacing:6.960537pt;}
.ws9f{word-spacing:7.173072pt;}
.ws52{word-spacing:7.226206pt;}
.ws119{word-spacing:7.316582pt;}
.ws8d{word-spacing:7.385607pt;}
.ws11c{word-spacing:7.651328pt;}
.wseb{word-spacing:7.655449pt;}
.ws112{word-spacing:8.177357pt;}
.wsbe{word-spacing:9.560260pt;}
.ws111{word-spacing:9.851085pt;}
.ws13c{word-spacing:9.898906pt;}
.wsdc{word-spacing:9.994547pt;}
.ws121{word-spacing:13.342003pt;}
.wsc4{word-spacing:15.637402pt;}
.ws117{word-spacing:20.685846pt;}
.ws9{word-spacing:24.197325pt;}
.ws1{word-spacing:25.672481pt;}
.ws80{word-spacing:129.385869pt;}
.ws83{word-spacing:253.187917pt;}
.ws7e{word-spacing:305.337530pt;}
.ws7a{word-spacing:394.435685pt;}
.ws82{word-spacing:479.660752pt;}
.ws81{word-spacing:488.871023pt;}
._42{margin-left:-26.731827pt;}
._41{margin-left:-22.534068pt;}
._3b{margin-left:-21.423589pt;}
._43{margin-left:-19.962515pt;}
._40{margin-left:-18.634157pt;}
._45{margin-left:-17.690948pt;}
._24{margin-left:-7.194254pt;}
._9{margin-left:-6.014767pt;}
._3{margin-left:-4.590789pt;}
._a{margin-left:-3.336793pt;}
._1{margin-left:-2.082842pt;}
._4{margin-left:-1.020184pt;}
._44{width:0.889900pt;}
._3f{width:2.821419pt;}
._b{width:3.942547pt;}
._3d{width:5.796788pt;}
._47{width:9.213548pt;}
._0{width:11.530016pt;}
._26{width:12.465227pt;}
._14{width:13.910433pt;}
._6{width:15.419462pt;}
._8{width:16.322738pt;}
._e{width:17.374774pt;}
._7{width:18.862523pt;}
._c{width:19.882707pt;}
._f{width:20.934743pt;}
._15{width:22.709422pt;}
._2a{width:23.697705pt;}
._5{width:25.142959pt;}
._27{width:26.513799pt;}
._28{width:27.874048pt;}
._46{width:28.804826pt;}
._29{width:29.776227pt;}
._13{width:30.722015pt;}
._d{width:32.167270pt;}
._16{width:34.409514pt;}
._12{width:35.716599pt;}
._25{width:38.628321pt;}
._3e{width:54.993920pt;}
._2{width:61.778198pt;}
._3c{width:78.904320pt;}
._35{width:111.498307pt;}
._17{width:115.534570pt;}
._19{width:146.267275pt;}
._1d{width:160.762230pt;}
._36{width:161.842013pt;}
._33{width:165.675296pt;}
._20{width:171.346523pt;}
._1a{width:193.195224pt;}
._30{width:201.013420pt;}
._1f{width:204.417125pt;}
._32{width:207.610106pt;}
._22{width:208.837874pt;}
._37{width:210.933359pt;}
._23{width:225.316134pt;}
._21{width:230.173814pt;}
._2f{width:235.618115pt;}
._39{width:240.424245pt;}
._2d{width:269.365703pt;}
._1b{width:279.824898pt;}
._1c{width:281.780229pt;}
._2e{width:286.993825pt;}
._31{width:291.403539pt;}
._34{width:298.956941pt;}
._1e{width:342.182960pt;}
._2b{width:365.081747pt;}
._2c{width:368.567358pt;}
._38{width:370.559837pt;}
._18{width:888.995581pt;}
._10{width:1511.831733pt;}
._3a{width:2211.965067pt;}
._11{width:2233.218400pt;}
.fsa{font-size:26.566933pt;}
.fs9{font-size:27.682667pt;}
.fs0{font-size:37.193600pt;}
.fs8{font-size:38.755733pt;}
.fs7{font-size:40.381867pt;}
.fs6{font-size:42.077867pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:51.072000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fs4{font-size:63.761067pt;}
.fsb{font-size:64.128000pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y1b5{bottom:2.496484pt;}
.y1b1{bottom:3.620917pt;}
.y1b6{bottom:27.717245pt;}
.y1b3{bottom:27.717548pt;}
.y1b2{bottom:40.581308pt;}
.y40{bottom:40.818667pt;}
.y17{bottom:89.120000pt;}
.y1ac{bottom:92.292000pt;}
.y275{bottom:94.188000pt;}
.y133{bottom:98.133333pt;}
.y3f{bottom:98.906667pt;}
.yb5{bottom:99.078667pt;}
.y1f2{bottom:99.488000pt;}
.y1be{bottom:99.664000pt;}
.y72{bottom:102.117333pt;}
.y16{bottom:105.020000pt;}
.y1e0{bottom:105.213333pt;}
.y23e{bottom:107.225333pt;}
.ye2{bottom:110.433333pt;}
.y1ab{bottom:110.861333pt;}
.y272{bottom:111.210667pt;}
.y132{bottom:116.702667pt;}
.y3e{bottom:117.476000pt;}
.yb4{bottom:117.648000pt;}
.y1f1{bottom:118.058667pt;}
.y1bd{bottom:118.233333pt;}
.y71{bottom:120.688000pt;}
.y15{bottom:120.920000pt;}
.y1f0{bottom:121.020000pt;}
.y1de{bottom:123.782667pt;}
.y23d{bottom:124.248000pt;}
.y271{bottom:128.233333pt;}
.y1df{bottom:128.605333pt;}
.ye1{bottom:129.002667pt;}
.y1aa{bottom:129.432000pt;}
.y131{bottom:135.273333pt;}
.y20d{bottom:135.464000pt;}
.y3d{bottom:136.046667pt;}
.yb3{bottom:136.218667pt;}
.y1ef{bottom:136.628000pt;}
.y1bc{bottom:136.804000pt;}
.y14{bottom:136.821333pt;}
.y70{bottom:139.258667pt;}
.y23c{bottom:141.270667pt;}
.y1dd{bottom:142.353333pt;}
.y270{bottom:145.256000pt;}
.ye0{bottom:147.573333pt;}
.y1a9{bottom:151.988000pt;}
.y13{bottom:152.721333pt;}
.y130{bottom:153.844000pt;}
.y3c{bottom:154.617333pt;}
.yb2{bottom:154.789333pt;}
.y1ee{bottom:155.198667pt;}
.y1ba{bottom:155.374667pt;}
.y6f{bottom:157.828000pt;}
.y23b{bottom:158.293333pt;}
.y10d{bottom:158.678667pt;}
.y1bb{bottom:160.196000pt;}
.y20c{bottom:160.766667pt;}
.y1dc{bottom:160.924000pt;}
.y26f{bottom:162.278667pt;}
.ydf{bottom:166.144000pt;}
.y12{bottom:168.621333pt;}
.y12f{bottom:172.413333pt;}
.y3b{bottom:173.186667pt;}
.yb1{bottom:173.358667pt;}
.y1ed{bottom:173.769333pt;}
.y1b9{bottom:173.944000pt;}
.y23a{bottom:175.316000pt;}
.y6e{bottom:176.398667pt;}
.y10c{bottom:177.249333pt;}
.y26e{bottom:179.301333pt;}
.y1db{bottom:179.493333pt;}
.y11{bottom:184.521333pt;}
.yde{bottom:184.713333pt;}
.y20b{bottom:186.069333pt;}
.y12e{bottom:190.984000pt;}
.y3a{bottom:191.757333pt;}
.yb0{bottom:191.929333pt;}
.y1ec{bottom:192.338667pt;}
.y6d{bottom:194.969333pt;}
.y1a8{bottom:195.692000pt;}
.y10b{bottom:195.818667pt;}
.y26d{bottom:196.324000pt;}
.y1da{bottom:198.064000pt;}
.y10{bottom:200.422667pt;}
.ydd{bottom:203.284000pt;}
.y1b8{bottom:205.613333pt;}
.y1a5{bottom:206.318667pt;}
.y239{bottom:209.361333pt;}
.y12d{bottom:209.554667pt;}
.y39{bottom:210.328000pt;}
.yaf{bottom:210.500000pt;}
.y1eb{bottom:210.909333pt;}
.y20a{bottom:211.372000pt;}
.y1a4{bottom:211.632000pt;}
.y26c{bottom:213.346667pt;}
.y6c{bottom:213.540000pt;}
.y10a{bottom:214.389333pt;}
.y1d9{bottom:216.634667pt;}
.y1a7{bottom:216.945333pt;}
.ydc{bottom:221.854667pt;}
.y1b7{bottom:222.709333pt;}
.yf{bottom:224.293333pt;}
.y238{bottom:226.384000pt;}
.y1ea{bottom:227.053333pt;}
.y1a6{bottom:227.572000pt;}
.y12c{bottom:228.124000pt;}
.y38{bottom:228.898667pt;}
.yae{bottom:229.069333pt;}
.y1e9{bottom:229.480000pt;}
.y26b{bottom:230.369333pt;}
.y6b{bottom:232.109333pt;}
.y109{bottom:232.960000pt;}
.y1d8{bottom:235.205333pt;}
.y209{bottom:236.673333pt;}
.ye{bottom:240.193333pt;}
.ydb{bottom:240.425333pt;}
.y237{bottom:243.406667pt;}
.y1a3{bottom:244.601333pt;}
.y1b0{bottom:245.304000pt;}
.y12b{bottom:246.694667pt;}
.y26a{bottom:247.392000pt;}
.y37{bottom:247.468000pt;}
.y1e8{bottom:248.049333pt;}
.y19f{bottom:249.914667pt;}
.y274{bottom:250.058667pt;}
.y6a{bottom:250.680000pt;}
.y108{bottom:251.529333pt;}
.yad{bottom:251.625333pt;}
.y140{bottom:253.078667pt;}
.y1d6{bottom:253.774667pt;}
.y208{bottom:254.006667pt;}
.y1a2{bottom:255.228000pt;}
.yd{bottom:256.093333pt;}
.y1d7{bottom:258.597333pt;}
.y236{bottom:260.430667pt;}
.y19e{bottom:260.541333pt;}
.yda{bottom:262.980000pt;}
.y269{bottom:264.414667pt;}
.y12a{bottom:265.265333pt;}
.y19a{bottom:265.854667pt;}
.y36{bottom:266.038667pt;}
.y1e7{bottom:266.620000pt;}
.y69{bottom:269.250667pt;}
.y107{bottom:270.100000pt;}
.y1b4{bottom:270.524761pt;}
.y19d{bottom:271.168000pt;}
.y207{bottom:271.338667pt;}
.y13f{bottom:271.649333pt;}
.yc{bottom:271.994667pt;}
.y1d5{bottom:272.345333pt;}
.y199{bottom:276.482667pt;}
.y235{bottom:277.453333pt;}
.y268{bottom:281.437333pt;}
.y19c{bottom:281.796000pt;}
.yac{bottom:283.041333pt;}
.y35{bottom:284.609333pt;}
.y1e6{bottom:285.190667pt;}
.y1a1{bottom:287.109333pt;}
.y68{bottom:287.820000pt;}
.yb{bottom:287.894667pt;}
.y106{bottom:288.670667pt;}
.y13e{bottom:290.218667pt;}
.y1d4{bottom:290.916000pt;}
.y19b{bottom:292.422667pt;}
.yd9{bottom:294.396000pt;}
.y234{bottom:294.476000pt;}
.y206{bottom:296.640000pt;}
.y1a0{bottom:297.736000pt;}
.y267{bottom:298.460000pt;}
.yab{bottom:301.610667pt;}
.y34{bottom:303.178667pt;}
.y1e5{bottom:303.760000pt;}
.ya{bottom:303.794667pt;}
.y67{bottom:306.390667pt;}
.y105{bottom:307.240000pt;}
.y13d{bottom:308.789333pt;}
.y1d3{bottom:309.485333pt;}
.y233{bottom:311.498667pt;}
.yd8{bottom:312.965333pt;}
.y205{bottom:313.973333pt;}
.y198{bottom:314.764000pt;}
.y266{bottom:315.482667pt;}
.y9{bottom:319.696000pt;}
.yaa{bottom:320.181333pt;}
.y129{bottom:322.330667pt;}
.y66{bottom:324.961333pt;}
.y195{bottom:325.392000pt;}
.y33{bottom:325.734667pt;}
.y104{bottom:325.810667pt;}
.y13c{bottom:327.360000pt;}
.y1d2{bottom:328.056000pt;}
.y232{bottom:328.521333pt;}
.y194{bottom:330.705333pt;}
.y204{bottom:331.305333pt;}
.yd7{bottom:331.536000pt;}
.y265{bottom:332.506667pt;}
.y8{bottom:335.596000pt;}
.y197{bottom:336.018667pt;}
.ya9{bottom:338.752000pt;}
.y128{bottom:340.901333pt;}
.y65{bottom:343.530667pt;}
.y103{bottom:344.381333pt;}
.y231{bottom:345.544000pt;}
.y13b{bottom:345.929333pt;}
.y1d1{bottom:346.626667pt;}
.y196{bottom:346.645333pt;}
.y203{bottom:348.637333pt;}
.y264{bottom:349.529333pt;}
.yd6{bottom:350.106667pt;}
.y7{bottom:356.809333pt;}
.ya8{bottom:357.321333pt;}
.y127{bottom:359.472000pt;}
.y64{bottom:362.101333pt;}
.y230{bottom:362.566667pt;}
.y102{bottom:362.952000pt;}
.y190{bottom:363.673333pt;}
.y13a{bottom:364.500000pt;}
.y1cf{bottom:365.196000pt;}
.y202{bottom:365.969333pt;}
.y263{bottom:366.552000pt;}
.yd5{bottom:368.676000pt;}
.y192{bottom:368.988000pt;}
.y1d0{bottom:370.018667pt;}
.y6{bottom:372.710667pt;}
.y18f{bottom:374.301333pt;}
.ya7{bottom:375.892000pt;}
.y126{bottom:378.041333pt;}
.y22f{bottom:379.589333pt;}
.y191{bottom:379.614667pt;}
.y63{bottom:380.672000pt;}
.y101{bottom:381.521333pt;}
.y139{bottom:383.070667pt;}
.y262{bottom:383.574667pt;}
.y1ce{bottom:383.766667pt;}
.y18e{bottom:384.928000pt;}
.yd4{bottom:387.246667pt;}
.y193{bottom:388.302667pt;}
.y5{bottom:388.610667pt;}
.ya6{bottom:394.462667pt;}
.y32{bottom:396.145333pt;}
.y125{bottom:396.612000pt;}
.y62{bottom:399.241333pt;}
.y100{bottom:400.092000pt;}
.y261{bottom:400.597333pt;}
.y138{bottom:401.641333pt;}
.y18a{bottom:401.956000pt;}
.y1cc{bottom:402.337333pt;}
.y4{bottom:404.510667pt;}
.yd3{bottom:405.817333pt;}
.y1cd{bottom:407.158667pt;}
.y18c{bottom:407.269333pt;}
.y189{bottom:412.582667pt;}
.ya5{bottom:413.032000pt;}
.y22e{bottom:413.634667pt;}
.y124{bottom:415.182667pt;}
.y260{bottom:417.620000pt;}
.y61{bottom:417.812000pt;}
.y18b{bottom:417.897333pt;}
.yff{bottom:418.662667pt;}
.y137{bottom:420.210667pt;}
.y1cb{bottom:420.906667pt;}
.y18d{bottom:423.210667pt;}
.yd2{bottom:424.386667pt;}
.y3{bottom:425.725333pt;}
.y31{bottom:430.654667pt;}
.y22d{bottom:430.657333pt;}
.y123{bottom:433.752000pt;}
.y25f{bottom:434.642667pt;}
.ya4{bottom:435.588000pt;}
.y60{bottom:436.382667pt;}
.yfe{bottom:437.232000pt;}
.y136{bottom:438.781333pt;}
.y1ca{bottom:439.477333pt;}
.y188{bottom:440.238667pt;}
.y2{bottom:441.625333pt;}
.y1e3{bottom:444.300000pt;}
.y185{bottom:445.552000pt;}
.yd1{bottom:446.942667pt;}
.y22c{bottom:447.680000pt;}
.y30{bottom:449.225333pt;}
.y187{bottom:450.865333pt;}
.y25e{bottom:451.665333pt;}
.y122{bottom:452.322667pt;}
.y5f{bottom:454.953333pt;}
.yfd{bottom:455.802667pt;}
.y184{bottom:456.178667pt;}
.y135{bottom:457.352000pt;}
.y1{bottom:457.525333pt;}
.y1c9{bottom:458.048000pt;}
.y186{bottom:461.492000pt;}
.y22b{bottom:464.702667pt;}
.y2f{bottom:467.796000pt;}
.y25d{bottom:468.688000pt;}
.ya3{bottom:470.098667pt;}
.y121{bottom:470.893333pt;}
.y5e{bottom:473.522667pt;}
.yfc{bottom:474.373333pt;}
.y1c8{bottom:476.617333pt;}
.yd0{bottom:478.357333pt;}
.y183{bottom:478.521333pt;}
.y22a{bottom:481.725333pt;}
.y25c{bottom:485.710667pt;}
.y2e{bottom:486.366667pt;}
.ya2{bottom:488.668000pt;}
.y134{bottom:489.020000pt;}
.y182{bottom:489.148000pt;}
.y120{bottom:489.462667pt;}
.y5d{bottom:492.093333pt;}
.yfb{bottom:492.942667pt;}
.y17d{bottom:494.461333pt;}
.y1c7{bottom:495.188000pt;}
.ycf{bottom:496.928000pt;}
.y229{bottom:498.748000pt;}
.y181{bottom:499.774667pt;}
.y25b{bottom:502.733333pt;}
.y2d{bottom:504.936000pt;}
.y17c{bottom:505.088000pt;}
.ya1{bottom:507.238667pt;}
.y11f{bottom:508.033333pt;}
.y180{bottom:510.402667pt;}
.y5c{bottom:510.664000pt;}
.yfa{bottom:511.513333pt;}
.y1c6{bottom:513.758667pt;}
.yce{bottom:515.498667pt;}
.y17b{bottom:515.716000pt;}
.y228{bottom:515.770667pt;}
.y25a{bottom:519.756000pt;}
.y17f{bottom:521.029333pt;}
.y2c{bottom:523.506667pt;}
.ya0{bottom:525.809333pt;}
.y11e{bottom:526.604000pt;}
.y5b{bottom:529.233333pt;}
.yf9{bottom:530.084000pt;}
.y17e{bottom:531.656000pt;}
.y1c5{bottom:532.329333pt;}
.y227{bottom:532.793333pt;}
.ycd{bottom:534.069333pt;}
.y259{bottom:536.778667pt;}
.y2b{bottom:542.077333pt;}
.y11d{bottom:545.173333pt;}
.y5a{bottom:547.804000pt;}
.yf8{bottom:548.653333pt;}
.y17a{bottom:548.684000pt;}
.y226{bottom:549.816000pt;}
.ycb{bottom:550.212000pt;}
.y1c4{bottom:550.898667pt;}
.yca{bottom:552.638667pt;}
.y258{bottom:553.801333pt;}
.ycc{bottom:557.461333pt;}
.y179{bottom:559.312000pt;}
.y2a{bottom:560.646667pt;}
.y11c{bottom:563.744000pt;}
.y59{bottom:566.374667pt;}
.y225{bottom:566.838667pt;}
.yf7{bottom:567.224000pt;}
.y1c3{bottom:569.469333pt;}
.y9f{bottom:570.112000pt;}
.y257{bottom:570.824000pt;}
.yc9{bottom:571.209333pt;}
.y29{bottom:579.217333pt;}
.y11b{bottom:582.314667pt;}
.y9e{bottom:582.730667pt;}
.y224{bottom:583.861333pt;}
.y58{bottom:584.944000pt;}
.yf6{bottom:585.794667pt;}
.y178{bottom:586.966667pt;}
.y256{bottom:587.846667pt;}
.y1c2{bottom:588.040000pt;}
.y171{bottom:592.280000pt;}
.yc8{bottom:593.764000pt;}
.y177{bottom:597.593333pt;}
.y28{bottom:597.788000pt;}
.y11a{bottom:600.885333pt;}
.y170{bottom:602.908000pt;}
.y57{bottom:603.514667pt;}
.yf5{bottom:604.365333pt;}
.y255{bottom:604.869333pt;}
.y1c1{bottom:606.609333pt;}
.y176{bottom:608.221333pt;}
.y16d{bottom:613.534667pt;}
.y9d{bottom:614.372000pt;}
.y27{bottom:616.357333pt;}
.y223{bottom:617.908000pt;}
.y175{bottom:618.848000pt;}
.y119{bottom:619.454667pt;}
.y254{bottom:621.892000pt;}
.y56{bottom:622.085333pt;}
.yf4{bottom:622.934667pt;}
.y16c{bottom:624.161333pt;}
.yc7{bottom:625.180000pt;}
.y9a{bottom:626.990667pt;}
.y174{bottom:629.474667pt;}
.y99{bottom:633.301333pt;}
.y16f{bottom:634.788000pt;}
.y26{bottom:634.928000pt;}
.y222{bottom:634.930667pt;}
.y118{bottom:638.025333pt;}
.y253{bottom:638.914667pt;}
.y9c{bottom:639.610667pt;}
.y173{bottom:640.101333pt;}
.y55{bottom:640.654667pt;}
.yc6{bottom:643.750667pt;}
.y16e{bottom:645.414667pt;}
.yf3{bottom:645.490667pt;}
.y172{bottom:650.728000pt;}
.y221{bottom:651.953333pt;}
.y9b{bottom:652.229333pt;}
.y25{bottom:653.498667pt;}
.y252{bottom:655.937333pt;}
.y117{bottom:656.596000pt;}
.y54{bottom:659.225333pt;}
.yc5{bottom:662.320000pt;}
.y1fd{bottom:663.210667pt;}
.y1e2{bottom:667.142667pt;}
.y16b{bottom:667.757333pt;}
.y220{bottom:668.976000pt;}
.y98{bottom:671.250667pt;}
.y24{bottom:672.068000pt;}
.y251{bottom:672.961333pt;}
.y167{bottom:673.070667pt;}
.y116{bottom:675.165333pt;}
.yf2{bottom:676.905333pt;}
.y53{bottom:677.796000pt;}
.y16a{bottom:678.384000pt;}
.yc4{bottom:680.890667pt;}
.y166{bottom:683.697333pt;}
.y97{bottom:683.870667pt;}
.y21f{bottom:685.998667pt;}
.y169{bottom:689.010667pt;}
.y250{bottom:689.984000pt;}
.y94{bottom:690.180000pt;}
.y23{bottom:690.638667pt;}
.y115{bottom:693.736000pt;}
.y165{bottom:694.324000pt;}
.yf1{bottom:695.476000pt;}
.y52{bottom:696.365333pt;}
.y96{bottom:696.489333pt;}
.y1fc{bottom:697.721333pt;}
.yc3{bottom:699.461333pt;}
.y168{bottom:699.637333pt;}
.y21e{bottom:703.021333pt;}
.y24f{bottom:707.006667pt;}
.y95{bottom:709.109333pt;}
.y22{bottom:709.209333pt;}
.y114{bottom:712.306667pt;}
.yf0{bottom:714.046667pt;}
.y51{bottom:714.936000pt;}
.y1fb{bottom:716.290667pt;}
.y164{bottom:716.666667pt;}
.yc2{bottom:718.030667pt;}
.y21d{bottom:720.044000pt;}
.y24e{bottom:724.029333pt;}
.y163{bottom:727.293333pt;}
.y21{bottom:727.778667pt;}
.y93{bottom:728.130667pt;}
.y113{bottom:730.876000pt;}
.y15e{bottom:732.606667pt;}
.yef{bottom:732.616000pt;}
.y50{bottom:733.506667pt;}
.y91{bottom:734.440000pt;}
.y1fa{bottom:734.861333pt;}
.yc1{bottom:736.601333pt;}
.y21c{bottom:737.066667pt;}
.y162{bottom:737.920000pt;}
.y92{bottom:740.749333pt;}
.y24d{bottom:741.052000pt;}
.y1c0{bottom:741.424000pt;}
.y15d{bottom:743.233333pt;}
.y15f{bottom:746.608000pt;}
.y161{bottom:748.546667pt;}
.y112{bottom:749.446667pt;}
.yee{bottom:751.186667pt;}
.y4f{bottom:752.077333pt;}
.y1f9{bottom:753.432000pt;}
.y21b{bottom:754.089333pt;}
.y20{bottom:754.320000pt;}
.yc0{bottom:755.172000pt;}
.y24c{bottom:758.074667pt;}
.y160{bottom:759.173333pt;}
.y90{bottom:759.772000pt;}
.y111{bottom:768.017333pt;}
.yed{bottom:769.757333pt;}
.y4e{bottom:770.646667pt;}
.y21a{bottom:771.112000pt;}
.y1f8{bottom:772.002667pt;}
.y8f{bottom:772.390667pt;}
.ybf{bottom:773.742667pt;}
.y24b{bottom:775.097333pt;}
.y15c{bottom:776.202667pt;}
.y8c{bottom:785.010667pt;}
.y110{bottom:786.586667pt;}
.y15b{bottom:786.829333pt;}
.y219{bottom:788.134667pt;}
.yec{bottom:788.326667pt;}
.y4d{bottom:789.217333pt;}
.y1f{bottom:789.893333pt;}
.y1f7{bottom:790.572000pt;}
.y1e4{bottom:791.409333pt;}
.y24a{bottom:792.120000pt;}
.ybe{bottom:792.312000pt;}
.y15a{bottom:797.456000pt;}
.y8e{bottom:797.629333pt;}
.y150{bottom:802.769333pt;}
.y1e{bottom:804.238667pt;}
.y10f{bottom:805.157333pt;}
.y4c{bottom:807.788000pt;}
.y159{bottom:808.082667pt;}
.y1f6{bottom:809.142667pt;}
.y8d{bottom:810.249333pt;}
.ybd{bottom:810.882667pt;}
.y14f{bottom:813.396000pt;}
.y1d{bottom:818.585333pt;}
.y158{bottom:818.709333pt;}
.y218{bottom:822.180000pt;}
.y10e{bottom:823.728000pt;}
.y14e{bottom:824.022667pt;}
.y249{bottom:826.165333pt;}
.y4b{bottom:826.357333pt;}
.y1f5{bottom:827.713333pt;}
.y87{bottom:829.270667pt;}
.y157{bottom:829.336000pt;}
.ybc{bottom:829.453333pt;}
.y14a{bottom:834.649333pt;}
.y8b{bottom:835.580000pt;}
.y217{bottom:839.202667pt;}
.y156{bottom:839.964000pt;}
.y86{bottom:841.889333pt;}
.yeb{bottom:842.297333pt;}
.y248{bottom:843.188000pt;}
.y76{bottom:844.928000pt;}
.y14d{bottom:845.277333pt;}
.y1f4{bottom:846.282667pt;}
.ybb{bottom:848.022667pt;}
.y8a{bottom:848.198667pt;}
.y4a{bottom:848.913333pt;}
.y155{bottom:850.590667pt;}
.y83{bottom:854.509333pt;}
.y14c{bottom:855.904000pt;}
.y279{bottom:856.006667pt;}
.y216{bottom:856.225333pt;}
.y247{bottom:860.210667pt;}
.y89{bottom:860.818667pt;}
.yea{bottom:860.868000pt;}
.y154{bottom:861.217333pt;}
.y1c{bottom:862.156000pt;}
.y75{bottom:863.498667pt;}
.y1f3{bottom:864.853333pt;}
.y14b{bottom:866.530667pt;}
.yba{bottom:866.593333pt;}
.y85{bottom:867.128000pt;}
.y153{bottom:871.844000pt;}
.y278{bottom:873.029333pt;}
.y215{bottom:873.248000pt;}
.y88{bottom:873.437333pt;}
.y246{bottom:877.233333pt;}
.ye9{bottom:879.438667pt;}
.y84{bottom:879.748000pt;}
.y201{bottom:882.068000pt;}
.y152{bottom:882.470667pt;}
.y49{bottom:883.424000pt;}
.yb9{bottom:885.164000pt;}
.y74{bottom:886.053333pt;}
.y1e1{bottom:889.148000pt;}
.y277{bottom:890.052000pt;}
.y214{bottom:890.270667pt;}
.y273{bottom:892.518667pt;}
.y151{bottom:893.097333pt;}
.y245{bottom:894.256000pt;}
.y1b{bottom:896.665333pt;}
.ye8{bottom:898.009333pt;}
.y82{bottom:898.769333pt;}
.y200{bottom:900.638667pt;}
.y48{bottom:901.993333pt;}
.yb8{bottom:903.733333pt;}
.y73{bottom:904.624000pt;}
.y7e{bottom:905.078667pt;}
.y213{bottom:907.293333pt;}
.y1bf{bottom:907.718667pt;}
.y149{bottom:910.126667pt;}
.y244{bottom:911.278667pt;}
.y81{bottom:911.388000pt;}
.y145{bottom:915.440000pt;}
.ye7{bottom:916.578667pt;}
.y7d{bottom:917.698667pt;}
.y1ff{bottom:919.209333pt;}
.y47{bottom:920.564000pt;}
.y147{bottom:920.753333pt;}
.y1af{bottom:922.304000pt;}
.y7a{bottom:924.008000pt;}
.y212{bottom:924.316000pt;}
.y1a{bottom:924.521333pt;}
.y143{bottom:926.066667pt;}
.yb7{bottom:926.289333pt;}
.y243{bottom:928.301333pt;}
.y7c{bottom:930.317333pt;}
.y146{bottom:931.380000pt;}
.ye6{bottom:935.149333pt;}
.y80{bottom:936.626667pt;}
.y144{bottom:936.693333pt;}
.y46{bottom:939.134667pt;}
.y1ae{bottom:940.874667pt;}
.y211{bottom:941.340000pt;}
.y1fe{bottom:941.764000pt;}
.y148{bottom:942.006667pt;}
.y7b{bottom:942.937333pt;}
.y242{bottom:945.324000pt;}
.y7f{bottom:949.246667pt;}
.y19{bottom:952.377333pt;}
.ye5{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y210{bottom:958.362667pt;}
.y142{bottom:959.036000pt;}
.y241{bottom:962.346667pt;}
.y276{bottom:962.532000pt;}
.y1ad{bottom:963.429333pt;}
.y141{bottom:964.349333pt;}
.y79{bottom:968.268000pt;}
.ye4{bottom:972.289333pt;}
.y20f{bottom:975.385333pt;}
.y44{bottom:976.274667pt;}
.y240{bottom:979.369333pt;}
.y18{bottom:980.232000pt;}
.yb6{bottom:981.097333pt;}
.ye3{bottom:990.860000pt;}
.y20e{bottom:992.408000pt;}
.y43{bottom:994.845333pt;}
.y23f{bottom:996.392000pt;}
.y78{bottom:997.636000pt;}
.y42{bottom:1013.414667pt;}
.y77{bottom:1014.732000pt;}
.y41{bottom:1066.841333pt;}
.h12{height:13.370728pt;}
.h1a{height:15.936000pt;}
.hf{height:20.323610pt;}
.h1c{height:24.122775pt;}
.h1b{height:26.741714pt;}
.hc{height:30.732706pt;}
.h2{height:33.771789pt;}
.h10{height:36.666735pt;}
.ha{height:37.087439pt;}
.h6{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:39.000258pt;}
.hb{height:43.421286pt;}
.h20{height:43.709286pt;}
.h1f{height:45.810620pt;}
.h21{height:45.815953pt;}
.h9{height:46.099251pt;}
.h19{height:47.505937pt;}
.h11{height:48.144306pt;}
.h8{height:48.245551pt;}
.h22{height:54.087953pt;}
.h1d{height:54.893286pt;}
.h1e{height:54.898620pt;}
.h16{height:55.025122pt;}
.h18{height:59.650312pt;}
.hd{height:63.833871pt;}
.h5{height:69.148877pt;}
.h4{height:69.435802pt;}
.h13{height:76.278455pt;}
.h15{height:76.283789pt;}
.he{height:89.076538pt;}
.h14{height:118.790455pt;}
.h17{height:358.864000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:80.640002pt;}
.w4{width:108.768005pt;}
.w3{width:228.480005pt;}
.w2{width:636.041600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x89{left:6.720020pt;}
.x94{left:14.111963pt;}
.x8b{left:25.920020pt;}
.x87{left:40.643197pt;}
.x1{left:47.621333pt;}
.x8d{left:51.168018pt;}
.x29{left:55.781333pt;}
.x28{left:62.249333pt;}
.x8f{left:69.408008pt;}
.x97{left:73.440039pt;}
.xc4{left:74.862667pt;}
.xc3{left:76.309333pt;}
.x85{left:78.642667pt;}
.x91{left:79.776025pt;}
.x42{left:92.500000pt;}
.xcd{left:96.392000pt;}
.xce{left:109.541333pt;}
.xd0{left:116.426667pt;}
.xcf{left:117.796000pt;}
.x8a{left:126.659188pt;}
.xca{left:134.248000pt;}
.xc8{left:138.546667pt;}
.x92{left:143.232031pt;}
.x8c{left:145.283212pt;}
.xcb{left:152.369333pt;}
.xcc{left:159.062667pt;}
.x8e{left:170.531210pt;}
.x90{left:188.771200pt;}
.x88{left:190.901855pt;}
.x4d{left:195.144000pt;}
.x44{left:196.785333pt;}
.x5c{left:198.976000pt;}
.x79{left:200.045333pt;}
.x62{left:201.281333pt;}
.x4e{left:203.940000pt;}
.x5d{left:205.165333pt;}
.x68{left:206.372000pt;}
.x43{left:207.520000pt;}
.x61{left:208.570667pt;}
.x4c{left:209.708000pt;}
.x6f{left:210.952000pt;}
.x63{left:211.872000pt;}
.x78{left:214.754667pt;}
.x6c{left:217.058667pt;}
.x6b{left:218.018667pt;}
.xd1{left:219.497333pt;}
.x3{left:220.912000pt;}
.x2{left:221.858667pt;}
.xbe{left:224.621333pt;}
.xa2{left:226.044000pt;}
.x45{left:227.465333pt;}
.x74{left:234.548000pt;}
.xa3{left:236.970667pt;}
.x59{left:238.968000pt;}
.x6d{left:240.329333pt;}
.x5e{left:241.408000pt;}
.x31{left:245.216000pt;}
.x4{left:250.204000pt;}
.xa4{left:253.800000pt;}
.xb9{left:256.874667pt;}
.xa5{left:259.849333pt;}
.xd{left:264.014667pt;}
.x30{left:270.438667pt;}
.x5{left:276.301333pt;}
.xe{left:277.297333pt;}
.x6{left:282.942667pt;}
.xf{left:284.065333pt;}
.xbb{left:287.673333pt;}
.x7{left:289.717333pt;}
.x2c{left:294.050667pt;}
.x8{left:296.358667pt;}
.x10{left:297.349333pt;}
.x57{left:303.913333pt;}
.xc9{left:304.890667pt;}
.xaf{left:307.154667pt;}
.x58{left:308.121333pt;}
.x35{left:312.301333pt;}
.xc6{left:314.694667pt;}
.x32{left:316.776000pt;}
.xc7{left:318.058667pt;}
.x33{left:322.826667pt;}
.x36{left:325.585333pt;}
.xba{left:326.754667pt;}
.xb3{left:330.146667pt;}
.x7a{left:334.680000pt;}
.x46{left:336.121333pt;}
.x50{left:338.436000pt;}
.x4f{left:339.432000pt;}
.x5a{left:342.709333pt;}
.x6e{left:346.274667pt;}
.xbf{left:347.232000pt;}
.x9d{left:348.985333pt;}
.xb4{left:350.072000pt;}
.x75{left:351.854667pt;}
.x5f{left:354.844000pt;}
.x64{left:357.256000pt;}
.x7c{left:360.180000pt;}
.x9e{left:362.269333pt;}
.x2a{left:366.232000pt;}
.xa1{left:367.614667pt;}
.x51{left:368.762667pt;}
.x60{left:370.004000pt;}
.x47{left:371.222667pt;}
.x9f{left:372.622667pt;}
.x65{left:373.658667pt;}
.x82{left:374.852000pt;}
.x71{left:378.052000pt;}
.x22{left:379.448000pt;}
.x83{left:383.057333pt;}
.xb5{left:386.032000pt;}
.x23{left:392.732000pt;}
.x24{left:399.506667pt;}
.x25{left:412.789333pt;}
.x80{left:427.257333pt;}
.xac{left:429.942667pt;}
.xd7{left:433.229333pt;}
.xb1{left:435.889333pt;}
.x81{left:440.541333pt;}
.xd4{left:441.593333pt;}
.x93{left:449.333886pt;}
.x37{left:455.626667pt;}
.x99{left:458.416000pt;}
.x2d{left:463.617333pt;}
.xa0{left:466.209333pt;}
.x38{left:468.910667pt;}
.x39{left:472.225333pt;}
.x66{left:474.212000pt;}
.x4a{left:475.526667pt;}
.x2e{left:476.900000pt;}
.x69{left:478.605333pt;}
.x52{left:480.078667pt;}
.x48{left:482.161333pt;}
.x5b{left:483.337333pt;}
.x7d{left:484.556000pt;}
.x3a{left:485.508000pt;}
.x49{left:486.629333pt;}
.x54{left:488.024000pt;}
.x67{left:489.716000pt;}
.x55{left:490.650667pt;}
.xd2{left:491.870667pt;}
.x84{left:494.266667pt;}
.x53{left:497.588000pt;}
.x9a{left:498.736000pt;}
.x6a{left:501.070667pt;}
.x70{left:505.282667pt;}
.xa8{left:511.302667pt;}
.xc1{left:514.618667pt;}
.xa9{left:517.353333pt;}
.x4b{left:520.010667pt;}
.x76{left:522.684000pt;}
.xc2{left:527.902667pt;}
.x7b{left:529.945333pt;}
.x17{left:531.900000pt;}
.x7e{left:536.966667pt;}
.xad{left:539.534667pt;}
.x2b{left:540.657333pt;}
.x9b{left:542.326667pt;}
.x9{left:543.898667pt;}
.x18{left:545.184000pt;}
.xa{left:550.541333pt;}
.x96{left:551.459188pt;}
.xae{left:552.818667pt;}
.xb{left:557.302667pt;}
.x11{left:560.766667pt;}
.x9c{left:562.252000pt;}
.xc{left:563.944000pt;}
.x95{left:567.797851pt;}
.x98{left:569.795223pt;}
.x1b{left:572.276000pt;}
.x12{left:574.050667pt;}
.x34{left:576.985333pt;}
.xa6{left:579.166667pt;}
.x1c{left:585.560000pt;}
.x3f{left:586.666667pt;}
.x1d{left:592.261333pt;}
.x40{left:593.176000pt;}
.x72{left:598.996000pt;}
.x73{left:603.202667pt;}
.x1e{left:605.544000pt;}
.x41{left:606.460000pt;}
.xb6{left:608.514667pt;}
.xbc{left:610.844000pt;}
.x26{left:612.932000pt;}
.xa7{left:623.680000pt;}
.x27{left:626.214667pt;}
.xb7{left:628.440000pt;}
.x86{left:630.175806pt;}
.xaa{left:639.858667pt;}
.xab{left:645.908000pt;}
.x13{left:651.109333pt;}
.xb0{left:653.096000pt;}
.x14{left:664.392000pt;}
.xc5{left:669.762667pt;}
.x15{left:671.166667pt;}
.x56{left:679.021333pt;}
.x3b{left:681.133333pt;}
.x16{left:684.450667pt;}
.xb2{left:688.096000pt;}
.x7f{left:689.482667pt;}
.x77{left:691.806667pt;}
.x3c{left:694.416000pt;}
.x3d{left:701.064000pt;}
.xd5{left:703.021333pt;}
.xd3{left:704.196000pt;}
.xb8{left:706.270667pt;}
.x20{left:707.212000pt;}
.x2f{left:712.776000pt;}
.x3e{left:714.348000pt;}
.xbd{left:719.536000pt;}
.x21{left:720.496000pt;}
.x19{left:726.842667pt;}
.x1f{left:736.954667pt;}
.x1a{left:740.126667pt;}
.xc0{left:741.189333pt;}
.xd6{left:744.864000pt;}
}




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