
    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_46d94c96dd26ea909fb1b805.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.890000;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_73b677ea862d0fb6014d93b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_58a0d9cca78d26eaf3b0130d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ed4a6454ff195f18b9834595.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052000;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_d5162a86846821cebda35635.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.845000;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_62385cdb756b9ce1850667a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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_33da2eb206785f7950fa6b45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.029006;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_3e467f4280e11a94f6524abe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903000;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_c92e7bc25f29b0e6347e6ce5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_9b2419d688af8b2003b6ab58.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_41da8707616be0b451b93346.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_48096e0c776b939bf5b3d4fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ec48a403580fa0ec36cbcab1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.715000;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_41ada3dbce85e4c4fe2b5c19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.849000;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_8d82d219963e837dcf655c1c.woff2')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m24{transform:matrix(0.000849,-0.249999,0.249999,0.000849,0,0);-ms-transform:matrix(0.000849,-0.249999,0.249999,0.000849,0,0);-webkit-transform:matrix(0.000849,-0.249999,0.249999,0.000849,0,0);}
.m1{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);}
.m3{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);}
.m23{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);}
.me{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);}
.ma{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);}
.m27{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);}
.m10{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);}
.md{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);}
.m25{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);}
.m11{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);}
.m19{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);}
.m9{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);}
.m13{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);}
.mb{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);}
.m17{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);}
.m1a{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);}
.m6{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);}
.mc{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);}
.m21{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);}
.m28{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);}
.m20{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);}
.m22{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);}
.m2a{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);}
.mf{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);}
.m14{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);}
.m1b{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);}
.m1e{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);}
.m12{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);}
.m7{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);}
.m1d{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);}
.m29{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);}
.m1f{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);}
.m15{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);}
.m1c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m8{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);}
.m16{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m18{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:-22.854000px;}
.v6{vertical-align:-12.547040px;}
.v4{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.433015px;}
.v7{vertical-align:13.320000px;}
.v1{vertical-align:23.748000px;}
.v5{vertical-align:27.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002706px;}
.ls2d{letter-spacing:0.002712px;}
.ls48{letter-spacing:0.003056px;}
.ls4d{letter-spacing:0.004265px;}
.ls53{letter-spacing:0.004269px;}
.ls20{letter-spacing:0.004338px;}
.ls47{letter-spacing:0.004528px;}
.ls21{letter-spacing:0.004861px;}
.ls4c{letter-spacing:0.005374px;}
.ls5b{letter-spacing:2.660967px;}
.ls59{letter-spacing:2.666313px;}
.ls12{letter-spacing:2.984915px;}
.ls22{letter-spacing:2.986059px;}
.ls52{letter-spacing:2.986528px;}
.ls8{letter-spacing:2.989200px;}
.ls17{letter-spacing:2.990915px;}
.ls25{letter-spacing:2.992059px;}
.ls34{letter-spacing:3.767414px;}
.ls2c{letter-spacing:3.773414px;}
.ls14{letter-spacing:4.265644px;}
.ls3c{letter-spacing:4.687597px;}
.ls29{letter-spacing:7.134493px;}
.ls1e{letter-spacing:7.140493px;}
.ls18{letter-spacing:10.904712px;}
.ls13{letter-spacing:10.910712px;}
.lse{letter-spacing:13.810921px;}
.lsa{letter-spacing:14.923649px;}
.ls10{letter-spacing:15.209819px;}
.ls3{letter-spacing:15.840013px;}
.ls49{letter-spacing:15.970922px;}
.ls4a{letter-spacing:16.101832px;}
.ls3f{letter-spacing:16.167286px;}
.ls7{letter-spacing:16.298195px;}
.ls37{letter-spacing:16.358712px;}
.ls1a{letter-spacing:16.363650px;}
.ls2e{letter-spacing:16.364712px;}
.ls2f{letter-spacing:16.366861px;}
.lsc{letter-spacing:16.494559px;}
.ls0{letter-spacing:16.560014px;}
.ls51{letter-spacing:16.690923px;}
.lsf{letter-spacing:16.700440px;}
.ls3d{letter-spacing:16.756378px;}
.ls9{letter-spacing:17.149105px;}
.ls1{letter-spacing:18.130924px;}
.ls1b{letter-spacing:18.176712px;}
.ls38{letter-spacing:18.178861px;}
.ls1d{letter-spacing:18.179400px;}
.ls33{letter-spacing:18.179418px;}
.ls36{letter-spacing:18.181618px;}
.ls24{letter-spacing:18.182712px;}
.ls32{letter-spacing:18.184338px;}
.ls56{letter-spacing:18.243534px;}
.ls57{letter-spacing:18.249191px;}
.ls35{letter-spacing:19.354059px;}
.ls6{letter-spacing:19.636380px;}
.lsb{letter-spacing:20.029108px;}
.lsd{letter-spacing:20.356381px;}
.ls40{letter-spacing:20.683654px;}
.ls2{letter-spacing:20.814563px;}
.ls65{letter-spacing:21.334757px;}
.ls60{letter-spacing:21.511276px;}
.ls62{letter-spacing:21.515785px;}
.ls63{letter-spacing:21.516283px;}
.ls64{letter-spacing:21.521226px;}
.ls3a{letter-spacing:21.534563px;}
.ls3b{letter-spacing:21.600018px;}
.ls5c{letter-spacing:21.730927px;}
.ls67{letter-spacing:21.820348px;}
.ls5e{letter-spacing:22.082503px;}
.ls16{letter-spacing:22.469412px;}
.ls1c{letter-spacing:22.867597px;}
.ls43{letter-spacing:23.367292px;}
.ls5d{letter-spacing:23.890929px;}
.ls2b{letter-spacing:24.041418px;}
.ls27{letter-spacing:24.046861px;}
.ls28{letter-spacing:24.047418px;}
.ls2a{letter-spacing:24.052338px;}
.ls50{letter-spacing:24.283657px;}
.ls11{letter-spacing:24.619597px;}
.ls42{letter-spacing:25.200021px;}
.ls41{letter-spacing:27.425477px;}
.ls4{letter-spacing:27.883660px;}
.ls46{letter-spacing:29.061842px;}
.ls45{letter-spacing:29.127297px;}
.ls44{letter-spacing:29.585479px;}
.ls15{letter-spacing:29.610493px;}
.ls3e{letter-spacing:29.798915px;}
.ls61{letter-spacing:29.860360px;}
.ls4b{letter-spacing:30.109116px;}
.ls30{letter-spacing:32.386861px;}
.ls31{letter-spacing:32.387418px;}
.ls39{letter-spacing:33.712059px;}
.ls19{letter-spacing:39.864493px;}
.ls66{letter-spacing:61.596250px;}
.ls26{letter-spacing:80.054706px;}
.ls5f{letter-spacing:118.284648px;}
.ls54{letter-spacing:214.185505px;}
.ls4e{letter-spacing:216.610267px;}
.ls55{letter-spacing:294.033201px;}
.ls4f{letter-spacing:296.380054px;}
.ls5a{letter-spacing:352.162486px;}
.ls1f{letter-spacing:364.258059px;}
.ls58{letter-spacing:427.615083px;}
.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;}
}
.ws9c{word-spacing:-65.454600px;}
.ws7f{word-spacing:-54.589136px;}
.ws9b{word-spacing:-32.727300px;}
.ws53{word-spacing:-26.899200px;}
.ws11f{word-spacing:-17.932800px;}
.ws15{word-spacing:-16.363650px;}
.wsff{word-spacing:-15.429122px;}
.wse9{word-spacing:-15.414067px;}
.ws139{word-spacing:-14.943900px;}
.ws10a{word-spacing:-14.579849px;}
.wsf2{word-spacing:-11.955150px;}
.wsfc{word-spacing:-11.272391px;}
.wse4{word-spacing:-11.261393px;}
.ws6d{word-spacing:-10.787090px;}
.ws6c{word-spacing:-10.787088px;}
.ws10c{word-spacing:-10.651919px;}
.wsdb{word-spacing:-10.460700px;}
.ws28{word-spacing:-6.872733px;}
.ws98{word-spacing:-5.760005px;}
.wsbc{word-spacing:-4.581822px;}
.ws9d{word-spacing:-3.796367px;}
.wsb6{word-spacing:-3.469094px;}
.wsb7{word-spacing:-3.403639px;}
.ws73{word-spacing:-3.272730px;}
.wsf1{word-spacing:-3.207275px;}
.wsf8{word-spacing:-3.010912px;}
.ws151{word-spacing:-2.988780px;}
.ws1b{word-spacing:-2.814548px;}
.wsbe{word-spacing:-2.749093px;}
.ws81{word-spacing:-2.683639px;}
.wsc5{word-spacing:-2.572611px;}
.ws72{word-spacing:-2.552729px;}
.wsd{word-spacing:-2.450800px;}
.ws9a{word-spacing:-2.421820px;}
.ws12a{word-spacing:-2.331248px;}
.wsf5{word-spacing:-2.225456px;}
.wsb3{word-spacing:-2.160002px;}
.wsa8{word-spacing:-2.094547px;}
.wsa9{word-spacing:-2.029093px;}
.ws37{word-spacing:-1.898183px;}
.ws135{word-spacing:-1.853044px;}
.wsf6{word-spacing:-1.636365px;}
.ws11e{word-spacing:-1.570910px;}
.ws59{word-spacing:-1.505456px;}
.ws15a{word-spacing:-1.434614px;}
.ws167{word-spacing:-1.315063px;}
.ws83{word-spacing:-1.309092px;}
.wsa7{word-spacing:-1.243637px;}
.ws58{word-spacing:-1.112728px;}
.ws35{word-spacing:-1.047274px;}
.ws8a{word-spacing:-0.916364px;}
.ws39{word-spacing:-0.785455px;}
.ws95{word-spacing:-0.720001px;}
.wsd4{word-spacing:-0.654546px;}
.wsf0{word-spacing:-0.589091px;}
.ws107{word-spacing:-0.537980px;}
.ws21{word-spacing:-0.523637px;}
.ws108{word-spacing:-0.478205px;}
.ws20{word-spacing:-0.458182px;}
.wse{word-spacing:-0.418429px;}
.ws3b{word-spacing:-0.392728px;}
.ws121{word-spacing:-0.358654px;}
.ws24{word-spacing:-0.327273px;}
.ws9{word-spacing:-0.298878px;}
.ws4a{word-spacing:-0.261818px;}
.ws6{word-spacing:-0.239102px;}
.ws125{word-spacing:-0.205756px;}
.ws1f{word-spacing:-0.196364px;}
.wsc{word-spacing:-0.179327px;}
.ws27{word-spacing:-0.130909px;}
.ws13a{word-spacing:-0.125636px;}
.wsdc{word-spacing:-0.119551px;}
.ws44{word-spacing:-0.085246px;}
.ws18{word-spacing:-0.065455px;}
.wsd9{word-spacing:-0.059776px;}
.ws16b{word-spacing:-0.059628px;}
.ws132{word-spacing:-0.050188px;}
.wsd5{word-spacing:-0.047821px;}
.ws100{word-spacing:-0.045090px;}
.wsea{word-spacing:-0.045046px;}
.ws10b{word-spacing:-0.042608px;}
.wsdd{word-spacing:-0.041843px;}
.ws14f{word-spacing:-0.004924px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.059776px;}
.ws19{word-spacing:0.065455px;}
.ws1{word-spacing:0.086077px;}
.ws153{word-spacing:0.113828px;}
.ws179{word-spacing:0.116686px;}
.ws3{word-spacing:0.119551px;}
.ws1a{word-spacing:0.130909px;}
.ws13d{word-spacing:0.157285px;}
.wsa{word-spacing:0.179327px;}
.ws3c{word-spacing:0.196364px;}
.ws7{word-spacing:0.239102px;}
.ws12{word-spacing:0.261818px;}
.ws8{word-spacing:0.298878px;}
.ws1d{word-spacing:0.327273px;}
.ws5e{word-spacing:0.392728px;}
.ws162{word-spacing:0.418429px;}
.ws163{word-spacing:0.430592px;}
.wsb5{word-spacing:0.458182px;}
.ws8e{word-spacing:0.523637px;}
.ws80{word-spacing:0.589091px;}
.ws23{word-spacing:0.654546px;}
.ws150{word-spacing:0.657532px;}
.ws57{word-spacing:0.720001px;}
.ws56{word-spacing:0.785455px;}
.wsad{word-spacing:0.850910px;}
.ws55{word-spacing:0.916364px;}
.ws169{word-spacing:0.956410px;}
.ws2c{word-spacing:0.981819px;}
.ws33{word-spacing:1.047274px;}
.wsa6{word-spacing:1.112728px;}
.ws176{word-spacing:1.255288px;}
.ws5a{word-spacing:1.309092px;}
.ws5f{word-spacing:1.374547px;}
.wsc3{word-spacing:1.440001px;}
.ws4{word-spacing:1.494390px;}
.wsac{word-spacing:1.505456px;}
.wsd7{word-spacing:1.570910px;}
.wsc0{word-spacing:1.636365px;}
.ws14a{word-spacing:1.673717px;}
.ws17{word-spacing:1.701820px;}
.ws16f{word-spacing:1.733492px;}
.wsf4{word-spacing:1.767274px;}
.ws84{word-spacing:1.817368px;}
.ws82{word-spacing:1.821150px;}
.ws30{word-spacing:1.832729px;}
.ws54{word-spacing:1.898183px;}
.wsb{word-spacing:1.912819px;}
.ws7a{word-spacing:1.963638px;}
.ws11b{word-spacing:2.029093px;}
.ws140{word-spacing:2.092146px;}
.ws3d{word-spacing:2.160002px;}
.ws49{word-spacing:2.225456px;}
.ws3e{word-spacing:2.290911px;}
.ws158{word-spacing:2.331248px;}
.ws25{word-spacing:2.356366px;}
.ws3a{word-spacing:2.421820px;}
.ws141{word-spacing:2.450800px;}
.ws64{word-spacing:2.487275px;}
.wsed{word-spacing:2.552729px;}
.wsaf{word-spacing:2.618184px;}
.ws16d{word-spacing:2.630126px;}
.wsbd{word-spacing:2.683639px;}
.wsab{word-spacing:2.749093px;}
.wsa0{word-spacing:2.814548px;}
.ws138{word-spacing:2.869229px;}
.ws74{word-spacing:2.945457px;}
.ws5{word-spacing:2.988780px;}
.ws6e{word-spacing:3.010912px;}
.ws2d{word-spacing:3.076366px;}
.wsd1{word-spacing:3.141821px;}
.ws46{word-spacing:3.272730px;}
.ws13f{word-spacing:3.347434px;}
.ws34{word-spacing:3.403639px;}
.wsef{word-spacing:3.469094px;}
.ws5b{word-spacing:3.534548px;}
.ws66{word-spacing:3.600003px;}
.ws61{word-spacing:3.665458px;}
.ws4d{word-spacing:3.730912px;}
.ws26{word-spacing:3.796367px;}
.wsda{word-spacing:3.825638px;}
.ws70{word-spacing:3.861821px;}
.ws71{word-spacing:3.927276px;}
.ws68{word-spacing:3.992731px;}
.ws11{word-spacing:4.058185px;}
.ws14b{word-spacing:4.130401px;}
.ws38{word-spacing:4.189094px;}
.ws96{word-spacing:4.218896px;}
.ws62{word-spacing:4.320004px;}
.ws76{word-spacing:4.376988px;}
.ws1e{word-spacing:4.385458px;}
.ws47{word-spacing:4.450913px;}
.ws5d{word-spacing:4.516367px;}
.ws7b{word-spacing:4.581822px;}
.ws16a{word-spacing:4.602721px;}
.wsa4{word-spacing:4.647277px;}
.ws160{word-spacing:4.662497px;}
.ws13c{word-spacing:4.722272px;}
.ws93{word-spacing:4.778186px;}
.ws60{word-spacing:4.843640px;}
.wsae{word-spacing:4.974550px;}
.ws67{word-spacing:5.040004px;}
.ws145{word-spacing:5.080926px;}
.ws89{word-spacing:5.105459px;}
.wsb2{word-spacing:5.170913px;}
.wsb1{word-spacing:5.236368px;}
.wsc4{word-spacing:5.301823px;}
.ws11c{word-spacing:5.367277px;}
.ws92{word-spacing:5.432732px;}
.ws94{word-spacing:5.498186px;}
.ws16{word-spacing:5.563641px;}
.ws22{word-spacing:5.629096px;}
.wsb4{word-spacing:5.760005px;}
.ws52{word-spacing:5.890914px;}
.ws161{word-spacing:5.917784px;}
.wsf7{word-spacing:5.956369px;}
.ws51{word-spacing:6.021823px;}
.ws16c{word-spacing:6.097111px;}
.ws14{word-spacing:6.152732px;}
.ws7d{word-spacing:6.218187px;}
.ws48{word-spacing:6.283642px;}
.ws144{word-spacing:6.395989px;}
.wsaa{word-spacing:6.414551px;}
.ws6f{word-spacing:6.480005px;}
.ws148{word-spacing:6.515540px;}
.ws120{word-spacing:6.545460px;}
.wsb0{word-spacing:6.610915px;}
.ws75{word-spacing:6.676369px;}
.ws9f{word-spacing:6.741824px;}
.ws50{word-spacing:6.765114px;}
.ws7c{word-spacing:6.872733px;}
.ws170{word-spacing:6.874194px;}
.ws2b{word-spacing:7.003642px;}
.wsc9{word-spacing:7.069097px;}
.wsa2{word-spacing:7.200006px;}
.ws65{word-spacing:7.265461px;}
.ws2a{word-spacing:7.330915px;}
.ws3f{word-spacing:7.396370px;}
.ws11d{word-spacing:7.461824px;}
.wsc2{word-spacing:7.527279px;}
.ws36{word-spacing:7.658188px;}
.ws174{word-spacing:7.711052px;}
.ws8f{word-spacing:7.723643px;}
.ws42{word-spacing:7.854552px;}
.ws157{word-spacing:7.890379px;}
.ws32{word-spacing:7.920007px;}
.ws152{word-spacing:8.009930px;}
.wsa5{word-spacing:8.050916px;}
.wsb8{word-spacing:8.116370px;}
.wsfa{word-spacing:8.181825px;}
.ws178{word-spacing:8.368584px;}
.ws6b{word-spacing:8.378189px;}
.ws6a{word-spacing:8.443643px;}
.ws15e{word-spacing:8.488135px;}
.wsb9{word-spacing:8.502900px;}
.ws63{word-spacing:8.509098px;}
.ws4b{word-spacing:8.574553px;}
.ws13{word-spacing:8.640007px;}
.ws130{word-spacing:8.667462px;}
.ws90{word-spacing:8.705462px;}
.ws136{word-spacing:8.787013px;}
.wsc8{word-spacing:8.836371px;}
.ws91{word-spacing:9.032735px;}
.ws2e{word-spacing:9.098189px;}
.wsf9{word-spacing:9.163644px;}
.wsd8{word-spacing:9.360008px;}
.ws29{word-spacing:9.621826px;}
.ws129{word-spacing:9.623872px;}
.ws9e{word-spacing:9.752735px;}
.ws15f{word-spacing:9.982525px;}
.wsc1{word-spacing:10.472736px;}
.ws16e{word-spacing:10.699832px;}
.ws69{word-spacing:10.865464px;}
.ws175{word-spacing:11.058486px;}
.wsc7{word-spacing:11.061827px;}
.ws1c{word-spacing:11.389100px;}
.ws31{word-spacing:11.520010px;}
.ws12b{word-spacing:11.656242px;}
.ws11a{word-spacing:11.716373px;}
.wsce{word-spacing:11.978192px;}
.ws177{word-spacing:12.373549px;}
.ws146{word-spacing:12.433325px;}
.ws149{word-spacing:12.552876px;}
.wscf{word-spacing:12.698192px;}
.wsd0{word-spacing:12.763647px;}
.ws14d{word-spacing:12.791978px;}
.wsca{word-spacing:13.156375px;}
.ws41{word-spacing:13.352738px;}
.ws0{word-spacing:13.395802px;}
.ws168{word-spacing:13.569061px;}
.wsc6{word-spacing:13.744102px;}
.wsd6{word-spacing:13.745466px;}
.ws88{word-spacing:13.780927px;}
.ws123{word-spacing:14.166817px;}
.ws12c{word-spacing:14.405920px;}
.ws127{word-spacing:14.525471px;}
.ws122{word-spacing:14.645022px;}
.ws126{word-spacing:14.704798px;}
.ws78{word-spacing:14.727285px;}
.ws124{word-spacing:14.764573px;}
.ws8b{word-spacing:14.792740px;}
.ws133{word-spacing:14.824349px;}
.ws128{word-spacing:14.884124px;}
.ws17a{word-spacing:14.943900px;}
.ws13e{word-spacing:15.003676px;}
.wsee{word-spacing:15.054558px;}
.ws134{word-spacing:15.063451px;}
.ws156{word-spacing:15.183002px;}
.ws165{word-spacing:15.242778px;}
.ws164{word-spacing:15.302554px;}
.wsa3{word-spacing:15.643649px;}
.wsf3{word-spacing:15.840013px;}
.ws2f{word-spacing:15.970922px;}
.ws87{word-spacing:16.036377px;}
.ws45{word-spacing:16.184443px;}
.ws43{word-spacing:16.184709px;}
.ws137{word-spacing:16.199188px;}
.ws8d{word-spacing:16.494559px;}
.wsbf{word-spacing:16.560014px;}
.ws77{word-spacing:16.625468px;}
.ws159{word-spacing:16.737168px;}
.ws40{word-spacing:17.083651px;}
.ws142{word-spacing:17.334924px;}
.ws85{word-spacing:18.130924px;}
.ws79{word-spacing:18.261833px;}
.ws172{word-spacing:18.948865px;}
.ws14c{word-spacing:19.008641px;}
.ws5c{word-spacing:19.838720px;}
.ws7e{word-spacing:19.898198px;}
.ws143{word-spacing:19.905275px;}
.ws4e{word-spacing:20.029108px;}
.ws147{word-spacing:20.144377px;}
.wscc{word-spacing:20.290926px;}
.ws166{word-spacing:20.443255px;}
.ws8c{word-spacing:21.272745px;}
.ws154{word-spacing:21.758318px;}
.ws99{word-spacing:21.796382px;}
.ws131{word-spacing:22.654952px;}
.ws13b{word-spacing:22.774504px;}
.ws173{word-spacing:22.834279px;}
.ws4f{word-spacing:23.105474px;}
.wscd{word-spacing:24.087293px;}
.ws155{word-spacing:24.209118px;}
.ws14e{word-spacing:25.344854px;}
.wscb{word-spacing:25.461839px;}
.ws97{word-spacing:26.926745px;}
.ws12d{word-spacing:26.958796px;}
.wsbb{word-spacing:28.078145px;}
.ws171{word-spacing:29.110717px;}
.ws12e{word-spacing:30.067127px;}
.ws15d{word-spacing:31.621292px;}
.ws15c{word-spacing:31.681068px;}
.wsba{word-spacing:41.170943px;}
.ws12f{word-spacing:44.951251px;}
.ws15b{word-spacing:47.103173px;}
.ws4c{word-spacing:48.568426px;}
.ws86{word-spacing:49.090950px;}
.ws109{word-spacing:49.338207px;}
.ws117{word-spacing:50.137052px;}
.ws10f{word-spacing:50.149194px;}
.ws113{word-spacing:50.154679px;}
.wsde{word-spacing:52.161204px;}
.wsfb{word-spacing:52.212149px;}
.wsdf{word-spacing:52.962736px;}
.wse5{word-spacing:52.999175px;}
.wsec{word-spacing:53.018593px;}
.wse2{word-spacing:53.024392px;}
.ws101{word-spacing:53.048717px;}
.wsfe{word-spacing:53.076180px;}
.ws106{word-spacing:53.094353px;}
.ws10{word-spacing:53.798400px;}
.ws17b{word-spacing:55.374592px;}
.ws17d{word-spacing:56.225501px;}
.ws17c{word-spacing:56.290956px;}
.ws110{word-spacing:73.599075px;}
.ws118{word-spacing:73.623216px;}
.wse6{word-spacing:77.810212px;}
.ws102{word-spacing:77.886208px;}
.ws115{word-spacing:96.279310px;}
.ws119{word-spacing:96.285320px;}
.wsa1{word-spacing:99.221964px;}
.ws10e{word-spacing:103.597902px;}
.wse1{word-spacing:109.525489px;}
.wseb{word-spacing:109.543772px;}
.wsd2{word-spacing:124.429195px;}
.ws10d{word-spacing:126.045504px;}
.wse0{word-spacing:133.244155px;}
.wse3{word-spacing:133.257482px;}
.ws105{word-spacing:133.366315px;}
.wsfd{word-spacing:133.393288px;}
.ws112{word-spacing:140.967210px;}
.ws114{word-spacing:140.976715px;}
.wse8{word-spacing:149.032966px;}
.ws104{word-spacing:149.184181px;}
.ws111{word-spacing:152.208534px;}
.wsd3{word-spacing:157.156495px;}
.wse7{word-spacing:160.917489px;}
.ws103{word-spacing:161.068996px;}
.ws116{word-spacing:208.132413px;}
._20{margin-left:-10.927918px;}
._3{margin-left:-7.173120px;}
._12{margin-left:-5.432732px;}
._2{margin-left:-4.389937px;}
._0{margin-left:-2.420928px;}
._4{margin-left:-1.075968px;}
._18{width:1.483282px;}
._15{width:3.012710px;}
._1d{width:4.851534px;}
._25{width:11.952539px;}
._1a{width:14.138194px;}
._b{width:15.381831px;}
._1{width:16.677504px;}
._7{width:18.231558px;}
._a{width:19.243652px;}
._9{width:20.618199px;}
._10{width:21.665473px;}
._d{width:23.432747px;}
._6{width:25.135656px;}
._8{width:26.443658px;}
._26{width:27.752750px;}
._5{width:28.841743px;}
._14{width:30.763662px;}
._f{width:32.269118px;}
._c{width:34.629962px;}
._1e{width:36.589121px;}
._24{width:38.160032px;}
._e{width:39.272760px;}
._22{width:40.450943px;}
._1c{width:41.498216px;}
._27{width:42.545490px;}
._11{width:43.658218px;}
._21{width:44.901856px;}
._2a{width:46.538221px;}
._1f{width:48.697330px;}
._17{width:52.560044px;}
._28{width:54.000045px;}
._2b{width:59.040049px;}
._57{width:62.166624px;}
._16{width:64.228883px;}
._1b{width:65.454600px;}
._23{width:66.853603px;}
._45{width:68.376803px;}
._13{width:71.731200px;}
._29{width:73.374607px;}
._58{width:74.599907px;}
._35{width:76.408451px;}
._5b{width:80.966448px;}
._54{width:85.493460px;}
._51{width:88.178924px;}
._3e{width:91.312935px;}
._39{width:93.285936px;}
._64{width:96.938263px;}
._5f{width:98.967355px;}
._4e{width:110.874024px;}
._5c{width:113.293347px;}
._3a{width:117.208568px;}
._53{width:119.017485px;}
._59{width:123.197512px;}
._38{width:124.977258px;}
._65{width:129.665563px;}
._5e{width:132.676474px;}
._50{width:139.801214px;}
._63{width:142.363755px;}
._37{width:148.653266px;}
._55{width:156.032714px;}
._5d{width:157.811041px;}
._3d{width:164.478289px;}
._52{width:166.784611px;}
._4b{width:171.259095px;}
._62{width:174.559656px;}
._3b{width:176.336931px;}
._60{width:186.652092px;}
._47{width:188.611201px;}
._41{width:206.749805px;}
._4f{width:222.721766px;}
._3c{width:235.403637px;}
._49{width:236.407107px;}
._40{width:242.695410px;}
._4a{width:244.705874px;}
._61{width:249.971117px;}
._42{width:255.750206px;}
._5a{width:257.171123px;}
._36{width:263.350261px;}
._4c{width:265.319181px;}
._66{width:271.440226px;}
._2c{width:282.632963px;}
._43{width:284.838639px;}
._34{width:292.575333px;}
._3f{width:305.383503px;}
._31{width:379.047589px;}
._46{width:383.814838px;}
._48{width:385.296033px;}
._44{width:387.571310px;}
._2d{width:412.363088px;}
._56{width:447.426391px;}
._32{width:462.567658px;}
._4d{width:512.452516px;}
._19{width:551.082828px;}
._33{width:553.549552px;}
._2f{width:559.570483px;}
._30{width:571.615022px;}
._2e{width:702.655131px;}
.fc5{color:rgb(134,142,150);}
.fc4{color:rgb(161,128,114);}
.fc3{color:rgb(52,58,64);}
.fc1{color:rgb(0,0,128);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(30,30,30);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.350666px;}
.fs9{font-size:33.676168px;}
.fsb{font-size:35.605096px;}
.fs6{font-size:35.865600px;}
.fsf{font-size:36.467503px;}
.fs8{font-size:41.329839px;}
.fse{font-size:41.329846px;}
.fs10{font-size:41.842800px;}
.fs16{font-size:42.607676px;}
.fs12{font-size:45.045571px;}
.fs14{font-size:45.089566px;}
.fsd{font-size:46.330146px;}
.fsc{font-size:46.352555px;}
.fs5{font-size:47.820600px;}
.fsa{font-size:51.662303px;}
.fs0{font-size:53.798400px;}
.fs15{font-size:58.319394px;}
.fs4{font-size:59.775600px;}
.fs11{font-size:61.656270px;}
.fs13{font-size:61.716488px;}
.fs1{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y98{bottom:12.788393px;}
.y97{bottom:23.914989px;}
.y94{bottom:33.717558px;}
.y96{bottom:35.041581px;}
.y2{bottom:39.415500px;}
.y1{bottom:52.171500px;}
.y92{bottom:61.525378px;}
.y9f{bottom:66.074765px;}
.y95{bottom:70.303348px;}
.y91{bottom:75.474193px;}
.y3{bottom:84.370500px;}
.y9c{bottom:86.447029px;}
.y90{bottom:89.423017px;}
.y9e{bottom:93.278047px;}
.y9b{bottom:99.362601px;}
.y30{bottom:103.584000px;}
.y71{bottom:109.297500px;}
.y235{bottom:120.022500px;}
.y2f{bottom:123.907500px;}
.y162{bottom:124.240500px;}
.y70{bottom:132.633000px;}
.y194{bottom:133.116000px;}
.y234{bottom:136.461000px;}
.y2e{bottom:144.231000px;}
.y8f{bottom:144.882628px;}
.y9a{bottom:146.350550px;}
.y161{bottom:146.947500px;}
.y233{bottom:152.898000px;}
.y6f{bottom:152.956500px;}
.y193{bottom:153.439500px;}
.y8e{bottom:158.831444px;}
.y99{bottom:159.266122px;}
.y2d{bottom:164.554500px;}
.y201{bottom:165.411000px;}
.y160{bottom:167.271000px;}
.yc0{bottom:171.159000px;}
.y8d{bottom:172.780267px;}
.y6e{bottom:173.280000px;}
.y192{bottom:173.764500px;}
.y296{bottom:175.650000px;}
.ya0{bottom:179.773504px;}
.y232{bottom:182.637000px;}
.y2c{bottom:184.878000px;}
.y200{bottom:185.734500px;}
.y8c{bottom:186.215317px;}
.y266{bottom:187.509000px;}
.y15f{bottom:187.594500px;}
.y6d{bottom:193.603500px;}
.y191{bottom:194.088000px;}
.y8b{bottom:196.012401px;}
.y231{bottom:199.075500px;}
.y93{bottom:203.880814px;}
.y265{bottom:203.947500px;}
.y2b{bottom:205.203000px;}
.y8a{bottom:205.809485px;}
.ybf{bottom:205.980000px;}
.y1ff{bottom:206.058000px;}
.y1d6{bottom:207.900000px;}
.y15e{bottom:207.919500px;}
.y6c{bottom:213.928500px;}
.y190{bottom:214.411500px;}
.y230{bottom:215.514000px;}
.y89{bottom:215.606569px;}
.y264{bottom:220.386000px;}
.y2a{bottom:225.526500px;}
.ybe{bottom:226.305000px;}
.y1fe{bottom:226.381500px;}
.y1d5{bottom:228.223500px;}
.y15d{bottom:228.243000px;}
.yee{bottom:229.978500px;}
.y22f{bottom:231.952500px;}
.y6b{bottom:234.252000px;}
.y18f{bottom:234.735000px;}
.y263{bottom:236.824500px;}
.y9d{bottom:240.010280px;}
.y295{bottom:242.820000px;}
.y29{bottom:245.850000px;}
.ybd{bottom:246.628500px;}
.y1fd{bottom:246.705000px;}
.y22e{bottom:248.389500px;}
.y1d4{bottom:248.547000px;}
.y15c{bottom:248.566500px;}
.y13e{bottom:251.740500px;}
.y262{bottom:253.263000px;}
.y6a{bottom:254.575500px;}
.y18e{bottom:255.058500px;}
.y294{bottom:259.258500px;}
.yed{bottom:262.693500px;}
.y22d{bottom:264.828000px;}
.y28{bottom:266.173500px;}
.ybc{bottom:266.952000px;}
.y1fc{bottom:267.030000px;}
.y1d3{bottom:268.870500px;}
.y15b{bottom:268.890000px;}
.y261{bottom:269.700000px;}
.y69{bottom:274.899000px;}
.y18d{bottom:275.383500px;}
.y293{bottom:275.697000px;}
.y22c{bottom:281.266500px;}
.yec{bottom:283.017000px;}
.y13d{bottom:285.285000px;}
.y25f{bottom:286.138500px;}
.y27{bottom:286.497000px;}
.ybb{bottom:287.275500px;}
.y1fb{bottom:287.353500px;}
.y108{bottom:288.525000px;}
.y1d2{bottom:289.195500px;}
.y15a{bottom:289.213500px;}
.y260{bottom:291.562500px;}
.y292{bottom:292.135500px;}
.y68{bottom:295.222500px;}
.y18c{bottom:295.707000px;}
.y22b{bottom:297.705000px;}
.y25e{bottom:302.577000px;}
.yeb{bottom:303.340500px;}
.y26{bottom:306.822000px;}
.yba{bottom:307.599000px;}
.y1fa{bottom:307.677000px;}
.y291{bottom:308.574000px;}
.y107{bottom:308.848500px;}
.y1bd{bottom:309.156000px;}
.y1d1{bottom:309.519000px;}
.y159{bottom:309.537000px;}
.y67{bottom:315.547500px;}
.y18b{bottom:316.030500px;}
.y13c{bottom:318.966000px;}
.yea{bottom:323.665500px;}
.y25{bottom:327.145500px;}
.y22a{bottom:327.444000px;}
.yb9{bottom:327.924000px;}
.y1f9{bottom:328.000500px;}
.y106{bottom:329.173500px;}
.y1bc{bottom:329.481000px;}
.y1d0{bottom:329.842500px;}
.y158{bottom:329.862000px;}
.yd0{bottom:330.826500px;}
.y66{bottom:335.871000px;}
.y18a{bottom:336.354000px;}
.y25d{bottom:337.188000px;}
.y290{bottom:338.541000px;}
.y13b{bottom:339.289500px;}
.y229{bottom:343.881000px;}
.ye9{bottom:343.989000px;}
.y24{bottom:347.469000px;}
.yb8{bottom:348.247500px;}
.y1f8{bottom:348.324000px;}
.y105{bottom:349.497000px;}
.y1bb{bottom:349.804500px;}
.y1cf{bottom:350.166000px;}
.y157{bottom:350.185500px;}
.y25c{bottom:353.626500px;}
.y28f{bottom:354.979500px;}
.y189{bottom:356.677500px;}
.y228{bottom:360.319500px;}
.ycf{bottom:361.548000px;}
.ye8{bottom:364.312500px;}
.y65{bottom:367.468500px;}
.y23{bottom:367.792500px;}
.yb7{bottom:368.571000px;}
.y1f7{bottom:368.649000px;}
.y104{bottom:369.820500px;}
.y25b{bottom:370.065000px;}
.y1ba{bottom:370.128000px;}
.y1ce{bottom:370.489500px;}
.y156{bottom:370.509000px;}
.y28e{bottom:371.418000px;}
.y13a{bottom:372.972000px;}
.y227{bottom:376.758000px;}
.y188{bottom:377.002500px;}
.yce{bottom:381.871500px;}
.ye7{bottom:384.636000px;}
.y87{bottom:386.038500px;}
.y64{bottom:387.792000px;}
.y22{bottom:388.116000px;}
.yb6{bottom:388.894500px;}
.y1f6{bottom:388.972500px;}
.y103{bottom:390.144000px;}
.y1b9{bottom:390.451500px;}
.y1cd{bottom:390.814500px;}
.y155{bottom:390.832500px;}
.y226{bottom:393.196500px;}
.y139{bottom:393.295500px;}
.y187{bottom:397.326000px;}
.y28d{bottom:401.386500px;}
.ycd{bottom:402.195000px;}
.y25a{bottom:404.674500px;}
.y86{bottom:406.362000px;}
.y63{bottom:408.117000px;}
.y21{bottom:408.441000px;}
.yb5{bottom:409.218000px;}
.y1f5{bottom:409.296000px;}
.y225{bottom:409.635000px;}
.y102{bottom:410.467500px;}
.y1b8{bottom:410.775000px;}
.y1cc{bottom:411.138000px;}
.y154{bottom:411.156000px;}
.y186{bottom:417.649500px;}
.y28c{bottom:417.825000px;}
.y259{bottom:421.113000px;}
.ycc{bottom:422.518500px;}
.ye6{bottom:424.903500px;}
.y224{bottom:426.073500px;}
.y85{bottom:426.685500px;}
.y138{bottom:426.838500px;}
.y62{bottom:428.440500px;}
.y20{bottom:428.764500px;}
.y1f4{bottom:429.619500px;}
.y101{bottom:430.792500px;}
.y1b7{bottom:431.100000px;}
.y1cb{bottom:431.461500px;}
.y153{bottom:431.481000px;}
.y28b{bottom:434.262000px;}
.y258{bottom:437.551500px;}
.y185{bottom:437.973000px;}
.yb4{bottom:441.477000px;}
.ycb{bottom:442.843500px;}
.ye5{bottom:445.228500px;}
.y84{bottom:447.009000px;}
.y137{bottom:447.162000px;}
.y61{bottom:448.764000px;}
.y1f{bottom:449.088000px;}
.y1f3{bottom:449.943000px;}
.y28a{bottom:450.700500px;}
.y100{bottom:451.116000px;}
.y1b6{bottom:451.423500px;}
.y1ca{bottom:451.785000px;}
.y152{bottom:451.804500px;}
.y257{bottom:453.990000px;}
.y223{bottom:455.811000px;}
.y184{bottom:458.296500px;}
.yca{bottom:463.167000px;}
.ye4{bottom:465.552000px;}
.y289{bottom:467.139000px;}
.y83{bottom:467.332500px;}
.y60{bottom:469.087500px;}
.y1e{bottom:469.411500px;}
.y1f2{bottom:470.268000px;}
.y256{bottom:470.428500px;}
.yff{bottom:471.439500px;}
.y1c9{bottom:472.108500px;}
.y151{bottom:472.128000px;}
.y222{bottom:472.249500px;}
.yb3{bottom:478.369500px;}
.y136{bottom:478.486500px;}
.y183{bottom:478.621500px;}
.y1b5{bottom:480.064500px;}
.yc9{bottom:483.490500px;}
.ye3{bottom:485.875500px;}
.y255{bottom:486.867000px;}
.y82{bottom:487.657500px;}
.y221{bottom:488.688000px;}
.y1c8{bottom:489.103500px;}
.y5f{bottom:489.411000px;}
.y1d{bottom:489.735000px;}
.y1f1{bottom:490.591500px;}
.yfe{bottom:491.763000px;}
.y1c7{bottom:492.433500px;}
.y288{bottom:497.107500px;}
.y150{bottom:498.343500px;}
.yb2{bottom:498.694500px;}
.y182{bottom:499.426500px;}
.y1b4{bottom:500.389500px;}
.y254{bottom:503.304000px;}
.ye2{bottom:506.199000px;}
.y81{bottom:507.981000px;}
.yc8{bottom:509.704500px;}
.y5e{bottom:509.736000px;}
.y1c{bottom:510.060000px;}
.y1f0{bottom:510.915000px;}
.yfd{bottom:512.086500px;}
.y1c6{bottom:512.757000px;}
.y287{bottom:513.546000px;}
.y135{bottom:514.090500px;}
.y181{bottom:516.420000px;}
.y220{bottom:518.427000px;}
.yb1{bottom:519.018000px;}
.y253{bottom:519.742500px;}
.y180{bottom:519.750000px;}
.y80{bottom:528.304500px;}
.y1c5{bottom:529.750500px;}
.y286{bottom:529.984500px;}
.y5d{bottom:530.059500px;}
.y1b{bottom:530.383500px;}
.y14f{bottom:531.741000px;}
.y1c4{bottom:533.080500px;}
.y134{bottom:534.414000px;}
.y21f{bottom:534.865500px;}
.yb0{bottom:539.341500px;}
.ye1{bottom:539.823000px;}
.y1b3{bottom:539.845500px;}
.y17f{bottom:540.073500px;}
.yfc{bottom:540.118500px;}
.yc7{bottom:542.518500px;}
.y1ef{bottom:544.404000px;}
.y285{bottom:546.423000px;}
.y7f{bottom:548.628000px;}
.y5c{bottom:550.383000px;}
.y42{bottom:550.707000px;}
.y21e{bottom:551.302500px;}
.y14e{bottom:552.064500px;}
.y1c3{bottom:553.404000px;}
.y252{bottom:554.353500px;}
.y133{bottom:554.737500px;}
.y17e{bottom:557.067000px;}
.y29d{bottom:559.195500px;}
.yaf{bottom:559.665000px;}
.y1b2{bottom:560.170500px;}
.y17d{bottom:560.397000px;}
.y202{bottom:560.859000px;}
.y1a{bottom:561.679500px;}
.y284{bottom:562.860000px;}
.y21d{bottom:567.741000px;}
.y7e{bottom:568.951500px;}
.y251{bottom:570.792000px;}
.y41{bottom:571.030500px;}
.y14d{bottom:572.389500px;}
.y1c2{bottom:573.727500px;}
.ye0{bottom:574.510500px;}
.y132{bottom:575.061000px;}
.yc6{bottom:575.332500px;}
.yfb{bottom:578.511000px;}
.y283{bottom:579.298500px;}
.y29c{bottom:579.519000px;}
.yae{bottom:579.988500px;}
.y1b1{bottom:580.494000px;}
.y17c{bottom:580.722000px;}
.y5b{bottom:581.916000px;}
.y1ee{bottom:583.017000px;}
.y21c{bottom:584.179500px;}
.y250{bottom:587.230500px;}
.y7d{bottom:589.276500px;}
.y40{bottom:591.354000px;}
.y14c{bottom:592.713000px;}
.ydf{bottom:594.835500px;}
.y131{bottom:595.386000px;}
.yc5{bottom:595.656000px;}
.y282{bottom:595.737000px;}
.y19{bottom:597.139500px;}
.yfa{bottom:598.834500px;}
.y29b{bottom:599.842500px;}
.yad{bottom:600.313500px;}
.y21b{bottom:600.618000px;}
.y1b0{bottom:600.817500px;}
.y17b{bottom:601.045500px;}
.y1c1{bottom:603.088500px;}
.y1ed{bottom:603.340500px;}
.y24f{bottom:603.669000px;}
.y7c{bottom:609.600000px;}
.y3f{bottom:611.679000px;}
.y14b{bottom:613.036500px;}
.y18{bottom:615.072000px;}
.yde{bottom:615.159000px;}
.y130{bottom:615.709500px;}
.yc4{bottom:615.981000px;}
.y5a{bottom:617.794500px;}
.yf9{bottom:619.158000px;}
.y29a{bottom:620.166000px;}
.yac{bottom:620.637000px;}
.y1af{bottom:621.141000px;}
.y17a{bottom:621.369000px;}
.y1c0{bottom:623.412000px;}
.y1ec{bottom:623.664000px;}
.y281{bottom:625.705500px;}
.y7b{bottom:629.923500px;}
.y21a{bottom:630.357000px;}
.y3e{bottom:632.002500px;}
.y17{bottom:633.006000px;}
.y14a{bottom:633.360000px;}
.ydd{bottom:635.482500px;}
.y12f{bottom:636.033000px;}
.yc3{bottom:636.304500px;}
.y59{bottom:638.118000px;}
.y24e{bottom:638.278500px;}
.yf8{bottom:639.481500px;}
.y299{bottom:640.491000px;}
.yab{bottom:640.960500px;}
.y1ae{bottom:641.464500px;}
.y179{bottom:641.692500px;}
.y280{bottom:642.144000px;}
.y1eb{bottom:643.987500px;}
.y219{bottom:646.795500px;}
.y7a{bottom:650.247000px;}
.y16{bottom:650.938500px;}
.y3d{bottom:652.326000px;}
.y149{bottom:653.683500px;}
.y24d{bottom:654.717000px;}
.ydc{bottom:655.806000px;}
.yc2{bottom:656.628000px;}
.y58{bottom:658.441500px;}
.y27f{bottom:658.582500px;}
.yaa{bottom:661.284000px;}
.y298{bottom:661.411500px;}
.y1ad{bottom:661.789500px;}
.y178{bottom:662.016000px;}
.y11e{bottom:662.485500px;}
.y218{bottom:663.232500px;}
.y1bf{bottom:664.123500px;}
.y1ea{bottom:664.311000px;}
.y12e{bottom:667.357500px;}
.y15{bottom:668.871000px;}
.y79{bottom:670.570500px;}
.y24c{bottom:671.155500px;}
.y3c{bottom:672.649500px;}
.y148{bottom:674.008500px;}
.y27e{bottom:675.019500px;}
.ydb{bottom:676.129500px;}
.y217{bottom:679.671000px;}
.ya9{bottom:681.607500px;}
.y1ac{bottom:682.113000px;}
.yf7{bottom:682.326000px;}
.y177{bottom:682.341000px;}
.y11d{bottom:682.809000px;}
.y1be{bottom:684.448500px;}
.y1e9{bottom:684.636000px;}
.y14{bottom:686.803500px;}
.y24b{bottom:687.594000px;}
.y12d{bottom:687.681000px;}
.yc1{bottom:689.442000px;}
.y78{bottom:690.895500px;}
.y27d{bottom:691.458000px;}
.y57{bottom:692.479500px;}
.y3b{bottom:692.973000px;}
.y147{bottom:694.332000px;}
.y216{bottom:696.109500px;}
.yda{bottom:696.454500px;}
.y297{bottom:696.559500px;}
.ya8{bottom:701.932500px;}
.y11c{bottom:703.132500px;}
.y13{bottom:704.736000px;}
.y1ab{bottom:704.772000px;}
.y176{bottom:707.302500px;}
.y27c{bottom:707.896500px;}
.y12c{bottom:708.004500px;}
.y77{bottom:711.219000px;}
.y56{bottom:712.803000px;}
.y3a{bottom:713.298000px;}
.y146{bottom:714.655500px;}
.yd9{bottom:716.778000px;}
.y24a{bottom:722.203500px;}
.ya7{bottom:722.256000px;}
.y12{bottom:722.668500px;}
.y27b{bottom:724.335000px;}
.y1aa{bottom:725.095500px;}
.yf6{bottom:725.172000px;}
.y215{bottom:725.848500px;}
.y175{bottom:727.626000px;}
.y12b{bottom:728.328000px;}
.y76{bottom:731.542500px;}
.y55{bottom:733.126500px;}
.y11b{bottom:733.615500px;}
.y39{bottom:733.621500px;}
.y145{bottom:734.979000px;}
.yd8{bottom:737.101500px;}
.y1e8{bottom:738.420904px;}
.y249{bottom:738.642000px;}
.y11{bottom:740.602500px;}
.y214{bottom:742.287000px;}
.ya6{bottom:742.579500px;}
.y1a9{bottom:745.419000px;}
.yf5{bottom:745.495500px;}
.y12a{bottom:748.651500px;}
.y75{bottom:751.866000px;}
.y54{bottom:753.450000px;}
.y38{bottom:753.945000px;}
.y27a{bottom:754.303500px;}
.y174{bottom:754.797000px;}
.y248{bottom:755.080500px;}
.y144{bottom:755.302500px;}
.y1e7{bottom:756.726739px;}
.yd7{bottom:757.425000px;}
.y10{bottom:758.535000px;}
.y213{bottom:758.724000px;}
.ya5{bottom:762.903000px;}
.y1a8{bottom:765.742500px;}
.yf4{bottom:765.819000px;}
.y11a{bottom:768.378000px;}
.y129{bottom:768.976500px;}
.y279{bottom:770.742000px;}
.y247{bottom:771.519000px;}
.y74{bottom:772.189500px;}
.y37{bottom:774.268500px;}
.y1e6{bottom:775.032574px;}
.y212{bottom:775.162500px;}
.y143{bottom:775.627500px;}
.yf{bottom:776.467500px;}
.yd6{bottom:777.748500px;}
.ya4{bottom:783.226500px;}
.y1a7{bottom:786.067500px;}
.yf3{bottom:786.142500px;}
.y278{bottom:787.180500px;}
.y53{bottom:787.488000px;}
.y246{bottom:787.957500px;}
.y119{bottom:788.701500px;}
.y128{bottom:789.300000px;}
.y173{bottom:790.042500px;}
.y211{bottom:791.601000px;}
.y1e5{bottom:793.338409px;}
.ye{bottom:794.400000px;}
.y36{bottom:794.592000px;}
.y142{bottom:795.951000px;}
.yd5{bottom:798.073500px;}
.ya3{bottom:803.551500px;}
.y245{bottom:804.396000px;}
.y1a6{bottom:806.391000px;}
.yf2{bottom:806.466000px;}
.y52{bottom:807.811500px;}
.y210{bottom:808.039500px;}
.y118{bottom:809.025000px;}
.y127{bottom:809.623500px;}
.y172{bottom:810.367500px;}
.y1e4{bottom:811.644244px;}
.yd{bottom:812.332500px;}
.y35{bottom:814.917000px;}
.y141{bottom:816.274500px;}
.y277{bottom:817.147500px;}
.yd4{bottom:818.397000px;}
.y244{bottom:820.834500px;}
.ya2{bottom:823.875000px;}
.y20f{bottom:824.478000px;}
.y1a5{bottom:826.714500px;}
.y51{bottom:828.136500px;}
.yf1{bottom:828.817500px;}
.y117{bottom:829.348500px;}
.y126{bottom:829.947000px;}
.yc{bottom:830.265000px;}
.y1e3{bottom:830.285537px;}
.y170{bottom:830.691000px;}
.y276{bottom:833.586000px;}
.y34{bottom:835.240500px;}
.y171{bottom:836.629500px;}
.yd3{bottom:838.720500px;}
.y140{bottom:842.488500px;}
.yb{bottom:848.199000px;}
.y50{bottom:848.460000px;}
.yf0{bottom:849.142500px;}
.y116{bottom:849.673500px;}
.y275{bottom:850.024500px;}
.y20e{bottom:850.936500px;}
.y16f{bottom:851.014500px;}
.y243{bottom:855.444000px;}
.y33{bottom:855.564000px;}
.yd2{bottom:859.044000px;}
.y1e2{bottom:863.817000px;}
.ya{bottom:866.131500px;}
.y274{bottom:866.463000px;}
.y125{bottom:869.439000px;}
.y115{bottom:869.997000px;}
.y16e{bottom:871.338000px;}
.y242{bottom:871.882500px;}
.ya1{bottom:875.581500px;}
.y32{bottom:875.887500px;}
.y1e1{bottom:879.508500px;}
.y1a4{bottom:880.841910px;}
.y1e0{bottom:881.749500px;}
.y4f{bottom:882.498000px;}
.y273{bottom:882.901500px;}
.yd1{bottom:883.821000px;}
.y9{bottom:884.064000px;}
.y241{bottom:888.321000px;}
.y124{bottom:889.762500px;}
.y114{bottom:890.320500px;}
.y16d{bottom:891.661500px;}
.yef{bottom:891.987000px;}
.y31{bottom:896.211000px;}
.y272{bottom:899.340000px;}
.y1a3{bottom:900.195155px;}
.y4e{bottom:902.821500px;}
.y88{bottom:903.078000px;}
.y240{bottom:904.759500px;}
.y20d{bottom:905.563500px;}
.y123{bottom:910.086000px;}
.y113{bottom:910.644000px;}
.y271{bottom:915.778500px;}
.y8{bottom:916.536000px;}
.y1df{bottom:918.548696px;}
.y1a2{bottom:919.548400px;}
.y23f{bottom:921.198000px;}
.y4d{bottom:923.145000px;}
.y20c{bottom:925.887000px;}
.y122{bottom:930.409500px;}
.y112{bottom:930.967500px;}
.y270{bottom:932.215500px;}
.y73{bottom:936.859500px;}
.y1de{bottom:937.711520px;}
.y1a1{bottom:939.254883px;}
.y4c{bottom:943.468500px;}
.y16c{bottom:945.646500px;}
.y20b{bottom:946.212000px;}
.y121{bottom:950.733000px;}
.y111{bottom:951.292500px;}
.y23e{bottom:955.807500px;}
.y1dd{bottom:957.083667px;}
.y72{bottom:957.183000px;}
.y1a0{bottom:958.399010px;}
.y26f{bottom:962.184000px;}
.y16b{bottom:965.970000px;}
.y20a{bottom:966.535500px;}
.y120{bottom:971.058000px;}
.y110{bottom:971.616000px;}
.y23d{bottom:972.246000px;}
.y1dc{bottom:976.455813px;}
.y4b{bottom:977.506500px;}
.y19f{bottom:977.544551px;}
.y26e{bottom:978.622500px;}
.y16a{bottom:986.293500px;}
.y209{bottom:986.859000px;}
.y23c{bottom:988.684500px;}
.y10f{bottom:991.939500px;}
.y26d{bottom:995.061000px;}
.y1db{bottom:996.181544px;}
.y19e{bottom:996.688678px;}
.y4a{bottom:997.830000px;}
.y11f{bottom:1004.566500px;}
.y23b{bottom:1005.123000px;}
.y169{bottom:1006.618500px;}
.y208{bottom:1007.182500px;}
.y26c{bottom:1011.499500px;}
.y10e{bottom:1012.263000px;}
.y1da{bottom:1015.344369px;}
.y19d{bottom:1015.832805px;}
.y49{bottom:1018.155000px;}
.y7{bottom:1020.178500px;}
.y23a{bottom:1021.561500px;}
.y168{bottom:1026.942000px;}
.y207{bottom:1027.506000px;}
.y26b{bottom:1027.938000px;}
.y10d{bottom:1032.586500px;}
.y1d9{bottom:1034.716515px;}
.y19c{bottom:1034.976932px;}
.y48{bottom:1038.478500px;}
.y6{bottom:1041.100500px;}
.y26a{bottom:1044.376500px;}
.y167{bottom:1047.265500px;}
.y206{bottom:1047.831000px;}
.y10c{bottom:1052.911500px;}
.y1d8{bottom:1054.088662px;}
.y19b{bottom:1054.121060px;}
.y239{bottom:1056.171000px;}
.y47{bottom:1058.802000px;}
.y269{bottom:1060.813500px;}
.y5{bottom:1062.021000px;}
.y13f{bottom:1064.740500px;}
.y166{bottom:1067.589000px;}
.y205{bottom:1068.154500px;}
.y238{bottom:1072.609500px;}
.y10b{bottom:1073.235000px;}
.y1d7{bottom:1073.815806px;}
.y19a{bottom:1073.828956px;}
.y46{bottom:1079.125500px;}
.y165{bottom:1087.912500px;}
.y204{bottom:1088.478000px;}
.y237{bottom:1089.048000px;}
.y268{bottom:1090.782000px;}
.y10a{bottom:1093.558500px;}
.y45{bottom:1099.449000px;}
.y267{bottom:1107.220500px;}
.y199{bottom:1108.117500px;}
.y203{bottom:1108.801500px;}
.y164{bottom:1108.834500px;}
.y109{bottom:1113.882000px;}
.y44{bottom:1119.774000px;}
.y198{bottom:1123.351500px;}
.y236{bottom:1123.659000px;}
.y197{bottom:1126.050000px;}
.y4{bottom:1128.208500px;}
.y43{bottom:1140.097500px;}
.y196{bottom:1141.284000px;}
.y195{bottom:1141.741500px;}
.y163{bottom:1143.982500px;}
.he{height:22.952171px;}
.h10{height:24.044784px;}
.h16{height:26.037797px;}
.h12{height:26.066887px;}
.hf{height:29.509505px;}
.h15{height:29.509510px;}
.hc{height:29.911910px;}
.h13{height:30.258035px;}
.h22{height:31.382100px;}
.h23{height:34.896895px;}
.h21{height:35.865450px;}
.h20{height:36.098726px;}
.h14{height:36.512739px;}
.h11{height:36.886884px;}
.h2{height:37.013299px;}
.h1f{height:39.882380px;}
.h29{height:40.823576px;}
.h2c{height:41.006062px;}
.h24{height:43.159389px;}
.h27{height:43.201541px;}
.ha{height:43.920037px;}
.h1b{height:44.247310px;}
.h3{height:45.032765px;}
.h17{height:45.818220px;}
.h19{height:46.145493px;}
.h7{height:48.131635px;}
.h2a{height:48.638375px;}
.h18{height:49.090950px;}
.h8{height:49.852850px;}
.h5{height:50.211840px;}
.h2d{height:50.446850px;}
.h25{height:51.421329px;}
.h28{height:51.471551px;}
.h9{height:54.589136px;}
.h2b{height:55.243136px;}
.h1d{height:56.935496px;}
.h1c{height:56.941496px;}
.h6{height:59.823821px;}
.h1a{height:60.211496px;}
.h1e{height:60.217496px;}
.h4{height:60.254040px;}
.h26{height:62.410950px;}
.hb{height:63.630380px;}
.hd{height:253.462838px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:680.322449px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:10.701304px;}
.x31{left:14.980023px;}
.x36{left:15.988917px;}
.x33{left:21.114924px;}
.x32{left:26.604036px;}
.x7{left:101.251500px;}
.x4{left:106.299000px;}
.x84{left:108.525000px;}
.x77{left:110.155128px;}
.x5{left:117.868500px;}
.xa{left:122.662500px;}
.x22{left:125.827500px;}
.x51{left:127.230000px;}
.x50{left:129.685500px;}
.x9{left:131.811000px;}
.x38{left:133.683000px;}
.x23{left:138.258000px;}
.x45{left:139.554000px;}
.x68{left:141.423000px;}
.x78{left:150.346500px;}
.x69{left:153.228000px;}
.x7b{left:154.849500px;}
.x52{left:168.648000px;}
.x1{left:181.567500px;}
.x34{left:183.410852px;}
.x47{left:188.116500px;}
.x43{left:189.130500px;}
.x48{left:196.639500px;}
.x83{left:207.057000px;}
.x79{left:220.570500px;}
.x35{left:223.844547px;}
.x7a{left:232.683000px;}
.x8{left:236.637000px;}
.x54{left:244.066500px;}
.x49{left:245.731500px;}
.x2{left:251.719500px;}
.x4a{left:254.254500px;}
.x6{left:256.182000px;}
.x63{left:264.924000px;}
.x2c{left:267.751463px;}
.x27{left:273.026544px;}
.x2d{left:274.324858px;}
.x64{left:277.789500px;}
.x2a{left:282.528386px;}
.x4b{left:295.162500px;}
.x75{left:300.604500px;}
.x4e{left:312.144000px;}
.x28{left:321.449588px;}
.x2b{left:325.227280px;}
.x26{left:327.333935px;}
.x29{left:329.014134px;}
.x46{left:330.334500px;}
.x4c{left:332.085000px;}
.x44{left:335.613000px;}
.x76{left:355.176000px;}
.x4d{left:369.111000px;}
.x4f{left:397.795500px;}
.x53{left:410.544000px;}
.x62{left:421.866000px;}
.x3{left:431.794500px;}
.x66{left:452.824500px;}
.xc{left:456.757500px;}
.xb{left:459.213000px;}
.x7f{left:462.135000px;}
.x61{left:467.434500px;}
.x80{left:468.838500px;}
.x24{left:470.991049px;}
.x14{left:475.576500px;}
.x71{left:478.191000px;}
.x42{left:479.767500px;}
.x65{left:482.598000px;}
.x5c{left:484.575000px;}
.x12{left:486.415500px;}
.x1e{left:487.557000px;}
.x67{left:491.940000px;}
.x6f{left:494.271000px;}
.x30{left:499.801885px;}
.x15{left:501.255000px;}
.x5d{left:505.407000px;}
.x6c{left:507.763500px;}
.x3e{left:516.523500px;}
.xd{left:522.213000px;}
.x70{left:525.651000px;}
.x59{left:527.509500px;}
.x25{left:531.537038px;}
.x3f{left:540.063000px;}
.x2e{left:541.254049px;}
.x6a{left:545.004000px;}
.x2f{left:546.756135px;}
.x1b{left:548.895000px;}
.x6d{left:556.417500px;}
.x3d{left:567.514500px;}
.x5e{left:578.998500px;}
.x7d{left:581.724000px;}
.x16{left:583.074000px;}
.x1f{left:585.991500px;}
.x17{left:592.419000px;}
.x39{left:593.470500px;}
.x13{left:598.312500px;}
.x7e{left:614.650500px;}
.x20{left:623.562000px;}
.x6e{left:628.653000px;}
.x57{left:633.822000px;}
.x72{left:636.273000px;}
.x10{left:641.764500px;}
.x18{left:646.465500px;}
.x58{left:649.761000px;}
.x21{left:660.369000px;}
.x73{left:665.682000px;}
.x55{left:667.674000px;}
.x40{left:670.966500px;}
.x19{left:675.523500px;}
.xe{left:678.931500px;}
.x56{left:680.539500px;}
.x1c{left:683.803500px;}
.x41{left:687.759000px;}
.x74{left:693.355500px;}
.x1d{left:695.068500px;}
.x7c{left:696.099000px;}
.x3a{left:704.112000px;}
.x11{left:711.322500px;}
.x1a{left:721.387500px;}
.x3b{left:724.473000px;}
.x5a{left:732.457500px;}
.x81{left:735.889500px;}
.x3c{left:740.694000px;}
.x82{left:746.314500px;}
.xf{left:749.527500px;}
.x5f{left:753.183000px;}
.x60{left:767.431500px;}
.x6b{left:779.889000px;}
.x5b{left:784.486500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v6{vertical-align:-11.152925pt;}
.v4{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.051569pt;}
.v7{vertical-align:11.840000pt;}
.v1{vertical-align:21.109333pt;}
.v5{vertical-align:24.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.002405pt;}
.ls2d{letter-spacing:0.002411pt;}
.ls48{letter-spacing:0.002717pt;}
.ls4d{letter-spacing:0.003791pt;}
.ls53{letter-spacing:0.003795pt;}
.ls20{letter-spacing:0.003856pt;}
.ls47{letter-spacing:0.004025pt;}
.ls21{letter-spacing:0.004321pt;}
.ls4c{letter-spacing:0.004777pt;}
.ls5b{letter-spacing:2.365304pt;}
.ls59{letter-spacing:2.370056pt;}
.ls12{letter-spacing:2.653258pt;}
.ls22{letter-spacing:2.654275pt;}
.ls52{letter-spacing:2.654692pt;}
.ls8{letter-spacing:2.657067pt;}
.ls17{letter-spacing:2.658591pt;}
.ls25{letter-spacing:2.659608pt;}
.ls34{letter-spacing:3.348813pt;}
.ls2c{letter-spacing:3.354146pt;}
.ls14{letter-spacing:3.791684pt;}
.ls3c{letter-spacing:4.166753pt;}
.ls29{letter-spacing:6.341771pt;}
.ls1e{letter-spacing:6.347104pt;}
.ls18{letter-spacing:9.693077pt;}
.ls13{letter-spacing:9.698411pt;}
.lse{letter-spacing:12.276374pt;}
.lsa{letter-spacing:13.265466pt;}
.ls10{letter-spacing:13.519839pt;}
.ls3{letter-spacing:14.080012pt;}
.ls49{letter-spacing:14.196375pt;}
.ls4a{letter-spacing:14.312739pt;}
.ls3f{letter-spacing:14.370921pt;}
.ls7{letter-spacing:14.487285pt;}
.ls37{letter-spacing:14.541077pt;}
.ls1a{letter-spacing:14.545467pt;}
.ls2e{letter-spacing:14.546411pt;}
.ls2f{letter-spacing:14.548321pt;}
.lsc{letter-spacing:14.661830pt;}
.ls0{letter-spacing:14.720012pt;}
.ls51{letter-spacing:14.836376pt;}
.lsf{letter-spacing:14.844835pt;}
.ls3d{letter-spacing:14.894558pt;}
.ls9{letter-spacing:15.243649pt;}
.ls1{letter-spacing:16.116377pt;}
.ls1b{letter-spacing:16.157077pt;}
.ls38{letter-spacing:16.158988pt;}
.ls1d{letter-spacing:16.159467pt;}
.ls33{letter-spacing:16.159483pt;}
.ls36{letter-spacing:16.161438pt;}
.ls24{letter-spacing:16.162411pt;}
.ls32{letter-spacing:16.163856pt;}
.ls56{letter-spacing:16.216474pt;}
.ls57{letter-spacing:16.221503pt;}
.ls35{letter-spacing:17.203608pt;}
.ls6{letter-spacing:17.454560pt;}
.lsb{letter-spacing:17.803651pt;}
.lsd{letter-spacing:18.094561pt;}
.ls40{letter-spacing:18.385470pt;}
.ls2{letter-spacing:18.501834pt;}
.ls65{letter-spacing:18.964228pt;}
.ls60{letter-spacing:19.121134pt;}
.ls62{letter-spacing:19.125142pt;}
.ls63{letter-spacing:19.125585pt;}
.ls64{letter-spacing:19.129979pt;}
.ls3a{letter-spacing:19.141834pt;}
.ls3b{letter-spacing:19.200016pt;}
.ls5c{letter-spacing:19.316380pt;}
.ls67{letter-spacing:19.395865pt;}
.ls5e{letter-spacing:19.628892pt;}
.ls16{letter-spacing:19.972811pt;}
.ls1c{letter-spacing:20.326753pt;}
.ls43{letter-spacing:20.770926pt;}
.ls5d{letter-spacing:21.236381pt;}
.ls2b{letter-spacing:21.370149pt;}
.ls27{letter-spacing:21.374988pt;}
.ls28{letter-spacing:21.375483pt;}
.ls2a{letter-spacing:21.379856pt;}
.ls50{letter-spacing:21.585473pt;}
.ls11{letter-spacing:21.884087pt;}
.ls42{letter-spacing:22.400019pt;}
.ls41{letter-spacing:24.378202pt;}
.ls4{letter-spacing:24.785475pt;}
.ls46{letter-spacing:25.832749pt;}
.ls45{letter-spacing:25.890931pt;}
.ls44{letter-spacing:26.298204pt;}
.ls15{letter-spacing:26.320438pt;}
.ls3e{letter-spacing:26.487925pt;}
.ls61{letter-spacing:26.542542pt;}
.ls4b{letter-spacing:26.763659pt;}
.ls30{letter-spacing:28.788321pt;}
.ls31{letter-spacing:28.788816pt;}
.ls39{letter-spacing:29.966275pt;}
.ls19{letter-spacing:35.435104pt;}
.ls66{letter-spacing:54.752222pt;}
.ls26{letter-spacing:71.159739pt;}
.ls5f{letter-spacing:105.141909pt;}
.ls54{letter-spacing:190.387115pt;}
.ls4e{letter-spacing:192.542459pt;}
.ls55{letter-spacing:261.362846pt;}
.ls4f{letter-spacing:263.448937pt;}
.ls5a{letter-spacing:313.033321pt;}
.ls1f{letter-spacing:323.784941pt;}
.ls58{letter-spacing:380.102296pt;}
.ws9c{word-spacing:-58.181867pt;}
.ws7f{word-spacing:-48.523677pt;}
.ws9b{word-spacing:-29.090933pt;}
.ws53{word-spacing:-23.910400pt;}
.ws11f{word-spacing:-15.940267pt;}
.ws15{word-spacing:-14.545467pt;}
.wsff{word-spacing:-13.714775pt;}
.wse9{word-spacing:-13.701393pt;}
.ws139{word-spacing:-13.283467pt;}
.ws10a{word-spacing:-12.959865pt;}
.wsf2{word-spacing:-10.626800pt;}
.wsfc{word-spacing:-10.019903pt;}
.wse4{word-spacing:-10.010127pt;}
.ws6d{word-spacing:-9.588524pt;}
.ws6c{word-spacing:-9.588523pt;}
.ws10c{word-spacing:-9.468373pt;}
.wsdb{word-spacing:-9.298400pt;}
.ws28{word-spacing:-6.109096pt;}
.ws98{word-spacing:-5.120004pt;}
.wsbc{word-spacing:-4.072731pt;}
.ws9d{word-spacing:-3.374548pt;}
.wsb6{word-spacing:-3.083639pt;}
.wsb7{word-spacing:-3.025457pt;}
.ws73{word-spacing:-2.909093pt;}
.wsf1{word-spacing:-2.850911pt;}
.wsf8{word-spacing:-2.676366pt;}
.ws151{word-spacing:-2.656693pt;}
.ws1b{word-spacing:-2.501820pt;}
.wsbe{word-spacing:-2.443638pt;}
.ws81{word-spacing:-2.385457pt;}
.wsc5{word-spacing:-2.286765pt;}
.ws72{word-spacing:-2.269093pt;}
.wsd{word-spacing:-2.178489pt;}
.ws9a{word-spacing:-2.152729pt;}
.ws12a{word-spacing:-2.072221pt;}
.wsf5{word-spacing:-1.978183pt;}
.wsb3{word-spacing:-1.920002pt;}
.wsa8{word-spacing:-1.861820pt;}
.wsa9{word-spacing:-1.803638pt;}
.ws37{word-spacing:-1.687274pt;}
.ws135{word-spacing:-1.647150pt;}
.wsf6{word-spacing:-1.454547pt;}
.ws11e{word-spacing:-1.396365pt;}
.ws59{word-spacing:-1.338183pt;}
.ws15a{word-spacing:-1.275213pt;}
.ws167{word-spacing:-1.168945pt;}
.ws83{word-spacing:-1.163637pt;}
.wsa7{word-spacing:-1.105455pt;}
.ws58{word-spacing:-0.989092pt;}
.ws35{word-spacing:-0.930910pt;}
.ws8a{word-spacing:-0.814546pt;}
.ws39{word-spacing:-0.698182pt;}
.ws95{word-spacing:-0.640001pt;}
.wsd4{word-spacing:-0.581819pt;}
.wsf0{word-spacing:-0.523637pt;}
.ws107{word-spacing:-0.478205pt;}
.ws21{word-spacing:-0.465455pt;}
.ws108{word-spacing:-0.425071pt;}
.ws20{word-spacing:-0.407273pt;}
.wse{word-spacing:-0.371937pt;}
.ws3b{word-spacing:-0.349091pt;}
.ws121{word-spacing:-0.318803pt;}
.ws24{word-spacing:-0.290909pt;}
.ws9{word-spacing:-0.265669pt;}
.ws4a{word-spacing:-0.232727pt;}
.ws6{word-spacing:-0.212535pt;}
.ws125{word-spacing:-0.182894pt;}
.ws1f{word-spacing:-0.174546pt;}
.wsc{word-spacing:-0.159402pt;}
.ws27{word-spacing:-0.116364pt;}
.ws13a{word-spacing:-0.111676pt;}
.wsdc{word-spacing:-0.106268pt;}
.ws44{word-spacing:-0.075774pt;}
.ws18{word-spacing:-0.058182pt;}
.wsd9{word-spacing:-0.053134pt;}
.ws16b{word-spacing:-0.053003pt;}
.ws132{word-spacing:-0.044611pt;}
.wsd5{word-spacing:-0.042507pt;}
.ws100{word-spacing:-0.040080pt;}
.wsea{word-spacing:-0.040041pt;}
.ws10b{word-spacing:-0.037873pt;}
.wsdd{word-spacing:-0.037194pt;}
.ws14f{word-spacing:-0.004377pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.053134pt;}
.ws19{word-spacing:0.058182pt;}
.ws1{word-spacing:0.076513pt;}
.ws153{word-spacing:0.101180pt;}
.ws179{word-spacing:0.103721pt;}
.ws3{word-spacing:0.106268pt;}
.ws1a{word-spacing:0.116364pt;}
.ws13d{word-spacing:0.139809pt;}
.wsa{word-spacing:0.159402pt;}
.ws3c{word-spacing:0.174546pt;}
.ws7{word-spacing:0.212535pt;}
.ws12{word-spacing:0.232727pt;}
.ws8{word-spacing:0.265669pt;}
.ws1d{word-spacing:0.290909pt;}
.ws5e{word-spacing:0.349091pt;}
.ws162{word-spacing:0.371937pt;}
.ws163{word-spacing:0.382748pt;}
.wsb5{word-spacing:0.407273pt;}
.ws8e{word-spacing:0.465455pt;}
.ws80{word-spacing:0.523637pt;}
.ws23{word-spacing:0.581819pt;}
.ws150{word-spacing:0.584473pt;}
.ws57{word-spacing:0.640001pt;}
.ws56{word-spacing:0.698182pt;}
.wsad{word-spacing:0.756364pt;}
.ws55{word-spacing:0.814546pt;}
.ws169{word-spacing:0.850142pt;}
.ws2c{word-spacing:0.872728pt;}
.ws33{word-spacing:0.930910pt;}
.wsa6{word-spacing:0.989092pt;}
.ws176{word-spacing:1.115811pt;}
.ws5a{word-spacing:1.163637pt;}
.ws5f{word-spacing:1.221819pt;}
.wsc3{word-spacing:1.280001pt;}
.ws4{word-spacing:1.328347pt;}
.wsac{word-spacing:1.338183pt;}
.wsd7{word-spacing:1.396365pt;}
.wsc0{word-spacing:1.454547pt;}
.ws14a{word-spacing:1.487748pt;}
.ws17{word-spacing:1.512729pt;}
.ws16f{word-spacing:1.540882pt;}
.wsf4{word-spacing:1.570910pt;}
.ws84{word-spacing:1.615438pt;}
.ws82{word-spacing:1.618800pt;}
.ws30{word-spacing:1.629092pt;}
.ws54{word-spacing:1.687274pt;}
.wsb{word-spacing:1.700284pt;}
.ws7a{word-spacing:1.745456pt;}
.ws11b{word-spacing:1.803638pt;}
.ws140{word-spacing:1.859685pt;}
.ws3d{word-spacing:1.920002pt;}
.ws49{word-spacing:1.978183pt;}
.ws3e{word-spacing:2.036365pt;}
.ws158{word-spacing:2.072221pt;}
.ws25{word-spacing:2.094547pt;}
.ws3a{word-spacing:2.152729pt;}
.ws141{word-spacing:2.178489pt;}
.ws64{word-spacing:2.210911pt;}
.wsed{word-spacing:2.269093pt;}
.wsaf{word-spacing:2.327275pt;}
.ws16d{word-spacing:2.337890pt;}
.wsbd{word-spacing:2.385457pt;}
.wsab{word-spacing:2.443638pt;}
.wsa0{word-spacing:2.501820pt;}
.ws138{word-spacing:2.550426pt;}
.ws74{word-spacing:2.618184pt;}
.ws5{word-spacing:2.656693pt;}
.ws6e{word-spacing:2.676366pt;}
.ws2d{word-spacing:2.734548pt;}
.wsd1{word-spacing:2.792730pt;}
.ws46{word-spacing:2.909093pt;}
.ws13f{word-spacing:2.975497pt;}
.ws34{word-spacing:3.025457pt;}
.wsef{word-spacing:3.083639pt;}
.ws5b{word-spacing:3.141821pt;}
.ws66{word-spacing:3.200003pt;}
.ws61{word-spacing:3.258185pt;}
.ws4d{word-spacing:3.316366pt;}
.ws26{word-spacing:3.374548pt;}
.wsda{word-spacing:3.400567pt;}
.ws70{word-spacing:3.432730pt;}
.ws71{word-spacing:3.490912pt;}
.ws68{word-spacing:3.549094pt;}
.ws11{word-spacing:3.607276pt;}
.ws14b{word-spacing:3.671468pt;}
.ws38{word-spacing:3.723639pt;}
.ws96{word-spacing:3.750130pt;}
.ws62{word-spacing:3.840003pt;}
.ws76{word-spacing:3.890656pt;}
.ws1e{word-spacing:3.898185pt;}
.ws47{word-spacing:3.956367pt;}
.ws5d{word-spacing:4.014549pt;}
.ws7b{word-spacing:4.072731pt;}
.ws16a{word-spacing:4.091308pt;}
.wsa4{word-spacing:4.130913pt;}
.ws160{word-spacing:4.144442pt;}
.ws13c{word-spacing:4.197575pt;}
.ws93{word-spacing:4.247276pt;}
.ws60{word-spacing:4.305458pt;}
.wsae{word-spacing:4.421822pt;}
.ws67{word-spacing:4.480004pt;}
.ws145{word-spacing:4.516379pt;}
.ws89{word-spacing:4.538186pt;}
.wsb2{word-spacing:4.596367pt;}
.wsb1{word-spacing:4.654549pt;}
.wsc4{word-spacing:4.712731pt;}
.ws11c{word-spacing:4.770913pt;}
.ws92{word-spacing:4.829095pt;}
.ws94{word-spacing:4.887277pt;}
.ws16{word-spacing:4.945459pt;}
.ws22{word-spacing:5.003641pt;}
.wsb4{word-spacing:5.120004pt;}
.ws52{word-spacing:5.236368pt;}
.ws161{word-spacing:5.260253pt;}
.wsf7{word-spacing:5.294550pt;}
.ws51{word-spacing:5.352732pt;}
.ws16c{word-spacing:5.419654pt;}
.ws14{word-spacing:5.469095pt;}
.ws7d{word-spacing:5.527277pt;}
.ws48{word-spacing:5.585459pt;}
.ws144{word-spacing:5.685324pt;}
.wsaa{word-spacing:5.701823pt;}
.ws6f{word-spacing:5.760005pt;}
.ws148{word-spacing:5.791591pt;}
.ws120{word-spacing:5.818187pt;}
.wsb0{word-spacing:5.876369pt;}
.ws75{word-spacing:5.934550pt;}
.ws9f{word-spacing:5.992732pt;}
.ws50{word-spacing:6.013435pt;}
.ws7c{word-spacing:6.109096pt;}
.ws170{word-spacing:6.110395pt;}
.ws2b{word-spacing:6.225460pt;}
.wsc9{word-spacing:6.283642pt;}
.wsa2{word-spacing:6.400005pt;}
.ws65{word-spacing:6.458187pt;}
.ws2a{word-spacing:6.516369pt;}
.ws3f{word-spacing:6.574551pt;}
.ws11d{word-spacing:6.632733pt;}
.wsc2{word-spacing:6.690915pt;}
.ws36{word-spacing:6.807278pt;}
.ws174{word-spacing:6.854269pt;}
.ws8f{word-spacing:6.865460pt;}
.ws42{word-spacing:6.981824pt;}
.ws157{word-spacing:7.013670pt;}
.ws32{word-spacing:7.040006pt;}
.ws152{word-spacing:7.119938pt;}
.wsa5{word-spacing:7.156370pt;}
.wsb8{word-spacing:7.214551pt;}
.wsfa{word-spacing:7.272733pt;}
.ws178{word-spacing:7.438741pt;}
.ws6b{word-spacing:7.447279pt;}
.ws6a{word-spacing:7.505461pt;}
.ws15e{word-spacing:7.545009pt;}
.wsb9{word-spacing:7.558133pt;}
.ws63{word-spacing:7.563643pt;}
.ws4b{word-spacing:7.621825pt;}
.ws13{word-spacing:7.680006pt;}
.ws130{word-spacing:7.704411pt;}
.ws90{word-spacing:7.738188pt;}
.ws136{word-spacing:7.810678pt;}
.wsc8{word-spacing:7.854552pt;}
.ws91{word-spacing:8.029098pt;}
.ws2e{word-spacing:8.087279pt;}
.wsf9{word-spacing:8.145461pt;}
.wsd8{word-spacing:8.320007pt;}
.ws29{word-spacing:8.552734pt;}
.ws129{word-spacing:8.554553pt;}
.ws9e{word-spacing:8.669098pt;}
.ws15f{word-spacing:8.873356pt;}
.wsc1{word-spacing:9.309099pt;}
.ws16e{word-spacing:9.510962pt;}
.ws69{word-spacing:9.658190pt;}
.ws175{word-spacing:9.829765pt;}
.wsc7{word-spacing:9.832735pt;}
.ws1c{word-spacing:10.123645pt;}
.ws31{word-spacing:10.240009pt;}
.ws12b{word-spacing:10.361104pt;}
.ws11a{word-spacing:10.414554pt;}
.wsce{word-spacing:10.647282pt;}
.ws177{word-spacing:10.998710pt;}
.ws146{word-spacing:11.051844pt;}
.ws149{word-spacing:11.158112pt;}
.wscf{word-spacing:11.287282pt;}
.wsd0{word-spacing:11.345464pt;}
.ws14d{word-spacing:11.370647pt;}
.wsca{word-spacing:11.694555pt;}
.ws41{word-spacing:11.869101pt;}
.ws0{word-spacing:11.907379pt;}
.ws168{word-spacing:12.061388pt;}
.wsc6{word-spacing:12.216979pt;}
.wsd6{word-spacing:12.218192pt;}
.ws88{word-spacing:12.249713pt;}
.ws123{word-spacing:12.592726pt;}
.ws12c{word-spacing:12.805262pt;}
.ws127{word-spacing:12.911530pt;}
.ws122{word-spacing:13.017797pt;}
.ws126{word-spacing:13.070931pt;}
.ws78{word-spacing:13.090920pt;}
.ws124{word-spacing:13.124065pt;}
.ws8b{word-spacing:13.149102pt;}
.ws133{word-spacing:13.177199pt;}
.ws128{word-spacing:13.230333pt;}
.ws17a{word-spacing:13.283467pt;}
.ws13e{word-spacing:13.336601pt;}
.wsee{word-spacing:13.381829pt;}
.ws134{word-spacing:13.389734pt;}
.ws156{word-spacing:13.496002pt;}
.ws165{word-spacing:13.549136pt;}
.ws164{word-spacing:13.602270pt;}
.wsa3{word-spacing:13.905466pt;}
.wsf3{word-spacing:14.080012pt;}
.ws2f{word-spacing:14.196375pt;}
.ws87{word-spacing:14.254557pt;}
.ws45{word-spacing:14.386172pt;}
.ws43{word-spacing:14.386408pt;}
.ws137{word-spacing:14.399278pt;}
.ws8d{word-spacing:14.661830pt;}
.wsbf{word-spacing:14.720012pt;}
.ws77{word-spacing:14.778194pt;}
.ws159{word-spacing:14.877483pt;}
.ws40{word-spacing:15.185467pt;}
.ws142{word-spacing:15.408821pt;}
.ws85{word-spacing:16.116377pt;}
.ws79{word-spacing:16.232741pt;}
.ws172{word-spacing:16.843436pt;}
.ws14c{word-spacing:16.896570pt;}
.ws5c{word-spacing:17.634418pt;}
.ws7e{word-spacing:17.687287pt;}
.ws143{word-spacing:17.693578pt;}
.ws4e{word-spacing:17.803651pt;}
.ws147{word-spacing:17.906113pt;}
.wscc{word-spacing:18.036379pt;}
.ws166{word-spacing:18.171782pt;}
.ws8c{word-spacing:18.909107pt;}
.ws154{word-spacing:19.340727pt;}
.ws99{word-spacing:19.374562pt;}
.ws131{word-spacing:20.137735pt;}
.ws13b{word-spacing:20.244003pt;}
.ws173{word-spacing:20.297137pt;}
.ws4f{word-spacing:20.538199pt;}
.wscd{word-spacing:21.410927pt;}
.ws155{word-spacing:21.519216pt;}
.ws14e{word-spacing:22.528759pt;}
.wscb{word-spacing:22.632746pt;}
.ws97{word-spacing:23.934885pt;}
.ws12d{word-spacing:23.963374pt;}
.wsbb{word-spacing:24.958351pt;}
.ws171{word-spacing:25.876193pt;}
.ws12e{word-spacing:26.726335pt;}
.ws15d{word-spacing:28.107815pt;}
.ws15c{word-spacing:28.160949pt;}
.wsba{word-spacing:36.596394pt;}
.ws12f{word-spacing:39.956668pt;}
.ws15b{word-spacing:41.869487pt;}
.ws4c{word-spacing:43.171934pt;}
.ws86{word-spacing:43.636400pt;}
.ws109{word-spacing:43.856184pt;}
.ws117{word-spacing:44.566269pt;}
.ws10f{word-spacing:44.577061pt;}
.ws113{word-spacing:44.581937pt;}
.wsde{word-spacing:46.365515pt;}
.wsfb{word-spacing:46.410799pt;}
.wsdf{word-spacing:47.077987pt;}
.wse5{word-spacing:47.110377pt;}
.wsec{word-spacing:47.127638pt;}
.wse2{word-spacing:47.132793pt;}
.ws101{word-spacing:47.154415pt;}
.wsfe{word-spacing:47.178826pt;}
.ws106{word-spacing:47.194981pt;}
.ws10{word-spacing:47.820800pt;}
.ws17b{word-spacing:49.221859pt;}
.ws17d{word-spacing:49.978223pt;}
.ws17c{word-spacing:50.036405pt;}
.ws110{word-spacing:65.421400pt;}
.ws118{word-spacing:65.442859pt;}
.wse6{word-spacing:69.164633pt;}
.ws102{word-spacing:69.232185pt;}
.ws115{word-spacing:85.581609pt;}
.ws119{word-spacing:85.586951pt;}
.wsa1{word-spacing:88.197301pt;}
.ws10e{word-spacing:92.087024pt;}
.wse1{word-spacing:97.355991pt;}
.wseb{word-spacing:97.372242pt;}
.wsd2{word-spacing:110.603729pt;}
.ws10d{word-spacing:112.040448pt;}
.wse0{word-spacing:118.439249pt;}
.wse3{word-spacing:118.451095pt;}
.ws105{word-spacing:118.547835pt;}
.wsfd{word-spacing:118.571812pt;}
.ws112{word-spacing:125.304187pt;}
.ws114{word-spacing:125.312635pt;}
.wse8{word-spacing:132.473748pt;}
.ws104{word-spacing:132.608161pt;}
.ws111{word-spacing:135.296475pt;}
.wsd3{word-spacing:139.694662pt;}
.wse7{word-spacing:143.037768pt;}
.ws103{word-spacing:143.172441pt;}
.ws116{word-spacing:185.006589pt;}
._20{margin-left:-9.713705pt;}
._3{margin-left:-6.376107pt;}
._12{margin-left:-4.829095pt;}
._2{margin-left:-3.902166pt;}
._0{margin-left:-2.151936pt;}
._4{margin-left:-0.956416pt;}
._18{width:1.318473pt;}
._15{width:2.677965pt;}
._1d{width:4.312475pt;}
._25{width:10.624479pt;}
._1a{width:12.567283pt;}
._b{width:13.672739pt;}
._1{width:14.824448pt;}
._7{width:16.205829pt;}
._a{width:17.105469pt;}
._9{width:18.327288pt;}
._10{width:19.258198pt;}
._d{width:20.829108pt;}
._6{width:22.342805pt;}
._8{width:23.505474pt;}
._26{width:24.669111pt;}
._5{width:25.637105pt;}
._14{width:27.345477pt;}
._f{width:28.683660pt;}
._c{width:30.782189pt;}
._1e{width:32.523663pt;}
._24{width:33.920028pt;}
._e{width:34.909120pt;}
._22{width:35.956394pt;}
._1c{width:36.887303pt;}
._27{width:37.818213pt;}
._11{width:38.807305pt;}
._21{width:39.912761pt;}
._2a{width:41.367307pt;}
._1f{width:43.286516pt;}
._17{width:46.720039pt;}
._28{width:48.000040pt;}
._2b{width:52.480044pt;}
._57{width:55.259221pt;}
._16{width:57.092341pt;}
._1b{width:58.181867pt;}
._23{width:59.425425pt;}
._45{width:60.779380pt;}
._13{width:63.761067pt;}
._29{width:65.221873pt;}
._58{width:66.311029pt;}
._35{width:67.918624pt;}
._5b{width:71.970176pt;}
._54{width:75.994187pt;}
._51{width:78.381266pt;}
._3e{width:81.167054pt;}
._39{width:82.920832pt;}
._64{width:86.167345pt;}
._5f{width:87.970982pt;}
._4e{width:98.554688pt;}
._5c{width:100.705197pt;}
._3a{width:104.185394pt;}
._53{width:105.793320pt;}
._59{width:109.508899pt;}
._38{width:111.090896pt;}
._65{width:115.258278pt;}
._5e{width:117.934644pt;}
._50{width:124.267746pt;}
._63{width:126.545560pt;}
._37{width:132.136236pt;}
._55{width:138.695746pt;}
._5d{width:140.276481pt;}
._3d{width:146.202924pt;}
._52{width:148.252988pt;}
._4b{width:152.230306pt;}
._62{width:155.164139pt;}
._3b{width:156.743939pt;}
._60{width:165.912971pt;}
._47{width:167.654401pt;}
._41{width:183.777605pt;}
._4f{width:197.974903pt;}
._3c{width:209.247678pt;}
._49{width:210.139650pt;}
._40{width:215.729254pt;}
._4a{width:217.516333pt;}
._61{width:222.196549pt;}
._42{width:227.333517pt;}
._5a{width:228.596554pt;}
._36{width:234.089121pt;}
._4c{width:235.839272pt;}
._66{width:241.280201pt;}
._2c{width:251.229300pt;}
._43{width:253.189901pt;}
._34{width:260.066962pt;}
._3f{width:271.452003pt;}
._31{width:336.931190pt;}
._46{width:341.168745pt;}
._48{width:342.485363pt;}
._44{width:344.507832pt;}
._2d{width:366.544967pt;}
._56{width:397.712348pt;}
._32{width:411.171252pt;}
._4d{width:455.513347pt;}
._19{width:489.851403pt;}
._33{width:492.044046pt;}
._2f{width:497.395985pt;}
._30{width:508.102242pt;}
._2e{width:624.582339pt;}
.fs7{font-size:27.867258pt;}
.fs9{font-size:29.934371pt;}
.fsb{font-size:31.648975pt;}
.fs6{font-size:31.880533pt;}
.fsf{font-size:32.415559pt;}
.fs8{font-size:36.737635pt;}
.fse{font-size:36.737641pt;}
.fs10{font-size:37.193600pt;}
.fs16{font-size:37.873490pt;}
.fs12{font-size:40.040507pt;}
.fs14{font-size:40.079614pt;}
.fsd{font-size:41.182352pt;}
.fsc{font-size:41.202271pt;}
.fs5{font-size:42.507200pt;}
.fsa{font-size:45.922047pt;}
.fs0{font-size:47.820800pt;}
.fs15{font-size:51.839461pt;}
.fs4{font-size:53.133867pt;}
.fs11{font-size:54.805573pt;}
.fs13{font-size:54.859100pt;}
.fs1{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:11.367461pt;}
.y97{bottom:21.257768pt;}
.y94{bottom:29.971163pt;}
.y96{bottom:31.148072pt;}
.y2{bottom:35.036000pt;}
.y1{bottom:46.374667pt;}
.y92{bottom:54.689225pt;}
.y9f{bottom:58.733124pt;}
.y95{bottom:62.491865pt;}
.y91{bottom:67.088172pt;}
.y3{bottom:74.996000pt;}
.y9c{bottom:76.841803pt;}
.y90{bottom:79.487126pt;}
.y9e{bottom:82.913820pt;}
.y9b{bottom:88.322312pt;}
.y30{bottom:92.074667pt;}
.y71{bottom:97.153333pt;}
.y235{bottom:106.686667pt;}
.y2f{bottom:110.140000pt;}
.y162{bottom:110.436000pt;}
.y70{bottom:117.896000pt;}
.y194{bottom:118.325333pt;}
.y234{bottom:121.298667pt;}
.y2e{bottom:128.205333pt;}
.y8f{bottom:128.784558pt;}
.y9a{bottom:130.089378pt;}
.y161{bottom:130.620000pt;}
.y233{bottom:135.909333pt;}
.y6f{bottom:135.961333pt;}
.y193{bottom:136.390667pt;}
.y8e{bottom:141.183505pt;}
.y99{bottom:141.569886pt;}
.y2d{bottom:146.270667pt;}
.y201{bottom:147.032000pt;}
.y160{bottom:148.685333pt;}
.yc0{bottom:152.141333pt;}
.y8d{bottom:153.582460pt;}
.y6e{bottom:154.026667pt;}
.y192{bottom:154.457333pt;}
.y296{bottom:156.133333pt;}
.ya0{bottom:159.798670pt;}
.y232{bottom:162.344000pt;}
.y2c{bottom:164.336000pt;}
.y200{bottom:165.097333pt;}
.y8c{bottom:165.524726pt;}
.y266{bottom:166.674667pt;}
.y15f{bottom:166.750667pt;}
.y6d{bottom:172.092000pt;}
.y191{bottom:172.522667pt;}
.y8b{bottom:174.233245pt;}
.y231{bottom:176.956000pt;}
.y93{bottom:181.227390pt;}
.y265{bottom:181.286667pt;}
.y2b{bottom:182.402667pt;}
.y8a{bottom:182.941764pt;}
.ybf{bottom:183.093333pt;}
.y1ff{bottom:183.162667pt;}
.y1d6{bottom:184.800000pt;}
.y15e{bottom:184.817333pt;}
.y6c{bottom:190.158667pt;}
.y190{bottom:190.588000pt;}
.y230{bottom:191.568000pt;}
.y89{bottom:191.650283pt;}
.y264{bottom:195.898667pt;}
.y2a{bottom:200.468000pt;}
.ybe{bottom:201.160000pt;}
.y1fe{bottom:201.228000pt;}
.y1d5{bottom:202.865333pt;}
.y15d{bottom:202.882667pt;}
.yee{bottom:204.425333pt;}
.y22f{bottom:206.180000pt;}
.y6b{bottom:208.224000pt;}
.y18f{bottom:208.653333pt;}
.y263{bottom:210.510667pt;}
.y9d{bottom:213.342471pt;}
.y295{bottom:215.840000pt;}
.y29{bottom:218.533333pt;}
.ybd{bottom:219.225333pt;}
.y1fd{bottom:219.293333pt;}
.y22e{bottom:220.790667pt;}
.y1d4{bottom:220.930667pt;}
.y15c{bottom:220.948000pt;}
.y13e{bottom:223.769333pt;}
.y262{bottom:225.122667pt;}
.y6a{bottom:226.289333pt;}
.y18e{bottom:226.718667pt;}
.y294{bottom:230.452000pt;}
.yed{bottom:233.505333pt;}
.y22d{bottom:235.402667pt;}
.y28{bottom:236.598667pt;}
.ybc{bottom:237.290667pt;}
.y1fc{bottom:237.360000pt;}
.y1d3{bottom:238.996000pt;}
.y15b{bottom:239.013333pt;}
.y261{bottom:239.733333pt;}
.y69{bottom:244.354667pt;}
.y18d{bottom:244.785333pt;}
.y293{bottom:245.064000pt;}
.y22c{bottom:250.014667pt;}
.yec{bottom:251.570667pt;}
.y13d{bottom:253.586667pt;}
.y25f{bottom:254.345333pt;}
.y27{bottom:254.664000pt;}
.ybb{bottom:255.356000pt;}
.y1fb{bottom:255.425333pt;}
.y108{bottom:256.466667pt;}
.y1d2{bottom:257.062667pt;}
.y15a{bottom:257.078667pt;}
.y260{bottom:259.166667pt;}
.y292{bottom:259.676000pt;}
.y68{bottom:262.420000pt;}
.y18c{bottom:262.850667pt;}
.y22b{bottom:264.626667pt;}
.y25e{bottom:268.957333pt;}
.yeb{bottom:269.636000pt;}
.y26{bottom:272.730667pt;}
.yba{bottom:273.421333pt;}
.y1fa{bottom:273.490667pt;}
.y291{bottom:274.288000pt;}
.y107{bottom:274.532000pt;}
.y1bd{bottom:274.805333pt;}
.y1d1{bottom:275.128000pt;}
.y159{bottom:275.144000pt;}
.y67{bottom:280.486667pt;}
.y18b{bottom:280.916000pt;}
.y13c{bottom:283.525333pt;}
.yea{bottom:287.702667pt;}
.y25{bottom:290.796000pt;}
.y22a{bottom:291.061333pt;}
.yb9{bottom:291.488000pt;}
.y1f9{bottom:291.556000pt;}
.y106{bottom:292.598667pt;}
.y1bc{bottom:292.872000pt;}
.y1d0{bottom:293.193333pt;}
.y158{bottom:293.210667pt;}
.yd0{bottom:294.068000pt;}
.y66{bottom:298.552000pt;}
.y18a{bottom:298.981333pt;}
.y25d{bottom:299.722667pt;}
.y290{bottom:300.925333pt;}
.y13b{bottom:301.590667pt;}
.y229{bottom:305.672000pt;}
.ye9{bottom:305.768000pt;}
.y24{bottom:308.861333pt;}
.yb8{bottom:309.553333pt;}
.y1f8{bottom:309.621333pt;}
.y105{bottom:310.664000pt;}
.y1bb{bottom:310.937333pt;}
.y1cf{bottom:311.258667pt;}
.y157{bottom:311.276000pt;}
.y25c{bottom:314.334667pt;}
.y28f{bottom:315.537333pt;}
.y189{bottom:317.046667pt;}
.y228{bottom:320.284000pt;}
.ycf{bottom:321.376000pt;}
.ye8{bottom:323.833333pt;}
.y65{bottom:326.638667pt;}
.y23{bottom:326.926667pt;}
.yb7{bottom:327.618667pt;}
.y1f7{bottom:327.688000pt;}
.y104{bottom:328.729333pt;}
.y25b{bottom:328.946667pt;}
.y1ba{bottom:329.002667pt;}
.y1ce{bottom:329.324000pt;}
.y156{bottom:329.341333pt;}
.y28e{bottom:330.149333pt;}
.y13a{bottom:331.530667pt;}
.y227{bottom:334.896000pt;}
.y188{bottom:335.113333pt;}
.yce{bottom:339.441333pt;}
.ye7{bottom:341.898667pt;}
.y87{bottom:343.145333pt;}
.y64{bottom:344.704000pt;}
.y22{bottom:344.992000pt;}
.yb6{bottom:345.684000pt;}
.y1f6{bottom:345.753333pt;}
.y103{bottom:346.794667pt;}
.y1b9{bottom:347.068000pt;}
.y1cd{bottom:347.390667pt;}
.y155{bottom:347.406667pt;}
.y226{bottom:349.508000pt;}
.y139{bottom:349.596000pt;}
.y187{bottom:353.178667pt;}
.y28d{bottom:356.788000pt;}
.ycd{bottom:357.506667pt;}
.y25a{bottom:359.710667pt;}
.y86{bottom:361.210667pt;}
.y63{bottom:362.770667pt;}
.y21{bottom:363.058667pt;}
.yb5{bottom:363.749333pt;}
.y1f5{bottom:363.818667pt;}
.y225{bottom:364.120000pt;}
.y102{bottom:364.860000pt;}
.y1b8{bottom:365.133333pt;}
.y1cc{bottom:365.456000pt;}
.y154{bottom:365.472000pt;}
.y186{bottom:371.244000pt;}
.y28c{bottom:371.400000pt;}
.y259{bottom:374.322667pt;}
.ycc{bottom:375.572000pt;}
.ye6{bottom:377.692000pt;}
.y224{bottom:378.732000pt;}
.y85{bottom:379.276000pt;}
.y138{bottom:379.412000pt;}
.y62{bottom:380.836000pt;}
.y20{bottom:381.124000pt;}
.y1f4{bottom:381.884000pt;}
.y101{bottom:382.926667pt;}
.y1b7{bottom:383.200000pt;}
.y1cb{bottom:383.521333pt;}
.y153{bottom:383.538667pt;}
.y28b{bottom:386.010667pt;}
.y258{bottom:388.934667pt;}
.y185{bottom:389.309333pt;}
.yb4{bottom:392.424000pt;}
.ycb{bottom:393.638667pt;}
.ye5{bottom:395.758667pt;}
.y84{bottom:397.341333pt;}
.y137{bottom:397.477333pt;}
.y61{bottom:398.901333pt;}
.y1f{bottom:399.189333pt;}
.y1f3{bottom:399.949333pt;}
.y28a{bottom:400.622667pt;}
.y100{bottom:400.992000pt;}
.y1b6{bottom:401.265333pt;}
.y1ca{bottom:401.586667pt;}
.y152{bottom:401.604000pt;}
.y257{bottom:403.546667pt;}
.y223{bottom:405.165333pt;}
.y184{bottom:407.374667pt;}
.yca{bottom:411.704000pt;}
.ye4{bottom:413.824000pt;}
.y289{bottom:415.234667pt;}
.y83{bottom:415.406667pt;}
.y60{bottom:416.966667pt;}
.y1e{bottom:417.254667pt;}
.y1f2{bottom:418.016000pt;}
.y256{bottom:418.158667pt;}
.yff{bottom:419.057333pt;}
.y1c9{bottom:419.652000pt;}
.y151{bottom:419.669333pt;}
.y222{bottom:419.777333pt;}
.yb3{bottom:425.217333pt;}
.y136{bottom:425.321333pt;}
.y183{bottom:425.441333pt;}
.y1b5{bottom:426.724000pt;}
.yc9{bottom:429.769333pt;}
.ye3{bottom:431.889333pt;}
.y255{bottom:432.770667pt;}
.y82{bottom:433.473333pt;}
.y221{bottom:434.389333pt;}
.y1c8{bottom:434.758667pt;}
.y5f{bottom:435.032000pt;}
.y1d{bottom:435.320000pt;}
.y1f1{bottom:436.081333pt;}
.yfe{bottom:437.122667pt;}
.y1c7{bottom:437.718667pt;}
.y288{bottom:441.873333pt;}
.y150{bottom:442.972000pt;}
.yb2{bottom:443.284000pt;}
.y182{bottom:443.934667pt;}
.y1b4{bottom:444.790667pt;}
.y254{bottom:447.381333pt;}
.ye2{bottom:449.954667pt;}
.y81{bottom:451.538667pt;}
.yc8{bottom:453.070667pt;}
.y5e{bottom:453.098667pt;}
.y1c{bottom:453.386667pt;}
.y1f0{bottom:454.146667pt;}
.yfd{bottom:455.188000pt;}
.y1c6{bottom:455.784000pt;}
.y287{bottom:456.485333pt;}
.y135{bottom:456.969333pt;}
.y181{bottom:459.040000pt;}
.y220{bottom:460.824000pt;}
.yb1{bottom:461.349333pt;}
.y253{bottom:461.993333pt;}
.y180{bottom:462.000000pt;}
.y80{bottom:469.604000pt;}
.y1c5{bottom:470.889333pt;}
.y286{bottom:471.097333pt;}
.y5d{bottom:471.164000pt;}
.y1b{bottom:471.452000pt;}
.y14f{bottom:472.658667pt;}
.y1c4{bottom:473.849333pt;}
.y134{bottom:475.034667pt;}
.y21f{bottom:475.436000pt;}
.yb0{bottom:479.414667pt;}
.ye1{bottom:479.842667pt;}
.y1b3{bottom:479.862667pt;}
.y17f{bottom:480.065333pt;}
.yfc{bottom:480.105333pt;}
.yc7{bottom:482.238667pt;}
.y1ef{bottom:483.914667pt;}
.y285{bottom:485.709333pt;}
.y7f{bottom:487.669333pt;}
.y5c{bottom:489.229333pt;}
.y42{bottom:489.517333pt;}
.y21e{bottom:490.046667pt;}
.y14e{bottom:490.724000pt;}
.y1c3{bottom:491.914667pt;}
.y252{bottom:492.758667pt;}
.y133{bottom:493.100000pt;}
.y17e{bottom:495.170667pt;}
.y29d{bottom:497.062667pt;}
.yaf{bottom:497.480000pt;}
.y1b2{bottom:497.929333pt;}
.y17d{bottom:498.130667pt;}
.y202{bottom:498.541333pt;}
.y1a{bottom:499.270667pt;}
.y284{bottom:500.320000pt;}
.y21d{bottom:504.658667pt;}
.y7e{bottom:505.734667pt;}
.y251{bottom:507.370667pt;}
.y41{bottom:507.582667pt;}
.y14d{bottom:508.790667pt;}
.y1c2{bottom:509.980000pt;}
.ye0{bottom:510.676000pt;}
.y132{bottom:511.165333pt;}
.yc6{bottom:511.406667pt;}
.yfb{bottom:514.232000pt;}
.y283{bottom:514.932000pt;}
.y29c{bottom:515.128000pt;}
.yae{bottom:515.545333pt;}
.y1b1{bottom:515.994667pt;}
.y17c{bottom:516.197333pt;}
.y5b{bottom:517.258667pt;}
.y1ee{bottom:518.237333pt;}
.y21c{bottom:519.270667pt;}
.y250{bottom:521.982667pt;}
.y7d{bottom:523.801333pt;}
.y40{bottom:525.648000pt;}
.y14c{bottom:526.856000pt;}
.ydf{bottom:528.742667pt;}
.y131{bottom:529.232000pt;}
.yc5{bottom:529.472000pt;}
.y282{bottom:529.544000pt;}
.y19{bottom:530.790667pt;}
.yfa{bottom:532.297333pt;}
.y29b{bottom:533.193333pt;}
.yad{bottom:533.612000pt;}
.y21b{bottom:533.882667pt;}
.y1b0{bottom:534.060000pt;}
.y17b{bottom:534.262667pt;}
.y1c1{bottom:536.078667pt;}
.y1ed{bottom:536.302667pt;}
.y24f{bottom:536.594667pt;}
.y7c{bottom:541.866667pt;}
.y3f{bottom:543.714667pt;}
.y14b{bottom:544.921333pt;}
.y18{bottom:546.730667pt;}
.yde{bottom:546.808000pt;}
.y130{bottom:547.297333pt;}
.yc4{bottom:547.538667pt;}
.y5a{bottom:549.150667pt;}
.yf9{bottom:550.362667pt;}
.y29a{bottom:551.258667pt;}
.yac{bottom:551.677333pt;}
.y1af{bottom:552.125333pt;}
.y17a{bottom:552.328000pt;}
.y1c0{bottom:554.144000pt;}
.y1ec{bottom:554.368000pt;}
.y281{bottom:556.182667pt;}
.y7b{bottom:559.932000pt;}
.y21a{bottom:560.317333pt;}
.y3e{bottom:561.780000pt;}
.y17{bottom:562.672000pt;}
.y14a{bottom:562.986667pt;}
.ydd{bottom:564.873333pt;}
.y12f{bottom:565.362667pt;}
.yc3{bottom:565.604000pt;}
.y59{bottom:567.216000pt;}
.y24e{bottom:567.358667pt;}
.yf8{bottom:568.428000pt;}
.y299{bottom:569.325333pt;}
.yab{bottom:569.742667pt;}
.y1ae{bottom:570.190667pt;}
.y179{bottom:570.393333pt;}
.y280{bottom:570.794667pt;}
.y1eb{bottom:572.433333pt;}
.y219{bottom:574.929333pt;}
.y7a{bottom:577.997333pt;}
.y16{bottom:578.612000pt;}
.y3d{bottom:579.845333pt;}
.y149{bottom:581.052000pt;}
.y24d{bottom:581.970667pt;}
.ydc{bottom:582.938667pt;}
.yc2{bottom:583.669333pt;}
.y58{bottom:585.281333pt;}
.y27f{bottom:585.406667pt;}
.yaa{bottom:587.808000pt;}
.y298{bottom:587.921333pt;}
.y1ad{bottom:588.257333pt;}
.y178{bottom:588.458667pt;}
.y11e{bottom:588.876000pt;}
.y218{bottom:589.540000pt;}
.y1bf{bottom:590.332000pt;}
.y1ea{bottom:590.498667pt;}
.y12e{bottom:593.206667pt;}
.y15{bottom:594.552000pt;}
.y79{bottom:596.062667pt;}
.y24c{bottom:596.582667pt;}
.y3c{bottom:597.910667pt;}
.y148{bottom:599.118667pt;}
.y27e{bottom:600.017333pt;}
.ydb{bottom:601.004000pt;}
.y217{bottom:604.152000pt;}
.ya9{bottom:605.873333pt;}
.y1ac{bottom:606.322667pt;}
.yf7{bottom:606.512000pt;}
.y177{bottom:606.525333pt;}
.y11d{bottom:606.941333pt;}
.y1be{bottom:608.398667pt;}
.y1e9{bottom:608.565333pt;}
.y14{bottom:610.492000pt;}
.y24b{bottom:611.194667pt;}
.y12d{bottom:611.272000pt;}
.yc1{bottom:612.837333pt;}
.y78{bottom:614.129333pt;}
.y27d{bottom:614.629333pt;}
.y57{bottom:615.537333pt;}
.y3b{bottom:615.976000pt;}
.y147{bottom:617.184000pt;}
.y216{bottom:618.764000pt;}
.yda{bottom:619.070667pt;}
.y297{bottom:619.164000pt;}
.ya8{bottom:623.940000pt;}
.y11c{bottom:625.006667pt;}
.y13{bottom:626.432000pt;}
.y1ab{bottom:626.464000pt;}
.y176{bottom:628.713333pt;}
.y27c{bottom:629.241333pt;}
.y12c{bottom:629.337333pt;}
.y77{bottom:632.194667pt;}
.y56{bottom:633.602667pt;}
.y3a{bottom:634.042667pt;}
.y146{bottom:635.249333pt;}
.yd9{bottom:637.136000pt;}
.y24a{bottom:641.958667pt;}
.ya7{bottom:642.005333pt;}
.y12{bottom:642.372000pt;}
.y27b{bottom:643.853333pt;}
.y1aa{bottom:644.529333pt;}
.yf6{bottom:644.597333pt;}
.y215{bottom:645.198667pt;}
.y175{bottom:646.778667pt;}
.y12b{bottom:647.402667pt;}
.y76{bottom:650.260000pt;}
.y55{bottom:651.668000pt;}
.y11b{bottom:652.102667pt;}
.y39{bottom:652.108000pt;}
.y145{bottom:653.314667pt;}
.yd8{bottom:655.201333pt;}
.y1e8{bottom:656.374137pt;}
.y249{bottom:656.570667pt;}
.y11{bottom:658.313333pt;}
.y214{bottom:659.810667pt;}
.ya6{bottom:660.070667pt;}
.y1a9{bottom:662.594667pt;}
.yf5{bottom:662.662667pt;}
.y12a{bottom:665.468000pt;}
.y75{bottom:668.325333pt;}
.y54{bottom:669.733333pt;}
.y38{bottom:670.173333pt;}
.y27a{bottom:670.492000pt;}
.y174{bottom:670.930667pt;}
.y248{bottom:671.182667pt;}
.y144{bottom:671.380000pt;}
.y1e7{bottom:672.645990pt;}
.yd7{bottom:673.266667pt;}
.y10{bottom:674.253333pt;}
.y213{bottom:674.421333pt;}
.ya5{bottom:678.136000pt;}
.y1a8{bottom:680.660000pt;}
.yf4{bottom:680.728000pt;}
.y11a{bottom:683.002667pt;}
.y129{bottom:683.534667pt;}
.y279{bottom:685.104000pt;}
.y247{bottom:685.794667pt;}
.y74{bottom:686.390667pt;}
.y37{bottom:688.238667pt;}
.y1e6{bottom:688.917843pt;}
.y212{bottom:689.033333pt;}
.y143{bottom:689.446667pt;}
.yf{bottom:690.193333pt;}
.yd6{bottom:691.332000pt;}
.ya4{bottom:696.201333pt;}
.y1a7{bottom:698.726667pt;}
.yf3{bottom:698.793333pt;}
.y278{bottom:699.716000pt;}
.y53{bottom:699.989333pt;}
.y246{bottom:700.406667pt;}
.y119{bottom:701.068000pt;}
.y128{bottom:701.600000pt;}
.y173{bottom:702.260000pt;}
.y211{bottom:703.645333pt;}
.y1e5{bottom:705.189697pt;}
.ye{bottom:706.133333pt;}
.y36{bottom:706.304000pt;}
.y142{bottom:707.512000pt;}
.yd5{bottom:709.398667pt;}
.ya3{bottom:714.268000pt;}
.y245{bottom:715.018667pt;}
.y1a6{bottom:716.792000pt;}
.yf2{bottom:716.858667pt;}
.y52{bottom:718.054667pt;}
.y210{bottom:718.257333pt;}
.y118{bottom:719.133333pt;}
.y127{bottom:719.665333pt;}
.y172{bottom:720.326667pt;}
.y1e4{bottom:721.461550pt;}
.yd{bottom:722.073333pt;}
.y35{bottom:724.370667pt;}
.y141{bottom:725.577333pt;}
.y277{bottom:726.353333pt;}
.yd4{bottom:727.464000pt;}
.y244{bottom:729.630667pt;}
.ya2{bottom:732.333333pt;}
.y20f{bottom:732.869333pt;}
.y1a5{bottom:734.857333pt;}
.y51{bottom:736.121333pt;}
.yf1{bottom:736.726667pt;}
.y117{bottom:737.198667pt;}
.y126{bottom:737.730667pt;}
.yc{bottom:738.013333pt;}
.y1e3{bottom:738.031588pt;}
.y170{bottom:738.392000pt;}
.y276{bottom:740.965333pt;}
.y34{bottom:742.436000pt;}
.y171{bottom:743.670667pt;}
.yd3{bottom:745.529333pt;}
.y140{bottom:748.878667pt;}
.yb{bottom:753.954667pt;}
.y50{bottom:754.186667pt;}
.yf0{bottom:754.793333pt;}
.y116{bottom:755.265333pt;}
.y275{bottom:755.577333pt;}
.y20e{bottom:756.388000pt;}
.y16f{bottom:756.457333pt;}
.y243{bottom:760.394667pt;}
.y33{bottom:760.501333pt;}
.yd2{bottom:763.594667pt;}
.y1e2{bottom:767.837333pt;}
.ya{bottom:769.894667pt;}
.y274{bottom:770.189333pt;}
.y125{bottom:772.834667pt;}
.y115{bottom:773.330667pt;}
.y16e{bottom:774.522667pt;}
.y242{bottom:775.006667pt;}
.ya1{bottom:778.294667pt;}
.y32{bottom:778.566667pt;}
.y1e1{bottom:781.785333pt;}
.y1a4{bottom:782.970587pt;}
.y1e0{bottom:783.777333pt;}
.y4f{bottom:784.442667pt;}
.y273{bottom:784.801333pt;}
.yd1{bottom:785.618667pt;}
.y9{bottom:785.834667pt;}
.y241{bottom:789.618667pt;}
.y124{bottom:790.900000pt;}
.y114{bottom:791.396000pt;}
.y16d{bottom:792.588000pt;}
.yef{bottom:792.877333pt;}
.y31{bottom:796.632000pt;}
.y272{bottom:799.413333pt;}
.y1a3{bottom:800.173471pt;}
.y4e{bottom:802.508000pt;}
.y88{bottom:802.736000pt;}
.y240{bottom:804.230667pt;}
.y20d{bottom:804.945333pt;}
.y123{bottom:808.965333pt;}
.y113{bottom:809.461333pt;}
.y271{bottom:814.025333pt;}
.y8{bottom:814.698667pt;}
.y1df{bottom:816.487729pt;}
.y1a2{bottom:817.376355pt;}
.y23f{bottom:818.842667pt;}
.y4d{bottom:820.573333pt;}
.y20c{bottom:823.010667pt;}
.y122{bottom:827.030667pt;}
.y112{bottom:827.526667pt;}
.y270{bottom:828.636000pt;}
.y73{bottom:832.764000pt;}
.y1de{bottom:833.521352pt;}
.y1a1{bottom:834.893229pt;}
.y4c{bottom:838.638667pt;}
.y16c{bottom:840.574667pt;}
.y20b{bottom:841.077333pt;}
.y121{bottom:845.096000pt;}
.y111{bottom:845.593333pt;}
.y23e{bottom:849.606667pt;}
.y1dd{bottom:850.741037pt;}
.y72{bottom:850.829333pt;}
.y1a0{bottom:851.910231pt;}
.y26f{bottom:855.274667pt;}
.y16b{bottom:858.640000pt;}
.y20a{bottom:859.142667pt;}
.y120{bottom:863.162667pt;}
.y110{bottom:863.658667pt;}
.y23d{bottom:864.218667pt;}
.y1dc{bottom:867.960723pt;}
.y4b{bottom:868.894667pt;}
.y19f{bottom:868.928489pt;}
.y26e{bottom:869.886667pt;}
.y16a{bottom:876.705333pt;}
.y209{bottom:877.208000pt;}
.y23c{bottom:878.830667pt;}
.y10f{bottom:881.724000pt;}
.y26d{bottom:884.498667pt;}
.y1db{bottom:885.494706pt;}
.y19e{bottom:885.945491pt;}
.y4a{bottom:886.960000pt;}
.y11f{bottom:892.948000pt;}
.y23b{bottom:893.442667pt;}
.y169{bottom:894.772000pt;}
.y208{bottom:895.273333pt;}
.y26c{bottom:899.110667pt;}
.y10e{bottom:899.789333pt;}
.y1da{bottom:902.528328pt;}
.y19d{bottom:902.962493pt;}
.y49{bottom:905.026667pt;}
.y7{bottom:906.825333pt;}
.y23a{bottom:908.054667pt;}
.y168{bottom:912.837333pt;}
.y207{bottom:913.338667pt;}
.y26b{bottom:913.722667pt;}
.y10d{bottom:917.854667pt;}
.y1d9{bottom:919.748013pt;}
.y19c{bottom:919.979495pt;}
.y48{bottom:923.092000pt;}
.y6{bottom:925.422667pt;}
.y26a{bottom:928.334667pt;}
.y167{bottom:930.902667pt;}
.y206{bottom:931.405333pt;}
.y10c{bottom:935.921333pt;}
.y1d8{bottom:936.967699pt;}
.y19b{bottom:936.996498pt;}
.y239{bottom:938.818667pt;}
.y47{bottom:941.157333pt;}
.y269{bottom:942.945333pt;}
.y5{bottom:944.018667pt;}
.y13f{bottom:946.436000pt;}
.y166{bottom:948.968000pt;}
.y205{bottom:949.470667pt;}
.y238{bottom:953.430667pt;}
.y10b{bottom:953.986667pt;}
.y1d7{bottom:954.502939pt;}
.y19a{bottom:954.514628pt;}
.y46{bottom:959.222667pt;}
.y165{bottom:967.033333pt;}
.y204{bottom:967.536000pt;}
.y237{bottom:968.042667pt;}
.y268{bottom:969.584000pt;}
.y10a{bottom:972.052000pt;}
.y45{bottom:977.288000pt;}
.y267{bottom:984.196000pt;}
.y199{bottom:984.993333pt;}
.y203{bottom:985.601333pt;}
.y164{bottom:985.630667pt;}
.y109{bottom:990.117333pt;}
.y44{bottom:995.354667pt;}
.y198{bottom:998.534667pt;}
.y236{bottom:998.808000pt;}
.y197{bottom:1000.933333pt;}
.y4{bottom:1002.852000pt;}
.y43{bottom:1013.420000pt;}
.y196{bottom:1014.474667pt;}
.y195{bottom:1014.881333pt;}
.y163{bottom:1016.873333pt;}
.he{height:20.401929pt;}
.h10{height:21.373141pt;}
.h16{height:23.144709pt;}
.h12{height:23.170566pt;}
.hf{height:26.230671pt;}
.h15{height:26.230676pt;}
.hc{height:26.588365pt;}
.h13{height:26.896031pt;}
.h22{height:27.895200pt;}
.h23{height:31.019462pt;}
.h21{height:31.880400pt;}
.h20{height:32.087757pt;}
.h14{height:32.455768pt;}
.h11{height:32.788342pt;}
.h2{height:32.900710pt;}
.h1f{height:35.451005pt;}
.h29{height:36.287623pt;}
.h2c{height:36.449833pt;}
.h24{height:38.363901pt;}
.h27{height:38.401370pt;}
.ha{height:39.040033pt;}
.h1b{height:39.330942pt;}
.h3{height:40.029124pt;}
.h17{height:40.727307pt;}
.h19{height:41.018216pt;}
.h7{height:42.783676pt;}
.h2a{height:43.234111pt;}
.h18{height:43.636400pt;}
.h8{height:44.313645pt;}
.h5{height:44.632747pt;}
.h2d{height:44.841645pt;}
.h25{height:45.707848pt;}
.h28{height:45.752490pt;}
.h9{height:48.523677pt;}
.h2b{height:49.105010pt;}
.h1d{height:50.609330pt;}
.h1c{height:50.614663pt;}
.h6{height:53.176730pt;}
.h1a{height:53.521330pt;}
.h1e{height:53.526663pt;}
.h4{height:53.559147pt;}
.h26{height:55.476400pt;}
.hb{height:56.560338pt;}
.hd{height:225.300300pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:604.731066pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:9.512270pt;}
.x31{left:13.315576pt;}
.x36{left:14.212371pt;}
.x33{left:18.768822pt;}
.x32{left:23.648032pt;}
.x7{left:90.001333pt;}
.x4{left:94.488000pt;}
.x84{left:96.466667pt;}
.x77{left:97.915670pt;}
.x5{left:104.772000pt;}
.xa{left:109.033333pt;}
.x22{left:111.846667pt;}
.x51{left:113.093333pt;}
.x50{left:115.276000pt;}
.x9{left:117.165333pt;}
.x38{left:118.829333pt;}
.x23{left:122.896000pt;}
.x45{left:124.048000pt;}
.x68{left:125.709333pt;}
.x78{left:133.641333pt;}
.x69{left:136.202667pt;}
.x7b{left:137.644000pt;}
.x52{left:149.909333pt;}
.x1{left:161.393333pt;}
.x34{left:163.031868pt;}
.x47{left:167.214667pt;}
.x43{left:168.116000pt;}
.x48{left:174.790667pt;}
.x83{left:184.050667pt;}
.x79{left:196.062667pt;}
.x35{left:198.972931pt;}
.x7a{left:206.829333pt;}
.x8{left:210.344000pt;}
.x54{left:216.948000pt;}
.x49{left:218.428000pt;}
.x2{left:223.750667pt;}
.x4a{left:226.004000pt;}
.x6{left:227.717333pt;}
.x63{left:235.488000pt;}
.x2c{left:238.001301pt;}
.x27{left:242.690262pt;}
.x2d{left:243.844318pt;}
.x64{left:246.924000pt;}
.x2a{left:251.136343pt;}
.x4b{left:262.366667pt;}
.x75{left:267.204000pt;}
.x4e{left:277.461333pt;}
.x28{left:285.732967pt;}
.x2b{left:289.090915pt;}
.x26{left:290.963498pt;}
.x29{left:292.457008pt;}
.x46{left:293.630667pt;}
.x4c{left:295.186667pt;}
.x44{left:298.322667pt;}
.x76{left:315.712000pt;}
.x4d{left:328.098667pt;}
.x4f{left:353.596000pt;}
.x53{left:364.928000pt;}
.x62{left:374.992000pt;}
.x3{left:383.817333pt;}
.x66{left:402.510667pt;}
.xc{left:406.006667pt;}
.xb{left:408.189333pt;}
.x7f{left:410.786667pt;}
.x61{left:415.497333pt;}
.x80{left:416.745333pt;}
.x24{left:418.658710pt;}
.x14{left:422.734667pt;}
.x71{left:425.058667pt;}
.x42{left:426.460000pt;}
.x65{left:428.976000pt;}
.x5c{left:430.733333pt;}
.x12{left:432.369333pt;}
.x1e{left:433.384000pt;}
.x67{left:437.280000pt;}
.x6f{left:439.352000pt;}
.x30{left:444.268342pt;}
.x15{left:445.560000pt;}
.x5d{left:449.250667pt;}
.x6c{left:451.345333pt;}
.x3e{left:459.132000pt;}
.xd{left:464.189333pt;}
.x70{left:467.245333pt;}
.x59{left:468.897333pt;}
.x25{left:472.477367pt;}
.x3f{left:480.056000pt;}
.x2e{left:481.114710pt;}
.x6a{left:484.448000pt;}
.x2f{left:486.005453pt;}
.x1b{left:487.906667pt;}
.x6d{left:494.593333pt;}
.x3d{left:504.457333pt;}
.x5e{left:514.665333pt;}
.x7d{left:517.088000pt;}
.x16{left:518.288000pt;}
.x1f{left:520.881333pt;}
.x17{left:526.594667pt;}
.x39{left:527.529333pt;}
.x13{left:531.833333pt;}
.x7e{left:546.356000pt;}
.x20{left:554.277333pt;}
.x6e{left:558.802667pt;}
.x57{left:563.397333pt;}
.x72{left:565.576000pt;}
.x10{left:570.457333pt;}
.x18{left:574.636000pt;}
.x58{left:577.565333pt;}
.x21{left:586.994667pt;}
.x73{left:591.717333pt;}
.x55{left:593.488000pt;}
.x40{left:596.414667pt;}
.x19{left:600.465333pt;}
.xe{left:603.494667pt;}
.x56{left:604.924000pt;}
.x1c{left:607.825333pt;}
.x41{left:611.341333pt;}
.x74{left:616.316000pt;}
.x1d{left:617.838667pt;}
.x7c{left:618.754667pt;}
.x3a{left:625.877333pt;}
.x11{left:632.286667pt;}
.x1a{left:641.233333pt;}
.x3b{left:643.976000pt;}
.x5a{left:651.073333pt;}
.x81{left:654.124000pt;}
.x3c{left:658.394667pt;}
.x82{left:663.390667pt;}
.xf{left:666.246667pt;}
.x5f{left:669.496000pt;}
.x60{left:682.161333pt;}
.x6b{left:693.234667pt;}
.x5b{left:697.321333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  