
    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_108d82cf7337dd3bc16b2667.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e2fb57dc5500ffc2f0d7933f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_16013d5d029165bfdfc648f4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8a508d74b013af519852ec73.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_adfb30ad5e1e519a2490b537.woff')format("woff");}.ff5{font-family:ff5;line-height:0.555000;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_ce85f3090ae4c66473616d12.woff')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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_a15de2e1c70f7e5a0206fb46.woff')format("woff");}.ff7{font-family:ff7;line-height:0.234000;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_ed5d428b5df69b0474103f42.woff')format("woff");}.ff8{font-family:ff8;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{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);}
.me{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);}
.m21{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);}
.mb{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);}
.m1f{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);}
.m1e{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);}
.m1b{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);}
.m27{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);}
.m2{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);}
.m8{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);}
.m6{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);}
.mf{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);}
.m10{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);}
.m1c{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);}
.m23{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);}
.m1d{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m18{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);}
.m28{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);}
.m9{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);}
.m15{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);}
.m20{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);}
.m11{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);}
.m19{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);}
.m25{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);}
.m14{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);}
.m16{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);}
.ma{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);}
.m3{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);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.v3{vertical-align:-11.046000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:24.948000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.004638px;}
.ls7{letter-spacing:1.052053px;}
.ls8{letter-spacing:1.099874px;}
.ls11{letter-spacing:1.512324px;}
.ls0{letter-spacing:2.988780px;}
.ls9{letter-spacing:10.568353px;}
.ls6{letter-spacing:10.616173px;}
.ls5{letter-spacing:11.716047px;}
.lse{letter-spacing:13.679658px;}
.lsf{letter-spacing:16.910532px;}
.lsc{letter-spacing:17.185500px;}
.ls10{letter-spacing:17.322984px;}
.ls12{letter-spacing:19.316502px;}
.lsb{letter-spacing:20.171100px;}
.lsd{letter-spacing:21.035052px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.ws68{word-spacing:-17.185500px;}
.wsc7{word-spacing:-3.780810px;}
.wseb{word-spacing:-3.712068px;}
.ws83{word-spacing:-3.643326px;}
.ws3b{word-spacing:-3.574584px;}
.ws10b{word-spacing:-3.505842px;}
.ws87{word-spacing:-3.437100px;}
.ws7c{word-spacing:-3.299616px;}
.wse1{word-spacing:-3.230874px;}
.ws10e{word-spacing:-3.162132px;}
.ws4e{word-spacing:-3.093390px;}
.ws8a{word-spacing:-3.024648px;}
.wsf{word-spacing:-2.988780px;}
.wsae{word-spacing:-2.955906px;}
.ws9f{word-spacing:-2.887164px;}
.wscb{word-spacing:-2.680938px;}
.wsaa{word-spacing:-2.612196px;}
.ws1d{word-spacing:-2.543454px;}
.ws67{word-spacing:-2.474712px;}
.ws3a{word-spacing:-2.337228px;}
.wsd0{word-spacing:-2.268486px;}
.ws11e{word-spacing:-2.199744px;}
.ws72{word-spacing:-2.131002px;}
.ws71{word-spacing:-2.062260px;}
.ws7f{word-spacing:-1.993518px;}
.ws96{word-spacing:-1.924776px;}
.wsde{word-spacing:-1.856034px;}
.ws88{word-spacing:-1.787292px;}
.wsc8{word-spacing:-1.718550px;}
.wse2{word-spacing:-1.649808px;}
.wsc9{word-spacing:-1.581066px;}
.wsd3{word-spacing:-1.512324px;}
.wsf4{word-spacing:-1.443582px;}
.ws5e{word-spacing:-1.374840px;}
.wsf0{word-spacing:-1.338977px;}
.wsbb{word-spacing:-1.306098px;}
.ws63{word-spacing:-1.237356px;}
.wsd7{word-spacing:-1.168614px;}
.ws52{word-spacing:-1.099872px;}
.ws54{word-spacing:-1.031130px;}
.ws36{word-spacing:-0.962388px;}
.ws107{word-spacing:-0.893646px;}
.ws94{word-spacing:-0.824904px;}
.ws31{word-spacing:-0.756162px;}
.ws97{word-spacing:-0.687420px;}
.ws84{word-spacing:-0.618678px;}
.wse0{word-spacing:-0.549936px;}
.ws26{word-spacing:-0.481194px;}
.ws2c{word-spacing:-0.412452px;}
.ws25{word-spacing:-0.343710px;}
.wsc{word-spacing:-0.298878px;}
.ws29{word-spacing:-0.274968px;}
.wsdb{word-spacing:-0.268992px;}
.ws16{word-spacing:-0.206226px;}
.ws7{word-spacing:-0.179327px;}
.ws103{word-spacing:-0.161395px;}
.ws1a{word-spacing:-0.137484px;}
.ws3f{word-spacing:-0.068742px;}
.wsb{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.wsed{word-spacing:0.053798px;}
.wsd{word-spacing:0.059776px;}
.ws18{word-spacing:0.068742px;}
.ws10{word-spacing:0.107597px;}
.ws4{word-spacing:0.119551px;}
.ws17{word-spacing:0.137484px;}
.ws5{word-spacing:0.179327px;}
.ws2d{word-spacing:0.206226px;}
.ws1c{word-spacing:0.274968px;}
.ws6e{word-spacing:0.343710px;}
.ws5f{word-spacing:0.412452px;}
.ws2a{word-spacing:0.481194px;}
.ws46{word-spacing:0.549936px;}
.ws6c{word-spacing:0.618678px;}
.ws30{word-spacing:0.687420px;}
.ws2e{word-spacing:0.756162px;}
.ws9e{word-spacing:0.824904px;}
.ws8b{word-spacing:0.893646px;}
.wsb5{word-spacing:0.962388px;}
.wsdf{word-spacing:1.031130px;}
.wsaf{word-spacing:1.099872px;}
.ws33{word-spacing:1.168614px;}
.ws6b{word-spacing:1.237356px;}
.ws2f{word-spacing:1.306098px;}
.ws3d{word-spacing:1.374840px;}
.ws5a{word-spacing:1.443582px;}
.ws58{word-spacing:1.581066px;}
.wsbc{word-spacing:1.649808px;}
.wsbf{word-spacing:1.718550px;}
.wsb2{word-spacing:1.787292px;}
.wsb6{word-spacing:1.856034px;}
.ws4d{word-spacing:1.924776px;}
.wsce{word-spacing:1.993518px;}
.ws50{word-spacing:2.062260px;}
.ws34{word-spacing:2.131002px;}
.wsfb{word-spacing:2.199744px;}
.ws1e{word-spacing:2.268486px;}
.wsc0{word-spacing:2.337228px;}
.ws28{word-spacing:2.405970px;}
.ws39{word-spacing:2.474712px;}
.wsac{word-spacing:2.543454px;}
.wsa4{word-spacing:2.612196px;}
.ws7d{word-spacing:2.680938px;}
.wsd2{word-spacing:2.749680px;}
.ws19{word-spacing:2.818422px;}
.ws48{word-spacing:2.887164px;}
.ws117{word-spacing:2.955906px;}
.wsc6{word-spacing:3.024648px;}
.ws10d{word-spacing:3.093390px;}
.wsc1{word-spacing:3.162132px;}
.wsbe{word-spacing:3.230874px;}
.ws65{word-spacing:3.299616px;}
.ws122{word-spacing:3.368358px;}
.wsad{word-spacing:3.437100px;}
.ws47{word-spacing:3.505842px;}
.ws8e{word-spacing:3.574584px;}
.wsa3{word-spacing:3.643326px;}
.ws10a{word-spacing:3.712068px;}
.ws35{word-spacing:3.780810px;}
.wsc5{word-spacing:3.849552px;}
.ws61{word-spacing:3.918294px;}
.ws5b{word-spacing:3.987036px;}
.ws40{word-spacing:4.055778px;}
.wsc2{word-spacing:4.124520px;}
.wsa0{word-spacing:4.193262px;}
.wsa{word-spacing:4.303843px;}
.ws37{word-spacing:4.330746px;}
.ws9d{word-spacing:4.399488px;}
.ws79{word-spacing:4.468230px;}
.ws80{word-spacing:4.536972px;}
.ws8d{word-spacing:4.605714px;}
.ws81{word-spacing:4.674456px;}
.ws4a{word-spacing:4.743198px;}
.ws4b{word-spacing:4.811940px;}
.ws1b{word-spacing:4.880682px;}
.ws45{word-spacing:4.949424px;}
.wsd4{word-spacing:4.949453px;}
.wse4{word-spacing:5.018166px;}
.ws27{word-spacing:5.086908px;}
.ws8f{word-spacing:5.155650px;}
.ws4f{word-spacing:5.224392px;}
.ws77{word-spacing:5.293134px;}
.ws21{word-spacing:5.361876px;}
.ws12{word-spacing:5.430618px;}
.ws8{word-spacing:5.499355px;}
.ws6d{word-spacing:5.499360px;}
.ws75{word-spacing:5.568102px;}
.ws23{word-spacing:5.636844px;}
.ws7a{word-spacing:5.705586px;}
.wscd{word-spacing:5.843070px;}
.ws44{word-spacing:5.911812px;}
.wsb0{word-spacing:5.980554px;}
.ws90{word-spacing:6.049296px;}
.wsf5{word-spacing:6.118038px;}
.wse{word-spacing:6.156887px;}
.ws86{word-spacing:6.186780px;}
.wsa6{word-spacing:6.255522px;}
.ws53{word-spacing:6.324264px;}
.wsd5{word-spacing:6.393006px;}
.wsb7{word-spacing:6.461748px;}
.ws78{word-spacing:6.530490px;}
.ws64{word-spacing:6.599232px;}
.ws10c{word-spacing:6.667974px;}
.ws9b{word-spacing:6.736716px;}
.ws3e{word-spacing:6.805458px;}
.ws2b{word-spacing:6.874200px;}
.ws9{word-spacing:6.933970px;}
.ws85{word-spacing:6.942942px;}
.ws13{word-spacing:7.011684px;}
.wsfe{word-spacing:7.080426px;}
.wsda{word-spacing:7.149168px;}
.wsfc{word-spacing:7.217910px;}
.ws110{word-spacing:7.286652px;}
.wsec{word-spacing:7.355394px;}
.wsab{word-spacing:7.424136px;}
.ws106{word-spacing:7.492878px;}
.ws3c{word-spacing:7.561620px;}
.ws100{word-spacing:7.630362px;}
.ws32{word-spacing:7.699104px;}
.ws24{word-spacing:7.767846px;}
.wsca{word-spacing:7.836588px;}
.ws70{word-spacing:7.905330px;}
.ws6{word-spacing:7.950155px;}
.ws7b{word-spacing:7.974072px;}
.ws49{word-spacing:8.042814px;}
.wsd6{word-spacing:8.111556px;}
.ws1f{word-spacing:8.180298px;}
.wsb1{word-spacing:8.317782px;}
.ws55{word-spacing:8.386524px;}
.ws51{word-spacing:8.455266px;}
.ws4c{word-spacing:8.524008px;}
.ws41{word-spacing:8.592750px;}
.ws59{word-spacing:8.661492px;}
.wsbd{word-spacing:8.730234px;}
.ws76{word-spacing:8.867718px;}
.ws56{word-spacing:8.936460px;}
.ws20{word-spacing:9.005202px;}
.ws57{word-spacing:9.073944px;}
.wsc3{word-spacing:9.142686px;}
.ws5d{word-spacing:9.211428px;}
.ws38{word-spacing:9.280170px;}
.wsf9{word-spacing:9.348912px;}
.ws95{word-spacing:9.417654px;}
.ws82{word-spacing:9.486396px;}
.ws9c{word-spacing:9.623880px;}
.ws14{word-spacing:9.692622px;}
.ws60{word-spacing:9.761364px;}
.wsba{word-spacing:10.242558px;}
.ws8c{word-spacing:10.311300px;}
.wsfd{word-spacing:10.380042px;}
.wsfa{word-spacing:10.448784px;}
.ws42{word-spacing:10.517526px;}
.ws6f{word-spacing:10.586268px;}
.ws7e{word-spacing:10.723752px;}
.ws66{word-spacing:10.792494px;}
.wsa7{word-spacing:10.861236px;}
.ws15{word-spacing:10.929978px;}
.ws91{word-spacing:10.998720px;}
.ws74{word-spacing:11.067462px;}
.wsd9{word-spacing:11.136204px;}
.ws105{word-spacing:11.204946px;}
.ws62{word-spacing:11.273688px;}
.ws22{word-spacing:11.411172px;}
.wsb9{word-spacing:11.548656px;}
.ws43{word-spacing:11.617398px;}
.ws92{word-spacing:11.754882px;}
.ws73{word-spacing:11.892366px;}
.wsa1{word-spacing:12.236076px;}
.ws5c{word-spacing:12.717270px;}
.wsa2{word-spacing:13.404690px;}
.ws118{word-spacing:13.610916px;}
.ws101{word-spacing:13.679658px;}
.wsa8{word-spacing:13.817142px;}
.ws109{word-spacing:13.954626px;}
.ws102{word-spacing:14.023368px;}
.wsc4{word-spacing:14.092110px;}
.wsa5{word-spacing:14.229594px;}
.wsef{word-spacing:14.776565px;}
.ws93{word-spacing:14.917014px;}
.ws115{word-spacing:15.260724px;}
.wsdd{word-spacing:15.329466px;}
.wsb4{word-spacing:15.398208px;}
.wsf3{word-spacing:15.741918px;}
.wsff{word-spacing:16.429338px;}
.ws112{word-spacing:16.704306px;}
.ws113{word-spacing:16.773048px;}
.wsf7{word-spacing:16.841790px;}
.ws0{word-spacing:16.880672px;}
.ws119{word-spacing:16.910532px;}
.ws11c{word-spacing:16.979274px;}
.wsa9{word-spacing:17.048016px;}
.wsb8{word-spacing:17.116758px;}
.wsea{word-spacing:17.185500px;}
.ws11f{word-spacing:17.254242px;}
.wsb3{word-spacing:17.322984px;}
.ws11a{word-spacing:17.391726px;}
.wsf1{word-spacing:17.460468px;}
.wscc{word-spacing:17.941662px;}
.wsf8{word-spacing:18.079146px;}
.ws6a{word-spacing:18.354114px;}
.ws123{word-spacing:19.247760px;}
.ws3{word-spacing:19.307519px;}
.wscf{word-spacing:19.349392px;}
.ws120{word-spacing:19.728954px;}
.wsf2{word-spacing:19.797696px;}
.ws89{word-spacing:20.003922px;}
.ws114{word-spacing:20.897568px;}
.ws11b{word-spacing:22.203666px;}
.ws121{word-spacing:22.409892px;}
.ws111{word-spacing:24.815862px;}
.wse6{word-spacing:25.228314px;}
.ws116{word-spacing:25.709508px;}
.ws69{word-spacing:25.915734px;}
.ws11d{word-spacing:25.984476px;}
.wse7{word-spacing:26.465670px;}
.wse3{word-spacing:30.315222px;}
.ws9a{word-spacing:31.346352px;}
.wse5{word-spacing:33.202386px;}
.wsf6{word-spacing:33.477354px;}
.wsd8{word-spacing:34.714710px;}
.ws10f{word-spacing:36.708228px;}
.wsd1{word-spacing:47.157012px;}
.ws99{word-spacing:66.542256px;}
.ws98{word-spacing:67.298418px;}
.ws108{word-spacing:67.435902px;}
.wsee{word-spacing:71.629164px;}
.ws11{word-spacing:77.630692px;}
.ws104{word-spacing:89.777052px;}
.wse9{word-spacing:245.408940px;}
.wsdc{word-spacing:277.992648px;}
.wse8{word-spacing:943.119258px;}
._2c{margin-left:-8.867718px;}
._3{margin-left:-7.230468px;}
._23{margin-left:-5.398938px;}
._5{margin-left:-4.368398px;}
._1{margin-left:-2.582310px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._54{width:2.543454px;}
._56{width:3.744349px;}
._55{width:5.739276px;}
._c{width:14.594040px;}
._b{width:16.236349px;}
._4{width:18.178962px;}
._21{width:19.797696px;}
._e{width:21.140856px;}
._9{width:22.714728px;}
._8{width:23.730913px;}
._13{width:24.862484px;}
._11{width:26.259444px;}
._19{width:27.359316px;}
._1a{width:28.734156px;}
._18{width:30.521448px;}
._35{width:31.621320px;}
._7{width:32.871800px;}
._6{width:35.138494px;}
._f{width:36.639486px;}
._12{width:38.671860px;}
._17{width:39.732876px;}
._1c{width:41.594882px;}
._1b{width:43.329580px;}
._15{width:44.751042px;}
._14{width:45.919656px;}
._16{width:47.638206px;}
._1f{width:48.669336px;}
._10{width:49.843922px;}
._1e{width:52.931340px;}
._d{width:54.345036px;}
._20{width:57.330828px;}
._a{width:60.129474px;}
._4a{width:62.800302px;}
._1d{width:67.367160px;}
._24{width:68.810742px;}
._3b{width:70.116840px;}
._25{width:71.697906px;}
._2d{width:77.708400px;}
._22{width:83.727756px;}
._50{width:85.927500px;}
._2f{width:94.863960px;}
._37{width:96.045132px;}
._3d{width:99.675900px;}
._4e{width:102.906774px;}
._4d{width:106.137648px;}
._34{width:110.262168px;}
._44{width:111.774492px;}
._52{width:126.524136px;}
._30{width:128.135088px;}
._46{width:131.847156px;}
._27{width:140.439906px;}
._4f{width:160.895136px;}
._45{width:162.987282px;}
._26{width:167.598378px;}
._4b{width:171.030096px;}
._32{width:178.866684px;}
._3e{width:189.109242px;}
._3f{width:191.034018px;}
._41{width:256.201434px;}
._28{width:258.246366px;}
._2a{width:262.427070px;}
._2b{width:285.318156px;}
._51{width:307.345482px;}
._49{width:322.643268px;}
._43{width:334.292346px;}
._4c{width:341.716482px;}
._53{width:366.532344px;}
._31{width:393.449322px;}
._36{width:396.985050px;}
._29{width:405.616656px;}
._48{width:418.295070px;}
._39{width:423.489576px;}
._2e{width:451.016262px;}
._3a{width:501.060438px;}
._38{width:535.431438px;}
._33{width:555.091650px;}
._47{width:632.877708px;}
._42{width:731.771148px;}
._40{width:1219.620564px;}
._3c{width:1304.654418px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:47.820600px;}
.fs7{font-size:50.869800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y52{bottom:41.308500px;}
.yb4{bottom:41.592000px;}
.y53{bottom:43.522500px;}
.ycd{bottom:87.351000px;}
.y199{bottom:90.213000px;}
.y51{bottom:90.733500px;}
.y11c{bottom:91.146000px;}
.y1a2{bottom:91.227000px;}
.y8c{bottom:94.584000px;}
.yb3{bottom:95.598000px;}
.yf0{bottom:98.089500px;}
.yf5{bottom:99.103500px;}
.y141{bottom:101.743500px;}
.y66{bottom:102.913500px;}
.y1c5{bottom:103.342500px;}
.y18c{bottom:107.224500px;}
.y24{bottom:109.479000px;}
.y198{bottom:113.010000px;}
.y50{bottom:113.530500px;}
.y11b{bottom:113.943000px;}
.y1a1{bottom:114.024000px;}
.y8b{bottom:117.381000px;}
.yb2{bottom:118.395000px;}
.yef{bottom:120.886500px;}
.yf4{bottom:121.900500px;}
.y140{bottom:124.542000px;}
.y65{bottom:125.710500px;}
.y1c4{bottom:126.139500px;}
.ycc{bottom:126.646500px;}
.y18b{bottom:130.021500px;}
.y23{bottom:132.277500px;}
.y197{bottom:135.807000px;}
.y4f{bottom:136.327500px;}
.y11a{bottom:136.740000px;}
.y1a0{bottom:136.821000px;}
.y8a{bottom:140.178000px;}
.yb1{bottom:141.192000px;}
.yee{bottom:143.683500px;}
.yf3{bottom:144.697500px;}
.y13f{bottom:147.339000px;}
.y64{bottom:148.507500px;}
.y1c3{bottom:148.936500px;}
.ycb{bottom:149.445000px;}
.y1e3{bottom:149.889000px;}
.y18a{bottom:152.818500px;}
.y22{bottom:155.074500px;}
.y196{bottom:158.604000px;}
.y4e{bottom:159.124500px;}
.y119{bottom:159.537000px;}
.y19f{bottom:159.618000px;}
.y166{bottom:161.520000px;}
.y89{bottom:162.975000px;}
.yb0{bottom:163.989000px;}
.yed{bottom:166.482000px;}
.yf2{bottom:167.496000px;}
.y13e{bottom:170.136000px;}
.y1c2{bottom:171.733500px;}
.yca{bottom:172.242000px;}
.y1e2{bottom:172.686000px;}
.y189{bottom:175.615500px;}
.y21{bottom:177.871500px;}
.y195{bottom:181.401000px;}
.y63{bottom:181.765500px;}
.y4d{bottom:181.921500px;}
.y118{bottom:182.334000px;}
.y19e{bottom:182.415000px;}
.y165{bottom:184.317000px;}
.y88{bottom:185.772000px;}
.yaf{bottom:186.786000px;}
.yec{bottom:189.279000px;}
.yf1{bottom:190.293000px;}
.y13d{bottom:192.933000px;}
.y1c1{bottom:194.530500px;}
.yc9{bottom:195.039000px;}
.y1e1{bottom:195.483000px;}
.y188{bottom:198.412500px;}
.y20{bottom:200.668500px;}
.y194{bottom:204.198000px;}
.y4c{bottom:204.718500px;}
.y117{bottom:205.131000px;}
.y19d{bottom:205.212000px;}
.y164{bottom:207.114000px;}
.y87{bottom:208.569000px;}
.yae{bottom:209.583000px;}
.y13c{bottom:215.730000px;}
.y1c0{bottom:217.327500px;}
.yc8{bottom:217.836000px;}
.y1e0{bottom:218.280000px;}
.y187{bottom:221.209500px;}
.y1f{bottom:223.465500px;}
.y193{bottom:226.995000px;}
.y4b{bottom:227.515500px;}
.y116{bottom:227.928000px;}
.y19c{bottom:228.009000px;}
.y163{bottom:229.911000px;}
.y86{bottom:231.366000px;}
.yad{bottom:232.380000px;}
.y13b{bottom:238.527000px;}
.y1bf{bottom:240.124500px;}
.yc7{bottom:240.633000px;}
.y1df{bottom:241.078500px;}
.y186{bottom:244.006500px;}
.y62{bottom:244.068000px;}
.y1e{bottom:246.262500px;}
.yeb{bottom:248.955000px;}
.y192{bottom:249.792000px;}
.y4a{bottom:250.312500px;}
.y115{bottom:250.725000px;}
.y19b{bottom:250.806000px;}
.y162{bottom:252.708000px;}
.y85{bottom:254.163000px;}
.yac{bottom:255.177000px;}
.y13a{bottom:261.324000px;}
.y1be{bottom:262.921500px;}
.y1de{bottom:263.875500px;}
.y185{bottom:266.803500px;}
.y61{bottom:266.865000px;}
.y1d{bottom:269.059500px;}
.yea{bottom:271.752000px;}
.y191{bottom:272.589000px;}
.y49{bottom:273.109500px;}
.y114{bottom:273.522000px;}
.y19a{bottom:273.603000px;}
.y161{bottom:275.505000px;}
.y84{bottom:276.960000px;}
.yab{bottom:277.974000px;}
.y139{bottom:284.121000px;}
.y1bd{bottom:285.718500px;}
.y1dd{bottom:286.672500px;}
.y184{bottom:289.600500px;}
.y60{bottom:289.662000px;}
.y1c{bottom:291.856500px;}
.ye9{bottom:294.549000px;}
.y48{bottom:295.908000px;}
.y113{bottom:296.319000px;}
.yc6{bottom:296.427000px;}
.y160{bottom:298.303500px;}
.y83{bottom:299.757000px;}
.yaa{bottom:300.771000px;}
.y1bc{bottom:308.515500px;}
.y1dc{bottom:309.469500px;}
.y183{bottom:312.397500px;}
.y5f{bottom:312.459000px;}
.y190{bottom:314.334000px;}
.y1b{bottom:314.653500px;}
.ye8{bottom:317.346000px;}
.y47{bottom:318.705000px;}
.y112{bottom:319.116000px;}
.yc5{bottom:319.224000px;}
.y15f{bottom:321.100500px;}
.y82{bottom:322.555500px;}
.ya9{bottom:323.569500px;}
.y1bb{bottom:331.312500px;}
.y1db{bottom:332.266500px;}
.y182{bottom:335.194500px;}
.y5e{bottom:335.256000px;}
.y18f{bottom:337.131000px;}
.y1a{bottom:337.450500px;}
.ye7{bottom:340.143000px;}
.y46{bottom:341.502000px;}
.y111{bottom:341.913000px;}
.yc4{bottom:342.021000px;}
.y138{bottom:342.783000px;}
.y15e{bottom:343.897500px;}
.y81{bottom:345.352500px;}
.ya8{bottom:346.366500px;}
.y1ba{bottom:354.109500px;}
.y1da{bottom:355.063500px;}
.y181{bottom:357.991500px;}
.y5d{bottom:358.053000px;}
.y18e{bottom:359.928000px;}
.y19{bottom:360.247500px;}
.ye6{bottom:362.940000px;}
.y45{bottom:364.299000px;}
.y110{bottom:364.710000px;}
.yc3{bottom:364.818000px;}
.y137{bottom:365.581500px;}
.y15d{bottom:366.694500px;}
.y80{bottom:368.149500px;}
.ya7{bottom:369.163500px;}
.y1b9{bottom:376.908000px;}
.y1d9{bottom:377.860500px;}
.y180{bottom:380.790000px;}
.y5c{bottom:380.850000px;}
.y18{bottom:383.044500px;}
.ye5{bottom:385.737000px;}
.y44{bottom:387.096000px;}
.yc2{bottom:387.615000px;}
.y136{bottom:388.378500px;}
.y15c{bottom:389.491500px;}
.y7f{bottom:390.946500px;}
.ya6{bottom:391.960500px;}
.y18d{bottom:393.186000px;}
.y1b8{bottom:399.705000px;}
.y1d8{bottom:400.657500px;}
.y17f{bottom:403.587000px;}
.y5b{bottom:403.647000px;}
.ye4{bottom:408.535500px;}
.y43{bottom:409.893000px;}
.yc1{bottom:410.412000px;}
.y135{bottom:411.175500px;}
.y15b{bottom:412.288500px;}
.y7e{bottom:413.743500px;}
.ya5{bottom:414.757500px;}
.y10f{bottom:417.417000px;}
.y1b7{bottom:422.502000px;}
.y1d7{bottom:423.454500px;}
.y17e{bottom:426.384000px;}
.y5a{bottom:426.444000px;}
.ye3{bottom:431.332500px;}
.y42{bottom:432.690000px;}
.yc0{bottom:433.209000px;}
.y134{bottom:433.972500px;}
.y17{bottom:434.235000px;}
.y15a{bottom:435.085500px;}
.y7d{bottom:436.540500px;}
.ya3{bottom:437.554500px;}
.ya4{bottom:437.640000px;}
.y1b6{bottom:445.299000px;}
.y1d6{bottom:446.251500px;}
.y10e{bottom:448.359000px;}
.y17d{bottom:449.181000px;}
.y59{bottom:449.241000px;}
.ye2{bottom:454.129500px;}
.y41{bottom:455.487000px;}
.ybf{bottom:456.006000px;}
.y133{bottom:456.769500px;}
.y159{bottom:457.882500px;}
.y7c{bottom:459.337500px;}
.ya2{bottom:460.351500px;}
.y1b5{bottom:468.096000px;}
.y1d5{bottom:469.048500px;}
.y17c{bottom:471.978000px;}
.y58{bottom:472.038000px;}
.y16{bottom:475.408500px;}
.ye1{bottom:476.926500px;}
.y40{bottom:478.284000px;}
.y10d{bottom:479.302500px;}
.y132{bottom:479.566500px;}
.y158{bottom:480.679500px;}
.y7b{bottom:482.134500px;}
.ya1{bottom:483.148500px;}
.y1b4{bottom:490.893000px;}
.y1d4{bottom:491.845500px;}
.y15{bottom:493.984500px;}
.y17b{bottom:494.775000px;}
.y57{bottom:494.835000px;}
.ye0{bottom:499.723500px;}
.y3f{bottom:501.081000px;}
.y131{bottom:502.363500px;}
.y157{bottom:503.476500px;}
.y7a{bottom:504.931500px;}
.ya0{bottom:505.945500px;}
.ybe{bottom:507.279000px;}
.y10c{bottom:510.246000px;}
.y1b3{bottom:513.690000px;}
.y1d3{bottom:514.642500px;}
.y14{bottom:515.806500px;}
.y17a{bottom:517.572000px;}
.y56{bottom:517.633500px;}
.ydf{bottom:522.520500px;}
.y3e{bottom:523.878000px;}
.y130{bottom:525.160500px;}
.y156{bottom:526.273500px;}
.y79{bottom:527.728500px;}
.y9f{bottom:528.742500px;}
.y1b2{bottom:536.487000px;}
.y1d2{bottom:537.439500px;}
.ybd{bottom:538.221000px;}
.y179{bottom:540.369000px;}
.y55{bottom:540.430500px;}
.yde{bottom:545.317500px;}
.y3d{bottom:546.675000px;}
.y12f{bottom:547.957500px;}
.y10b{bottom:548.691000px;}
.y155{bottom:549.070500px;}
.y13{bottom:549.456000px;}
.y78{bottom:550.525500px;}
.y9e{bottom:551.539500px;}
.y1b1{bottom:559.284000px;}
.y1d1{bottom:560.238000px;}
.ybc{bottom:561.018000px;}
.y54{bottom:562.213500px;}
.y178{bottom:563.166000px;}
.ydd{bottom:568.114500px;}
.y3c{bottom:569.472000px;}
.y12e{bottom:570.754500px;}
.y154{bottom:571.867500px;}
.y77{bottom:573.322500px;}
.y9d{bottom:574.336500px;}
.y1b0{bottom:582.081000px;}
.y1d0{bottom:583.035000px;}
.y12{bottom:584.859000px;}
.y177{bottom:585.963000px;}
.ydc{bottom:590.911500px;}
.ybb{bottom:591.961500px;}
.y3b{bottom:592.269000px;}
.y12d{bottom:593.551500px;}
.y76{bottom:596.119500px;}
.y9c{bottom:597.133500px;}
.y153{bottom:597.420000px;}
.y10a{bottom:598.588500px;}
.y1af{bottom:604.878000px;}
.y1cf{bottom:605.832000px;}
.y11{bottom:606.811500px;}
.y176{bottom:608.760000px;}
.yba{bottom:614.758500px;}
.y3a{bottom:615.067500px;}
.y12c{bottom:616.348500px;}
.ydb{bottom:617.832000px;}
.y75{bottom:618.918000px;}
.y9b{bottom:619.930500px;}
.y109{bottom:621.385500px;}
.y1ae{bottom:627.675000px;}
.y1ce{bottom:628.629000px;}
.y10{bottom:628.764000px;}
.y152{bottom:630.709500px;}
.y175{bottom:631.557000px;}
.y39{bottom:637.864500px;}
.y12b{bottom:639.145500px;}
.y74{bottom:641.715000px;}
.y9a{bottom:642.729000px;}
.yb9{bottom:645.702000px;}
.yda{bottom:648.774000px;}
.y1ad{bottom:650.472000px;}
.yf{bottom:650.718000px;}
.y1cd{bottom:651.426000px;}
.y151{bottom:653.506500px;}
.y174{bottom:654.354000px;}
.y102{bottom:655.276500px;}
.y108{bottom:656.290500px;}
.y38{bottom:660.661500px;}
.y1e4{bottom:660.747000px;}
.y12a{bottom:661.944000px;}
.y73{bottom:664.512000px;}
.y99{bottom:665.526000px;}
.ye{bottom:672.670500px;}
.y1cc{bottom:674.223000px;}
.yb8{bottom:676.644000px;}
.y173{bottom:677.151000px;}
.y101{bottom:678.073500px;}
.y107{bottom:679.087500px;}
.y150{bottom:679.293000px;}
.yd9{bottom:679.717500px;}
.y1ac{bottom:682.948500px;}
.y37{bottom:683.458500px;}
.y129{bottom:684.741000px;}
.y72{bottom:687.309000px;}
.y98{bottom:688.323000px;}
.yd{bottom:694.623000px;}
.y1cb{bottom:697.020000px;}
.y1ab{bottom:698.991000px;}
.yb7{bottom:699.441000px;}
.y172{bottom:699.949500px;}
.y100{bottom:700.870500px;}
.y106{bottom:701.884500px;}
.y14f{bottom:702.090000px;}
.y36{bottom:706.255500px;}
.y128{bottom:707.538000px;}
.y71{bottom:710.106000px;}
.yd8{bottom:710.661000px;}
.y97{bottom:711.120000px;}
.yc{bottom:716.575500px;}
.y1ca{bottom:719.817000px;}
.y171{bottom:722.746500px;}
.yff{bottom:723.667500px;}
.y105{bottom:724.681500px;}
.y14e{bottom:724.887000px;}
.y35{bottom:729.052500px;}
.y127{bottom:730.335000px;}
.y70{bottom:732.903000px;}
.y96{bottom:733.917000px;}
.y1aa{bottom:734.203500px;}
.yb6{bottom:737.887500px;}
.yb{bottom:738.528000px;}
.yd7{bottom:741.603000px;}
.y1c9{bottom:742.614000px;}
.y170{bottom:745.543500px;}
.yfe{bottom:746.464500px;}
.y104{bottom:747.478500px;}
.y14d{bottom:750.672000px;}
.y34{bottom:751.849500px;}
.y126{bottom:753.132000px;}
.y6f{bottom:755.700000px;}
.y95{bottom:756.714000px;}
.y1a9{bottom:759.988500px;}
.ya{bottom:760.480500px;}
.y1c8{bottom:765.411000px;}
.y16f{bottom:768.340500px;}
.yfd{bottom:769.261500px;}
.y103{bottom:770.275500px;}
.y14c{bottom:773.469000px;}
.y33{bottom:774.646500px;}
.y125{bottom:775.929000px;}
.y6e{bottom:778.497000px;}
.y94{bottom:779.511000px;}
.yd6{bottom:780.049500px;}
.y9{bottom:782.434500px;}
.y1a8{bottom:785.775000px;}
.yb5{bottom:787.785000px;}
.y1c7{bottom:788.208000px;}
.y32{bottom:797.443500px;}
.y124{bottom:798.726000px;}
.y14b{bottom:799.255500px;}
.y16e{bottom:800.350500px;}
.y6d{bottom:801.294000px;}
.y93{bottom:802.308000px;}
.y8{bottom:804.387000px;}
.yfc{bottom:811.005000px;}
.y1a7{bottom:811.560000px;}
.y16d{bottom:816.393000px;}
.y31{bottom:820.240500px;}
.y14a{bottom:822.052500px;}
.y6c{bottom:824.091000px;}
.y92{bottom:825.105000px;}
.y7{bottom:826.339500px;}
.yd5{bottom:829.947000px;}
.y16c{bottom:832.435500px;}
.yfb{bottom:833.802000px;}
.y1a6{bottom:837.346500px;}
.y30{bottom:843.037500px;}
.y1c6{bottom:844.263000px;}
.y149{bottom:844.849500px;}
.y6b{bottom:846.888000px;}
.y91{bottom:847.902000px;}
.y6{bottom:848.292000px;}
.y123{bottom:850.063500px;}
.yfa{bottom:856.600500px;}
.yd4{bottom:857.880000px;}
.y2f{bottom:865.834500px;}
.y16b{bottom:867.646500px;}
.y6a{bottom:869.685000px;}
.y148{bottom:870.636000px;}
.y90{bottom:870.699000px;}
.yf9{bottom:879.397500px;}
.y122{bottom:883.353000px;}
.y2e{bottom:888.631500px;}
.yd3{bottom:888.823500px;}
.y69{bottom:892.482000px;}
.y147{bottom:893.433000px;}
.y8f{bottom:893.496000px;}
.y1a5{bottom:896.421000px;}
.yf8{bottom:902.194500px;}
.y121{bottom:909.139500px;}
.y2d{bottom:911.430000px;}
.y68{bottom:915.279000px;}
.y8e{bottom:916.293000px;}
.y5{bottom:917.967000px;}
.y146{bottom:919.218000px;}
.yd2{bottom:919.767000px;}
.y1a4{bottom:922.207500px;}
.yf7{bottom:924.991500px;}
.y2c{bottom:934.227000px;}
.y120{bottom:934.924500px;}
.y67{bottom:938.077500px;}
.y8d{bottom:939.090000px;}
.y145{bottom:942.015000px;}
.y16a{bottom:945.004500px;}
.yd1{bottom:950.709000px;}
.y1a3{bottom:955.495500px;}
.y2b{bottom:957.024000px;}
.yf6{bottom:958.249500px;}
.y4{bottom:959.347500px;}
.y144{bottom:967.801500px;}
.y11f{bottom:968.214000px;}
.y169{bottom:978.294000px;}
.y2a{bottom:979.821000px;}
.yd0{bottom:981.652500px;}
.y143{bottom:990.598500px;}
.y3{bottom:996.498000px;}
.y29{bottom:1002.618000px;}
.y11e{bottom:1014.321000px;}
.ycf{bottom:1020.099000px;}
.y142{bottom:1023.888000px;}
.y168{bottom:1024.401000px;}
.y28{bottom:1025.415000px;}
.y11d{bottom:1037.118000px;}
.y167{bottom:1047.198000px;}
.y27{bottom:1048.212000px;}
.yce{bottom:1069.995000px;}
.y26{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y25{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.he{height:32.900573px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.hd{height:37.802342px;}
.h5{height:41.125613px;}
.h4{height:41.484266px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.h11{height:47.642496px;}
.hc{height:47.706948px;}
.h3{height:53.463379px;}
.h7{height:53.929630px;}
.hf{height:59.844683px;}
.h10{height:59.850683px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:127.671000px;}
.x23{left:131.856000px;}
.x14{left:137.712000px;}
.x24{left:145.162500px;}
.x1e{left:151.296000px;}
.xb{left:153.070500px;}
.x15{left:154.888500px;}
.x25{left:158.818500px;}
.x22{left:164.985000px;}
.x6{left:178.044000px;}
.x3d{left:181.026000px;}
.x9{left:182.308500px;}
.x39{left:188.443500px;}
.x28{left:197.988000px;}
.x3a{left:202.101000px;}
.x29{left:211.645500px;}
.x1d{left:214.570500px;}
.x38{left:220.987500px;}
.x8{left:239.202000px;}
.x19{left:249.378000px;}
.x3e{left:254.421000px;}
.x1a{left:256.131000px;}
.x13{left:267.775500px;}
.x4{left:294.912000px;}
.x18{left:300.658500px;}
.x17{left:304.320000px;}
.x11{left:315.294000px;}
.x26{left:320.326500px;}
.x27{left:333.982500px;}
.x5{left:363.168000px;}
.x20{left:399.460500px;}
.xd{left:404.373000px;}
.x7{left:410.130000px;}
.x21{left:413.118000px;}
.xa{left:432.832500px;}
.x16{left:435.879000px;}
.x1c{left:447.636000px;}
.xe{left:452.577000px;}
.x1b{left:462.060000px;}
.xc{left:464.346000px;}
.x34{left:473.110500px;}
.x35{left:486.768000px;}
.x10{left:489.858000px;}
.x12{left:500.647500px;}
.x2e{left:520.509000px;}
.x2f{left:534.166500px;}
.x1f{left:557.869500px;}
.x2c{left:562.798500px;}
.x2{left:573.774000px;}
.x2d{left:576.456000px;}
.xf{left:578.070000px;}
.x3b{left:622.609500px;}
.x30{left:630.799500px;}
.x3c{left:636.265500px;}
.x31{left:644.457000px;}
.x1{left:696.322500px;}
.x36{left:737.349000px;}
.x32{left:738.409500px;}
.x2a{left:739.803000px;}
.x37{left:751.006500px;}
.x33{left:752.065500px;}
.x2b{left:753.460500px;}
@media print{
.v3{vertical-align:-9.818667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:22.176000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004123pt;}
.ls7{letter-spacing:0.935158pt;}
.ls8{letter-spacing:0.977666pt;}
.ls11{letter-spacing:1.344288pt;}
.ls0{letter-spacing:2.656693pt;}
.ls9{letter-spacing:9.394091pt;}
.ls6{letter-spacing:9.436598pt;}
.ls5{letter-spacing:10.414264pt;}
.lse{letter-spacing:12.159696pt;}
.lsf{letter-spacing:15.031584pt;}
.lsc{letter-spacing:15.276000pt;}
.ls10{letter-spacing:15.398208pt;}
.ls12{letter-spacing:17.170224pt;}
.lsb{letter-spacing:17.929867pt;}
.lsd{letter-spacing:18.697824pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws68{word-spacing:-15.276000pt;}
.wsc7{word-spacing:-3.360720pt;}
.wseb{word-spacing:-3.299616pt;}
.ws83{word-spacing:-3.238512pt;}
.ws3b{word-spacing:-3.177408pt;}
.ws10b{word-spacing:-3.116304pt;}
.ws87{word-spacing:-3.055200pt;}
.ws7c{word-spacing:-2.932992pt;}
.wse1{word-spacing:-2.871888pt;}
.ws10e{word-spacing:-2.810784pt;}
.ws4e{word-spacing:-2.749680pt;}
.ws8a{word-spacing:-2.688576pt;}
.wsf{word-spacing:-2.656693pt;}
.wsae{word-spacing:-2.627472pt;}
.ws9f{word-spacing:-2.566368pt;}
.wscb{word-spacing:-2.383056pt;}
.wsaa{word-spacing:-2.321952pt;}
.ws1d{word-spacing:-2.260848pt;}
.ws67{word-spacing:-2.199744pt;}
.ws3a{word-spacing:-2.077536pt;}
.wsd0{word-spacing:-2.016432pt;}
.ws11e{word-spacing:-1.955328pt;}
.ws72{word-spacing:-1.894224pt;}
.ws71{word-spacing:-1.833120pt;}
.ws7f{word-spacing:-1.772016pt;}
.ws96{word-spacing:-1.710912pt;}
.wsde{word-spacing:-1.649808pt;}
.ws88{word-spacing:-1.588704pt;}
.wsc8{word-spacing:-1.527600pt;}
.wse2{word-spacing:-1.466496pt;}
.wsc9{word-spacing:-1.405392pt;}
.wsd3{word-spacing:-1.344288pt;}
.wsf4{word-spacing:-1.283184pt;}
.ws5e{word-spacing:-1.222080pt;}
.wsf0{word-spacing:-1.190202pt;}
.wsbb{word-spacing:-1.160976pt;}
.ws63{word-spacing:-1.099872pt;}
.wsd7{word-spacing:-1.038768pt;}
.ws52{word-spacing:-0.977664pt;}
.ws54{word-spacing:-0.916560pt;}
.ws36{word-spacing:-0.855456pt;}
.ws107{word-spacing:-0.794352pt;}
.ws94{word-spacing:-0.733248pt;}
.ws31{word-spacing:-0.672144pt;}
.ws97{word-spacing:-0.611040pt;}
.ws84{word-spacing:-0.549936pt;}
.wse0{word-spacing:-0.488832pt;}
.ws26{word-spacing:-0.427728pt;}
.ws2c{word-spacing:-0.366624pt;}
.ws25{word-spacing:-0.305520pt;}
.wsc{word-spacing:-0.265669pt;}
.ws29{word-spacing:-0.244416pt;}
.wsdb{word-spacing:-0.239104pt;}
.ws16{word-spacing:-0.183312pt;}
.ws7{word-spacing:-0.159402pt;}
.ws103{word-spacing:-0.143462pt;}
.ws1a{word-spacing:-0.122208pt;}
.ws3f{word-spacing:-0.061104pt;}
.wsb{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.wsed{word-spacing:0.047821pt;}
.wsd{word-spacing:0.053134pt;}
.ws18{word-spacing:0.061104pt;}
.ws10{word-spacing:0.095642pt;}
.ws4{word-spacing:0.106268pt;}
.ws17{word-spacing:0.122208pt;}
.ws5{word-spacing:0.159402pt;}
.ws2d{word-spacing:0.183312pt;}
.ws1c{word-spacing:0.244416pt;}
.ws6e{word-spacing:0.305520pt;}
.ws5f{word-spacing:0.366624pt;}
.ws2a{word-spacing:0.427728pt;}
.ws46{word-spacing:0.488832pt;}
.ws6c{word-spacing:0.549936pt;}
.ws30{word-spacing:0.611040pt;}
.ws2e{word-spacing:0.672144pt;}
.ws9e{word-spacing:0.733248pt;}
.ws8b{word-spacing:0.794352pt;}
.wsb5{word-spacing:0.855456pt;}
.wsdf{word-spacing:0.916560pt;}
.wsaf{word-spacing:0.977664pt;}
.ws33{word-spacing:1.038768pt;}
.ws6b{word-spacing:1.099872pt;}
.ws2f{word-spacing:1.160976pt;}
.ws3d{word-spacing:1.222080pt;}
.ws5a{word-spacing:1.283184pt;}
.ws58{word-spacing:1.405392pt;}
.wsbc{word-spacing:1.466496pt;}
.wsbf{word-spacing:1.527600pt;}
.wsb2{word-spacing:1.588704pt;}
.wsb6{word-spacing:1.649808pt;}
.ws4d{word-spacing:1.710912pt;}
.wsce{word-spacing:1.772016pt;}
.ws50{word-spacing:1.833120pt;}
.ws34{word-spacing:1.894224pt;}
.wsfb{word-spacing:1.955328pt;}
.ws1e{word-spacing:2.016432pt;}
.wsc0{word-spacing:2.077536pt;}
.ws28{word-spacing:2.138640pt;}
.ws39{word-spacing:2.199744pt;}
.wsac{word-spacing:2.260848pt;}
.wsa4{word-spacing:2.321952pt;}
.ws7d{word-spacing:2.383056pt;}
.wsd2{word-spacing:2.444160pt;}
.ws19{word-spacing:2.505264pt;}
.ws48{word-spacing:2.566368pt;}
.ws117{word-spacing:2.627472pt;}
.wsc6{word-spacing:2.688576pt;}
.ws10d{word-spacing:2.749680pt;}
.wsc1{word-spacing:2.810784pt;}
.wsbe{word-spacing:2.871888pt;}
.ws65{word-spacing:2.932992pt;}
.ws122{word-spacing:2.994096pt;}
.wsad{word-spacing:3.055200pt;}
.ws47{word-spacing:3.116304pt;}
.ws8e{word-spacing:3.177408pt;}
.wsa3{word-spacing:3.238512pt;}
.ws10a{word-spacing:3.299616pt;}
.ws35{word-spacing:3.360720pt;}
.wsc5{word-spacing:3.421824pt;}
.ws61{word-spacing:3.482928pt;}
.ws5b{word-spacing:3.544032pt;}
.ws40{word-spacing:3.605136pt;}
.wsc2{word-spacing:3.666240pt;}
.wsa0{word-spacing:3.727344pt;}
.wsa{word-spacing:3.825638pt;}
.ws37{word-spacing:3.849552pt;}
.ws9d{word-spacing:3.910656pt;}
.ws79{word-spacing:3.971760pt;}
.ws80{word-spacing:4.032864pt;}
.ws8d{word-spacing:4.093968pt;}
.ws81{word-spacing:4.155072pt;}
.ws4a{word-spacing:4.216176pt;}
.ws4b{word-spacing:4.277280pt;}
.ws1b{word-spacing:4.338384pt;}
.ws45{word-spacing:4.399488pt;}
.wsd4{word-spacing:4.399514pt;}
.wse4{word-spacing:4.460592pt;}
.ws27{word-spacing:4.521696pt;}
.ws8f{word-spacing:4.582800pt;}
.ws4f{word-spacing:4.643904pt;}
.ws77{word-spacing:4.705008pt;}
.ws21{word-spacing:4.766112pt;}
.ws12{word-spacing:4.827216pt;}
.ws8{word-spacing:4.888316pt;}
.ws6d{word-spacing:4.888320pt;}
.ws75{word-spacing:4.949424pt;}
.ws23{word-spacing:5.010528pt;}
.ws7a{word-spacing:5.071632pt;}
.wscd{word-spacing:5.193840pt;}
.ws44{word-spacing:5.254944pt;}
.wsb0{word-spacing:5.316048pt;}
.ws90{word-spacing:5.377152pt;}
.wsf5{word-spacing:5.438256pt;}
.wse{word-spacing:5.472788pt;}
.ws86{word-spacing:5.499360pt;}
.wsa6{word-spacing:5.560464pt;}
.ws53{word-spacing:5.621568pt;}
.wsd5{word-spacing:5.682672pt;}
.wsb7{word-spacing:5.743776pt;}
.ws78{word-spacing:5.804880pt;}
.ws64{word-spacing:5.865984pt;}
.ws10c{word-spacing:5.927088pt;}
.ws9b{word-spacing:5.988192pt;}
.ws3e{word-spacing:6.049296pt;}
.ws2b{word-spacing:6.110400pt;}
.ws9{word-spacing:6.163529pt;}
.ws85{word-spacing:6.171504pt;}
.ws13{word-spacing:6.232608pt;}
.wsfe{word-spacing:6.293712pt;}
.wsda{word-spacing:6.354816pt;}
.wsfc{word-spacing:6.415920pt;}
.ws110{word-spacing:6.477024pt;}
.wsec{word-spacing:6.538128pt;}
.wsab{word-spacing:6.599232pt;}
.ws106{word-spacing:6.660336pt;}
.ws3c{word-spacing:6.721440pt;}
.ws100{word-spacing:6.782544pt;}
.ws32{word-spacing:6.843648pt;}
.ws24{word-spacing:6.904752pt;}
.wsca{word-spacing:6.965856pt;}
.ws70{word-spacing:7.026960pt;}
.ws6{word-spacing:7.066804pt;}
.ws7b{word-spacing:7.088064pt;}
.ws49{word-spacing:7.149168pt;}
.wsd6{word-spacing:7.210272pt;}
.ws1f{word-spacing:7.271376pt;}
.wsb1{word-spacing:7.393584pt;}
.ws55{word-spacing:7.454688pt;}
.ws51{word-spacing:7.515792pt;}
.ws4c{word-spacing:7.576896pt;}
.ws41{word-spacing:7.638000pt;}
.ws59{word-spacing:7.699104pt;}
.wsbd{word-spacing:7.760208pt;}
.ws76{word-spacing:7.882416pt;}
.ws56{word-spacing:7.943520pt;}
.ws20{word-spacing:8.004624pt;}
.ws57{word-spacing:8.065728pt;}
.wsc3{word-spacing:8.126832pt;}
.ws5d{word-spacing:8.187936pt;}
.ws38{word-spacing:8.249040pt;}
.wsf9{word-spacing:8.310144pt;}
.ws95{word-spacing:8.371248pt;}
.ws82{word-spacing:8.432352pt;}
.ws9c{word-spacing:8.554560pt;}
.ws14{word-spacing:8.615664pt;}
.ws60{word-spacing:8.676768pt;}
.wsba{word-spacing:9.104496pt;}
.ws8c{word-spacing:9.165600pt;}
.wsfd{word-spacing:9.226704pt;}
.wsfa{word-spacing:9.287808pt;}
.ws42{word-spacing:9.348912pt;}
.ws6f{word-spacing:9.410016pt;}
.ws7e{word-spacing:9.532224pt;}
.ws66{word-spacing:9.593328pt;}
.wsa7{word-spacing:9.654432pt;}
.ws15{word-spacing:9.715536pt;}
.ws91{word-spacing:9.776640pt;}
.ws74{word-spacing:9.837744pt;}
.wsd9{word-spacing:9.898848pt;}
.ws105{word-spacing:9.959952pt;}
.ws62{word-spacing:10.021056pt;}
.ws22{word-spacing:10.143264pt;}
.wsb9{word-spacing:10.265472pt;}
.ws43{word-spacing:10.326576pt;}
.ws92{word-spacing:10.448784pt;}
.ws73{word-spacing:10.570992pt;}
.wsa1{word-spacing:10.876512pt;}
.ws5c{word-spacing:11.304240pt;}
.wsa2{word-spacing:11.915280pt;}
.ws118{word-spacing:12.098592pt;}
.ws101{word-spacing:12.159696pt;}
.wsa8{word-spacing:12.281904pt;}
.ws109{word-spacing:12.404112pt;}
.ws102{word-spacing:12.465216pt;}
.wsc4{word-spacing:12.526320pt;}
.wsa5{word-spacing:12.648528pt;}
.wsef{word-spacing:13.134725pt;}
.ws93{word-spacing:13.259568pt;}
.ws115{word-spacing:13.565088pt;}
.wsdd{word-spacing:13.626192pt;}
.wsb4{word-spacing:13.687296pt;}
.wsf3{word-spacing:13.992816pt;}
.wsff{word-spacing:14.603856pt;}
.ws112{word-spacing:14.848272pt;}
.ws113{word-spacing:14.909376pt;}
.wsf7{word-spacing:14.970480pt;}
.ws0{word-spacing:15.005042pt;}
.ws119{word-spacing:15.031584pt;}
.ws11c{word-spacing:15.092688pt;}
.wsa9{word-spacing:15.153792pt;}
.wsb8{word-spacing:15.214896pt;}
.wsea{word-spacing:15.276000pt;}
.ws11f{word-spacing:15.337104pt;}
.wsb3{word-spacing:15.398208pt;}
.ws11a{word-spacing:15.459312pt;}
.wsf1{word-spacing:15.520416pt;}
.wscc{word-spacing:15.948144pt;}
.wsf8{word-spacing:16.070352pt;}
.ws6a{word-spacing:16.314768pt;}
.ws123{word-spacing:17.109120pt;}
.ws3{word-spacing:17.162239pt;}
.wscf{word-spacing:17.199459pt;}
.ws120{word-spacing:17.536848pt;}
.wsf2{word-spacing:17.597952pt;}
.ws89{word-spacing:17.781264pt;}
.ws114{word-spacing:18.575616pt;}
.ws11b{word-spacing:19.736592pt;}
.ws121{word-spacing:19.919904pt;}
.ws111{word-spacing:22.058544pt;}
.wse6{word-spacing:22.425168pt;}
.ws116{word-spacing:22.852896pt;}
.ws69{word-spacing:23.036208pt;}
.ws11d{word-spacing:23.097312pt;}
.wse7{word-spacing:23.525040pt;}
.wse3{word-spacing:26.946864pt;}
.ws9a{word-spacing:27.863424pt;}
.wse5{word-spacing:29.513232pt;}
.wsf6{word-spacing:29.757648pt;}
.wsd8{word-spacing:30.857520pt;}
.ws10f{word-spacing:32.629536pt;}
.wsd1{word-spacing:41.917344pt;}
.ws99{word-spacing:59.148672pt;}
.ws98{word-spacing:59.820816pt;}
.ws108{word-spacing:59.943024pt;}
.wsee{word-spacing:63.670368pt;}
.ws11{word-spacing:69.005059pt;}
.ws104{word-spacing:79.801824pt;}
.wse9{word-spacing:218.141280pt;}
.wsdc{word-spacing:247.104576pt;}
.wse8{word-spacing:838.328229pt;}
._2c{margin-left:-7.882416pt;}
._3{margin-left:-6.427083pt;}
._23{margin-left:-4.799056pt;}
._5{margin-left:-3.883021pt;}
._1{margin-left:-2.295387pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._54{width:2.260848pt;}
._56{width:3.328310pt;}
._55{width:5.101579pt;}
._c{width:12.972480pt;}
._b{width:14.432310pt;}
._4{width:16.159077pt;}
._21{width:17.597952pt;}
._e{width:18.791872pt;}
._9{width:20.190869pt;}
._8{width:21.094145pt;}
._13{width:22.099986pt;}
._11{width:23.341728pt;}
._19{width:24.319392pt;}
._1a{width:25.541472pt;}
._18{width:27.130176pt;}
._35{width:28.107840pt;}
._7{width:29.219378pt;}
._6{width:31.234217pt;}
._f{width:32.568432pt;}
._12{width:34.374987pt;}
._17{width:35.318112pt;}
._1c{width:36.973229pt;}
._1b{width:38.515182pt;}
._15{width:39.778704pt;}
._14{width:40.817472pt;}
._16{width:42.345072pt;}
._1f{width:43.261632pt;}
._10{width:44.305709pt;}
._1e{width:47.050080pt;}
._d{width:48.306699pt;}
._20{width:50.960736pt;}
._a{width:53.448421pt;}
._4a{width:55.822491pt;}
._1d{width:59.881920pt;}
._24{width:61.165104pt;}
._3b{width:62.326080pt;}
._25{width:63.731472pt;}
._2d{width:69.074133pt;}
._22{width:74.424672pt;}
._50{width:76.380000pt;}
._2f{width:84.323520pt;}
._37{width:85.373451pt;}
._3d{width:88.600800pt;}
._4e{width:91.472688pt;}
._4d{width:94.344576pt;}
._34{width:98.010816pt;}
._44{width:99.355104pt;}
._52{width:112.465899pt;}
._30{width:113.897856pt;}
._46{width:117.197472pt;}
._27{width:124.835472pt;}
._4f{width:143.017899pt;}
._45{width:144.877584pt;}
._26{width:148.976336pt;}
._4b{width:152.026752pt;}
._32{width:158.992608pt;}
._3e{width:168.097104pt;}
._3f{width:169.808016pt;}
._41{width:227.734608pt;}
._28{width:229.552325pt;}
._2a{width:233.268507pt;}
._2b{width:253.616139pt;}
._51{width:273.195984pt;}
._49{width:286.794016pt;}
._43{width:297.148752pt;}
._4c{width:303.747984pt;}
._53{width:325.806528pt;}
._31{width:349.732731pt;}
._36{width:352.875600pt;}
._29{width:360.548139pt;}
._48{width:371.817840pt;}
._39{width:376.435179pt;}
._2e{width:400.903344pt;}
._3a{width:445.387056pt;}
._38{width:475.939056pt;}
._33{width:493.414800pt;}
._47{width:562.557963pt;}
._42{width:650.463243pt;}
._40{width:1084.107168pt;}
._3c{width:1159.692816pt;}
.fs0{font-size:42.507200pt;}
.fs7{font-size:45.217600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:36.718667pt;}
.yb4{bottom:36.970667pt;}
.y53{bottom:38.686667pt;}
.ycd{bottom:77.645333pt;}
.y199{bottom:80.189333pt;}
.y51{bottom:80.652000pt;}
.y11c{bottom:81.018667pt;}
.y1a2{bottom:81.090667pt;}
.y8c{bottom:84.074667pt;}
.yb3{bottom:84.976000pt;}
.yf0{bottom:87.190667pt;}
.yf5{bottom:88.092000pt;}
.y141{bottom:90.438667pt;}
.y66{bottom:91.478667pt;}
.y1c5{bottom:91.860000pt;}
.y18c{bottom:95.310667pt;}
.y24{bottom:97.314667pt;}
.y198{bottom:100.453333pt;}
.y50{bottom:100.916000pt;}
.y11b{bottom:101.282667pt;}
.y1a1{bottom:101.354667pt;}
.y8b{bottom:104.338667pt;}
.yb2{bottom:105.240000pt;}
.yef{bottom:107.454667pt;}
.yf4{bottom:108.356000pt;}
.y140{bottom:110.704000pt;}
.y65{bottom:111.742667pt;}
.y1c4{bottom:112.124000pt;}
.ycc{bottom:112.574667pt;}
.y18b{bottom:115.574667pt;}
.y23{bottom:117.580000pt;}
.y197{bottom:120.717333pt;}
.y4f{bottom:121.180000pt;}
.y11a{bottom:121.546667pt;}
.y1a0{bottom:121.618667pt;}
.y8a{bottom:124.602667pt;}
.yb1{bottom:125.504000pt;}
.yee{bottom:127.718667pt;}
.yf3{bottom:128.620000pt;}
.y13f{bottom:130.968000pt;}
.y64{bottom:132.006667pt;}
.y1c3{bottom:132.388000pt;}
.ycb{bottom:132.840000pt;}
.y1e3{bottom:133.234667pt;}
.y18a{bottom:135.838667pt;}
.y22{bottom:137.844000pt;}
.y196{bottom:140.981333pt;}
.y4e{bottom:141.444000pt;}
.y119{bottom:141.810667pt;}
.y19f{bottom:141.882667pt;}
.y166{bottom:143.573333pt;}
.y89{bottom:144.866667pt;}
.yb0{bottom:145.768000pt;}
.yed{bottom:147.984000pt;}
.yf2{bottom:148.885333pt;}
.y13e{bottom:151.232000pt;}
.y1c2{bottom:152.652000pt;}
.yca{bottom:153.104000pt;}
.y1e2{bottom:153.498667pt;}
.y189{bottom:156.102667pt;}
.y21{bottom:158.108000pt;}
.y195{bottom:161.245333pt;}
.y63{bottom:161.569333pt;}
.y4d{bottom:161.708000pt;}
.y118{bottom:162.074667pt;}
.y19e{bottom:162.146667pt;}
.y165{bottom:163.837333pt;}
.y88{bottom:165.130667pt;}
.yaf{bottom:166.032000pt;}
.yec{bottom:168.248000pt;}
.yf1{bottom:169.149333pt;}
.y13d{bottom:171.496000pt;}
.y1c1{bottom:172.916000pt;}
.yc9{bottom:173.368000pt;}
.y1e1{bottom:173.762667pt;}
.y188{bottom:176.366667pt;}
.y20{bottom:178.372000pt;}
.y194{bottom:181.509333pt;}
.y4c{bottom:181.972000pt;}
.y117{bottom:182.338667pt;}
.y19d{bottom:182.410667pt;}
.y164{bottom:184.101333pt;}
.y87{bottom:185.394667pt;}
.yae{bottom:186.296000pt;}
.y13c{bottom:191.760000pt;}
.y1c0{bottom:193.180000pt;}
.yc8{bottom:193.632000pt;}
.y1e0{bottom:194.026667pt;}
.y187{bottom:196.630667pt;}
.y1f{bottom:198.636000pt;}
.y193{bottom:201.773333pt;}
.y4b{bottom:202.236000pt;}
.y116{bottom:202.602667pt;}
.y19c{bottom:202.674667pt;}
.y163{bottom:204.365333pt;}
.y86{bottom:205.658667pt;}
.yad{bottom:206.560000pt;}
.y13b{bottom:212.024000pt;}
.y1bf{bottom:213.444000pt;}
.yc7{bottom:213.896000pt;}
.y1df{bottom:214.292000pt;}
.y186{bottom:216.894667pt;}
.y62{bottom:216.949333pt;}
.y1e{bottom:218.900000pt;}
.yeb{bottom:221.293333pt;}
.y192{bottom:222.037333pt;}
.y4a{bottom:222.500000pt;}
.y115{bottom:222.866667pt;}
.y19b{bottom:222.938667pt;}
.y162{bottom:224.629333pt;}
.y85{bottom:225.922667pt;}
.yac{bottom:226.824000pt;}
.y13a{bottom:232.288000pt;}
.y1be{bottom:233.708000pt;}
.y1de{bottom:234.556000pt;}
.y185{bottom:237.158667pt;}
.y61{bottom:237.213333pt;}
.y1d{bottom:239.164000pt;}
.yea{bottom:241.557333pt;}
.y191{bottom:242.301333pt;}
.y49{bottom:242.764000pt;}
.y114{bottom:243.130667pt;}
.y19a{bottom:243.202667pt;}
.y161{bottom:244.893333pt;}
.y84{bottom:246.186667pt;}
.yab{bottom:247.088000pt;}
.y139{bottom:252.552000pt;}
.y1bd{bottom:253.972000pt;}
.y1dd{bottom:254.820000pt;}
.y184{bottom:257.422667pt;}
.y60{bottom:257.477333pt;}
.y1c{bottom:259.428000pt;}
.ye9{bottom:261.821333pt;}
.y48{bottom:263.029333pt;}
.y113{bottom:263.394667pt;}
.yc6{bottom:263.490667pt;}
.y160{bottom:265.158667pt;}
.y83{bottom:266.450667pt;}
.yaa{bottom:267.352000pt;}
.y1bc{bottom:274.236000pt;}
.y1dc{bottom:275.084000pt;}
.y183{bottom:277.686667pt;}
.y5f{bottom:277.741333pt;}
.y190{bottom:279.408000pt;}
.y1b{bottom:279.692000pt;}
.ye8{bottom:282.085333pt;}
.y47{bottom:283.293333pt;}
.y112{bottom:283.658667pt;}
.yc5{bottom:283.754667pt;}
.y15f{bottom:285.422667pt;}
.y82{bottom:286.716000pt;}
.ya9{bottom:287.617333pt;}
.y1bb{bottom:294.500000pt;}
.y1db{bottom:295.348000pt;}
.y182{bottom:297.950667pt;}
.y5e{bottom:298.005333pt;}
.y18f{bottom:299.672000pt;}
.y1a{bottom:299.956000pt;}
.ye7{bottom:302.349333pt;}
.y46{bottom:303.557333pt;}
.y111{bottom:303.922667pt;}
.yc4{bottom:304.018667pt;}
.y138{bottom:304.696000pt;}
.y15e{bottom:305.686667pt;}
.y81{bottom:306.980000pt;}
.ya8{bottom:307.881333pt;}
.y1ba{bottom:314.764000pt;}
.y1da{bottom:315.612000pt;}
.y181{bottom:318.214667pt;}
.y5d{bottom:318.269333pt;}
.y18e{bottom:319.936000pt;}
.y19{bottom:320.220000pt;}
.ye6{bottom:322.613333pt;}
.y45{bottom:323.821333pt;}
.y110{bottom:324.186667pt;}
.yc3{bottom:324.282667pt;}
.y137{bottom:324.961333pt;}
.y15d{bottom:325.950667pt;}
.y80{bottom:327.244000pt;}
.ya7{bottom:328.145333pt;}
.y1b9{bottom:335.029333pt;}
.y1d9{bottom:335.876000pt;}
.y180{bottom:338.480000pt;}
.y5c{bottom:338.533333pt;}
.y18{bottom:340.484000pt;}
.ye5{bottom:342.877333pt;}
.y44{bottom:344.085333pt;}
.yc2{bottom:344.546667pt;}
.y136{bottom:345.225333pt;}
.y15c{bottom:346.214667pt;}
.y7f{bottom:347.508000pt;}
.ya6{bottom:348.409333pt;}
.y18d{bottom:349.498667pt;}
.y1b8{bottom:355.293333pt;}
.y1d8{bottom:356.140000pt;}
.y17f{bottom:358.744000pt;}
.y5b{bottom:358.797333pt;}
.ye4{bottom:363.142667pt;}
.y43{bottom:364.349333pt;}
.yc1{bottom:364.810667pt;}
.y135{bottom:365.489333pt;}
.y15b{bottom:366.478667pt;}
.y7e{bottom:367.772000pt;}
.ya5{bottom:368.673333pt;}
.y10f{bottom:371.037333pt;}
.y1b7{bottom:375.557333pt;}
.y1d7{bottom:376.404000pt;}
.y17e{bottom:379.008000pt;}
.y5a{bottom:379.061333pt;}
.ye3{bottom:383.406667pt;}
.y42{bottom:384.613333pt;}
.yc0{bottom:385.074667pt;}
.y134{bottom:385.753333pt;}
.y17{bottom:385.986667pt;}
.y15a{bottom:386.742667pt;}
.y7d{bottom:388.036000pt;}
.ya3{bottom:388.937333pt;}
.ya4{bottom:389.013333pt;}
.y1b6{bottom:395.821333pt;}
.y1d6{bottom:396.668000pt;}
.y10e{bottom:398.541333pt;}
.y17d{bottom:399.272000pt;}
.y59{bottom:399.325333pt;}
.ye2{bottom:403.670667pt;}
.y41{bottom:404.877333pt;}
.ybf{bottom:405.338667pt;}
.y133{bottom:406.017333pt;}
.y159{bottom:407.006667pt;}
.y7c{bottom:408.300000pt;}
.ya2{bottom:409.201333pt;}
.y1b5{bottom:416.085333pt;}
.y1d5{bottom:416.932000pt;}
.y17c{bottom:419.536000pt;}
.y58{bottom:419.589333pt;}
.y16{bottom:422.585333pt;}
.ye1{bottom:423.934667pt;}
.y40{bottom:425.141333pt;}
.y10d{bottom:426.046667pt;}
.y132{bottom:426.281333pt;}
.y158{bottom:427.270667pt;}
.y7b{bottom:428.564000pt;}
.ya1{bottom:429.465333pt;}
.y1b4{bottom:436.349333pt;}
.y1d4{bottom:437.196000pt;}
.y15{bottom:439.097333pt;}
.y17b{bottom:439.800000pt;}
.y57{bottom:439.853333pt;}
.ye0{bottom:444.198667pt;}
.y3f{bottom:445.405333pt;}
.y131{bottom:446.545333pt;}
.y157{bottom:447.534667pt;}
.y7a{bottom:448.828000pt;}
.ya0{bottom:449.729333pt;}
.ybe{bottom:450.914667pt;}
.y10c{bottom:453.552000pt;}
.y1b3{bottom:456.613333pt;}
.y1d3{bottom:457.460000pt;}
.y14{bottom:458.494667pt;}
.y17a{bottom:460.064000pt;}
.y56{bottom:460.118667pt;}
.ydf{bottom:464.462667pt;}
.y3e{bottom:465.669333pt;}
.y130{bottom:466.809333pt;}
.y156{bottom:467.798667pt;}
.y79{bottom:469.092000pt;}
.y9f{bottom:469.993333pt;}
.y1b2{bottom:476.877333pt;}
.y1d2{bottom:477.724000pt;}
.ybd{bottom:478.418667pt;}
.y179{bottom:480.328000pt;}
.y55{bottom:480.382667pt;}
.yde{bottom:484.726667pt;}
.y3d{bottom:485.933333pt;}
.y12f{bottom:487.073333pt;}
.y10b{bottom:487.725333pt;}
.y155{bottom:488.062667pt;}
.y13{bottom:488.405333pt;}
.y78{bottom:489.356000pt;}
.y9e{bottom:490.257333pt;}
.y1b1{bottom:497.141333pt;}
.y1d1{bottom:497.989333pt;}
.ybc{bottom:498.682667pt;}
.y54{bottom:499.745333pt;}
.y178{bottom:500.592000pt;}
.ydd{bottom:504.990667pt;}
.y3c{bottom:506.197333pt;}
.y12e{bottom:507.337333pt;}
.y154{bottom:508.326667pt;}
.y77{bottom:509.620000pt;}
.y9d{bottom:510.521333pt;}
.y1b0{bottom:517.405333pt;}
.y1d0{bottom:518.253333pt;}
.y12{bottom:519.874667pt;}
.y177{bottom:520.856000pt;}
.ydc{bottom:525.254667pt;}
.ybb{bottom:526.188000pt;}
.y3b{bottom:526.461333pt;}
.y12d{bottom:527.601333pt;}
.y76{bottom:529.884000pt;}
.y9c{bottom:530.785333pt;}
.y153{bottom:531.040000pt;}
.y10a{bottom:532.078667pt;}
.y1af{bottom:537.669333pt;}
.y1cf{bottom:538.517333pt;}
.y11{bottom:539.388000pt;}
.y176{bottom:541.120000pt;}
.yba{bottom:546.452000pt;}
.y3a{bottom:546.726667pt;}
.y12c{bottom:547.865333pt;}
.ydb{bottom:549.184000pt;}
.y75{bottom:550.149333pt;}
.y9b{bottom:551.049333pt;}
.y109{bottom:552.342667pt;}
.y1ae{bottom:557.933333pt;}
.y1ce{bottom:558.781333pt;}
.y10{bottom:558.901333pt;}
.y152{bottom:560.630667pt;}
.y175{bottom:561.384000pt;}
.y39{bottom:566.990667pt;}
.y12b{bottom:568.129333pt;}
.y74{bottom:570.413333pt;}
.y9a{bottom:571.314667pt;}
.yb9{bottom:573.957333pt;}
.yda{bottom:576.688000pt;}
.y1ad{bottom:578.197333pt;}
.yf{bottom:578.416000pt;}
.y1cd{bottom:579.045333pt;}
.y151{bottom:580.894667pt;}
.y174{bottom:581.648000pt;}
.y102{bottom:582.468000pt;}
.y108{bottom:583.369333pt;}
.y38{bottom:587.254667pt;}
.y1e4{bottom:587.330667pt;}
.y12a{bottom:588.394667pt;}
.y73{bottom:590.677333pt;}
.y99{bottom:591.578667pt;}
.ye{bottom:597.929333pt;}
.y1cc{bottom:599.309333pt;}
.yb8{bottom:601.461333pt;}
.y173{bottom:601.912000pt;}
.y101{bottom:602.732000pt;}
.y107{bottom:603.633333pt;}
.y150{bottom:603.816000pt;}
.yd9{bottom:604.193333pt;}
.y1ac{bottom:607.065333pt;}
.y37{bottom:607.518667pt;}
.y129{bottom:608.658667pt;}
.y72{bottom:610.941333pt;}
.y98{bottom:611.842667pt;}
.yd{bottom:617.442667pt;}
.y1cb{bottom:619.573333pt;}
.y1ab{bottom:621.325333pt;}
.yb7{bottom:621.725333pt;}
.y172{bottom:622.177333pt;}
.y100{bottom:622.996000pt;}
.y106{bottom:623.897333pt;}
.y14f{bottom:624.080000pt;}
.y36{bottom:627.782667pt;}
.y128{bottom:628.922667pt;}
.y71{bottom:631.205333pt;}
.yd8{bottom:631.698667pt;}
.y97{bottom:632.106667pt;}
.yc{bottom:636.956000pt;}
.y1ca{bottom:639.837333pt;}
.y171{bottom:642.441333pt;}
.yff{bottom:643.260000pt;}
.y105{bottom:644.161333pt;}
.y14e{bottom:644.344000pt;}
.y35{bottom:648.046667pt;}
.y127{bottom:649.186667pt;}
.y70{bottom:651.469333pt;}
.y96{bottom:652.370667pt;}
.y1aa{bottom:652.625333pt;}
.yb6{bottom:655.900000pt;}
.yb{bottom:656.469333pt;}
.yd7{bottom:659.202667pt;}
.y1c9{bottom:660.101333pt;}
.y170{bottom:662.705333pt;}
.yfe{bottom:663.524000pt;}
.y104{bottom:664.425333pt;}
.y14d{bottom:667.264000pt;}
.y34{bottom:668.310667pt;}
.y126{bottom:669.450667pt;}
.y6f{bottom:671.733333pt;}
.y95{bottom:672.634667pt;}
.y1a9{bottom:675.545333pt;}
.ya{bottom:675.982667pt;}
.y1c8{bottom:680.365333pt;}
.y16f{bottom:682.969333pt;}
.yfd{bottom:683.788000pt;}
.y103{bottom:684.689333pt;}
.y14c{bottom:687.528000pt;}
.y33{bottom:688.574667pt;}
.y125{bottom:689.714667pt;}
.y6e{bottom:691.997333pt;}
.y94{bottom:692.898667pt;}
.yd6{bottom:693.377333pt;}
.y9{bottom:695.497333pt;}
.y1a8{bottom:698.466667pt;}
.yb5{bottom:700.253333pt;}
.y1c7{bottom:700.629333pt;}
.y32{bottom:708.838667pt;}
.y124{bottom:709.978667pt;}
.y14b{bottom:710.449333pt;}
.y16e{bottom:711.422667pt;}
.y6d{bottom:712.261333pt;}
.y93{bottom:713.162667pt;}
.y8{bottom:715.010667pt;}
.yfc{bottom:720.893333pt;}
.y1a7{bottom:721.386667pt;}
.y16d{bottom:725.682667pt;}
.y31{bottom:729.102667pt;}
.y14a{bottom:730.713333pt;}
.y6c{bottom:732.525333pt;}
.y92{bottom:733.426667pt;}
.y7{bottom:734.524000pt;}
.yd5{bottom:737.730667pt;}
.y16c{bottom:739.942667pt;}
.yfb{bottom:741.157333pt;}
.y1a6{bottom:744.308000pt;}
.y30{bottom:749.366667pt;}
.y1c6{bottom:750.456000pt;}
.y149{bottom:750.977333pt;}
.y6b{bottom:752.789333pt;}
.y91{bottom:753.690667pt;}
.y6{bottom:754.037333pt;}
.y123{bottom:755.612000pt;}
.yfa{bottom:761.422667pt;}
.yd4{bottom:762.560000pt;}
.y2f{bottom:769.630667pt;}
.y16b{bottom:771.241333pt;}
.y6a{bottom:773.053333pt;}
.y148{bottom:773.898667pt;}
.y90{bottom:773.954667pt;}
.yf9{bottom:781.686667pt;}
.y122{bottom:785.202667pt;}
.y2e{bottom:789.894667pt;}
.yd3{bottom:790.065333pt;}
.y69{bottom:793.317333pt;}
.y147{bottom:794.162667pt;}
.y8f{bottom:794.218667pt;}
.y1a5{bottom:796.818667pt;}
.yf8{bottom:801.950667pt;}
.y121{bottom:808.124000pt;}
.y2d{bottom:810.160000pt;}
.y68{bottom:813.581333pt;}
.y8e{bottom:814.482667pt;}
.y5{bottom:815.970667pt;}
.y146{bottom:817.082667pt;}
.yd2{bottom:817.570667pt;}
.y1a4{bottom:819.740000pt;}
.yf7{bottom:822.214667pt;}
.y2c{bottom:830.424000pt;}
.y120{bottom:831.044000pt;}
.y67{bottom:833.846667pt;}
.y8d{bottom:834.746667pt;}
.y145{bottom:837.346667pt;}
.y16a{bottom:840.004000pt;}
.yd1{bottom:845.074667pt;}
.y1a3{bottom:849.329333pt;}
.y2b{bottom:850.688000pt;}
.yf6{bottom:851.777333pt;}
.y4{bottom:852.753333pt;}
.y144{bottom:860.268000pt;}
.y11f{bottom:860.634667pt;}
.y169{bottom:869.594667pt;}
.y2a{bottom:870.952000pt;}
.yd0{bottom:872.580000pt;}
.y143{bottom:880.532000pt;}
.y3{bottom:885.776000pt;}
.y29{bottom:891.216000pt;}
.y11e{bottom:901.618667pt;}
.ycf{bottom:906.754667pt;}
.y142{bottom:910.122667pt;}
.y168{bottom:910.578667pt;}
.y28{bottom:911.480000pt;}
.y11d{bottom:921.882667pt;}
.y167{bottom:930.842667pt;}
.y27{bottom:931.744000pt;}
.yce{bottom:951.106667pt;}
.y26{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y25{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.he{height:29.244954pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.hd{height:33.602082pt;}
.h5{height:36.556100pt;}
.h4{height:36.874903pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.h11{height:42.348885pt;}
.hc{height:42.406176pt;}
.h3{height:47.523004pt;}
.h7{height:47.937449pt;}
.hf{height:53.195274pt;}
.h10{height:53.200607pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.485333pt;}
.x23{left:117.205333pt;}
.x14{left:122.410667pt;}
.x24{left:129.033333pt;}
.x1e{left:134.485333pt;}
.xb{left:136.062667pt;}
.x15{left:137.678667pt;}
.x25{left:141.172000pt;}
.x22{left:146.653333pt;}
.x6{left:158.261333pt;}
.x3d{left:160.912000pt;}
.x9{left:162.052000pt;}
.x39{left:167.505333pt;}
.x28{left:175.989333pt;}
.x3a{left:179.645333pt;}
.x29{left:188.129333pt;}
.x1d{left:190.729333pt;}
.x38{left:196.433333pt;}
.x8{left:212.624000pt;}
.x19{left:221.669333pt;}
.x3e{left:226.152000pt;}
.x1a{left:227.672000pt;}
.x13{left:238.022667pt;}
.x4{left:262.144000pt;}
.x18{left:267.252000pt;}
.x17{left:270.506667pt;}
.x11{left:280.261333pt;}
.x26{left:284.734667pt;}
.x27{left:296.873333pt;}
.x5{left:322.816000pt;}
.x20{left:355.076000pt;}
.xd{left:359.442667pt;}
.x7{left:364.560000pt;}
.x21{left:367.216000pt;}
.xa{left:384.740000pt;}
.x16{left:387.448000pt;}
.x1c{left:397.898667pt;}
.xe{left:402.290667pt;}
.x1b{left:410.720000pt;}
.xc{left:412.752000pt;}
.x34{left:420.542667pt;}
.x35{left:432.682667pt;}
.x10{left:435.429333pt;}
.x12{left:445.020000pt;}
.x2e{left:462.674667pt;}
.x2f{left:474.814667pt;}
.x1f{left:495.884000pt;}
.x2c{left:500.265333pt;}
.x2{left:510.021333pt;}
.x2d{left:512.405333pt;}
.xf{left:513.840000pt;}
.x3b{left:553.430667pt;}
.x30{left:560.710667pt;}
.x3c{left:565.569333pt;}
.x31{left:572.850667pt;}
.x1{left:618.953333pt;}
.x36{left:655.421333pt;}
.x32{left:656.364000pt;}
.x2a{left:657.602667pt;}
.x37{left:667.561333pt;}
.x33{left:668.502667pt;}
.x2b{left:669.742667pt;}
}




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