
    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_a04a16cee11d17032d32cba5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.685000;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_9dbb6c80f437c1c63768d2b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_699f23603ad284bed84cfbd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_5dd3d99a039e4e2dd8827f0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_cb4df6648aa0609d77208cca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_81bd543b68668eabaaa69a2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955000;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_ffbb5bad70123cb68728ee02.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2669cfbbfc5c8153c954fb35.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_daab2020ab3efabd00ab9172.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_985a51de06bdfa5d7112ac32.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_28eff83d58aa75f3b69a3aa3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.454000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2daf3fc52551ec5ea93c74f2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dadf03df6578e6e837a2ab3a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_defe68a5f575745abd849703.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_66699a4a69dfdbf2b2131a1c.woff2')format("woff");}.fff{font-family:fff;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.md{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);}
.m10{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);}
.m9{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);}
.m6{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);}
.m1b{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);}
.m24{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);}
.m25{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);}
.m23{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);}
.m2a{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);}
.m1a{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);}
.m29{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);}
.me{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);}
.m27{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);}
.m21{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);}
.m3{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);}
.m16{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);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m15{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);}
.m1{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);}
.ma{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);}
.m17{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);}
.m1c{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);}
.m12{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);}
.mc{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);}
.mb{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);}
.m7{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m8{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);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m11{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);}
.m1f{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);}
.m4{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);}
.m18{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);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.042000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.854000px;}
.v3{vertical-align:34.668000px;}
.v4{vertical-align:35.826000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.003857px;}
.lsb{letter-spacing:0.004200px;}
.lse{letter-spacing:0.005236px;}
.lsa{letter-spacing:2.674328px;}
.ls6{letter-spacing:2.680099px;}
.ls1{letter-spacing:2.987381px;}
.ls7{letter-spacing:5.095860px;}
.ls11{letter-spacing:9.469928px;}
.ls13{letter-spacing:9.475928px;}
.ls14{letter-spacing:9.666704px;}
.ls5{letter-spacing:10.844705px;}
.ls3{letter-spacing:11.225945px;}
.ls4{letter-spacing:11.249802px;}
.ls9{letter-spacing:11.289056px;}
.lsd{letter-spacing:14.107077px;}
.ls8{letter-spacing:15.025050px;}
.ls10{letter-spacing:16.976313px;}
.ls2{letter-spacing:41.846666px;}
.lsc{letter-spacing:273.144141px;}
.lsf{letter-spacing:378.624141px;}
.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;}
}
.ws153{word-spacing:-28.218936px;}
.ws8b{word-spacing:-15.359443px;}
.ws106{word-spacing:-14.208024px;}
.ws13f{word-spacing:-14.111859px;}
.ws178{word-spacing:-12.629429px;}
.ws183{word-spacing:-9.472072px;}
.ws154{word-spacing:-6.932803px;}
.ws141{word-spacing:-2.826197px;}
.wsfa{word-spacing:-2.716819px;}
.ws102{word-spacing:-2.493046px;}
.ws15f{word-spacing:-2.491453px;}
.wsf9{word-spacing:-2.394029px;}
.ws35{word-spacing:-2.248752px;}
.wsab{word-spacing:-2.017440px;}
.ws170{word-spacing:-1.917606px;}
.wsc9{word-spacing:-1.909843px;}
.wsfc{word-spacing:-1.694650px;}
.wsac{word-spacing:-1.587053px;}
.ws40{word-spacing:-1.482132px;}
.ws54{word-spacing:-1.073266px;}
.ws64{word-spacing:-0.995270px;}
.ws176{word-spacing:-0.961194px;}
.ws84{word-spacing:-0.941472px;}
.ws39{word-spacing:-0.919944px;}
.ws11d{word-spacing:-0.918929px;}
.ws10c{word-spacing:-0.904472px;}
.ws53{word-spacing:-0.834763px;}
.ws161{word-spacing:-0.794523px;}
.ws7b{word-spacing:-0.780077px;}
.ws117{word-spacing:-0.674270px;}
.wsfe{word-spacing:-0.672480px;}
.ws12b{word-spacing:-0.432985px;}
.ws2e{word-spacing:-0.357756px;}
.wsfd{word-spacing:-0.349690px;}
.ws43{word-spacing:-0.255540px;}
.ws119{word-spacing:-0.243885px;}
.ws7{word-spacing:-0.227148px;}
.ws4d{word-spacing:-0.198753px;}
.wsb{word-spacing:-0.181718px;}
.ws4c{word-spacing:-0.159002px;}
.ws37{word-spacing:-0.153324px;}
.ws112{word-spacing:-0.100423px;}
.wsaa{word-spacing:-0.080698px;}
.ws47{word-spacing:-0.079501px;}
.ws46{word-spacing:-0.068144px;}
.ws13e{word-spacing:-0.047821px;}
.wsa{word-spacing:-0.045430px;}
.ws12{word-spacing:-0.041843px;}
.ws4f{word-spacing:-0.039751px;}
.ws3{word-spacing:-0.035866px;}
.ws180{word-spacing:-0.034072px;}
.ws140{word-spacing:-0.004782px;}
.ws181{word-spacing:-0.002358px;}
.ws2{word-spacing:0.000000px;}
.ws189{word-spacing:0.003642px;}
.ws18d{word-spacing:0.034072px;}
.ws10{word-spacing:0.045430px;}
.ws18a{word-spacing:0.068144px;}
.ws4e{word-spacing:0.079501px;}
.ws101{word-spacing:0.080698px;}
.ws6{word-spacing:0.090859px;}
.ws41{word-spacing:0.102216px;}
.ws48{word-spacing:0.119252px;}
.ws187{word-spacing:0.136289px;}
.wsb0{word-spacing:0.159002px;}
.ws18c{word-spacing:0.170361px;}
.wsf{word-spacing:0.181718px;}
.wsaf{word-spacing:0.198753px;}
.ws3e{word-spacing:0.204432px;}
.ws185{word-spacing:0.204433px;}
.ws9{word-spacing:0.227148px;}
.wsb1{word-spacing:0.238504px;}
.ws85{word-spacing:0.242093px;}
.ws33{word-spacing:0.408864px;}
.ws4{word-spacing:0.408866px;}
.ws13d{word-spacing:0.569065px;}
.ws173{word-spacing:0.616886px;}
.ws5c{word-spacing:0.636010px;}
.ws146{word-spacing:0.664706px;}
.wsa1{word-spacing:0.672480px;}
.wsb2{word-spacing:0.675760px;}
.wsa5{word-spacing:0.780077px;}
.wsb4{word-spacing:0.833875px;}
.ws126{word-spacing:0.855989px;}
.ws8{word-spacing:0.863162px;}
.ws1f{word-spacing:0.887674px;}
.ws17e{word-spacing:0.903809px;}
.wsbb{word-spacing:0.941472px;}
.ws17d{word-spacing:1.095092px;}
.ws129{word-spacing:1.142912px;}
.ws175{word-spacing:1.190733px;}
.ws42{word-spacing:1.226592px;}
.ws12a{word-spacing:1.286374px;}
.wsd{word-spacing:1.317458px;}
.wse3{word-spacing:1.318061px;}
.wsa6{word-spacing:1.371859px;}
.ws36{word-spacing:1.431024px;}
.ws58{word-spacing:1.470772px;}
.ws6e{word-spacing:1.533254px;}
.ws62{word-spacing:1.694650px;}
.wse{word-spacing:1.726325px;}
.ws25{word-spacing:1.748448px;}
.ws10f{word-spacing:1.860221px;}
.ws9e{word-spacing:1.909843px;}
.ws6f{word-spacing:2.017440px;}
.ws70{word-spacing:2.071238px;}
.ws5{word-spacing:2.135191px;}
.ws1c{word-spacing:2.178835px;}
.wsc5{word-spacing:2.286432px;}
.ws13b{word-spacing:2.290607px;}
.ws172{word-spacing:2.338427px;}
.ws82{word-spacing:2.394029px;}
.ws114{word-spacing:2.434069px;}
.wse2{word-spacing:2.447827px;}
.ws5b{word-spacing:2.464537px;}
.ws110{word-spacing:2.481889px;}
.ws12e{word-spacing:2.529710px;}
.ws135{word-spacing:2.577530px;}
.ws45{word-spacing:2.623540px;}
.ws162{word-spacing:2.625351px;}
.ws71{word-spacing:2.663021px;}
.ws113{word-spacing:2.673172px;}
.ws89{word-spacing:2.716819px;}
.ws127{word-spacing:2.768813px;}
.ws75{word-spacing:2.770618px;}
.ws11c{word-spacing:2.816633px;}
.ws1e{word-spacing:2.824416px;}
.ws155{word-spacing:2.864454px;}
.ws2b{word-spacing:2.878214px;}
.ws10e{word-spacing:2.912275px;}
.ws5f{word-spacing:2.932013px;}
.ws11a{word-spacing:2.960095px;}
.ws13{word-spacing:2.985811px;}
.ws115{word-spacing:3.007916px;}
.ws16{word-spacing:3.039610px;}
.ws128{word-spacing:3.055736px;}
.ws1b{word-spacing:3.093408px;}
.ws158{word-spacing:3.103557px;}
.ws1a{word-spacing:3.147206px;}
.ws12c{word-spacing:3.151378px;}
.ws60{word-spacing:3.201005px;}
.ws118{word-spacing:3.247019px;}
.wsd6{word-spacing:3.254803px;}
.ws78{word-spacing:3.308602px;}
.ws18{word-spacing:3.362400px;}
.ws6c{word-spacing:3.416198px;}
.ws63{word-spacing:3.469997px;}
.wsa0{word-spacing:3.523795px;}
.ws34{word-spacing:3.526452px;}
.ws171{word-spacing:3.533942px;}
.ws55{word-spacing:3.537803px;}
.ws8a{word-spacing:3.577594px;}
.ws159{word-spacing:3.629584px;}
.ws7a{word-spacing:3.631392px;}
.ws11f{word-spacing:3.677404px;}
.wsc6{word-spacing:3.738989px;}
.ws18b{word-spacing:3.745486px;}
.ws18e{word-spacing:3.745724px;}
.ws49{word-spacing:3.816058px;}
.ws73{word-spacing:3.846586px;}
.ws5a{word-spacing:3.855808px;}
.ws26{word-spacing:3.954182px;}
.ws16d{word-spacing:3.964328px;}
.wscd{word-spacing:4.007981px;}
.ws94{word-spacing:4.061779px;}
.ws3d{word-spacing:4.088640px;}
.ws17f{word-spacing:4.107790px;}
.ws164{word-spacing:4.155610px;}
.wsee{word-spacing:4.169376px;}
.ws131{word-spacing:4.203431px;}
.ws100{word-spacing:4.223174px;}
.ws15d{word-spacing:4.299072px;}
.ws12f{word-spacing:4.346893px;}
.ws7f{word-spacing:4.384570px;}
.wsc{word-spacing:4.406671px;}
.ws147{word-spacing:4.490354px;}
.ws97{word-spacing:4.492166px;}
.ws59{word-spacing:4.531568px;}
.ws9c{word-spacing:4.545965px;}
.ws3f{word-spacing:4.650828px;}
.ws72{word-spacing:4.653562px;}
.ws9f{word-spacing:4.707360px;}
.ws2a{word-spacing:4.922554px;}
.ws13a{word-spacing:5.016381px;}
.wsec{word-spacing:5.191546px;}
.ws15e{word-spacing:5.207663px;}
.ws6a{word-spacing:5.245344px;}
.ws17c{word-spacing:5.255484px;}
.ws111{word-spacing:5.303305px;}
.ws30{word-spacing:5.315232px;}
.ws4b{word-spacing:5.326580px;}
.ws74{word-spacing:5.352941px;}
.wsc1{word-spacing:5.406739px;}
.ws32{word-spacing:5.417448px;}
.wsc0{word-spacing:5.460538px;}
.ws13c{word-spacing:5.590228px;}
.ws99{word-spacing:5.621933px;}
.ws65{word-spacing:5.675731px;}
.ws16c{word-spacing:5.733690px;}
.ws61{word-spacing:5.783328px;}
.ws51{word-spacing:5.883089px;}
.ws28{word-spacing:5.890925px;}
.ws16f{word-spacing:5.924972px;}
.ws122{word-spacing:6.020614px;}
.ws98{word-spacing:6.052320px;}
.ws121{word-spacing:6.068434px;}
.ws157{word-spacing:6.116255px;}
.ws9b{word-spacing:6.213715px;}
.wse0{word-spacing:6.267514px;}
.ws15b{word-spacing:6.307537px;}
.ws22{word-spacing:6.321312px;}
.ws167{word-spacing:6.355358px;}
.ws14b{word-spacing:6.403178px;}
.ws66{word-spacing:6.428909px;}
.ws166{word-spacing:6.450999px;}
.wsb8{word-spacing:6.536506px;}
.ws16a{word-spacing:6.546640px;}
.ws1d{word-spacing:6.590304px;}
.ws124{word-spacing:6.594461px;}
.ws160{word-spacing:6.642281px;}
.ws125{word-spacing:6.690102px;}
.wsa4{word-spacing:6.697901px;}
.ws38{word-spacing:6.746256px;}
.wsbc{word-spacing:6.751699px;}
.ws57{word-spacing:6.797353px;}
.ws86{word-spacing:6.859296px;}
.ws29{word-spacing:6.913094px;}
.ws169{word-spacing:6.929205px;}
.ws19{word-spacing:6.966893px;}
.ws152{word-spacing:7.009974px;}
.ws15{word-spacing:7.020691px;}
.ws145{word-spacing:7.072667px;}
.ws14c{word-spacing:7.120487px;}
.ws23{word-spacing:7.182086px;}
.ws14e{word-spacing:7.263949px;}
.wsf6{word-spacing:7.289683px;}
.ws88{word-spacing:7.343482px;}
.ws138{word-spacing:7.359590px;}
.ws50{word-spacing:7.393612px;}
.wsb5{word-spacing:7.397280px;}
.ws142{word-spacing:7.407411px;}
.wsb6{word-spacing:7.451078px;}
.ws133{word-spacing:7.455232px;}
.ws120{word-spacing:7.503052px;}
.wsf7{word-spacing:7.504877px;}
.ws103{word-spacing:7.720070px;}
.wsef{word-spacing:7.773869px;}
.ws14d{word-spacing:7.789976px;}
.wsb7{word-spacing:7.827667px;}
.ws24{word-spacing:7.881466px;}
.ws76{word-spacing:7.935264px;}
.ws136{word-spacing:7.950180px;}
.ws163{word-spacing:7.981258px;}
.ws27{word-spacing:7.989062px;}
.ws130{word-spacing:8.029079px;}
.wsc4{word-spacing:8.096659px;}
.ws15c{word-spacing:8.172541px;}
.wsd2{word-spacing:8.204256px;}
.wsba{word-spacing:8.258054px;}
.ws11b{word-spacing:8.316002px;}
.wsf0{word-spacing:8.365651px;}
.ws12d{word-spacing:8.459464px;}
.ws6b{word-spacing:8.473248px;}
.wsf2{word-spacing:8.527046px;}
.wsa9{word-spacing:8.580845px;}
.ws21{word-spacing:8.688442px;}
.ws8c{word-spacing:8.742240px;}
.ws3b{word-spacing:8.790576px;}
.ws179{word-spacing:8.842029px;}
.ws95{word-spacing:8.903635px;}
.wsea{word-spacing:8.957434px;}
.ws2d{word-spacing:9.011232px;}
.ws139{word-spacing:9.033311px;}
.wsf8{word-spacing:9.065030px;}
.ws168{word-spacing:9.081132px;}
.ws17{word-spacing:9.172627px;}
.wsc7{word-spacing:9.280224px;}
.ws96{word-spacing:9.387821px;}
.ws182{word-spacing:9.437999px;}
.ws18f{word-spacing:9.506144px;}
.ws188{word-spacing:9.574288px;}
.ws52{word-spacing:9.579895px;}
.ws14f{word-spacing:9.607159px;}
.ws186{word-spacing:9.608360px;}
.wsde{word-spacing:9.656813px;}
.wsa2{word-spacing:9.710611px;}
.wscb{word-spacing:9.764410px;}
.wscc{word-spacing:9.818208px;}
.ws69{word-spacing:9.872006px;}
.ws149{word-spacing:9.894082px;}
.ws7d{word-spacing:9.925805px;}
.ws14a{word-spacing:9.941903px;}
.wsf5{word-spacing:9.979603px;}
.wse6{word-spacing:10.033402px;}
.wsbd{word-spacing:10.087200px;}
.ws184{word-spacing:10.169056px;}
.ws16e{word-spacing:10.276647px;}
.wsd7{word-spacing:10.302394px;}
.ws151{word-spacing:10.372288px;}
.ws137{word-spacing:10.420109px;}
.wse4{word-spacing:10.571386px;}
.ws10a{word-spacing:10.678982px;}
.ws14{word-spacing:10.732781px;}
.ws20{word-spacing:10.947974px;}
.ws5e{word-spacing:11.010916px;}
.ws150{word-spacing:11.089597px;}
.ws31{word-spacing:11.090436px;}
.wsc8{word-spacing:11.270765px;}
.ws2c{word-spacing:11.432160px;}
.ws165{word-spacing:11.472162px;}
.ws79{word-spacing:11.485958px;}
.ws11e{word-spacing:11.519983px;}
.ws77{word-spacing:11.539757px;}
.wsd9{word-spacing:11.647354px;}
.wsd5{word-spacing:11.754950px;}
.ws8d{word-spacing:11.808749px;}
.wsa7{word-spacing:11.970144px;}
.ws143{word-spacing:11.998189px;}
.ws144{word-spacing:12.046009px;}
.wsc3{word-spacing:12.077741px;}
.ws156{word-spacing:12.093830px;}
.ws132{word-spacing:12.141650px;}
.ws83{word-spacing:12.185338px;}
.ws148{word-spacing:12.237292px;}
.ws90{word-spacing:12.292934px;}
.wsa3{word-spacing:12.346733px;}
.ws2f{word-spacing:12.368136px;}
.wsed{word-spacing:12.454330px;}
.wsf3{word-spacing:12.508128px;}
.wsf4{word-spacing:12.561926px;}
.ws116{word-spacing:12.572036px;}
.ws6d{word-spacing:12.606714px;}
.wsff{word-spacing:12.615725px;}
.ws10d{word-spacing:12.667677px;}
.wsa8{word-spacing:12.669523px;}
.ws68{word-spacing:12.723322px;}
.ws190{word-spacing:12.844583px;}
.ws16b{word-spacing:12.906780px;}
.ws67{word-spacing:13.207507px;}
.ws107{word-spacing:13.368902px;}
.ws105{word-spacing:13.406690px;}
.wsca{word-spacing:13.422701px;}
.ws81{word-spacing:13.584096px;}
.ws9d{word-spacing:13.906886px;}
.ws10b{word-spacing:13.960685px;}
.ws92{word-spacing:14.229677px;}
.wse7{word-spacing:14.337274px;}
.ws8e{word-spacing:14.552467px;}
.wse8{word-spacing:14.767661px;}
.ws15a{word-spacing:14.771783px;}
.wse1{word-spacing:14.875258px;}
.ws93{word-spacing:15.036653px;}
.ws9a{word-spacing:15.144250px;}
.wsfb{word-spacing:15.467040px;}
.ws80{word-spacing:15.520838px;}
.ws17a{word-spacing:15.938836px;}
.ws17b{word-spacing:15.967298px;}
.ws56{word-spacing:16.019492px;}
.wseb{word-spacing:16.220218px;}
.ws123{word-spacing:16.254222px;}
.ws3c{word-spacing:16.507884px;}
.wsd8{word-spacing:16.596806px;}
.ws3a{word-spacing:16.916748px;}
.wsb9{word-spacing:16.919597px;}
.ws104{word-spacing:16.973395px;}
.ws134{word-spacing:17.067172px;}
.wsce{word-spacing:17.995565px;}
.ws11{word-spacing:18.494518px;}
.wsd3{word-spacing:18.587347px;}
.wsbf{word-spacing:18.802541px;}
.ws5d{word-spacing:18.834233px;}
.wsd1{word-spacing:19.017734px;}
.wsdf{word-spacing:19.663315px;}
.wse9{word-spacing:19.932307px;}
.wsf1{word-spacing:20.308896px;}
.ws91{word-spacing:20.846880px;}
.wsc2{word-spacing:20.900678px;}
.ws8f{word-spacing:21.707654px;}
.wsd0{word-spacing:21.815251px;}
.wsdd{word-spacing:21.869050px;}
.ws109{word-spacing:22.622227px;}
.ws108{word-spacing:23.781368px;}
.wscf{word-spacing:24.881760px;}
.wsda{word-spacing:25.688736px;}
.wsbe{word-spacing:26.011526px;}
.wsd4{word-spacing:27.571680px;}
.ws4a{word-spacing:28.779434px;}
.wsdb{word-spacing:29.400826px;}
.ws87{word-spacing:30.154003px;}
.ws7c{word-spacing:30.369197px;}
.wsdc{word-spacing:30.530592px;}
.ws44{word-spacing:30.766964px;}
.wsad{word-spacing:30.778468px;}
.ws177{word-spacing:30.792666px;}
.wsae{word-spacing:30.806715px;}
.ws7e{word-spacing:31.014778px;}
.wse5{word-spacing:40.913683px;}
.ws174{word-spacing:43.929623px;}
.ws0{word-spacing:47.999982px;}
.ws1{word-spacing:48.131489px;}
.wsb3{word-spacing:672.667171px;}
._3a{margin-left:-32.952754px;}
._3c{margin-left:-25.966586px;}
._3e{margin-left:-24.221100px;}
._3d{margin-left:-22.631597px;}
._39{margin-left:-13.730374px;}
._c{margin-left:-5.309675px;}
._0{margin-left:-3.813697px;}
._8{margin-left:-2.474746px;}
._3{margin-left:-1.022160px;}
._b{width:1.196042px;}
._2{width:2.223405px;}
._1{width:3.945204px;}
._3f{width:11.028041px;}
._18{width:12.719045px;}
._14{width:14.536234px;}
._4{width:16.059358px;}
._13{width:17.217839px;}
._5{width:18.671566px;}
._11{width:19.744032px;}
._7{width:21.306482px;}
._1a{width:22.415457px;}
._9{width:23.509901px;}
._d{width:24.908659px;}
._1e{width:26.845402px;}
._12{width:28.070287px;}
._6{width:29.302092px;}
._35{width:30.342298px;}
._34{width:31.472064px;}
._25{width:32.494234px;}
._21{width:33.605533px;}
._f{width:34.968960px;}
._a{width:36.457644px;}
._23{width:38.011809px;}
._1d{width:39.272851px;}
._10{width:40.456416px;}
._17{width:41.870404px;}
._37{width:43.295235px;}
._27{width:44.760259px;}
._1f{width:45.782438px;}
._32{width:46.858406px;}
._33{width:48.513660px;}
._e{width:49.602173px;}
._38{width:51.269875px;}
._24{width:52.763753px;}
._1c{width:54.121190px;}
._1b{width:55.668867px;}
._22{width:57.067625px;}
._36{width:59.972739px;}
._26{width:61.204928px;}
._20{width:62.286060px;}
._15{width:68.536831px;}
._31{width:74.398395px;}
._2b{width:91.451359px;}
._2f{width:182.652235px;}
._30{width:293.529514px;}
._29{width:343.921613px;}
._2d{width:345.618288px;}
._2c{width:378.684750px;}
._2a{width:436.672337px;}
._2e{width:474.319752px;}
._16{width:823.273529px;}
._40{width:1481.488699px;}
._28{width:1503.592699px;}
._3b{width:1650.233478px;}
._19{width:1672.331478px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,101,165);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(229,229,229);}
.fsc{font-size:28.393200px;}
.fsb{font-size:29.887800px;}
.fs1{font-size:34.072200px;}
.fs4{font-size:35.865600px;}
.fs5{font-size:39.750600px;}
.fs7{font-size:41.842800px;}
.fsd{font-size:42.590400px;}
.fs6{font-size:45.429600px;}
.fse{font-size:47.820600px;}
.fs3{font-size:51.108000px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.787000px;}
.fs2{font-size:131.506800px;}
.fs8{font-size:155.417400px;}
.fs0{font-size:510.224291px;}
.y0{bottom:0.000000px;}
.ya3{bottom:54.570000px;}
.y17a{bottom:72.519000px;}
.y179{bottom:85.969500px;}
.ye1{bottom:87.829500px;}
.yf6{bottom:87.831000px;}
.y88{bottom:91.930500px;}
.y3f{bottom:92.313000px;}
.y50{bottom:92.314500px;}
.y17d{bottom:93.807000px;}
.y1bb{bottom:94.077000px;}
.y178{bottom:99.418500px;}
.y29e{bottom:103.885500px;}
.ye0{bottom:104.194500px;}
.y1e5{bottom:105.379500px;}
.y16e{bottom:106.779000px;}
.y17c{bottom:107.256000px;}
.y87{bottom:108.294000px;}
.y3e{bottom:108.676500px;}
.y4f{bottom:108.678000px;}
.y1ba{bottom:110.440500px;}
.y177{bottom:112.867500px;}
.y29d{bottom:115.840500px;}
.y1e4{bottom:118.830000px;}
.ydf{bottom:120.558000px;}
.y17b{bottom:120.705000px;}
.y16d{bottom:123.142500px;}
.y86{bottom:124.657500px;}
.y3d{bottom:125.040000px;}
.y4e{bottom:125.041500px;}
.y1b9{bottom:126.804000px;}
.y29c{bottom:127.795500px;}
.y1e3{bottom:132.279000px;}
.yde{bottom:136.921500px;}
.y16c{bottom:139.507500px;}
.y29b{bottom:139.752000px;}
.y85{bottom:141.021000px;}
.y3c{bottom:141.405000px;}
.y1b8{bottom:143.167500px;}
.y1e2{bottom:145.729500px;}
.y29a{bottom:151.707000px;}
.ydd{bottom:153.285000px;}
.y16b{bottom:155.871000px;}
.y84{bottom:157.384500px;}
.y3b{bottom:157.768500px;}
.y1e1{bottom:159.178500px;}
.y1b7{bottom:159.531000px;}
.y299{bottom:163.662000px;}
.ydc{bottom:169.648500px;}
.y16a{bottom:172.234500px;}
.y1e0{bottom:172.627500px;}
.y83{bottom:173.748000px;}
.y3a{bottom:174.132000px;}
.y298{bottom:175.617000px;}
.y1b6{bottom:175.896000px;}
.y171{bottom:179.982000px;}
.y176{bottom:180.456000px;}
.ydb{bottom:186.012000px;}
.y1df{bottom:186.078000px;}
.y297{bottom:187.572000px;}
.y169{bottom:188.598000px;}
.y82{bottom:190.113000px;}
.y39{bottom:190.495500px;}
.y1b5{bottom:192.259500px;}
.y170{bottom:193.432500px;}
.y175{bottom:193.906500px;}
.y1de{bottom:199.527000px;}
.yda{bottom:202.375500px;}
.y168{bottom:204.961500px;}
.y81{bottom:206.476500px;}
.y38{bottom:206.859000px;}
.y16f{bottom:206.881500px;}
.y174{bottom:207.355500px;}
.y296{bottom:211.482000px;}
.y1dd{bottom:212.976000px;}
.yd9{bottom:218.739000px;}
.y173{bottom:220.804500px;}
.y167{bottom:221.325000px;}
.y80{bottom:222.840000px;}
.y37{bottom:223.222500px;}
.y295{bottom:223.437000px;}
.y1b4{bottom:224.986500px;}
.y1dc{bottom:226.426500px;}
.y172{bottom:234.255000px;}
.yd8{bottom:235.102500px;}
.yf5{bottom:235.104000px;}
.y294{bottom:235.392000px;}
.y166{bottom:237.688500px;}
.y7f{bottom:239.203500px;}
.y36{bottom:239.586000px;}
.y1db{bottom:239.875500px;}
.y1b3{bottom:241.350000px;}
.y257{bottom:244.654500px;}
.y293{bottom:247.348500px;}
.yd7{bottom:251.466000px;}
.yf4{bottom:251.467500px;}
.y220{bottom:253.326000px;}
.y165{bottom:254.052000px;}
.y7e{bottom:255.567000px;}
.y35{bottom:255.949500px;}
.y1b2{bottom:257.713500px;}
.y292{bottom:259.303500px;}
.y256{bottom:261.018000px;}
.y1da{bottom:263.637000px;}
.y21f{bottom:266.775000px;}
.yd6{bottom:267.829500px;}
.yf3{bottom:267.831000px;}
.y164{bottom:270.415500px;}
.y291{bottom:271.258500px;}
.y7d{bottom:271.930500px;}
.y34{bottom:272.313000px;}
.y1b1{bottom:274.077000px;}
.y255{bottom:277.381500px;}
.y134{bottom:277.644000px;}
.y21e{bottom:280.224000px;}
.y290{bottom:283.213500px;}
.yd5{bottom:284.193000px;}
.yf2{bottom:284.194500px;}
.y163{bottom:286.779000px;}
.y7c{bottom:288.294000px;}
.y33{bottom:288.676500px;}
.y4d{bottom:288.678000px;}
.y1b0{bottom:290.440500px;}
.y21d{bottom:293.674500px;}
.y254{bottom:293.746500px;}
.y28f{bottom:295.168500px;}
.yd4{bottom:300.558000px;}
.y162{bottom:303.142500px;}
.y7b{bottom:304.657500px;}
.y32{bottom:305.040000px;}
.y4c{bottom:305.041500px;}
.y1d9{bottom:306.670500px;}
.y1af{bottom:306.804000px;}
.y21c{bottom:307.123500px;}
.y253{bottom:310.110000px;}
.yd3{bottom:316.921500px;}
.y28e{bottom:319.078500px;}
.y161{bottom:319.507500px;}
.y21b{bottom:320.572500px;}
.y7a{bottom:321.021000px;}
.y31{bottom:321.403500px;}
.y4b{bottom:321.405000px;}
.y1ae{bottom:323.167500px;}
.y252{bottom:326.473500px;}
.y28d{bottom:331.033500px;}
.yd2{bottom:333.285000px;}
.y21a{bottom:334.023000px;}
.y160{bottom:335.871000px;}
.y79{bottom:337.384500px;}
.y30{bottom:337.768500px;}
.y1ad{bottom:339.531000px;}
.y1d8{bottom:342.645000px;}
.y251{bottom:342.837000px;}
.y28c{bottom:342.988500px;}
.y219{bottom:347.472000px;}
.yd1{bottom:349.648500px;}
.y15f{bottom:352.234500px;}
.y78{bottom:353.748000px;}
.y2f{bottom:354.132000px;}
.y28b{bottom:354.945000px;}
.y1ac{bottom:355.896000px;}
.y1d7{bottom:359.008500px;}
.y250{bottom:359.200500px;}
.y218{bottom:360.922500px;}
.yd0{bottom:366.012000px;}
.y28a{bottom:366.900000px;}
.y15e{bottom:368.598000px;}
.y77{bottom:370.113000px;}
.y2e{bottom:370.495500px;}
.y1ab{bottom:372.259500px;}
.y217{bottom:374.371500px;}
.y1d6{bottom:375.372000px;}
.y24f{bottom:375.564000px;}
.y289{bottom:378.855000px;}
.ycf{bottom:382.375500px;}
.y15d{bottom:384.961500px;}
.y76{bottom:386.476500px;}
.y2d{bottom:386.859000px;}
.y216{bottom:387.820500px;}
.y1aa{bottom:388.623000px;}
.y288{bottom:390.810000px;}
.y1d5{bottom:391.735500px;}
.y24e{bottom:391.927500px;}
.yce{bottom:398.739000px;}
.y15c{bottom:401.325000px;}
.y287{bottom:402.765000px;}
.y75{bottom:402.840000px;}
.y2c{bottom:403.222500px;}
.y1d4{bottom:408.099000px;}
.y11a{bottom:408.232500px;}
.y24d{bottom:408.291000px;}
.y215{bottom:411.294000px;}
.y286{bottom:414.720000px;}
.ycd{bottom:415.102500px;}
.y1bc{bottom:417.688500px;}
.y74{bottom:419.203500px;}
.y2b{bottom:419.586000px;}
.y1{bottom:419.742000px;}
.y119{bottom:420.187500px;}
.y1a9{bottom:421.350000px;}
.y1d3{bottom:424.462500px;}
.y24c{bottom:424.654500px;}
.y118{bottom:424.698000px;}
.y285{bottom:426.675000px;}
.y214{bottom:429.226500px;}
.ycc{bottom:431.466000px;}
.yf1{bottom:431.467500px;}
.y15b{bottom:434.052000px;}
.y73{bottom:435.567000px;}
.y2a{bottom:435.949500px;}
.y1a8{bottom:437.713500px;}
.y284{bottom:438.630000px;}
.y1d2{bottom:440.826000px;}
.y24b{bottom:441.018000px;}
.y117{bottom:441.136500px;}
.ycb{bottom:447.829500px;}
.yf0{bottom:447.831000px;}
.y15a{bottom:450.415500px;}
.y283{bottom:450.585000px;}
.y213{bottom:451.437000px;}
.y72{bottom:451.930500px;}
.y29{bottom:452.313000px;}
.y116{bottom:453.064500px;}
.y1a7{bottom:454.077000px;}
.y1d1{bottom:457.189500px;}
.y24a{bottom:457.381500px;}
.y282{bottom:462.541500px;}
.yca{bottom:464.193000px;}
.yef{bottom:464.194500px;}
.y212{bottom:464.887500px;}
.y159{bottom:466.779000px;}
.y71{bottom:468.294000px;}
.y28{bottom:468.676500px;}
.y115{bottom:469.503000px;}
.y1a6{bottom:470.440500px;}
.y1d0{bottom:473.553000px;}
.y249{bottom:473.746500px;}
.y281{bottom:474.496500px;}
.y211{bottom:478.336500px;}
.yc9{bottom:480.556500px;}
.yee{bottom:480.558000px;}
.y114{bottom:481.458000px;}
.y158{bottom:483.142500px;}
.y70{bottom:484.657500px;}
.y27{bottom:485.040000px;}
.y4a{bottom:485.041500px;}
.y280{bottom:486.451500px;}
.y1a5{bottom:486.804000px;}
.y248{bottom:490.110000px;}
.y210{bottom:491.785500px;}
.y113{bottom:493.413000px;}
.yc8{bottom:496.921500px;}
.y27f{bottom:498.406500px;}
.y157{bottom:499.506000px;}
.y6f{bottom:501.021000px;}
.y26{bottom:501.403500px;}
.y49{bottom:501.405000px;}
.y1a4{bottom:503.167500px;}
.y1cf{bottom:505.005000px;}
.y20f{bottom:505.236000px;}
.y112{bottom:505.368000px;}
.y247{bottom:506.473500px;}
.y27e{bottom:510.361500px;}
.yc7{bottom:513.285000px;}
.y156{bottom:515.871000px;}
.y111{bottom:517.323000px;}
.y6e{bottom:517.384500px;}
.y25{bottom:517.767000px;}
.y48{bottom:517.768500px;}
.y20e{bottom:518.685000px;}
.y1a3{bottom:519.531000px;}
.y1ce{bottom:521.368500px;}
.ya2{bottom:521.700000px;}
.y27d{bottom:522.316500px;}
.y246{bottom:522.837000px;}
.y110{bottom:529.279500px;}
.yc6{bottom:529.648500px;}
.y20d{bottom:532.135500px;}
.y155{bottom:532.234500px;}
.y6d{bottom:533.748000px;}
.y24{bottom:534.132000px;}
.y27c{bottom:534.271500px;}
.y1a2{bottom:535.894500px;}
.y1cd{bottom:537.732000px;}
.ya1{bottom:538.063500px;}
.y245{bottom:539.200500px;}
.y10f{bottom:541.234500px;}
.y20c{bottom:545.584500px;}
.yc5{bottom:546.012000px;}
.y27b{bottom:546.226500px;}
.y154{bottom:548.598000px;}
.y196{bottom:550.111500px;}
.y6c{bottom:550.113000px;}
.y23{bottom:550.495500px;}
.y1a1{bottom:552.259500px;}
.y10e{bottom:553.189500px;}
.y1cc{bottom:554.097000px;}
.ya0{bottom:554.427000px;}
.y244{bottom:555.564000px;}
.y27a{bottom:558.181500px;}
.y20b{bottom:559.033500px;}
.yc4{bottom:562.375500px;}
.y153{bottom:564.961500px;}
.y10d{bottom:565.144500px;}
.y6b{bottom:566.476500px;}
.y22{bottom:566.859000px;}
.y1a0{bottom:568.623000px;}
.y279{bottom:570.138000px;}
.y1cb{bottom:570.460500px;}
.y9f{bottom:570.790500px;}
.y243{bottom:571.927500px;}
.y20a{bottom:572.484000px;}
.y10c{bottom:577.099500px;}
.yc3{bottom:578.739000px;}
.y152{bottom:581.325000px;}
.y278{bottom:582.093000px;}
.y6a{bottom:582.840000px;}
.y21{bottom:583.222500px;}
.y19f{bottom:584.986500px;}
.y1ca{bottom:586.824000px;}
.y9e{bottom:587.155500px;}
.y242{bottom:588.291000px;}
.y277{bottom:594.048000px;}
.yc2{bottom:595.102500px;}
.y151{bottom:597.688500px;}
.y69{bottom:599.203500px;}
.y20{bottom:599.586000px;}
.y209{bottom:601.059000px;}
.y19e{bottom:601.350000px;}
.y1c9{bottom:603.187500px;}
.y9d{bottom:603.519000px;}
.y241{bottom:604.654500px;}
.y276{bottom:606.003000px;}
.yc1{bottom:611.466000px;}
.y150{bottom:614.052000px;}
.y208{bottom:614.509500px;}
.y68{bottom:615.567000px;}
.y1f{bottom:615.949500px;}
.y66{bottom:616.720500px;}
.y19d{bottom:617.713500px;}
.y275{bottom:617.958000px;}
.y1c8{bottom:619.551000px;}
.y9c{bottom:619.882500px;}
.y240{bottom:621.018000px;}
.y10b{bottom:624.811500px;}
.yc0{bottom:627.829500px;}
.yed{bottom:627.831000px;}
.y207{bottom:627.958500px;}
.y274{bottom:629.913000px;}
.y14f{bottom:630.415500px;}
.y67{bottom:631.930500px;}
.y1e{bottom:632.313000px;}
.y1c7{bottom:635.914500px;}
.y9b{bottom:636.246000px;}
.y10a{bottom:636.766500px;}
.y23f{bottom:637.381500px;}
.y206{bottom:641.407500px;}
.y273{bottom:641.868000px;}
.ybf{bottom:644.193000px;}
.yec{bottom:644.194500px;}
.y14e{bottom:646.779000px;}
.y195{bottom:648.294000px;}
.y1d{bottom:648.676500px;}
.y108{bottom:648.721500px;}
.y19c{bottom:650.440500px;}
.y1c6{bottom:652.278000px;}
.y9a{bottom:652.609500px;}
.y109{bottom:653.232000px;}
.y23e{bottom:653.745000px;}
.y272{bottom:653.823000px;}
.y205{bottom:654.858000px;}
.y133{bottom:655.765500px;}
.ybe{bottom:660.556500px;}
.yeb{bottom:660.558000px;}
.y107{bottom:660.678000px;}
.y14d{bottom:663.142500px;}
.y194{bottom:664.657500px;}
.y1c{bottom:665.040000px;}
.y65{bottom:665.164500px;}
.y271{bottom:665.778000px;}
.y19b{bottom:666.804000px;}
.y204{bottom:668.307000px;}
.y1c5{bottom:668.641500px;}
.y99{bottom:668.973000px;}
.y23d{bottom:670.110000px;}
.y105{bottom:672.633000px;}
.ybd{bottom:676.920000px;}
.yea{bottom:676.921500px;}
.y106{bottom:677.142000px;}
.y270{bottom:677.734500px;}
.y14c{bottom:679.506000px;}
.y193{bottom:681.021000px;}
.y1b{bottom:681.403500px;}
.y47{bottom:681.405000px;}
.y64{bottom:681.528000px;}
.y203{bottom:681.757500px;}
.y19a{bottom:683.167500px;}
.y104{bottom:684.588000px;}
.y1c4{bottom:685.005000px;}
.y98{bottom:685.336500px;}
.y23c{bottom:686.473500px;}
.y26f{bottom:689.689500px;}
.ybc{bottom:693.285000px;}
.y202{bottom:695.206500px;}
.y14b{bottom:695.871000px;}
.y102{bottom:696.543000px;}
.y1a{bottom:697.767000px;}
.y46{bottom:697.768500px;}
.y199{bottom:699.531000px;}
.y103{bottom:701.052000px;}
.y1c3{bottom:701.368500px;}
.y26e{bottom:701.644500px;}
.y97{bottom:701.700000px;}
.y23b{bottom:702.837000px;}
.y192{bottom:704.857500px;}
.y100{bottom:708.498000px;}
.y201{bottom:708.655500px;}
.y132{bottom:709.618500px;}
.ybb{bottom:709.648500px;}
.y14a{bottom:712.234500px;}
.y101{bottom:713.008500px;}
.y26d{bottom:713.599500px;}
.y19{bottom:714.130500px;}
.y45{bottom:714.132000px;}
.y198{bottom:715.894500px;}
.y1c2{bottom:717.732000px;}
.y96{bottom:718.063500px;}
.y23a{bottom:719.200500px;}
.yff{bottom:720.453000px;}
.y63{bottom:721.809000px;}
.y200{bottom:722.106000px;}
.y26c{bottom:725.554500px;}
.y131{bottom:725.982000px;}
.yba{bottom:726.012000px;}
.y149{bottom:728.598000px;}
.y2bb{bottom:729.942000px;}
.y18{bottom:730.495500px;}
.y197{bottom:732.259500px;}
.yfe{bottom:732.408000px;}
.y1c1{bottom:734.095500px;}
.y95{bottom:734.427000px;}
.y1ff{bottom:735.555000px;}
.y239{bottom:735.564000px;}
.yfd{bottom:736.918500px;}
.y26b{bottom:737.509500px;}
.y62{bottom:738.247500px;}
.y2ba{bottom:741.897000px;}
.y130{bottom:742.345500px;}
.yb9{bottom:742.375500px;}
.yfc{bottom:744.363000px;}
.y148{bottom:744.961500px;}
.y17{bottom:746.859000px;}
.y191{bottom:748.623000px;}
.y1fe{bottom:749.004000px;}
.y26a{bottom:749.464500px;}
.y1c0{bottom:750.460500px;}
.y94{bottom:750.790500px;}
.y2b9{bottom:753.853500px;}
.y61{bottom:754.684500px;}
.yfb{bottom:756.319500px;}
.y12f{bottom:758.709000px;}
.yb8{bottom:758.739000px;}
.y147{bottom:761.325000px;}
.y269{bottom:761.419500px;}
.y1fd{bottom:762.454500px;}
.y16{bottom:763.222500px;}
.y238{bottom:763.270500px;}
.y190{bottom:764.986500px;}
.y2b8{bottom:765.808500px;}
.y1bf{bottom:766.824000px;}
.y93{bottom:767.155500px;}
.yf9{bottom:768.274500px;}
.y60{bottom:771.123000px;}
.yfa{bottom:772.783500px;}
.y268{bottom:773.374500px;}
.y12e{bottom:775.072500px;}
.yb7{bottom:775.102500px;}
.y237{bottom:776.719500px;}
.y146{bottom:777.688500px;}
.y2b7{bottom:777.763500px;}
.y15{bottom:779.586000px;}
.yf7{bottom:780.229500px;}
.y18f{bottom:781.350000px;}
.y1be{bottom:783.187500px;}
.y92{bottom:783.519000px;}
.yf8{bottom:784.738500px;}
.y267{bottom:785.331000px;}
.y5f{bottom:787.561500px;}
.y2b6{bottom:789.718500px;}
.y236{bottom:790.170000px;}
.y1fc{bottom:791.029500px;}
.y12d{bottom:791.437500px;}
.yb6{bottom:791.466000px;}
.y145{bottom:794.052000px;}
.y14{bottom:795.949500px;}
.y266{bottom:797.286000px;}
.y18e{bottom:797.713500px;}
.y91{bottom:799.882500px;}
.y2b5{bottom:801.673500px;}
.y235{bottom:803.619000px;}
.y5e{bottom:804.000000px;}
.y1fb{bottom:804.480000px;}
.y1bd{bottom:807.022500px;}
.y12c{bottom:807.801000px;}
.yb5{bottom:807.829500px;}
.y265{bottom:809.241000px;}
.y144{bottom:810.415500px;}
.y13{bottom:812.313000px;}
.y2b4{bottom:813.628500px;}
.y18d{bottom:814.077000px;}
.y90{bottom:816.246000px;}
.y234{bottom:817.068000px;}
.y1fa{bottom:817.929000px;}
.y5d{bottom:820.438500px;}
.y264{bottom:821.196000px;}
.y12b{bottom:824.164500px;}
.yb4{bottom:824.193000px;}
.ye9{bottom:824.194500px;}
.y2b3{bottom:825.583500px;}
.y143{bottom:826.779000px;}
.y12{bottom:828.676500px;}
.y18c{bottom:830.440500px;}
.y233{bottom:830.518500px;}
.y1f9{bottom:831.379500px;}
.y8f{bottom:832.609500px;}
.y263{bottom:833.151000px;}
.y5c{bottom:836.877000px;}
.y2b2{bottom:837.538500px;}
.y12a{bottom:840.528000px;}
.yb3{bottom:840.556500px;}
.ye8{bottom:840.558000px;}
.y142{bottom:843.142500px;}
.y232{bottom:843.967500px;}
.y1f8{bottom:844.828500px;}
.y11{bottom:845.040000px;}
.y262{bottom:845.106000px;}
.y18b{bottom:846.804000px;}
.y8e{bottom:848.973000px;}
.y2b1{bottom:849.493500px;}
.y5b{bottom:853.315500px;}
.y129{bottom:856.891500px;}
.yb2{bottom:856.920000px;}
.ye7{bottom:856.921500px;}
.y261{bottom:857.061000px;}
.y231{bottom:857.418000px;}
.y1f7{bottom:858.277500px;}
.y141{bottom:859.506000px;}
.y10{bottom:861.403500px;}
.y2b0{bottom:861.450000px;}
.y18a{bottom:863.167500px;}
.y8d{bottom:865.336500px;}
.y5a{bottom:869.754000px;}
.y230{bottom:870.867000px;}
.y1f6{bottom:871.728000px;}
.y128{bottom:873.255000px;}
.yb1{bottom:873.283500px;}
.ye6{bottom:873.285000px;}
.y2af{bottom:873.405000px;}
.y260{bottom:873.994500px;}
.y140{bottom:875.869500px;}
.yf{bottom:877.767000px;}
.y44{bottom:877.768500px;}
.y189{bottom:879.531000px;}
.y8c{bottom:881.700000px;}
.y22f{bottom:884.316000px;}
.y1f5{bottom:885.177000px;}
.y2ae{bottom:885.360000px;}
.y59{bottom:886.192500px;}
.y127{bottom:889.618500px;}
.yb0{bottom:889.648500px;}
.y13f{bottom:892.234500px;}
.ye{bottom:894.130500px;}
.y43{bottom:894.132000px;}
.y188{bottom:895.894500px;}
.y2ad{bottom:897.315000px;}
.y22e{bottom:897.766500px;}
.y8b{bottom:898.063500px;}
.y1f4{bottom:898.626000px;}
.y25f{bottom:900.303000px;}
.y58{bottom:902.631000px;}
.y126{bottom:905.982000px;}
.yaf{bottom:906.012000px;}
.y13e{bottom:908.598000px;}
.y2ac{bottom:909.270000px;}
.yd{bottom:910.494000px;}
.y42{bottom:910.495500px;}
.y22d{bottom:911.215500px;}
.y1f2{bottom:912.076500px;}
.y25e{bottom:913.753500px;}
.y8a{bottom:914.427000px;}
.y1f3{bottom:916.296000px;}
.y57{bottom:919.069500px;}
.y2ab{bottom:921.225000px;}
.y125{bottom:922.345500px;}
.yae{bottom:922.375500px;}
.y22c{bottom:924.664500px;}
.y13d{bottom:924.961500px;}
.y1f1{bottom:925.525500px;}
.yc{bottom:926.859000px;}
.y25d{bottom:927.202500px;}
.y2aa{bottom:933.180000px;}
.y56{bottom:935.506500px;}
.y22b{bottom:938.115000px;}
.y89{bottom:938.263500px;}
.y124{bottom:938.709000px;}
.yad{bottom:938.739000px;}
.y1ef{bottom:938.976000px;}
.y25c{bottom:940.651500px;}
.y13c{bottom:941.325000px;}
.y1f0{bottom:943.194000px;}
.yb{bottom:943.222500px;}
.y2a9{bottom:945.135000px;}
.y22a{bottom:951.564000px;}
.y55{bottom:951.945000px;}
.y1ee{bottom:952.425000px;}
.y25b{bottom:954.102000px;}
.y123{bottom:955.072500px;}
.yac{bottom:955.102500px;}
.y187{bottom:955.222500px;}
.y2a8{bottom:957.090000px;}
.y13b{bottom:957.688500px;}
.ya{bottom:959.586000px;}
.y229{bottom:965.014500px;}
.y1ed{bottom:965.874000px;}
.y25a{bottom:967.551000px;}
.y2a7{bottom:969.046500px;}
.y186{bottom:971.212500px;}
.y122{bottom:971.437500px;}
.yab{bottom:971.466000px;}
.y13a{bottom:974.052000px;}
.y9{bottom:975.949500px;}
.y228{bottom:978.463500px;}
.y1ec{bottom:979.324500px;}
.y259{bottom:981.001500px;}
.y54{bottom:984.720000px;}
.y185{bottom:986.157000px;}
.y121{bottom:987.801000px;}
.yaa{bottom:987.829500px;}
.y139{bottom:990.415500px;}
.y227{bottom:991.912500px;}
.y8{bottom:992.313000px;}
.y2a6{bottom:992.956500px;}
.y258{bottom:994.450500px;}
.y184{bottom:1001.698500px;}
.y120{bottom:1004.164500px;}
.ya9{bottom:1004.193000px;}
.y2a5{bottom:1004.911500px;}
.y226{bottom:1005.363000px;}
.y138{bottom:1006.779000px;}
.y1eb{bottom:1007.899500px;}
.y53{bottom:1008.630000px;}
.y7{bottom:1008.676500px;}
.y183{bottom:1016.643000px;}
.y2a4{bottom:1016.866500px;}
.y225{bottom:1018.812000px;}
.y11f{bottom:1020.528000px;}
.ya8{bottom:1020.556500px;}
.ye5{bottom:1020.558000px;}
.y1ea{bottom:1021.350000px;}
.y137{bottom:1023.142500px;}
.y6{bottom:1025.040000px;}
.y2a3{bottom:1028.821500px;}
.y182{bottom:1031.586000px;}
.y224{bottom:1032.261000px;}
.y1e9{bottom:1034.799000px;}
.y11e{bottom:1036.891500px;}
.ya7{bottom:1036.920000px;}
.ye4{bottom:1036.921500px;}
.y136{bottom:1039.506000px;}
.y2a2{bottom:1040.776500px;}
.y5{bottom:1041.403500px;}
.y52{bottom:1043.350500px;}
.y181{bottom:1047.127500px;}
.y1e8{bottom:1048.249500px;}
.y223{bottom:1048.668000px;}
.y2a1{bottom:1052.731500px;}
.y11d{bottom:1053.255000px;}
.ya6{bottom:1053.283500px;}
.ye3{bottom:1053.285000px;}
.y135{bottom:1055.869500px;}
.y221{bottom:1057.624500px;}
.y4{bottom:1057.767000px;}
.y1e7{bottom:1061.698500px;}
.y180{bottom:1062.072000px;}
.y2a0{bottom:1064.686500px;}
.y222{bottom:1065.949500px;}
.ya5{bottom:1069.647000px;}
.ye2{bottom:1069.648500px;}
.y11c{bottom:1072.234500px;}
.y3{bottom:1074.130500px;}
.y41{bottom:1074.132000px;}
.y1e6{bottom:1075.147500px;}
.y29f{bottom:1076.643000px;}
.y17f{bottom:1077.613500px;}
.y51{bottom:1079.217000px;}
.ya4{bottom:1086.012000px;}
.y11b{bottom:1088.598000px;}
.y2{bottom:1090.494000px;}
.y40{bottom:1090.495500px;}
.y17e{bottom:1092.783000px;}
.he{height:17.107891px;}
.hd{height:21.039361px;}
.hc{height:21.070899px;}
.h2{height:25.247500px;}
.h15{height:25.877500px;}
.hf{height:28.578632px;}
.h5{height:29.455195px;}
.h7{height:31.382100px;}
.h10{height:31.559486px;}
.h6{height:33.663334px;}
.h13{height:34.143908px;}
.h11{height:35.865450px;}
.hb{height:37.871028px;}
.h9{height:40.348800px;}
.ha{height:42.079167px;}
.h4{height:48.103382px;}
.h12{height:70.533450px;}
.h14{height:71.691450px;}
.h3{height:94.158869px;}
.h8{height:111.278858px;}
.h1{height:345.932069px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5b{left:39.412500px;}
.x3a{left:44.148000px;}
.x67{left:46.375500px;}
.x3{left:48.885000px;}
.x2a{left:50.874000px;}
.x2{left:53.859000px;}
.x1c{left:76.167000px;}
.x6{left:77.784000px;}
.x1d{left:81.595500px;}
.x48{left:82.891500px;}
.x2c{left:84.508500px;}
.x39{left:88.060500px;}
.x30{left:89.823000px;}
.x19{left:95.716500px;}
.x1a{left:100.984500px;}
.x49{left:102.079500px;}
.xe{left:106.473000px;}
.x1b{left:107.896500px;}
.x4a{left:110.508000px;}
.x31{left:113.142000px;}
.x3b{left:114.856500px;}
.x7a{left:115.923000px;}
.x4b{left:124.330500px;}
.x7b{left:126.796500px;}
.x76{left:128.596500px;}
.x69{left:135.180000px;}
.x77{left:138.576000px;}
.x7c{left:139.902000px;}
.x89{left:140.943000px;}
.x78{left:143.614500px;}
.x6a{left:147.882000px;}
.x2d{left:155.619000px;}
.x79{left:157.087500px;}
.x2e{left:161.451000px;}
.x74{left:166.204500px;}
.x6b{left:174.388500px;}
.x6c{left:180.864000px;}
.x9e{left:183.336000px;}
.x6d{left:186.229500px;}
.x17{left:189.268500px;}
.x37{left:192.166500px;}
.x18{left:196.179000px;}
.x38{left:198.517500px;}
.x1e{left:201.234000px;}
.x7{left:202.669500px;}
.x20{left:205.240500px;}
.x6e{left:207.238500px;}
.x8{left:210.946500px;}
.x1f{left:215.058000px;}
.xf{left:218.100000px;}
.x6f{left:219.942000px;}
.x36{left:221.779500px;}
.x10{left:225.010500px;}
.x4e{left:231.216000px;}
.x11{left:234.640500px;}
.x7d{left:236.539500px;}
.x44{left:237.784500px;}
.x32{left:239.097000px;}
.x12{left:241.552500px;}
.x75{left:243.252000px;}
.x33{left:244.410000px;}
.x70{left:251.299500px;}
.x4f{left:253.528500px;}
.x23{left:260.046000px;}
.x71{left:264.001500px;}
.x50{left:267.352500px;}
.x24{left:273.868500px;}
.x34{left:277.497000px;}
.x2f{left:279.370500px;}
.x35{left:281.514000px;}
.x13{left:284.796000px;}
.x14{left:291.708000px;}
.x4c{left:301.335000px;}
.x72{left:303.702000px;}
.x5f{left:306.601500px;}
.x42{left:307.666500px;}
.x73{left:310.053000px;}
.x40{left:311.490000px;}
.x45{left:313.981500px;}
.x4d{left:315.157500px;}
.x60{left:320.424000px;}
.x41{left:322.264500px;}
.x87{left:325.186500px;}
.x9{left:333.922500px;}
.xa{left:342.199500px;}
.x1{left:345.262500px;}
.x3e{left:351.853500px;}
.x51{left:353.997000px;}
.x46{left:362.193000px;}
.x52{left:367.819500px;}
.x5d{left:369.436500px;}
.x25{left:372.409500px;}
.x43{left:376.944000px;}
.x82{left:380.527500px;}
.x5e{left:383.259000px;}
.x26{left:386.232000px;}
.x21{left:397.327500px;}
.x83{left:400.596000px;}
.x84{left:405.634500px;}
.x22{left:411.150000px;}
.x85{left:416.700000px;}
.x3c{left:421.740000px;}
.x7e{left:424.581000px;}
.x86{left:427.935000px;}
.x88{left:429.127500px;}
.x7f{left:432.975000px;}
.x3d{left:435.562500px;}
.x80{left:438.013500px;}
.x81{left:442.600500px;}
.xb{left:445.495500px;}
.xc{left:453.772500px;}
.x64{left:470.230500px;}
.x3f{left:471.336000px;}
.x65{left:475.611000px;}
.x9b{left:477.085500px;}
.x53{left:478.572000px;}
.x9c{left:482.124000px;}
.x27{left:489.187500px;}
.x9d{left:494.827500px;}
.x54{left:496.504500px;}
.x15{left:498.879000px;}
.x59{left:501.933000px;}
.x28{left:503.011500px;}
.x16{left:505.791000px;}
.x9f{left:513.123000px;}
.x5a{left:515.757000px;}
.x47{left:542.259000px;}
.x95{left:551.130000px;}
.x96{left:555.717000px;}
.xd{left:570.721500px;}
.x9a{left:583.864500px;}
.x8a{left:586.636500px;}
.x8d{left:599.353500px;}
.x8e{left:618.636000px;}
.x29{left:623.812500px;}
.x8f{left:628.216500px;}
.x90{left:634.638000px;}
.x61{left:637.858500px;}
.x91{left:645.874500px;}
.x8c{left:661.026000px;}
.x62{left:682.477500px;}
.x8b{left:690.753000px;}
.x63{left:696.300000px;}
.x98{left:751.149000px;}
.x55{left:762.492000px;}
.x99{left:763.852500px;}
.x66{left:774.237000px;}
.x56{left:776.316000px;}
.x57{left:784.696500px;}
.x58{left:798.519000px;}
.x92{left:803.679000px;}
.x93{left:810.100500px;}
.x94{left:821.335500px;}
.x97{left:834.042000px;}
.x5c{left:850.411500px;}
.x5{left:855.148500px;}
.x68{left:857.136000px;}
.x4{left:859.884000px;}
.x2b{left:862.111500px;}
@media print{
.v2{vertical-align:-16.037333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.v3{vertical-align:30.816000pt;}
.v4{vertical-align:31.845333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.003428pt;}
.lsb{letter-spacing:0.003733pt;}
.lse{letter-spacing:0.004654pt;}
.lsa{letter-spacing:2.377181pt;}
.ls6{letter-spacing:2.382310pt;}
.ls1{letter-spacing:2.655450pt;}
.ls7{letter-spacing:4.529653pt;}
.ls11{letter-spacing:8.417714pt;}
.ls13{letter-spacing:8.423047pt;}
.ls14{letter-spacing:8.592626pt;}
.ls5{letter-spacing:9.639738pt;}
.ls3{letter-spacing:9.978618pt;}
.ls4{letter-spacing:9.999824pt;}
.ls9{letter-spacing:10.034717pt;}
.lsd{letter-spacing:12.539624pt;}
.ls8{letter-spacing:13.355600pt;}
.ls10{letter-spacing:15.090056pt;}
.ls2{letter-spacing:37.197037pt;}
.lsc{letter-spacing:242.794792pt;}
.lsf{letter-spacing:336.554792pt;}
.ws153{word-spacing:-25.083499pt;}
.ws8b{word-spacing:-13.652838pt;}
.ws106{word-spacing:-12.629355pt;}
.ws13f{word-spacing:-12.543875pt;}
.ws178{word-spacing:-11.226159pt;}
.ws183{word-spacing:-8.419619pt;}
.ws154{word-spacing:-6.162491pt;}
.ws141{word-spacing:-2.512176pt;}
.wsfa{word-spacing:-2.414950pt;}
.ws102{word-spacing:-2.216041pt;}
.ws15f{word-spacing:-2.214625pt;}
.wsf9{word-spacing:-2.128026pt;}
.ws35{word-spacing:-1.998891pt;}
.wsab{word-spacing:-1.793280pt;}
.ws170{word-spacing:-1.704539pt;}
.wsc9{word-spacing:-1.697638pt;}
.wsfc{word-spacing:-1.506355pt;}
.wsac{word-spacing:-1.410714pt;}
.ws40{word-spacing:-1.317451pt;}
.ws54{word-spacing:-0.954014pt;}
.ws64{word-spacing:-0.884685pt;}
.ws176{word-spacing:-0.854395pt;}
.ws84{word-spacing:-0.836864pt;}
.ws39{word-spacing:-0.817728pt;}
.ws11d{word-spacing:-0.816825pt;}
.ws10c{word-spacing:-0.803976pt;}
.ws53{word-spacing:-0.742011pt;}
.ws161{word-spacing:-0.706242pt;}
.ws7b{word-spacing:-0.693402pt;}
.ws117{word-spacing:-0.599352pt;}
.wsfe{word-spacing:-0.597760pt;}
.ws12b{word-spacing:-0.384875pt;}
.ws2e{word-spacing:-0.318005pt;}
.wsfd{word-spacing:-0.310835pt;}
.ws43{word-spacing:-0.227147pt;}
.ws119{word-spacing:-0.216787pt;}
.ws7{word-spacing:-0.201909pt;}
.ws4d{word-spacing:-0.176669pt;}
.wsb{word-spacing:-0.161527pt;}
.ws4c{word-spacing:-0.141335pt;}
.ws37{word-spacing:-0.136288pt;}
.ws112{word-spacing:-0.089265pt;}
.wsaa{word-spacing:-0.071731pt;}
.ws47{word-spacing:-0.070668pt;}
.ws46{word-spacing:-0.060573pt;}
.ws13e{word-spacing:-0.042507pt;}
.wsa{word-spacing:-0.040382pt;}
.ws12{word-spacing:-0.037194pt;}
.ws4f{word-spacing:-0.035334pt;}
.ws3{word-spacing:-0.031881pt;}
.ws180{word-spacing:-0.030286pt;}
.ws140{word-spacing:-0.004251pt;}
.ws181{word-spacing:-0.002096pt;}
.ws2{word-spacing:0.000000pt;}
.ws189{word-spacing:0.003237pt;}
.ws18d{word-spacing:0.030286pt;}
.ws10{word-spacing:0.040382pt;}
.ws18a{word-spacing:0.060573pt;}
.ws4e{word-spacing:0.070668pt;}
.ws101{word-spacing:0.071731pt;}
.ws6{word-spacing:0.080764pt;}
.ws41{word-spacing:0.090859pt;}
.ws48{word-spacing:0.106002pt;}
.ws187{word-spacing:0.121146pt;}
.wsb0{word-spacing:0.141335pt;}
.ws18c{word-spacing:0.151432pt;}
.wsf{word-spacing:0.161527pt;}
.wsaf{word-spacing:0.176669pt;}
.ws3e{word-spacing:0.181717pt;}
.ws185{word-spacing:0.181718pt;}
.ws9{word-spacing:0.201909pt;}
.wsb1{word-spacing:0.212003pt;}
.ws85{word-spacing:0.215194pt;}
.ws33{word-spacing:0.363435pt;}
.ws4{word-spacing:0.363437pt;}
.ws13d{word-spacing:0.505836pt;}
.ws173{word-spacing:0.548343pt;}
.ws5c{word-spacing:0.565342pt;}
.ws146{word-spacing:0.590850pt;}
.wsa1{word-spacing:0.597760pt;}
.wsb2{word-spacing:0.600676pt;}
.wsa5{word-spacing:0.693402pt;}
.wsb4{word-spacing:0.741222pt;}
.ws126{word-spacing:0.760879pt;}
.ws8{word-spacing:0.767255pt;}
.ws1f{word-spacing:0.789043pt;}
.ws17e{word-spacing:0.803386pt;}
.wsbb{word-spacing:0.836864pt;}
.ws17d{word-spacing:0.973415pt;}
.ws129{word-spacing:1.015922pt;}
.ws175{word-spacing:1.058429pt;}
.ws42{word-spacing:1.090304pt;}
.ws12a{word-spacing:1.143444pt;}
.wsd{word-spacing:1.171074pt;}
.wse3{word-spacing:1.171610pt;}
.wsa6{word-spacing:1.219430pt;}
.ws36{word-spacing:1.272021pt;}
.ws58{word-spacing:1.307353pt;}
.ws6e{word-spacing:1.362893pt;}
.ws62{word-spacing:1.506355pt;}
.wse{word-spacing:1.534511pt;}
.ws25{word-spacing:1.554176pt;}
.ws10f{word-spacing:1.653530pt;}
.ws9e{word-spacing:1.697638pt;}
.ws6f{word-spacing:1.793280pt;}
.ws70{word-spacing:1.841101pt;}
.ws5{word-spacing:1.897948pt;}
.ws1c{word-spacing:1.936742pt;}
.wsc5{word-spacing:2.032384pt;}
.ws13b{word-spacing:2.036095pt;}
.ws172{word-spacing:2.078602pt;}
.ws82{word-spacing:2.128026pt;}
.ws114{word-spacing:2.163616pt;}
.wse2{word-spacing:2.175846pt;}
.ws5b{word-spacing:2.190700pt;}
.ws110{word-spacing:2.206124pt;}
.ws12e{word-spacing:2.248631pt;}
.ws135{word-spacing:2.291138pt;}
.ws45{word-spacing:2.332035pt;}
.ws162{word-spacing:2.333645pt;}
.ws71{word-spacing:2.367130pt;}
.ws113{word-spacing:2.376152pt;}
.ws89{word-spacing:2.414950pt;}
.ws127{word-spacing:2.461167pt;}
.ws75{word-spacing:2.462771pt;}
.ws11c{word-spacing:2.503674pt;}
.ws1e{word-spacing:2.510592pt;}
.ws155{word-spacing:2.546181pt;}
.ws2b{word-spacing:2.558413pt;}
.ws10e{word-spacing:2.588688pt;}
.ws5f{word-spacing:2.606234pt;}
.ws11a{word-spacing:2.631196pt;}
.ws13{word-spacing:2.654054pt;}
.ws115{word-spacing:2.673703pt;}
.ws16{word-spacing:2.701875pt;}
.ws128{word-spacing:2.716210pt;}
.ws1b{word-spacing:2.749696pt;}
.ws158{word-spacing:2.758717pt;}
.ws1a{word-spacing:2.797517pt;}
.ws12c{word-spacing:2.801224pt;}
.ws60{word-spacing:2.845338pt;}
.ws118{word-spacing:2.886239pt;}
.wsd6{word-spacing:2.893158pt;}
.ws78{word-spacing:2.940979pt;}
.ws18{word-spacing:2.988800pt;}
.ws6c{word-spacing:3.036621pt;}
.ws63{word-spacing:3.084442pt;}
.wsa0{word-spacing:3.132262pt;}
.ws34{word-spacing:3.134624pt;}
.ws171{word-spacing:3.141282pt;}
.ws55{word-spacing:3.144714pt;}
.ws8a{word-spacing:3.180083pt;}
.ws159{word-spacing:3.226296pt;}
.ws7a{word-spacing:3.227904pt;}
.ws11f{word-spacing:3.268804pt;}
.wsc6{word-spacing:3.323546pt;}
.ws18b{word-spacing:3.329321pt;}
.ws18e{word-spacing:3.329532pt;}
.ws49{word-spacing:3.392051pt;}
.ws73{word-spacing:3.419187pt;}
.ws5a{word-spacing:3.427385pt;}
.ws26{word-spacing:3.514829pt;}
.ws16d{word-spacing:3.523847pt;}
.wscd{word-spacing:3.562650pt;}
.ws94{word-spacing:3.610470pt;}
.ws3d{word-spacing:3.634347pt;}
.ws17f{word-spacing:3.651368pt;}
.ws164{word-spacing:3.693876pt;}
.wsee{word-spacing:3.706112pt;}
.ws131{word-spacing:3.736383pt;}
.ws100{word-spacing:3.753933pt;}
.ws15d{word-spacing:3.821397pt;}
.ws12f{word-spacing:3.863904pt;}
.ws7f{word-spacing:3.897395pt;}
.wsc{word-spacing:3.917041pt;}
.ws147{word-spacing:3.991426pt;}
.ws97{word-spacing:3.993037pt;}
.ws59{word-spacing:4.028061pt;}
.ws9c{word-spacing:4.040858pt;}
.ws3f{word-spacing:4.134069pt;}
.ws72{word-spacing:4.136499pt;}
.ws9f{word-spacing:4.184320pt;}
.ws2a{word-spacing:4.375603pt;}
.ws13a{word-spacing:4.459005pt;}
.wsec{word-spacing:4.614707pt;}
.ws15e{word-spacing:4.629034pt;}
.ws6a{word-spacing:4.662528pt;}
.ws17c{word-spacing:4.671541pt;}
.ws111{word-spacing:4.714048pt;}
.ws30{word-spacing:4.724651pt;}
.ws4b{word-spacing:4.734738pt;}
.ws74{word-spacing:4.758170pt;}
.wsc1{word-spacing:4.805990pt;}
.ws32{word-spacing:4.815509pt;}
.wsc0{word-spacing:4.853811pt;}
.ws13c{word-spacing:4.969092pt;}
.ws99{word-spacing:4.997274pt;}
.ws65{word-spacing:5.045094pt;}
.ws16c{word-spacing:5.096613pt;}
.ws61{word-spacing:5.140736pt;}
.ws51{word-spacing:5.229412pt;}
.ws28{word-spacing:5.236378pt;}
.ws16f{word-spacing:5.266642pt;}
.ws122{word-spacing:5.351656pt;}
.ws98{word-spacing:5.379840pt;}
.ws121{word-spacing:5.394164pt;}
.ws157{word-spacing:5.436671pt;}
.ws9b{word-spacing:5.523302pt;}
.wse0{word-spacing:5.571123pt;}
.ws15b{word-spacing:5.606700pt;}
.ws22{word-spacing:5.618944pt;}
.ws167{word-spacing:5.649207pt;}
.ws14b{word-spacing:5.691714pt;}
.ws66{word-spacing:5.714586pt;}
.ws166{word-spacing:5.734221pt;}
.wsb8{word-spacing:5.810227pt;}
.ws16a{word-spacing:5.819236pt;}
.ws1d{word-spacing:5.858048pt;}
.ws124{word-spacing:5.861743pt;}
.ws160{word-spacing:5.904250pt;}
.ws125{word-spacing:5.946757pt;}
.wsa4{word-spacing:5.953690pt;}
.ws38{word-spacing:5.996672pt;}
.wsbc{word-spacing:6.001510pt;}
.ws57{word-spacing:6.042091pt;}
.ws86{word-spacing:6.097152pt;}
.ws29{word-spacing:6.144973pt;}
.ws169{word-spacing:6.159293pt;}
.ws19{word-spacing:6.192794pt;}
.ws152{word-spacing:6.231088pt;}
.ws15{word-spacing:6.240614pt;}
.ws145{word-spacing:6.286815pt;}
.ws14c{word-spacing:6.329322pt;}
.ws23{word-spacing:6.384077pt;}
.ws14e{word-spacing:6.456844pt;}
.wsf6{word-spacing:6.479718pt;}
.ws88{word-spacing:6.527539pt;}
.ws138{word-spacing:6.541858pt;}
.ws50{word-spacing:6.572099pt;}
.wsb5{word-spacing:6.575360pt;}
.ws142{word-spacing:6.584365pt;}
.wsb6{word-spacing:6.623181pt;}
.ws133{word-spacing:6.626872pt;}
.ws120{word-spacing:6.669380pt;}
.wsf7{word-spacing:6.671002pt;}
.ws103{word-spacing:6.862285pt;}
.wsef{word-spacing:6.910106pt;}
.ws14d{word-spacing:6.924423pt;}
.wsb7{word-spacing:6.957926pt;}
.ws24{word-spacing:7.005747pt;}
.ws76{word-spacing:7.053568pt;}
.ws136{word-spacing:7.066827pt;}
.ws163{word-spacing:7.094452pt;}
.ws27{word-spacing:7.101389pt;}
.ws130{word-spacing:7.136959pt;}
.wsc4{word-spacing:7.197030pt;}
.ws15c{word-spacing:7.264480pt;}
.wsd2{word-spacing:7.292672pt;}
.wsba{word-spacing:7.340493pt;}
.ws11b{word-spacing:7.392002pt;}
.wsf0{word-spacing:7.436134pt;}
.ws12d{word-spacing:7.519524pt;}
.ws6b{word-spacing:7.531776pt;}
.wsf2{word-spacing:7.579597pt;}
.wsa9{word-spacing:7.627418pt;}
.ws21{word-spacing:7.723059pt;}
.ws8c{word-spacing:7.770880pt;}
.ws3b{word-spacing:7.813845pt;}
.ws179{word-spacing:7.859581pt;}
.ws95{word-spacing:7.914342pt;}
.wsea{word-spacing:7.962163pt;}
.ws2d{word-spacing:8.009984pt;}
.ws139{word-spacing:8.029610pt;}
.wsf8{word-spacing:8.057805pt;}
.ws168{word-spacing:8.072117pt;}
.ws17{word-spacing:8.153446pt;}
.wsc7{word-spacing:8.249088pt;}
.ws96{word-spacing:8.344730pt;}
.ws182{word-spacing:8.389333pt;}
.ws18f{word-spacing:8.449906pt;}
.ws188{word-spacing:8.510478pt;}
.ws52{word-spacing:8.515462pt;}
.ws14f{word-spacing:8.539696pt;}
.ws186{word-spacing:8.540765pt;}
.wsde{word-spacing:8.583834pt;}
.wsa2{word-spacing:8.631654pt;}
.wscb{word-spacing:8.679475pt;}
.wscc{word-spacing:8.727296pt;}
.ws69{word-spacing:8.775117pt;}
.ws149{word-spacing:8.794740pt;}
.ws7d{word-spacing:8.822938pt;}
.ws14a{word-spacing:8.837247pt;}
.wsf5{word-spacing:8.870758pt;}
.wse6{word-spacing:8.918579pt;}
.wsbd{word-spacing:8.966400pt;}
.ws184{word-spacing:9.039161pt;}
.ws16e{word-spacing:9.134797pt;}
.wsd7{word-spacing:9.157683pt;}
.ws151{word-spacing:9.219812pt;}
.ws137{word-spacing:9.262319pt;}
.wse4{word-spacing:9.396787pt;}
.ws10a{word-spacing:9.492429pt;}
.ws14{word-spacing:9.540250pt;}
.ws20{word-spacing:9.731533pt;}
.ws5e{word-spacing:9.787481pt;}
.ws150{word-spacing:9.857420pt;}
.ws31{word-spacing:9.858165pt;}
.wsc8{word-spacing:10.018458pt;}
.ws2c{word-spacing:10.161920pt;}
.ws165{word-spacing:10.197477pt;}
.ws79{word-spacing:10.209741pt;}
.ws11e{word-spacing:10.239984pt;}
.ws77{word-spacing:10.257562pt;}
.wsd9{word-spacing:10.353203pt;}
.wsd5{word-spacing:10.448845pt;}
.ws8d{word-spacing:10.496666pt;}
.wsa7{word-spacing:10.640128pt;}
.ws143{word-spacing:10.665056pt;}
.ws144{word-spacing:10.707564pt;}
.wsc3{word-spacing:10.735770pt;}
.ws156{word-spacing:10.750071pt;}
.ws132{word-spacing:10.792578pt;}
.ws83{word-spacing:10.831411pt;}
.ws148{word-spacing:10.877592pt;}
.ws90{word-spacing:10.927053pt;}
.wsa3{word-spacing:10.974874pt;}
.ws2f{word-spacing:10.993899pt;}
.wsed{word-spacing:11.070515pt;}
.wsf3{word-spacing:11.118336pt;}
.wsf4{word-spacing:11.166157pt;}
.ws116{word-spacing:11.175143pt;}
.ws6d{word-spacing:11.205968pt;}
.wsff{word-spacing:11.213978pt;}
.ws10d{word-spacing:11.260157pt;}
.wsa8{word-spacing:11.261798pt;}
.ws68{word-spacing:11.309619pt;}
.ws190{word-spacing:11.417407pt;}
.ws16b{word-spacing:11.472693pt;}
.ws67{word-spacing:11.740006pt;}
.ws107{word-spacing:11.883469pt;}
.ws105{word-spacing:11.917058pt;}
.wsca{word-spacing:11.931290pt;}
.ws81{word-spacing:12.074752pt;}
.ws9d{word-spacing:12.361677pt;}
.ws10b{word-spacing:12.409498pt;}
.ws92{word-spacing:12.648602pt;}
.wse7{word-spacing:12.744243pt;}
.ws8e{word-spacing:12.935526pt;}
.wse8{word-spacing:13.126810pt;}
.ws15a{word-spacing:13.130474pt;}
.wse1{word-spacing:13.222451pt;}
.ws93{word-spacing:13.365914pt;}
.ws9a{word-spacing:13.461555pt;}
.wsfb{word-spacing:13.748480pt;}
.ws80{word-spacing:13.796301pt;}
.ws17a{word-spacing:14.167854pt;}
.ws17b{word-spacing:14.193154pt;}
.ws56{word-spacing:14.239548pt;}
.wseb{word-spacing:14.417971pt;}
.ws123{word-spacing:14.448197pt;}
.ws3c{word-spacing:14.673675pt;}
.wsd8{word-spacing:14.752717pt;}
.ws3a{word-spacing:15.037109pt;}
.wsb9{word-spacing:15.039642pt;}
.ws104{word-spacing:15.087462pt;}
.ws134{word-spacing:15.170820pt;}
.wsce{word-spacing:15.996058pt;}
.ws11{word-spacing:16.439571pt;}
.wsd3{word-spacing:16.522086pt;}
.wsbf{word-spacing:16.713370pt;}
.ws5d{word-spacing:16.741540pt;}
.wsd1{word-spacing:16.904653pt;}
.wsdf{word-spacing:17.478502pt;}
.wse9{word-spacing:17.717606pt;}
.wsf1{word-spacing:18.052352pt;}
.ws91{word-spacing:18.530560pt;}
.wsc2{word-spacing:18.578381pt;}
.ws8f{word-spacing:19.295693pt;}
.wsd0{word-spacing:19.391334pt;}
.wsdd{word-spacing:19.439155pt;}
.ws109{word-spacing:20.108646pt;}
.ws108{word-spacing:21.138993pt;}
.wscf{word-spacing:22.117120pt;}
.wsda{word-spacing:22.834432pt;}
.wsbe{word-spacing:23.121357pt;}
.wsd4{word-spacing:24.508160pt;}
.ws4a{word-spacing:25.581719pt;}
.wsdb{word-spacing:26.134067pt;}
.ws87{word-spacing:26.803558pt;}
.ws7c{word-spacing:26.994842pt;}
.wsdc{word-spacing:27.138304pt;}
.ws44{word-spacing:27.348413pt;}
.wsad{word-spacing:27.358638pt;}
.ws177{word-spacing:27.371259pt;}
.wsae{word-spacing:27.383747pt;}
.ws7e{word-spacing:27.568691pt;}
.wse5{word-spacing:36.367718pt;}
.ws174{word-spacing:39.048553pt;}
.ws0{word-spacing:42.666651pt;}
.ws1{word-spacing:42.783546pt;}
.wsb3{word-spacing:597.926374pt;}
._3a{margin-left:-29.291337pt;}
._3c{margin-left:-23.081410pt;}
._3e{margin-left:-21.529867pt;}
._3d{margin-left:-20.116975pt;}
._39{margin-left:-12.204777pt;}
._c{margin-left:-4.719711pt;}
._0{margin-left:-3.389953pt;}
._8{margin-left:-2.199774pt;}
._3{margin-left:-0.908587pt;}
._b{width:1.063149pt;}
._2{width:1.976360pt;}
._1{width:3.506848pt;}
._3f{width:9.802703pt;}
._18{width:11.305818pt;}
._14{width:12.921097pt;}
._4{width:14.274985pt;}
._13{width:15.304746pt;}
._5{width:16.596947pt;}
._11{width:17.550251pt;}
._7{width:18.939095pt;}
._1a{width:19.924850pt;}
._9{width:20.897690pt;}
._d{width:22.141030pt;}
._1e{width:23.862579pt;}
._12{width:24.951367pt;}
._6{width:26.046304pt;}
._35{width:26.970931pt;}
._34{width:27.975168pt;}
._25{width:28.883763pt;}
._21{width:29.871585pt;}
._f{width:31.083520pt;}
._a{width:32.406795pt;}
._23{width:33.788275pt;}
._1d{width:34.909201pt;}
._10{width:35.961259pt;}
._17{width:37.218137pt;}
._37{width:38.484653pt;}
._27{width:39.786897pt;}
._1f{width:40.695501pt;}
._32{width:41.651917pt;}
._33{width:43.123254pt;}
._e{width:44.090820pt;}
._38{width:45.573222pt;}
._24{width:46.901114pt;}
._1c{width:48.107725pt;}
._1b{width:49.483437pt;}
._22{width:50.726778pt;}
._36{width:53.309101pt;}
._26{width:54.404380pt;}
._20{width:55.365387pt;}
._15{width:60.921628pt;}
._31{width:66.131906pt;}
._2b{width:81.290097pt;}
._2f{width:162.357542pt;}
._30{width:260.915123pt;}
._29{width:305.708100pt;}
._2d{width:307.216256pt;}
._2c{width:336.608667pt;}
._2a{width:388.153188pt;}
._2e{width:421.617557pt;}
._16{width:731.798693pt;}
._40{width:1316.878844pt;}
._28{width:1336.526844pt;}
._3b{width:1466.874203pt;}
._19{width:1486.516869pt;}
.fsc{font-size:25.238400pt;}
.fsb{font-size:26.566933pt;}
.fs1{font-size:30.286400pt;}
.fs4{font-size:31.880533pt;}
.fs5{font-size:35.333867pt;}
.fs7{font-size:37.193600pt;}
.fsd{font-size:37.858133pt;}
.fs6{font-size:40.381867pt;}
.fse{font-size:42.507200pt;}
.fs3{font-size:45.429333pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:50.477333pt;}
.fs2{font-size:116.894933pt;}
.fs8{font-size:138.148800pt;}
.fs0{font-size:453.532703pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:48.506667pt;}
.y17a{bottom:64.461333pt;}
.y179{bottom:76.417333pt;}
.ye1{bottom:78.070667pt;}
.yf6{bottom:78.072000pt;}
.y88{bottom:81.716000pt;}
.y3f{bottom:82.056000pt;}
.y50{bottom:82.057333pt;}
.y17d{bottom:83.384000pt;}
.y1bb{bottom:83.624000pt;}
.y178{bottom:88.372000pt;}
.y29e{bottom:92.342667pt;}
.ye0{bottom:92.617333pt;}
.y1e5{bottom:93.670667pt;}
.y16e{bottom:94.914667pt;}
.y17c{bottom:95.338667pt;}
.y87{bottom:96.261333pt;}
.y3e{bottom:96.601333pt;}
.y4f{bottom:96.602667pt;}
.y1ba{bottom:98.169333pt;}
.y177{bottom:100.326667pt;}
.y29d{bottom:102.969333pt;}
.y1e4{bottom:105.626667pt;}
.ydf{bottom:107.162667pt;}
.y17b{bottom:107.293333pt;}
.y16d{bottom:109.460000pt;}
.y86{bottom:110.806667pt;}
.y3d{bottom:111.146667pt;}
.y4e{bottom:111.148000pt;}
.y1b9{bottom:112.714667pt;}
.y29c{bottom:113.596000pt;}
.y1e3{bottom:117.581333pt;}
.yde{bottom:121.708000pt;}
.y16c{bottom:124.006667pt;}
.y29b{bottom:124.224000pt;}
.y85{bottom:125.352000pt;}
.y3c{bottom:125.693333pt;}
.y1b8{bottom:127.260000pt;}
.y1e2{bottom:129.537333pt;}
.y29a{bottom:134.850667pt;}
.ydd{bottom:136.253333pt;}
.y16b{bottom:138.552000pt;}
.y84{bottom:139.897333pt;}
.y3b{bottom:140.238667pt;}
.y1e1{bottom:141.492000pt;}
.y1b7{bottom:141.805333pt;}
.y299{bottom:145.477333pt;}
.ydc{bottom:150.798667pt;}
.y16a{bottom:153.097333pt;}
.y1e0{bottom:153.446667pt;}
.y83{bottom:154.442667pt;}
.y3a{bottom:154.784000pt;}
.y298{bottom:156.104000pt;}
.y1b6{bottom:156.352000pt;}
.y171{bottom:159.984000pt;}
.y176{bottom:160.405333pt;}
.ydb{bottom:165.344000pt;}
.y1df{bottom:165.402667pt;}
.y297{bottom:166.730667pt;}
.y169{bottom:167.642667pt;}
.y82{bottom:168.989333pt;}
.y39{bottom:169.329333pt;}
.y1b5{bottom:170.897333pt;}
.y170{bottom:171.940000pt;}
.y175{bottom:172.361333pt;}
.y1de{bottom:177.357333pt;}
.yda{bottom:179.889333pt;}
.y168{bottom:182.188000pt;}
.y81{bottom:183.534667pt;}
.y38{bottom:183.874667pt;}
.y16f{bottom:183.894667pt;}
.y174{bottom:184.316000pt;}
.y296{bottom:187.984000pt;}
.y1dd{bottom:189.312000pt;}
.yd9{bottom:194.434667pt;}
.y173{bottom:196.270667pt;}
.y167{bottom:196.733333pt;}
.y80{bottom:198.080000pt;}
.y37{bottom:198.420000pt;}
.y295{bottom:198.610667pt;}
.y1b4{bottom:199.988000pt;}
.y1dc{bottom:201.268000pt;}
.y172{bottom:208.226667pt;}
.yd8{bottom:208.980000pt;}
.yf5{bottom:208.981333pt;}
.y294{bottom:209.237333pt;}
.y166{bottom:211.278667pt;}
.y7f{bottom:212.625333pt;}
.y36{bottom:212.965333pt;}
.y1db{bottom:213.222667pt;}
.y1b3{bottom:214.533333pt;}
.y257{bottom:217.470667pt;}
.y293{bottom:219.865333pt;}
.yd7{bottom:223.525333pt;}
.yf4{bottom:223.526667pt;}
.y220{bottom:225.178667pt;}
.y165{bottom:225.824000pt;}
.y7e{bottom:227.170667pt;}
.y35{bottom:227.510667pt;}
.y1b2{bottom:229.078667pt;}
.y292{bottom:230.492000pt;}
.y256{bottom:232.016000pt;}
.y1da{bottom:234.344000pt;}
.y21f{bottom:237.133333pt;}
.yd6{bottom:238.070667pt;}
.yf3{bottom:238.072000pt;}
.y164{bottom:240.369333pt;}
.y291{bottom:241.118667pt;}
.y7d{bottom:241.716000pt;}
.y34{bottom:242.056000pt;}
.y1b1{bottom:243.624000pt;}
.y255{bottom:246.561333pt;}
.y134{bottom:246.794667pt;}
.y21e{bottom:249.088000pt;}
.y290{bottom:251.745333pt;}
.yd5{bottom:252.616000pt;}
.yf2{bottom:252.617333pt;}
.y163{bottom:254.914667pt;}
.y7c{bottom:256.261333pt;}
.y33{bottom:256.601333pt;}
.y4d{bottom:256.602667pt;}
.y1b0{bottom:258.169333pt;}
.y21d{bottom:261.044000pt;}
.y254{bottom:261.108000pt;}
.y28f{bottom:262.372000pt;}
.yd4{bottom:267.162667pt;}
.y162{bottom:269.460000pt;}
.y7b{bottom:270.806667pt;}
.y32{bottom:271.146667pt;}
.y4c{bottom:271.148000pt;}
.y1d9{bottom:272.596000pt;}
.y1af{bottom:272.714667pt;}
.y21c{bottom:272.998667pt;}
.y253{bottom:275.653333pt;}
.yd3{bottom:281.708000pt;}
.y28e{bottom:283.625333pt;}
.y161{bottom:284.006667pt;}
.y21b{bottom:284.953333pt;}
.y7a{bottom:285.352000pt;}
.y31{bottom:285.692000pt;}
.y4b{bottom:285.693333pt;}
.y1ae{bottom:287.260000pt;}
.y252{bottom:290.198667pt;}
.y28d{bottom:294.252000pt;}
.yd2{bottom:296.253333pt;}
.y21a{bottom:296.909333pt;}
.y160{bottom:298.552000pt;}
.y79{bottom:299.897333pt;}
.y30{bottom:300.238667pt;}
.y1ad{bottom:301.805333pt;}
.y1d8{bottom:304.573333pt;}
.y251{bottom:304.744000pt;}
.y28c{bottom:304.878667pt;}
.y219{bottom:308.864000pt;}
.yd1{bottom:310.798667pt;}
.y15f{bottom:313.097333pt;}
.y78{bottom:314.442667pt;}
.y2f{bottom:314.784000pt;}
.y28b{bottom:315.506667pt;}
.y1ac{bottom:316.352000pt;}
.y1d7{bottom:319.118667pt;}
.y250{bottom:319.289333pt;}
.y218{bottom:320.820000pt;}
.yd0{bottom:325.344000pt;}
.y28a{bottom:326.133333pt;}
.y15e{bottom:327.642667pt;}
.y77{bottom:328.989333pt;}
.y2e{bottom:329.329333pt;}
.y1ab{bottom:330.897333pt;}
.y217{bottom:332.774667pt;}
.y1d6{bottom:333.664000pt;}
.y24f{bottom:333.834667pt;}
.y289{bottom:336.760000pt;}
.ycf{bottom:339.889333pt;}
.y15d{bottom:342.188000pt;}
.y76{bottom:343.534667pt;}
.y2d{bottom:343.874667pt;}
.y216{bottom:344.729333pt;}
.y1aa{bottom:345.442667pt;}
.y288{bottom:347.386667pt;}
.y1d5{bottom:348.209333pt;}
.y24e{bottom:348.380000pt;}
.yce{bottom:354.434667pt;}
.y15c{bottom:356.733333pt;}
.y287{bottom:358.013333pt;}
.y75{bottom:358.080000pt;}
.y2c{bottom:358.420000pt;}
.y1d4{bottom:362.754667pt;}
.y11a{bottom:362.873333pt;}
.y24d{bottom:362.925333pt;}
.y215{bottom:365.594667pt;}
.y286{bottom:368.640000pt;}
.ycd{bottom:368.980000pt;}
.y1bc{bottom:371.278667pt;}
.y74{bottom:372.625333pt;}
.y2b{bottom:372.965333pt;}
.y1{bottom:373.104000pt;}
.y119{bottom:373.500000pt;}
.y1a9{bottom:374.533333pt;}
.y1d3{bottom:377.300000pt;}
.y24c{bottom:377.470667pt;}
.y118{bottom:377.509333pt;}
.y285{bottom:379.266667pt;}
.y214{bottom:381.534667pt;}
.ycc{bottom:383.525333pt;}
.yf1{bottom:383.526667pt;}
.y15b{bottom:385.824000pt;}
.y73{bottom:387.170667pt;}
.y2a{bottom:387.510667pt;}
.y1a8{bottom:389.078667pt;}
.y284{bottom:389.893333pt;}
.y1d2{bottom:391.845333pt;}
.y24b{bottom:392.016000pt;}
.y117{bottom:392.121333pt;}
.ycb{bottom:398.070667pt;}
.yf0{bottom:398.072000pt;}
.y15a{bottom:400.369333pt;}
.y283{bottom:400.520000pt;}
.y213{bottom:401.277333pt;}
.y72{bottom:401.716000pt;}
.y29{bottom:402.056000pt;}
.y116{bottom:402.724000pt;}
.y1a7{bottom:403.624000pt;}
.y1d1{bottom:406.390667pt;}
.y24a{bottom:406.561333pt;}
.y282{bottom:411.148000pt;}
.yca{bottom:412.616000pt;}
.yef{bottom:412.617333pt;}
.y212{bottom:413.233333pt;}
.y159{bottom:414.914667pt;}
.y71{bottom:416.261333pt;}
.y28{bottom:416.601333pt;}
.y115{bottom:417.336000pt;}
.y1a6{bottom:418.169333pt;}
.y1d0{bottom:420.936000pt;}
.y249{bottom:421.108000pt;}
.y281{bottom:421.774667pt;}
.y211{bottom:425.188000pt;}
.yc9{bottom:427.161333pt;}
.yee{bottom:427.162667pt;}
.y114{bottom:427.962667pt;}
.y158{bottom:429.460000pt;}
.y70{bottom:430.806667pt;}
.y27{bottom:431.146667pt;}
.y4a{bottom:431.148000pt;}
.y280{bottom:432.401333pt;}
.y1a5{bottom:432.714667pt;}
.y248{bottom:435.653333pt;}
.y210{bottom:437.142667pt;}
.y113{bottom:438.589333pt;}
.yc8{bottom:441.708000pt;}
.y27f{bottom:443.028000pt;}
.y157{bottom:444.005333pt;}
.y6f{bottom:445.352000pt;}
.y26{bottom:445.692000pt;}
.y49{bottom:445.693333pt;}
.y1a4{bottom:447.260000pt;}
.y1cf{bottom:448.893333pt;}
.y20f{bottom:449.098667pt;}
.y112{bottom:449.216000pt;}
.y247{bottom:450.198667pt;}
.y27e{bottom:453.654667pt;}
.yc7{bottom:456.253333pt;}
.y156{bottom:458.552000pt;}
.y111{bottom:459.842667pt;}
.y6e{bottom:459.897333pt;}
.y25{bottom:460.237333pt;}
.y48{bottom:460.238667pt;}
.y20e{bottom:461.053333pt;}
.y1a3{bottom:461.805333pt;}
.y1ce{bottom:463.438667pt;}
.ya2{bottom:463.733333pt;}
.y27d{bottom:464.281333pt;}
.y246{bottom:464.744000pt;}
.y110{bottom:470.470667pt;}
.yc6{bottom:470.798667pt;}
.y20d{bottom:473.009333pt;}
.y155{bottom:473.097333pt;}
.y6d{bottom:474.442667pt;}
.y24{bottom:474.784000pt;}
.y27c{bottom:474.908000pt;}
.y1a2{bottom:476.350667pt;}
.y1cd{bottom:477.984000pt;}
.ya1{bottom:478.278667pt;}
.y245{bottom:479.289333pt;}
.y10f{bottom:481.097333pt;}
.y20c{bottom:484.964000pt;}
.yc5{bottom:485.344000pt;}
.y27b{bottom:485.534667pt;}
.y154{bottom:487.642667pt;}
.y196{bottom:488.988000pt;}
.y6c{bottom:488.989333pt;}
.y23{bottom:489.329333pt;}
.y1a1{bottom:490.897333pt;}
.y10e{bottom:491.724000pt;}
.y1cc{bottom:492.530667pt;}
.ya0{bottom:492.824000pt;}
.y244{bottom:493.834667pt;}
.y27a{bottom:496.161333pt;}
.y20b{bottom:496.918667pt;}
.yc4{bottom:499.889333pt;}
.y153{bottom:502.188000pt;}
.y10d{bottom:502.350667pt;}
.y6b{bottom:503.534667pt;}
.y22{bottom:503.874667pt;}
.y1a0{bottom:505.442667pt;}
.y279{bottom:506.789333pt;}
.y1cb{bottom:507.076000pt;}
.y9f{bottom:507.369333pt;}
.y243{bottom:508.380000pt;}
.y20a{bottom:508.874667pt;}
.y10c{bottom:512.977333pt;}
.yc3{bottom:514.434667pt;}
.y152{bottom:516.733333pt;}
.y278{bottom:517.416000pt;}
.y6a{bottom:518.080000pt;}
.y21{bottom:518.420000pt;}
.y19f{bottom:519.988000pt;}
.y1ca{bottom:521.621333pt;}
.y9e{bottom:521.916000pt;}
.y242{bottom:522.925333pt;}
.y277{bottom:528.042667pt;}
.yc2{bottom:528.980000pt;}
.y151{bottom:531.278667pt;}
.y69{bottom:532.625333pt;}
.y20{bottom:532.965333pt;}
.y209{bottom:534.274667pt;}
.y19e{bottom:534.533333pt;}
.y1c9{bottom:536.166667pt;}
.y9d{bottom:536.461333pt;}
.y241{bottom:537.470667pt;}
.y276{bottom:538.669333pt;}
.yc1{bottom:543.525333pt;}
.y150{bottom:545.824000pt;}
.y208{bottom:546.230667pt;}
.y68{bottom:547.170667pt;}
.y1f{bottom:547.510667pt;}
.y66{bottom:548.196000pt;}
.y19d{bottom:549.078667pt;}
.y275{bottom:549.296000pt;}
.y1c8{bottom:550.712000pt;}
.y9c{bottom:551.006667pt;}
.y240{bottom:552.016000pt;}
.y10b{bottom:555.388000pt;}
.yc0{bottom:558.070667pt;}
.yed{bottom:558.072000pt;}
.y207{bottom:558.185333pt;}
.y274{bottom:559.922667pt;}
.y14f{bottom:560.369333pt;}
.y67{bottom:561.716000pt;}
.y1e{bottom:562.056000pt;}
.y1c7{bottom:565.257333pt;}
.y9b{bottom:565.552000pt;}
.y10a{bottom:566.014667pt;}
.y23f{bottom:566.561333pt;}
.y206{bottom:570.140000pt;}
.y273{bottom:570.549333pt;}
.ybf{bottom:572.616000pt;}
.yec{bottom:572.617333pt;}
.y14e{bottom:574.914667pt;}
.y195{bottom:576.261333pt;}
.y1d{bottom:576.601333pt;}
.y108{bottom:576.641333pt;}
.y19c{bottom:578.169333pt;}
.y1c6{bottom:579.802667pt;}
.y9a{bottom:580.097333pt;}
.y109{bottom:580.650667pt;}
.y23e{bottom:581.106667pt;}
.y272{bottom:581.176000pt;}
.y205{bottom:582.096000pt;}
.y133{bottom:582.902667pt;}
.ybe{bottom:587.161333pt;}
.yeb{bottom:587.162667pt;}
.y107{bottom:587.269333pt;}
.y14d{bottom:589.460000pt;}
.y194{bottom:590.806667pt;}
.y1c{bottom:591.146667pt;}
.y65{bottom:591.257333pt;}
.y271{bottom:591.802667pt;}
.y19b{bottom:592.714667pt;}
.y204{bottom:594.050667pt;}
.y1c5{bottom:594.348000pt;}
.y99{bottom:594.642667pt;}
.y23d{bottom:595.653333pt;}
.y105{bottom:597.896000pt;}
.ybd{bottom:601.706667pt;}
.yea{bottom:601.708000pt;}
.y106{bottom:601.904000pt;}
.y270{bottom:602.430667pt;}
.y14c{bottom:604.005333pt;}
.y193{bottom:605.352000pt;}
.y1b{bottom:605.692000pt;}
.y47{bottom:605.693333pt;}
.y64{bottom:605.802667pt;}
.y203{bottom:606.006667pt;}
.y19a{bottom:607.260000pt;}
.y104{bottom:608.522667pt;}
.y1c4{bottom:608.893333pt;}
.y98{bottom:609.188000pt;}
.y23c{bottom:610.198667pt;}
.y26f{bottom:613.057333pt;}
.ybc{bottom:616.253333pt;}
.y202{bottom:617.961333pt;}
.y14b{bottom:618.552000pt;}
.y102{bottom:619.149333pt;}
.y1a{bottom:620.237333pt;}
.y46{bottom:620.238667pt;}
.y199{bottom:621.805333pt;}
.y103{bottom:623.157333pt;}
.y1c3{bottom:623.438667pt;}
.y26e{bottom:623.684000pt;}
.y97{bottom:623.733333pt;}
.y23b{bottom:624.744000pt;}
.y192{bottom:626.540000pt;}
.y100{bottom:629.776000pt;}
.y201{bottom:629.916000pt;}
.y132{bottom:630.772000pt;}
.ybb{bottom:630.798667pt;}
.y14a{bottom:633.097333pt;}
.y101{bottom:633.785333pt;}
.y26d{bottom:634.310667pt;}
.y19{bottom:634.782667pt;}
.y45{bottom:634.784000pt;}
.y198{bottom:636.350667pt;}
.y1c2{bottom:637.984000pt;}
.y96{bottom:638.278667pt;}
.y23a{bottom:639.289333pt;}
.yff{bottom:640.402667pt;}
.y63{bottom:641.608000pt;}
.y200{bottom:641.872000pt;}
.y26c{bottom:644.937333pt;}
.y131{bottom:645.317333pt;}
.yba{bottom:645.344000pt;}
.y149{bottom:647.642667pt;}
.y2bb{bottom:648.837333pt;}
.y18{bottom:649.329333pt;}
.y197{bottom:650.897333pt;}
.yfe{bottom:651.029333pt;}
.y1c1{bottom:652.529333pt;}
.y95{bottom:652.824000pt;}
.y1ff{bottom:653.826667pt;}
.y239{bottom:653.834667pt;}
.yfd{bottom:655.038667pt;}
.y26b{bottom:655.564000pt;}
.y62{bottom:656.220000pt;}
.y2ba{bottom:659.464000pt;}
.y130{bottom:659.862667pt;}
.yb9{bottom:659.889333pt;}
.yfc{bottom:661.656000pt;}
.y148{bottom:662.188000pt;}
.y17{bottom:663.874667pt;}
.y191{bottom:665.442667pt;}
.y1fe{bottom:665.781333pt;}
.y26a{bottom:666.190667pt;}
.y1c0{bottom:667.076000pt;}
.y94{bottom:667.369333pt;}
.y2b9{bottom:670.092000pt;}
.y61{bottom:670.830667pt;}
.yfb{bottom:672.284000pt;}
.y12f{bottom:674.408000pt;}
.yb8{bottom:674.434667pt;}
.y147{bottom:676.733333pt;}
.y269{bottom:676.817333pt;}
.y1fd{bottom:677.737333pt;}
.y16{bottom:678.420000pt;}
.y238{bottom:678.462667pt;}
.y190{bottom:679.988000pt;}
.y2b8{bottom:680.718667pt;}
.y1bf{bottom:681.621333pt;}
.y93{bottom:681.916000pt;}
.yf9{bottom:682.910667pt;}
.y60{bottom:685.442667pt;}
.yfa{bottom:686.918667pt;}
.y268{bottom:687.444000pt;}
.y12e{bottom:688.953333pt;}
.yb7{bottom:688.980000pt;}
.y237{bottom:690.417333pt;}
.y146{bottom:691.278667pt;}
.y2b7{bottom:691.345333pt;}
.y15{bottom:692.965333pt;}
.yf7{bottom:693.537333pt;}
.y18f{bottom:694.533333pt;}
.y1be{bottom:696.166667pt;}
.y92{bottom:696.461333pt;}
.yf8{bottom:697.545333pt;}
.y267{bottom:698.072000pt;}
.y5f{bottom:700.054667pt;}
.y2b6{bottom:701.972000pt;}
.y236{bottom:702.373333pt;}
.y1fc{bottom:703.137333pt;}
.y12d{bottom:703.500000pt;}
.yb6{bottom:703.525333pt;}
.y145{bottom:705.824000pt;}
.y14{bottom:707.510667pt;}
.y266{bottom:708.698667pt;}
.y18e{bottom:709.078667pt;}
.y91{bottom:711.006667pt;}
.y2b5{bottom:712.598667pt;}
.y235{bottom:714.328000pt;}
.y5e{bottom:714.666667pt;}
.y1fb{bottom:715.093333pt;}
.y1bd{bottom:717.353333pt;}
.y12c{bottom:718.045333pt;}
.yb5{bottom:718.070667pt;}
.y265{bottom:719.325333pt;}
.y144{bottom:720.369333pt;}
.y13{bottom:722.056000pt;}
.y2b4{bottom:723.225333pt;}
.y18d{bottom:723.624000pt;}
.y90{bottom:725.552000pt;}
.y234{bottom:726.282667pt;}
.y1fa{bottom:727.048000pt;}
.y5d{bottom:729.278667pt;}
.y264{bottom:729.952000pt;}
.y12b{bottom:732.590667pt;}
.yb4{bottom:732.616000pt;}
.ye9{bottom:732.617333pt;}
.y2b3{bottom:733.852000pt;}
.y143{bottom:734.914667pt;}
.y12{bottom:736.601333pt;}
.y18c{bottom:738.169333pt;}
.y233{bottom:738.238667pt;}
.y1f9{bottom:739.004000pt;}
.y8f{bottom:740.097333pt;}
.y263{bottom:740.578667pt;}
.y5c{bottom:743.890667pt;}
.y2b2{bottom:744.478667pt;}
.y12a{bottom:747.136000pt;}
.yb3{bottom:747.161333pt;}
.ye8{bottom:747.162667pt;}
.y142{bottom:749.460000pt;}
.y232{bottom:750.193333pt;}
.y1f8{bottom:750.958667pt;}
.y11{bottom:751.146667pt;}
.y262{bottom:751.205333pt;}
.y18b{bottom:752.714667pt;}
.y8e{bottom:754.642667pt;}
.y2b1{bottom:755.105333pt;}
.y5b{bottom:758.502667pt;}
.y129{bottom:761.681333pt;}
.yb2{bottom:761.706667pt;}
.ye7{bottom:761.708000pt;}
.y261{bottom:761.832000pt;}
.y231{bottom:762.149333pt;}
.y1f7{bottom:762.913333pt;}
.y141{bottom:764.005333pt;}
.y10{bottom:765.692000pt;}
.y2b0{bottom:765.733333pt;}
.y18a{bottom:767.260000pt;}
.y8d{bottom:769.188000pt;}
.y5a{bottom:773.114667pt;}
.y230{bottom:774.104000pt;}
.y1f6{bottom:774.869333pt;}
.y128{bottom:776.226667pt;}
.yb1{bottom:776.252000pt;}
.ye6{bottom:776.253333pt;}
.y2af{bottom:776.360000pt;}
.y260{bottom:776.884000pt;}
.y140{bottom:778.550667pt;}
.yf{bottom:780.237333pt;}
.y44{bottom:780.238667pt;}
.y189{bottom:781.805333pt;}
.y8c{bottom:783.733333pt;}
.y22f{bottom:786.058667pt;}
.y1f5{bottom:786.824000pt;}
.y2ae{bottom:786.986667pt;}
.y59{bottom:787.726667pt;}
.y127{bottom:790.772000pt;}
.yb0{bottom:790.798667pt;}
.y13f{bottom:793.097333pt;}
.ye{bottom:794.782667pt;}
.y43{bottom:794.784000pt;}
.y188{bottom:796.350667pt;}
.y2ad{bottom:797.613333pt;}
.y22e{bottom:798.014667pt;}
.y8b{bottom:798.278667pt;}
.y1f4{bottom:798.778667pt;}
.y25f{bottom:800.269333pt;}
.y58{bottom:802.338667pt;}
.y126{bottom:805.317333pt;}
.yaf{bottom:805.344000pt;}
.y13e{bottom:807.642667pt;}
.y2ac{bottom:808.240000pt;}
.yd{bottom:809.328000pt;}
.y42{bottom:809.329333pt;}
.y22d{bottom:809.969333pt;}
.y1f2{bottom:810.734667pt;}
.y25e{bottom:812.225333pt;}
.y8a{bottom:812.824000pt;}
.y1f3{bottom:814.485333pt;}
.y57{bottom:816.950667pt;}
.y2ab{bottom:818.866667pt;}
.y125{bottom:819.862667pt;}
.yae{bottom:819.889333pt;}
.y22c{bottom:821.924000pt;}
.y13d{bottom:822.188000pt;}
.y1f1{bottom:822.689333pt;}
.yc{bottom:823.874667pt;}
.y25d{bottom:824.180000pt;}
.y2aa{bottom:829.493333pt;}
.y56{bottom:831.561333pt;}
.y22b{bottom:833.880000pt;}
.y89{bottom:834.012000pt;}
.y124{bottom:834.408000pt;}
.yad{bottom:834.434667pt;}
.y1ef{bottom:834.645333pt;}
.y25c{bottom:836.134667pt;}
.y13c{bottom:836.733333pt;}
.y1f0{bottom:838.394667pt;}
.yb{bottom:838.420000pt;}
.y2a9{bottom:840.120000pt;}
.y22a{bottom:845.834667pt;}
.y55{bottom:846.173333pt;}
.y1ee{bottom:846.600000pt;}
.y25b{bottom:848.090667pt;}
.y123{bottom:848.953333pt;}
.yac{bottom:848.980000pt;}
.y187{bottom:849.086667pt;}
.y2a8{bottom:850.746667pt;}
.y13b{bottom:851.278667pt;}
.ya{bottom:852.965333pt;}
.y229{bottom:857.790667pt;}
.y1ed{bottom:858.554667pt;}
.y25a{bottom:860.045333pt;}
.y2a7{bottom:861.374667pt;}
.y186{bottom:863.300000pt;}
.y122{bottom:863.500000pt;}
.yab{bottom:863.525333pt;}
.y13a{bottom:865.824000pt;}
.y9{bottom:867.510667pt;}
.y228{bottom:869.745333pt;}
.y1ec{bottom:870.510667pt;}
.y259{bottom:872.001333pt;}
.y54{bottom:875.306667pt;}
.y185{bottom:876.584000pt;}
.y121{bottom:878.045333pt;}
.yaa{bottom:878.070667pt;}
.y139{bottom:880.369333pt;}
.y227{bottom:881.700000pt;}
.y8{bottom:882.056000pt;}
.y2a6{bottom:882.628000pt;}
.y258{bottom:883.956000pt;}
.y184{bottom:890.398667pt;}
.y120{bottom:892.590667pt;}
.ya9{bottom:892.616000pt;}
.y2a5{bottom:893.254667pt;}
.y226{bottom:893.656000pt;}
.y138{bottom:894.914667pt;}
.y1eb{bottom:895.910667pt;}
.y53{bottom:896.560000pt;}
.y7{bottom:896.601333pt;}
.y183{bottom:903.682667pt;}
.y2a4{bottom:903.881333pt;}
.y225{bottom:905.610667pt;}
.y11f{bottom:907.136000pt;}
.ya8{bottom:907.161333pt;}
.ye5{bottom:907.162667pt;}
.y1ea{bottom:907.866667pt;}
.y137{bottom:909.460000pt;}
.y6{bottom:911.146667pt;}
.y2a3{bottom:914.508000pt;}
.y182{bottom:916.965333pt;}
.y224{bottom:917.565333pt;}
.y1e9{bottom:919.821333pt;}
.y11e{bottom:921.681333pt;}
.ya7{bottom:921.706667pt;}
.ye4{bottom:921.708000pt;}
.y136{bottom:924.005333pt;}
.y2a2{bottom:925.134667pt;}
.y5{bottom:925.692000pt;}
.y52{bottom:927.422667pt;}
.y181{bottom:930.780000pt;}
.y1e8{bottom:931.777333pt;}
.y223{bottom:932.149333pt;}
.y2a1{bottom:935.761333pt;}
.y11d{bottom:936.226667pt;}
.ya6{bottom:936.252000pt;}
.ye3{bottom:936.253333pt;}
.y135{bottom:938.550667pt;}
.y221{bottom:940.110667pt;}
.y4{bottom:940.237333pt;}
.y1e7{bottom:943.732000pt;}
.y180{bottom:944.064000pt;}
.y2a0{bottom:946.388000pt;}
.y222{bottom:947.510667pt;}
.ya5{bottom:950.797333pt;}
.ye2{bottom:950.798667pt;}
.y11c{bottom:953.097333pt;}
.y3{bottom:954.782667pt;}
.y41{bottom:954.784000pt;}
.y1e6{bottom:955.686667pt;}
.y29f{bottom:957.016000pt;}
.y17f{bottom:957.878667pt;}
.y51{bottom:959.304000pt;}
.ya4{bottom:965.344000pt;}
.y11b{bottom:967.642667pt;}
.y2{bottom:969.328000pt;}
.y40{bottom:969.329333pt;}
.y17e{bottom:971.362667pt;}
.he{height:15.207014pt;}
.hd{height:18.701654pt;}
.hc{height:18.729688pt;}
.h2{height:22.442222pt;}
.h15{height:23.002222pt;}
.hf{height:25.403229pt;}
.h5{height:26.182395pt;}
.h7{height:27.895200pt;}
.h10{height:28.052877pt;}
.h6{height:29.922963pt;}
.h13{height:30.350141pt;}
.h11{height:31.880400pt;}
.hb{height:33.663136pt;}
.h9{height:35.865600pt;}
.ha{height:37.403704pt;}
.h4{height:42.758562pt;}
.h12{height:62.696400pt;}
.h14{height:63.725733pt;}
.h3{height:83.696772pt;}
.h8{height:98.914541pt;}
.h1{height:307.495173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:35.033333pt;}
.x3a{left:39.242667pt;}
.x67{left:41.222667pt;}
.x3{left:43.453333pt;}
.x2a{left:45.221333pt;}
.x2{left:47.874667pt;}
.x1c{left:67.704000pt;}
.x6{left:69.141333pt;}
.x1d{left:72.529333pt;}
.x48{left:73.681333pt;}
.x2c{left:75.118667pt;}
.x39{left:78.276000pt;}
.x30{left:79.842667pt;}
.x19{left:85.081333pt;}
.x1a{left:89.764000pt;}
.x49{left:90.737333pt;}
.xe{left:94.642667pt;}
.x1b{left:95.908000pt;}
.x4a{left:98.229333pt;}
.x31{left:100.570667pt;}
.x3b{left:102.094667pt;}
.x7a{left:103.042667pt;}
.x4b{left:110.516000pt;}
.x7b{left:112.708000pt;}
.x76{left:114.308000pt;}
.x69{left:120.160000pt;}
.x77{left:123.178667pt;}
.x7c{left:124.357333pt;}
.x89{left:125.282667pt;}
.x78{left:127.657333pt;}
.x6a{left:131.450667pt;}
.x2d{left:138.328000pt;}
.x79{left:139.633333pt;}
.x2e{left:143.512000pt;}
.x74{left:147.737333pt;}
.x6b{left:155.012000pt;}
.x6c{left:160.768000pt;}
.x9e{left:162.965333pt;}
.x6d{left:165.537333pt;}
.x17{left:168.238667pt;}
.x37{left:170.814667pt;}
.x18{left:174.381333pt;}
.x38{left:176.460000pt;}
.x1e{left:178.874667pt;}
.x7{left:180.150667pt;}
.x20{left:182.436000pt;}
.x6e{left:184.212000pt;}
.x8{left:187.508000pt;}
.x1f{left:191.162667pt;}
.xf{left:193.866667pt;}
.x6f{left:195.504000pt;}
.x36{left:197.137333pt;}
.x10{left:200.009333pt;}
.x4e{left:205.525333pt;}
.x11{left:208.569333pt;}
.x7d{left:210.257333pt;}
.x44{left:211.364000pt;}
.x32{left:212.530667pt;}
.x12{left:214.713333pt;}
.x75{left:216.224000pt;}
.x33{left:217.253333pt;}
.x70{left:223.377333pt;}
.x4f{left:225.358667pt;}
.x23{left:231.152000pt;}
.x71{left:234.668000pt;}
.x50{left:237.646667pt;}
.x24{left:243.438667pt;}
.x34{left:246.664000pt;}
.x2f{left:248.329333pt;}
.x35{left:250.234667pt;}
.x13{left:253.152000pt;}
.x14{left:259.296000pt;}
.x4c{left:267.853333pt;}
.x72{left:269.957333pt;}
.x5f{left:272.534667pt;}
.x42{left:273.481333pt;}
.x73{left:275.602667pt;}
.x40{left:276.880000pt;}
.x45{left:279.094667pt;}
.x4d{left:280.140000pt;}
.x60{left:284.821333pt;}
.x41{left:286.457333pt;}
.x87{left:289.054667pt;}
.x9{left:296.820000pt;}
.xa{left:304.177333pt;}
.x1{left:306.900000pt;}
.x3e{left:312.758667pt;}
.x51{left:314.664000pt;}
.x46{left:321.949333pt;}
.x52{left:326.950667pt;}
.x5d{left:328.388000pt;}
.x25{left:331.030667pt;}
.x43{left:335.061333pt;}
.x82{left:338.246667pt;}
.x5e{left:340.674667pt;}
.x26{left:343.317333pt;}
.x21{left:353.180000pt;}
.x83{left:356.085333pt;}
.x84{left:360.564000pt;}
.x22{left:365.466667pt;}
.x85{left:370.400000pt;}
.x3c{left:374.880000pt;}
.x7e{left:377.405333pt;}
.x86{left:380.386667pt;}
.x88{left:381.446667pt;}
.x7f{left:384.866667pt;}
.x3d{left:387.166667pt;}
.x80{left:389.345333pt;}
.x81{left:393.422667pt;}
.xb{left:395.996000pt;}
.xc{left:403.353333pt;}
.x64{left:417.982667pt;}
.x3f{left:418.965333pt;}
.x65{left:422.765333pt;}
.x9b{left:424.076000pt;}
.x53{left:425.397333pt;}
.x9c{left:428.554667pt;}
.x27{left:434.833333pt;}
.x9d{left:439.846667pt;}
.x54{left:441.337333pt;}
.x15{left:443.448000pt;}
.x59{left:446.162667pt;}
.x28{left:447.121333pt;}
.x16{left:449.592000pt;}
.x9f{left:456.109333pt;}
.x5a{left:458.450667pt;}
.x47{left:482.008000pt;}
.x95{left:489.893333pt;}
.x96{left:493.970667pt;}
.xd{left:507.308000pt;}
.x9a{left:518.990667pt;}
.x8a{left:521.454667pt;}
.x8d{left:532.758667pt;}
.x8e{left:549.898667pt;}
.x29{left:554.500000pt;}
.x8f{left:558.414667pt;}
.x90{left:564.122667pt;}
.x61{left:566.985333pt;}
.x91{left:574.110667pt;}
.x8c{left:587.578667pt;}
.x62{left:606.646667pt;}
.x8b{left:614.002667pt;}
.x63{left:618.933333pt;}
.x98{left:667.688000pt;}
.x55{left:677.770667pt;}
.x99{left:678.980000pt;}
.x66{left:688.210667pt;}
.x56{left:690.058667pt;}
.x57{left:697.508000pt;}
.x58{left:709.794667pt;}
.x92{left:714.381333pt;}
.x93{left:720.089333pt;}
.x94{left:730.076000pt;}
.x97{left:741.370667pt;}
.x5c{left:755.921333pt;}
.x5{left:760.132000pt;}
.x68{left:761.898667pt;}
.x4{left:764.341333pt;}
.x2b{left:766.321333pt;}
}




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