
    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_134ae32dd308f757cab63a2e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_7b3a708b9f4ebe619550bee3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_ba08b65e0ae6ab30012cb754.woff')format("woff");}.ff3{font-family:ff3;line-height:0.756348;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_aab23d084f40ca52ab3037e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.865000;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_877dc6b2c1d96f1d5d3d62bf.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_134ae32dd308f757cab63a2e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_7b3a708b9f4ebe619550bee3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_aab23d084f40ca52ab3037e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.865000;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_9bc8743825fe597cec4ce199.woff')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_d4443c76ecedef72c4d56d9a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_45b451a66c4fcf3600c81516.woff')format("woff");}.ffb{font-family:ffb;line-height:1.077000;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_27c616e272554fbdff9a1d69.woff')format("woff");}.ffc{font-family:ffc;line-height:1.075000;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_b906df52360774891df7449b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.094000;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_f24873dd76974f01b869c325.woff')format("woff");}.ffe{font-family:ffe;line-height:0.970000;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_fde45d5acddba21ee076628d.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246483,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.246505,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246505,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246505,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.240869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240869,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.243403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243403,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243424,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246178,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246214,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246314,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247228,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247311,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247358,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248311,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248328,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249394,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249708,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.mf{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);}
.m10{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);}
.m36{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252503,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252953,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253094,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253133,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253567,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254086,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254786,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.285731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285731,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-23.976000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.983000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:23.976000px;}
.ls40{letter-spacing:-5.280000px;}
.ls86{letter-spacing:-4.500000px;}
.ls8a{letter-spacing:-4.200000px;}
.ls7b{letter-spacing:-4.080000px;}
.ls83{letter-spacing:-3.720000px;}
.ls7a{letter-spacing:-3.360000px;}
.ls89{letter-spacing:-3.300000px;}
.ls33{letter-spacing:-3.180000px;}
.ls88{letter-spacing:-3.120000px;}
.ls82{letter-spacing:-3.000000px;}
.ls2f{letter-spacing:-2.940000px;}
.ls65{letter-spacing:-2.862000px;}
.ls36{letter-spacing:-2.760000px;}
.ls6d{letter-spacing:-2.754000px;}
.ls2d{letter-spacing:-2.580000px;}
.ls51{letter-spacing:-2.538000px;}
.ls87{letter-spacing:-2.460000px;}
.ls37{letter-spacing:-2.400000px;}
.ls7e{letter-spacing:-2.280000px;}
.ls76{letter-spacing:-2.214000px;}
.ls71{letter-spacing:-2.160000px;}
.ls3d{letter-spacing:-2.100000px;}
.ls22{letter-spacing:-2.040000px;}
.ls72{letter-spacing:-1.980000px;}
.ls63{letter-spacing:-1.944000px;}
.ls84{letter-spacing:-1.920000px;}
.ls66{letter-spacing:-1.872000px;}
.ls5e{letter-spacing:-1.836000px;}
.ls60{letter-spacing:-1.782000px;}
.ls85{letter-spacing:-1.680000px;}
.ls3b{letter-spacing:-1.560000px;}
.ls28{letter-spacing:-1.500000px;}
.ls77{letter-spacing:-1.380000px;}
.ls1f{letter-spacing:-1.320000px;}
.ls5a{letter-spacing:-1.260000px;}
.ls1e{letter-spacing:-1.248000px;}
.ls69{letter-spacing:-1.242000px;}
.ls31{letter-spacing:-1.200000px;}
.ls78{letter-spacing:-1.152000px;}
.ls3e{letter-spacing:-1.140000px;}
.ls6b{letter-spacing:-1.119360px;}
.ls64{letter-spacing:-1.080000px;}
.ls75{letter-spacing:-1.020000px;}
.ls5c{letter-spacing:-0.979440px;}
.ls4a{letter-spacing:-0.960000px;}
.ls6e{letter-spacing:-0.918000px;}
.ls52{letter-spacing:-0.900000px;}
.ls74{letter-spacing:-0.874500px;}
.ls7c{letter-spacing:-0.840000px;}
.ls4e{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.720000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.648000px;}
.ls7d{letter-spacing:-0.600000px;}
.ls5b{letter-spacing:-0.594660px;}
.ls5f{letter-spacing:-0.594000px;}
.ls67{letter-spacing:-0.545688px;}
.ls53{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.480000px;}
.ls25{letter-spacing:-0.420000px;}
.ls55{letter-spacing:-0.378000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.285000px;}
.lsc{letter-spacing:-0.266787px;}
.ls17{letter-spacing:-0.266223px;}
.ls48{letter-spacing:-0.240000px;}
.ls4b{letter-spacing:-0.228000px;}
.ls70{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.180000px;}
.ls44{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.108000px;}
.ls6c{letter-spacing:-0.069960px;}
.ls2e{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.054000px;}
.ls68{letter-spacing:-0.034980px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.060000px;}
.ls45{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.240000px;}
.ls5d{letter-spacing:0.270000px;}
.ls80{letter-spacing:0.279840px;}
.ls3f{letter-spacing:0.300000px;}
.ls4f{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.329997px;}
.ls2{letter-spacing:0.330726px;}
.ls16{letter-spacing:0.359997px;}
.ls20{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.360792px;}
.ls59{letter-spacing:0.372600px;}
.ls15{letter-spacing:0.372712px;}
.ls57{letter-spacing:0.378000px;}
.ls8{letter-spacing:0.400181px;}
.ls11{letter-spacing:0.414123px;}
.ls4{letter-spacing:0.415002px;}
.ls24{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.429087px;}
.ls54{letter-spacing:0.432000px;}
.ls46{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.486000px;}
.ls12{letter-spacing:0.532446px;}
.ls5{letter-spacing:0.533574px;}
.ls38{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.638935px;}
.ls6{letter-spacing:0.640289px;}
.ls43{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.650766px;}
.ls3{letter-spacing:0.652146px;}
.ls27{letter-spacing:0.660000px;}
.ls81{letter-spacing:0.734580px;}
.ls1a{letter-spacing:0.756000px;}
.ls4d{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.798669px;}
.ls7{letter-spacing:0.800362px;}
.ls6a{letter-spacing:0.810000px;}
.lse{letter-spacing:0.857826px;}
.ls1{letter-spacing:0.859651px;}
.lsd{letter-spacing:0.946566px;}
.ls0{letter-spacing:0.948577px;}
.ls73{letter-spacing:1.020000px;}
.ls61{letter-spacing:1.026000px;}
.ls49{letter-spacing:1.080000px;}
.ls7f{letter-spacing:1.200000px;}
.ls56{letter-spacing:1.350000px;}
.ls1c{letter-spacing:1.380000px;}
.ls39{letter-spacing:1.470000px;}
.ls62{letter-spacing:1.566000px;}
.ls47{letter-spacing:1.629882px;}
.ls50{letter-spacing:1.630800px;}
.ls58{letter-spacing:1.631075px;}
.ls79{letter-spacing:4.171800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-19.584000px;}
.ws7f{word-spacing:-15.696000px;}
.ws6e{word-spacing:-15.552000px;}
.wsaa{word-spacing:-14.976000px;}
.ws87{word-spacing:-14.820000px;}
.ws18c{word-spacing:-14.700000px;}
.ws144{word-spacing:-14.640000px;}
.wsa3{word-spacing:-14.520000px;}
.ws15d{word-spacing:-14.472000px;}
.ws154{word-spacing:-14.400000px;}
.ws4d{word-spacing:-14.280000px;}
.ws177{word-spacing:-14.220000px;}
.wsa5{word-spacing:-14.160000px;}
.ws86{word-spacing:-14.100000px;}
.ws89{word-spacing:-14.040000px;}
.ws128{word-spacing:-13.980000px;}
.ws164{word-spacing:-13.920000px;}
.wsed{word-spacing:-13.860000px;}
.wsf3{word-spacing:-13.824000px;}
.ws113{word-spacing:-13.752000px;}
.ws143{word-spacing:-13.740000px;}
.wsd3{word-spacing:-13.716000px;}
.ws169{word-spacing:-13.680000px;}
.ws2e{word-spacing:-13.620000px;}
.ws6b{word-spacing:-13.560000px;}
.ws166{word-spacing:-13.440000px;}
.ws141{word-spacing:-13.380000px;}
.wsf2{word-spacing:-13.284000px;}
.ws2f{word-spacing:-13.260000px;}
.ws167{word-spacing:-13.140000px;}
.ws163{word-spacing:-13.080000px;}
.ws17d{word-spacing:-13.020000px;}
.wsf4{word-spacing:-13.014000px;}
.wsce{word-spacing:-12.960000px;}
.ws12e{word-spacing:-12.900000px;}
.ws12c{word-spacing:-12.852000px;}
.ws155{word-spacing:-12.840000px;}
.wsd2{word-spacing:-12.798000px;}
.ws88{word-spacing:-12.780000px;}
.ws117{word-spacing:-12.744000px;}
.ws179{word-spacing:-12.720000px;}
.ws5e{word-spacing:-12.660000px;}
.ws4c{word-spacing:-12.654000px;}
.wsf0{word-spacing:-12.636000px;}
.ws44{word-spacing:-12.600000px;}
.wsa6{word-spacing:-12.582000px;}
.ws165{word-spacing:-12.540000px;}
.ws115{word-spacing:-12.420000px;}
.ws12a{word-spacing:-12.366000px;}
.wsd1{word-spacing:-12.312000px;}
.wscf{word-spacing:-12.150000px;}
.ws29{word-spacing:-12.096000px;}
.ws162{word-spacing:-12.060000px;}
.ws17b{word-spacing:-11.940000px;}
.ws28{word-spacing:-11.934000px;}
.ws118{word-spacing:-11.880000px;}
.wsd0{word-spacing:-11.826000px;}
.ws71{word-spacing:-11.718000px;}
.ws17a{word-spacing:-11.700000px;}
.ws6f{word-spacing:-11.664000px;}
.ws142{word-spacing:-11.640000px;}
.ws70{word-spacing:-11.556000px;}
.ws12b{word-spacing:-11.340000px;}
.ws119{word-spacing:-11.016000px;}
.ws4e{word-spacing:-11.004000px;}
.ws3a{word-spacing:-10.800000px;}
.ws178{word-spacing:-10.740000px;}
.ws153{word-spacing:-10.560000px;}
.ws17e{word-spacing:-10.500000px;}
.wsf1{word-spacing:-10.476000px;}
.ws140{word-spacing:-10.440000px;}
.ws17f{word-spacing:-10.320000px;}
.ws145{word-spacing:-10.044000px;}
.ws67{word-spacing:-10.020000px;}
.ws129{word-spacing:-9.504000px;}
.wsf5{word-spacing:-9.396000px;}
.ws41{word-spacing:-9.300000px;}
.ws17c{word-spacing:-9.240000px;}
.ws6c{word-spacing:-9.120000px;}
.ws57{word-spacing:-9.060000px;}
.ws16a{word-spacing:-8.675040px;}
.ws114{word-spacing:-8.563104px;}
.ws3d{word-spacing:-8.280000px;}
.ws168{word-spacing:-8.220300px;}
.ws5b{word-spacing:-8.160000px;}
.wsa4{word-spacing:-7.940460px;}
.ws116{word-spacing:-7.905480px;}
.ws127{word-spacing:-7.870500px;}
.ws56{word-spacing:-7.620000px;}
.wsee{word-spacing:-7.345800px;}
.ws121{word-spacing:-7.200000px;}
.ws4f{word-spacing:-7.020000px;}
.wsef{word-spacing:-6.961020px;}
.ws126{word-spacing:-6.821100px;}
.ws30{word-spacing:-6.420000px;}
.ws61{word-spacing:-6.000000px;}
.ws11f{word-spacing:-5.100000px;}
.ws53{word-spacing:-5.040000px;}
.ws63{word-spacing:-4.860000px;}
.ws58{word-spacing:-4.560000px;}
.ws4a{word-spacing:-4.080000px;}
.ws11d{word-spacing:-3.840000px;}
.wsb9{word-spacing:-3.300000px;}
.ws5d{word-spacing:-3.240000px;}
.wsd{word-spacing:-3.201446px;}
.ws10{word-spacing:-3.148091px;}
.ws23{word-spacing:-3.141434px;}
.ws20{word-spacing:-3.141433px;}
.ws34{word-spacing:-3.120000px;}
.wsa{word-spacing:-3.094732px;}
.ws1d{word-spacing:-3.088188px;}
.ws8{word-spacing:-3.041374px;}
.ws1b{word-spacing:-3.034944px;}
.ws12{word-spacing:-2.934661px;}
.ws25{word-spacing:-2.928456px;}
.ws124{word-spacing:-2.862000px;}
.ws6a{word-spacing:-2.640000px;}
.ws48{word-spacing:-2.580000px;}
.ws132{word-spacing:-2.520000px;}
.ws75{word-spacing:-2.484000px;}
.ws172{word-spacing:-2.460000px;}
.ws78{word-spacing:-2.430000px;}
.ws74{word-spacing:-2.376000px;}
.wsc1{word-spacing:-2.340000px;}
.ws14a{word-spacing:-2.220000px;}
.wsc4{word-spacing:-2.214000px;}
.ws8d{word-spacing:-2.040000px;}
.wsb{word-spacing:-2.027583px;}
.ws1e{word-spacing:-2.023296px;}
.wseb{word-spacing:-1.998000px;}
.wsde{word-spacing:-1.980000px;}
.wscc{word-spacing:-1.944000px;}
.wsbb{word-spacing:-1.920000px;}
.wsec{word-spacing:-1.890000px;}
.ws98{word-spacing:-1.860000px;}
.ws10e{word-spacing:-1.836000px;}
.ws14{word-spacing:-1.814154px;}
.ws27{word-spacing:-1.810318px;}
.wsb3{word-spacing:-1.800000px;}
.ws10f{word-spacing:-1.782000px;}
.ws11e{word-spacing:-1.740000px;}
.wse6{word-spacing:-1.728000px;}
.ws18b{word-spacing:-1.680000px;}
.ws102{word-spacing:-1.674000px;}
.ws11{word-spacing:-1.654082px;}
.ws24{word-spacing:-1.650584px;}
.ws92{word-spacing:-1.581000px;}
.ws7b{word-spacing:-1.566000px;}
.ws6d{word-spacing:-1.560000px;}
.ws10a{word-spacing:-1.512000px;}
.ws150{word-spacing:-1.500000px;}
.wsf{word-spacing:-1.494009px;}
.ws22{word-spacing:-1.490850px;}
.ws13d{word-spacing:-1.458000px;}
.wsa1{word-spacing:-1.404000px;}
.ws65{word-spacing:-1.380000px;}
.ws146{word-spacing:-1.320000px;}
.ws80{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.242000px;}
.ws120{word-spacing:-1.200000px;}
.wse5{word-spacing:-1.188000px;}
.wsdc{word-spacing:-1.140000px;}
.ws109{word-spacing:-1.134000px;}
.ws77{word-spacing:-1.080000px;}
.wsc5{word-spacing:-1.026000px;}
.ws90{word-spacing:-1.020000px;}
.ws7d{word-spacing:-0.972000px;}
.ws108{word-spacing:-0.918000px;}
.ws18a{word-spacing:-0.900000px;}
.ws4{word-spacing:-0.859651px;}
.ws17{word-spacing:-0.857826px;}
.wsb7{word-spacing:-0.840000px;}
.ws13c{word-spacing:-0.810000px;}
.wsf6{word-spacing:-0.780000px;}
.ws2b{word-spacing:-0.756000px;}
.ws5a{word-spacing:-0.720000px;}
.ws123{word-spacing:-0.702000px;}
.ws3c{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.600000px;}
.ws107{word-spacing:-0.540000px;}
.ws16d{word-spacing:-0.480000px;}
.ws38{word-spacing:-0.420000px;}
.ws32{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.240000px;}
.ws139{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.180000px;}
.ws7c{word-spacing:-0.162000px;}
.ws51{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.060000px;}
.ws2c{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws7a{word-spacing:0.054000px;}
.ws46{word-spacing:0.060000px;}
.wsa0{word-spacing:0.108000px;}
.ws33{word-spacing:0.120000px;}
.ws103{word-spacing:0.162000px;}
.ws43{word-spacing:0.180000px;}
.ws13e{word-spacing:0.216000px;}
.wsa7{word-spacing:0.228000px;}
.ws151{word-spacing:0.240000px;}
.ws106{word-spacing:0.270000px;}
.ws184{word-spacing:0.300000px;}
.ws40{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.ws83{word-spacing:0.540000px;}
.ws1f{word-spacing:0.585691px;}
.wsc{word-spacing:0.586932px;}
.ws105{word-spacing:0.594000px;}
.wsdb{word-spacing:0.600000px;}
.ws13f{word-spacing:0.648000px;}
.ws15b{word-spacing:0.660000px;}
.ws3f{word-spacing:0.720000px;}
.ws94{word-spacing:0.765000px;}
.wsd9{word-spacing:0.780000px;}
.wsb2{word-spacing:0.792000px;}
.wsea{word-spacing:0.810000px;}
.wsda{word-spacing:0.840000px;}
.ws138{word-spacing:0.864000px;}
.ws14b{word-spacing:0.874500px;}
.ws84{word-spacing:0.900000px;}
.wsc9{word-spacing:0.918000px;}
.ws149{word-spacing:0.960000px;}
.ws100{word-spacing:0.972000px;}
.ws14f{word-spacing:1.020000px;}
.ws112{word-spacing:1.026000px;}
.ws110{word-spacing:1.080000px;}
.ws73{word-spacing:1.134000px;}
.ws47{word-spacing:1.140000px;}
.wsc7{word-spacing:1.188000px;}
.ws60{word-spacing:1.200000px;}
.wse7{word-spacing:1.242000px;}
.ws99{word-spacing:1.260000px;}
.ws10b{word-spacing:1.296000px;}
.ws31{word-spacing:1.320000px;}
.wsbf{word-spacing:1.380000px;}
.ws152{word-spacing:1.404000px;}
.ws188{word-spacing:1.440000px;}
.wsc6{word-spacing:1.458000px;}
.ws9e{word-spacing:1.500000px;}
.wsb8{word-spacing:1.560000px;}
.wse9{word-spacing:1.566000px;}
.wsb6{word-spacing:1.620000px;}
.ws15f{word-spacing:1.680000px;}
.wscd{word-spacing:1.728000px;}
.ws5c{word-spacing:1.740000px;}
.ws15c{word-spacing:1.800000px;}
.ws137{word-spacing:1.836000px;}
.ws42{word-spacing:1.860000px;}
.ws8c{word-spacing:1.920000px;}
.ws7e{word-spacing:1.944000px;}
.ws131{word-spacing:1.980000px;}
.wsa2{word-spacing:1.998000px;}
.ws64{word-spacing:2.040000px;}
.ws15a{word-spacing:2.100000px;}
.ws3b{word-spacing:2.160000px;}
.wsbc{word-spacing:2.220000px;}
.ws101{word-spacing:2.268000px;}
.wsc2{word-spacing:2.280000px;}
.wsb1{word-spacing:2.340000px;}
.ws91{word-spacing:2.346000px;}
.ws97{word-spacing:2.400000px;}
.wsf8{word-spacing:2.460000px;}
.wse8{word-spacing:2.484000px;}
.ws68{word-spacing:2.520000px;}
.ws4b{word-spacing:2.580000px;}
.ws76{word-spacing:2.592000px;}
.ws11c{word-spacing:2.640000px;}
.ws136{word-spacing:2.700000px;}
.wsba{word-spacing:2.760000px;}
.ws21{word-spacing:2.768720px;}
.ws26{word-spacing:2.768722px;}
.wse{word-spacing:2.774587px;}
.ws13{word-spacing:2.774589px;}
.ws3e{word-spacing:2.880000px;}
.ws135{word-spacing:2.916000px;}
.ws62{word-spacing:2.940000px;}
.wsd8{word-spacing:3.000000px;}
.wsc0{word-spacing:3.060000px;}
.wsb5{word-spacing:3.120000px;}
.ws1c{word-spacing:3.141433px;}
.ws9{word-spacing:3.148089px;}
.wsdd{word-spacing:3.180000px;}
.ws10c{word-spacing:3.186000px;}
.wsa8{word-spacing:3.240000px;}
.wsc3{word-spacing:3.294000px;}
.wsfe{word-spacing:3.300000px;}
.ws104{word-spacing:3.348000px;}
.ws8e{word-spacing:3.360000px;}
.ws35{word-spacing:3.420000px;}
.ws134{word-spacing:3.456000px;}
.ws66{word-spacing:3.480000px;}
.wsc8{word-spacing:3.510000px;}
.ws9d{word-spacing:3.540000px;}
.ws13b{word-spacing:3.564000px;}
.ws8f{word-spacing:3.600000px;}
.ws96{word-spacing:3.660000px;}
.wsb4{word-spacing:3.720000px;}
.ws133{word-spacing:3.726000px;}
.ws59{word-spacing:3.780000px;}
.ws19{word-spacing:3.839521px;}
.ws6{word-spacing:3.847664px;}
.ws18{word-spacing:3.893965px;}
.ws9c{word-spacing:3.900000px;}
.ws5{word-spacing:3.902567px;}
.ws13a{word-spacing:3.942000px;}
.ws45{word-spacing:3.960000px;}
.ws72{word-spacing:3.996000px;}
.ws130{word-spacing:4.020000px;}
.ws10d{word-spacing:4.050000px;}
.ws16e{word-spacing:4.080000px;}
.ws8b{word-spacing:4.131000px;}
.ws54{word-spacing:4.140000px;}
.wscb{word-spacing:4.158000px;}
.ws14d{word-spacing:4.200000px;}
.ws49{word-spacing:4.320000px;}
.ws181{word-spacing:4.380000px;}
.ws14e{word-spacing:4.440000px;}
.wse4{word-spacing:4.500000px;}
.ws50{word-spacing:4.560000px;}
.ws175{word-spacing:4.620000px;}
.ws186{word-spacing:4.680000px;}
.wse3{word-spacing:4.860000px;}
.ws1a{word-spacing:4.886654px;}
.ws7{word-spacing:4.897027px;}
.ws16f{word-spacing:4.920000px;}
.ws9b{word-spacing:4.980000px;}
.wsfb{word-spacing:5.040000px;}
.ws11a{word-spacing:5.100000px;}
.ws157{word-spacing:5.280000px;}
.ws156{word-spacing:5.340000px;}
.wsd6{word-spacing:5.400000px;}
.ws15e{word-spacing:5.520000px;}
.wsd5{word-spacing:5.580000px;}
.ws15{word-spacing:5.584742px;}
.ws1{word-spacing:5.596603px;}
.ws147{word-spacing:5.640000px;}
.ws93{word-spacing:5.661000px;}
.ws148{word-spacing:5.700000px;}
.ws82{word-spacing:5.760000px;}
.wsf7{word-spacing:5.820000px;}
.ws176{word-spacing:5.880000px;}
.wse2{word-spacing:5.940000px;}
.ws125{word-spacing:6.048000px;}
.ws185{word-spacing:6.060000px;}
.ws11b{word-spacing:6.180000px;}
.ws16b{word-spacing:6.240000px;}
.wsdf{word-spacing:6.300000px;}
.ws189{word-spacing:6.360000px;}
.ws161{word-spacing:6.420000px;}
.wsab{word-spacing:6.480000px;}
.ws85{word-spacing:6.540000px;}
.ws8a{word-spacing:6.630000px;}
.wsd4{word-spacing:6.660000px;}
.wse0{word-spacing:6.720000px;}
.ws0{word-spacing:6.758126px;}
.wsff{word-spacing:6.780000px;}
.ws81{word-spacing:6.840000px;}
.wsac{word-spacing:6.900000px;}
.wsaf{word-spacing:7.080000px;}
.ws12f{word-spacing:7.140000px;}
.ws160{word-spacing:7.200000px;}
.wsd7{word-spacing:7.260000px;}
.ws16c{word-spacing:7.320000px;}
.wsad{word-spacing:7.380000px;}
.ws14c{word-spacing:7.440000px;}
.wsa9{word-spacing:7.680000px;}
.ws180{word-spacing:7.800000px;}
.wsfc{word-spacing:7.860000px;}
.wsbd{word-spacing:7.920000px;}
.wsfa{word-spacing:8.100000px;}
.wse1{word-spacing:8.160000px;}
.ws9a{word-spacing:8.220000px;}
.ws187{word-spacing:8.400000px;}
.wsb0{word-spacing:8.820000px;}
.ws173{word-spacing:9.060000px;}
.wsf9{word-spacing:9.120000px;}
.ws111{word-spacing:9.180000px;}
.ws159{word-spacing:9.420000px;}
.ws158{word-spacing:9.540000px;}
.ws16{word-spacing:10.122351px;}
.ws3{word-spacing:10.143878px;}
.wsbe{word-spacing:10.200000px;}
.wsfd{word-spacing:10.860000px;}
.ws9f{word-spacing:10.908000px;}
.ws174{word-spacing:11.580000px;}
.ws95{word-spacing:12.840000px;}
.ws170{word-spacing:15.420000px;}
.ws171{word-spacing:15.600000px;}
.ws182{word-spacing:15.780000px;}
.ws183{word-spacing:15.840000px;}
.ws12d{word-spacing:16.620000px;}
.ws122{word-spacing:21.330000px;}
.ws5f{word-spacing:810.334800px;}
._1b{margin-left:-1314.510000px;}
._13{margin-left:-1024.537200px;}
._6{margin-left:-539.870577px;}
._9{margin-left:-538.723029px;}
._8{margin-left:-328.254970px;}
._b{margin-left:-26.400000px;}
._3{margin-left:-23.642357px;}
._5{margin-left:-21.263309px;}
._28{margin-left:-16.365600px;}
._11{margin-left:-15.000600px;}
._29{margin-left:-13.542726px;}
._e{margin-left:-12.048162px;}
._2c{margin-left:-10.860000px;}
._20{margin-left:-9.780000px;}
._f{margin-left:-6.869400px;}
._1{margin-left:-5.217172px;}
._16{margin-left:-4.110000px;}
._2{margin-left:-3.094742px;}
._0{margin-left:-1.707438px;}
._c{width:1.425600px;}
._d{width:2.947200px;}
._14{width:4.346341px;}
._18{width:6.336000px;}
._19{width:7.413659px;}
._1f{width:9.409742px;}
._17{width:10.557542px;}
._15{width:11.651400px;}
._12{width:12.966000px;}
._27{width:14.178091px;}
._1e{width:15.472800px;}
._2d{width:17.164142px;}
._2a{width:18.624762px;}
._10{width:20.037600px;}
._21{width:21.168000px;}
._26{width:22.626162px;}
._4{width:31.913373px;}
._1c{width:34.090750px;}
._1a{width:35.928000px;}
._23{width:42.120014px;}
._24{width:45.474162px;}
._25{width:48.066162px;}
._22{width:49.092162px;}
._1d{width:176.100000px;}
._2e{width:178.134000px;}
._2b{width:179.760000px;}
._a{width:4700.286307px;}
._7{width:4710.262403px;}
.fc2{color:transparent;}
.fc4{color:rgb(180,180,180);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs17{font-size:6.000000px;}
.fs15{font-size:6.000003px;}
.fsb{font-size:6.000004px;}
.fs24{font-size:24.000000px;}
.fs21{font-size:29.733000px;}
.fs22{font-size:34.980000px;}
.fs14{font-size:35.496016px;}
.fsa{font-size:35.571627px;}
.fs8{font-size:39.007888px;}
.fs23{font-size:41.976000px;}
.fs1e{font-size:42.000000px;}
.fs20{font-size:51.000000px;}
.fs11{font-size:53.244623px;}
.fs12{font-size:53.244647px;}
.fs5{font-size:53.357440px;}
.fs6{font-size:53.357480px;}
.fs7{font-size:53.635920px;}
.fs16{font-size:54.000000px;}
.fs1d{font-size:57.000000px;}
.fs1b{font-size:60.000000px;}
.fsf{font-size:65.076629px;}
.fs3{font-size:65.214649px;}
.fse{font-size:65.999400px;}
.fs2{font-size:66.145211px;}
.fs1c{font-size:69.000000px;}
.fs13{font-size:71.999400px;}
.fs1f{font-size:72.000000px;}
.fs9{font-size:72.158436px;}
.fs18{font-size:81.000000px;}
.fs10{font-size:82.824636px;}
.fs4{font-size:83.000462px;}
.fsc{font-size:94.656642px;}
.fs0{font-size:94.857671px;}
.fs1a{font-size:96.000000px;}
.fs19{font-size:120.000000px;}
.fsd{font-size:171.565275px;}
.fs1{font-size:171.930129px;}
.y26{bottom:-87.899192px;}
.y4a{bottom:-85.819671px;}
.y0{bottom:0.000000px;}
.y22{bottom:1.106702px;}
.y211{bottom:7.500000px;}
.y21{bottom:16.660176px;}
.y23{bottom:52.651768px;}
.y55{bottom:66.282000px;}
.y63{bottom:66.968550px;}
.y1ff{bottom:77.931900px;}
.y109{bottom:83.468550px;}
.ye3{bottom:86.936550px;}
.y15d{bottom:92.191500px;}
.y1d0{bottom:93.427950px;}
.y1b2{bottom:94.189800px;}
.y1fe{bottom:95.181900px;}
.y62{bottom:96.968550px;}
.y8e{bottom:97.390950px;}
.y108{bottom:99.968550px;}
.y20e{bottom:104.994000px;}
.ye2{bottom:105.686550px;}
.y12d{bottom:108.691500px;}
.y1cf{bottom:110.677950px;}
.y61{bottom:111.968550px;}
.y1b1{bottom:112.939800px;}
.y8d{bottom:115.390950px;}
.y107{bottom:116.468550px;}
.y1fd{bottom:116.683800px;}
.yb3{bottom:117.947550px;}
.y1da{bottom:120.490500px;}
.ye1{bottom:124.436550px;}
.y97{bottom:125.203500px;}
.y20d{bottom:126.496500px;}
.y60{bottom:126.968550px;}
.ybd{bottom:127.761000px;}
.y1b0{bottom:131.689800px;}
.y1ce{bottom:132.179850px;}
.y106{bottom:132.968550px;}
.y8c{bottom:133.390950px;}
.yb2{bottom:135.947550px;}
.y1fc{bottom:138.185700px;}
.ye0{bottom:143.186550px;}
.y1cd{bottom:149.429850px;}
.y105{bottom:149.468550px;}
.y25{bottom:150.346663px;}
.y1af{bottom:150.439800px;}
.y49{bottom:151.920753px;}
.y12a{bottom:153.433800px;}
.y20{bottom:153.915148px;}
.y1fb{bottom:155.435700px;}
.y47{bottom:155.480757px;}
.y5f{bottom:156.968550px;}
.y14d{bottom:158.191500px;}
.y1d9{bottom:159.243000px;}
.ydf{bottom:161.936550px;}
.y20c{bottom:165.249000px;}
.y104{bottom:165.968550px;}
.y1ae{bottom:169.189800px;}
.y8b{bottom:169.390950px;}
.y1f{bottom:170.215858px;}
.y1cc{bottom:170.931900px;}
.y46{bottom:171.746996px;}
.yb1{bottom:171.947550px;}
.y129{bottom:172.183800px;}
.y10a{bottom:174.691500px;}
.y1fa{bottom:176.937750px;}
.yde{bottom:180.686550px;}
.y14a{bottom:182.468550px;}
.y1e{bottom:186.516568px;}
.y8a{bottom:187.390950px;}
.y1ad{bottom:187.939800px;}
.y45{bottom:188.013236px;}
.y1cb{bottom:188.181900px;}
.yb0{bottom:189.947550px;}
.y128{bottom:190.933800px;}
.y162{bottom:191.191500px;}
.y1f9{bottom:194.187750px;}
.y96{bottom:197.203500px;}
.y149{bottom:198.968550px;}
.ybc{bottom:199.761000px;}
.y193{bottom:200.453550px;}
.y20b{bottom:204.000000px;}
.y89{bottom:205.390950px;}
.y1ca{bottom:205.431900px;}
.y1ac{bottom:206.689800px;}
.ydd{bottom:207.940500px;}
.yaf{bottom:207.947550px;}
.y127{bottom:209.683800px;}
.y1d{bottom:211.221081px;}
.y44{bottom:212.665507px;}
.y1d8{bottom:215.244000px;}
.y148{bottom:215.468550px;}
.y1f8{bottom:215.689800px;}
.y192{bottom:219.203550px;}
.ye5{bottom:219.934500px;}
.y1ab{bottom:225.439800px;}
.yc2{bottom:225.947550px;}
.y1c9{bottom:226.933800px;}
.y1c{bottom:227.521791px;}
.y126{bottom:228.433800px;}
.y43{bottom:228.931747px;}
.y147{bottom:231.968550px;}
.y1f7{bottom:232.939800px;}
.y103{bottom:234.835350px;}
.y191{bottom:237.953550px;}
.y15c{bottom:240.691500px;}
.y88{bottom:241.390950px;}
.y20a{bottom:242.752500px;}
.y1b{bottom:243.822501px;}
.yae{bottom:243.947550px;}
.y1c8{bottom:244.183800px;}
.y1aa{bottom:244.189800px;}
.y42{bottom:245.197987px;}
.y5e{bottom:246.968550px;}
.y125{bottom:247.183800px;}
.y146{bottom:248.468550px;}
.y24{bottom:249.467149px;}
.y48{bottom:250.831280px;}
.ydc{bottom:251.959500px;}
.y102{bottom:253.585350px;}
.ybb{bottom:253.761000px;}
.y1d7{bottom:253.996500px;}
.y1f6{bottom:254.441700px;}
.y190{bottom:256.703550px;}
.y14c{bottom:257.191500px;}
.y87{bottom:259.390950px;}
.yad{bottom:261.947550px;}
.y5d{bottom:261.968550px;}
.y1a9{bottom:262.939800px;}
.y145{bottom:264.968550px;}
.y1c7{bottom:265.685700px;}
.y124{bottom:265.933800px;}
.y1a{bottom:268.527015px;}
.y95{bottom:269.203500px;}
.y41{bottom:269.850258px;}
.y1f5{bottom:271.691700px;}
.y101{bottom:272.335350px;}
.y161{bottom:273.691500px;}
.y18f{bottom:275.453550px;}
.y12e{bottom:275.746500px;}
.y5c{bottom:276.968550px;}
.y86{bottom:277.390950px;}
.ydb{bottom:277.471200px;}
.y144{bottom:281.468550px;}
.y1a8{bottom:281.689800px;}
.y1c6{bottom:282.935700px;}
.y123{bottom:284.683800px;}
.y19{bottom:284.827725px;}
.y40{bottom:286.116498px;}
.y1f4{bottom:288.941700px;}
.y157{bottom:290.191500px;}
.y100{bottom:291.085350px;}
.y5b{bottom:291.968550px;}
.y18e{bottom:294.203550px;}
.yda{bottom:294.721200px;}
.yac{bottom:297.947550px;}
.y143{bottom:297.968550px;}
.y1c5{bottom:300.185700px;}
.y1a7{bottom:300.439800px;}
.y18{bottom:301.128435px;}
.y3f{bottom:302.382737px;}
.y122{bottom:303.433800px;}
.y1f3{bottom:306.191700px;}
.yff{bottom:309.835350px;}
.yd9{bottom:311.971200px;}
.y18d{bottom:312.953550px;}
.y85{bottom:313.390950px;}
.y142{bottom:314.468550px;}
.yab{bottom:315.947550px;}
.y209{bottom:316.005000px;}
.y1c4{bottom:317.435700px;}
.y1a6{bottom:319.189800px;}
.y17{bottom:321.631046px;}
.y5a{bottom:321.968550px;}
.y121{bottom:322.183800px;}
.y3e{bottom:322.841993px;}
.y151{bottom:323.191500px;}
.y94{bottom:323.203500px;}
.yba{bottom:325.761000px;}
.y1f2{bottom:327.693600px;}
.yfe{bottom:328.585350px;}
.yd8{bottom:329.221200px;}
.y156{bottom:329.961300px;}
.y141{bottom:330.968550px;}
.y84{bottom:331.390950px;}
.y18c{bottom:331.703550px;}
.yaa{bottom:333.947550px;}
.y1c3{bottom:334.685700px;}
.y59{bottom:336.968550px;}
.y1a5{bottom:337.939800px;}
.y15a{bottom:339.774000px;}
.y1d6{bottom:344.499000px;}
.y1f1{bottom:344.943600px;}
.yd7{bottom:346.471200px;}
.yfd{bottom:347.335350px;}
.y140{bottom:347.468550px;}
.y155{bottom:348.711300px;}
.y120{bottom:349.437750px;}
.y58{bottom:351.968550px;}
.y16f{bottom:353.447550px;}
.y1c2{bottom:356.187750px;}
.y159{bottom:358.524000px;}
.y18b{bottom:358.957500px;}
.y1f0{bottom:362.193600px;}
.y172{bottom:363.261000px;}
.yd6{bottom:363.721200px;}
.y13f{bottom:363.968550px;}
.y1a4{bottom:365.193600px;}
.yfc{bottom:366.085350px;}
.y57{bottom:366.968550px;}
.y83{bottom:367.390950px;}
.y154{bottom:367.461300px;}
.y194{bottom:368.770500px;}
.y11f{bottom:369.687750px;}
.ya9{bottom:369.947550px;}
.y208{bottom:372.006000px;}
.y16e{bottom:372.197550px;}
.y14b{bottom:372.691500px;}
.y1c1{bottom:373.437750px;}
.y1b3{bottom:377.187000px;}
.y18a{bottom:377.707500px;}
.yb9{bottom:379.761000px;}
.y15b{bottom:380.468550px;}
.yd5{bottom:380.971200px;}
.y12c{bottom:381.681000px;}
.y1ef{bottom:383.695650px;}
.yfb{bottom:384.835350px;}
.y82{bottom:385.390950px;}
.y153{bottom:386.211300px;}
.ya8{bottom:387.947550px;}
.y1c0{bottom:390.687750px;}
.y16d{bottom:390.947550px;}
.y93{bottom:395.203500px;}
.y189{bottom:396.457500px;}
.y182{bottom:396.968550px;}
.yc5{bottom:397.761000px;}
.yd4{bottom:398.221200px;}
.y1ee{bottom:400.945650px;}
.y81{bottom:403.390950px;}
.yfa{bottom:403.585350px;}
.y152{bottom:404.961300px;}
.y188{bottom:405.691500px;}
.yc1{bottom:405.947550px;}
.y1a3{bottom:406.703550px;}
.y1bf{bottom:407.937750px;}
.y16c{bottom:409.697550px;}
.y207{bottom:410.758500px;}
.y11e{bottom:411.197550px;}
.y181{bottom:413.468550px;}
.y187{bottom:422.191500px;}
.yf9{bottom:422.335350px;}
.y1ed{bottom:422.447550px;}
.y13e{bottom:423.711300px;}
.ya7{bottom:423.947550px;}
.y1be{bottom:425.187750px;}
.y1a2{bottom:425.453550px;}
.y16b{bottom:428.447550px;}
.y11d{bottom:429.947550px;}
.y180{bottom:429.968550px;}
.y150{bottom:433.524000px;}
.yb8{bottom:433.761000px;}
.y1d5{bottom:435.000000px;}
.y183{bottom:438.691500px;}
.y80{bottom:439.390800px;}
.y1ec{bottom:439.697550px;}
.y160{bottom:439.761000px;}
.yf8{bottom:441.085350px;}
.y54{bottom:441.403350px;}
.ya6{bottom:441.947550px;}
.y13d{bottom:442.461300px;}
.y1a1{bottom:444.203550px;}
.y17f{bottom:446.468550px;}
.y1bd{bottom:446.689800px;}
.y16a{bottom:447.197550px;}
.y11c{bottom:448.697550px;}
.y206{bottom:449.511000px;}
.yd3{bottom:453.738900px;}
.y7f{bottom:457.390800px;}
.yf7{bottom:459.835350px;}
.ya5{bottom:459.947550px;}
.y1eb{bottom:461.199600px;}
.y13c{bottom:461.211300px;}
.y1a0{bottom:462.953550px;}
.y17e{bottom:462.968550px;}
.y1bc{bottom:463.939800px;}
.y16{bottom:464.047835px;}
.y3d{bottom:464.956119px;}
.y169{bottom:465.947550px;}
.y7{bottom:466.803473px;}
.y92{bottom:467.203500px;}
.y11b{bottom:467.447550px;}
.y2e{bottom:467.706822px;}
.yc4{bottom:469.761000px;}
.y205{bottom:471.012000px;}
.y1d4{bottom:473.752500px;}
.y53{bottom:474.403350px;}
.y7e{bottom:475.390800px;}
.y15f{bottom:477.261000px;}
.yc0{bottom:477.947550px;}
.yd2{bottom:479.250750px;}
.y17d{bottom:479.468550px;}
.y13b{bottom:479.961300px;}
.y15{bottom:480.348533px;}
.y3c{bottom:481.222351px;}
.y19f{bottom:481.703550px;}
.y1ea{bottom:482.701500px;}
.y168{bottom:484.697550px;}
.y1bb{bottom:485.441700px;}
.y11a{bottom:486.197550px;}
.yf6{bottom:487.089150px;}
.y10b{bottom:495.267000px;}
.ya4{bottom:495.947550px;}
.y17c{bottom:495.968550px;}
.yd1{bottom:496.500750px;}
.y14{bottom:496.649231px;}
.y3b{bottom:497.488584px;}
.y13a{bottom:498.711300px;}
.y6{bottom:499.866152px;}
.y1e9{bottom:499.951500px;}
.y19e{bottom:500.453550px;}
.y2d{bottom:500.699479px;}
.y1ba{bottom:502.691700px;}
.y167{bottom:503.447550px;}
.yf5{bottom:503.589150px;}
.y119{bottom:504.947550px;}
.y52{bottom:507.403350px;}
.y7d{bottom:511.390800px;}
.y17b{bottom:512.468550px;}
.y1d3{bottom:512.505000px;}
.y13{bottom:512.949929px;}
.yd0{bottom:513.750750px;}
.y3a{bottom:513.754816px;}
.ybf{bottom:513.947550px;}
.y1e8{bottom:517.201500px;}
.y139{bottom:517.461300px;}
.y19d{bottom:519.203550px;}
.yf4{bottom:520.089150px;}
.y166{bottom:522.197550px;}
.y118{bottom:523.697550px;}
.y1b9{bottom:524.193600px;}
.y17a{bottom:528.968550px;}
.y12{bottom:529.250627px;}
.y7c{bottom:529.390800px;}
.y39{bottom:530.021049px;}
.ycf{bottom:531.000750px;}
.y56{bottom:531.979500px;}
.y15e{bottom:533.511000px;}
.y1e7{bottom:534.451500px;}
.y138{bottom:536.211300px;}
.yf3{bottom:536.589150px;}
.y19c{bottom:537.953550px;}
.y165{bottom:540.947550px;}
.y1b8{bottom:541.443600px;}
.y117{bottom:542.447550px;}
.y204{bottom:544.264500px;}
.y179{bottom:545.468550px;}
.y11{bottom:545.551325px;}
.ya3{bottom:545.961300px;}
.y14f{bottom:546.024000px;}
.y38{bottom:546.287281px;}
.y5{bottom:547.275885px;}
.y7b{bottom:547.390800px;}
.y2c{bottom:548.008604px;}
.yce{bottom:548.250750px;}
.yf2{bottom:553.089150px;}
.y186{bottom:554.191500px;}
.y137{bottom:554.961300px;}
.y71{bottom:555.365550px;}
.y1e6{bottom:555.953550px;}
.y19b{bottom:556.703550px;}
.y91{bottom:557.203500px;}
.y1b7{bottom:558.693600px;}
.y116{bottom:561.197550px;}
.y10{bottom:561.852022px;}
.y37{bottom:562.553513px;}
.ya2{bottom:563.961300px;}
.y7a{bottom:565.390800px;}
.ycd{bottom:565.500750px;}
.y164{bottom:568.201500px;}
.yf1{bottom:569.589150px;}
.y70{bottom:570.365550px;}
.y1e5{bottom:573.203550px;}
.y136{bottom:573.711300px;}
.yb7{bottom:573.774000px;}
.y19a{bottom:575.453550px;}
.y1b6{bottom:575.943600px;}
.yf{bottom:578.152720px;}
.y36{bottom:578.819746px;}
.y115{bottom:579.947550px;}
.y171{bottom:580.195500px;}
.ya1{bottom:581.961300px;}
.ycc{bottom:582.750750px;}
.y203{bottom:583.017000px;}
.y6f{bottom:585.365550px;}
.y163{bottom:588.451500px;}
.yc3{bottom:591.774000px;}
.y135{bottom:592.461300px;}
.y1b5{bottom:593.193600px;}
.y199{bottom:594.203550px;}
.ye{bottom:594.453418px;}
.yf0{bottom:594.593100px;}
.y4{bottom:594.685618px;}
.y1e4{bottom:594.705450px;}
.y35{bottom:595.085978px;}
.y2b{bottom:595.317728px;}
.y114{bottom:598.697550px;}
.ybe{bottom:599.961300px;}
.ycb{bottom:600.000750px;}
.y6e{bottom:600.365550px;}
.y170{bottom:600.445500px;}
.y79{bottom:601.390950px;}
.y1b4{bottom:610.443600px;}
.y90{bottom:611.203500px;}
.y134{bottom:611.211300px;}
.y1e3{bottom:611.955450px;}
.y198{bottom:612.953550px;}
.yef{bottom:613.343100px;}
.y6d{bottom:615.365550px;}
.y8{bottom:615.851553px;}
.y2f{bottom:616.439457px;}
.y113{bottom:617.447550px;}
.ya0{bottom:617.961300px;}
.y78{bottom:619.390950px;}
.y1d2{bottom:620.256000px;}
.y14e{bottom:621.024000px;}
.y202{bottom:621.768000px;}
.yd{bottom:629.319474px;}
.y34{bottom:629.878164px;}
.y133{bottom:629.961300px;}
.y6c{bottom:630.365550px;}
.y197{bottom:631.703550px;}
.yee{bottom:632.093100px;}
.y1e2{bottom:633.457500px;}
.y9f{bottom:635.961300px;}
.y112{bottom:636.197550px;}
.y158{bottom:639.774000px;}
.y178{bottom:640.207500px;}
.y6b{bottom:645.365550px;}
.yb6{bottom:645.774000px;}
.y1d1{bottom:648.192000px;}
.y132{bottom:648.711300px;}
.y196{bottom:650.453550px;}
.y1e1{bottom:650.707500px;}
.yed{bottom:650.843100px;}
.y9e{bottom:653.961300px;}
.yc{bottom:654.219613px;}
.y33{bottom:654.725555px;}
.y111{bottom:654.947550px;}
.y77{bottom:655.390950px;}
.yca{bottom:655.518450px;}
.y177{bottom:658.957500px;}
.y3{bottom:666.529522px;}
.y2a{bottom:667.009172px;}
.y131{bottom:667.461300px;}
.y1e0{bottom:667.957500px;}
.y195{bottom:669.203550px;}
.yec{bottom:669.593100px;}
.y6a{bottom:675.365550px;}
.y76{bottom:675.640950px;}
.y176{bottom:677.707500px;}
.yc9{bottom:681.018450px;}
.y110{bottom:682.201500px;}
.y1df{bottom:685.207500px;}
.y130{bottom:686.211300px;}
.yb{bottom:686.389608px;}
.y32{bottom:686.827098px;}
.yeb{bottom:688.343100px;}
.y9d{bottom:689.961300px;}
.y69{bottom:690.365550px;}
.y2{bottom:693.208242px;}
.y29{bottom:693.631353px;}
.y12b{bottom:694.195500px;}
.y201{bottom:695.020500px;}
.y175{bottom:696.457500px;}
.y10c{bottom:698.155500px;}
.y12f{bottom:704.961300px;}
.y68{bottom:705.365550px;}
.ya{bottom:705.660537px;}
.y31{bottom:706.057242px;}
.y185{bottom:706.270500px;}
.yc8{bottom:706.518450px;}
.y1de{bottom:706.709400px;}
.y9c{bottom:707.961300px;}
.y174{bottom:715.207500px;}
.yea{bottom:715.597050px;}
.yb5{bottom:717.774000px;}
.y1{bottom:719.886962px;}
.y28{bottom:720.253533px;}
.y67{bottom:720.365550px;}
.y10f{bottom:723.711300px;}
.y1dd{bottom:723.959400px;}
.y9{bottom:724.931466px;}
.y184{bottom:725.020500px;}
.y30{bottom:725.287386px;}
.y75{bottom:725.654700px;}
.y9b{bottom:725.961300px;}
.ye9{bottom:732.097050px;}
.y210{bottom:733.771500px;}
.y173{bottom:733.957500px;}
.y8f{bottom:735.468000px;}
.y1dc{bottom:741.209400px;}
.y51{bottom:741.403350px;}
.y10e{bottom:742.461300px;}
.yc7{bottom:744.774450px;}
.y20f{bottom:745.461300px;}
.ye8{bottom:748.597050px;}
.y66{bottom:750.365550px;}
.y200{bottom:751.021500px;}
.ye4{bottom:756.768000px;}
.y10d{bottom:761.211300px;}
.y9a{bottom:761.961300px;}
.y1db{bottom:762.711300px;}
.y50{bottom:763.903350px;}
.ye7{bottom:765.097050px;}
.y65{bottom:765.365550px;}
.yb4{bottom:771.774000px;}
.y74{bottom:773.418450px;}
.yc6{bottom:777.780450px;}
.y99{bottom:779.961300px;}
.y64{bottom:780.365550px;}
.ye6{bottom:781.597050px;}
.y4f{bottom:786.403350px;}
.y72{bottom:789.774000px;}
.y4c{bottom:791.475150px;}
.y4d{bottom:800.884500px;}
.y98{bottom:826.791000px;}
.y4e{bottom:890.322000px;}
.y4b{bottom:890.322258px;}
.y27{bottom:890.322490px;}
.y73{bottom:891.822000px;}
.h1e{height:4.368164px;}
.h1c{height:4.368166px;}
.h10{height:4.368167px;}
.h30{height:25.031250px;}
.h1b{height:25.486139px;}
.hf{height:25.540428px;}
.hd{height:28.684511px;}
.h1d{height:38.179688px;}
.h17{height:38.549107px;}
.h19{height:38.549124px;}
.h8{height:38.630787px;}
.ha{height:38.630815px;}
.h21{height:38.891602px;}
.h18{height:39.401039px;}
.hc{height:39.441258px;}
.h9{height:39.484535px;}
.h2d{height:41.718000px;}
.h2b{height:44.172000px;}
.h2f{height:44.280000px;}
.h2a{height:44.982000px;}
.h15{height:47.115479px;}
.h6{height:47.215406px;}
.h14{height:47.783566px;}
.h5{height:47.889133px;}
.h26{height:49.080000px;}
.h25{height:49.200000px;}
.h23{height:49.980000px;}
.h2e{height:52.272000px;}
.h1a{height:53.279556px;}
.he{height:53.397243px;}
.h1f{height:57.269531px;}
.h24{height:57.477000px;}
.h27{height:58.896000px;}
.h28{height:59.040000px;}
.h2c{height:59.976000px;}
.h16{height:61.290231px;}
.h7{height:61.420342px;}
.hb{height:62.706141px;}
.h12{height:68.531409px;}
.h3{height:68.676954px;}
.h29{height:69.696000px;}
.h22{height:79.968000px;}
.h20{height:86.425781px;}
.h13{height:126.958304px;}
.h4{height:127.228295px;}
.h11{height:892.912759px;}
.h2{height:892.912992px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:-603.823922px;}
.w1{width:629.250000px;}
.w3{width:629.291935px;}
.w0{width:629.292000px;}
.x7{left:-775.868926px;}
.x4{left:-733.374069px;}
.x5{left:-729.488135px;}
.x2{left:-78.400010px;}
.x3{left:-58.854100px;}
.x6{left:-57.589336px;}
.x0{left:0.000000px;}
.x8{left:1.499903px;}
.xe{left:16.700635px;}
.xc{left:59.101735px;}
.x36{left:75.000000px;}
.x2b{left:76.535400px;}
.x2d{left:78.035400px;}
.x27{left:83.274450px;}
.x1{left:87.357517px;}
.x24{left:89.115900px;}
.x33{left:93.543300px;}
.x31{left:95.185350px;}
.x26{left:97.019850px;}
.x20{left:102.444450px;}
.x28{left:104.683800px;}
.x23{left:107.304150px;}
.x35{left:112.535400px;}
.x21{left:131.058300px;}
.xf{left:132.896700px;}
.x30{left:136.405800px;}
.x16{left:141.061050px;}
.x34{left:142.273650px;}
.x13{left:144.123150px;}
.x2e{left:153.495600px;}
.x1f{left:156.966300px;}
.x1a{left:158.666550px;}
.x1d{left:168.620400px;}
.x15{left:172.380000px;}
.x2f{left:184.196550px;}
.x12{left:186.070950px;}
.x1e{left:189.021000px;}
.x10{left:195.098550px;}
.x14{left:197.260350px;}
.x1c{left:198.369900px;}
.x1b{left:205.478400px;}
.x11{left:209.178600px;}
.x18{left:211.422300px;}
.x29{left:216.347700px;}
.x17{left:218.736000px;}
.x25{left:223.716150px;}
.x22{left:228.504600px;}
.x19{left:252.477750px;}
.x32{left:272.993250px;}
.x2a{left:283.024800px;}
.x2c{left:296.303400px;}
.xa{left:712.631335px;}
.xb{left:732.134158px;}
.xd{left:733.396151px;}
.x9{left:878.023585px;}
@media print{
.v5{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.096000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:21.312000pt;}
.ls40{letter-spacing:-4.693333pt;}
.ls86{letter-spacing:-4.000000pt;}
.ls8a{letter-spacing:-3.733333pt;}
.ls7b{letter-spacing:-3.626667pt;}
.ls83{letter-spacing:-3.306667pt;}
.ls7a{letter-spacing:-2.986667pt;}
.ls89{letter-spacing:-2.933333pt;}
.ls33{letter-spacing:-2.826667pt;}
.ls88{letter-spacing:-2.773333pt;}
.ls82{letter-spacing:-2.666667pt;}
.ls2f{letter-spacing:-2.613333pt;}
.ls65{letter-spacing:-2.544000pt;}
.ls36{letter-spacing:-2.453333pt;}
.ls6d{letter-spacing:-2.448000pt;}
.ls2d{letter-spacing:-2.293333pt;}
.ls51{letter-spacing:-2.256000pt;}
.ls87{letter-spacing:-2.186667pt;}
.ls37{letter-spacing:-2.133333pt;}
.ls7e{letter-spacing:-2.026667pt;}
.ls76{letter-spacing:-1.968000pt;}
.ls71{letter-spacing:-1.920000pt;}
.ls3d{letter-spacing:-1.866667pt;}
.ls22{letter-spacing:-1.813333pt;}
.ls72{letter-spacing:-1.760000pt;}
.ls63{letter-spacing:-1.728000pt;}
.ls84{letter-spacing:-1.706667pt;}
.ls66{letter-spacing:-1.664000pt;}
.ls5e{letter-spacing:-1.632000pt;}
.ls60{letter-spacing:-1.584000pt;}
.ls85{letter-spacing:-1.493333pt;}
.ls3b{letter-spacing:-1.386667pt;}
.ls28{letter-spacing:-1.333333pt;}
.ls77{letter-spacing:-1.226667pt;}
.ls1f{letter-spacing:-1.173333pt;}
.ls5a{letter-spacing:-1.120000pt;}
.ls1e{letter-spacing:-1.109333pt;}
.ls69{letter-spacing:-1.104000pt;}
.ls31{letter-spacing:-1.066667pt;}
.ls78{letter-spacing:-1.024000pt;}
.ls3e{letter-spacing:-1.013333pt;}
.ls6b{letter-spacing:-0.994987pt;}
.ls64{letter-spacing:-0.960000pt;}
.ls75{letter-spacing:-0.906667pt;}
.ls5c{letter-spacing:-0.870613pt;}
.ls4a{letter-spacing:-0.853333pt;}
.ls6e{letter-spacing:-0.816000pt;}
.ls52{letter-spacing:-0.800000pt;}
.ls74{letter-spacing:-0.777333pt;}
.ls7c{letter-spacing:-0.746667pt;}
.ls4e{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.576000pt;}
.ls7d{letter-spacing:-0.533333pt;}
.ls5b{letter-spacing:-0.528587pt;}
.ls5f{letter-spacing:-0.528000pt;}
.ls67{letter-spacing:-0.485056pt;}
.ls53{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.426667pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls55{letter-spacing:-0.336000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.253333pt;}
.lsc{letter-spacing:-0.237144pt;}
.ls17{letter-spacing:-0.236643pt;}
.ls48{letter-spacing:-0.213333pt;}
.ls4b{letter-spacing:-0.202667pt;}
.ls70{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.ls44{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.096000pt;}
.ls6c{letter-spacing:-0.062187pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.048000pt;}
.ls68{letter-spacing:-0.031093pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.053333pt;}
.ls45{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls5d{letter-spacing:0.240000pt;}
.ls80{letter-spacing:0.248747pt;}
.ls3f{letter-spacing:0.266667pt;}
.ls4f{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.293331pt;}
.ls2{letter-spacing:0.293979pt;}
.ls16{letter-spacing:0.319997pt;}
.ls20{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.320704pt;}
.ls59{letter-spacing:0.331200pt;}
.ls15{letter-spacing:0.331300pt;}
.ls57{letter-spacing:0.336000pt;}
.ls8{letter-spacing:0.355716pt;}
.ls11{letter-spacing:0.368109pt;}
.ls4{letter-spacing:0.368891pt;}
.ls24{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.381411pt;}
.ls54{letter-spacing:0.384000pt;}
.ls46{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.432000pt;}
.ls12{letter-spacing:0.473286pt;}
.ls5{letter-spacing:0.474288pt;}
.ls38{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.567943pt;}
.ls6{letter-spacing:0.569146pt;}
.ls43{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.578459pt;}
.ls3{letter-spacing:0.579686pt;}
.ls27{letter-spacing:0.586667pt;}
.ls81{letter-spacing:0.652960pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls4d{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.709928pt;}
.ls7{letter-spacing:0.711433pt;}
.ls6a{letter-spacing:0.720000pt;}
.lse{letter-spacing:0.762512pt;}
.ls1{letter-spacing:0.764134pt;}
.lsd{letter-spacing:0.841392pt;}
.ls0{letter-spacing:0.843179pt;}
.ls73{letter-spacing:0.906667pt;}
.ls61{letter-spacing:0.912000pt;}
.ls49{letter-spacing:0.960000pt;}
.ls7f{letter-spacing:1.066667pt;}
.ls56{letter-spacing:1.200000pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls39{letter-spacing:1.306667pt;}
.ls62{letter-spacing:1.392000pt;}
.ls47{letter-spacing:1.448784pt;}
.ls50{letter-spacing:1.449600pt;}
.ls58{letter-spacing:1.449845pt;}
.ls79{letter-spacing:3.708267pt;}
.ws2d{word-spacing:-17.408000pt;}
.ws7f{word-spacing:-13.952000pt;}
.ws6e{word-spacing:-13.824000pt;}
.wsaa{word-spacing:-13.312000pt;}
.ws87{word-spacing:-13.173333pt;}
.ws18c{word-spacing:-13.066667pt;}
.ws144{word-spacing:-13.013333pt;}
.wsa3{word-spacing:-12.906667pt;}
.ws15d{word-spacing:-12.864000pt;}
.ws154{word-spacing:-12.800000pt;}
.ws4d{word-spacing:-12.693333pt;}
.ws177{word-spacing:-12.640000pt;}
.wsa5{word-spacing:-12.586667pt;}
.ws86{word-spacing:-12.533333pt;}
.ws89{word-spacing:-12.480000pt;}
.ws128{word-spacing:-12.426667pt;}
.ws164{word-spacing:-12.373333pt;}
.wsed{word-spacing:-12.320000pt;}
.wsf3{word-spacing:-12.288000pt;}
.ws113{word-spacing:-12.224000pt;}
.ws143{word-spacing:-12.213333pt;}
.wsd3{word-spacing:-12.192000pt;}
.ws169{word-spacing:-12.160000pt;}
.ws2e{word-spacing:-12.106667pt;}
.ws6b{word-spacing:-12.053333pt;}
.ws166{word-spacing:-11.946667pt;}
.ws141{word-spacing:-11.893333pt;}
.wsf2{word-spacing:-11.808000pt;}
.ws2f{word-spacing:-11.786667pt;}
.ws167{word-spacing:-11.680000pt;}
.ws163{word-spacing:-11.626667pt;}
.ws17d{word-spacing:-11.573333pt;}
.wsf4{word-spacing:-11.568000pt;}
.wsce{word-spacing:-11.520000pt;}
.ws12e{word-spacing:-11.466667pt;}
.ws12c{word-spacing:-11.424000pt;}
.ws155{word-spacing:-11.413333pt;}
.wsd2{word-spacing:-11.376000pt;}
.ws88{word-spacing:-11.360000pt;}
.ws117{word-spacing:-11.328000pt;}
.ws179{word-spacing:-11.306667pt;}
.ws5e{word-spacing:-11.253333pt;}
.ws4c{word-spacing:-11.248000pt;}
.wsf0{word-spacing:-11.232000pt;}
.ws44{word-spacing:-11.200000pt;}
.wsa6{word-spacing:-11.184000pt;}
.ws165{word-spacing:-11.146667pt;}
.ws115{word-spacing:-11.040000pt;}
.ws12a{word-spacing:-10.992000pt;}
.wsd1{word-spacing:-10.944000pt;}
.wscf{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.752000pt;}
.ws162{word-spacing:-10.720000pt;}
.ws17b{word-spacing:-10.613333pt;}
.ws28{word-spacing:-10.608000pt;}
.ws118{word-spacing:-10.560000pt;}
.wsd0{word-spacing:-10.512000pt;}
.ws71{word-spacing:-10.416000pt;}
.ws17a{word-spacing:-10.400000pt;}
.ws6f{word-spacing:-10.368000pt;}
.ws142{word-spacing:-10.346667pt;}
.ws70{word-spacing:-10.272000pt;}
.ws12b{word-spacing:-10.080000pt;}
.ws119{word-spacing:-9.792000pt;}
.ws4e{word-spacing:-9.781333pt;}
.ws3a{word-spacing:-9.600000pt;}
.ws178{word-spacing:-9.546667pt;}
.ws153{word-spacing:-9.386667pt;}
.ws17e{word-spacing:-9.333333pt;}
.wsf1{word-spacing:-9.312000pt;}
.ws140{word-spacing:-9.280000pt;}
.ws17f{word-spacing:-9.173333pt;}
.ws145{word-spacing:-8.928000pt;}
.ws67{word-spacing:-8.906667pt;}
.ws129{word-spacing:-8.448000pt;}
.wsf5{word-spacing:-8.352000pt;}
.ws41{word-spacing:-8.266667pt;}
.ws17c{word-spacing:-8.213333pt;}
.ws6c{word-spacing:-8.106667pt;}
.ws57{word-spacing:-8.053333pt;}
.ws16a{word-spacing:-7.711147pt;}
.ws114{word-spacing:-7.611648pt;}
.ws3d{word-spacing:-7.360000pt;}
.ws168{word-spacing:-7.306933pt;}
.ws5b{word-spacing:-7.253333pt;}
.wsa4{word-spacing:-7.058187pt;}
.ws116{word-spacing:-7.027093pt;}
.ws127{word-spacing:-6.996000pt;}
.ws56{word-spacing:-6.773333pt;}
.wsee{word-spacing:-6.529600pt;}
.ws121{word-spacing:-6.400000pt;}
.ws4f{word-spacing:-6.240000pt;}
.wsef{word-spacing:-6.187573pt;}
.ws126{word-spacing:-6.063200pt;}
.ws30{word-spacing:-5.706667pt;}
.ws61{word-spacing:-5.333333pt;}
.ws11f{word-spacing:-4.533333pt;}
.ws53{word-spacing:-4.480000pt;}
.ws63{word-spacing:-4.320000pt;}
.ws58{word-spacing:-4.053333pt;}
.ws4a{word-spacing:-3.626667pt;}
.ws11d{word-spacing:-3.413333pt;}
.wsb9{word-spacing:-2.933333pt;}
.ws5d{word-spacing:-2.880000pt;}
.wsd{word-spacing:-2.845730pt;}
.ws10{word-spacing:-2.798303pt;}
.ws23{word-spacing:-2.792386pt;}
.ws20{word-spacing:-2.792385pt;}
.ws34{word-spacing:-2.773333pt;}
.wsa{word-spacing:-2.750872pt;}
.ws1d{word-spacing:-2.745056pt;}
.ws8{word-spacing:-2.703444pt;}
.ws1b{word-spacing:-2.697728pt;}
.ws12{word-spacing:-2.608588pt;}
.ws25{word-spacing:-2.603072pt;}
.ws124{word-spacing:-2.544000pt;}
.ws6a{word-spacing:-2.346667pt;}
.ws48{word-spacing:-2.293333pt;}
.ws132{word-spacing:-2.240000pt;}
.ws75{word-spacing:-2.208000pt;}
.ws172{word-spacing:-2.186667pt;}
.ws78{word-spacing:-2.160000pt;}
.ws74{word-spacing:-2.112000pt;}
.wsc1{word-spacing:-2.080000pt;}
.ws14a{word-spacing:-1.973333pt;}
.wsc4{word-spacing:-1.968000pt;}
.ws8d{word-spacing:-1.813333pt;}
.wsb{word-spacing:-1.802296pt;}
.ws1e{word-spacing:-1.798485pt;}
.wseb{word-spacing:-1.776000pt;}
.wsde{word-spacing:-1.760000pt;}
.wscc{word-spacing:-1.728000pt;}
.wsbb{word-spacing:-1.706667pt;}
.wsec{word-spacing:-1.680000pt;}
.ws98{word-spacing:-1.653333pt;}
.ws10e{word-spacing:-1.632000pt;}
.ws14{word-spacing:-1.612582pt;}
.ws27{word-spacing:-1.609172pt;}
.wsb3{word-spacing:-1.600000pt;}
.ws10f{word-spacing:-1.584000pt;}
.ws11e{word-spacing:-1.546667pt;}
.wse6{word-spacing:-1.536000pt;}
.ws18b{word-spacing:-1.493333pt;}
.ws102{word-spacing:-1.488000pt;}
.ws11{word-spacing:-1.470295pt;}
.ws24{word-spacing:-1.467186pt;}
.ws92{word-spacing:-1.405333pt;}
.ws7b{word-spacing:-1.392000pt;}
.ws6d{word-spacing:-1.386667pt;}
.ws10a{word-spacing:-1.344000pt;}
.ws150{word-spacing:-1.333333pt;}
.wsf{word-spacing:-1.328008pt;}
.ws22{word-spacing:-1.325200pt;}
.ws13d{word-spacing:-1.296000pt;}
.wsa1{word-spacing:-1.248000pt;}
.ws65{word-spacing:-1.226667pt;}
.ws146{word-spacing:-1.173333pt;}
.ws80{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.104000pt;}
.ws120{word-spacing:-1.066667pt;}
.wse5{word-spacing:-1.056000pt;}
.wsdc{word-spacing:-1.013333pt;}
.ws109{word-spacing:-1.008000pt;}
.ws77{word-spacing:-0.960000pt;}
.wsc5{word-spacing:-0.912000pt;}
.ws90{word-spacing:-0.906667pt;}
.ws7d{word-spacing:-0.864000pt;}
.ws108{word-spacing:-0.816000pt;}
.ws18a{word-spacing:-0.800000pt;}
.ws4{word-spacing:-0.764134pt;}
.ws17{word-spacing:-0.762512pt;}
.wsb7{word-spacing:-0.746667pt;}
.ws13c{word-spacing:-0.720000pt;}
.wsf6{word-spacing:-0.693333pt;}
.ws2b{word-spacing:-0.672000pt;}
.ws5a{word-spacing:-0.640000pt;}
.ws123{word-spacing:-0.624000pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.533333pt;}
.ws107{word-spacing:-0.480000pt;}
.ws16d{word-spacing:-0.426667pt;}
.ws38{word-spacing:-0.373333pt;}
.ws32{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws139{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.160000pt;}
.ws7c{word-spacing:-0.144000pt;}
.ws51{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.053333pt;}
.ws2c{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.048000pt;}
.ws46{word-spacing:0.053333pt;}
.wsa0{word-spacing:0.096000pt;}
.ws33{word-spacing:0.106667pt;}
.ws103{word-spacing:0.144000pt;}
.ws43{word-spacing:0.160000pt;}
.ws13e{word-spacing:0.192000pt;}
.wsa7{word-spacing:0.202667pt;}
.ws151{word-spacing:0.213333pt;}
.ws106{word-spacing:0.240000pt;}
.ws184{word-spacing:0.266667pt;}
.ws40{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.ws83{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.520614pt;}
.wsc{word-spacing:0.521717pt;}
.ws105{word-spacing:0.528000pt;}
.wsdb{word-spacing:0.533333pt;}
.ws13f{word-spacing:0.576000pt;}
.ws15b{word-spacing:0.586667pt;}
.ws3f{word-spacing:0.640000pt;}
.ws94{word-spacing:0.680000pt;}
.wsd9{word-spacing:0.693333pt;}
.wsb2{word-spacing:0.704000pt;}
.wsea{word-spacing:0.720000pt;}
.wsda{word-spacing:0.746667pt;}
.ws138{word-spacing:0.768000pt;}
.ws14b{word-spacing:0.777333pt;}
.ws84{word-spacing:0.800000pt;}
.wsc9{word-spacing:0.816000pt;}
.ws149{word-spacing:0.853333pt;}
.ws100{word-spacing:0.864000pt;}
.ws14f{word-spacing:0.906667pt;}
.ws112{word-spacing:0.912000pt;}
.ws110{word-spacing:0.960000pt;}
.ws73{word-spacing:1.008000pt;}
.ws47{word-spacing:1.013333pt;}
.wsc7{word-spacing:1.056000pt;}
.ws60{word-spacing:1.066667pt;}
.wse7{word-spacing:1.104000pt;}
.ws99{word-spacing:1.120000pt;}
.ws10b{word-spacing:1.152000pt;}
.ws31{word-spacing:1.173333pt;}
.wsbf{word-spacing:1.226667pt;}
.ws152{word-spacing:1.248000pt;}
.ws188{word-spacing:1.280000pt;}
.wsc6{word-spacing:1.296000pt;}
.ws9e{word-spacing:1.333333pt;}
.wsb8{word-spacing:1.386667pt;}
.wse9{word-spacing:1.392000pt;}
.wsb6{word-spacing:1.440000pt;}
.ws15f{word-spacing:1.493333pt;}
.wscd{word-spacing:1.536000pt;}
.ws5c{word-spacing:1.546667pt;}
.ws15c{word-spacing:1.600000pt;}
.ws137{word-spacing:1.632000pt;}
.ws42{word-spacing:1.653333pt;}
.ws8c{word-spacing:1.706667pt;}
.ws7e{word-spacing:1.728000pt;}
.ws131{word-spacing:1.760000pt;}
.wsa2{word-spacing:1.776000pt;}
.ws64{word-spacing:1.813333pt;}
.ws15a{word-spacing:1.866667pt;}
.ws3b{word-spacing:1.920000pt;}
.wsbc{word-spacing:1.973333pt;}
.ws101{word-spacing:2.016000pt;}
.wsc2{word-spacing:2.026667pt;}
.wsb1{word-spacing:2.080000pt;}
.ws91{word-spacing:2.085333pt;}
.ws97{word-spacing:2.133333pt;}
.wsf8{word-spacing:2.186667pt;}
.wse8{word-spacing:2.208000pt;}
.ws68{word-spacing:2.240000pt;}
.ws4b{word-spacing:2.293333pt;}
.ws76{word-spacing:2.304000pt;}
.ws11c{word-spacing:2.346667pt;}
.ws136{word-spacing:2.400000pt;}
.wsba{word-spacing:2.453333pt;}
.ws21{word-spacing:2.461085pt;}
.ws26{word-spacing:2.461086pt;}
.wse{word-spacing:2.466299pt;}
.ws13{word-spacing:2.466301pt;}
.ws3e{word-spacing:2.560000pt;}
.ws135{word-spacing:2.592000pt;}
.ws62{word-spacing:2.613333pt;}
.wsd8{word-spacing:2.666667pt;}
.wsc0{word-spacing:2.720000pt;}
.wsb5{word-spacing:2.773333pt;}
.ws1c{word-spacing:2.792385pt;}
.ws9{word-spacing:2.798301pt;}
.wsdd{word-spacing:2.826667pt;}
.ws10c{word-spacing:2.832000pt;}
.wsa8{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.928000pt;}
.wsfe{word-spacing:2.933333pt;}
.ws104{word-spacing:2.976000pt;}
.ws8e{word-spacing:2.986667pt;}
.ws35{word-spacing:3.040000pt;}
.ws134{word-spacing:3.072000pt;}
.ws66{word-spacing:3.093333pt;}
.wsc8{word-spacing:3.120000pt;}
.ws9d{word-spacing:3.146667pt;}
.ws13b{word-spacing:3.168000pt;}
.ws8f{word-spacing:3.200000pt;}
.ws96{word-spacing:3.253333pt;}
.wsb4{word-spacing:3.306667pt;}
.ws133{word-spacing:3.312000pt;}
.ws59{word-spacing:3.360000pt;}
.ws19{word-spacing:3.412908pt;}
.ws6{word-spacing:3.420146pt;}
.ws18{word-spacing:3.461302pt;}
.ws9c{word-spacing:3.466667pt;}
.ws5{word-spacing:3.468949pt;}
.ws13a{word-spacing:3.504000pt;}
.ws45{word-spacing:3.520000pt;}
.ws72{word-spacing:3.552000pt;}
.ws130{word-spacing:3.573333pt;}
.ws10d{word-spacing:3.600000pt;}
.ws16e{word-spacing:3.626667pt;}
.ws8b{word-spacing:3.672000pt;}
.ws54{word-spacing:3.680000pt;}
.wscb{word-spacing:3.696000pt;}
.ws14d{word-spacing:3.733333pt;}
.ws49{word-spacing:3.840000pt;}
.ws181{word-spacing:3.893333pt;}
.ws14e{word-spacing:3.946667pt;}
.wse4{word-spacing:4.000000pt;}
.ws50{word-spacing:4.053333pt;}
.ws175{word-spacing:4.106667pt;}
.ws186{word-spacing:4.160000pt;}
.wse3{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.343692pt;}
.ws7{word-spacing:4.352913pt;}
.ws16f{word-spacing:4.373333pt;}
.ws9b{word-spacing:4.426667pt;}
.wsfb{word-spacing:4.480000pt;}
.ws11a{word-spacing:4.533333pt;}
.ws157{word-spacing:4.693333pt;}
.ws156{word-spacing:4.746667pt;}
.wsd6{word-spacing:4.800000pt;}
.ws15e{word-spacing:4.906667pt;}
.wsd5{word-spacing:4.960000pt;}
.ws15{word-spacing:4.964215pt;}
.ws1{word-spacing:4.974758pt;}
.ws147{word-spacing:5.013333pt;}
.ws93{word-spacing:5.032000pt;}
.ws148{word-spacing:5.066667pt;}
.ws82{word-spacing:5.120000pt;}
.wsf7{word-spacing:5.173333pt;}
.ws176{word-spacing:5.226667pt;}
.wse2{word-spacing:5.280000pt;}
.ws125{word-spacing:5.376000pt;}
.ws185{word-spacing:5.386667pt;}
.ws11b{word-spacing:5.493333pt;}
.ws16b{word-spacing:5.546667pt;}
.wsdf{word-spacing:5.600000pt;}
.ws189{word-spacing:5.653333pt;}
.ws161{word-spacing:5.706667pt;}
.wsab{word-spacing:5.760000pt;}
.ws85{word-spacing:5.813333pt;}
.ws8a{word-spacing:5.893333pt;}
.wsd4{word-spacing:5.920000pt;}
.wse0{word-spacing:5.973333pt;}
.ws0{word-spacing:6.007223pt;}
.wsff{word-spacing:6.026667pt;}
.ws81{word-spacing:6.080000pt;}
.wsac{word-spacing:6.133333pt;}
.wsaf{word-spacing:6.293333pt;}
.ws12f{word-spacing:6.346667pt;}
.ws160{word-spacing:6.400000pt;}
.wsd7{word-spacing:6.453333pt;}
.ws16c{word-spacing:6.506667pt;}
.wsad{word-spacing:6.560000pt;}
.ws14c{word-spacing:6.613333pt;}
.wsa9{word-spacing:6.826667pt;}
.ws180{word-spacing:6.933333pt;}
.wsfc{word-spacing:6.986667pt;}
.wsbd{word-spacing:7.040000pt;}
.wsfa{word-spacing:7.200000pt;}
.wse1{word-spacing:7.253333pt;}
.ws9a{word-spacing:7.306667pt;}
.ws187{word-spacing:7.466667pt;}
.wsb0{word-spacing:7.840000pt;}
.ws173{word-spacing:8.053333pt;}
.wsf9{word-spacing:8.106667pt;}
.ws111{word-spacing:8.160000pt;}
.ws159{word-spacing:8.373333pt;}
.ws158{word-spacing:8.480000pt;}
.ws16{word-spacing:8.997646pt;}
.ws3{word-spacing:9.016780pt;}
.wsbe{word-spacing:9.066667pt;}
.wsfd{word-spacing:9.653333pt;}
.ws9f{word-spacing:9.696000pt;}
.ws174{word-spacing:10.293333pt;}
.ws95{word-spacing:11.413333pt;}
.ws170{word-spacing:13.706667pt;}
.ws171{word-spacing:13.866667pt;}
.ws182{word-spacing:14.026667pt;}
.ws183{word-spacing:14.080000pt;}
.ws12d{word-spacing:14.773333pt;}
.ws122{word-spacing:18.960000pt;}
.ws5f{word-spacing:720.297600pt;}
._1b{margin-left:-1168.453333pt;}
._13{margin-left:-910.699733pt;}
._6{margin-left:-479.884957pt;}
._9{margin-left:-478.864914pt;}
._8{margin-left:-291.782196pt;}
._b{margin-left:-23.466667pt;}
._3{margin-left:-21.015428pt;}
._5{margin-left:-18.900719pt;}
._28{margin-left:-14.547200pt;}
._11{margin-left:-13.333867pt;}
._29{margin-left:-12.037978pt;}
._e{margin-left:-10.709477pt;}
._2c{margin-left:-9.653333pt;}
._20{margin-left:-8.693333pt;}
._f{margin-left:-6.106133pt;}
._1{margin-left:-4.637486pt;}
._16{margin-left:-3.653333pt;}
._2{margin-left:-2.750882pt;}
._0{margin-left:-1.517723pt;}
._c{width:1.267200pt;}
._d{width:2.619733pt;}
._14{width:3.863414pt;}
._18{width:5.632000pt;}
._19{width:6.589919pt;}
._1f{width:8.364215pt;}
._17{width:9.384482pt;}
._15{width:10.356800pt;}
._12{width:11.525333pt;}
._27{width:12.602748pt;}
._1e{width:13.753600pt;}
._2d{width:15.257015pt;}
._2a{width:16.555344pt;}
._10{width:17.811200pt;}
._21{width:18.816000pt;}
._26{width:20.112144pt;}
._4{width:28.367442pt;}
._1c{width:30.302889pt;}
._1a{width:31.936000pt;}
._23{width:37.440013pt;}
._24{width:40.421477pt;}
._25{width:42.725477pt;}
._22{width:43.637477pt;}
._1d{width:156.533333pt;}
._2e{width:158.341333pt;}
._2b{width:159.786667pt;}
._a{width:4178.032273pt;}
._7{width:4186.899914pt;}
.fs17{font-size:5.333333pt;}
.fs15{font-size:5.333336pt;}
.fsb{font-size:5.333337pt;}
.fs24{font-size:21.333333pt;}
.fs21{font-size:26.429333pt;}
.fs22{font-size:31.093333pt;}
.fs14{font-size:31.552014pt;}
.fsa{font-size:31.619224pt;}
.fs8{font-size:34.673678pt;}
.fs23{font-size:37.312000pt;}
.fs1e{font-size:37.333333pt;}
.fs20{font-size:45.333333pt;}
.fs11{font-size:47.328554pt;}
.fs12{font-size:47.328575pt;}
.fs5{font-size:47.428835pt;}
.fs6{font-size:47.428871pt;}
.fs7{font-size:47.676374pt;}
.fs16{font-size:48.000000pt;}
.fs1d{font-size:50.666667pt;}
.fs1b{font-size:53.333333pt;}
.fsf{font-size:57.845892pt;}
.fs3{font-size:57.968577pt;}
.fse{font-size:58.666133pt;}
.fs2{font-size:58.795743pt;}
.fs1c{font-size:61.333333pt;}
.fs13{font-size:63.999467pt;}
.fs1f{font-size:64.000000pt;}
.fs9{font-size:64.140832pt;}
.fs18{font-size:72.000000pt;}
.fs10{font-size:73.621899pt;}
.fs4{font-size:73.778189pt;}
.fsc{font-size:84.139237pt;}
.fs0{font-size:84.317930pt;}
.fs1a{font-size:85.333333pt;}
.fs19{font-size:106.666667pt;}
.fsd{font-size:152.502467pt;}
.fs1{font-size:152.826781pt;}
.y26{bottom:-78.132615pt;}
.y4a{bottom:-76.284152pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.983736pt;}
.y211{bottom:6.666667pt;}
.y21{bottom:14.809045pt;}
.y23{bottom:46.801572pt;}
.y55{bottom:58.917333pt;}
.y63{bottom:59.527600pt;}
.y1ff{bottom:69.272800pt;}
.y109{bottom:74.194267pt;}
.ye3{bottom:77.276933pt;}
.y15d{bottom:81.948000pt;}
.y1d0{bottom:83.047067pt;}
.y1b2{bottom:83.724267pt;}
.y1fe{bottom:84.606133pt;}
.y62{bottom:86.194267pt;}
.y8e{bottom:86.569733pt;}
.y108{bottom:88.860933pt;}
.y20e{bottom:93.328000pt;}
.ye2{bottom:93.943600pt;}
.y12d{bottom:96.614667pt;}
.y1cf{bottom:98.380400pt;}
.y61{bottom:99.527600pt;}
.y1b1{bottom:100.390933pt;}
.y8d{bottom:102.569733pt;}
.y107{bottom:103.527600pt;}
.y1fd{bottom:103.718933pt;}
.yb3{bottom:104.842267pt;}
.y1da{bottom:107.102667pt;}
.ye1{bottom:110.610267pt;}
.y97{bottom:111.292000pt;}
.y20d{bottom:112.441333pt;}
.y60{bottom:112.860933pt;}
.ybd{bottom:113.565333pt;}
.y1b0{bottom:117.057600pt;}
.y1ce{bottom:117.493200pt;}
.y106{bottom:118.194267pt;}
.y8c{bottom:118.569733pt;}
.yb2{bottom:120.842267pt;}
.y1fc{bottom:122.831733pt;}
.ye0{bottom:127.276933pt;}
.y1cd{bottom:132.826533pt;}
.y105{bottom:132.860933pt;}
.y25{bottom:133.641478pt;}
.y1af{bottom:133.724267pt;}
.y49{bottom:135.040669pt;}
.y12a{bottom:136.385600pt;}
.y20{bottom:136.813465pt;}
.y1fb{bottom:138.165067pt;}
.y47{bottom:138.205117pt;}
.y5f{bottom:139.527600pt;}
.y14d{bottom:140.614667pt;}
.y1d9{bottom:141.549333pt;}
.ydf{bottom:143.943600pt;}
.y20c{bottom:146.888000pt;}
.y104{bottom:147.527600pt;}
.y1ae{bottom:150.390933pt;}
.y8b{bottom:150.569733pt;}
.y1f{bottom:151.302985pt;}
.y1cc{bottom:151.939467pt;}
.y46{bottom:152.663997pt;}
.yb1{bottom:152.842267pt;}
.y129{bottom:153.052267pt;}
.y10a{bottom:155.281333pt;}
.y1fa{bottom:157.278000pt;}
.yde{bottom:160.610267pt;}
.y14a{bottom:162.194267pt;}
.y1e{bottom:165.792505pt;}
.y8a{bottom:166.569733pt;}
.y1ad{bottom:167.057600pt;}
.y45{bottom:167.122876pt;}
.y1cb{bottom:167.272800pt;}
.yb0{bottom:168.842267pt;}
.y128{bottom:169.718933pt;}
.y162{bottom:169.948000pt;}
.y1f9{bottom:172.611333pt;}
.y96{bottom:175.292000pt;}
.y149{bottom:176.860933pt;}
.ybc{bottom:177.565333pt;}
.y193{bottom:178.180933pt;}
.y20b{bottom:181.333333pt;}
.y89{bottom:182.569733pt;}
.y1ca{bottom:182.606133pt;}
.y1ac{bottom:183.724267pt;}
.ydd{bottom:184.836000pt;}
.yaf{bottom:184.842267pt;}
.y127{bottom:186.385600pt;}
.y1d{bottom:187.752072pt;}
.y44{bottom:189.036007pt;}
.y1d8{bottom:191.328000pt;}
.y148{bottom:191.527600pt;}
.y1f8{bottom:191.724267pt;}
.y192{bottom:194.847600pt;}
.ye5{bottom:195.497333pt;}
.y1ab{bottom:200.390933pt;}
.yc2{bottom:200.842267pt;}
.y1c9{bottom:201.718933pt;}
.y1c{bottom:202.241592pt;}
.y126{bottom:203.052267pt;}
.y43{bottom:203.494886pt;}
.y147{bottom:206.194267pt;}
.y1f7{bottom:207.057600pt;}
.y103{bottom:208.742533pt;}
.y191{bottom:211.514267pt;}
.y15c{bottom:213.948000pt;}
.y88{bottom:214.569733pt;}
.y20a{bottom:215.780000pt;}
.y1b{bottom:216.731112pt;}
.yae{bottom:216.842267pt;}
.y1c8{bottom:217.052267pt;}
.y1aa{bottom:217.057600pt;}
.y42{bottom:217.953766pt;}
.y5e{bottom:219.527600pt;}
.y125{bottom:219.718933pt;}
.y146{bottom:220.860933pt;}
.y24{bottom:221.748576pt;}
.y48{bottom:222.961137pt;}
.ydc{bottom:223.964000pt;}
.y102{bottom:225.409200pt;}
.ybb{bottom:225.565333pt;}
.y1d7{bottom:225.774667pt;}
.y1f6{bottom:226.170400pt;}
.y190{bottom:228.180933pt;}
.y14c{bottom:228.614667pt;}
.y87{bottom:230.569733pt;}
.yad{bottom:232.842267pt;}
.y5d{bottom:232.860933pt;}
.y1a9{bottom:233.724267pt;}
.y145{bottom:235.527600pt;}
.y1c7{bottom:236.165067pt;}
.y124{bottom:236.385600pt;}
.y1a{bottom:238.690680pt;}
.y95{bottom:239.292000pt;}
.y41{bottom:239.866896pt;}
.y1f5{bottom:241.503733pt;}
.y101{bottom:242.075867pt;}
.y161{bottom:243.281333pt;}
.y18f{bottom:244.847600pt;}
.y12e{bottom:245.108000pt;}
.y5c{bottom:246.194267pt;}
.y86{bottom:246.569733pt;}
.ydb{bottom:246.641067pt;}
.y144{bottom:250.194267pt;}
.y1a8{bottom:250.390933pt;}
.y1c6{bottom:251.498400pt;}
.y123{bottom:253.052267pt;}
.y19{bottom:253.180200pt;}
.y40{bottom:254.325776pt;}
.y1f4{bottom:256.837067pt;}
.y157{bottom:257.948000pt;}
.y100{bottom:258.742533pt;}
.y5b{bottom:259.527600pt;}
.y18e{bottom:261.514267pt;}
.yda{bottom:261.974400pt;}
.yac{bottom:264.842267pt;}
.y143{bottom:264.860933pt;}
.y1c5{bottom:266.831733pt;}
.y1a7{bottom:267.057600pt;}
.y18{bottom:267.669720pt;}
.y3f{bottom:268.784655pt;}
.y122{bottom:269.718933pt;}
.y1f3{bottom:272.170400pt;}
.yff{bottom:275.409200pt;}
.yd9{bottom:277.307733pt;}
.y18d{bottom:278.180933pt;}
.y85{bottom:278.569733pt;}
.y142{bottom:279.527600pt;}
.yab{bottom:280.842267pt;}
.y209{bottom:280.893333pt;}
.y1c4{bottom:282.165067pt;}
.y1a6{bottom:283.724267pt;}
.y17{bottom:285.894263pt;}
.y5a{bottom:286.194267pt;}
.y121{bottom:286.385600pt;}
.y3e{bottom:286.970660pt;}
.y151{bottom:287.281333pt;}
.y94{bottom:287.292000pt;}
.yba{bottom:289.565333pt;}
.y1f2{bottom:291.283200pt;}
.yfe{bottom:292.075867pt;}
.yd8{bottom:292.641067pt;}
.y156{bottom:293.298933pt;}
.y141{bottom:294.194267pt;}
.y84{bottom:294.569733pt;}
.y18c{bottom:294.847600pt;}
.yaa{bottom:296.842267pt;}
.y1c3{bottom:297.498400pt;}
.y59{bottom:299.527600pt;}
.y1a5{bottom:300.390933pt;}
.y15a{bottom:302.021333pt;}
.y1d6{bottom:306.221333pt;}
.y1f1{bottom:306.616533pt;}
.yd7{bottom:307.974400pt;}
.yfd{bottom:308.742533pt;}
.y140{bottom:308.860933pt;}
.y155{bottom:309.965600pt;}
.y120{bottom:310.611333pt;}
.y58{bottom:312.860933pt;}
.y16f{bottom:314.175600pt;}
.y1c2{bottom:316.611333pt;}
.y159{bottom:318.688000pt;}
.y18b{bottom:319.073333pt;}
.y1f0{bottom:321.949867pt;}
.y172{bottom:322.898667pt;}
.yd6{bottom:323.307733pt;}
.y13f{bottom:323.527600pt;}
.y1a4{bottom:324.616533pt;}
.yfc{bottom:325.409200pt;}
.y57{bottom:326.194267pt;}
.y83{bottom:326.569733pt;}
.y154{bottom:326.632267pt;}
.y194{bottom:327.796000pt;}
.y11f{bottom:328.611333pt;}
.ya9{bottom:328.842267pt;}
.y208{bottom:330.672000pt;}
.y16e{bottom:330.842267pt;}
.y14b{bottom:331.281333pt;}
.y1c1{bottom:331.944667pt;}
.y1b3{bottom:335.277333pt;}
.y18a{bottom:335.740000pt;}
.yb9{bottom:337.565333pt;}
.y15b{bottom:338.194267pt;}
.yd5{bottom:338.641067pt;}
.y12c{bottom:339.272000pt;}
.y1ef{bottom:341.062800pt;}
.yfb{bottom:342.075867pt;}
.y82{bottom:342.569733pt;}
.y153{bottom:343.298933pt;}
.ya8{bottom:344.842267pt;}
.y1c0{bottom:347.278000pt;}
.y16d{bottom:347.508933pt;}
.y93{bottom:351.292000pt;}
.y189{bottom:352.406667pt;}
.y182{bottom:352.860933pt;}
.yc5{bottom:353.565333pt;}
.yd4{bottom:353.974400pt;}
.y1ee{bottom:356.396133pt;}
.y81{bottom:358.569733pt;}
.yfa{bottom:358.742533pt;}
.y152{bottom:359.965600pt;}
.y188{bottom:360.614667pt;}
.yc1{bottom:360.842267pt;}
.y1a3{bottom:361.514267pt;}
.y1bf{bottom:362.611333pt;}
.y16c{bottom:364.175600pt;}
.y207{bottom:365.118667pt;}
.y11e{bottom:365.508933pt;}
.y181{bottom:367.527600pt;}
.y187{bottom:375.281333pt;}
.yf9{bottom:375.409200pt;}
.y1ed{bottom:375.508933pt;}
.y13e{bottom:376.632267pt;}
.ya7{bottom:376.842267pt;}
.y1be{bottom:377.944667pt;}
.y1a2{bottom:378.180933pt;}
.y16b{bottom:380.842267pt;}
.y11d{bottom:382.175600pt;}
.y180{bottom:382.194267pt;}
.y150{bottom:385.354667pt;}
.yb8{bottom:385.565333pt;}
.y1d5{bottom:386.666667pt;}
.y183{bottom:389.948000pt;}
.y80{bottom:390.569600pt;}
.y1ec{bottom:390.842267pt;}
.y160{bottom:390.898667pt;}
.yf8{bottom:392.075867pt;}
.y54{bottom:392.358533pt;}
.ya6{bottom:392.842267pt;}
.y13d{bottom:393.298933pt;}
.y1a1{bottom:394.847600pt;}
.y17f{bottom:396.860933pt;}
.y1bd{bottom:397.057600pt;}
.y16a{bottom:397.508933pt;}
.y11c{bottom:398.842267pt;}
.y206{bottom:399.565333pt;}
.yd3{bottom:403.323467pt;}
.y7f{bottom:406.569600pt;}
.yf7{bottom:408.742533pt;}
.ya5{bottom:408.842267pt;}
.y1eb{bottom:409.955200pt;}
.y13c{bottom:409.965600pt;}
.y1a0{bottom:411.514267pt;}
.y17e{bottom:411.527600pt;}
.y1bc{bottom:412.390933pt;}
.y16{bottom:412.486964pt;}
.y3d{bottom:413.294328pt;}
.y169{bottom:414.175600pt;}
.y7{bottom:414.936420pt;}
.y92{bottom:415.292000pt;}
.y11b{bottom:415.508933pt;}
.y2e{bottom:415.739398pt;}
.yc4{bottom:417.565333pt;}
.y205{bottom:418.677333pt;}
.y1d4{bottom:421.113333pt;}
.y53{bottom:421.691867pt;}
.y7e{bottom:422.569600pt;}
.y15f{bottom:424.232000pt;}
.yc0{bottom:424.842267pt;}
.yd2{bottom:426.000667pt;}
.y17d{bottom:426.194267pt;}
.y13b{bottom:426.632267pt;}
.y15{bottom:426.976474pt;}
.y3c{bottom:427.753201pt;}
.y19f{bottom:428.180933pt;}
.y1ea{bottom:429.068000pt;}
.y168{bottom:430.842267pt;}
.y1bb{bottom:431.503733pt;}
.y11a{bottom:432.175600pt;}
.yf6{bottom:432.968133pt;}
.y10b{bottom:440.237333pt;}
.ya4{bottom:440.842267pt;}
.y17c{bottom:440.860933pt;}
.yd1{bottom:441.334000pt;}
.y14{bottom:441.465983pt;}
.y3b{bottom:442.212074pt;}
.y13a{bottom:443.298933pt;}
.y6{bottom:444.325469pt;}
.y1e9{bottom:444.401333pt;}
.y19e{bottom:444.847600pt;}
.y2d{bottom:445.066204pt;}
.y1ba{bottom:446.837067pt;}
.y167{bottom:447.508933pt;}
.yf5{bottom:447.634800pt;}
.y119{bottom:448.842267pt;}
.y52{bottom:451.025200pt;}
.y7d{bottom:454.569600pt;}
.y17b{bottom:455.527600pt;}
.y1d3{bottom:455.560000pt;}
.y13{bottom:455.955492pt;}
.yd0{bottom:456.667333pt;}
.y3a{bottom:456.670948pt;}
.ybf{bottom:456.842267pt;}
.y1e8{bottom:459.734667pt;}
.y139{bottom:459.965600pt;}
.y19d{bottom:461.514267pt;}
.yf4{bottom:462.301467pt;}
.y166{bottom:464.175600pt;}
.y118{bottom:465.508933pt;}
.y1b9{bottom:465.949867pt;}
.y17a{bottom:470.194267pt;}
.y12{bottom:470.445001pt;}
.y7c{bottom:470.569600pt;}
.y39{bottom:471.129821pt;}
.ycf{bottom:472.000667pt;}
.y56{bottom:472.870667pt;}
.y15e{bottom:474.232000pt;}
.y1e7{bottom:475.068000pt;}
.y138{bottom:476.632267pt;}
.yf3{bottom:476.968133pt;}
.y19c{bottom:478.180933pt;}
.y165{bottom:480.842267pt;}
.y1b8{bottom:481.283200pt;}
.y117{bottom:482.175600pt;}
.y204{bottom:483.790667pt;}
.y179{bottom:484.860933pt;}
.y11{bottom:484.934511pt;}
.ya3{bottom:485.298933pt;}
.y14f{bottom:485.354667pt;}
.y38{bottom:485.588694pt;}
.y5{bottom:486.467454pt;}
.y7b{bottom:486.569600pt;}
.y2c{bottom:487.118759pt;}
.yce{bottom:487.334000pt;}
.yf2{bottom:491.634800pt;}
.y186{bottom:492.614667pt;}
.y137{bottom:493.298933pt;}
.y71{bottom:493.658267pt;}
.y1e6{bottom:494.180933pt;}
.y19b{bottom:494.847600pt;}
.y91{bottom:495.292000pt;}
.y1b7{bottom:496.616533pt;}
.y116{bottom:498.842267pt;}
.y10{bottom:499.424020pt;}
.y37{bottom:500.047568pt;}
.ya2{bottom:501.298933pt;}
.y7a{bottom:502.569600pt;}
.ycd{bottom:502.667333pt;}
.y164{bottom:505.068000pt;}
.yf1{bottom:506.301467pt;}
.y70{bottom:506.991600pt;}
.y1e5{bottom:509.514267pt;}
.y136{bottom:509.965600pt;}
.yb7{bottom:510.021333pt;}
.y19a{bottom:511.514267pt;}
.y1b6{bottom:511.949867pt;}
.yf{bottom:513.913529pt;}
.y36{bottom:514.506441pt;}
.y115{bottom:515.508933pt;}
.y171{bottom:515.729333pt;}
.ya1{bottom:517.298933pt;}
.ycc{bottom:518.000667pt;}
.y203{bottom:518.237333pt;}
.y6f{bottom:520.324933pt;}
.y163{bottom:523.068000pt;}
.yc3{bottom:526.021333pt;}
.y135{bottom:526.632267pt;}
.y1b5{bottom:527.283200pt;}
.y199{bottom:528.180933pt;}
.ye{bottom:528.403038pt;}
.yf0{bottom:528.527200pt;}
.y4{bottom:528.609439pt;}
.y1e4{bottom:528.627067pt;}
.y35{bottom:528.965314pt;}
.y2b{bottom:529.171314pt;}
.y114{bottom:532.175600pt;}
.ybe{bottom:533.298933pt;}
.ycb{bottom:533.334000pt;}
.y6e{bottom:533.658267pt;}
.y170{bottom:533.729333pt;}
.y79{bottom:534.569733pt;}
.y1b4{bottom:542.616533pt;}
.y90{bottom:543.292000pt;}
.y134{bottom:543.298933pt;}
.y1e3{bottom:543.960400pt;}
.y198{bottom:544.847600pt;}
.yef{bottom:545.193867pt;}
.y6d{bottom:546.991600pt;}
.y8{bottom:547.423602pt;}
.y2f{bottom:547.946184pt;}
.y113{bottom:548.842267pt;}
.ya0{bottom:549.298933pt;}
.y78{bottom:550.569733pt;}
.y1d2{bottom:551.338667pt;}
.y14e{bottom:552.021333pt;}
.y202{bottom:552.682667pt;}
.yd{bottom:559.395088pt;}
.y34{bottom:559.891701pt;}
.y133{bottom:559.965600pt;}
.y6c{bottom:560.324933pt;}
.y197{bottom:561.514267pt;}
.yee{bottom:561.860533pt;}
.y1e2{bottom:563.073333pt;}
.y9f{bottom:565.298933pt;}
.y112{bottom:565.508933pt;}
.y158{bottom:568.688000pt;}
.y178{bottom:569.073333pt;}
.y6b{bottom:573.658267pt;}
.yb6{bottom:574.021333pt;}
.y1d1{bottom:576.170667pt;}
.y132{bottom:576.632267pt;}
.y196{bottom:578.180933pt;}
.y1e1{bottom:578.406667pt;}
.yed{bottom:578.527200pt;}
.y9e{bottom:581.298933pt;}
.yc{bottom:581.528545pt;}
.y33{bottom:581.978271pt;}
.y111{bottom:582.175600pt;}
.y77{bottom:582.569733pt;}
.yca{bottom:582.683067pt;}
.y177{bottom:585.740000pt;}
.y3{bottom:592.470686pt;}
.y2a{bottom:592.897042pt;}
.y131{bottom:593.298933pt;}
.y1e0{bottom:593.740000pt;}
.y195{bottom:594.847600pt;}
.yec{bottom:595.193867pt;}
.y6a{bottom:600.324933pt;}
.y76{bottom:600.569733pt;}
.y176{bottom:602.406667pt;}
.yc9{bottom:605.349733pt;}
.y110{bottom:606.401333pt;}
.y1df{bottom:609.073333pt;}
.y130{bottom:609.965600pt;}
.yb{bottom:610.124096pt;}
.y32{bottom:610.512976pt;}
.yeb{bottom:611.860533pt;}
.y9d{bottom:613.298933pt;}
.y69{bottom:613.658267pt;}
.y2{bottom:616.185104pt;}
.y29{bottom:616.561203pt;}
.y12b{bottom:617.062667pt;}
.y201{bottom:617.796000pt;}
.y175{bottom:619.073333pt;}
.y10c{bottom:620.582667pt;}
.y12f{bottom:626.632267pt;}
.y68{bottom:626.991600pt;}
.ya{bottom:627.253811pt;}
.y31{bottom:627.606437pt;}
.y185{bottom:627.796000pt;}
.yc8{bottom:628.016400pt;}
.y1de{bottom:628.186133pt;}
.y9c{bottom:629.298933pt;}
.y174{bottom:635.740000pt;}
.yea{bottom:636.086267pt;}
.yb5{bottom:638.021333pt;}
.y1{bottom:639.899522pt;}
.y28{bottom:640.225363pt;}
.y67{bottom:640.324933pt;}
.y10f{bottom:643.298933pt;}
.y1dd{bottom:643.519467pt;}
.y9{bottom:644.383525pt;}
.y184{bottom:644.462667pt;}
.y30{bottom:644.699898pt;}
.y75{bottom:645.026400pt;}
.y9b{bottom:645.298933pt;}
.ye9{bottom:650.752933pt;}
.y210{bottom:652.241333pt;}
.y173{bottom:652.406667pt;}
.y8f{bottom:653.749333pt;}
.y1dc{bottom:658.852800pt;}
.y51{bottom:659.025200pt;}
.y10e{bottom:659.965600pt;}
.yc7{bottom:662.021733pt;}
.y20f{bottom:662.632267pt;}
.ye8{bottom:665.419600pt;}
.y66{bottom:666.991600pt;}
.y200{bottom:667.574667pt;}
.ye4{bottom:672.682667pt;}
.y10d{bottom:676.632267pt;}
.y9a{bottom:677.298933pt;}
.y1db{bottom:677.965600pt;}
.y50{bottom:679.025200pt;}
.ye7{bottom:680.086267pt;}
.y65{bottom:680.324933pt;}
.yb4{bottom:686.021333pt;}
.y74{bottom:687.483067pt;}
.yc6{bottom:691.360400pt;}
.y99{bottom:693.298933pt;}
.y64{bottom:693.658267pt;}
.ye6{bottom:694.752933pt;}
.y4f{bottom:699.025200pt;}
.y72{bottom:702.021333pt;}
.y4c{bottom:703.533467pt;}
.y4d{bottom:711.897333pt;}
.y98{bottom:734.925333pt;}
.y4e{bottom:791.397333pt;}
.y4b{bottom:791.397563pt;}
.y27{bottom:791.397769pt;}
.y73{bottom:792.730667pt;}
.h1e{height:3.882812pt;}
.h1c{height:3.882814pt;}
.h10{height:3.882815pt;}
.h30{height:22.250000pt;}
.h1b{height:22.654346pt;}
.hf{height:22.702603pt;}
.hd{height:25.497343pt;}
.h1d{height:33.937500pt;}
.h17{height:34.265873pt;}
.h19{height:34.265888pt;}
.h8{height:34.338477pt;}
.ha{height:34.338503pt;}
.h21{height:34.570312pt;}
.h18{height:35.023145pt;}
.hc{height:35.058896pt;}
.h9{height:35.097365pt;}
.h2d{height:37.082667pt;}
.h2b{height:39.264000pt;}
.h2f{height:39.360000pt;}
.h2a{height:39.984000pt;}
.h15{height:41.880426pt;}
.h6{height:41.969250pt;}
.h14{height:42.474281pt;}
.h5{height:42.568118pt;}
.h26{height:43.626667pt;}
.h25{height:43.733333pt;}
.h23{height:44.426667pt;}
.h2e{height:46.464000pt;}
.h1a{height:47.359605pt;}
.he{height:47.464216pt;}
.h1f{height:50.906250pt;}
.h24{height:51.090667pt;}
.h27{height:52.352000pt;}
.h28{height:52.480000pt;}
.h2c{height:53.312000pt;}
.h16{height:54.480205pt;}
.h7{height:54.595860pt;}
.hb{height:55.738792pt;}
.h12{height:60.916808pt;}
.h3{height:61.046181pt;}
.h29{height:61.952000pt;}
.h22{height:71.082667pt;}
.h20{height:76.822917pt;}
.h13{height:112.851826pt;}
.h4{height:113.091818pt;}
.h11{height:793.700230pt;}
.h2{height:793.700437pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:-536.732375pt;}
.w1{width:559.333333pt;}
.w3{width:559.370609pt;}
.w0{width:559.370667pt;}
.x7{left:-689.661268pt;}
.x4{left:-651.888062pt;}
.x5{left:-648.433898pt;}
.x2{left:-69.688898pt;}
.x3{left:-52.314756pt;}
.x6{left:-51.190521pt;}
.x0{left:0.000000pt;}
.x8{left:1.333247pt;}
.xe{left:14.845009pt;}
.xc{left:52.534876pt;}
.x36{left:66.666667pt;}
.x2b{left:68.031467pt;}
.x2d{left:69.364800pt;}
.x27{left:74.021733pt;}
.x1{left:77.651127pt;}
.x24{left:79.214133pt;}
.x33{left:83.149600pt;}
.x31{left:84.609200pt;}
.x26{left:86.239867pt;}
.x20{left:91.061733pt;}
.x28{left:93.052267pt;}
.x23{left:95.381467pt;}
.x35{left:100.031467pt;}
.x21{left:116.496267pt;}
.xf{left:118.130400pt;}
.x30{left:121.249600pt;}
.x16{left:125.387600pt;}
.x34{left:126.465467pt;}
.x13{left:128.109467pt;}
.x2e{left:136.440533pt;}
.x1f{left:139.525600pt;}
.x1a{left:141.036933pt;}
.x1d{left:149.884800pt;}
.x15{left:153.226667pt;}
.x2f{left:163.730267pt;}
.x12{left:165.396400pt;}
.x1e{left:168.018667pt;}
.x10{left:173.420933pt;}
.x14{left:175.342533pt;}
.x1c{left:176.328800pt;}
.x1b{left:182.647467pt;}
.x11{left:185.936533pt;}
.x18{left:187.930933pt;}
.x29{left:192.309067pt;}
.x17{left:194.432000pt;}
.x25{left:198.858800pt;}
.x22{left:203.115200pt;}
.x19{left:224.424667pt;}
.x32{left:242.660667pt;}
.x2a{left:251.577600pt;}
.x2c{left:263.380800pt;}
.xa{left:633.450075pt;}
.xb{left:650.785918pt;}
.xd{left:651.907690pt;}
.x9{left:780.465409pt;}
}




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