
    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_b433bfcab5c1996ddd214802.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_84cb1fa95a01cb7e3e917fbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_1402bbda958244fea4e162f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1583c28d471023ba8f4cfa7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_7b5ca58450199fc61106273c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_a7ed222c113a3069556c719b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.870000;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_fbad4fbff5fce3fca0633ed6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_304bba465bb6f71e8c0b4ed6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.803000;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_7b1efb6956119507a2e635cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988000;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_1044426c9c9e9a597a5233ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.186000;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_062d90f36bb38d272be75692.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_8b400f63fb343cf5360003df.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_d3201b414033f54d96c8fbe5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_0ac7699d64e50e81c213acfb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.995117;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_cfb13f90e5b964f0484ebf75.woff2')format("woff");}.fff{font-family:fff;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5ca57ce2180243c355c3a2df.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_baa8ca6799dfb377d5e72fde.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cdba8004d5a35e8e518cf0d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.697754;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;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-2.970000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.216000px;}
.v1{vertical-align:21.702000px;}
.ls57{letter-spacing:-1.387260px;}
.ls52{letter-spacing:-0.880740px;}
.ls45{letter-spacing:-0.349297px;}
.ls4d{letter-spacing:-0.264600px;}
.ls53{letter-spacing:-0.253260px;}
.ls47{letter-spacing:-0.239879px;}
.ls68{letter-spacing:-0.180360px;}
.ls4b{letter-spacing:-0.170100px;}
.ls63{letter-spacing:-0.162324px;}
.ls54{letter-spacing:-0.158760px;}
.ls50{letter-spacing:-0.105840px;}
.ls48{letter-spacing:-0.096793px;}
.ls4a{letter-spacing:-0.084168px;}
.ls44{letter-spacing:-0.079960px;}
.ls4e{letter-spacing:-0.060480px;}
.ls4c{letter-spacing:-0.045360px;}
.ls49{letter-spacing:-0.037876px;}
.ls56{letter-spacing:-0.037800px;}
.ls58{letter-spacing:-0.034020px;}
.ls59{letter-spacing:-0.030240px;}
.ls46{letter-spacing:-0.029459px;}
.ls43{letter-spacing:-0.025250px;}
.ls42{letter-spacing:-0.021042px;}
.ls55{letter-spacing:-0.011340px;}
.ls41{letter-spacing:-0.008417px;}
.ls51{letter-spacing:-0.007560px;}
.ls40{letter-spacing:-0.003352px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000069px;}
.lsb{letter-spacing:0.000786px;}
.ls72{letter-spacing:0.002096px;}
.ls35{letter-spacing:0.003780px;}
.ls20{letter-spacing:0.004208px;}
.ls5e{letter-spacing:0.004665px;}
.ls6b{letter-spacing:0.004800px;}
.ls36{letter-spacing:0.007560px;}
.ls28{letter-spacing:0.008417px;}
.ls2e{letter-spacing:0.011340px;}
.ls18{letter-spacing:0.012625px;}
.ls2c{letter-spacing:0.015120px;}
.ls26{letter-spacing:0.016834px;}
.ls2a{letter-spacing:0.018900px;}
.ls19{letter-spacing:0.021042px;}
.ls2f{letter-spacing:0.022680px;}
.ls23{letter-spacing:0.025250px;}
.ls1c{letter-spacing:0.029459px;}
.ls17{letter-spacing:0.033667px;}
.ls32{letter-spacing:0.034020px;}
.ls30{letter-spacing:0.037800px;}
.ls27{letter-spacing:0.037876px;}
.ls14{letter-spacing:0.043571px;}
.ls25{letter-spacing:0.050501px;}
.ls33{letter-spacing:0.052920px;}
.ls1f{letter-spacing:0.054709px;}
.ls21{letter-spacing:0.058918px;}
.ls24{letter-spacing:0.063126px;}
.ls1b{letter-spacing:0.071543px;}
.ls22{letter-spacing:0.084168px;}
.ls31{letter-spacing:0.086940px;}
.ls29{letter-spacing:0.096793px;}
.ls34{letter-spacing:0.102060px;}
.ls16{letter-spacing:0.117306px;}
.ls1e{letter-spacing:0.126252px;}
.ls15{letter-spacing:0.127361px;}
.ls2b{letter-spacing:0.139860px;}
.ls5d{letter-spacing:0.745625px;}
.ls13{letter-spacing:0.751625px;}
.ls2d{letter-spacing:1.134000px;}
.ls4f{letter-spacing:1.636740px;}
.ls1a{letter-spacing:2.078950px;}
.ls1d{letter-spacing:2.836462px;}
.ls3{letter-spacing:2.989200px;}
.ls12{letter-spacing:3.572160px;}
.ls11{letter-spacing:3.578160px;}
.ls37{letter-spacing:10.037069px;}
.ls3b{letter-spacing:10.331412px;}
.ls1{letter-spacing:10.461300px;}
.ls3a{letter-spacing:10.906457px;}
.ls9{letter-spacing:11.954850px;}
.ls38{letter-spacing:12.423419px;}
.ls3f{letter-spacing:12.436800px;}
.ls3d{letter-spacing:12.442090px;}
.ls3c{letter-spacing:12.442444px;}
.ls3e{letter-spacing:12.442800px;}
.ls39{letter-spacing:13.141031px;}
.ls76{letter-spacing:13.316441px;}
.ls6f{letter-spacing:13.317747px;}
.ls73{letter-spacing:13.320988px;}
.ls6d{letter-spacing:13.361965px;}
.ls5f{letter-spacing:13.376325px;}
.ls78{letter-spacing:13.377781px;}
.ls7{letter-spacing:13.426560px;}
.ls61{letter-spacing:13.444800px;}
.ls69{letter-spacing:13.448400px;}
.ls8{letter-spacing:13.450560px;}
.ls62{letter-spacing:13.450800px;}
.ls70{letter-spacing:13.452027px;}
.ls60{letter-spacing:13.452422px;}
.ls6c{letter-spacing:13.454400px;}
.ls71{letter-spacing:13.481606px;}
.ls77{letter-spacing:13.727229px;}
.ls65{letter-spacing:14.188090px;}
.ls66{letter-spacing:14.476325px;}
.lsf{letter-spacing:14.812052px;}
.lse{letter-spacing:14.818005px;}
.ls10{letter-spacing:15.176290px;}
.ls75{letter-spacing:15.450400px;}
.ls5a{letter-spacing:15.691625px;}
.ls74{letter-spacing:16.676400px;}
.ls67{letter-spacing:16.752795px;}
.ls5c{letter-spacing:16.965141px;}
.ls4{letter-spacing:17.935200px;}
.ls6a{letter-spacing:18.026871px;}
.ls64{letter-spacing:18.211619px;}
.ls6e{letter-spacing:18.820988px;}
.ls5b{letter-spacing:19.953376px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.lsc{letter-spacing:472.952100px;}
.lsd{letter-spacing:572.003748px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws91{word-spacing:-42.084000px;}
.wsfc{word-spacing:-14.943900px;}
.ws1c{word-spacing:-13.449600px;}
.ws2e{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws94{word-spacing:-10.617793px;}
.ws90{word-spacing:-10.521000px;}
.ws3{word-spacing:-10.460700px;}
.ws92{word-spacing:-10.441040px;}
.ws97{word-spacing:-10.436832px;}
.ws96{word-spacing:-10.424207px;}
.ws95{word-spacing:-10.281121px;}
.ws93{word-spacing:-10.171703px;}
.ws9c{word-spacing:-9.487800px;}
.ws9d{word-spacing:-9.468900px;}
.ws99{word-spacing:-9.450000px;}
.ws9a{word-spacing:-9.404640px;}
.ws98{word-spacing:-9.279900px;}
.ws9b{word-spacing:-9.185400px;}
.ws8e{word-spacing:-8.506361px;}
.ws8f{word-spacing:-8.379000px;}
.wsa3{word-spacing:-3.443098px;}
.wsaf{word-spacing:-3.120307px;}
.wsae{word-spacing:-2.636122px;}
.ws135{word-spacing:-2.582323px;}
.wsac{word-spacing:-2.528525px;}
.ws22{word-spacing:-2.510575px;}
.wsf0{word-spacing:-2.450800px;}
.ws47{word-spacing:-2.331248px;}
.ws121{word-spacing:-2.098138px;}
.wsd{word-spacing:-2.044339px;}
.ws124{word-spacing:-1.990541px;}
.ws64{word-spacing:-1.972595px;}
.wsc9{word-spacing:-1.969531px;}
.ws4d{word-spacing:-1.853044px;}
.ws122{word-spacing:-1.829146px;}
.ws46{word-spacing:-1.793268px;}
.ws125{word-spacing:-1.775347px;}
.wsc8{word-spacing:-1.674943px;}
.ws107{word-spacing:-1.673717px;}
.wsca{word-spacing:-1.670735px;}
.wse8{word-spacing:-1.375920px;}
.wse9{word-spacing:-1.357020px;}
.wse7{word-spacing:-1.353240px;}
.wse6{word-spacing:-1.349460px;}
.wsb1{word-spacing:-1.237363px;}
.ws6c{word-spacing:-1.195512px;}
.wsa1{word-spacing:-1.183565px;}
.wsdd{word-spacing:-1.145340px;}
.ws43{word-spacing:-1.135736px;}
.wsf5{word-spacing:-1.075961px;}
.wsa0{word-spacing:-1.022170px;}
.ws8b{word-spacing:-1.016185px;}
.wsa7{word-spacing:-0.968371px;}
.ws8d{word-spacing:-0.956410px;}
.wse0{word-spacing:-0.903420px;}
.ws5{word-spacing:-0.878699px;}
.ws45{word-spacing:-0.836858px;}
.wsdf{word-spacing:-0.721980px;}
.wsde{word-spacing:-0.627480px;}
.ws129{word-spacing:-0.581483px;}
.ws66{word-spacing:-0.478205px;}
.wscd{word-spacing:-0.471341px;}
.wsce{word-spacing:-0.450299px;}
.ws13a{word-spacing:-0.430387px;}
.ws4e{word-spacing:-0.418429px;}
.wsf6{word-spacing:-0.358654px;}
.wsaa{word-spacing:-0.322790px;}
.ws7d{word-spacing:-0.311442px;}
.ws2a{word-spacing:-0.298878px;}
.ws128{word-spacing:-0.268992px;}
.wsc2{word-spacing:-0.248296px;}
.ws37{word-spacing:-0.239102px;}
.ws14{word-spacing:-0.215194px;}
.wsb9{word-spacing:-0.210420px;}
.wsb3{word-spacing:-0.191041px;}
.ws27{word-spacing:-0.179327px;}
.ws134{word-spacing:-0.161395px;}
.ws79{word-spacing:-0.132086px;}
.ws3b{word-spacing:-0.119551px;}
.wse{word-spacing:-0.107597px;}
.wsb4{word-spacing:-0.060329px;}
.ws21{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws2f{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws38{word-spacing:-0.005951px;}
.ws56{word-spacing:-0.004652px;}
.ws39{word-spacing:-0.002440px;}
.wsf{word-spacing:-0.001099px;}
.ws1{word-spacing:0.000000px;}
.wsc1{word-spacing:0.004208px;}
.wsc3{word-spacing:0.050501px;}
.ws12{word-spacing:0.053798px;}
.wsc0{word-spacing:0.058918px;}
.ws29{word-spacing:0.059776px;}
.wse3{word-spacing:0.071820px;}
.wsbf{word-spacing:0.084168px;}
.ws108{word-spacing:0.107597px;}
.wse1{word-spacing:0.117180px;}
.ws23{word-spacing:0.119551px;}
.ws88{word-spacing:0.135644px;}
.wse2{word-spacing:0.136080px;}
.ws72{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws15{word-spacing:0.215194px;}
.ws44{word-spacing:0.239102px;}
.ws52{word-spacing:0.268992px;}
.ws25{word-spacing:0.298878px;}
.ws142{word-spacing:0.322790px;}
.ws7b{word-spacing:0.326722px;}
.wsd5{word-spacing:0.340200px;}
.wsd6{word-spacing:0.343980px;}
.wsf8{word-spacing:0.358654px;}
.ws140{word-spacing:0.376589px;}
.ws1e{word-spacing:0.418429px;}
.ws13b{word-spacing:0.430387px;}
.ws120{word-spacing:0.484186px;}
.wsc7{word-spacing:0.517633px;}
.ws86{word-spacing:0.597756px;}
.ws65{word-spacing:0.657532px;}
.ws118{word-spacing:0.717307px;}
.ws10b{word-spacing:0.753178px;}
.ws75{word-spacing:0.777083px;}
.ws11f{word-spacing:0.806976px;}
.wsd7{word-spacing:0.827820px;}
.ws11b{word-spacing:0.836858px;}
.wsd8{word-spacing:0.858060px;}
.wsd3{word-spacing:0.861840px;}
.wsd9{word-spacing:0.876960px;}
.wsec{word-spacing:1.016185px;}
.ws10c{word-spacing:1.022170px;}
.ws83{word-spacing:1.075961px;}
.wsd4{word-spacing:1.111320px;}
.wsd1{word-spacing:1.115100px;}
.wsd2{word-spacing:1.118880px;}
.wsf9{word-spacing:1.135736px;}
.ws4b{word-spacing:1.255288px;}
.wscc{word-spacing:1.283562px;}
.ws4a{word-spacing:1.315063px;}
.wscb{word-spacing:1.317229px;}
.ws9f{word-spacing:1.344960px;}
.wsdb{word-spacing:1.387260px;}
.ws6b{word-spacing:1.434614px;}
.ws111{word-spacing:1.494390px;}
.ws13f{word-spacing:1.506355px;}
.ws110{word-spacing:1.554166px;}
.ws14c{word-spacing:1.560154px;}
.wsdc{word-spacing:1.644300px;}
.wsda{word-spacing:1.697220px;}
.ws146{word-spacing:1.721549px;}
.wsf1{word-spacing:1.733492px;}
.wsbc{word-spacing:1.754903px;}
.wsc6{word-spacing:1.763320px;}
.ws3a{word-spacing:1.793268px;}
.wse4{word-spacing:1.867320px;}
.ws136{word-spacing:1.882944px;}
.wse5{word-spacing:1.890000px;}
.ws26{word-spacing:1.912819px;}
.ws81{word-spacing:1.972595px;}
.ws14d{word-spacing:1.990541px;}
.wseb{word-spacing:2.032370px;}
.ws105{word-spacing:2.044339px;}
.wsc5{word-spacing:2.053699px;}
.ws60{word-spacing:2.056286px;}
.wsbb{word-spacing:2.057908px;}
.wsc4{word-spacing:2.062116px;}
.wsba{word-spacing:2.087366px;}
.ws67{word-spacing:2.092146px;}
.ws1a{word-spacing:2.098138px;}
.ws69{word-spacing:2.151922px;}
.ws32{word-spacing:2.211697px;}
.ws31{word-spacing:2.271473px;}
.ws12a{word-spacing:2.367130px;}
.ws113{word-spacing:2.391024px;}
.ws17{word-spacing:2.474726px;}
.ws114{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws18{word-spacing:2.528525px;}
.wsbd{word-spacing:2.554499px;}
.ws9e{word-spacing:2.689920px;}
.ws127{word-spacing:2.743718px;}
.wsbe{word-spacing:2.781752px;}
.ws20{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws1f{word-spacing:2.929004px;}
.ws35{word-spacing:2.988780px;}
.ws82{word-spacing:3.048556px;}
.ws24{word-spacing:3.168107px;}
.ws1b{word-spacing:3.219667px;}
.ws12d{word-spacing:3.220109px;}
.ws144{word-spacing:3.221117px;}
.ws12f{word-spacing:3.221424px;}
.ws13c{word-spacing:3.221952px;}
.ws151{word-spacing:3.223459px;}
.ws14a{word-spacing:3.225686px;}
.ws126{word-spacing:3.227904px;}
.ws13{word-spacing:3.281702px;}
.ws3d{word-spacing:3.287658px;}
.wsb7{word-spacing:3.324636px;}
.wsb2{word-spacing:3.335501px;}
.wsb8{word-spacing:3.337261px;}
.ws36{word-spacing:3.347434px;}
.ws11a{word-spacing:3.407209px;}
.ws76{word-spacing:3.466985px;}
.ws1d{word-spacing:3.586536px;}
.ws12c{word-spacing:3.604493px;}
.ws74{word-spacing:3.646312px;}
.wsee{word-spacing:3.706087px;}
.ws4c{word-spacing:3.825638px;}
.ws61{word-spacing:3.873469px;}
.ws4f{word-spacing:4.004965px;}
.ws138{word-spacing:4.250074px;}
.ws123{word-spacing:4.572864px;}
.ws42{word-spacing:4.602721px;}
.ws152{word-spacing:4.626662px;}
.ws10d{word-spacing:4.662497px;}
.wsfe{word-spacing:4.680461px;}
.ws117{word-spacing:4.722272px;}
.ws109{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.ws40{word-spacing:4.782048px;}
.ws5f{word-spacing:4.782060px;}
.wsd0{word-spacing:4.801784px;}
.ws6d{word-spacing:4.841824px;}
.wsc{word-spacing:4.853765px;}
.wscf{word-spacing:4.890161px;}
.ws149{word-spacing:4.949453px;}
.wsfb{word-spacing:4.961375px;}
.wsef{word-spacing:5.021150px;}
.ws62{word-spacing:5.021163px;}
.wsfd{word-spacing:5.057050px;}
.ws33{word-spacing:5.140702px;}
.ws115{word-spacing:5.200477px;}
.wsea{word-spacing:5.260253px;}
.wsb6{word-spacing:5.319418px;}
.ws41{word-spacing:5.320028px;}
.ws16{word-spacing:5.433638px;}
.ws112{word-spacing:5.439580px;}
.ws106{word-spacing:5.499355px;}
.ws137{word-spacing:5.541235px;}
.ws116{word-spacing:5.678682px;}
.ws11e{word-spacing:5.810227px;}
.ws10a{word-spacing:6.025421px;}
.ws84{word-spacing:6.037336px;}
.ws85{word-spacing:6.097111px;}
.ws63{word-spacing:6.168857px;}
.ws3f{word-spacing:6.216662px;}
.ws3e{word-spacing:6.276438px;}
.ws2c{word-spacing:6.515540px;}
.ws101{word-spacing:6.617203px;}
.wsf7{word-spacing:6.635092px;}
.ws103{word-spacing:6.671002px;}
.ws50{word-spacing:6.754643px;}
.ws68{word-spacing:7.531726px;}
.wsf4{word-spacing:7.651277px;}
.ws9{word-spacing:7.782761px;}
.ws51{word-spacing:7.890379px;}
.ws6a{word-spacing:7.950155px;}
.ws49{word-spacing:8.069706px;}
.ws30{word-spacing:8.129482px;}
.wsb5{word-spacing:8.134333px;}
.ws28{word-spacing:8.189257px;}
.ws48{word-spacing:8.368584px;}
.wsfa{word-spacing:8.428360px;}
.ws2{word-spacing:10.418714px;}
.wsa5{word-spacing:11.134642px;}
.wsa4{word-spacing:11.293385px;}
.ws2d{word-spacing:11.909159px;}
.wsad{word-spacing:12.162773px;}
.ws7{word-spacing:12.176255px;}
.wsa8{word-spacing:12.425282px;}
.ws147{word-spacing:13.234406px;}
.ws150{word-spacing:13.288205px;}
.wsa2{word-spacing:13.327191px;}
.ws14b{word-spacing:13.387181px;}
.ws131{word-spacing:13.387373px;}
.ws145{word-spacing:13.391482px;}
.ws133{word-spacing:13.392336px;}
.ws13d{word-spacing:13.393181px;}
.ws132{word-spacing:13.395446px;}
.ws12b{word-spacing:13.395802px;}
.wsa6{word-spacing:13.666068px;}
.wsb0{word-spacing:13.671535px;}
.wsa9{word-spacing:13.674263px;}
.wsff{word-spacing:13.718592px;}
.wsab{word-spacing:14.193945px;}
.ws7a{word-spacing:14.729489px;}
.ws3c{word-spacing:14.884124px;}
.ws104{word-spacing:14.927480px;}
.ws7f{word-spacing:15.096572px;}
.ws8c{word-spacing:15.175676px;}
.ws7e{word-spacing:15.696084px;}
.ws8a{word-spacing:15.830636px;}
.ws78{word-spacing:15.991492px;}
.wsf3{word-spacing:16.037571px;}
.ws8{word-spacing:16.109478px;}
.ws10f{word-spacing:16.118533px;}
.ws87{word-spacing:16.292284px;}
.ws89{word-spacing:16.293809px;}
.ws77{word-spacing:16.371729px;}
.ws7c{word-spacing:16.465132px;}
.ws14e{word-spacing:16.516109px;}
.ws148{word-spacing:16.617542px;}
.ws143{word-spacing:16.619558px;}
.ws130{word-spacing:16.620048px;}
.ws12e{word-spacing:16.623706px;}
.ws141{word-spacing:16.731302px;}
.ws13e{word-spacing:16.785101px;}
.ws14f{word-spacing:17.000294px;}
.wsed{word-spacing:17.171114px;}
.wsf2{word-spacing:17.871114px;}
.ws100{word-spacing:17.998095px;}
.ws80{word-spacing:18.470660px;}
.ws119{word-spacing:19.486846px;}
.ws34{word-spacing:19.606397px;}
.ws10e{word-spacing:20.753467px;}
.ws102{word-spacing:21.334220px;}
.ws11d{word-spacing:21.357965px;}
.ws11c{word-spacing:22.057344px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws139{word-spacing:29.804314px;}
.ws54{word-spacing:143.188697px;}
.ws53{word-spacing:155.997398px;}
.ws5b{word-spacing:196.619317px;}
.ws5a{word-spacing:198.083815px;}
.ws5c{word-spacing:204.778663px;}
.ws58{word-spacing:206.243161px;}
.ws55{word-spacing:215.199605px;}
.ws6f{word-spacing:361.522512px;}
.ws70{word-spacing:373.038106px;}
.ws57{word-spacing:385.388149px;}
.ws71{word-spacing:386.487706px;}
.ws73{word-spacing:484.768714px;}
.ws5d{word-spacing:584.498412px;}
.ws6e{word-spacing:706.637222px;}
.ws5e{word-spacing:714.104554px;}
.ws59{word-spacing:716.432422px;}
._14{margin-left:-7.997978px;}
._10{margin-left:-6.694867px;}
._5{margin-left:-5.272193px;}
._1{margin-left:-4.100594px;}
._0{margin-left:-3.096367px;}
._3e{margin-left:-2.092173px;}
._2{margin-left:-1.087913px;}
._39{width:1.409894px;}
._8{width:2.997454px;}
._18{width:4.495122px;}
._4{width:11.632298px;}
._6{width:12.971268px;}
._11{width:14.822586px;}
._9{width:16.432402px;}
._c{width:17.825081px;}
._d{width:18.829314px;}
._15{width:20.156329px;}
._16{width:21.304006px;}
._a{width:22.380134px;}
._1a{width:23.432035px;}
._e{width:24.543850px;}
._3{width:25.940136px;}
._b{width:27.795654px;}
._2e{width:28.883642px;}
._7{width:30.587087px;}
._3f{width:31.904320px;}
._3d{width:34.012316px;}
._17{width:35.088277px;}
._3a{width:37.240199px;}
._f{width:38.495486px;}
._3c{width:39.786628px;}
._19{width:42.464580px;}
._41{width:61.868160px;}
._1e{width:223.356866px;}
._1b{width:231.516212px;}
._22{width:269.652529px;}
._1f{width:275.448529px;}
._25{width:304.406370px;}
._2c{width:322.644529px;}
._2f{width:336.424733px;}
._36{width:343.179994px;}
._35{width:378.364147px;}
._32{width:386.433907px;}
._23{width:397.171858px;}
._20{width:402.988007px;}
._1c{width:409.747184px;}
._38{width:430.578454px;}
._29{width:431.936350px;}
._31{width:438.941146px;}
._37{width:441.631066px;}
._2d{width:450.186685px;}
._30{width:482.997197px;}
._34{width:498.209674px;}
._24{width:517.553593px;}
._33{width:519.961536px;}
._21{width:532.240416px;}
._2b{width:550.232820px;}
._26{width:576.719312px;}
._2a{width:647.517330px;}
._28{width:662.732291px;}
._27{width:677.438291px;}
._1d{width:856.480273px;}
._12{width:1096.239434px;}
._3b{width:1540.063552px;}
._40{width:2613.081000px;}
._13{width:2636.991000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(53,87,176);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.887800px;}
.fsb{font-size:33.516000px;}
.fs5{font-size:35.865600px;}
.fsd{font-size:37.800000px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:42.084000px;}
.fs4{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fse{font-size:54.108000px;}
.fs2{font-size:59.775600px;}
.fs10{font-size:60.120000px;}
.fs8{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y184{bottom:-715.970550px;}
.y16a{bottom:-394.001072px;}
.y169{bottom:-375.776145px;}
.y10f{bottom:-157.009335px;}
.y128{bottom:-116.500965px;}
.y127{bottom:-104.404965px;}
.y126{bottom:-92.308965px;}
.y125{bottom:-80.149650px;}
.y16e{bottom:-68.867453px;}
.y124{bottom:-68.053650px;}
.y123{bottom:-55.957650px;}
.y16d{bottom:-46.836028px;}
.y122{bottom:-43.861650px;}
.y121{bottom:-31.702335px;}
.y16c{bottom:-24.884412px;}
.y120{bottom:-19.606335px;}
.y185{bottom:-10.190307px;}
.y11f{bottom:-3.916160px;}
.y16b{bottom:-1.313615px;}
.y0{bottom:0.000000px;}
.y16{bottom:15.759303px;}
.y44{bottom:31.890000px;}
.y1a7{bottom:91.665000px;}
.y14{bottom:104.646000px;}
.y167{bottom:108.090000px;}
.y1a6{bottom:110.494500px;}
.y103{bottom:111.343500px;}
.y1cc{bottom:112.684500px;}
.y135{bottom:114.775500px;}
.y181{bottom:120.210000px;}
.y43{bottom:120.814500px;}
.yc7{bottom:121.635000px;}
.y13{bottom:122.535000px;}
.y7c{bottom:124.228500px;}
.y166{bottom:126.919500px;}
.y202{bottom:129.115500px;}
.y1a5{bottom:129.324000px;}
.y102{bottom:130.173000px;}
.y134{bottom:134.008500px;}
.y180{bottom:139.039500px;}
.y1cb{bottom:139.225500px;}
.y42{bottom:139.644000px;}
.y12{bottom:140.422500px;}
.yc6{bottom:140.464500px;}
.y7b{bottom:143.058000px;}
.y165{bottom:145.749000px;}
.y201{bottom:146.376000px;}
.y1a4{bottom:148.153500px;}
.y101{bottom:149.002500px;}
.y133{bottom:153.241500px;}
.y1ca{bottom:156.799500px;}
.y17f{bottom:157.869000px;}
.y11{bottom:158.310000px;}
.y41{bottom:158.473500px;}
.yc5{bottom:159.294000px;}
.y7a{bottom:161.887500px;}
.y200{bottom:163.636500px;}
.y164{bottom:164.578500px;}
.y1a3{bottom:166.983000px;}
.y100{bottom:167.832000px;}
.y132{bottom:172.474500px;}
.y1c9{bottom:174.373500px;}
.y10{bottom:176.199000px;}
.y17e{bottom:176.698500px;}
.y40{bottom:177.303000px;}
.yc3{bottom:178.123500px;}
.y79{bottom:180.717000px;}
.y1ff{bottom:180.897000px;}
.y163{bottom:183.408000px;}
.yc4{bottom:183.547500px;}
.y1a2{bottom:185.812500px;}
.yff{bottom:186.661500px;}
.y131{bottom:191.707500px;}
.yf{bottom:194.086500px;}
.y17d{bottom:195.528000px;}
.y3f{bottom:196.132500px;}
.yc2{bottom:196.953000px;}
.y1fe{bottom:198.157500px;}
.y78{bottom:199.546500px;}
.y1c8{bottom:200.914500px;}
.y162{bottom:202.237500px;}
.y1a1{bottom:204.642000px;}
.yfe{bottom:205.491000px;}
.y130{bottom:210.940500px;}
.ye{bottom:211.974000px;}
.y17c{bottom:214.357500px;}
.y3e{bottom:214.962000px;}
.y1fd{bottom:215.418000px;}
.yc0{bottom:215.782500px;}
.y77{bottom:218.376000px;}
.y1c7{bottom:218.488500px;}
.y230{bottom:220.767000px;}
.y161{bottom:221.067000px;}
.yc1{bottom:221.206500px;}
.y1a0{bottom:223.471500px;}
.yfd{bottom:224.320500px;}
.yd{bottom:229.863000px;}
.y12f{bottom:230.173500px;}
.y1fc{bottom:232.678500px;}
.y17b{bottom:233.187000px;}
.y3d{bottom:233.791500px;}
.y1c6{bottom:236.062500px;}
.y76{bottom:237.205500px;}
.y22f{bottom:238.027500px;}
.ybf{bottom:239.095500px;}
.y160{bottom:239.896500px;}
.y19f{bottom:242.301000px;}
.yfc{bottom:247.633500px;}
.y12e{bottom:249.405000px;}
.y1fb{bottom:249.937500px;}
.y17a{bottom:252.016500px;}
.y3c{bottom:252.621000px;}
.y1c5{bottom:253.636500px;}
.y22e{bottom:255.288000px;}
.y75{bottom:256.035000px;}
.y15f{bottom:258.724500px;}
.y19e{bottom:261.130500px;}
.y1fa{bottom:267.198000px;}
.y12d{bottom:268.638000px;}
.y179{bottom:270.844500px;}
.y1c4{bottom:271.210500px;}
.y3b{bottom:271.450500px;}
.ybe{bottom:272.718000px;}
.y74{bottom:274.864500px;}
.y15e{bottom:277.554000px;}
.y19d{bottom:279.960000px;}
.yfb{bottom:281.257500px;}
.y1f9{bottom:284.458500px;}
.y12c{bottom:287.871000px;}
.y1c3{bottom:288.784500px;}
.y178{bottom:289.674000px;}
.y3a{bottom:290.280000px;}
.ybd{bottom:291.547500px;}
.y73{bottom:293.694000px;}
.y22d{bottom:294.366000px;}
.y15d{bottom:296.383500px;}
.yc{bottom:297.166500px;}
.y19c{bottom:298.789500px;}
.yf9{bottom:300.087000px;}
.y1f8{bottom:301.719000px;}
.yfa{bottom:305.511000px;}
.y12b{bottom:307.104000px;}
.y39{bottom:309.109500px;}
.ybc{bottom:310.377000px;}
.y22c{bottom:311.626500px;}
.y71{bottom:312.523500px;}
.y177{bottom:312.987000px;}
.yb{bottom:315.054000px;}
.y15c{bottom:315.213000px;}
.y1c2{bottom:315.325500px;}
.y19b{bottom:317.619000px;}
.y72{bottom:317.947500px;}
.yf7{bottom:318.915000px;}
.y1f7{bottom:318.979500px;}
.yf8{bottom:324.340500px;}
.y12a{bottom:326.337000px;}
.y38{bottom:327.939000px;}
.y70{bottom:328.623000px;}
.y176{bottom:328.678500px;}
.y22b{bottom:328.887000px;}
.yba{bottom:329.206500px;}
.y6f{bottom:331.353000px;}
.y1c1{bottom:332.899500px;}
.ya{bottom:332.943000px;}
.ybb{bottom:334.632000px;}
.y1f6{bottom:336.240000px;}
.y19a{bottom:336.448500px;}
.yf5{bottom:337.744500px;}
.y15b{bottom:338.526000px;}
.yf6{bottom:343.170000px;}
.y129{bottom:345.570000px;}
.y22a{bottom:346.147500px;}
.y37{bottom:346.768500px;}
.yb9{bottom:348.036000px;}
.y6e{bottom:350.182500px;}
.y1c0{bottom:350.473500px;}
.y9{bottom:350.830500px;}
.y1f5{bottom:353.500500px;}
.y199{bottom:355.278000px;}
.yf3{bottom:356.574000px;}
.y175{bottom:359.106000px;}
.yf4{bottom:361.999500px;}
.y229{bottom:363.408000px;}
.y36{bottom:365.598000px;}
.y6d{bottom:366.282000px;}
.yb8{bottom:366.865500px;}
.y10c{bottom:367.999500px;}
.y1bf{bottom:368.047500px;}
.y6c{bottom:369.012000px;}
.y1f4{bottom:370.761000px;}
.y15a{bottom:372.150000px;}
.y198{bottom:374.107500px;}
.yf2{bottom:375.403500px;}
.y174{bottom:378.339000px;}
.y8{bottom:379.179000px;}
.y228{bottom:380.668500px;}
.y35{bottom:384.427500px;}
.y6b{bottom:385.111500px;}
.y1be{bottom:385.621500px;}
.yb7{bottom:385.695000px;}
.y183{bottom:386.079450px;}
.y6a{bottom:387.841500px;}
.y1f3{bottom:388.021500px;}
.y159{bottom:390.979500px;}
.y11e{bottom:391.283111px;}
.y197{bottom:392.937000px;}
.yf0{bottom:394.233000px;}
.y173{bottom:397.572000px;}
.y227{bottom:397.929000px;}
.yf1{bottom:399.658500px;}
.y34{bottom:403.257000px;}
.yb6{bottom:404.524500px;}
.y11d{bottom:404.702647px;}
.y1f2{bottom:405.280500px;}
.y7{bottom:406.033500px;}
.y69{bottom:406.671000px;}
.y158{bottom:409.809000px;}
.y196{bottom:411.766500px;}
.y1bd{bottom:412.162500px;}
.yee{bottom:413.062500px;}
.y226{bottom:415.188000px;}
.y172{bottom:416.805000px;}
.y11c{bottom:418.184256px;}
.yef{bottom:418.488000px;}
.y33{bottom:422.086500px;}
.y1f1{bottom:422.541000px;}
.y6{bottom:423.921000px;}
.y68{bottom:425.500500px;}
.yb5{bottom:427.837500px;}
.y157{bottom:428.638500px;}
.y1bc{bottom:430.207500px;}
.y195{bottom:430.596000px;}
.y11b{bottom:431.602739px;}
.yec{bottom:431.892000px;}
.y225{bottom:432.448500px;}
.y171{bottom:436.038000px;}
.yed{bottom:437.317500px;}
.y1f0{bottom:439.801500px;}
.y32{bottom:440.916000px;}
.y5{bottom:441.810000px;}
.y67{bottom:444.330000px;}
.y11a{bottom:445.084349px;}
.y156{bottom:447.468000px;}
.y1bb{bottom:448.252500px;}
.y194{bottom:449.425500px;}
.y224{bottom:449.709000px;}
.yeb{bottom:450.721500px;}
.y170{bottom:455.269500px;}
.y1ef{bottom:457.062000px;}
.y119{bottom:458.565958px;}
.y4{bottom:459.697500px;}
.y31{bottom:459.745500px;}
.yb4{bottom:464.832000px;}
.y155{bottom:466.297500px;}
.y223{bottom:466.969500px;}
.y66{bottom:467.643000px;}
.y193{bottom:468.255000px;}
.yea{bottom:469.551000px;}
.y118{bottom:471.984442px;}
.y1ee{bottom:474.322500px;}
.y16f{bottom:474.502500px;}
.y3{bottom:477.585000px;}
.yb3{bottom:479.029500px;}
.y30{bottom:483.058500px;}
.y1ba{bottom:484.230000px;}
.y154{bottom:485.127000px;}
.y192{bottom:487.084500px;}
.ye9{bottom:488.380500px;}
.y117{bottom:488.616038px;}
.y1ed{bottom:491.583000px;}
.yb2{bottom:493.225500px;}
.y2{bottom:495.474000px;}
.y168{bottom:496.932000px;}
.y65{bottom:501.267000px;}
.y222{bottom:501.490500px;}
.y1b9{bottom:503.059500px;}
.y153{bottom:503.956500px;}
.y116{bottom:505.185561px;}
.y191{bottom:505.914000px;}
.ye8{bottom:507.210000px;}
.yb1{bottom:507.423000px;}
.y1ec{bottom:508.843500px;}
.y1{bottom:513.361500px;}
.y221{bottom:518.751000px;}
.y64{bottom:520.095000px;}
.yb0{bottom:521.620500px;}
.y1b8{bottom:521.889000px;}
.y152{bottom:522.786000px;}
.y190{bottom:524.743500px;}
.ye7{bottom:526.039500px;}
.y1eb{bottom:526.104000px;}
.y115{bottom:531.267120px;}
.yaf{bottom:535.816500px;}
.y220{bottom:536.011500px;}
.y63{bottom:538.924500px;}
.yae{bottom:540.156000px;}
.y1b7{bottom:540.718500px;}
.y151{bottom:541.615500px;}
.y1ea{bottom:543.363000px;}
.y18f{bottom:543.573000px;}
.y114{bottom:544.748730px;}
.ye6{bottom:549.352500px;}
.y21f{bottom:553.272000px;}
.y62{bottom:557.754000px;}
.y2f{bottom:557.857500px;}
.yad{bottom:557.883000px;}
.y113{bottom:558.167213px;}
.y1b6{bottom:559.548000px;}
.y1e9{bottom:560.623500px;}
.y18e{bottom:562.401000px;}
.y150{bottom:564.928500px;}
.yac{bottom:568.590000px;}
.y21e{bottom:570.531000px;}
.y112{bottom:571.648823px;}
.y61{bottom:576.583500px;}
.y1e8{bottom:577.884000px;}
.y1b5{bottom:578.377500px;}
.yab{bottom:579.295500px;}
.y18d{bottom:581.230500px;}
.y111{bottom:585.130432px;}
.y21d{bottom:587.791500px;}
.yaa{bottom:590.002500px;}
.ye5{bottom:593.767500px;}
.y1e7{bottom:595.144500px;}
.y2e{bottom:595.248000px;}
.y60{bottom:595.413000px;}
.y1b4{bottom:597.207000px;}
.y110{bottom:598.549967px;}
.y14f{bottom:598.551000px;}
.ya9{bottom:600.709500px;}
.y18c{bottom:604.543500px;}
.y21c{bottom:605.052000px;}
.ye4{bottom:607.692000px;}
.ya8{bottom:611.415000px;}
.y1e6{bottom:612.405000px;}
.y5f{bottom:614.242500px;}
.y2c{bottom:614.704500px;}
.y1b3{bottom:616.036500px;}
.y14e{bottom:617.380500px;}
.y2d{bottom:619.587000px;}
.ye3{bottom:621.300000px;}
.ya7{bottom:622.122000px;}
.y21b{bottom:622.312500px;}
.y1e5{bottom:629.665500px;}
.ya6{bottom:632.829000px;}
.y5e{bottom:633.072000px;}
.y18b{bottom:633.871500px;}
.y2b{bottom:634.162500px;}
.y1b2{bottom:634.866000px;}
.ye2{bottom:635.065500px;}
.y14d{bottom:636.210000px;}
.y10e{bottom:636.853760px;}
.y21a{bottom:639.573000px;}
.ya5{bottom:643.534500px;}
.y10d{bottom:643.594665px;}
.y1e4{bottom:646.926000px;}
.ye1{bottom:648.831000px;}
.y5d{bottom:651.901500px;}
.y18a{bottom:653.104500px;}
.y2a{bottom:653.619000px;}
.y1b1{bottom:653.695500px;}
.ya4{bottom:654.241500px;}
.y14c{bottom:655.039500px;}
.y219{bottom:656.833500px;}
.ye0{bottom:662.596500px;}
.y1e3{bottom:664.186500px;}
.ya3{bottom:664.948500px;}
.y5c{bottom:670.731000px;}
.y189{bottom:672.337500px;}
.y1b0{bottom:672.525000px;}
.y29{bottom:673.077000px;}
.y14b{bottom:673.869000px;}
.y218{bottom:674.094000px;}
.ya2{bottom:675.654000px;}
.ydf{bottom:676.362000px;}
.y1e2{bottom:681.447000px;}
.ya1{bottom:686.361000px;}
.y5b{bottom:689.560500px;}
.yde{bottom:690.127500px;}
.y1af{bottom:691.354500px;}
.y188{bottom:691.570500px;}
.y28{bottom:692.533500px;}
.y14a{bottom:692.698500px;}
.ya0{bottom:697.068000px;}
.y1e1{bottom:698.706000px;}
.y9f{bottom:707.773500px;}
.y5a{bottom:708.390000px;}
.y217{bottom:708.613500px;}
.y1ae{bottom:710.184000px;}
.y187{bottom:710.803500px;}
.ydd{bottom:711.094500px;}
.y149{bottom:711.528000px;}
.y27{bottom:711.990000px;}
.y1e0{bottom:715.966500px;}
.y9e{bottom:718.480500px;}
.y216{bottom:725.874000px;}
.y59{bottom:727.219500px;}
.y1ad{bottom:729.013500px;}
.y9d{bottom:729.187500px;}
.y186{bottom:730.036500px;}
.y148{bottom:730.357500px;}
.y26{bottom:731.448000px;}
.y1df{bottom:733.227000px;}
.y9c{bottom:739.894500px;}
.y215{bottom:743.134500px;}
.ydc{bottom:743.914500px;}
.y58{bottom:746.049000px;}
.y1ac{bottom:747.843000px;}
.y147{bottom:749.187000px;}
.y1de{bottom:750.487500px;}
.y9b{bottom:750.600000px;}
.y25{bottom:750.904500px;}
.y182{bottom:755.454000px;}
.y10b{bottom:760.395000px;}
.y9a{bottom:761.307000px;}
.y57{bottom:764.878500px;}
.y1ab{bottom:766.671000px;}
.y1dd{bottom:767.748000px;}
.y146{bottom:768.016500px;}
.y24{bottom:770.361000px;}
.y99{bottom:772.014000px;}
.y214{bottom:777.655500px;}
.y10a{bottom:779.224500px;}
.ydb{bottom:781.018500px;}
.y98{bottom:782.719500px;}
.y1dc{bottom:785.008500px;}
.y1aa{bottom:785.500500px;}
.y56{bottom:788.191500px;}
.y23{bottom:789.819000px;}
.y145{bottom:791.329500px;}
.y97{bottom:793.426500px;}
.y213{bottom:794.916000px;}
.y109{bottom:798.054000px;}
.yda{bottom:799.848000px;}
.y1db{bottom:802.269000px;}
.y96{bottom:804.133500px;}
.y1a9{bottom:804.330000px;}
.y144{bottom:807.021000px;}
.y55{bottom:808.365000px;}
.y22{bottom:809.275500px;}
.y212{bottom:812.176500px;}
.y95{bottom:814.839000px;}
.y108{bottom:816.883500px;}
.yd9{bottom:818.677500px;}
.y1da{bottom:819.529500px;}
.y1a8{bottom:823.159500px;}
.y94{bottom:825.546000px;}
.y21{bottom:828.733500px;}
.y211{bottom:829.437000px;}
.y107{bottom:835.713000px;}
.y93{bottom:836.253000px;}
.y1d9{bottom:836.788500px;}
.yd8{bottom:837.507000px;}
.y143{bottom:840.645000px;}
.y54{bottom:841.989000px;}
.y210{bottom:846.697500px;}
.y92{bottom:846.958500px;}
.y1d8{bottom:854.049000px;}
.y106{bottom:854.542500px;}
.yd7{bottom:856.335000px;}
.y142{bottom:859.474500px;}
.y53{bottom:860.818500px;}
.y20f{bottom:863.956500px;}
.y91{bottom:864.862500px;}
.y20{bottom:867.318000px;}
.y1d7{bottom:871.309500px;}
.yd6{bottom:875.164500px;}
.y90{bottom:875.559000px;}
.y105{bottom:877.855500px;}
.y141{bottom:878.304000px;}
.y52{bottom:879.648000px;}
.y20e{bottom:881.217000px;}
.y1f{bottom:883.458000px;}
.y8f{bottom:886.254000px;}
.y1d6{bottom:888.570000px;}
.yd5{bottom:893.994000px;}
.y8e{bottom:896.950500px;}
.y140{bottom:897.133500px;}
.y104{bottom:898.029000px;}
.y51{bottom:898.477500px;}
.y1e{bottom:903.937500px;}
.y8d{bottom:907.647000px;}
.y1d5{bottom:910.314000px;}
.yd3{bottom:912.823500px;}
.y1d{bottom:915.736500px;}
.y20d{bottom:915.738000px;}
.y13f{bottom:915.963000px;}
.y50{bottom:917.307000px;}
.yd4{bottom:918.249000px;}
.y8c{bottom:918.343500px;}
.y8b{bottom:929.040000px;}
.yd2{bottom:931.653000px;}
.y20c{bottom:932.998500px;}
.y13e{bottom:934.791000px;}
.y4f{bottom:936.136500px;}
.y1c{bottom:936.216000px;}
.y8a{bottom:939.735000px;}
.y1d4{bottom:947.076000px;}
.y20b{bottom:950.259000px;}
.y89{bottom:950.431500px;}
.yd1{bottom:950.482500px;}
.y13d{bottom:953.620500px;}
.y4e{bottom:954.966000px;}
.y88{bottom:961.128000px;}
.y20a{bottom:967.519500px;}
.ycf{bottom:969.312000px;}
.y87{bottom:971.824500px;}
.y13c{bottom:972.450000px;}
.y1d3{bottom:973.617000px;}
.y4d{bottom:973.795500px;}
.yd0{bottom:974.737500px;}
.y1b{bottom:980.892000px;}
.y86{bottom:982.519500px;}
.y209{bottom:984.780000px;}
.ycd{bottom:988.141500px;}
.y1d2{bottom:991.191000px;}
.y13b{bottom:991.279500px;}
.y4c{bottom:992.625000px;}
.y85{bottom:993.216000px;}
.yce{bottom:993.567000px;}
.y1a{bottom:999.721500px;}
.y208{bottom:1002.040500px;}
.y84{bottom:1003.912500px;}
.ycc{bottom:1006.971000px;}
.y1d1{bottom:1008.765000px;}
.y13a{bottom:1010.109000px;}
.y4b{bottom:1011.454500px;}
.y83{bottom:1014.609000px;}
.y207{bottom:1019.299500px;}
.y82{bottom:1025.305500px;}
.ycb{bottom:1025.800500px;}
.y1d0{bottom:1026.339000px;}
.y139{bottom:1028.938500px;}
.y4a{bottom:1030.284000px;}
.y81{bottom:1036.000500px;}
.y19{bottom:1036.485000px;}
.y206{bottom:1036.560000px;}
.y1cf{bottom:1043.913000px;}
.yca{bottom:1044.630000px;}
.y80{bottom:1046.697000px;}
.y138{bottom:1047.768000px;}
.y49{bottom:1049.113500px;}
.y205{bottom:1053.820500px;}
.y7f{bottom:1057.393500px;}
.y1ce{bottom:1061.487000px;}
.yc9{bottom:1063.459500px;}
.y18{bottom:1064.728500px;}
.y137{bottom:1066.597500px;}
.y48{bottom:1067.943000px;}
.y204{bottom:1071.081000px;}
.y7e{bottom:1075.917000px;}
.yc8{bottom:1082.289000px;}
.y47{bottom:1086.772500px;}
.y1cd{bottom:1088.028000px;}
.y203{bottom:1088.341500px;}
.y136{bottom:1089.910500px;}
.y17{bottom:1092.972000px;}
.y46{bottom:1105.602000px;}
.y7d{bottom:1107.082500px;}
.y15{bottom:1136.460000px;}
.y45{bottom:1168.366500px;}
.h1e{height:24.466025px;}
.h1d{height:24.678773px;}
.h9{height:26.217754px;}
.h23{height:27.593262px;}
.h22{height:27.833203px;}
.h21{height:30.535559px;}
.h2{height:30.587087px;}
.h3{height:30.670772px;}
.h1f{height:30.720498px;}
.h20{height:30.987633px;}
.h15{height:31.526842px;}
.h29{height:31.912207px;}
.h12{height:33.209038px;}
.h14{height:33.824879px;}
.ha{height:34.956859px;}
.h11{height:35.052500px;}
.h27{height:37.489869px;}
.hd{height:37.551283px;}
.h25{height:38.250662px;}
.hb{height:38.896243px;}
.hc{height:39.326630px;}
.h24{height:39.434227px;}
.h16{height:39.502243px;}
.h17{height:39.956630px;}
.h18{height:39.962630px;}
.h13{height:41.482876px;}
.h2a{height:41.655410px;}
.h10{height:41.723369px;}
.h1a{height:41.783144px;}
.h19{height:42.500452px;}
.he{height:43.217759px;}
.hf{height:43.695964px;}
.h6{height:43.815515px;}
.h4{height:50.930649px;}
.h1b{height:53.222842px;}
.h8{height:54.547601px;}
.h7{height:77.792486px;}
.h5{height:102.503837px;}
.h28{height:365.092500px;}
.h1c{height:377.723850px;}
.h26{height:579.653550px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:127.319063px;}
.w3{width:555.314445px;}
.w4{width:585.330435px;}
.w5{width:653.538150px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xc9{left:-3.777165px;}
.x0{left:0.000000px;}
.xa2{left:4.810995px;}
.x1{left:53.574000px;}
.x2{left:58.056593px;}
.x6f{left:62.541000px;}
.x6e{left:71.154000px;}
.x53{left:77.644500px;}
.x52{left:80.191500px;}
.x106{left:85.848000px;}
.x73{left:92.976000px;}
.x71{left:96.015000px;}
.x6d{left:115.591500px;}
.xda{left:119.476350px;}
.x6c{left:120.930000px;}
.x72{left:128.359500px;}
.xa3{left:141.710247px;}
.xa4{left:164.011611px;}
.x6b{left:165.373500px;}
.x111{left:238.488000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xaa{left:253.494000px;}
.x54{left:258.645000px;}
.xae{left:260.038500px;}
.x49{left:262.272000px;}
.x4a{left:268.698000px;}
.x4{left:269.914500px;}
.x4f{left:279.232500px;}
.xff{left:280.360500px;}
.x16{left:281.479500px;}
.x3a{left:282.534000px;}
.x2d{left:283.651500px;}
.xe8{left:285.600000px;}
.x100{left:288.457500px;}
.x3b{left:292.435500px;}
.x2e{left:293.551500px;}
.xc1{left:295.599000px;}
.xc2{left:297.201000px;}
.x51{left:300.388500px;}
.xf6{left:302.769000px;}
.xdc{left:306.847500px;}
.x6{left:308.145000px;}
.xa5{left:309.408000px;}
.xca{left:311.878500px;}
.x10c{left:312.973500px;}
.xb1{left:314.569500px;}
.xfe{left:315.912000px;}
.x9a{left:317.067000px;}
.xcd{left:318.181500px;}
.x41{left:319.351500px;}
.x82{left:321.772500px;}
.xce{left:324.906000px;}
.x83{left:325.920000px;}
.xdb{left:328.033650px;}
.x50{left:329.166000px;}
.xaf{left:331.441500px;}
.x42{left:334.294500px;}
.x88{left:335.590500px;}
.x7{left:339.255000px;}
.x84{left:340.863000px;}
.xc3{left:343.032000px;}
.x85{left:345.010500px;}
.x8{left:348.165000px;}
.x101{left:350.337000px;}
.xa6{left:352.350000px;}
.x89{left:354.448500px;}
.x64{left:356.785500px;}
.x8a{left:358.597500px;}
.x102{left:360.237000px;}
.x65{left:363.591000px;}
.xe1{left:367.105500px;}
.xa1{left:371.508000px;}
.x9f{left:372.930000px;}
.xf8{left:374.199000px;}
.xc6{left:376.093500px;}
.xe{left:379.821000px;}
.xa0{left:381.216000px;}
.xc7{left:385.995000px;}
.xf{left:388.732500px;}
.xf1{left:390.166500px;}
.x90{left:391.198500px;}
.x14{left:394.594500px;}
.xb4{left:399.321000px;}
.x19{left:402.520500px;}
.x70{left:404.419500px;}
.x1a{left:406.332000px;}
.x59{left:409.803000px;}
.x1b{left:413.803500px;}
.xba{left:415.980000px;}
.x5a{left:419.034000px;}
.x35{left:422.673000px;}
.xf2{left:424.768500px;}
.x15{left:427.576500px;}
.x105{left:430.171500px;}
.xe9{left:431.677500px;}
.xed{left:433.551000px;}
.x7d{left:435.223500px;}
.x36{left:436.410000px;}
.xfb{left:437.562000px;}
.x2b{left:440.794500px;}
.x98{left:442.006500px;}
.x7e{left:443.509500px;}
.xf9{left:446.692500px;}
.xbe{left:448.815000px;}
.x94{left:449.895000px;}
.x5b{left:451.501500px;}
.x2c{left:455.737500px;}
.xbf{left:457.101000px;}
.x95{left:459.796500px;}
.x5c{left:461.604000px;}
.x66{left:463.930500px;}
.xf4{left:466.900500px;}
.xdd{left:468.078000px;}
.xab{left:469.126500px;}
.x67{left:470.737500px;}
.xef{left:471.958500px;}
.xf3{left:473.646000px;}
.xcf{left:475.005000px;}
.x79{left:479.022000px;}
.xde{left:480.358500px;}
.xf5{left:481.845000px;}
.x45{left:483.768000px;}
.xc4{left:485.220000px;}
.xf0{left:486.903000px;}
.x69{left:488.526000px;}
.x55{left:491.523000px;}
.x46{left:493.291500px;}
.x6a{left:495.331500px;}
.xb5{left:496.683000px;}
.x7a{left:498.288000px;}
.x74{left:500.157000px;}
.x2f{left:501.885000px;}
.xb6{left:504.969000px;}
.x56{left:506.466000px;}
.x3c{left:507.532500px;}
.xb2{left:515.092500px;}
.x30{left:516.829500px;}
.xc5{left:518.988000px;}
.xb3{left:522.348000px;}
.x104{left:525.342000px;}
.xd5{left:527.004000px;}
.x1e{left:532.846500px;}
.x3d{left:534.013500px;}
.xb0{left:536.151000px;}
.xe4{left:538.752000px;}
.xd6{left:540.280500px;}
.x1f{left:542.746500px;}
.xbd{left:545.322000px;}
.x3e{left:548.958000px;}
.xac{left:550.411500px;}
.xc{left:552.238500px;}
.x4b{left:555.229500px;}
.xad{left:558.426000px;}
.x75{left:559.443000px;}
.xd{left:561.148500px;}
.xb7{left:563.169000px;}
.x76{left:566.250000px;}
.x31{left:569.044500px;}
.x4c{left:571.662000px;}
.x10b{left:575.181000px;}
.x29{left:580.836000px;}
.x32{left:584.071500px;}
.x10{left:586.321500px;}
.x24{left:587.410500px;}
.xf7{left:588.708000px;}
.x2a{left:590.737500px;}
.xa8{left:593.391000px;}
.x11{left:595.231500px;}
.x4d{left:597.471000px;}
.x9b{left:600.000000px;}
.xa9{left:601.407000px;}
.x17{left:603.546000px;}
.x37{left:606.102000px;}
.xea{left:607.300500px;}
.x38{left:609.912000px;}
.x18{left:611.017500px;}
.xd0{left:612.847500px;}
.x9c{left:617.649000px;}
.x20{left:619.752000px;}
.x63{left:620.895000px;}
.xe6{left:621.949500px;}
.x39{left:624.856500px;}
.x21{left:627.223500px;}
.x43{left:628.432500px;}
.x22{left:631.027500px;}
.x7f{left:633.604500px;}
.x44{left:634.858500px;}
.x8b{left:637.401000px;}
.x23{left:638.499000px;}
.xd1{left:641.094000px;}
.xcb{left:642.564000px;}
.xdf{left:644.491500px;}
.x86{left:647.526000px;}
.xe5{left:650.293500px;}
.xcc{left:651.474000px;}
.xd9{left:654.109500px;}
.x87{left:655.812000px;}
.x80{left:657.057000px;}
.x81{left:661.206000px;}
.xe0{left:662.331000px;}
.x96{left:663.964500px;}
.xeb{left:666.514500px;}
.xa7{left:669.999000px;}
.x33{left:671.593500px;}
.x97{left:673.866000px;}
.x91{left:675.223500px;}
.xec{left:680.137500px;}
.xd7{left:684.564000px;}
.x34{left:686.064000px;}
.x8c{left:689.947500px;}
.x4e{left:694.600500px;}
.x8d{left:698.235000px;}
.xd8{left:699.508500px;}
.x25{left:703.044000px;}
.xfc{left:705.849000px;}
.x5d{left:708.804000px;}
.x26{left:710.517000px;}
.xc0{left:712.131000px;}
.x27{left:714.327000px;}
.x5e{left:715.611000px;}
.x68{left:718.188000px;}
.xfd{left:719.485500px;}
.xbb{left:720.732000px;}
.x99{left:721.762500px;}
.x107{left:726.291000px;}
.x10d{left:727.606500px;}
.x28{left:729.271500px;}
.xbc{left:730.633500px;}
.x9{left:732.850500px;}
.x8e{left:733.957500px;}
.x108{left:736.845000px;}
.x8f{left:738.106500px;}
.xa{left:741.762000px;}
.x47{left:744.061500px;}
.xc8{left:746.688000px;}
.x9d{left:747.921000px;}
.x48{left:750.487500px;}
.x109{left:751.644000px;}
.xfa{left:752.868000px;}
.x10e{left:754.506000px;}
.xe2{left:756.390000px;}
.x9e{left:757.821000px;}
.x10a{left:760.555500px;}
.x92{left:762.684000px;}
.x7b{left:763.687500px;}
.x103{left:765.759000px;}
.x93{left:766.831500px;}
.x7c{left:767.836500px;}
.x110{left:769.135500px;}
.x5f{left:770.946000px;}
.xd2{left:773.260500px;}
.xee{left:776.842500px;}
.xb8{left:779.382000px;}
.xd3{left:780.718500px;}
.x10f{left:783.210000px;}
.x60{left:786.414000px;}
.xe3{left:788.301000px;}
.x12{left:790.713000px;}
.xd4{left:792.636000px;}
.x77{left:798.442500px;}
.x13{left:799.624500px;}
.x61{left:801.060000px;}
.x78{left:802.591500px;}
.xe7{left:808.557000px;}
.x62{left:810.663000px;}
.x57{left:814.224000px;}
.x58{left:817.933500px;}
.xb9{left:822.438000px;}
.x1c{left:825.519000px;}
.x3f{left:827.967000px;}
.xb{left:830.002500px;}
.x1d{left:832.990500px;}
.x40{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-2.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.858667pt;}
.v1{vertical-align:19.290667pt;}
.ls57{letter-spacing:-1.233120pt;}
.ls52{letter-spacing:-0.782880pt;}
.ls45{letter-spacing:-0.310486pt;}
.ls4d{letter-spacing:-0.235200pt;}
.ls53{letter-spacing:-0.225120pt;}
.ls47{letter-spacing:-0.213226pt;}
.ls68{letter-spacing:-0.160320pt;}
.ls4b{letter-spacing:-0.151200pt;}
.ls63{letter-spacing:-0.144288pt;}
.ls54{letter-spacing:-0.141120pt;}
.ls50{letter-spacing:-0.094080pt;}
.ls48{letter-spacing:-0.086038pt;}
.ls4a{letter-spacing:-0.074816pt;}
.ls44{letter-spacing:-0.071075pt;}
.ls4e{letter-spacing:-0.053760pt;}
.ls4c{letter-spacing:-0.040320pt;}
.ls49{letter-spacing:-0.033667pt;}
.ls56{letter-spacing:-0.033600pt;}
.ls58{letter-spacing:-0.030240pt;}
.ls59{letter-spacing:-0.026880pt;}
.ls46{letter-spacing:-0.026186pt;}
.ls43{letter-spacing:-0.022445pt;}
.ls42{letter-spacing:-0.018704pt;}
.ls55{letter-spacing:-0.010080pt;}
.ls41{letter-spacing:-0.007482pt;}
.ls51{letter-spacing:-0.006720pt;}
.ls40{letter-spacing:-0.002979pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000061pt;}
.lsb{letter-spacing:0.000699pt;}
.ls72{letter-spacing:0.001863pt;}
.ls35{letter-spacing:0.003360pt;}
.ls20{letter-spacing:0.003741pt;}
.ls5e{letter-spacing:0.004147pt;}
.ls6b{letter-spacing:0.004267pt;}
.ls36{letter-spacing:0.006720pt;}
.ls28{letter-spacing:0.007482pt;}
.ls2e{letter-spacing:0.010080pt;}
.ls18{letter-spacing:0.011222pt;}
.ls2c{letter-spacing:0.013440pt;}
.ls26{letter-spacing:0.014963pt;}
.ls2a{letter-spacing:0.016800pt;}
.ls19{letter-spacing:0.018704pt;}
.ls2f{letter-spacing:0.020160pt;}
.ls23{letter-spacing:0.022445pt;}
.ls1c{letter-spacing:0.026186pt;}
.ls17{letter-spacing:0.029926pt;}
.ls32{letter-spacing:0.030240pt;}
.ls30{letter-spacing:0.033600pt;}
.ls27{letter-spacing:0.033667pt;}
.ls14{letter-spacing:0.038730pt;}
.ls25{letter-spacing:0.044890pt;}
.ls33{letter-spacing:0.047040pt;}
.ls1f{letter-spacing:0.048630pt;}
.ls21{letter-spacing:0.052371pt;}
.ls24{letter-spacing:0.056112pt;}
.ls1b{letter-spacing:0.063594pt;}
.ls22{letter-spacing:0.074816pt;}
.ls31{letter-spacing:0.077280pt;}
.ls29{letter-spacing:0.086038pt;}
.ls34{letter-spacing:0.090720pt;}
.ls16{letter-spacing:0.104272pt;}
.ls1e{letter-spacing:0.112224pt;}
.ls15{letter-spacing:0.113210pt;}
.ls2b{letter-spacing:0.124320pt;}
.ls5d{letter-spacing:0.662778pt;}
.ls13{letter-spacing:0.668111pt;}
.ls2d{letter-spacing:1.008000pt;}
.ls4f{letter-spacing:1.454880pt;}
.ls1a{letter-spacing:1.847955pt;}
.ls1d{letter-spacing:2.521299pt;}
.ls3{letter-spacing:2.657067pt;}
.ls12{letter-spacing:3.175253pt;}
.ls11{letter-spacing:3.180587pt;}
.ls37{letter-spacing:8.921839pt;}
.ls3b{letter-spacing:9.183478pt;}
.ls1{letter-spacing:9.298933pt;}
.ls3a{letter-spacing:9.694628pt;}
.ls9{letter-spacing:10.626533pt;}
.ls38{letter-spacing:11.043039pt;}
.ls3f{letter-spacing:11.054933pt;}
.ls3d{letter-spacing:11.059635pt;}
.ls3c{letter-spacing:11.059950pt;}
.ls3e{letter-spacing:11.060267pt;}
.ls39{letter-spacing:11.680916pt;}
.ls76{letter-spacing:11.836837pt;}
.ls6f{letter-spacing:11.837997pt;}
.ls73{letter-spacing:11.840878pt;}
.ls6d{letter-spacing:11.877302pt;}
.ls5f{letter-spacing:11.890067pt;}
.ls78{letter-spacing:11.891361pt;}
.ls7{letter-spacing:11.934720pt;}
.ls61{letter-spacing:11.950933pt;}
.ls69{letter-spacing:11.954133pt;}
.ls8{letter-spacing:11.956053pt;}
.ls62{letter-spacing:11.956267pt;}
.ls70{letter-spacing:11.957357pt;}
.ls60{letter-spacing:11.957709pt;}
.ls6c{letter-spacing:11.959467pt;}
.ls71{letter-spacing:11.983650pt;}
.ls77{letter-spacing:12.201982pt;}
.ls65{letter-spacing:12.611635pt;}
.ls66{letter-spacing:12.867844pt;}
.lsf{letter-spacing:13.166269pt;}
.lse{letter-spacing:13.171560pt;}
.ls10{letter-spacing:13.490035pt;}
.ls75{letter-spacing:13.733689pt;}
.ls5a{letter-spacing:13.948111pt;}
.ls74{letter-spacing:14.823467pt;}
.ls67{letter-spacing:14.891374pt;}
.ls5c{letter-spacing:15.080125pt;}
.ls4{letter-spacing:15.942400pt;}
.ls6a{letter-spacing:16.023885pt;}
.ls64{letter-spacing:16.188106pt;}
.ls6e{letter-spacing:16.729767pt;}
.ls5b{letter-spacing:17.736335pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.lsc{letter-spacing:420.401867pt;}
.lsd{letter-spacing:508.447776pt;}
.ws91{word-spacing:-37.408000pt;}
.wsfc{word-spacing:-13.283467pt;}
.ws1c{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws94{word-spacing:-9.438038pt;}
.ws90{word-spacing:-9.352000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws92{word-spacing:-9.280925pt;}
.ws97{word-spacing:-9.277184pt;}
.ws96{word-spacing:-9.265962pt;}
.ws95{word-spacing:-9.138774pt;}
.ws93{word-spacing:-9.041514pt;}
.ws9c{word-spacing:-8.433600pt;}
.ws9d{word-spacing:-8.416800pt;}
.ws99{word-spacing:-8.400000pt;}
.ws9a{word-spacing:-8.359680pt;}
.ws98{word-spacing:-8.248800pt;}
.ws9b{word-spacing:-8.164800pt;}
.ws8e{word-spacing:-7.561210pt;}
.ws8f{word-spacing:-7.448000pt;}
.wsa3{word-spacing:-3.060531pt;}
.wsaf{word-spacing:-2.773606pt;}
.wsae{word-spacing:-2.343219pt;}
.ws135{word-spacing:-2.295398pt;}
.wsac{word-spacing:-2.247578pt;}
.ws22{word-spacing:-2.231622pt;}
.wsf0{word-spacing:-2.178489pt;}
.ws47{word-spacing:-2.072221pt;}
.ws121{word-spacing:-1.865011pt;}
.wsd{word-spacing:-1.817190pt;}
.ws124{word-spacing:-1.769370pt;}
.ws64{word-spacing:-1.753418pt;}
.wsc9{word-spacing:-1.750694pt;}
.ws4d{word-spacing:-1.647150pt;}
.ws122{word-spacing:-1.625907pt;}
.ws46{word-spacing:-1.594016pt;}
.ws125{word-spacing:-1.578086pt;}
.wsc8{word-spacing:-1.488838pt;}
.ws107{word-spacing:-1.487748pt;}
.wsca{word-spacing:-1.485098pt;}
.wse8{word-spacing:-1.223040pt;}
.wse9{word-spacing:-1.206240pt;}
.wse7{word-spacing:-1.202880pt;}
.wse6{word-spacing:-1.199520pt;}
.wsb1{word-spacing:-1.099878pt;}
.ws6c{word-spacing:-1.062677pt;}
.wsa1{word-spacing:-1.052058pt;}
.wsdd{word-spacing:-1.018080pt;}
.ws43{word-spacing:-1.009543pt;}
.wsf5{word-spacing:-0.956410pt;}
.wsa0{word-spacing:-0.908595pt;}
.ws8b{word-spacing:-0.903276pt;}
.wsa7{word-spacing:-0.860774pt;}
.ws8d{word-spacing:-0.850142pt;}
.wse0{word-spacing:-0.803040pt;}
.ws5{word-spacing:-0.781066pt;}
.ws45{word-spacing:-0.743874pt;}
.wsdf{word-spacing:-0.641760pt;}
.wsde{word-spacing:-0.557760pt;}
.ws129{word-spacing:-0.516873pt;}
.ws66{word-spacing:-0.425071pt;}
.wscd{word-spacing:-0.418970pt;}
.wsce{word-spacing:-0.400266pt;}
.ws13a{word-spacing:-0.382566pt;}
.ws4e{word-spacing:-0.371937pt;}
.wsf6{word-spacing:-0.318803pt;}
.wsaa{word-spacing:-0.286925pt;}
.ws7d{word-spacing:-0.276837pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws128{word-spacing:-0.239104pt;}
.wsc2{word-spacing:-0.220707pt;}
.ws37{word-spacing:-0.212535pt;}
.ws14{word-spacing:-0.191283pt;}
.wsb9{word-spacing:-0.187040pt;}
.wsb3{word-spacing:-0.169814pt;}
.ws27{word-spacing:-0.159402pt;}
.ws134{word-spacing:-0.143462pt;}
.ws79{word-spacing:-0.117410pt;}
.ws3b{word-spacing:-0.106268pt;}
.wse{word-spacing:-0.095642pt;}
.wsb4{word-spacing:-0.053626pt;}
.ws21{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws2f{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws38{word-spacing:-0.005290pt;}
.ws56{word-spacing:-0.004135pt;}
.ws39{word-spacing:-0.002169pt;}
.wsf{word-spacing:-0.000977pt;}
.ws1{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.003741pt;}
.wsc3{word-spacing:0.044890pt;}
.ws12{word-spacing:0.047821pt;}
.wsc0{word-spacing:0.052371pt;}
.ws29{word-spacing:0.053134pt;}
.wse3{word-spacing:0.063840pt;}
.wsbf{word-spacing:0.074816pt;}
.ws108{word-spacing:0.095642pt;}
.wse1{word-spacing:0.104160pt;}
.ws23{word-spacing:0.106268pt;}
.ws88{word-spacing:0.120573pt;}
.wse2{word-spacing:0.120960pt;}
.ws72{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws15{word-spacing:0.191283pt;}
.ws44{word-spacing:0.212535pt;}
.ws52{word-spacing:0.239104pt;}
.ws25{word-spacing:0.265669pt;}
.ws142{word-spacing:0.286925pt;}
.ws7b{word-spacing:0.290420pt;}
.wsd5{word-spacing:0.302400pt;}
.wsd6{word-spacing:0.305760pt;}
.wsf8{word-spacing:0.318803pt;}
.ws140{word-spacing:0.334746pt;}
.ws1e{word-spacing:0.371937pt;}
.ws13b{word-spacing:0.382566pt;}
.ws120{word-spacing:0.430387pt;}
.wsc7{word-spacing:0.460118pt;}
.ws86{word-spacing:0.531339pt;}
.ws65{word-spacing:0.584473pt;}
.ws118{word-spacing:0.637606pt;}
.ws10b{word-spacing:0.669491pt;}
.ws75{word-spacing:0.690740pt;}
.ws11f{word-spacing:0.717312pt;}
.wsd7{word-spacing:0.735840pt;}
.ws11b{word-spacing:0.743874pt;}
.wsd8{word-spacing:0.762720pt;}
.wsd3{word-spacing:0.766080pt;}
.wsd9{word-spacing:0.779520pt;}
.wsec{word-spacing:0.903276pt;}
.ws10c{word-spacing:0.908595pt;}
.ws83{word-spacing:0.956410pt;}
.wsd4{word-spacing:0.987840pt;}
.wsd1{word-spacing:0.991200pt;}
.wsd2{word-spacing:0.994560pt;}
.wsf9{word-spacing:1.009543pt;}
.ws4b{word-spacing:1.115811pt;}
.wscc{word-spacing:1.140944pt;}
.ws4a{word-spacing:1.168945pt;}
.wscb{word-spacing:1.170870pt;}
.ws9f{word-spacing:1.195520pt;}
.wsdb{word-spacing:1.233120pt;}
.ws6b{word-spacing:1.275213pt;}
.ws111{word-spacing:1.328347pt;}
.ws13f{word-spacing:1.338982pt;}
.ws110{word-spacing:1.381481pt;}
.ws14c{word-spacing:1.386803pt;}
.wsdc{word-spacing:1.461600pt;}
.wsda{word-spacing:1.508640pt;}
.ws146{word-spacing:1.530266pt;}
.wsf1{word-spacing:1.540882pt;}
.wsbc{word-spacing:1.559914pt;}
.wsc6{word-spacing:1.567395pt;}
.ws3a{word-spacing:1.594016pt;}
.wse4{word-spacing:1.659840pt;}
.ws136{word-spacing:1.673728pt;}
.wse5{word-spacing:1.680000pt;}
.ws26{word-spacing:1.700284pt;}
.ws81{word-spacing:1.753418pt;}
.ws14d{word-spacing:1.769370pt;}
.wseb{word-spacing:1.806551pt;}
.ws105{word-spacing:1.817190pt;}
.wsc5{word-spacing:1.825510pt;}
.ws60{word-spacing:1.827810pt;}
.wsbb{word-spacing:1.829251pt;}
.wsc4{word-spacing:1.832992pt;}
.wsba{word-spacing:1.855437pt;}
.ws67{word-spacing:1.859685pt;}
.ws1a{word-spacing:1.865011pt;}
.ws69{word-spacing:1.912819pt;}
.ws32{word-spacing:1.965953pt;}
.ws31{word-spacing:2.019087pt;}
.ws12a{word-spacing:2.104115pt;}
.ws113{word-spacing:2.125355pt;}
.ws17{word-spacing:2.199757pt;}
.ws114{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws18{word-spacing:2.247578pt;}
.wsbd{word-spacing:2.270666pt;}
.ws9e{word-spacing:2.391040pt;}
.ws127{word-spacing:2.438861pt;}
.wsbe{word-spacing:2.472669pt;}
.ws20{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws1f{word-spacing:2.603559pt;}
.ws35{word-spacing:2.656693pt;}
.ws82{word-spacing:2.709827pt;}
.ws24{word-spacing:2.816095pt;}
.ws1b{word-spacing:2.861926pt;}
.ws12d{word-spacing:2.862319pt;}
.ws144{word-spacing:2.863215pt;}
.ws12f{word-spacing:2.863488pt;}
.ws13c{word-spacing:2.863957pt;}
.ws151{word-spacing:2.865297pt;}
.ws14a{word-spacing:2.867277pt;}
.ws126{word-spacing:2.869248pt;}
.ws13{word-spacing:2.917069pt;}
.ws3d{word-spacing:2.922363pt;}
.wsb7{word-spacing:2.955232pt;}
.wsb2{word-spacing:2.964890pt;}
.wsb8{word-spacing:2.966454pt;}
.ws36{word-spacing:2.975497pt;}
.ws11a{word-spacing:3.028630pt;}
.ws76{word-spacing:3.081764pt;}
.ws1d{word-spacing:3.188032pt;}
.ws12c{word-spacing:3.203994pt;}
.ws74{word-spacing:3.241166pt;}
.wsee{word-spacing:3.294300pt;}
.ws4c{word-spacing:3.400567pt;}
.ws61{word-spacing:3.443083pt;}
.ws4f{word-spacing:3.559969pt;}
.ws138{word-spacing:3.777843pt;}
.ws123{word-spacing:4.064768pt;}
.ws42{word-spacing:4.091308pt;}
.ws152{word-spacing:4.112589pt;}
.ws10d{word-spacing:4.144442pt;}
.wsfe{word-spacing:4.160410pt;}
.ws117{word-spacing:4.197575pt;}
.ws109{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.ws40{word-spacing:4.250709pt;}
.ws5f{word-spacing:4.250720pt;}
.wsd0{word-spacing:4.268253pt;}
.ws6d{word-spacing:4.303843pt;}
.wsc{word-spacing:4.314458pt;}
.wscf{word-spacing:4.346810pt;}
.ws149{word-spacing:4.399514pt;}
.wsfb{word-spacing:4.410111pt;}
.wsef{word-spacing:4.463245pt;}
.ws62{word-spacing:4.463256pt;}
.wsfd{word-spacing:4.495155pt;}
.ws33{word-spacing:4.569513pt;}
.ws115{word-spacing:4.622646pt;}
.wsea{word-spacing:4.675780pt;}
.wsb6{word-spacing:4.728371pt;}
.ws41{word-spacing:4.728914pt;}
.ws16{word-spacing:4.829901pt;}
.ws112{word-spacing:4.835182pt;}
.ws106{word-spacing:4.888316pt;}
.ws137{word-spacing:4.925542pt;}
.ws116{word-spacing:5.047717pt;}
.ws11e{word-spacing:5.164646pt;}
.ws10a{word-spacing:5.355930pt;}
.ws84{word-spacing:5.366521pt;}
.ws85{word-spacing:5.419654pt;}
.ws63{word-spacing:5.483429pt;}
.ws3f{word-spacing:5.525922pt;}
.ws3e{word-spacing:5.579056pt;}
.ws2c{word-spacing:5.791591pt;}
.ws101{word-spacing:5.881958pt;}
.wsf7{word-spacing:5.897859pt;}
.ws103{word-spacing:5.929779pt;}
.ws50{word-spacing:6.004127pt;}
.ws68{word-spacing:6.694867pt;}
.wsf4{word-spacing:6.801135pt;}
.ws9{word-spacing:6.918010pt;}
.ws51{word-spacing:7.013670pt;}
.ws6a{word-spacing:7.066804pt;}
.ws49{word-spacing:7.173072pt;}
.ws30{word-spacing:7.226206pt;}
.wsb5{word-spacing:7.230518pt;}
.ws28{word-spacing:7.279340pt;}
.ws48{word-spacing:7.438741pt;}
.wsfa{word-spacing:7.491875pt;}
.ws2{word-spacing:9.261079pt;}
.wsa5{word-spacing:9.897459pt;}
.wsa4{word-spacing:10.038564pt;}
.ws2d{word-spacing:10.585919pt;}
.wsad{word-spacing:10.811353pt;}
.ws7{word-spacing:10.823338pt;}
.wsa8{word-spacing:11.044695pt;}
.ws147{word-spacing:11.763917pt;}
.ws150{word-spacing:11.811738pt;}
.wsa2{word-spacing:11.846392pt;}
.ws14b{word-spacing:11.899716pt;}
.ws131{word-spacing:11.899887pt;}
.ws145{word-spacing:11.903539pt;}
.ws133{word-spacing:11.904299pt;}
.ws13d{word-spacing:11.905050pt;}
.ws132{word-spacing:11.907063pt;}
.ws12b{word-spacing:11.907379pt;}
.wsa6{word-spacing:12.147616pt;}
.wsb0{word-spacing:12.152475pt;}
.wsa9{word-spacing:12.154901pt;}
.wsff{word-spacing:12.194304pt;}
.wsab{word-spacing:12.616840pt;}
.ws7a{word-spacing:13.092879pt;}
.ws3c{word-spacing:13.230333pt;}
.ws104{word-spacing:13.268872pt;}
.ws7f{word-spacing:13.419175pt;}
.ws8c{word-spacing:13.489490pt;}
.ws7e{word-spacing:13.952075pt;}
.ws8a{word-spacing:14.071677pt;}
.ws78{word-spacing:14.214660pt;}
.wsf3{word-spacing:14.255619pt;}
.ws8{word-spacing:14.319536pt;}
.ws10f{word-spacing:14.327585pt;}
.ws87{word-spacing:14.482030pt;}
.ws89{word-spacing:14.483385pt;}
.ws77{word-spacing:14.552648pt;}
.ws7c{word-spacing:14.635673pt;}
.ws14e{word-spacing:14.680986pt;}
.ws148{word-spacing:14.771149pt;}
.ws143{word-spacing:14.772941pt;}
.ws130{word-spacing:14.773376pt;}
.ws12e{word-spacing:14.776627pt;}
.ws141{word-spacing:14.872269pt;}
.ws13e{word-spacing:14.920090pt;}
.ws14f{word-spacing:15.111373pt;}
.wsed{word-spacing:15.263213pt;}
.wsf2{word-spacing:15.885435pt;}
.ws100{word-spacing:15.998306pt;}
.ws80{word-spacing:16.418365pt;}
.ws119{word-spacing:17.321641pt;}
.ws34{word-spacing:17.427908pt;}
.ws10e{word-spacing:18.447526pt;}
.ws102{word-spacing:18.963751pt;}
.ws11d{word-spacing:18.984858pt;}
.ws11c{word-spacing:19.606528pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws139{word-spacing:26.492723pt;}
.ws54{word-spacing:127.278842pt;}
.ws53{word-spacing:138.664354pt;}
.ws5b{word-spacing:174.772726pt;}
.ws5a{word-spacing:176.074502pt;}
.ws5c{word-spacing:182.025478pt;}
.ws58{word-spacing:183.327254pt;}
.ws55{word-spacing:191.288538pt;}
.ws6f{word-spacing:321.353344pt;}
.ws70{word-spacing:331.589427pt;}
.ws57{word-spacing:342.567244pt;}
.ws71{word-spacing:343.544627pt;}
.ws73{word-spacing:430.905523pt;}
.ws5d{word-spacing:519.554144pt;}
.ws6e{word-spacing:628.121975pt;}
.ws5e{word-spacing:634.759603pt;}
.ws59{word-spacing:636.828819pt;}
._14{margin-left:-7.109314pt;}
._10{margin-left:-5.950993pt;}
._5{margin-left:-4.686394pt;}
._1{margin-left:-3.644973pt;}
._0{margin-left:-2.752326pt;}
._3e{margin-left:-1.859709pt;}
._2{margin-left:-0.967034pt;}
._39{width:1.253239pt;}
._8{width:2.664403pt;}
._18{width:3.995664pt;}
._4{width:10.339821pt;}
._6{width:11.530016pt;}
._11{width:13.175632pt;}
._9{width:14.606579pt;}
._c{width:15.844516pt;}
._d{width:16.737168pt;}
._15{width:17.916737pt;}
._16{width:18.936894pt;}
._a{width:19.893453pt;}
._1a{width:20.828476pt;}
._e{width:21.816755pt;}
._3{width:23.057899pt;}
._b{width:24.707248pt;}
._2e{width:25.674349pt;}
._7{width:27.188522pt;}
._3f{width:28.359396pt;}
._3d{width:30.233170pt;}
._17{width:31.189580pt;}
._3a{width:33.102399pt;}
._f{width:34.218210pt;}
._3c{width:35.365891pt;}
._19{width:37.746293pt;}
._41{width:54.993920pt;}
._1e{width:198.539437pt;}
._1b{width:205.792189pt;}
._22{width:239.691137pt;}
._1f{width:244.843137pt;}
._25{width:270.583440pt;}
._2c{width:286.795137pt;}
._2f{width:299.044207pt;}
._36{width:305.048883pt;}
._35{width:336.323686pt;}
._32{width:343.496806pt;}
._23{width:353.041651pt;}
._20{width:358.211562pt;}
._1c{width:364.219719pt;}
._38{width:382.736403pt;}
._29{width:383.943422pt;}
._31{width:390.169907pt;}
._37{width:392.560947pt;}
._2d{width:400.165942pt;}
._30{width:429.330842pt;}
._34{width:442.853043pt;}
._24{width:460.047638pt;}
._33{width:462.188032pt;}
._21{width:473.102592pt;}
._2b{width:489.095840pt;}
._26{width:512.639389pt;}
._2a{width:575.570960pt;}
._28{width:589.095370pt;}
._27{width:602.167370pt;}
._1d{width:761.315798pt;}
._12{width:974.435053pt;}
._3b{width:1368.945379pt;}
._40{width:2322.738667pt;}
._13{width:2343.992000pt;}
.fs9{font-size:26.566933pt;}
.fsb{font-size:29.792000pt;}
.fs5{font-size:31.880533pt;}
.fsd{font-size:33.600000pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:37.408000pt;}
.fs4{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fse{font-size:48.096000pt;}
.fs2{font-size:53.133867pt;}
.fs10{font-size:53.440000pt;}
.fs8{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y184{bottom:-636.418267pt;}
.y16a{bottom:-350.223175pt;}
.y169{bottom:-334.023240pt;}
.y10f{bottom:-139.563853pt;}
.y128{bottom:-103.556413pt;}
.y127{bottom:-92.804413pt;}
.y126{bottom:-82.052413pt;}
.y125{bottom:-71.244133pt;}
.y16e{bottom:-61.215514pt;}
.y124{bottom:-60.492133pt;}
.y123{bottom:-49.740133pt;}
.y16d{bottom:-41.632025pt;}
.y122{bottom:-38.988133pt;}
.y121{bottom:-28.179853pt;}
.y16c{bottom:-22.119478pt;}
.y120{bottom:-17.427853pt;}
.y185{bottom:-9.058051pt;}
.y11f{bottom:-3.481031pt;}
.y16b{bottom:-1.167658pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:14.008270pt;}
.y44{bottom:28.346667pt;}
.y1a7{bottom:81.480000pt;}
.y14{bottom:93.018667pt;}
.y167{bottom:96.080000pt;}
.y1a6{bottom:98.217333pt;}
.y103{bottom:98.972000pt;}
.y1cc{bottom:100.164000pt;}
.y135{bottom:102.022667pt;}
.y181{bottom:106.853333pt;}
.y43{bottom:107.390667pt;}
.yc7{bottom:108.120000pt;}
.y13{bottom:108.920000pt;}
.y7c{bottom:110.425333pt;}
.y166{bottom:112.817333pt;}
.y202{bottom:114.769333pt;}
.y1a5{bottom:114.954667pt;}
.y102{bottom:115.709333pt;}
.y134{bottom:119.118667pt;}
.y180{bottom:123.590667pt;}
.y1cb{bottom:123.756000pt;}
.y42{bottom:124.128000pt;}
.y12{bottom:124.820000pt;}
.yc6{bottom:124.857333pt;}
.y7b{bottom:127.162667pt;}
.y165{bottom:129.554667pt;}
.y201{bottom:130.112000pt;}
.y1a4{bottom:131.692000pt;}
.y101{bottom:132.446667pt;}
.y133{bottom:136.214667pt;}
.y1ca{bottom:139.377333pt;}
.y17f{bottom:140.328000pt;}
.y11{bottom:140.720000pt;}
.y41{bottom:140.865333pt;}
.yc5{bottom:141.594667pt;}
.y7a{bottom:143.900000pt;}
.y200{bottom:145.454667pt;}
.y164{bottom:146.292000pt;}
.y1a3{bottom:148.429333pt;}
.y100{bottom:149.184000pt;}
.y132{bottom:153.310667pt;}
.y1c9{bottom:154.998667pt;}
.y10{bottom:156.621333pt;}
.y17e{bottom:157.065333pt;}
.y40{bottom:157.602667pt;}
.yc3{bottom:158.332000pt;}
.y79{bottom:160.637333pt;}
.y1ff{bottom:160.797333pt;}
.y163{bottom:163.029333pt;}
.yc4{bottom:163.153333pt;}
.y1a2{bottom:165.166667pt;}
.yff{bottom:165.921333pt;}
.y131{bottom:170.406667pt;}
.yf{bottom:172.521333pt;}
.y17d{bottom:173.802667pt;}
.y3f{bottom:174.340000pt;}
.yc2{bottom:175.069333pt;}
.y1fe{bottom:176.140000pt;}
.y78{bottom:177.374667pt;}
.y1c8{bottom:178.590667pt;}
.y162{bottom:179.766667pt;}
.y1a1{bottom:181.904000pt;}
.yfe{bottom:182.658667pt;}
.y130{bottom:187.502667pt;}
.ye{bottom:188.421333pt;}
.y17c{bottom:190.540000pt;}
.y3e{bottom:191.077333pt;}
.y1fd{bottom:191.482667pt;}
.yc0{bottom:191.806667pt;}
.y77{bottom:194.112000pt;}
.y1c7{bottom:194.212000pt;}
.y230{bottom:196.237333pt;}
.y161{bottom:196.504000pt;}
.yc1{bottom:196.628000pt;}
.y1a0{bottom:198.641333pt;}
.yfd{bottom:199.396000pt;}
.yd{bottom:204.322667pt;}
.y12f{bottom:204.598667pt;}
.y1fc{bottom:206.825333pt;}
.y17b{bottom:207.277333pt;}
.y3d{bottom:207.814667pt;}
.y1c6{bottom:209.833333pt;}
.y76{bottom:210.849333pt;}
.y22f{bottom:211.580000pt;}
.ybf{bottom:212.529333pt;}
.y160{bottom:213.241333pt;}
.y19f{bottom:215.378667pt;}
.yfc{bottom:220.118667pt;}
.y12e{bottom:221.693333pt;}
.y1fb{bottom:222.166667pt;}
.y17a{bottom:224.014667pt;}
.y3c{bottom:224.552000pt;}
.y1c5{bottom:225.454667pt;}
.y22e{bottom:226.922667pt;}
.y75{bottom:227.586667pt;}
.y15f{bottom:229.977333pt;}
.y19e{bottom:232.116000pt;}
.y1fa{bottom:237.509333pt;}
.y12d{bottom:238.789333pt;}
.y179{bottom:240.750667pt;}
.y1c4{bottom:241.076000pt;}
.y3b{bottom:241.289333pt;}
.ybe{bottom:242.416000pt;}
.y74{bottom:244.324000pt;}
.y15e{bottom:246.714667pt;}
.y19d{bottom:248.853333pt;}
.yfb{bottom:250.006667pt;}
.y1f9{bottom:252.852000pt;}
.y12c{bottom:255.885333pt;}
.y1c3{bottom:256.697333pt;}
.y178{bottom:257.488000pt;}
.y3a{bottom:258.026667pt;}
.ybd{bottom:259.153333pt;}
.y73{bottom:261.061333pt;}
.y22d{bottom:261.658667pt;}
.y15d{bottom:263.452000pt;}
.yc{bottom:264.148000pt;}
.y19c{bottom:265.590667pt;}
.yf9{bottom:266.744000pt;}
.y1f8{bottom:268.194667pt;}
.yfa{bottom:271.565333pt;}
.y12b{bottom:272.981333pt;}
.y39{bottom:274.764000pt;}
.ybc{bottom:275.890667pt;}
.y22c{bottom:277.001333pt;}
.y71{bottom:277.798667pt;}
.y177{bottom:278.210667pt;}
.yb{bottom:280.048000pt;}
.y15c{bottom:280.189333pt;}
.y1c2{bottom:280.289333pt;}
.y19b{bottom:282.328000pt;}
.y72{bottom:282.620000pt;}
.yf7{bottom:283.480000pt;}
.y1f7{bottom:283.537333pt;}
.yf8{bottom:288.302667pt;}
.y12a{bottom:290.077333pt;}
.y38{bottom:291.501333pt;}
.y70{bottom:292.109333pt;}
.y176{bottom:292.158667pt;}
.y22b{bottom:292.344000pt;}
.yba{bottom:292.628000pt;}
.y6f{bottom:294.536000pt;}
.y1c1{bottom:295.910667pt;}
.ya{bottom:295.949333pt;}
.ybb{bottom:297.450667pt;}
.y1f6{bottom:298.880000pt;}
.y19a{bottom:299.065333pt;}
.yf5{bottom:300.217333pt;}
.y15b{bottom:300.912000pt;}
.yf6{bottom:305.040000pt;}
.y129{bottom:307.173333pt;}
.y22a{bottom:307.686667pt;}
.y37{bottom:308.238667pt;}
.yb9{bottom:309.365333pt;}
.y6e{bottom:311.273333pt;}
.y1c0{bottom:311.532000pt;}
.y9{bottom:311.849333pt;}
.y1f5{bottom:314.222667pt;}
.y199{bottom:315.802667pt;}
.yf3{bottom:316.954667pt;}
.y175{bottom:319.205333pt;}
.yf4{bottom:321.777333pt;}
.y229{bottom:323.029333pt;}
.y36{bottom:324.976000pt;}
.y6d{bottom:325.584000pt;}
.yb8{bottom:326.102667pt;}
.y10c{bottom:327.110667pt;}
.y1bf{bottom:327.153333pt;}
.y6c{bottom:328.010667pt;}
.y1f4{bottom:329.565333pt;}
.y15a{bottom:330.800000pt;}
.y198{bottom:332.540000pt;}
.yf2{bottom:333.692000pt;}
.y174{bottom:336.301333pt;}
.y8{bottom:337.048000pt;}
.y228{bottom:338.372000pt;}
.y35{bottom:341.713333pt;}
.y6b{bottom:342.321333pt;}
.y1be{bottom:342.774667pt;}
.yb7{bottom:342.840000pt;}
.y183{bottom:343.181733pt;}
.y6a{bottom:344.748000pt;}
.y1f3{bottom:344.908000pt;}
.y159{bottom:347.537333pt;}
.y11e{bottom:347.807210pt;}
.y197{bottom:349.277333pt;}
.yf0{bottom:350.429333pt;}
.y173{bottom:353.397333pt;}
.y227{bottom:353.714667pt;}
.yf1{bottom:355.252000pt;}
.y34{bottom:358.450667pt;}
.yb6{bottom:359.577333pt;}
.y11d{bottom:359.735686pt;}
.y1f2{bottom:360.249333pt;}
.y7{bottom:360.918667pt;}
.y69{bottom:361.485333pt;}
.y158{bottom:364.274667pt;}
.y196{bottom:366.014667pt;}
.y1bd{bottom:366.366667pt;}
.yee{bottom:367.166667pt;}
.y226{bottom:369.056000pt;}
.y172{bottom:370.493333pt;}
.y11c{bottom:371.719339pt;}
.yef{bottom:371.989333pt;}
.y33{bottom:375.188000pt;}
.y1f1{bottom:375.592000pt;}
.y6{bottom:376.818667pt;}
.y68{bottom:378.222667pt;}
.yb5{bottom:380.300000pt;}
.y157{bottom:381.012000pt;}
.y1bc{bottom:382.406667pt;}
.y195{bottom:382.752000pt;}
.y11b{bottom:383.646879pt;}
.yec{bottom:383.904000pt;}
.y225{bottom:384.398667pt;}
.y171{bottom:387.589333pt;}
.yed{bottom:388.726667pt;}
.y1f0{bottom:390.934667pt;}
.y32{bottom:391.925333pt;}
.y5{bottom:392.720000pt;}
.y67{bottom:394.960000pt;}
.y11a{bottom:395.630532pt;}
.y156{bottom:397.749333pt;}
.y1bb{bottom:398.446667pt;}
.y194{bottom:399.489333pt;}
.y224{bottom:399.741333pt;}
.yeb{bottom:400.641333pt;}
.y170{bottom:404.684000pt;}
.y1ef{bottom:406.277333pt;}
.y119{bottom:407.614185pt;}
.y4{bottom:408.620000pt;}
.y31{bottom:408.662667pt;}
.yb4{bottom:413.184000pt;}
.y155{bottom:414.486667pt;}
.y223{bottom:415.084000pt;}
.y66{bottom:415.682667pt;}
.y193{bottom:416.226667pt;}
.yea{bottom:417.378667pt;}
.y118{bottom:419.541726pt;}
.y1ee{bottom:421.620000pt;}
.y16f{bottom:421.780000pt;}
.y3{bottom:424.520000pt;}
.yb3{bottom:425.804000pt;}
.y30{bottom:429.385333pt;}
.y1ba{bottom:430.426667pt;}
.y154{bottom:431.224000pt;}
.y192{bottom:432.964000pt;}
.ye9{bottom:434.116000pt;}
.y117{bottom:434.325367pt;}
.y1ed{bottom:436.962667pt;}
.yb2{bottom:438.422667pt;}
.y2{bottom:440.421333pt;}
.y168{bottom:441.717333pt;}
.y65{bottom:445.570667pt;}
.y222{bottom:445.769333pt;}
.y1b9{bottom:447.164000pt;}
.y153{bottom:447.961333pt;}
.y116{bottom:449.053832pt;}
.y191{bottom:449.701333pt;}
.ye8{bottom:450.853333pt;}
.yb1{bottom:451.042667pt;}
.y1ec{bottom:452.305333pt;}
.y1{bottom:456.321333pt;}
.y221{bottom:461.112000pt;}
.y64{bottom:462.306667pt;}
.yb0{bottom:463.662667pt;}
.y1b8{bottom:463.901333pt;}
.y152{bottom:464.698667pt;}
.y190{bottom:466.438667pt;}
.ye7{bottom:467.590667pt;}
.y1eb{bottom:467.648000pt;}
.y115{bottom:472.237440pt;}
.yaf{bottom:476.281333pt;}
.y220{bottom:476.454667pt;}
.y63{bottom:479.044000pt;}
.yae{bottom:480.138667pt;}
.y1b7{bottom:480.638667pt;}
.y151{bottom:481.436000pt;}
.y1ea{bottom:482.989333pt;}
.y18f{bottom:483.176000pt;}
.y114{bottom:484.221093pt;}
.ye6{bottom:488.313333pt;}
.y21f{bottom:491.797333pt;}
.y62{bottom:495.781333pt;}
.y2f{bottom:495.873333pt;}
.yad{bottom:495.896000pt;}
.y113{bottom:496.148634pt;}
.y1b6{bottom:497.376000pt;}
.y1e9{bottom:498.332000pt;}
.y18e{bottom:499.912000pt;}
.y150{bottom:502.158667pt;}
.yac{bottom:505.413333pt;}
.y21e{bottom:507.138667pt;}
.y112{bottom:508.132287pt;}
.y61{bottom:512.518667pt;}
.y1e8{bottom:513.674667pt;}
.y1b5{bottom:514.113333pt;}
.yab{bottom:514.929333pt;}
.y18d{bottom:516.649333pt;}
.y111{bottom:520.115939pt;}
.y21d{bottom:522.481333pt;}
.yaa{bottom:524.446667pt;}
.ye5{bottom:527.793333pt;}
.y1e7{bottom:529.017333pt;}
.y2e{bottom:529.109333pt;}
.y60{bottom:529.256000pt;}
.y1b4{bottom:530.850667pt;}
.y110{bottom:532.044415pt;}
.y14f{bottom:532.045333pt;}
.ya9{bottom:533.964000pt;}
.y18c{bottom:537.372000pt;}
.y21c{bottom:537.824000pt;}
.ye4{bottom:540.170667pt;}
.ya8{bottom:543.480000pt;}
.y1e6{bottom:544.360000pt;}
.y5f{bottom:545.993333pt;}
.y2c{bottom:546.404000pt;}
.y1b3{bottom:547.588000pt;}
.y14e{bottom:548.782667pt;}
.y2d{bottom:550.744000pt;}
.ye3{bottom:552.266667pt;}
.ya7{bottom:552.997333pt;}
.y21b{bottom:553.166667pt;}
.y1e5{bottom:559.702667pt;}
.ya6{bottom:562.514667pt;}
.y5e{bottom:562.730667pt;}
.y18b{bottom:563.441333pt;}
.y2b{bottom:563.700000pt;}
.y1b2{bottom:564.325333pt;}
.ye2{bottom:564.502667pt;}
.y14d{bottom:565.520000pt;}
.y10e{bottom:566.092231pt;}
.y21a{bottom:568.509333pt;}
.ya5{bottom:572.030667pt;}
.y10d{bottom:572.084147pt;}
.y1e4{bottom:575.045333pt;}
.ye1{bottom:576.738667pt;}
.y5d{bottom:579.468000pt;}
.y18a{bottom:580.537333pt;}
.y2a{bottom:580.994667pt;}
.y1b1{bottom:581.062667pt;}
.ya4{bottom:581.548000pt;}
.y14c{bottom:582.257333pt;}
.y219{bottom:583.852000pt;}
.ye0{bottom:588.974667pt;}
.y1e3{bottom:590.388000pt;}
.ya3{bottom:591.065333pt;}
.y5c{bottom:596.205333pt;}
.y189{bottom:597.633333pt;}
.y1b0{bottom:597.800000pt;}
.y29{bottom:598.290667pt;}
.y14b{bottom:598.994667pt;}
.y218{bottom:599.194667pt;}
.ya2{bottom:600.581333pt;}
.ydf{bottom:601.210667pt;}
.y1e2{bottom:605.730667pt;}
.ya1{bottom:610.098667pt;}
.y5b{bottom:612.942667pt;}
.yde{bottom:613.446667pt;}
.y1af{bottom:614.537333pt;}
.y188{bottom:614.729333pt;}
.y28{bottom:615.585333pt;}
.y14a{bottom:615.732000pt;}
.ya0{bottom:619.616000pt;}
.y1e1{bottom:621.072000pt;}
.y9f{bottom:629.132000pt;}
.y5a{bottom:629.680000pt;}
.y217{bottom:629.878667pt;}
.y1ae{bottom:631.274667pt;}
.y187{bottom:631.825333pt;}
.ydd{bottom:632.084000pt;}
.y149{bottom:632.469333pt;}
.y27{bottom:632.880000pt;}
.y1e0{bottom:636.414667pt;}
.y9e{bottom:638.649333pt;}
.y216{bottom:645.221333pt;}
.y59{bottom:646.417333pt;}
.y1ad{bottom:648.012000pt;}
.y9d{bottom:648.166667pt;}
.y186{bottom:648.921333pt;}
.y148{bottom:649.206667pt;}
.y26{bottom:650.176000pt;}
.y1df{bottom:651.757333pt;}
.y9c{bottom:657.684000pt;}
.y215{bottom:660.564000pt;}
.ydc{bottom:661.257333pt;}
.y58{bottom:663.154667pt;}
.y1ac{bottom:664.749333pt;}
.y147{bottom:665.944000pt;}
.y1de{bottom:667.100000pt;}
.y9b{bottom:667.200000pt;}
.y25{bottom:667.470667pt;}
.y182{bottom:671.514667pt;}
.y10b{bottom:675.906667pt;}
.y9a{bottom:676.717333pt;}
.y57{bottom:679.892000pt;}
.y1ab{bottom:681.485333pt;}
.y1dd{bottom:682.442667pt;}
.y146{bottom:682.681333pt;}
.y24{bottom:684.765333pt;}
.y99{bottom:686.234667pt;}
.y214{bottom:691.249333pt;}
.y10a{bottom:692.644000pt;}
.ydb{bottom:694.238667pt;}
.y98{bottom:695.750667pt;}
.y1dc{bottom:697.785333pt;}
.y1aa{bottom:698.222667pt;}
.y56{bottom:700.614667pt;}
.y23{bottom:702.061333pt;}
.y145{bottom:703.404000pt;}
.y97{bottom:705.268000pt;}
.y213{bottom:706.592000pt;}
.y109{bottom:709.381333pt;}
.yda{bottom:710.976000pt;}
.y1db{bottom:713.128000pt;}
.y96{bottom:714.785333pt;}
.y1a9{bottom:714.960000pt;}
.y144{bottom:717.352000pt;}
.y55{bottom:718.546667pt;}
.y22{bottom:719.356000pt;}
.y212{bottom:721.934667pt;}
.y95{bottom:724.301333pt;}
.y108{bottom:726.118667pt;}
.yd9{bottom:727.713333pt;}
.y1da{bottom:728.470667pt;}
.y1a8{bottom:731.697333pt;}
.y94{bottom:733.818667pt;}
.y21{bottom:736.652000pt;}
.y211{bottom:737.277333pt;}
.y107{bottom:742.856000pt;}
.y93{bottom:743.336000pt;}
.y1d9{bottom:743.812000pt;}
.yd8{bottom:744.450667pt;}
.y143{bottom:747.240000pt;}
.y54{bottom:748.434667pt;}
.y210{bottom:752.620000pt;}
.y92{bottom:752.852000pt;}
.y1d8{bottom:759.154667pt;}
.y106{bottom:759.593333pt;}
.yd7{bottom:761.186667pt;}
.y142{bottom:763.977333pt;}
.y53{bottom:765.172000pt;}
.y20f{bottom:767.961333pt;}
.y91{bottom:768.766667pt;}
.y20{bottom:770.949333pt;}
.y1d7{bottom:774.497333pt;}
.yd6{bottom:777.924000pt;}
.y90{bottom:778.274667pt;}
.y105{bottom:780.316000pt;}
.y141{bottom:780.714667pt;}
.y52{bottom:781.909333pt;}
.y20e{bottom:783.304000pt;}
.y1f{bottom:785.296000pt;}
.y8f{bottom:787.781333pt;}
.y1d6{bottom:789.840000pt;}
.yd5{bottom:794.661333pt;}
.y8e{bottom:797.289333pt;}
.y140{bottom:797.452000pt;}
.y104{bottom:798.248000pt;}
.y51{bottom:798.646667pt;}
.y1e{bottom:803.500000pt;}
.y8d{bottom:806.797333pt;}
.y1d5{bottom:809.168000pt;}
.yd3{bottom:811.398667pt;}
.y1d{bottom:813.988000pt;}
.y20d{bottom:813.989333pt;}
.y13f{bottom:814.189333pt;}
.y50{bottom:815.384000pt;}
.yd4{bottom:816.221333pt;}
.y8c{bottom:816.305333pt;}
.y8b{bottom:825.813333pt;}
.yd2{bottom:828.136000pt;}
.y20c{bottom:829.332000pt;}
.y13e{bottom:830.925333pt;}
.y4f{bottom:832.121333pt;}
.y1c{bottom:832.192000pt;}
.y8a{bottom:835.320000pt;}
.y1d4{bottom:841.845333pt;}
.y20b{bottom:844.674667pt;}
.y89{bottom:844.828000pt;}
.yd1{bottom:844.873333pt;}
.y13d{bottom:847.662667pt;}
.y4e{bottom:848.858667pt;}
.y88{bottom:854.336000pt;}
.y20a{bottom:860.017333pt;}
.ycf{bottom:861.610667pt;}
.y87{bottom:863.844000pt;}
.y13c{bottom:864.400000pt;}
.y1d3{bottom:865.437333pt;}
.y4d{bottom:865.596000pt;}
.yd0{bottom:866.433333pt;}
.y1b{bottom:871.904000pt;}
.y86{bottom:873.350667pt;}
.y209{bottom:875.360000pt;}
.ycd{bottom:878.348000pt;}
.y1d2{bottom:881.058667pt;}
.y13b{bottom:881.137333pt;}
.y4c{bottom:882.333333pt;}
.y85{bottom:882.858667pt;}
.yce{bottom:883.170667pt;}
.y1a{bottom:888.641333pt;}
.y208{bottom:890.702667pt;}
.y84{bottom:892.366667pt;}
.ycc{bottom:895.085333pt;}
.y1d1{bottom:896.680000pt;}
.y13a{bottom:897.874667pt;}
.y4b{bottom:899.070667pt;}
.y83{bottom:901.874667pt;}
.y207{bottom:906.044000pt;}
.y82{bottom:911.382667pt;}
.ycb{bottom:911.822667pt;}
.y1d0{bottom:912.301333pt;}
.y139{bottom:914.612000pt;}
.y4a{bottom:915.808000pt;}
.y81{bottom:920.889333pt;}
.y19{bottom:921.320000pt;}
.y206{bottom:921.386667pt;}
.y1cf{bottom:927.922667pt;}
.yca{bottom:928.560000pt;}
.y80{bottom:930.397333pt;}
.y138{bottom:931.349333pt;}
.y49{bottom:932.545333pt;}
.y205{bottom:936.729333pt;}
.y7f{bottom:939.905333pt;}
.y1ce{bottom:943.544000pt;}
.yc9{bottom:945.297333pt;}
.y18{bottom:946.425333pt;}
.y137{bottom:948.086667pt;}
.y48{bottom:949.282667pt;}
.y204{bottom:952.072000pt;}
.y7e{bottom:956.370667pt;}
.yc8{bottom:962.034667pt;}
.y47{bottom:966.020000pt;}
.y1cd{bottom:967.136000pt;}
.y203{bottom:967.414667pt;}
.y136{bottom:968.809333pt;}
.y17{bottom:971.530667pt;}
.y46{bottom:982.757333pt;}
.y7d{bottom:984.073333pt;}
.y15{bottom:1010.186667pt;}
.y45{bottom:1038.548000pt;}
.h1e{height:21.747578pt;}
.h1d{height:21.936688pt;}
.h9{height:23.304670pt;}
.h23{height:24.527344pt;}
.h22{height:24.740625pt;}
.h21{height:27.142719pt;}
.h2{height:27.188522pt;}
.h3{height:27.262909pt;}
.h1f{height:27.307109pt;}
.h20{height:27.544563pt;}
.h15{height:28.023859pt;}
.h29{height:28.366406pt;}
.h12{height:29.519145pt;}
.h14{height:30.066559pt;}
.ha{height:31.072763pt;}
.h11{height:31.157778pt;}
.h27{height:33.324328pt;}
.hd{height:33.378918pt;}
.h25{height:34.000589pt;}
.hb{height:34.574438pt;}
.hc{height:34.957005pt;}
.h24{height:35.052646pt;}
.h16{height:35.113105pt;}
.h17{height:35.517005pt;}
.h18{height:35.522338pt;}
.h13{height:36.873667pt;}
.h2a{height:37.027031pt;}
.h10{height:37.087439pt;}
.h1a{height:37.140573pt;}
.h19{height:37.778179pt;}
.he{height:38.415786pt;}
.hf{height:38.840857pt;}
.h6{height:38.947124pt;}
.h4{height:45.271688pt;}
.h1b{height:47.309193pt;}
.h8{height:48.486756pt;}
.h7{height:69.148877pt;}
.h5{height:91.114522pt;}
.h28{height:324.526667pt;}
.h1c{height:335.754533pt;}
.h26{height:515.247600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:113.172501pt;}
.w3{width:493.612840pt;}
.w4{width:520.293720pt;}
.w5{width:580.922800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc9{left:-3.357480pt;}
.x0{left:0.000000pt;}
.xa2{left:4.276440pt;}
.x1{left:47.621333pt;}
.x2{left:51.605861pt;}
.x6f{left:55.592000pt;}
.x6e{left:63.248000pt;}
.x53{left:69.017333pt;}
.x52{left:71.281333pt;}
.x106{left:76.309333pt;}
.x73{left:82.645333pt;}
.x71{left:85.346667pt;}
.x6d{left:102.748000pt;}
.xda{left:106.201200pt;}
.x6c{left:107.493333pt;}
.x72{left:114.097333pt;}
.xa3{left:125.964664pt;}
.xa4{left:145.788098pt;}
.x6b{left:146.998667pt;}
.x111{left:211.989333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xaa{left:225.328000pt;}
.x54{left:229.906667pt;}
.xae{left:231.145333pt;}
.x49{left:233.130667pt;}
.x4a{left:238.842667pt;}
.x4{left:239.924000pt;}
.x4f{left:248.206667pt;}
.xff{left:249.209333pt;}
.x16{left:250.204000pt;}
.x3a{left:251.141333pt;}
.x2d{left:252.134667pt;}
.xe8{left:253.866667pt;}
.x100{left:256.406667pt;}
.x3b{left:259.942667pt;}
.x2e{left:260.934667pt;}
.xc1{left:262.754667pt;}
.xc2{left:264.178667pt;}
.x51{left:267.012000pt;}
.xf6{left:269.128000pt;}
.xdc{left:272.753333pt;}
.x6{left:273.906667pt;}
.xa5{left:275.029333pt;}
.xca{left:277.225333pt;}
.x10c{left:278.198667pt;}
.xb1{left:279.617333pt;}
.xfe{left:280.810667pt;}
.x9a{left:281.837333pt;}
.xcd{left:282.828000pt;}
.x41{left:283.868000pt;}
.x82{left:286.020000pt;}
.xce{left:288.805333pt;}
.x83{left:289.706667pt;}
.xdb{left:291.585467pt;}
.x50{left:292.592000pt;}
.xaf{left:294.614667pt;}
.x42{left:297.150667pt;}
.x88{left:298.302667pt;}
.x7{left:301.560000pt;}
.x84{left:302.989333pt;}
.xc3{left:304.917333pt;}
.x85{left:306.676000pt;}
.x8{left:309.480000pt;}
.x101{left:311.410667pt;}
.xa6{left:313.200000pt;}
.x89{left:315.065333pt;}
.x64{left:317.142667pt;}
.x8a{left:318.753333pt;}
.x102{left:320.210667pt;}
.x65{left:323.192000pt;}
.xe1{left:326.316000pt;}
.xa1{left:330.229333pt;}
.x9f{left:331.493333pt;}
.xf8{left:332.621333pt;}
.xc6{left:334.305333pt;}
.xe{left:337.618667pt;}
.xa0{left:338.858667pt;}
.xc7{left:343.106667pt;}
.xf{left:345.540000pt;}
.xf1{left:346.814667pt;}
.x90{left:347.732000pt;}
.x14{left:350.750667pt;}
.xb4{left:354.952000pt;}
.x19{left:357.796000pt;}
.x70{left:359.484000pt;}
.x1a{left:361.184000pt;}
.x59{left:364.269333pt;}
.x1b{left:367.825333pt;}
.xba{left:369.760000pt;}
.x5a{left:372.474667pt;}
.x35{left:375.709333pt;}
.xf2{left:377.572000pt;}
.x15{left:380.068000pt;}
.x105{left:382.374667pt;}
.xe9{left:383.713333pt;}
.xed{left:385.378667pt;}
.x7d{left:386.865333pt;}
.x36{left:387.920000pt;}
.xfb{left:388.944000pt;}
.x2b{left:391.817333pt;}
.x98{left:392.894667pt;}
.x7e{left:394.230667pt;}
.xf9{left:397.060000pt;}
.xbe{left:398.946667pt;}
.x94{left:399.906667pt;}
.x5b{left:401.334667pt;}
.x2c{left:405.100000pt;}
.xbf{left:406.312000pt;}
.x95{left:408.708000pt;}
.x5c{left:410.314667pt;}
.x66{left:412.382667pt;}
.xf4{left:415.022667pt;}
.xdd{left:416.069333pt;}
.xab{left:417.001333pt;}
.x67{left:418.433333pt;}
.xef{left:419.518667pt;}
.xf3{left:421.018667pt;}
.xcf{left:422.226667pt;}
.x79{left:425.797333pt;}
.xde{left:426.985333pt;}
.xf5{left:428.306667pt;}
.x45{left:430.016000pt;}
.xc4{left:431.306667pt;}
.xf0{left:432.802667pt;}
.x69{left:434.245333pt;}
.x55{left:436.909333pt;}
.x46{left:438.481333pt;}
.x6a{left:440.294667pt;}
.xb5{left:441.496000pt;}
.x7a{left:442.922667pt;}
.x74{left:444.584000pt;}
.x2f{left:446.120000pt;}
.xb6{left:448.861333pt;}
.x56{left:450.192000pt;}
.x3c{left:451.140000pt;}
.xb2{left:457.860000pt;}
.x30{left:459.404000pt;}
.xc5{left:461.322667pt;}
.xb3{left:464.309333pt;}
.x104{left:466.970667pt;}
.xd5{left:468.448000pt;}
.x1e{left:473.641333pt;}
.x3d{left:474.678667pt;}
.xb0{left:476.578667pt;}
.xe4{left:478.890667pt;}
.xd6{left:480.249333pt;}
.x1f{left:482.441333pt;}
.xbd{left:484.730667pt;}
.x3e{left:487.962667pt;}
.xac{left:489.254667pt;}
.xc{left:490.878667pt;}
.x4b{left:493.537333pt;}
.xad{left:496.378667pt;}
.x75{left:497.282667pt;}
.xd{left:498.798667pt;}
.xb7{left:500.594667pt;}
.x76{left:503.333333pt;}
.x31{left:505.817333pt;}
.x4c{left:508.144000pt;}
.x10b{left:511.272000pt;}
.x29{left:516.298667pt;}
.x32{left:519.174667pt;}
.x10{left:521.174667pt;}
.x24{left:522.142667pt;}
.xf7{left:523.296000pt;}
.x2a{left:525.100000pt;}
.xa8{left:527.458667pt;}
.x11{left:529.094667pt;}
.x4d{left:531.085333pt;}
.x9b{left:533.333333pt;}
.xa9{left:534.584000pt;}
.x17{left:536.485333pt;}
.x37{left:538.757333pt;}
.xea{left:539.822667pt;}
.x38{left:542.144000pt;}
.x18{left:543.126667pt;}
.xd0{left:544.753333pt;}
.x9c{left:549.021333pt;}
.x20{left:550.890667pt;}
.x63{left:551.906667pt;}
.xe6{left:552.844000pt;}
.x39{left:555.428000pt;}
.x21{left:557.532000pt;}
.x43{left:558.606667pt;}
.x22{left:560.913333pt;}
.x7f{left:563.204000pt;}
.x44{left:564.318667pt;}
.x8b{left:566.578667pt;}
.x23{left:567.554667pt;}
.xd1{left:569.861333pt;}
.xcb{left:571.168000pt;}
.xdf{left:572.881333pt;}
.x86{left:575.578667pt;}
.xe5{left:578.038667pt;}
.xcc{left:579.088000pt;}
.xd9{left:581.430667pt;}
.x87{left:582.944000pt;}
.x80{left:584.050667pt;}
.x81{left:587.738667pt;}
.xe0{left:588.738667pt;}
.x96{left:590.190667pt;}
.xeb{left:592.457333pt;}
.xa7{left:595.554667pt;}
.x33{left:596.972000pt;}
.x97{left:598.992000pt;}
.x91{left:600.198667pt;}
.xec{left:604.566667pt;}
.xd7{left:608.501333pt;}
.x34{left:609.834667pt;}
.x8c{left:613.286667pt;}
.x4e{left:617.422667pt;}
.x8d{left:620.653333pt;}
.xd8{left:621.785333pt;}
.x25{left:624.928000pt;}
.xfc{left:627.421333pt;}
.x5d{left:630.048000pt;}
.x26{left:631.570667pt;}
.xc0{left:633.005333pt;}
.x27{left:634.957333pt;}
.x5e{left:636.098667pt;}
.x68{left:638.389333pt;}
.xfd{left:639.542667pt;}
.xbb{left:640.650667pt;}
.x99{left:641.566667pt;}
.x107{left:645.592000pt;}
.x10d{left:646.761333pt;}
.x28{left:648.241333pt;}
.xbc{left:649.452000pt;}
.x9{left:651.422667pt;}
.x8e{left:652.406667pt;}
.x108{left:654.973333pt;}
.x8f{left:656.094667pt;}
.xa{left:659.344000pt;}
.x47{left:661.388000pt;}
.xc8{left:663.722667pt;}
.x9d{left:664.818667pt;}
.x48{left:667.100000pt;}
.x109{left:668.128000pt;}
.xfa{left:669.216000pt;}
.x10e{left:670.672000pt;}
.xe2{left:672.346667pt;}
.x9e{left:673.618667pt;}
.x10a{left:676.049333pt;}
.x92{left:677.941333pt;}
.x7b{left:678.833333pt;}
.x103{left:680.674667pt;}
.x93{left:681.628000pt;}
.x7c{left:682.521333pt;}
.x110{left:683.676000pt;}
.x5f{left:685.285333pt;}
.xd2{left:687.342667pt;}
.xee{left:690.526667pt;}
.xb8{left:692.784000pt;}
.xd3{left:693.972000pt;}
.x10f{left:696.186667pt;}
.x60{left:699.034667pt;}
.xe3{left:700.712000pt;}
.x12{left:702.856000pt;}
.xd4{left:704.565333pt;}
.x77{left:709.726667pt;}
.x13{left:710.777333pt;}
.x61{left:712.053333pt;}
.x78{left:713.414667pt;}
.xe7{left:718.717333pt;}
.x62{left:720.589333pt;}
.x57{left:723.754667pt;}
.x58{left:727.052000pt;}
.xb9{left:731.056000pt;}
.x1c{left:733.794667pt;}
.x3f{left:735.970667pt;}
.xb{left:737.780000pt;}
.x1d{left:740.436000pt;}
.x40{left:744.770667pt;}
}




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