
    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_0f5daa0de3faac0dcab17584.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_ea4ea604d95749cf740ac6f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a0711e8f5e0d68f21032e21.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6708fac479c1ae65010c034.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.843000;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_d23236bd800474ebbad731fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_792c7f6b0799fa198f9c1a4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2010bd7a424573e7cceebd42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_bbffaff3c5eb2d75e280a4b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dab81e78d37391cc861812dd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0b50cec44ca190bff3441ef1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.729000;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_5ea29561df0b06dffcd9a895.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767000;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_e58ae0bb8745f0a136cc5812.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.729000;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_37b4c2fce43565c4efb1b421.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752000;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_df1b5bdd47319f5ccebac833.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_01bd72a53681dcab19a5ecd3.woff2')format("woff");}.fff{font-family:fff;line-height:0.917000;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:ff10;src:url('chunks/assets/font_aa329745dbfa9ac1d0b8e074.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684000;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:ff11;src:url('chunks/assets/font_ed0442848bd176d5e902a0ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.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:ff12;src:url('chunks/assets/font_95871b071a9efcbc729b4126.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.898200;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:ff13;src:url('chunks/assets/font_4531b9803cc27ac31e97f0c7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.653000;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:ff14;src:url('chunks/assets/font_db2d58af9b0b6ff94861c520.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.521000;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:ff15;src:url('chunks/assets/font_c21bac23c0b5bf3077651114.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_ece11725e0273343dd49b1ec.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b98f75c9857d93a53646ef01.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;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:ff18;src:url('chunks/assets/font_b98f75c9857d93a53646ef01.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;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:ff19;src:url('chunks/assets/font_ef949b203b6fefb98075991f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;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:ff1a;src:url('chunks/assets/font_81ce759bf19c87ff6cae0936.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;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:ff1b;src:url('chunks/assets/font_5713d758828bd7e61f17bf60.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;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:ff1c;src:url('chunks/assets/font_0d223543fd580fafc79a4011.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;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:ff1d;src:url('chunks/assets/font_f3a54305cb92b4fada08b2d5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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:ff1e;src:url('chunks/assets/font_76a88e998fa6d9e6d494235b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.926758;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;}
.m10{transform:matrix(0.000000,-0.163395,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.163395,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.163395,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.166647,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.166647,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.166647,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.226424,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.226424,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.226424,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.236727,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.236727,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.236727,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.236939,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.236939,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.236939,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.043477,-0.234027,0.246571,0.041265,0,0);-ms-transform:matrix(0.043477,-0.234027,0.246571,0.041265,0,0);-webkit-transform:matrix(0.043477,-0.234027,0.246571,0.041265,0,0);}
.m3{transform:matrix(0.164094,-0.185610,0.195559,0.155746,0,0);-ms-transform:matrix(0.164094,-0.185610,0.195559,0.155746,0,0);-webkit-transform:matrix(0.164094,-0.185610,0.195559,0.155746,0,0);}
.m5{transform:matrix(0.180861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180861,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195040,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263400,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.264017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264017,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276029,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.276031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276031,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.375045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375045,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.382510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382510,0.000000,0.000000,0.250000,0,0);}
.v1c{vertical-align:-66.354000px;}
.ve{vertical-align:-48.420000px;}
.v23{vertical-align:-46.554000px;}
.v1e{vertical-align:-37.590000px;}
.v11{vertical-align:-35.700000px;}
.v12{vertical-align:-34.602000px;}
.v16{vertical-align:-29.844000px;}
.v10{vertical-align:-26.070000px;}
.v13{vertical-align:-12.912000px;}
.v17{vertical-align:-10.950000px;}
.v3{vertical-align:-8.970000px;}
.vc{vertical-align:-5.976000px;}
.v1{vertical-align:-4.642368px;}
.v24{vertical-align:-1.728000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.814000px;}
.v8{vertical-align:7.962000px;}
.v31{vertical-align:13.596000px;}
.v9{vertical-align:14.778000px;}
.v2{vertical-align:16.248288px;}
.v2e{vertical-align:17.268000px;}
.v15{vertical-align:20.226000px;}
.v4{vertical-align:21.696000px;}
.v14{vertical-align:24.678000px;}
.vf{vertical-align:26.070000px;}
.v19{vertical-align:28.758000px;}
.v22{vertical-align:30.054000px;}
.v1b{vertical-align:31.752000px;}
.v29{vertical-align:33.474000px;}
.vb{vertical-align:36.468000px;}
.v6{vertical-align:38.622000px;}
.v2f{vertical-align:41.004000px;}
.v27{vertical-align:44.856000px;}
.v2a{vertical-align:46.002000px;}
.v2b{vertical-align:47.010000px;}
.v5{vertical-align:48.420000px;}
.v26{vertical-align:53.826000px;}
.v20{vertical-align:56.790000px;}
.vd{vertical-align:63.198000px;}
.v7{vertical-align:65.346000px;}
.v18{vertical-align:66.348000px;}
.v2d{vertical-align:68.700000px;}
.v1a{vertical-align:74.124000px;}
.v28{vertical-align:75.516000px;}
.v1f{vertical-align:81.126000px;}
.v30{vertical-align:83.016000px;}
.v2c{vertical-align:95.430000px;}
.v25{vertical-align:102.216000px;}
.v21{vertical-align:105.372000px;}
.v1d{vertical-align:127.314000px;}
.ls0{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000300px;}
.ls2a{letter-spacing:0.000843px;}
.ls40{letter-spacing:0.000961px;}
.ls51{letter-spacing:0.001140px;}
.lsc{letter-spacing:0.001690px;}
.ls58{letter-spacing:0.002012px;}
.ls38{letter-spacing:0.002207px;}
.ls5b{letter-spacing:0.002338px;}
.ls7{letter-spacing:0.003031px;}
.ls1c{letter-spacing:0.003269px;}
.ls69{letter-spacing:0.003413px;}
.ls11{letter-spacing:0.003652px;}
.ls17{letter-spacing:0.004379px;}
.ls55{letter-spacing:0.004851px;}
.ls28{letter-spacing:0.006843px;}
.ls2e{letter-spacing:0.007690px;}
.ls56{letter-spacing:0.242196px;}
.ls15{letter-spacing:0.458387px;}
.ls5e{letter-spacing:1.170961px;}
.ls4d{letter-spacing:1.176961px;}
.ls8b{letter-spacing:2.142767px;}
.ls8d{letter-spacing:2.148767px;}
.ls84{letter-spacing:2.926010px;}
.ls6b{letter-spacing:2.983140px;}
.ls61{letter-spacing:2.983480px;}
.ls50{letter-spacing:2.984017px;}
.ls83{letter-spacing:2.985959px;}
.ls35{letter-spacing:2.986982px;}
.ls68{letter-spacing:2.987870px;}
.ls4c{letter-spacing:2.989140px;}
.ls57{letter-spacing:2.989480px;}
.lsf{letter-spacing:2.990017px;}
.ls46{letter-spacing:2.990177px;}
.ls67{letter-spacing:2.990845px;}
.ls60{letter-spacing:2.992087px;}
.ls62{letter-spacing:2.992982px;}
.ls89{letter-spacing:2.993251px;}
.ls9{letter-spacing:3.002207px;}
.ls63{letter-spacing:3.152177px;}
.ls52{letter-spacing:3.158177px;}
.ls74{letter-spacing:3.802362px;}
.ls29{letter-spacing:4.276379px;}
.ls85{letter-spacing:4.751996px;}
.ls30{letter-spacing:5.057251px;}
.ls7f{letter-spacing:5.402908px;}
.ls7c{letter-spacing:5.408908px;}
.ls20{letter-spacing:6.433866px;}
.ls26{letter-spacing:6.510305px;}
.ls25{letter-spacing:6.516305px;}
.ls92{letter-spacing:8.420908px;}
.ls79{letter-spacing:9.444538px;}
.ls5{letter-spacing:9.495031px;}
.ls6{letter-spacing:9.498538px;}
.ls43{letter-spacing:9.960300px;}
.ls1f{letter-spacing:9.962446px;}
.ls5d{letter-spacing:9.966300px;}
.ls9a{letter-spacing:11.625172px;}
.ls66{letter-spacing:12.949202px;}
.ls73{letter-spacing:12.949409px;}
.ls88{letter-spacing:12.953251px;}
.ls5a{letter-spacing:12.953535px;}
.ls6a{letter-spacing:12.955202px;}
.ls33{letter-spacing:13.270183px;}
.ls3d{letter-spacing:13.278538px;}
.ls9c{letter-spacing:13.280338px;}
.ls81{letter-spacing:13.282200px;}
.ls3b{letter-spacing:13.284538px;}
.ls53{letter-spacing:13.284843px;}
.ls78{letter-spacing:13.407652px;}
.lsb{letter-spacing:13.776538px;}
.lsa{letter-spacing:13.785031px;}
.ls24{letter-spacing:15.200446px;}
.ls22{letter-spacing:15.482481px;}
.ls9d{letter-spacing:15.564843px;}
.ls3{letter-spacing:15.999031px;}
.ls3a{letter-spacing:16.268017px;}
.ls9b{letter-spacing:16.274525px;}
.ls3c{letter-spacing:16.276087px;}
.ls1b{letter-spacing:16.393866px;}
.ls2f{letter-spacing:16.474362px;}
.ls94{letter-spacing:16.573140px;}
.ls1d{letter-spacing:16.599269px;}
.ls6e{letter-spacing:16.602538px;}
.ls75{letter-spacing:16.602843px;}
.ls72{letter-spacing:16.604338px;}
.ls1e{letter-spacing:16.604400px;}
.ls31{letter-spacing:16.605269px;}
.ls80{letter-spacing:16.608843px;}
.ls5f{letter-spacing:16.610012px;}
.ls45{letter-spacing:17.036400px;}
.ls44{letter-spacing:17.046843px;}
.ls6f{letter-spacing:17.442843px;}
.ls7a{letter-spacing:18.367140px;}
.ls4{letter-spacing:18.584446px;}
.ls3f{letter-spacing:18.636300px;}
.ls8c{letter-spacing:18.751140px;}
.ls65{letter-spacing:18.896845px;}
.ls87{letter-spacing:19.094174px;}
.ls76{letter-spacing:19.328177px;}
.ls6d{letter-spacing:19.597140px;}
.ls2d{letter-spacing:19.823251px;}
.ls9f{letter-spacing:19.928481px;}
.ls2{letter-spacing:20.168446px;}
.ls47{letter-spacing:20.186338px;}
.ls71{letter-spacing:20.404362px;}
.ls82{letter-spacing:20.454538px;}
.ls7b{letter-spacing:20.786908px;}
.ls37{letter-spacing:21.244982px;}
.ls8{letter-spacing:21.254207px;}
.ls6c{letter-spacing:21.775409px;}
.ls21{letter-spacing:21.924767px;}
.ls9e{letter-spacing:22.068767px;}
.ls8e{letter-spacing:22.597140px;}
.ls5c{letter-spacing:22.702982px;}
.ls90{letter-spacing:22.771140px;}
.ls36{letter-spacing:22.796446px;}
.ls77{letter-spacing:22.861690px;}
.lse{letter-spacing:22.888362px;}
.ls49{letter-spacing:22.918982px;}
.ls4a{letter-spacing:22.924982px;}
.ls4e{letter-spacing:23.068982px;}
.ls4f{letter-spacing:23.072177px;}
.ls4b{letter-spacing:23.090177px;}
.ls48{letter-spacing:23.174017px;}
.ls42{letter-spacing:23.174177px;}
.ls41{letter-spacing:23.176982px;}
.ls96{letter-spacing:23.368583px;}
.ls91{letter-spacing:23.772538px;}
.ls70{letter-spacing:23.959690px;}
.ls32{letter-spacing:24.052362px;}
.ls8a{letter-spacing:24.188908px;}
.ls97{letter-spacing:24.196583px;}
.ls2c{letter-spacing:25.658845px;}
.ls59{letter-spacing:26.284087px;}
.ls14{letter-spacing:27.792538px;}
.ls12{letter-spacing:29.270845px;}
.ls10{letter-spacing:29.272087px;}
.lsd{letter-spacing:29.420177px;}
.ls16{letter-spacing:29.624525px;}
.ls1a{letter-spacing:29.799031px;}
.ls1{letter-spacing:29.889030px;}
.ls18{letter-spacing:30.378538px;}
.ls2b{letter-spacing:30.756538px;}
.ls27{letter-spacing:30.948538px;}
.ls19{letter-spacing:31.178525px;}
.ls13{letter-spacing:34.032990px;}
.ls23{letter-spacing:35.653866px;}
.ls99{letter-spacing:37.673079px;}
.ls8f{letter-spacing:39.991140px;}
.ls98{letter-spacing:41.178561px;}
.ls93{letter-spacing:54.003269px;}
.ls34{letter-spacing:55.546362px;}
.ls54{letter-spacing:93.696538px;}
.ls7d{letter-spacing:184.716777px;}
.ls7e{letter-spacing:201.454200px;}
.ls86{letter-spacing:257.788843px;}
.ls95{letter-spacing:457.353269px;}
.ls64{letter-spacing:464.834012px;}
.ls3e{letter-spacing:638.552845px;}
.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;}
}
.wsb5{word-spacing:-73.045783px;}
.wsc4{word-spacing:-59.775600px;}
.wsb4{word-spacing:-47.324343px;}
.ws86{word-spacing:-38.937826px;}
.ws9e{word-spacing:-31.633157px;}
.ws101{word-spacing:-30.645430px;}
.wsfd{word-spacing:-30.639430px;}
.wsb6{word-spacing:-30.629017px;}
.ws13a{word-spacing:-29.001813px;}
.wsea{word-spacing:-28.996880px;}
.wsa0{word-spacing:-28.955301px;}
.ws106{word-spacing:-24.728912px;}
.wseb{word-spacing:-22.320209px;}
.wsc3{word-spacing:-20.672229px;}
.wsc5{word-spacing:-20.666229px;}
.wsc9{word-spacing:-20.153646px;}
.wsd6{word-spacing:-19.204389px;}
.ws9f{word-spacing:-16.605662px;}
.ws105{word-spacing:-14.762912px;}
.ws66{word-spacing:-10.324626px;}
.wsa6{word-spacing:-9.665167px;}
.wsf4{word-spacing:-9.297092px;}
.ws124{word-spacing:-9.004802px;}
.ws12e{word-spacing:-8.949188px;}
.ws12b{word-spacing:-8.922051px;}
.wsef{word-spacing:-8.841092px;}
.ws12c{word-spacing:-8.481656px;}
.ws126{word-spacing:-8.448360px;}
.wsbc{word-spacing:-8.164291px;}
.ws122{word-spacing:-8.155608px;}
.ws109{word-spacing:-7.394912px;}
.ws12f{word-spacing:-7.350785px;}
.ws12a{word-spacing:-7.321917px;}
.ws125{word-spacing:-7.068220px;}
.wse6{word-spacing:-5.764608px;}
.wse5{word-spacing:-5.362366px;}
.wsff{word-spacing:-5.231734px;}
.wsb0{word-spacing:-4.697167px;}
.wsb2{word-spacing:-3.109461px;}
.wsb3{word-spacing:-3.096376px;}
.ws20{word-spacing:-2.976825px;}
.ws111{word-spacing:-2.618171px;}
.ws158{word-spacing:-2.609222px;}
.ws138{word-spacing:-2.496568px;}
.wsb8{word-spacing:-2.379069px;}
.ws153{word-spacing:-2.232634px;}
.ws148{word-spacing:-2.178835px;}
.ws46{word-spacing:-2.080191px;}
.ws7b{word-spacing:-2.020415px;}
.ws73{word-spacing:-1.960640px;}
.ws10d{word-spacing:-1.958307px;}
.ws3d{word-spacing:-1.900864px;}
.ws2e{word-spacing:-1.841088px;}
.ws152{word-spacing:-1.748448px;}
.ws139{word-spacing:-1.721537px;}
.ws10f{word-spacing:-1.697198px;}
.ws74{word-spacing:-1.422659px;}
.ws1b{word-spacing:-1.362884px;}
.wse2{word-spacing:-1.303108px;}
.wse8{word-spacing:-1.243332px;}
.wse9{word-spacing:-1.238108px;}
.wsa2{word-spacing:-1.123781px;}
.ws6a{word-spacing:-1.102867px;}
.wsf5{word-spacing:-1.064006px;}
.ws133{word-spacing:-0.944454px;}
.ws147{word-spacing:-0.887674px;}
.wsfc{word-spacing:-0.884679px;}
.wsd4{word-spacing:-0.824903px;}
.ws145{word-spacing:-0.780077px;}
.ws144{word-spacing:-0.726278px;}
.ws44{word-spacing:-0.705352px;}
.ws21{word-spacing:-0.645576px;}
.ws75{word-spacing:-0.585801px;}
.wsf8{word-spacing:-0.466250px;}
.ws76{word-spacing:-0.406474px;}
.ws27{word-spacing:-0.346698px;}
.wsd2{word-spacing:-0.286923px;}
.wscf{word-spacing:-0.275598px;}
.wsd1{word-spacing:-0.253461px;}
.ws154{word-spacing:-0.242093px;}
.ws7c{word-spacing:-0.227147px;}
.ws132{word-spacing:-0.167372px;}
.ws93{word-spacing:-0.107596px;}
.ws141{word-spacing:-0.080698px;}
.ws64{word-spacing:-0.047820px;}
.wsc6{word-spacing:-0.041843px;}
.wsbd{word-spacing:-0.015471px;}
.wsc7{word-spacing:-0.008585px;}
.wsd0{word-spacing:-0.002585px;}
.ws25{word-spacing:0.000000px;}
.ws7e{word-spacing:0.011955px;}
.ws7d{word-spacing:0.071731px;}
.ws159{word-spacing:0.080698px;}
.ws1c{word-spacing:0.131506px;}
.ws10b{word-spacing:0.191282px;}
.ws121{word-spacing:0.251058px;}
.wsed{word-spacing:0.310833px;}
.ws77{word-spacing:0.370609px;}
.wsf{word-spacing:0.403488px;}
.ws43{word-spacing:0.430384px;}
.wsd3{word-spacing:0.490160px;}
.ws53{word-spacing:0.549936px;}
.ws140{word-spacing:0.564883px;}
.ws71{word-spacing:0.609711px;}
.ws96{word-spacing:0.669487px;}
.ws7a{word-spacing:0.726278px;}
.ws3a{word-spacing:0.729262px;}
.ws112{word-spacing:0.789038px;}
.wsce{word-spacing:0.819086px;}
.wsa5{word-spacing:0.848814px;}
.wsf6{word-spacing:0.908589px;}
.ws34{word-spacing:0.968365px;}
.ws8f{word-spacing:1.028140px;}
.ws51{word-spacing:1.207467px;}
.ws82{word-spacing:1.267243px;}
.ws83{word-spacing:1.327018px;}
.ws81{word-spacing:1.386794px;}
.wsac{word-spacing:1.392833px;}
.ws80{word-spacing:1.446570px;}
.ws97{word-spacing:1.506345px;}
.ws2c{word-spacing:1.566121px;}
.ws84{word-spacing:1.625896px;}
.ws63{word-spacing:1.685672px;}
.ws13f{word-spacing:1.856045px;}
.wse3{word-spacing:1.864999px;}
.ws33{word-spacing:1.984550px;}
.wsbe{word-spacing:2.036997px;}
.wsa8{word-spacing:2.044326px;}
.ws28{word-spacing:2.104101px;}
.wsaf{word-spacing:2.108456px;}
.ws8{word-spacing:2.125037px;}
.wsfb{word-spacing:2.152658px;}
.wscb{word-spacing:2.163877px;}
.ws5b{word-spacing:2.223652px;}
.wscc{word-spacing:2.283428px;}
.ws143{word-spacing:2.340230px;}
.wsa7{word-spacing:2.343204px;}
.ws110{word-spacing:2.394029px;}
.ws78{word-spacing:2.402979px;}
.wsdf{word-spacing:2.462755px;}
.ws155{word-spacing:2.501626px;}
.wsd5{word-spacing:2.522530px;}
.wsaa{word-spacing:2.539267px;}
.ws14c{word-spacing:2.555424px;}
.ws61{word-spacing:2.582306px;}
.ws134{word-spacing:2.642082px;}
.ws113{word-spacing:2.701857px;}
.ws6b{word-spacing:2.716819px;}
.wsd7{word-spacing:2.761633px;}
.ws70{word-spacing:2.821408px;}
.ws11{word-spacing:2.878214px;}
.ws3b{word-spacing:2.881184px;}
.ws57{word-spacing:2.940960px;}
.ws15a{word-spacing:2.985811px;}
.wsfe{word-spacing:3.000735px;}
.ws3{word-spacing:3.039610px;}
.ws4f{word-spacing:3.060511px;}
.ws2{word-spacing:3.093408px;}
.ws3e{word-spacing:3.120286px;}
.wsa1{word-spacing:3.167036px;}
.ws103{word-spacing:3.177807px;}
.ws35{word-spacing:3.180062px;}
.wsee{word-spacing:3.207142px;}
.wsf0{word-spacing:3.207892px;}
.ws107{word-spacing:3.228421px;}
.wsf1{word-spacing:3.239838px;}
.ws9c{word-spacing:3.240833px;}
.ws88{word-spacing:3.274596px;}
.ws1{word-spacing:3.299613px;}
.ws114{word-spacing:3.320607px;}
.ws104{word-spacing:3.332530px;}
.ws30{word-spacing:3.359389px;}
.ws36{word-spacing:3.419164px;}
.wsc0{word-spacing:3.468230px;}
.wsc1{word-spacing:3.478940px;}
.ws9{word-spacing:3.523795px;}
.ws3c{word-spacing:3.538716px;}
.wsbf{word-spacing:3.581728px;}
.ws1a{word-spacing:3.598491px;}
.ws72{word-spacing:3.658267px;}
.ws6d{word-spacing:3.718042px;}
.ws49{word-spacing:3.777818px;}
.ws8d{word-spacing:3.897369px;}
.ws79{word-spacing:3.900384px;}
.ws151{word-spacing:4.061779px;}
.ws47{word-spacing:4.076696px;}
.ws5e{word-spacing:4.136472px;}
.wsa4{word-spacing:4.196247px;}
.ws31{word-spacing:4.256023px;}
.ws3f{word-spacing:4.315798px;}
.ws19{word-spacing:4.375574px;}
.ws1e{word-spacing:4.435350px;}
.ws52{word-spacing:4.483200px;}
.ws14b{word-spacing:4.545965px;}
.ws26{word-spacing:4.614676px;}
.ws4a{word-spacing:4.734228px;}
.ws11c{word-spacing:4.794003px;}
.ws40{word-spacing:4.853779px;}
.ws4c{word-spacing:4.913554px;}
.ws24{word-spacing:4.973330px;}
.wsd8{word-spacing:5.033106px;}
.ws94{word-spacing:5.092881px;}
.ws13{word-spacing:5.137747px;}
.ws60{word-spacing:5.152657px;}
.ws2d{word-spacing:5.272208px;}
.ws5a{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.wsdb{word-spacing:5.451535px;}
.ws62{word-spacing:5.511310px;}
.ws157{word-spacing:5.514336px;}
.wsb9{word-spacing:5.571086px;}
.ws11a{word-spacing:5.630862px;}
.ws7f{word-spacing:5.690637px;}
.ws37{word-spacing:5.750413px;}
.ws23{word-spacing:5.810188px;}
.ws116{word-spacing:5.869964px;}
.wsdd{word-spacing:5.929740px;}
.wsb{word-spacing:5.944723px;}
.ws2f{word-spacing:5.989515px;}
.wsb1{word-spacing:6.049291px;}
.ws156{word-spacing:6.106118px;}
.ws48{word-spacing:6.109066px;}
.ws56{word-spacing:6.168842px;}
.wsdc{word-spacing:6.228618px;}
.ws4b{word-spacing:6.288393px;}
.ws42{word-spacing:6.348169px;}
.ws5{word-spacing:6.375110px;}
.ws91{word-spacing:6.407944px;}
.wsb7{word-spacing:6.467720px;}
.ws10{word-spacing:6.482707px;}
.wsbb{word-spacing:6.527496px;}
.ws5f{word-spacing:6.647047px;}
.ws146{word-spacing:6.697901px;}
.ws38{word-spacing:6.706822px;}
.wsa{word-spacing:6.751699px;}
.ws5d{word-spacing:6.766598px;}
.ws102{word-spacing:6.806005px;}
.ws100{word-spacing:6.807807px;}
.wscd{word-spacing:6.826374px;}
.ws85{word-spacing:6.886149px;}
.ws90{word-spacing:7.005700px;}
.ws12{word-spacing:7.020691px;}
.ws6c{word-spacing:7.074490px;}
.wse0{word-spacing:7.125252px;}
.wse1{word-spacing:7.244803px;}
.ws11b{word-spacing:7.364354px;}
.ws14f{word-spacing:7.451078px;}
.ws92{word-spacing:7.483905px;}
.ws22{word-spacing:7.543681px;}
.ws39{word-spacing:7.603456px;}
.ws135{word-spacing:7.663232px;}
.ws149{word-spacing:7.881466px;}
.ws41{word-spacing:7.962110px;}
.ws50{word-spacing:8.021886px;}
.ws6{word-spacing:8.096659px;}
.ws11e{word-spacing:8.141437px;}
.ws98{word-spacing:8.201212px;}
.ws99{word-spacing:8.260988px;}
.wsc{word-spacing:8.365651px;}
.ws18{word-spacing:8.380539px;}
.ws4e{word-spacing:8.440315px;}
.ws8c{word-spacing:8.500090px;}
.ws14d{word-spacing:8.527046px;}
.wsd9{word-spacing:8.559866px;}
.ws6f{word-spacing:8.619642px;}
.wsba{word-spacing:8.679417px;}
.wsfa{word-spacing:8.739193px;}
.ws95{word-spacing:8.798968px;}
.ws8e{word-spacing:8.858744px;}
.ws142{word-spacing:8.957434px;}
.ws115{word-spacing:8.978295px;}
.ws17{word-spacing:9.097846px;}
.ws15{word-spacing:9.118829px;}
.ws1d{word-spacing:9.157622px;}
.ws118{word-spacing:9.217398px;}
.ws2b{word-spacing:9.277173px;}
.ws10c{word-spacing:9.336949px;}
.ws5c{word-spacing:9.396724px;}
.ws89{word-spacing:9.456500px;}
.wsf2{word-spacing:9.516276px;}
.ws119{word-spacing:9.576051px;}
.ws8a{word-spacing:9.635827px;}
.wse{word-spacing:9.656813px;}
.ws8b{word-spacing:9.695602px;}
.ws7{word-spacing:9.710611px;}
.ws87{word-spacing:9.815154px;}
.wsd{word-spacing:9.872006px;}
.ws59{word-spacing:9.874929px;}
.wsf3{word-spacing:9.934705px;}
.ws9a{word-spacing:9.994480px;}
.ws9b{word-spacing:10.054256px;}
.wsda{word-spacing:10.114032px;}
.wsde{word-spacing:10.233583px;}
.ws150{word-spacing:10.248595px;}
.ws6e{word-spacing:10.472685px;}
.ws69{word-spacing:10.544486px;}
.ws2a{word-spacing:10.592236px;}
.ws108{word-spacing:10.652012px;}
.ws10a{word-spacing:10.711788px;}
.ws13d{word-spacing:10.771563px;}
.wsf7{word-spacing:10.831339px;}
.ws11f{word-spacing:10.891114px;}
.ws55{word-spacing:11.070441px;}
.ws29{word-spacing:11.189992px;}
.ws4d{word-spacing:11.369319px;}
.ws45{word-spacing:11.429095px;}
.wsf9{word-spacing:11.488870px;}
.ws58{word-spacing:11.548646px;}
.ws32{word-spacing:11.608422px;}
.ws14a{word-spacing:11.647354px;}
.ws120{word-spacing:11.668197px;}
.wsae{word-spacing:11.787748px;}
.wsa9{word-spacing:11.899459px;}
.wsab{word-spacing:11.907300px;}
.wsad{word-spacing:11.925892px;}
.ws117{word-spacing:12.445280px;}
.wsa3{word-spacing:12.624607px;}
.wsc2{word-spacing:12.684382px;}
.ws9d{word-spacing:13.162587px;}
.ws13b{word-spacing:13.640792px;}
.ws13c{word-spacing:14.477650px;}
.ws14e{word-spacing:14.821459px;}
.ws10e{word-spacing:15.294013px;}
.ws12d{word-spacing:15.738227px;}
.ws1f{word-spacing:20.995335px;}
.ws54{word-spacing:22.834279px;}
.ws13e{word-spacing:26.526793px;}
.ws14{word-spacing:27.592038px;}
.ws127{word-spacing:28.427585px;}
.ws128{word-spacing:28.429526px;}
.ws129{word-spacing:28.429814px;}
.ws4{word-spacing:29.829450px;}
.ws137{word-spacing:48.473193px;}
.ws67{word-spacing:51.038194px;}
.ws16{word-spacing:58.281600px;}
.wsc8{word-spacing:94.784547px;}
.wse4{word-spacing:128.040966px;}
.ws65{word-spacing:138.481837px;}
.ws123{word-spacing:140.887538px;}
.ws136{word-spacing:208.647118px;}
.wsca{word-spacing:242.845681px;}
.ws11d{word-spacing:260.505118px;}
.wsec{word-spacing:343.274976px;}
.ws68{word-spacing:365.823229px;}
.wse7{word-spacing:565.546626px;}
.ws130{word-spacing:935.937118px;}
.ws131{word-spacing:937.467007px;}
._2{margin-left:-28.893124px;}
._b{margin-left:-27.765962px;}
._21{margin-left:-19.923207px;}
._17{margin-left:-5.738458px;}
._4{margin-left:-4.626662px;}
._0{margin-left:-2.668393px;}
._1{margin-left:-1.554166px;}
._3{width:1.506355px;}
._5{width:3.000734px;}
._e{width:4.009769px;}
._1e{width:5.170994px;}
._20{width:6.564552px;}
._6{width:9.522317px;}
._d{width:10.610095px;}
._1c{width:14.284216px;}
._7{width:16.297230px;}
._13{width:17.301450px;}
._11{width:18.628478px;}
._10{width:19.644664px;}
._14{width:20.959727px;}
._8{width:22.095463px;}
._9{width:23.470302px;}
._12{width:25.622234px;}
._c{width:26.937287px;}
._23{width:28.252350px;}
._f{width:29.268535px;}
._1f{width:30.313102px;}
._2a{width:52.002200px;}
._16{width:68.741940px;}
._1b{width:72.537580px;}
._15{width:80.697600px;}
._19{width:107.526528px;}
._22{width:119.227112px;}
._24{width:142.996147px;}
._29{width:149.814386px;}
._28{width:155.054293px;}
._a{width:170.648525px;}
._1a{width:237.512832px;}
._18{width:276.211611px;}
._25{width:277.394673px;}
._26{width:282.274708px;}
._27{width:288.660081px;}
._1d{width:326.447694px;}
.fc3{color:rgb(32,30,30);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:6.105029px;}
.fsf{font-size:7.044271px;}
.fs1b{font-size:8.980459px;}
.fs13{font-size:9.424294px;}
.fs16{font-size:9.762556px;}
.fs19{font-size:9.801047px;}
.fs11{font-size:10.567642px;}
.fs12{font-size:10.874145px;}
.fs15{font-size:11.264480px;}
.fs18{font-size:11.308874px;}
.fs17{font-size:11.896068px;}
.fs1a{font-size:11.932250px;}
.fs14{font-size:12.006403px;}
.fs1c{font-size:13.740425px;}
.fs9{font-size:19.274640px;}
.fsd{font-size:19.289088px;}
.fse{font-size:20.736000px;}
.fsa{font-size:24.781680px;}
.fs4{font-size:27.854208px;}
.fs7{font-size:28.739732px;}
.fs6{font-size:29.303299px;}
.fsc{font-size:29.887800px;}
.fs8{font-size:33.042240px;}
.fs5{font-size:37.138944px;}
.fsb{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:0.727968px;}
.y17e{bottom:2.514994px;}
.y1f0{bottom:2.627679px;}
.y7e{bottom:2.675933px;}
.y1bc{bottom:3.374818px;}
.y1c5{bottom:3.476193px;}
.y1cf{bottom:3.574005px;}
.y180{bottom:4.898851px;}
.y145{bottom:6.048000px;}
.y182{bottom:7.744564px;}
.y1bd{bottom:8.185365px;}
.y1c6{bottom:8.209134px;}
.y1d0{bottom:8.493162px;}
.y13c{bottom:9.504000px;}
.y1f1{bottom:10.053772px;}
.y13a{bottom:10.850112px;}
.y9e{bottom:11.186175px;}
.y1bf{bottom:11.528267px;}
.y1c8{bottom:11.672009px;}
.y9a{bottom:11.874555px;}
.y1d2{bottom:11.969584px;}
.y18a{bottom:13.728672px;}
.y143{bottom:13.824000px;}
.y130{bottom:14.466816px;}
.y132{bottom:14.868672px;}
.y193{bottom:15.414977px;}
.y19a{bottom:15.433215px;}
.y183{bottom:16.711619px;}
.y1f2{bottom:17.479898px;}
.y138{bottom:17.681664px;}
.y7d{bottom:18.569472px;}
.y1c9{bottom:19.545413px;}
.y18b{bottom:19.699149px;}
.y80{bottom:19.730064px;}
.y1c0{bottom:21.000843px;}
.y135{bottom:21.298368px;}
.y1d3{bottom:21.317255px;}
.y1f9{bottom:21.797443px;}
.y194{bottom:23.085342px;}
.y19b{bottom:23.085354px;}
.y7b{bottom:24.283719px;}
.y1f3{bottom:24.906025px;}
.y18c{bottom:25.642114px;}
.y184{bottom:25.665031px;}
.y1ca{bottom:27.360420px;}
.y1c7{bottom:28.282984px;}
.y1d1{bottom:28.394690px;}
.y1be{bottom:28.530273px;}
.y134{bottom:28.531776px;}
.y181{bottom:29.270684px;}
.y74{bottom:29.595096px;}
.y7c{bottom:30.175392px;}
.y1c1{bottom:30.473418px;}
.y1d4{bottom:30.665022px;}
.y195{bottom:30.755755px;}
.y19c{bottom:30.755767px;}
.y141{bottom:31.536000px;}
.y18d{bottom:31.608045px;}
.y1f4{bottom:32.159466px;}
.y99{bottom:32.525955px;}
.y136{bottom:34.559616px;}
.y185{bottom:34.590980px;}
.y1cb{bottom:35.204679px;}
.y81{bottom:36.558648px;}
.y18e{bottom:37.573927px;}
.y144{bottom:37.584000px;}
.y196{bottom:38.426168px;}
.y19d{bottom:38.426180px;}
.y140{bottom:38.448000px;}
.y1f5{bottom:39.585593px;}
.y1c2{bottom:39.945994px;}
.y1d5{bottom:40.012838px;}
.y139{bottom:40.185600px;}
.y13d{bottom:40.608000px;}
.y13e{bottom:41.904000px;}
.y1cc{bottom:43.048842px;}
.y131{bottom:43.400448px;}
.y186{bottom:43.539701px;}
.y98{bottom:43.540035px;}
.y18f{bottom:43.558035px;}
.y133{bottom:43.802304px;}
.y142{bottom:45.360000px;}
.y197{bottom:46.096533px;}
.y19e{bottom:46.096545px;}
.y13f{bottom:46.224000px;}
.y10a{bottom:46.284000px;}
.y1f6{bottom:47.011719px;}
.y137{bottom:47.419008px;}
.y108{bottom:48.256500px;}
.y1d6{bottom:49.360509px;}
.y1c3{bottom:49.418714px;}
.y190{bottom:49.523965px;}
.y107{bottom:49.902000px;}
.y1cd{bottom:50.893102px;}
.y12e{bottom:51.022500px;}
.y27{bottom:51.024000px;}
.y187{bottom:52.488518px;}
.y198{bottom:53.766898px;}
.y19f{bottom:53.766910px;}
.y1a2{bottom:54.385500px;}
.y1f7{bottom:54.437845px;}
.y21f{bottom:54.759000px;}
.y1fb{bottom:54.783241px;}
.y191{bottom:55.471513px;}
.y109{bottom:56.244000px;}
.y96{bottom:57.307635px;}
.y1fa{bottom:57.546427px;}
.y9d{bottom:57.996015px;}
.y7a{bottom:58.609896px;}
.y97{bottom:58.684395px;}
.y1d7{bottom:58.708277px;}
.y1ce{bottom:58.737265px;}
.y1c4{bottom:58.891254px;}
.y10b{bottom:61.350000px;}
.y199{bottom:61.437311px;}
.y1a0{bottom:61.437323px;}
.y192{bottom:61.437347px;}
.y188{bottom:61.455621px;}
.y1f8{bottom:61.691203px;}
.y24f{bottom:65.701500px;}
.y10c{bottom:67.410000px;}
.y1a3{bottom:67.668000px;}
.y79{bottom:68.474928px;}
.y26{bottom:68.956500px;}
.y76{bottom:70.215816px;}
.y1a1{bottom:70.824000px;}
.y106{bottom:71.104500px;}
.y70{bottom:71.956704px;}
.y21e{bottom:72.691500px;}
.y6e{bottom:73.697592px;}
.y78{bottom:78.920256px;}
.y10d{bottom:80.502000px;}
.y77{bottom:80.661144px;}
.y24e{bottom:82.140000px;}
.y72{bottom:83.562624px;}
.y53{bottom:85.600500px;}
.y25{bottom:86.889000px;}
.y21d{bottom:90.625500px;}
.y9b{bottom:94.824345px;}
.y24d{bottom:98.578500px;}
.y52{bottom:103.533000px;}
.y24{bottom:104.821500px;}
.y105{bottom:108.538500px;}
.y21c{bottom:108.558000px;}
.y24c{bottom:114.291000px;}
.yd0{bottom:116.562000px;}
.y6f{bottom:117.800088px;}
.y51{bottom:121.467000px;}
.y23{bottom:122.754000px;}
.y189{bottom:123.127500px;}
.y104{bottom:126.471000px;}
.y21b{bottom:126.490500px;}
.y24b{bottom:130.729500px;}
.y50{bottom:139.399500px;}
.y17d{bottom:139.566000px;}
.y17f{bottom:140.246212px;}
.y6c{bottom:140.686500px;}
.y22{bottom:140.688000px;}
.y103{bottom:144.403500px;}
.y21a{bottom:144.423000px;}
.y24a{bottom:147.168000px;}
.y75{bottom:151.457256px;}
.y162{bottom:151.788000px;}
.y4f{bottom:157.332000px;}
.ycf{bottom:157.485000px;}
.y12d{bottom:158.619000px;}
.y21{bottom:158.620500px;}
.yce{bottom:161.179500px;}
.y102{bottom:162.336000px;}
.y249{bottom:162.880500px;}
.y73{bottom:164.223768px;}
.y7f{bottom:167.125248px;}
.y71{bottom:168.285840px;}
.y219{bottom:170.467500px;}
.y94{bottom:173.052000px;}
.y4e{bottom:175.264500px;}
.ycd{bottom:175.417500px;}
.y20{bottom:176.553000px;}
.y100{bottom:176.574000px;}
.ycc{bottom:179.112000px;}
.y248{bottom:179.319000px;}
.yff{bottom:180.268500px;}
.y218{bottom:188.400000px;}
.y101{bottom:188.919000px;}
.y4d{bottom:193.197000px;}
.ycb{bottom:193.350000px;}
.y1f{bottom:194.485500px;}
.y247{bottom:195.031500px;}
.y161{bottom:195.765000px;}
.yca{bottom:197.044500px;}
.y217{bottom:206.332500px;}
.y4c{bottom:211.129500px;}
.y246{bottom:211.470000px;}
.y1e{bottom:212.418000px;}
.y160{bottom:213.699000px;}
.yfc{bottom:214.806000px;}
.yc9{bottom:214.977000px;}
.yfa{bottom:216.777000px;}
.yf9{bottom:218.424000px;}
.y93{bottom:220.362000px;}
.yf8{bottom:221.994000px;}
.y216{bottom:224.265000px;}
.yfb{bottom:224.764500px;}
.y245{bottom:227.907000px;}
.y4b{bottom:229.063500px;}
.y1d{bottom:230.350500px;}
.y15f{bottom:231.631500px;}
.yc8{bottom:232.911000px;}
.yfd{bottom:235.932000px;}
.y92{bottom:238.294500px;}
.yf5{bottom:239.626500px;}
.y215{bottom:241.237500px;}
.y17c{bottom:243.151500px;}
.y1ee{bottom:243.568500px;}
.y244{bottom:243.621000px;}
.y1bb{bottom:245.064000px;}
.y4a{bottom:246.996000px;}
.y6b{bottom:248.283000px;}
.y1c{bottom:248.284500px;}
.yfe{bottom:249.024000px;}
.y15e{bottom:249.564000px;}
.yc7{bottom:250.843500px;}
.yf7{bottom:253.822500px;}
.y91{bottom:256.227000px;}
.yf6{bottom:258.564000px;}
.y214{bottom:259.170000px;}
.y243{bottom:260.058000px;}
.y17b{bottom:261.085500px;}
.y1ed{bottom:261.501000px;}
.y1ba{bottom:262.998000px;}
.y49{bottom:264.928500px;}
.yc6{bottom:265.081500px;}
.y1b{bottom:266.217000px;}
.y12c{bottom:266.319000px;}
.y15d{bottom:267.496500px;}
.yc5{bottom:268.776000px;}
.y90{bottom:274.161000px;}
.y242{bottom:275.772000px;}
.y213{bottom:276.142500px;}
.y17a{bottom:279.018000px;}
.y1ec{bottom:279.433500px;}
.y1b9{bottom:280.930500px;}
.yc4{bottom:282.477000px;}
.y48{bottom:282.861000px;}
.y1a{bottom:284.149500px;}
.y15c{bottom:285.429000px;}
.yc3{bottom:286.708500px;}
.yf4{bottom:290.028000px;}
.yf1{bottom:290.029500px;}
.yf2{bottom:290.566500px;}
.y8f{bottom:292.093500px;}
.y241{bottom:292.209000px;}
.y212{bottom:294.075000px;}
.yf0{bottom:294.261000px;}
.y1eb{bottom:297.366000px;}
.y1b8{bottom:298.863000px;}
.y47{bottom:300.793500px;}
.y6a{bottom:302.082000px;}
.yf3{bottom:302.911500px;}
.y15b{bottom:303.363000px;}
.yc2{bottom:304.641000px;}
.y240{bottom:308.647500px;}
.y8e{bottom:310.026000px;}
.y179{bottom:311.518500px;}
.yee{bottom:312.982500px;}
.y1ea{bottom:315.300000px;}
.yed{bottom:316.677000px;}
.y1b7{bottom:316.795500px;}
.y12b{bottom:317.232000px;}
.y19{bottom:317.311500px;}
.yc1{bottom:318.342000px;}
.y46{bottom:318.727500px;}
.y211{bottom:319.158000px;}
.y69{bottom:320.014500px;}
.y15a{bottom:321.295500px;}
.yc0{bottom:322.573500px;}
.y23f{bottom:324.360000px;}
.yef{bottom:325.327500px;}
.y8d{bottom:327.958500px;}
.y1e9{bottom:333.232500px;}
.yec{bottom:334.609500px;}
.y1b6{bottom:334.728000px;}
.y12a{bottom:335.164500px;}
.y45{bottom:336.660000px;}
.y210{bottom:337.090500px;}
.y68{bottom:337.947000px;}
.y159{bottom:339.228000px;}
.ybf{bottom:340.507500px;}
.y23e{bottom:340.798500px;}
.y8c{bottom:345.891000px;}
.y178{bottom:349.996500px;}
.y1e8{bottom:351.165000px;}
.y1b5{bottom:352.660500px;}
.y129{bottom:353.097000px;}
.y44{bottom:354.592500px;}
.y20f{bottom:355.023000px;}
.y67{bottom:355.879500px;}
.yad{bottom:355.881000px;}
.y23d{bottom:356.511000px;}
.y158{bottom:357.160500px;}
.ybe{bottom:358.440000px;}
.y8b{bottom:363.823500px;}
.y18{bottom:364.678500px;}
.yea{bottom:365.155500px;}
.ye8{bottom:367.126500px;}
.ye7{bottom:368.773500px;}
.y1e7{bottom:369.097500px;}
.y1b4{bottom:370.594500px;}
.y128{bottom:371.031000px;}
.ye4{bottom:372.343500px;}
.y43{bottom:372.525000px;}
.y23c{bottom:372.949500px;}
.y20e{bottom:372.957000px;}
.y66{bottom:373.813500px;}
.y157{bottom:375.093000px;}
.ye9{bottom:375.114000px;}
.ybd{bottom:376.372500px;}
.y17{bottom:381.117000px;}
.y8a{bottom:381.757500px;}
.ye6{bottom:386.281500px;}
.y1e6{bottom:387.030000px;}
.y1b3{bottom:388.527000px;}
.y127{bottom:388.963500px;}
.y23b{bottom:389.388000px;}
.ye1{bottom:389.976000px;}
.y42{bottom:390.457500px;}
.y20d{bottom:390.889500px;}
.y65{bottom:391.746000px;}
.y156{bottom:393.025500px;}
.ybc{bottom:394.305000px;}
.yeb{bottom:399.373500px;}
.y89{bottom:399.690000px;}
.y177{bottom:400.429500px;}
.ye3{bottom:404.172000px;}
.y1e5{bottom:404.964000px;}
.y23a{bottom:405.826500px;}
.y1b2{bottom:406.459500px;}
.y126{bottom:406.896000px;}
.y41{bottom:408.390000px;}
.y20c{bottom:408.822000px;}
.ye2{bottom:408.913500px;}
.y64{bottom:409.678500px;}
.y155{bottom:410.959500px;}
.ybb{bottom:412.237500px;}
.y16{bottom:413.317500px;}
.y88{bottom:417.622500px;}
.y176{bottom:418.362000px;}
.y239{bottom:421.539000px;}
.y1e4{bottom:422.896500px;}
.y1b1{bottom:424.392000px;}
.y125{bottom:424.828500px;}
.ye5{bottom:425.094000px;}
.y40{bottom:426.324000px;}
.y20b{bottom:426.754500px;}
.y63{bottom:427.611000px;}
.y154{bottom:428.892000px;}
.y15{bottom:429.756000px;}
.yba{bottom:430.171500px;}
.y175{bottom:436.294500px;}
.y238{bottom:437.977500px;}
.y1e3{bottom:440.829000px;}
.y1b0{bottom:442.324500px;}
.y124{bottom:442.761000px;}
.y3f{bottom:444.256500px;}
.yac{bottom:445.543500px;}
.ye0{bottom:446.172000px;}
.y14{bottom:446.194500px;}
.y153{bottom:446.824500px;}
.yb9{bottom:448.104000px;}
.y174{bottom:454.227000px;}
.y237{bottom:454.416000px;}
.y1e2{bottom:458.761500px;}
.y20a{bottom:458.776500px;}
.y62{bottom:458.976000px;}
.y1af{bottom:460.257000px;}
.y123{bottom:460.693500px;}
.y3e{bottom:462.189000px;}
.y13{bottom:462.633000px;}
.yab{bottom:463.477500px;}
.ydf{bottom:464.104500px;}
.y152{bottom:464.757000px;}
.yb8{bottom:466.036500px;}
.y87{bottom:467.572500px;}
.y236{bottom:470.128500px;}
.y173{bottom:472.161000px;}
.y1e1{bottom:476.694000px;}
.yde{bottom:477.805500px;}
.y1ae{bottom:478.191000px;}
.ydc{bottom:478.342500px;}
.y122{bottom:478.627500px;}
.y12{bottom:479.070000px;}
.y3d{bottom:480.121500px;}
.yaa{bottom:481.410000px;}
.ydb{bottom:482.037000px;}
.y151{bottom:482.689500px;}
.yb7{bottom:483.969000px;}
.y86{bottom:484.011000px;}
.y235{bottom:486.567000px;}
.y172{bottom:490.093500px;}
.ydd{bottom:490.687500px;}
.y1e0{bottom:494.626500px;}
.y11{bottom:495.508500px;}
.y1ad{bottom:496.123500px;}
.y121{bottom:496.560000px;}
.yda{bottom:497.994000px;}
.y3c{bottom:498.054000px;}
.yd8{bottom:498.531000px;}
.ya9{bottom:499.342500px;}
.y85{bottom:500.449500px;}
.y150{bottom:500.622000px;}
.yb6{bottom:501.901500px;}
.yd7{bottom:502.225500px;}
.y234{bottom:502.279500px;}
.y209{bottom:502.753500px;}
.y61{bottom:505.284000px;}
.y171{bottom:508.026000px;}
.yd9{bottom:510.876000px;}
.y10{bottom:511.947000px;}
.y1ac{bottom:514.056000px;}
.y120{bottom:514.492500px;}
.y3b{bottom:515.986500px;}
.y84{bottom:516.888000px;}
.ya8{bottom:517.275000px;}
.y14f{bottom:518.556000px;}
.y233{bottom:518.718000px;}
.yb5{bottom:519.834000px;}
.yd6{bottom:520.158000px;}
.y208{bottom:520.686000px;}
.y60{bottom:523.216500px;}
.y170{bottom:525.958500px;}
.yf{bottom:528.385500px;}
.y1df{bottom:530.221500px;}
.y1ab{bottom:531.988500px;}
.y11f{bottom:532.425000px;}
.y3a{bottom:533.920500px;}
.y232{bottom:535.156500px;}
.ya7{bottom:535.207500px;}
.y14e{bottom:536.488500px;}
.yb4{bottom:537.768000px;}
.yd4{bottom:538.092000px;}
.y207{bottom:538.618500px;}
.yd5{bottom:544.774500px;}
.ye{bottom:544.824000px;}
.y1aa{bottom:549.921000px;}
.y11e{bottom:550.357500px;}
.y231{bottom:550.869000px;}
.y39{bottom:551.853000px;}
.ya6{bottom:553.140000px;}
.y83{bottom:554.248500px;}
.y14d{bottom:554.421000px;}
.yd3{bottom:556.024500px;}
.y206{bottom:556.551000px;}
.y16d{bottom:558.385500px;}
.y5f{bottom:560.559000px;}
.yd{bottom:561.262500px;}
.y230{bottom:567.307500px;}
.yb3{bottom:567.441000px;}
.y11d{bottom:568.290000px;}
.y16b{bottom:568.636500px;}
.y38{bottom:569.785500px;}
.ya5{bottom:571.074000px;}
.y14c{bottom:572.353500px;}
.y205{bottom:574.483500px;}
.y16c{bottom:576.499500px;}
.yc{bottom:577.701000px;}
.y16f{bottom:580.012500px;}
.y1de{bottom:580.759500px;}
.y22f{bottom:583.746000px;}
.y16e{bottom:584.178000px;}
.y11c{bottom:586.224000px;}
.y37{bottom:587.718000px;}
.ya4{bottom:589.006500px;}
.yd2{bottom:589.804500px;}
.y204{bottom:592.417500px;}
.yb{bottom:594.139500px;}
.y1dd{bottom:598.692000px;}
.y22e{bottom:599.458500px;}
.y14b{bottom:600.136500px;}
.y11b{bottom:604.156500px;}
.y14a{bottom:605.289000px;}
.y36{bottom:605.650500px;}
.y1a9{bottom:606.031500px;}
.ya3{bottom:606.939000px;}
.y5e{bottom:609.856500px;}
.y203{bottom:610.350000px;}
.ya{bottom:610.578000px;}
.yb2{bottom:612.058500px;}
.y22d{bottom:615.897000px;}
.y1dc{bottom:616.624500px;}
.y149{bottom:616.789500px;}
.y16a{bottom:621.753000px;}
.y11a{bottom:622.089000px;}
.y1a8{bottom:622.470000px;}
.y35{bottom:623.583000px;}
.ya2{bottom:624.871500px;}
.y9{bottom:627.016500px;}
.y5d{bottom:627.789000px;}
.y202{bottom:628.282500px;}
.yb1{bottom:629.991000px;}
.y22c{bottom:631.609500px;}
.y1a7{bottom:638.908500px;}
.y169{bottom:639.685500px;}
.y119{bottom:640.021500px;}
.y34{bottom:641.517000px;}
.y8{bottom:643.453500px;}
.y5c{bottom:645.721500px;}
.y201{bottom:646.215000px;}
.yb0{bottom:647.923500px;}
.y22b{bottom:648.048000px;}
.y168{bottom:653.454000px;}
.y1a6{bottom:655.345500px;}
.y167{bottom:657.619500px;}
.y118{bottom:657.954000px;}
.y33{bottom:659.449500px;}
.y7{bottom:659.892000px;}
.y82{bottom:660.816000px;}
.y148{bottom:662.055000px;}
.y5b{bottom:663.655500px;}
.y22a{bottom:663.760500px;}
.y200{bottom:664.147500px;}
.yaf{bottom:665.856000px;}
.y1db{bottom:671.313000px;}
.y166{bottom:675.552000px;}
.y117{bottom:675.886500px;}
.y6d{bottom:677.254500px;}
.y32{bottom:677.382000px;}
.y147{bottom:679.987500px;}
.y229{bottom:680.199000px;}
.y1ff{bottom:682.081500px;}
.ya1{bottom:682.581000px;}
.yd1{bottom:683.899500px;}
.y1da{bottom:687.751500px;}
.y116{bottom:689.587500px;}
.y165{bottom:691.425000px;}
.y164{bottom:691.620000px;}
.y115{bottom:693.820500px;}
.y5a{bottom:694.429500px;}
.y31{bottom:695.314500px;}
.y228{bottom:695.911500px;}
.ya0{bottom:699.019500px;}
.y1fe{bottom:700.014000px;}
.yae{bottom:701.506500px;}
.y1a5{bottom:707.650500px;}
.y163{bottom:709.552500px;}
.y114{bottom:711.753000px;}
.y227{bottom:712.350000px;}
.y59{bottom:712.362000px;}
.y30{bottom:713.247000px;}
.y6{bottom:713.664000px;}
.y9f{bottom:715.458000px;}
.y1fd{bottom:717.946500px;}
.y113{bottom:725.452500px;}
.y112{bottom:725.454000px;}
.y111{bottom:725.991000px;}
.y226{bottom:728.788500px;}
.y110{bottom:729.685500px;}
.y5{bottom:730.102500px;}
.y58{bottom:730.590000px;}
.y2f{bottom:731.181000px;}
.y146{bottom:731.455500px;}
.y1d9{bottom:740.055000px;}
.y1fc{bottom:743.991000px;}
.y225{bottom:744.501000px;}
.y10f{bottom:744.880500px;}
.y4{bottom:746.541000px;}
.y57{bottom:748.522500px;}
.y2e{bottom:749.113500px;}
.y9c{bottom:752.818500px;}
.y224{bottom:760.939500px;}
.y56{bottom:766.455000px;}
.y2d{bottom:767.046000px;}
.y13b{bottom:768.814500px;}
.y95{bottom:769.257000px;}
.y10e{bottom:773.563500px;}
.y223{bottom:777.378000px;}
.y3{bottom:777.862500px;}
.y55{bottom:784.683000px;}
.y2c{bottom:784.978500px;}
.y12f{bottom:785.253000px;}
.y222{bottom:793.090500px;}
.y1a4{bottom:801.217500px;}
.y54{bottom:802.615500px;}
.y2b{bottom:802.911000px;}
.y221{bottom:809.529000px;}
.y1d8{bottom:812.019000px;}
.y2a{bottom:820.843500px;}
.y220{bottom:825.967500px;}
.y2{bottom:829.810500px;}
.y29{bottom:838.777500px;}
.y1{bottom:856.710000px;}
.y28{bottom:895.564500px;}
.h22{height:2.391024px;}
.h48{height:4.444628px;}
.h46{height:5.128422px;}
.h55{height:6.538020px;}
.h4b{height:6.861144px;}
.h50{height:7.107407px;}
.h52{height:7.135430px;}
.h4e{height:7.224955px;}
.h49{height:7.693532px;}
.h4a{height:7.916675px;}
.h4d{height:8.200849px;}
.h51{height:8.233170px;}
.h4f{height:8.660663px;}
.h53{height:8.687005px;}
.h4c{height:8.740989px;}
.h56{height:10.003405px;}
.h13{height:14.051213px;}
.h36{height:14.293214px;}
.h10{height:14.340332px;}
.h38{height:15.365376px;}
.h27{height:16.707280px;}
.h14{height:18.065845px;}
.h9{height:20.639968px;}
.h26{height:20.718223px;}
.hd{height:21.296142px;}
.hc{height:21.713745px;}
.hf{height:24.087793px;}
.h20{height:24.143296px;}
.h11{height:24.583427px;}
.ha{height:27.519958px;}
.h21{height:29.833916px;}
.h31{height:31.155024px;}
.h5{height:33.139814px;}
.h2b{height:34.143024px;}
.h4{height:40.348800px;}
.h2d{height:40.938223px;}
.h25{height:40.944223px;}
.h7{height:41.842920px;}
.hb{height:43.768246px;}
.h3{height:44.831700px;}
.h32{height:45.839296px;}
.h1a{height:49.473619px;}
.h15{height:49.479619px;}
.h6{height:50.211840px;}
.h1f{height:50.213296px;}
.h57{height:50.811024px;}
.h1c{height:51.523916px;}
.h16{height:51.529916px;}
.h58{height:53.944800px;}
.h23{height:54.511916px;}
.h3e{height:58.555916px;}
.h2f{height:59.181024px;}
.h1b{height:59.609700px;}
.h2{height:60.254040px;}
.h19{height:61.757700px;}
.h17{height:61.763700px;}
.h47{height:64.111688px;}
.h54{height:64.788480px;}
.h45{height:64.791900px;}
.h1d{height:65.589024px;}
.h1e{height:66.301916px;}
.h3c{height:66.307916px;}
.h41{height:66.369024px;}
.h3d{height:67.087916px;}
.h33{height:67.737024px;}
.h3f{height:68.185916px;}
.h34{height:68.449916px;}
.h18{height:68.455916px;}
.h28{height:68.739024px;}
.h43{height:68.745024px;}
.h24{height:73.953024px;}
.h3a{height:78.305700px;}
.h2e{height:83.517024px;}
.h44{height:85.407024px;}
.h2a{height:85.671024px;}
.h42{height:85.835700px;}
.h35{height:86.399040px;}
.h37{height:86.400000px;}
.h12{height:97.233675px;}
.h40{height:98.533916px;}
.he{height:102.396525px;}
.h29{height:105.273024px;}
.h39{height:105.349916px;}
.h30{height:107.763024px;}
.h3b{height:111.443700px;}
.h2c{height:129.705024px;}
.h8{height:194.399160px;}
.h1{height:922.500000px;}
.h0{height:922.677000px;}
.w6{width:119.296800px;}
.w8{width:129.684480px;}
.w7{width:160.812000px;}
.w3{width:181.560225px;}
.w5{width:251.585040px;}
.w4{width:251.593380px;}
.w2{width:414.987750px;}
.w0{width:620.787000px;}
.w1{width:621.000000px;}
.x0{left:0.000000px;}
.x6b{left:1.867599px;}
.x12{left:3.295828px;}
.x6c{left:5.218250px;}
.x6d{left:7.101791px;}
.x2a{left:8.403072px;}
.x16{left:9.696422px;}
.x25{left:11.697125px;}
.x83{left:14.637533px;}
.x89{left:17.024254px;}
.x15{left:22.535822px;}
.x20{left:26.901600px;}
.x13{left:27.904678px;}
.x27{left:34.413665px;}
.x2b{left:40.258097px;}
.x24{left:45.427745px;}
.x8{left:51.024000px;}
.x26{left:56.441825px;}
.x8b{left:57.934500px;}
.x68{left:59.256119px;}
.xa{left:60.363000px;}
.x70{left:61.769597px;}
.x1{left:63.975000px;}
.xb{left:76.428000px;}
.x82{left:77.604521px;}
.x87{left:79.035000px;}
.x81{left:81.552000px;}
.x80{left:85.377000px;}
.x71{left:86.885128px;}
.x7{left:93.543000px;}
.xd{left:95.373815px;}
.x28{left:101.764936px;}
.x38{left:103.903500px;}
.xc{left:105.201000px;}
.x7d{left:106.332000px;}
.x2c{left:109.675283px;}
.x9{left:113.086500px;}
.x6e{left:123.938740px;}
.x23{left:126.528000px;}
.x22{left:129.270000px;}
.x85{left:133.872000px;}
.x74{left:136.902000px;}
.x51{left:140.575500px;}
.x5e{left:142.660500px;}
.x1f{left:145.300738px;}
.x3a{left:146.473500px;}
.x41{left:151.294500px;}
.x3b{left:153.840000px;}
.x66{left:156.234000px;}
.x14{left:159.362938px;}
.x10{left:161.405014px;}
.x3{left:164.877000px;}
.x6f{left:168.697500px;}
.x86{left:171.157500px;}
.x79{left:172.203000px;}
.x69{left:173.574351px;}
.x2d{left:180.778500px;}
.x11{left:184.767373px;}
.x5{left:186.793500px;}
.x76{left:188.833500px;}
.x72{left:195.332344px;}
.x6a{left:198.768959px;}
.x2{left:203.764500px;}
.x67{left:205.681500px;}
.x43{left:212.311500px;}
.x44{left:213.426000px;}
.x42{left:214.668000px;}
.x6{left:218.601000px;}
.x5f{left:221.671500px;}
.x52{left:226.047000px;}
.x60{left:227.427000px;}
.x37{left:229.011000px;}
.x53{left:232.638000px;}
.x4{left:234.495000px;}
.x45{left:236.388000px;}
.x46{left:241.369500px;}
.x55{left:247.083000px;}
.x56{left:248.196000px;}
.x54{left:249.438000px;}
.x2e{left:251.527500px;}
.x65{left:253.783500px;}
.xf{left:256.329832px;}
.x61{left:259.407000px;}
.xe{left:265.663235px;}
.x57{left:271.159500px;}
.x7b{left:275.470500px;}
.x3f{left:277.219500px;}
.x63{left:278.490000px;}
.x33{left:281.982000px;}
.x1e{left:282.992222px;}
.x58{left:289.737000px;}
.x47{left:293.940000px;}
.x2f{left:296.038500px;}
.x21{left:299.097000px;}
.x62{left:305.619000px;}
.x29{left:317.305500px;}
.x88{left:321.906000px;}
.x48{left:325.098000px;}
.x3c{left:326.668500px;}
.x7a{left:329.376000px;}
.x8c{left:331.483500px;}
.x3d{left:334.594500px;}
.x75{left:341.026500px;}
.x49{left:343.677000px;}
.x4a{left:349.431000px;}
.x1c{left:353.788138px;}
.x18{left:355.218814px;}
.x77{left:356.949000px;}
.x7e{left:363.735000px;}
.x7c{left:365.127000px;}
.x8a{left:373.528500px;}
.x1a{left:375.395014px;}
.x4b{left:381.412500px;}
.x17{left:385.177414px;}
.x1b{left:388.891669px;}
.x59{left:390.610500px;}
.x1d{left:393.529138px;}
.x19{left:394.959814px;}
.x30{left:396.337500px;}
.x5a{left:397.975500px;}
.x39{left:401.872500px;}
.x5b{left:419.491500px;}
.x32{left:421.992000px;}
.x73{left:429.117000px;}
.x64{left:430.276500px;}
.x34{left:434.905500px;}
.x4c{left:444.028500px;}
.x7f{left:445.815000px;}
.x4d{left:451.393500px;}
.x84{left:469.503000px;}
.x3e{left:488.124000px;}
.x35{left:491.292000px;}
.x40{left:497.221500px;}
.x4f{left:503.517000px;}
.x78{left:505.263000px;}
.x50{left:510.882000px;}
.x31{left:524.283000px;}
.x36{left:537.369000px;}
.x4e{left:550.668000px;}
.x5c{left:553.494000px;}
.x5d{left:561.420000px;}
@media print{
.v1c{vertical-align:-58.981333pt;}
.ve{vertical-align:-43.040000pt;}
.v23{vertical-align:-41.381333pt;}
.v1e{vertical-align:-33.413333pt;}
.v11{vertical-align:-31.733333pt;}
.v12{vertical-align:-30.757333pt;}
.v16{vertical-align:-26.528000pt;}
.v10{vertical-align:-23.173333pt;}
.v13{vertical-align:-11.477333pt;}
.v17{vertical-align:-9.733333pt;}
.v3{vertical-align:-7.973333pt;}
.vc{vertical-align:-5.312000pt;}
.v1{vertical-align:-4.126549pt;}
.v24{vertical-align:-1.536000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.168000pt;}
.v8{vertical-align:7.077333pt;}
.v31{vertical-align:12.085333pt;}
.v9{vertical-align:13.136000pt;}
.v2{vertical-align:14.442923pt;}
.v2e{vertical-align:15.349333pt;}
.v15{vertical-align:17.978667pt;}
.v4{vertical-align:19.285333pt;}
.v14{vertical-align:21.936000pt;}
.vf{vertical-align:23.173333pt;}
.v19{vertical-align:25.562667pt;}
.v22{vertical-align:26.714667pt;}
.v1b{vertical-align:28.224000pt;}
.v29{vertical-align:29.754667pt;}
.vb{vertical-align:32.416000pt;}
.v6{vertical-align:34.330667pt;}
.v2f{vertical-align:36.448000pt;}
.v27{vertical-align:39.872000pt;}
.v2a{vertical-align:40.890667pt;}
.v2b{vertical-align:41.786667pt;}
.v5{vertical-align:43.040000pt;}
.v26{vertical-align:47.845333pt;}
.v20{vertical-align:50.480000pt;}
.vd{vertical-align:56.176000pt;}
.v7{vertical-align:58.085333pt;}
.v18{vertical-align:58.976000pt;}
.v2d{vertical-align:61.066667pt;}
.v1a{vertical-align:65.888000pt;}
.v28{vertical-align:67.125333pt;}
.v1f{vertical-align:72.112000pt;}
.v30{vertical-align:73.792000pt;}
.v2c{vertical-align:84.826667pt;}
.v25{vertical-align:90.858667pt;}
.v21{vertical-align:93.664000pt;}
.v1d{vertical-align:113.168000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000267pt;}
.ls2a{letter-spacing:0.000749pt;}
.ls40{letter-spacing:0.000854pt;}
.ls51{letter-spacing:0.001014pt;}
.lsc{letter-spacing:0.001503pt;}
.ls58{letter-spacing:0.001788pt;}
.ls38{letter-spacing:0.001962pt;}
.ls5b{letter-spacing:0.002079pt;}
.ls7{letter-spacing:0.002694pt;}
.ls1c{letter-spacing:0.002906pt;}
.ls69{letter-spacing:0.003033pt;}
.ls11{letter-spacing:0.003246pt;}
.ls17{letter-spacing:0.003892pt;}
.ls55{letter-spacing:0.004312pt;}
.ls28{letter-spacing:0.006082pt;}
.ls2e{letter-spacing:0.006836pt;}
.ls56{letter-spacing:0.215286pt;}
.ls15{letter-spacing:0.407455pt;}
.ls5e{letter-spacing:1.040854pt;}
.ls4d{letter-spacing:1.046188pt;}
.ls8b{letter-spacing:1.904681pt;}
.ls8d{letter-spacing:1.910015pt;}
.ls84{letter-spacing:2.600897pt;}
.ls6b{letter-spacing:2.651680pt;}
.ls61{letter-spacing:2.651982pt;}
.ls50{letter-spacing:2.652459pt;}
.ls83{letter-spacing:2.654186pt;}
.ls35{letter-spacing:2.655095pt;}
.ls68{letter-spacing:2.655884pt;}
.ls4c{letter-spacing:2.657014pt;}
.ls57{letter-spacing:2.657316pt;}
.lsf{letter-spacing:2.657793pt;}
.ls46{letter-spacing:2.657935pt;}
.ls67{letter-spacing:2.658529pt;}
.ls60{letter-spacing:2.659633pt;}
.ls62{letter-spacing:2.660428pt;}
.ls89{letter-spacing:2.660667pt;}
.ls9{letter-spacing:2.668629pt;}
.ls63{letter-spacing:2.801935pt;}
.ls52{letter-spacing:2.807269pt;}
.ls74{letter-spacing:3.379878pt;}
.ls29{letter-spacing:3.801225pt;}
.ls85{letter-spacing:4.223996pt;}
.ls30{letter-spacing:4.495334pt;}
.ls7f{letter-spacing:4.802585pt;}
.ls7c{letter-spacing:4.807919pt;}
.ls20{letter-spacing:5.718992pt;}
.ls26{letter-spacing:5.786938pt;}
.ls25{letter-spacing:5.792271pt;}
.ls92{letter-spacing:7.485252pt;}
.ls79{letter-spacing:8.395145pt;}
.ls5{letter-spacing:8.440027pt;}
.ls6{letter-spacing:8.443145pt;}
.ls43{letter-spacing:8.853600pt;}
.ls1f{letter-spacing:8.855507pt;}
.ls5d{letter-spacing:8.858933pt;}
.ls9a{letter-spacing:10.333487pt;}
.ls66{letter-spacing:11.510402pt;}
.ls73{letter-spacing:11.510586pt;}
.ls88{letter-spacing:11.514001pt;}
.ls5a{letter-spacing:11.514254pt;}
.ls6a{letter-spacing:11.515735pt;}
.ls33{letter-spacing:11.795718pt;}
.ls3d{letter-spacing:11.803145pt;}
.ls9c{letter-spacing:11.804745pt;}
.ls81{letter-spacing:11.806400pt;}
.ls3b{letter-spacing:11.808479pt;}
.ls53{letter-spacing:11.808749pt;}
.ls78{letter-spacing:11.917913pt;}
.lsb{letter-spacing:12.245812pt;}
.lsa{letter-spacing:12.253361pt;}
.ls24{letter-spacing:13.511507pt;}
.ls22{letter-spacing:13.762205pt;}
.ls9d{letter-spacing:13.835416pt;}
.ls3{letter-spacing:14.221361pt;}
.ls3a{letter-spacing:14.460459pt;}
.ls9b{letter-spacing:14.466245pt;}
.ls3c{letter-spacing:14.467633pt;}
.ls1b{letter-spacing:14.572326pt;}
.ls2f{letter-spacing:14.643878pt;}
.ls94{letter-spacing:14.731680pt;}
.ls1d{letter-spacing:14.754906pt;}
.ls6e{letter-spacing:14.757812pt;}
.ls75{letter-spacing:14.758082pt;}
.ls72{letter-spacing:14.759412pt;}
.ls1e{letter-spacing:14.759467pt;}
.ls31{letter-spacing:14.760239pt;}
.ls80{letter-spacing:14.763416pt;}
.ls5f{letter-spacing:14.764455pt;}
.ls45{letter-spacing:15.143467pt;}
.ls44{letter-spacing:15.152749pt;}
.ls6f{letter-spacing:15.504749pt;}
.ls7a{letter-spacing:16.326347pt;}
.ls4{letter-spacing:16.519507pt;}
.ls3f{letter-spacing:16.565600pt;}
.ls8c{letter-spacing:16.667680pt;}
.ls65{letter-spacing:16.797196pt;}
.ls87{letter-spacing:16.972599pt;}
.ls76{letter-spacing:17.180602pt;}
.ls6d{letter-spacing:17.419680pt;}
.ls2d{letter-spacing:17.620667pt;}
.ls9f{letter-spacing:17.714205pt;}
.ls2{letter-spacing:17.927507pt;}
.ls47{letter-spacing:17.943412pt;}
.ls71{letter-spacing:18.137211pt;}
.ls82{letter-spacing:18.181812pt;}
.ls7b{letter-spacing:18.477252pt;}
.ls37{letter-spacing:18.884428pt;}
.ls8{letter-spacing:18.892629pt;}
.ls6c{letter-spacing:19.355919pt;}
.ls21{letter-spacing:19.488681pt;}
.ls9e{letter-spacing:19.616681pt;}
.ls8e{letter-spacing:20.086347pt;}
.ls5c{letter-spacing:20.180428pt;}
.ls90{letter-spacing:20.241014pt;}
.ls36{letter-spacing:20.263507pt;}
.ls77{letter-spacing:20.321503pt;}
.lse{letter-spacing:20.345211pt;}
.ls49{letter-spacing:20.372428pt;}
.ls4a{letter-spacing:20.377761pt;}
.ls4e{letter-spacing:20.505761pt;}
.ls4f{letter-spacing:20.508602pt;}
.ls4b{letter-spacing:20.524602pt;}
.ls48{letter-spacing:20.599126pt;}
.ls42{letter-spacing:20.599269pt;}
.ls41{letter-spacing:20.601761pt;}
.ls96{letter-spacing:20.772074pt;}
.ls91{letter-spacing:21.131145pt;}
.ls70{letter-spacing:21.297503pt;}
.ls32{letter-spacing:21.379878pt;}
.ls8a{letter-spacing:21.501252pt;}
.ls97{letter-spacing:21.508074pt;}
.ls2c{letter-spacing:22.807862pt;}
.ls59{letter-spacing:23.363633pt;}
.ls14{letter-spacing:24.704479pt;}
.ls12{letter-spacing:26.018529pt;}
.ls10{letter-spacing:26.019633pt;}
.lsd{letter-spacing:26.151269pt;}
.ls16{letter-spacing:26.332911pt;}
.ls1a{letter-spacing:26.488027pt;}
.ls1{letter-spacing:26.568027pt;}
.ls18{letter-spacing:27.003145pt;}
.ls2b{letter-spacing:27.339145pt;}
.ls27{letter-spacing:27.509812pt;}
.ls19{letter-spacing:27.714245pt;}
.ls13{letter-spacing:30.251547pt;}
.ls23{letter-spacing:31.692326pt;}
.ls99{letter-spacing:33.487181pt;}
.ls8f{letter-spacing:35.547680pt;}
.ls98{letter-spacing:36.603165pt;}
.ls93{letter-spacing:48.002906pt;}
.ls34{letter-spacing:49.374544pt;}
.ls54{letter-spacing:83.285812pt;}
.ls7d{letter-spacing:164.192690pt;}
.ls7e{letter-spacing:179.070400pt;}
.ls86{letter-spacing:229.145638pt;}
.ls95{letter-spacing:406.536239pt;}
.ls64{letter-spacing:413.185788pt;}
.ls3e{letter-spacing:567.602529pt;}
.wsb5{word-spacing:-64.929585pt;}
.wsc4{word-spacing:-53.133867pt;}
.wsb4{word-spacing:-42.066082pt;}
.ws86{word-spacing:-34.611401pt;}
.ws9e{word-spacing:-28.118362pt;}
.ws101{word-spacing:-27.240382pt;}
.wsfd{word-spacing:-27.235049pt;}
.wsb6{word-spacing:-27.225793pt;}
.ws13a{word-spacing:-25.779390pt;}
.wsea{word-spacing:-25.775004pt;}
.wsa0{word-spacing:-25.738045pt;}
.ws106{word-spacing:-21.981255pt;}
.wseb{word-spacing:-19.840186pt;}
.wsc3{word-spacing:-18.375315pt;}
.wsc5{word-spacing:-18.369982pt;}
.wsc9{word-spacing:-17.914352pt;}
.wsd6{word-spacing:-17.070568pt;}
.ws9f{word-spacing:-14.760588pt;}
.ws105{word-spacing:-13.122588pt;}
.ws66{word-spacing:-9.177446pt;}
.wsa6{word-spacing:-8.591259pt;}
.wsf4{word-spacing:-8.264082pt;}
.ws124{word-spacing:-8.004268pt;}
.ws12e{word-spacing:-7.954834pt;}
.ws12b{word-spacing:-7.930712pt;}
.wsef{word-spacing:-7.858749pt;}
.ws12c{word-spacing:-7.539249pt;}
.ws126{word-spacing:-7.509653pt;}
.wsbc{word-spacing:-7.257148pt;}
.ws122{word-spacing:-7.249430pt;}
.ws109{word-spacing:-6.573255pt;}
.ws12f{word-spacing:-6.534031pt;}
.ws12a{word-spacing:-6.508370pt;}
.ws125{word-spacing:-6.282863pt;}
.wse6{word-spacing:-5.124096pt;}
.wse5{word-spacing:-4.766548pt;}
.wsff{word-spacing:-4.650430pt;}
.wsb0{word-spacing:-4.175259pt;}
.wsb2{word-spacing:-2.763965pt;}
.wsb3{word-spacing:-2.752334pt;}
.ws20{word-spacing:-2.646067pt;}
.ws111{word-spacing:-2.327263pt;}
.ws158{word-spacing:-2.319309pt;}
.ws138{word-spacing:-2.219171pt;}
.wsb8{word-spacing:-2.114728pt;}
.ws153{word-spacing:-1.984563pt;}
.ws148{word-spacing:-1.936742pt;}
.ws46{word-spacing:-1.849059pt;}
.ws7b{word-spacing:-1.795925pt;}
.ws73{word-spacing:-1.742791pt;}
.ws10d{word-spacing:-1.740718pt;}
.ws3d{word-spacing:-1.689657pt;}
.ws2e{word-spacing:-1.636523pt;}
.ws152{word-spacing:-1.554176pt;}
.ws139{word-spacing:-1.530255pt;}
.ws10f{word-spacing:-1.508620pt;}
.ws74{word-spacing:-1.264586pt;}
.ws1b{word-spacing:-1.211452pt;}
.wse2{word-spacing:-1.158318pt;}
.wse8{word-spacing:-1.105184pt;}
.wse9{word-spacing:-1.100541pt;}
.wsa2{word-spacing:-0.998917pt;}
.ws6a{word-spacing:-0.980326pt;}
.wsf5{word-spacing:-0.945783pt;}
.ws133{word-spacing:-0.839515pt;}
.ws147{word-spacing:-0.789043pt;}
.wsfc{word-spacing:-0.786381pt;}
.wsd4{word-spacing:-0.733247pt;}
.ws145{word-spacing:-0.693402pt;}
.ws144{word-spacing:-0.645581pt;}
.ws44{word-spacing:-0.626980pt;}
.ws21{word-spacing:-0.573846pt;}
.ws75{word-spacing:-0.520712pt;}
.wsf8{word-spacing:-0.414444pt;}
.ws76{word-spacing:-0.361310pt;}
.ws27{word-spacing:-0.308176pt;}
.wsd2{word-spacing:-0.255043pt;}
.wscf{word-spacing:-0.244976pt;}
.wsd1{word-spacing:-0.225298pt;}
.ws154{word-spacing:-0.215194pt;}
.ws7c{word-spacing:-0.201909pt;}
.ws132{word-spacing:-0.148775pt;}
.ws93{word-spacing:-0.095641pt;}
.ws141{word-spacing:-0.071731pt;}
.ws64{word-spacing:-0.042507pt;}
.wsc6{word-spacing:-0.037194pt;}
.wsbd{word-spacing:-0.013752pt;}
.wsc7{word-spacing:-0.007631pt;}
.wsd0{word-spacing:-0.002298pt;}
.ws25{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.010627pt;}
.ws7d{word-spacing:0.063761pt;}
.ws159{word-spacing:0.071731pt;}
.ws1c{word-spacing:0.116895pt;}
.ws10b{word-spacing:0.170028pt;}
.ws121{word-spacing:0.223162pt;}
.wsed{word-spacing:0.276296pt;}
.ws77{word-spacing:0.329430pt;}
.wsf{word-spacing:0.358656pt;}
.ws43{word-spacing:0.382564pt;}
.wsd3{word-spacing:0.435698pt;}
.ws53{word-spacing:0.488832pt;}
.ws140{word-spacing:0.502118pt;}
.ws71{word-spacing:0.541965pt;}
.ws96{word-spacing:0.595099pt;}
.ws7a{word-spacing:0.645581pt;}
.ws3a{word-spacing:0.648233pt;}
.ws112{word-spacing:0.701367pt;}
.wsce{word-spacing:0.728076pt;}
.wsa5{word-spacing:0.754501pt;}
.wsf6{word-spacing:0.807635pt;}
.ws34{word-spacing:0.860769pt;}
.ws8f{word-spacing:0.913903pt;}
.ws51{word-spacing:1.073304pt;}
.ws82{word-spacing:1.126438pt;}
.ws83{word-spacing:1.179572pt;}
.ws81{word-spacing:1.232706pt;}
.wsac{word-spacing:1.238074pt;}
.ws80{word-spacing:1.285840pt;}
.ws97{word-spacing:1.338973pt;}
.ws2c{word-spacing:1.392107pt;}
.ws84{word-spacing:1.445241pt;}
.ws63{word-spacing:1.498375pt;}
.ws13f{word-spacing:1.649818pt;}
.wse3{word-spacing:1.657777pt;}
.ws33{word-spacing:1.764044pt;}
.wsbe{word-spacing:1.810664pt;}
.wsa8{word-spacing:1.817178pt;}
.ws28{word-spacing:1.870312pt;}
.wsaf{word-spacing:1.874183pt;}
.ws8{word-spacing:1.888922pt;}
.wsfb{word-spacing:1.913474pt;}
.wscb{word-spacing:1.923446pt;}
.ws5b{word-spacing:1.976580pt;}
.wscc{word-spacing:2.029714pt;}
.ws143{word-spacing:2.080205pt;}
.wsa7{word-spacing:2.082848pt;}
.ws110{word-spacing:2.128026pt;}
.ws78{word-spacing:2.135981pt;}
.wsdf{word-spacing:2.189115pt;}
.ws155{word-spacing:2.223667pt;}
.wsd5{word-spacing:2.242249pt;}
.wsaa{word-spacing:2.257126pt;}
.ws14c{word-spacing:2.271488pt;}
.ws61{word-spacing:2.295383pt;}
.ws134{word-spacing:2.348517pt;}
.ws113{word-spacing:2.401651pt;}
.ws6b{word-spacing:2.414950pt;}
.wsd7{word-spacing:2.454785pt;}
.ws70{word-spacing:2.507919pt;}
.ws11{word-spacing:2.558413pt;}
.ws3b{word-spacing:2.561052pt;}
.ws57{word-spacing:2.614186pt;}
.ws15a{word-spacing:2.654054pt;}
.wsfe{word-spacing:2.667320pt;}
.ws3{word-spacing:2.701875pt;}
.ws4f{word-spacing:2.720454pt;}
.ws2{word-spacing:2.749696pt;}
.ws3e{word-spacing:2.773588pt;}
.wsa1{word-spacing:2.815143pt;}
.ws103{word-spacing:2.824718pt;}
.ws35{word-spacing:2.826722pt;}
.wsee{word-spacing:2.850793pt;}
.wsf0{word-spacing:2.851459pt;}
.ws107{word-spacing:2.869707pt;}
.wsf1{word-spacing:2.879856pt;}
.ws9c{word-spacing:2.880741pt;}
.ws88{word-spacing:2.910752pt;}
.ws1{word-spacing:2.932989pt;}
.ws114{word-spacing:2.951651pt;}
.ws104{word-spacing:2.962249pt;}
.ws30{word-spacing:2.986123pt;}
.ws36{word-spacing:3.039257pt;}
.wsc0{word-spacing:3.082871pt;}
.wsc1{word-spacing:3.092391pt;}
.ws9{word-spacing:3.132262pt;}
.ws3c{word-spacing:3.145525pt;}
.wsbf{word-spacing:3.183759pt;}
.ws1a{word-spacing:3.198659pt;}
.ws72{word-spacing:3.251793pt;}
.ws6d{word-spacing:3.304927pt;}
.ws49{word-spacing:3.358060pt;}
.ws8d{word-spacing:3.464328pt;}
.ws79{word-spacing:3.467008pt;}
.ws151{word-spacing:3.610470pt;}
.ws47{word-spacing:3.623730pt;}
.ws5e{word-spacing:3.676864pt;}
.wsa4{word-spacing:3.729997pt;}
.ws31{word-spacing:3.783131pt;}
.ws3f{word-spacing:3.836265pt;}
.ws19{word-spacing:3.889399pt;}
.ws1e{word-spacing:3.942533pt;}
.ws52{word-spacing:3.985067pt;}
.ws14b{word-spacing:4.040858pt;}
.ws26{word-spacing:4.101935pt;}
.ws4a{word-spacing:4.208202pt;}
.ws11c{word-spacing:4.261336pt;}
.ws40{word-spacing:4.314470pt;}
.ws4c{word-spacing:4.367604pt;}
.ws24{word-spacing:4.420738pt;}
.wsd8{word-spacing:4.473872pt;}
.ws94{word-spacing:4.527005pt;}
.ws13{word-spacing:4.566886pt;}
.ws60{word-spacing:4.580139pt;}
.ws2d{word-spacing:4.686407pt;}
.ws5a{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.wsdb{word-spacing:4.845809pt;}
.ws62{word-spacing:4.898943pt;}
.ws157{word-spacing:4.901632pt;}
.wsb9{word-spacing:4.952076pt;}
.ws11a{word-spacing:5.005210pt;}
.ws7f{word-spacing:5.058344pt;}
.ws37{word-spacing:5.111478pt;}
.ws23{word-spacing:5.164612pt;}
.ws116{word-spacing:5.217746pt;}
.wsdd{word-spacing:5.270880pt;}
.wsb{word-spacing:5.284198pt;}
.ws2f{word-spacing:5.324013pt;}
.wsb1{word-spacing:5.377147pt;}
.ws156{word-spacing:5.427661pt;}
.ws48{word-spacing:5.430281pt;}
.ws56{word-spacing:5.483415pt;}
.wsdc{word-spacing:5.536549pt;}
.ws4b{word-spacing:5.589683pt;}
.ws42{word-spacing:5.642817pt;}
.ws5{word-spacing:5.666765pt;}
.ws91{word-spacing:5.695951pt;}
.wsb7{word-spacing:5.749084pt;}
.ws10{word-spacing:5.762406pt;}
.wsbb{word-spacing:5.802218pt;}
.ws5f{word-spacing:5.908486pt;}
.ws146{word-spacing:5.953690pt;}
.ws38{word-spacing:5.961620pt;}
.wsa{word-spacing:6.001510pt;}
.ws5d{word-spacing:6.014754pt;}
.ws102{word-spacing:6.049782pt;}
.ws100{word-spacing:6.051384pt;}
.wscd{word-spacing:6.067888pt;}
.ws85{word-spacing:6.121021pt;}
.ws90{word-spacing:6.227289pt;}
.ws12{word-spacing:6.240614pt;}
.ws6c{word-spacing:6.288435pt;}
.wse0{word-spacing:6.333557pt;}
.wse1{word-spacing:6.439825pt;}
.ws11b{word-spacing:6.546092pt;}
.ws14f{word-spacing:6.623181pt;}
.ws92{word-spacing:6.652360pt;}
.ws22{word-spacing:6.705494pt;}
.ws39{word-spacing:6.758628pt;}
.ws135{word-spacing:6.811762pt;}
.ws149{word-spacing:7.005747pt;}
.ws41{word-spacing:7.077431pt;}
.ws50{word-spacing:7.130565pt;}
.ws6{word-spacing:7.197030pt;}
.ws11e{word-spacing:7.236833pt;}
.ws98{word-spacing:7.289967pt;}
.ws99{word-spacing:7.343100pt;}
.wsc{word-spacing:7.436134pt;}
.ws18{word-spacing:7.449368pt;}
.ws4e{word-spacing:7.502502pt;}
.ws8c{word-spacing:7.555636pt;}
.ws14d{word-spacing:7.579597pt;}
.wsd9{word-spacing:7.608770pt;}
.ws6f{word-spacing:7.661904pt;}
.wsba{word-spacing:7.715037pt;}
.wsfa{word-spacing:7.768171pt;}
.ws95{word-spacing:7.821305pt;}
.ws8e{word-spacing:7.874439pt;}
.ws142{word-spacing:7.962163pt;}
.ws115{word-spacing:7.980707pt;}
.ws17{word-spacing:8.086975pt;}
.ws15{word-spacing:8.105626pt;}
.ws1d{word-spacing:8.140108pt;}
.ws118{word-spacing:8.193242pt;}
.ws2b{word-spacing:8.246376pt;}
.ws10c{word-spacing:8.299510pt;}
.ws5c{word-spacing:8.352644pt;}
.ws89{word-spacing:8.405778pt;}
.wsf2{word-spacing:8.458912pt;}
.ws119{word-spacing:8.512045pt;}
.ws8a{word-spacing:8.565179pt;}
.wse{word-spacing:8.583834pt;}
.ws8b{word-spacing:8.618313pt;}
.ws7{word-spacing:8.631654pt;}
.ws87{word-spacing:8.724581pt;}
.wsd{word-spacing:8.775117pt;}
.ws59{word-spacing:8.777715pt;}
.wsf3{word-spacing:8.830849pt;}
.ws9a{word-spacing:8.883983pt;}
.ws9b{word-spacing:8.937116pt;}
.wsda{word-spacing:8.990250pt;}
.wsde{word-spacing:9.096518pt;}
.ws150{word-spacing:9.109862pt;}
.ws6e{word-spacing:9.309053pt;}
.ws69{word-spacing:9.372877pt;}
.ws2a{word-spacing:9.415321pt;}
.ws108{word-spacing:9.468455pt;}
.ws10a{word-spacing:9.521589pt;}
.ws13d{word-spacing:9.574723pt;}
.wsf7{word-spacing:9.627857pt;}
.ws11f{word-spacing:9.680991pt;}
.ws55{word-spacing:9.840392pt;}
.ws29{word-spacing:9.946660pt;}
.ws4d{word-spacing:10.106061pt;}
.ws45{word-spacing:10.159195pt;}
.wsf9{word-spacing:10.212329pt;}
.ws58{word-spacing:10.265463pt;}
.ws32{word-spacing:10.318597pt;}
.ws14a{word-spacing:10.353203pt;}
.ws120{word-spacing:10.371731pt;}
.wsae{word-spacing:10.477999pt;}
.wsa9{word-spacing:10.577297pt;}
.wsab{word-spacing:10.584266pt;}
.wsad{word-spacing:10.600793pt;}
.ws117{word-spacing:11.062471pt;}
.wsa3{word-spacing:11.221873pt;}
.wsc2{word-spacing:11.275007pt;}
.ws9d{word-spacing:11.700077pt;}
.ws13b{word-spacing:12.125148pt;}
.ws13c{word-spacing:12.869023pt;}
.ws14e{word-spacing:13.174630pt;}
.ws10e{word-spacing:13.594678pt;}
.ws12d{word-spacing:13.989535pt;}
.ws1f{word-spacing:18.662520pt;}
.ws54{word-spacing:20.297137pt;}
.ws13e{word-spacing:23.579372pt;}
.ws14{word-spacing:24.526256pt;}
.ws127{word-spacing:25.268965pt;}
.ws128{word-spacing:25.270690pt;}
.ws129{word-spacing:25.270946pt;}
.ws4{word-spacing:26.515067pt;}
.ws137{word-spacing:43.087282pt;}
.ws67{word-spacing:45.367283pt;}
.ws16{word-spacing:51.805867pt;}
.wsc8{word-spacing:84.252931pt;}
.wse4{word-spacing:113.814192pt;}
.ws65{word-spacing:123.094967pt;}
.ws123{word-spacing:125.233367pt;}
.ws136{word-spacing:185.464105pt;}
.wsca{word-spacing:215.862827pt;}
.ws11d{word-spacing:231.560105pt;}
.wsec{word-spacing:305.133312pt;}
.ws68{word-spacing:325.176204pt;}
.wse7{word-spacing:502.708112pt;}
.ws130{word-spacing:831.944105pt;}
.ws131{word-spacing:833.304006pt;}
._2{margin-left:-25.682777pt;}
._b{margin-left:-24.680855pt;}
._21{margin-left:-17.709518pt;}
._17{margin-left:-5.100851pt;}
._4{margin-left:-4.112589pt;}
._0{margin-left:-2.371905pt;}
._1{margin-left:-1.381481pt;}
._3{width:1.338982pt;}
._5{width:2.667319pt;}
._e{width:3.564239pt;}
._1e{width:4.596439pt;}
._20{width:5.835157pt;}
._6{width:8.464282pt;}
._d{width:9.431196pt;}
._1c{width:12.697081pt;}
._7{width:14.486427pt;}
._13{width:15.379067pt;}
._11{width:16.558647pt;}
._10{width:17.461923pt;}
._14{width:18.630868pt;}
._8{width:19.640412pt;}
._9{width:20.862491pt;}
._12{width:22.775319pt;}
._c{width:23.944255pt;}
._23{width:25.113200pt;}
._f{width:26.016476pt;}
._1f{width:26.944979pt;}
._2a{width:46.224178pt;}
._16{width:61.103947pt;}
._1b{width:64.477849pt;}
._15{width:71.731200pt;}
._19{width:95.579136pt;}
._22{width:105.979655pt;}
._24{width:127.107686pt;}
._29{width:133.168343pt;}
._28{width:137.826039pt;}
._a{width:151.687578pt;}
._1a{width:211.122517pt;}
._18{width:245.521432pt;}
._25{width:246.573042pt;}
._26{width:250.910851pt;}
._27{width:256.586738pt;}
._1d{width:290.175728pt;}
.fs10{font-size:5.426692pt;}
.fsf{font-size:6.261575pt;}
.fs1b{font-size:7.982631pt;}
.fs13{font-size:8.377150pt;}
.fs16{font-size:8.677827pt;}
.fs19{font-size:8.712042pt;}
.fs11{font-size:9.393459pt;}
.fs12{font-size:9.665906pt;}
.fs15{font-size:10.012871pt;}
.fs18{font-size:10.052333pt;}
.fs17{font-size:10.574282pt;}
.fs1a{font-size:10.606445pt;}
.fs14{font-size:10.672358pt;}
.fs1c{font-size:12.213711pt;}
.fs9{font-size:17.133013pt;}
.fsd{font-size:17.145856pt;}
.fse{font-size:18.432000pt;}
.fsa{font-size:22.028160pt;}
.fs4{font-size:24.759296pt;}
.fs7{font-size:25.546429pt;}
.fs6{font-size:26.047377pt;}
.fsc{font-size:26.566933pt;}
.fs8{font-size:29.370880pt;}
.fs5{font-size:33.012395pt;}
.fsb{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:0.647082pt;}
.y17e{bottom:2.235550pt;}
.y1f0{bottom:2.335715pt;}
.y7e{bottom:2.378608pt;}
.y1bc{bottom:2.999838pt;}
.y1c5{bottom:3.089950pt;}
.y1cf{bottom:3.176894pt;}
.y180{bottom:4.354534pt;}
.y145{bottom:5.376000pt;}
.y182{bottom:6.884057pt;}
.y1bd{bottom:7.275880pt;}
.y1c6{bottom:7.297008pt;}
.y1d0{bottom:7.549478pt;}
.y13c{bottom:8.448000pt;}
.y1f1{bottom:8.936686pt;}
.y13a{bottom:9.644544pt;}
.y9e{bottom:9.943267pt;}
.y1bf{bottom:10.247348pt;}
.y1c8{bottom:10.375119pt;}
.y9a{bottom:10.555160pt;}
.y1d2{bottom:10.639630pt;}
.y18a{bottom:12.203264pt;}
.y143{bottom:12.288000pt;}
.y130{bottom:12.859392pt;}
.y132{bottom:13.216597pt;}
.y193{bottom:13.702202pt;}
.y19a{bottom:13.718413pt;}
.y183{bottom:14.854772pt;}
.y1f2{bottom:15.537687pt;}
.y138{bottom:15.717035pt;}
.y7d{bottom:16.506197pt;}
.y1c9{bottom:17.373700pt;}
.y18b{bottom:17.510355pt;}
.y80{bottom:17.537835pt;}
.y1c0{bottom:18.667416pt;}
.y135{bottom:18.931883pt;}
.y1d3{bottom:18.948671pt;}
.y1f9{bottom:19.375505pt;}
.y194{bottom:20.520304pt;}
.y19b{bottom:20.520315pt;}
.y7b{bottom:21.585528pt;}
.y1f3{bottom:22.138689pt;}
.y18c{bottom:22.792991pt;}
.y184{bottom:22.813361pt;}
.y1ca{bottom:24.320373pt;}
.y1c7{bottom:25.140430pt;}
.y1d1{bottom:25.239725pt;}
.y1be{bottom:25.360243pt;}
.y134{bottom:25.361579pt;}
.y181{bottom:26.018386pt;}
.y74{bottom:26.306752pt;}
.y7c{bottom:26.822571pt;}
.y1c1{bottom:27.087483pt;}
.y1d4{bottom:27.257798pt;}
.y195{bottom:27.338449pt;}
.y19c{bottom:27.338460pt;}
.y141{bottom:28.032000pt;}
.y18d{bottom:28.096040pt;}
.y1f4{bottom:28.586192pt;}
.y99{bottom:28.911960pt;}
.y136{bottom:30.719659pt;}
.y185{bottom:30.747537pt;}
.y1cb{bottom:31.293048pt;}
.y81{bottom:32.496576pt;}
.y18e{bottom:33.399046pt;}
.y144{bottom:33.408000pt;}
.y196{bottom:34.156594pt;}
.y19d{bottom:34.156605pt;}
.y140{bottom:34.176000pt;}
.y1f5{bottom:35.187193pt;}
.y1c2{bottom:35.507550pt;}
.y1d5{bottom:35.566967pt;}
.y139{bottom:35.720533pt;}
.y13d{bottom:36.096000pt;}
.y13e{bottom:37.248000pt;}
.y1cc{bottom:38.265638pt;}
.y131{bottom:38.578176pt;}
.y186{bottom:38.701956pt;}
.y98{bottom:38.702253pt;}
.y18f{bottom:38.718253pt;}
.y133{bottom:38.935381pt;}
.y142{bottom:40.320000pt;}
.y197{bottom:40.974696pt;}
.y19e{bottom:40.974707pt;}
.y13f{bottom:41.088000pt;}
.y10a{bottom:41.141333pt;}
.y1f6{bottom:41.788195pt;}
.y137{bottom:42.150229pt;}
.y108{bottom:42.894667pt;}
.y1d6{bottom:43.876008pt;}
.y1c3{bottom:43.927746pt;}
.y190{bottom:44.021302pt;}
.y107{bottom:44.357333pt;}
.y1cd{bottom:45.238313pt;}
.y12e{bottom:45.353333pt;}
.y27{bottom:45.354667pt;}
.y187{bottom:46.656461pt;}
.y198{bottom:47.792798pt;}
.y19f{bottom:47.792809pt;}
.y1a2{bottom:48.342667pt;}
.y1f7{bottom:48.389196pt;}
.y21f{bottom:48.674667pt;}
.y1fb{bottom:48.696214pt;}
.y191{bottom:49.308012pt;}
.y109{bottom:49.994667pt;}
.y96{bottom:50.940120pt;}
.y1fa{bottom:51.152380pt;}
.y9d{bottom:51.552013pt;}
.y7a{bottom:52.097685pt;}
.y97{bottom:52.163907pt;}
.y1d7{bottom:52.185135pt;}
.y1ce{bottom:52.210902pt;}
.y1c4{bottom:52.347781pt;}
.y10b{bottom:54.533333pt;}
.y199{bottom:54.610943pt;}
.y1a0{bottom:54.610954pt;}
.y192{bottom:54.610975pt;}
.y188{bottom:54.627219pt;}
.y1f8{bottom:54.836625pt;}
.y24f{bottom:58.401333pt;}
.y10c{bottom:59.920000pt;}
.y1a3{bottom:60.149333pt;}
.y79{bottom:60.866603pt;}
.y26{bottom:61.294667pt;}
.y76{bottom:62.414059pt;}
.y1a1{bottom:62.954667pt;}
.y106{bottom:63.204000pt;}
.y70{bottom:63.961515pt;}
.y21e{bottom:64.614667pt;}
.y6e{bottom:65.508971pt;}
.y78{bottom:70.151339pt;}
.y10d{bottom:71.557333pt;}
.y77{bottom:71.698795pt;}
.y24e{bottom:73.013333pt;}
.y72{bottom:74.277888pt;}
.y53{bottom:76.089333pt;}
.y25{bottom:77.234667pt;}
.y21d{bottom:80.556000pt;}
.y9b{bottom:84.288307pt;}
.y24d{bottom:87.625333pt;}
.y52{bottom:92.029333pt;}
.y24{bottom:93.174667pt;}
.y105{bottom:96.478667pt;}
.y21c{bottom:96.496000pt;}
.y24c{bottom:101.592000pt;}
.yd0{bottom:103.610667pt;}
.y6f{bottom:104.711189pt;}
.y51{bottom:107.970667pt;}
.y23{bottom:109.114667pt;}
.y189{bottom:109.446667pt;}
.y104{bottom:112.418667pt;}
.y21b{bottom:112.436000pt;}
.y24b{bottom:116.204000pt;}
.y50{bottom:123.910667pt;}
.y17d{bottom:124.058667pt;}
.y17f{bottom:124.663299pt;}
.y6c{bottom:125.054667pt;}
.y22{bottom:125.056000pt;}
.y103{bottom:128.358667pt;}
.y21a{bottom:128.376000pt;}
.y24a{bottom:130.816000pt;}
.y75{bottom:134.628672pt;}
.y162{bottom:134.922667pt;}
.y4f{bottom:139.850667pt;}
.ycf{bottom:139.986667pt;}
.y12d{bottom:140.994667pt;}
.y21{bottom:140.996000pt;}
.yce{bottom:143.270667pt;}
.y102{bottom:144.298667pt;}
.y249{bottom:144.782667pt;}
.y73{bottom:145.976683pt;}
.y7f{bottom:148.555776pt;}
.y71{bottom:149.587413pt;}
.y219{bottom:151.526667pt;}
.y94{bottom:153.824000pt;}
.y4e{bottom:155.790667pt;}
.ycd{bottom:155.926667pt;}
.y20{bottom:156.936000pt;}
.y100{bottom:156.954667pt;}
.ycc{bottom:159.210667pt;}
.y248{bottom:159.394667pt;}
.yff{bottom:160.238667pt;}
.y218{bottom:167.466667pt;}
.y101{bottom:167.928000pt;}
.y4d{bottom:171.730667pt;}
.ycb{bottom:171.866667pt;}
.y1f{bottom:172.876000pt;}
.y247{bottom:173.361333pt;}
.y161{bottom:174.013333pt;}
.yca{bottom:175.150667pt;}
.y217{bottom:183.406667pt;}
.y4c{bottom:187.670667pt;}
.y246{bottom:187.973333pt;}
.y1e{bottom:188.816000pt;}
.y160{bottom:189.954667pt;}
.yfc{bottom:190.938667pt;}
.yc9{bottom:191.090667pt;}
.yfa{bottom:192.690667pt;}
.yf9{bottom:194.154667pt;}
.y93{bottom:195.877333pt;}
.yf8{bottom:197.328000pt;}
.y216{bottom:199.346667pt;}
.yfb{bottom:199.790667pt;}
.y245{bottom:202.584000pt;}
.y4b{bottom:203.612000pt;}
.y1d{bottom:204.756000pt;}
.y15f{bottom:205.894667pt;}
.yc8{bottom:207.032000pt;}
.yfd{bottom:209.717333pt;}
.y92{bottom:211.817333pt;}
.yf5{bottom:213.001333pt;}
.y215{bottom:214.433333pt;}
.y17c{bottom:216.134667pt;}
.y1ee{bottom:216.505333pt;}
.y244{bottom:216.552000pt;}
.y1bb{bottom:217.834667pt;}
.y4a{bottom:219.552000pt;}
.y6b{bottom:220.696000pt;}
.y1c{bottom:220.697333pt;}
.yfe{bottom:221.354667pt;}
.y15e{bottom:221.834667pt;}
.yc7{bottom:222.972000pt;}
.yf7{bottom:225.620000pt;}
.y91{bottom:227.757333pt;}
.yf6{bottom:229.834667pt;}
.y214{bottom:230.373333pt;}
.y243{bottom:231.162667pt;}
.y17b{bottom:232.076000pt;}
.y1ed{bottom:232.445333pt;}
.y1ba{bottom:233.776000pt;}
.y49{bottom:235.492000pt;}
.yc6{bottom:235.628000pt;}
.y1b{bottom:236.637333pt;}
.y12c{bottom:236.728000pt;}
.y15d{bottom:237.774667pt;}
.yc5{bottom:238.912000pt;}
.y90{bottom:243.698667pt;}
.y242{bottom:245.130667pt;}
.y213{bottom:245.460000pt;}
.y17a{bottom:248.016000pt;}
.y1ec{bottom:248.385333pt;}
.y1b9{bottom:249.716000pt;}
.yc4{bottom:251.090667pt;}
.y48{bottom:251.432000pt;}
.y1a{bottom:252.577333pt;}
.y15c{bottom:253.714667pt;}
.yc3{bottom:254.852000pt;}
.yf4{bottom:257.802667pt;}
.yf1{bottom:257.804000pt;}
.yf2{bottom:258.281333pt;}
.y8f{bottom:259.638667pt;}
.y241{bottom:259.741333pt;}
.y212{bottom:261.400000pt;}
.yf0{bottom:261.565333pt;}
.y1eb{bottom:264.325333pt;}
.y1b8{bottom:265.656000pt;}
.y47{bottom:267.372000pt;}
.y6a{bottom:268.517333pt;}
.yf3{bottom:269.254667pt;}
.y15b{bottom:269.656000pt;}
.yc2{bottom:270.792000pt;}
.y240{bottom:274.353333pt;}
.y8e{bottom:275.578667pt;}
.y179{bottom:276.905333pt;}
.yee{bottom:278.206667pt;}
.y1ea{bottom:280.266667pt;}
.yed{bottom:281.490667pt;}
.y1b7{bottom:281.596000pt;}
.y12b{bottom:281.984000pt;}
.y19{bottom:282.054667pt;}
.yc1{bottom:282.970667pt;}
.y46{bottom:283.313333pt;}
.y211{bottom:283.696000pt;}
.y69{bottom:284.457333pt;}
.y15a{bottom:285.596000pt;}
.yc0{bottom:286.732000pt;}
.y23f{bottom:288.320000pt;}
.yef{bottom:289.180000pt;}
.y8d{bottom:291.518667pt;}
.y1e9{bottom:296.206667pt;}
.yec{bottom:297.430667pt;}
.y1b6{bottom:297.536000pt;}
.y12a{bottom:297.924000pt;}
.y45{bottom:299.253333pt;}
.y210{bottom:299.636000pt;}
.y68{bottom:300.397333pt;}
.y159{bottom:301.536000pt;}
.ybf{bottom:302.673333pt;}
.y23e{bottom:302.932000pt;}
.y8c{bottom:307.458667pt;}
.y178{bottom:311.108000pt;}
.y1e8{bottom:312.146667pt;}
.y1b5{bottom:313.476000pt;}
.y129{bottom:313.864000pt;}
.y44{bottom:315.193333pt;}
.y20f{bottom:315.576000pt;}
.y67{bottom:316.337333pt;}
.yad{bottom:316.338667pt;}
.y23d{bottom:316.898667pt;}
.y158{bottom:317.476000pt;}
.ybe{bottom:318.613333pt;}
.y8b{bottom:323.398667pt;}
.y18{bottom:324.158667pt;}
.yea{bottom:324.582667pt;}
.ye8{bottom:326.334667pt;}
.ye7{bottom:327.798667pt;}
.y1e7{bottom:328.086667pt;}
.y1b4{bottom:329.417333pt;}
.y128{bottom:329.805333pt;}
.ye4{bottom:330.972000pt;}
.y43{bottom:331.133333pt;}
.y23c{bottom:331.510667pt;}
.y20e{bottom:331.517333pt;}
.y66{bottom:332.278667pt;}
.y157{bottom:333.416000pt;}
.ye9{bottom:333.434667pt;}
.ybd{bottom:334.553333pt;}
.y17{bottom:338.770667pt;}
.y8a{bottom:339.340000pt;}
.ye6{bottom:343.361333pt;}
.y1e6{bottom:344.026667pt;}
.y1b3{bottom:345.357333pt;}
.y127{bottom:345.745333pt;}
.y23b{bottom:346.122667pt;}
.ye1{bottom:346.645333pt;}
.y42{bottom:347.073333pt;}
.y20d{bottom:347.457333pt;}
.y65{bottom:348.218667pt;}
.y156{bottom:349.356000pt;}
.ybc{bottom:350.493333pt;}
.yeb{bottom:354.998667pt;}
.y89{bottom:355.280000pt;}
.y177{bottom:355.937333pt;}
.ye3{bottom:359.264000pt;}
.y1e5{bottom:359.968000pt;}
.y23a{bottom:360.734667pt;}
.y1b2{bottom:361.297333pt;}
.y126{bottom:361.685333pt;}
.y41{bottom:363.013333pt;}
.y20c{bottom:363.397333pt;}
.ye2{bottom:363.478667pt;}
.y64{bottom:364.158667pt;}
.y155{bottom:365.297333pt;}
.ybb{bottom:366.433333pt;}
.y16{bottom:367.393333pt;}
.y88{bottom:371.220000pt;}
.y176{bottom:371.877333pt;}
.y239{bottom:374.701333pt;}
.y1e4{bottom:375.908000pt;}
.y1b1{bottom:377.237333pt;}
.y125{bottom:377.625333pt;}
.ye5{bottom:377.861333pt;}
.y40{bottom:378.954667pt;}
.y20b{bottom:379.337333pt;}
.y63{bottom:380.098667pt;}
.y154{bottom:381.237333pt;}
.y15{bottom:382.005333pt;}
.yba{bottom:382.374667pt;}
.y175{bottom:387.817333pt;}
.y238{bottom:389.313333pt;}
.y1e3{bottom:391.848000pt;}
.y1b0{bottom:393.177333pt;}
.y124{bottom:393.565333pt;}
.y3f{bottom:394.894667pt;}
.yac{bottom:396.038667pt;}
.ye0{bottom:396.597333pt;}
.y14{bottom:396.617333pt;}
.y153{bottom:397.177333pt;}
.yb9{bottom:398.314667pt;}
.y174{bottom:403.757333pt;}
.y237{bottom:403.925333pt;}
.y1e2{bottom:407.788000pt;}
.y20a{bottom:407.801333pt;}
.y62{bottom:407.978667pt;}
.y1af{bottom:409.117333pt;}
.y123{bottom:409.505333pt;}
.y3e{bottom:410.834667pt;}
.y13{bottom:411.229333pt;}
.yab{bottom:411.980000pt;}
.ydf{bottom:412.537333pt;}
.y152{bottom:413.117333pt;}
.yb8{bottom:414.254667pt;}
.y87{bottom:415.620000pt;}
.y236{bottom:417.892000pt;}
.y173{bottom:419.698667pt;}
.y1e1{bottom:423.728000pt;}
.yde{bottom:424.716000pt;}
.y1ae{bottom:425.058667pt;}
.ydc{bottom:425.193333pt;}
.y122{bottom:425.446667pt;}
.y12{bottom:425.840000pt;}
.y3d{bottom:426.774667pt;}
.yaa{bottom:427.920000pt;}
.ydb{bottom:428.477333pt;}
.y151{bottom:429.057333pt;}
.yb7{bottom:430.194667pt;}
.y86{bottom:430.232000pt;}
.y235{bottom:432.504000pt;}
.y172{bottom:435.638667pt;}
.ydd{bottom:436.166667pt;}
.y1e0{bottom:439.668000pt;}
.y11{bottom:440.452000pt;}
.y1ad{bottom:440.998667pt;}
.y121{bottom:441.386667pt;}
.yda{bottom:442.661333pt;}
.y3c{bottom:442.714667pt;}
.yd8{bottom:443.138667pt;}
.ya9{bottom:443.860000pt;}
.y85{bottom:444.844000pt;}
.y150{bottom:444.997333pt;}
.yb6{bottom:446.134667pt;}
.yd7{bottom:446.422667pt;}
.y234{bottom:446.470667pt;}
.y209{bottom:446.892000pt;}
.y61{bottom:449.141333pt;}
.y171{bottom:451.578667pt;}
.yd9{bottom:454.112000pt;}
.y10{bottom:455.064000pt;}
.y1ac{bottom:456.938667pt;}
.y120{bottom:457.326667pt;}
.y3b{bottom:458.654667pt;}
.y84{bottom:459.456000pt;}
.ya8{bottom:459.800000pt;}
.y14f{bottom:460.938667pt;}
.y233{bottom:461.082667pt;}
.yb5{bottom:462.074667pt;}
.yd6{bottom:462.362667pt;}
.y208{bottom:462.832000pt;}
.y60{bottom:465.081333pt;}
.y170{bottom:467.518667pt;}
.yf{bottom:469.676000pt;}
.y1df{bottom:471.308000pt;}
.y1ab{bottom:472.878667pt;}
.y11f{bottom:473.266667pt;}
.y3a{bottom:474.596000pt;}
.y232{bottom:475.694667pt;}
.ya7{bottom:475.740000pt;}
.y14e{bottom:476.878667pt;}
.yb4{bottom:478.016000pt;}
.yd4{bottom:478.304000pt;}
.y207{bottom:478.772000pt;}
.yd5{bottom:484.244000pt;}
.ye{bottom:484.288000pt;}
.y1aa{bottom:488.818667pt;}
.y11e{bottom:489.206667pt;}
.y231{bottom:489.661333pt;}
.y39{bottom:490.536000pt;}
.ya6{bottom:491.680000pt;}
.y83{bottom:492.665333pt;}
.y14d{bottom:492.818667pt;}
.yd3{bottom:494.244000pt;}
.y206{bottom:494.712000pt;}
.y16d{bottom:496.342667pt;}
.y5f{bottom:498.274667pt;}
.yd{bottom:498.900000pt;}
.y230{bottom:504.273333pt;}
.yb3{bottom:504.392000pt;}
.y11d{bottom:505.146667pt;}
.y16b{bottom:505.454667pt;}
.y38{bottom:506.476000pt;}
.ya5{bottom:507.621333pt;}
.y14c{bottom:508.758667pt;}
.y205{bottom:510.652000pt;}
.y16c{bottom:512.444000pt;}
.yc{bottom:513.512000pt;}
.y16f{bottom:515.566667pt;}
.y1de{bottom:516.230667pt;}
.y22f{bottom:518.885333pt;}
.y16e{bottom:519.269333pt;}
.y11c{bottom:521.088000pt;}
.y37{bottom:522.416000pt;}
.ya4{bottom:523.561333pt;}
.yd2{bottom:524.270667pt;}
.y204{bottom:526.593333pt;}
.yb{bottom:528.124000pt;}
.y1dd{bottom:532.170667pt;}
.y22e{bottom:532.852000pt;}
.y14b{bottom:533.454667pt;}
.y11b{bottom:537.028000pt;}
.y14a{bottom:538.034667pt;}
.y36{bottom:538.356000pt;}
.y1a9{bottom:538.694667pt;}
.ya3{bottom:539.501333pt;}
.y5e{bottom:542.094667pt;}
.y203{bottom:542.533333pt;}
.ya{bottom:542.736000pt;}
.yb2{bottom:544.052000pt;}
.y22d{bottom:547.464000pt;}
.y1dc{bottom:548.110667pt;}
.y149{bottom:548.257333pt;}
.y16a{bottom:552.669333pt;}
.y11a{bottom:552.968000pt;}
.y1a8{bottom:553.306667pt;}
.y35{bottom:554.296000pt;}
.ya2{bottom:555.441333pt;}
.y9{bottom:557.348000pt;}
.y5d{bottom:558.034667pt;}
.y202{bottom:558.473333pt;}
.yb1{bottom:559.992000pt;}
.y22c{bottom:561.430667pt;}
.y1a7{bottom:567.918667pt;}
.y169{bottom:568.609333pt;}
.y119{bottom:568.908000pt;}
.y34{bottom:570.237333pt;}
.y8{bottom:571.958667pt;}
.y5c{bottom:573.974667pt;}
.y201{bottom:574.413333pt;}
.yb0{bottom:575.932000pt;}
.y22b{bottom:576.042667pt;}
.y168{bottom:580.848000pt;}
.y1a6{bottom:582.529333pt;}
.y167{bottom:584.550667pt;}
.y118{bottom:584.848000pt;}
.y33{bottom:586.177333pt;}
.y7{bottom:586.570667pt;}
.y82{bottom:587.392000pt;}
.y148{bottom:588.493333pt;}
.y5b{bottom:589.916000pt;}
.y22a{bottom:590.009333pt;}
.y200{bottom:590.353333pt;}
.yaf{bottom:591.872000pt;}
.y1db{bottom:596.722667pt;}
.y166{bottom:600.490667pt;}
.y117{bottom:600.788000pt;}
.y6d{bottom:602.004000pt;}
.y32{bottom:602.117333pt;}
.y147{bottom:604.433333pt;}
.y229{bottom:604.621333pt;}
.y1ff{bottom:606.294667pt;}
.ya1{bottom:606.738667pt;}
.yd1{bottom:607.910667pt;}
.y1da{bottom:611.334667pt;}
.y116{bottom:612.966667pt;}
.y165{bottom:614.600000pt;}
.y164{bottom:614.773333pt;}
.y115{bottom:616.729333pt;}
.y5a{bottom:617.270667pt;}
.y31{bottom:618.057333pt;}
.y228{bottom:618.588000pt;}
.ya0{bottom:621.350667pt;}
.y1fe{bottom:622.234667pt;}
.yae{bottom:623.561333pt;}
.y1a5{bottom:629.022667pt;}
.y163{bottom:630.713333pt;}
.y114{bottom:632.669333pt;}
.y227{bottom:633.200000pt;}
.y59{bottom:633.210667pt;}
.y30{bottom:633.997333pt;}
.y6{bottom:634.368000pt;}
.y9f{bottom:635.962667pt;}
.y1fd{bottom:638.174667pt;}
.y113{bottom:644.846667pt;}
.y112{bottom:644.848000pt;}
.y111{bottom:645.325333pt;}
.y226{bottom:647.812000pt;}
.y110{bottom:648.609333pt;}
.y5{bottom:648.980000pt;}
.y58{bottom:649.413333pt;}
.y2f{bottom:649.938667pt;}
.y146{bottom:650.182667pt;}
.y1d9{bottom:657.826667pt;}
.y1fc{bottom:661.325333pt;}
.y225{bottom:661.778667pt;}
.y10f{bottom:662.116000pt;}
.y4{bottom:663.592000pt;}
.y57{bottom:665.353333pt;}
.y2e{bottom:665.878667pt;}
.y9c{bottom:669.172000pt;}
.y224{bottom:676.390667pt;}
.y56{bottom:681.293333pt;}
.y2d{bottom:681.818667pt;}
.y13b{bottom:683.390667pt;}
.y95{bottom:683.784000pt;}
.y10e{bottom:687.612000pt;}
.y223{bottom:691.002667pt;}
.y3{bottom:691.433333pt;}
.y55{bottom:697.496000pt;}
.y2c{bottom:697.758667pt;}
.y12f{bottom:698.002667pt;}
.y222{bottom:704.969333pt;}
.y1a4{bottom:712.193333pt;}
.y54{bottom:713.436000pt;}
.y2b{bottom:713.698667pt;}
.y221{bottom:719.581333pt;}
.y1d8{bottom:721.794667pt;}
.y2a{bottom:729.638667pt;}
.y220{bottom:734.193333pt;}
.y2{bottom:737.609333pt;}
.y29{bottom:745.580000pt;}
.y1{bottom:761.520000pt;}
.y28{bottom:796.057333pt;}
.h22{height:2.125355pt;}
.h48{height:3.950780pt;}
.h46{height:4.558597pt;}
.h55{height:5.811573pt;}
.h4b{height:6.098794pt;}
.h50{height:6.317695pt;}
.h52{height:6.342604pt;}
.h4e{height:6.422182pt;}
.h49{height:6.838695pt;}
.h4a{height:7.037044pt;}
.h4d{height:7.289644pt;}
.h51{height:7.318373pt;}
.h4f{height:7.698367pt;}
.h53{height:7.721782pt;}
.h4c{height:7.769768pt;}
.h56{height:8.891916pt;}
.h13{height:12.489967pt;}
.h36{height:12.705079pt;}
.h10{height:12.746962pt;}
.h38{height:13.658112pt;}
.h27{height:14.850916pt;}
.h14{height:16.058529pt;}
.h9{height:18.346638pt;}
.h26{height:18.416198pt;}
.hd{height:18.929904pt;}
.hc{height:19.301107pt;}
.hf{height:21.411372pt;}
.h20{height:21.460707pt;}
.h11{height:21.851935pt;}
.ha{height:24.462184pt;}
.h21{height:26.519037pt;}
.h31{height:27.693355pt;}
.h5{height:29.457613pt;}
.h2b{height:30.349355pt;}
.h4{height:35.865600pt;}
.h2d{height:36.389532pt;}
.h25{height:36.394865pt;}
.h7{height:37.193707pt;}
.hb{height:38.905107pt;}
.h3{height:39.850400pt;}
.h32{height:40.746041pt;}
.h1a{height:43.976550pt;}
.h15{height:43.981884pt;}
.h6{height:44.632747pt;}
.h1f{height:44.634041pt;}
.h57{height:45.165355pt;}
.h1c{height:45.799037pt;}
.h16{height:45.804370pt;}
.h58{height:47.950933pt;}
.h23{height:48.455037pt;}
.h3e{height:52.049703pt;}
.h2f{height:52.605355pt;}
.h1b{height:52.986400pt;}
.h2{height:53.559147pt;}
.h19{height:54.895733pt;}
.h17{height:54.901067pt;}
.h47{height:56.988167pt;}
.h54{height:57.589760pt;}
.h45{height:57.592800pt;}
.h1d{height:58.301355pt;}
.h1e{height:58.935037pt;}
.h3c{height:58.940370pt;}
.h41{height:58.994688pt;}
.h3d{height:59.633703pt;}
.h33{height:60.210688pt;}
.h3f{height:60.609703pt;}
.h34{height:60.844370pt;}
.h18{height:60.849703pt;}
.h28{height:61.101355pt;}
.h43{height:61.106688pt;}
.h24{height:65.736021pt;}
.h3a{height:69.605067pt;}
.h2e{height:74.237355pt;}
.h44{height:75.917355pt;}
.h2a{height:76.152021pt;}
.h42{height:76.298400pt;}
.h35{height:76.799147pt;}
.h37{height:76.800000pt;}
.h12{height:86.429933pt;}
.h40{height:87.585703pt;}
.he{height:91.019133pt;}
.h29{height:93.576021pt;}
.h39{height:93.644370pt;}
.h30{height:95.789355pt;}
.h3b{height:99.061067pt;}
.h2c{height:115.293355pt;}
.h8{height:172.799253pt;}
.h1{height:820.000000pt;}
.h0{height:820.157333pt;}
.w6{width:106.041600pt;}
.w8{width:115.275093pt;}
.w7{width:142.944000pt;}
.w3{width:161.386867pt;}
.w5{width:223.631147pt;}
.w4{width:223.638560pt;}
.w2{width:368.878000pt;}
.w0{width:551.810667pt;}
.w1{width:552.000000pt;}
.x0{left:0.000000pt;}
.x6b{left:1.660088pt;}
.x12{left:2.929625pt;}
.x6c{left:4.638445pt;}
.x6d{left:6.312703pt;}
.x2a{left:7.469397pt;}
.x16{left:8.619042pt;}
.x25{left:10.397444pt;}
.x83{left:13.011140pt;}
.x89{left:15.132670pt;}
.x15{left:20.031842pt;}
.x20{left:23.912533pt;}
.x13{left:24.804158pt;}
.x27{left:30.589924pt;}
.x2b{left:35.784975pt;}
.x24{left:40.380218pt;}
.x8{left:45.354667pt;}
.x26{left:50.170511pt;}
.x8b{left:51.497333pt;}
.x68{left:52.672106pt;}
.xa{left:53.656000pt;}
.x70{left:54.906308pt;}
.x1{left:56.866667pt;}
.xb{left:67.936000pt;}
.x82{left:68.981796pt;}
.x87{left:70.253333pt;}
.x81{left:72.490667pt;}
.x80{left:75.890667pt;}
.x71{left:77.231225pt;}
.x7{left:83.149333pt;}
.xd{left:84.776724pt;}
.x28{left:90.457721pt;}
.x38{left:92.358667pt;}
.xc{left:93.512000pt;}
.x7d{left:94.517333pt;}
.x2c{left:97.489140pt;}
.x9{left:100.521333pt;}
.x6e{left:110.167768pt;}
.x23{left:112.469333pt;}
.x22{left:114.906667pt;}
.x85{left:118.997333pt;}
.x74{left:121.690667pt;}
.x51{left:124.956000pt;}
.x5e{left:126.809333pt;}
.x1f{left:129.156212pt;}
.x3a{left:130.198667pt;}
.x41{left:134.484000pt;}
.x3b{left:136.746667pt;}
.x66{left:138.874667pt;}
.x14{left:141.655945pt;}
.x10{left:143.471124pt;}
.x3{left:146.557333pt;}
.x6f{left:149.953333pt;}
.x86{left:152.140000pt;}
.x79{left:153.069333pt;}
.x69{left:154.288312pt;}
.x2d{left:160.692000pt;}
.x11{left:164.237665pt;}
.x5{left:166.038667pt;}
.x76{left:167.852000pt;}
.x72{left:173.628750pt;}
.x6a{left:176.683519pt;}
.x2{left:181.124000pt;}
.x67{left:182.828000pt;}
.x43{left:188.721333pt;}
.x44{left:189.712000pt;}
.x42{left:190.816000pt;}
.x6{left:194.312000pt;}
.x5f{left:197.041333pt;}
.x52{left:200.930667pt;}
.x60{left:202.157333pt;}
.x37{left:203.565333pt;}
.x53{left:206.789333pt;}
.x4{left:208.440000pt;}
.x45{left:210.122667pt;}
.x46{left:214.550667pt;}
.x55{left:219.629333pt;}
.x56{left:220.618667pt;}
.x54{left:221.722667pt;}
.x2e{left:223.580000pt;}
.x65{left:225.585333pt;}
.xf{left:227.848740pt;}
.x61{left:230.584000pt;}
.xe{left:236.145098pt;}
.x57{left:241.030667pt;}
.x7b{left:244.862667pt;}
.x3f{left:246.417333pt;}
.x63{left:247.546667pt;}
.x33{left:250.650667pt;}
.x1e{left:251.548642pt;}
.x58{left:257.544000pt;}
.x47{left:261.280000pt;}
.x2f{left:263.145333pt;}
.x21{left:265.864000pt;}
.x62{left:271.661333pt;}
.x29{left:282.049333pt;}
.x88{left:286.138667pt;}
.x48{left:288.976000pt;}
.x3c{left:290.372000pt;}
.x7a{left:292.778667pt;}
.x8c{left:294.652000pt;}
.x3d{left:297.417333pt;}
.x75{left:303.134667pt;}
.x49{left:305.490667pt;}
.x4a{left:310.605333pt;}
.x1c{left:314.478345pt;}
.x18{left:315.750057pt;}
.x77{left:317.288000pt;}
.x7e{left:323.320000pt;}
.x7c{left:324.557333pt;}
.x8a{left:332.025333pt;}
.x1a{left:333.684457pt;}
.x4b{left:339.033333pt;}
.x17{left:342.379924pt;}
.x1b{left:345.681484pt;}
.x59{left:347.209333pt;}
.x1d{left:349.803679pt;}
.x19{left:351.075391pt;}
.x30{left:352.300000pt;}
.x5a{left:353.756000pt;}
.x39{left:357.220000pt;}
.x5b{left:372.881333pt;}
.x32{left:375.104000pt;}
.x73{left:381.437333pt;}
.x64{left:382.468000pt;}
.x34{left:386.582667pt;}
.x4c{left:394.692000pt;}
.x7f{left:396.280000pt;}
.x4d{left:401.238667pt;}
.x84{left:417.336000pt;}
.x3e{left:433.888000pt;}
.x35{left:436.704000pt;}
.x40{left:441.974667pt;}
.x4f{left:447.570667pt;}
.x78{left:449.122667pt;}
.x50{left:454.117333pt;}
.x31{left:466.029333pt;}
.x36{left:477.661333pt;}
.x4e{left:489.482667pt;}
.x5c{left:491.994667pt;}
.x5d{left:499.040000pt;}
}




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