
    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_b7e7ce3d722a857a9666c3ba.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_684782cfe748f7510f6f2eb8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_da0ccd1179ba1705806d27b1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_12bdd6cc31b5c8098d4d00a9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.142000;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_923de92d954030f627f1ec80.woff')format("woff");}.ff5{font-family:ff5;line-height:1.158000;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_31cafe6b8ec04f978b98a914.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a9d995b72a8706ff5faecbb5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_16a5f79a895b2a0e5732da3e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d9a6432982cbc5d3f81db9b3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.025000;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_423ec6d8df73d58c69b1ccaa.woff')format("woff");}.ffa{font-family:ffa;line-height:1.142000;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_d1088260c4f9ca932ef6b2c9.woff')format("woff");}.ffb{font-family:ffb;line-height:2.262000;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_a4f67f447d26686e761ed40c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.635000;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_aab3e372f8b78a1f2dab0c13.woff')format("woff");}.ffd{font-family:ffd;line-height:1.159000;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_556d0dda6525b49f4c1c61d6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919000;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_5f6cfbcbf0a6c3f0fd5ee833.woff')format("woff");}.fff{font-family:fff;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e8d2e85d54310c17635e118e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_862a8d1b0f14682c3dde7753.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d38c0d0811f8849cb2e69763.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e0f1b1eeb71b6f09b679c91f.woff')format("woff");}.ff13{font-family:ff13;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9e10f174fa462a6516ffe7bf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_862a8d1b0f14682c3dde7753.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_8e2d59e05f70102c09c18802.woff')format("woff");}.ff16{font-family:ff16;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_25039128cc491739c99b3209.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8db3e755dd2127df66af7bf8.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_c6922f4cb97d5f612d1a4ba8.woff')format("woff");}.ff19{font-family:ff19;line-height:0.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:ff1a;src:url('chunks/assets/font_8fe9abd01a5918466cf3b484.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ea16248ef5b6d02b240fd2da.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_0d61642fdeda8812be6fde88.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_a1d53bb63d3a11edaefe3078.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ce0f2cb66e1049999a78ef31.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_59d0173f5fc3c375ee3597ae.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.701190;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;}
.m5{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);}
.m8{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);}
.m21{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);}
.m16{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);}
.m3{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);}
.me{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);}
.m12{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);}
.m15{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);}
.m6{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);}
.m1c{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);}
.m7{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);}
.md{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);}
.mc{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);}
.m1b{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);}
.m9{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);}
.m10{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);}
.m1f{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);}
.m18{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);}
.m19{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);}
.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);}
.m13{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);}
.m17{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);}
.ma{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);}
.m14{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);}
.m1d{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);}
.m1e{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);}
.mf{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);}
.m1a{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);}
.m24{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);}
.m23{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);}
.m1{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);}
.m20{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);}
.m11{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{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);}
.v10{vertical-align:-53.100000px;}
.v11{vertical-align:-49.842000px;}
.vf{vertical-align:-46.920000px;}
.v5{vertical-align:-22.854000px;}
.v26{vertical-align:-16.512000px;}
.v2a{vertical-align:-12.912000px;}
.v6{vertical-align:-10.398000px;}
.v2{vertical-align:-8.964000px;}
.vc{vertical-align:-7.050000px;}
.v0{vertical-align:0.000000px;}
.v27{vertical-align:10.398000px;}
.vb{vertical-align:12.354000px;}
.va{vertical-align:15.048000px;}
.v19{vertical-align:16.182000px;}
.v12{vertical-align:22.548000px;}
.v4{vertical-align:23.754000px;}
.v28{vertical-align:25.770000px;}
.v17{vertical-align:27.024000px;}
.ve{vertical-align:35.082000px;}
.v29{vertical-align:38.538000px;}
.v1a{vertical-align:41.952000px;}
.vd{vertical-align:44.898000px;}
.v25{vertical-align:46.248000px;}
.v1{vertical-align:48.156000px;}
.v3{vertical-align:49.842000px;}
.v22{vertical-align:51.006000px;}
.v14{vertical-align:53.382000px;}
.v21{vertical-align:59.040000px;}
.v9{vertical-align:63.858000px;}
.v18{vertical-align:66.024000px;}
.v7{vertical-align:67.776000px;}
.v1d{vertical-align:74.094000px;}
.v1b{vertical-align:80.778000px;}
.v8{vertical-align:82.782000px;}
.v15{vertical-align:97.662000px;}
.v23{vertical-align:99.900000px;}
.v1f{vertical-align:101.118000px;}
.v16{vertical-align:107.484000px;}
.v20{vertical-align:108.882000px;}
.v24{vertical-align:112.176000px;}
.v1e{vertical-align:123.936000px;}
.v13{vertical-align:130.974000px;}
.v1c{vertical-align:141.864000px;}
.ls7{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000129px;}
.ls46{letter-spacing:0.000588px;}
.ls27{letter-spacing:0.000705px;}
.ls66{letter-spacing:0.000843px;}
.ls8e{letter-spacing:0.001048px;}
.ls87{letter-spacing:0.001050px;}
.ls65{letter-spacing:0.001610px;}
.ls40{letter-spacing:0.001739px;}
.ls5c{letter-spacing:0.002012px;}
.ls57{letter-spacing:0.002706px;}
.ls73{letter-spacing:0.002877px;}
.ls1a{letter-spacing:0.003239px;}
.ls63{letter-spacing:0.003242px;}
.ls2{letter-spacing:0.003415px;}
.ls4c{letter-spacing:0.003756px;}
.ls12{letter-spacing:0.003791px;}
.ls22{letter-spacing:0.003962px;}
.ls7f{letter-spacing:0.004930px;}
.ls3b{letter-spacing:0.005747px;}
.ls8d{letter-spacing:0.006148px;}
.ls52{letter-spacing:0.006357px;}
.ls45{letter-spacing:0.006843px;}
.ls84{letter-spacing:0.008559px;}
.ls25{letter-spacing:0.009740px;}
.ls98{letter-spacing:0.011102px;}
.ls2a{letter-spacing:0.015740px;}
.ls91{letter-spacing:0.019239px;}
.ls7c{letter-spacing:0.029845px;}
.ls56{letter-spacing:0.030964px;}
.ls28{letter-spacing:1.284829px;}
.ls2b{letter-spacing:1.290829px;}
.ls6d{letter-spacing:1.434618px;}
.ls6e{letter-spacing:1.713332px;}
.ls80{letter-spacing:1.816311px;}
.ls78{letter-spacing:1.822862px;}
.ls7d{letter-spacing:1.828862px;}
.ls67{letter-spacing:1.832729px;}
.ls0{letter-spacing:2.141577px;}
.ls3e{letter-spacing:2.337729px;}
.ls10{letter-spacing:2.344273px;}
.ls58{letter-spacing:2.351942px;}
.ls1d{letter-spacing:2.360647px;}
.ls4b{letter-spacing:2.984325px;}
.ls3a{letter-spacing:2.984915px;}
.ls1f{letter-spacing:2.985543px;}
.ls16{letter-spacing:2.987971px;}
.ls18{letter-spacing:2.988532px;}
.ls7e{letter-spacing:2.988593px;}
.ls82{letter-spacing:2.990915px;}
.ls23{letter-spacing:2.991543px;}
.ls79{letter-spacing:2.994593px;}
.ls68{letter-spacing:7.200110px;}
.ls42{letter-spacing:7.265461px;}
.ls20{letter-spacing:7.396370px;}
.ls44{letter-spacing:9.199526px;}
.ls47{letter-spacing:9.216843px;}
.ls37{letter-spacing:9.752735px;}
.ls5{letter-spacing:10.102076px;}
.ls39{letter-spacing:10.383543px;}
.ls35{letter-spacing:10.865464px;}
.ls7b{letter-spacing:10.905507px;}
.ls6a{letter-spacing:10.911962px;}
.ls21{letter-spacing:10.930918px;}
.lsa3{letter-spacing:13.249568px;}
.lsa6{letter-spacing:13.255568px;}
.ls9c{letter-spacing:13.272465px;}
.ls74{letter-spacing:13.892325px;}
.ls26{letter-spacing:13.892915px;}
.lsa4{letter-spacing:13.899543px;}
.ls1c{letter-spacing:14.530921px;}
.ls54{letter-spacing:14.546012px;}
.ls1b{letter-spacing:14.547962px;}
.ls6b{letter-spacing:14.550843px;}
.ls77{letter-spacing:14.816012px;}
.ls88{letter-spacing:14.858194px;}
.ls9b{letter-spacing:14.989103px;}
.ls9a{letter-spacing:15.003507px;}
.lse{letter-spacing:15.327507px;}
.lsa7{letter-spacing:15.774559px;}
.ls76{letter-spacing:16.560014px;}
.lsa{letter-spacing:17.149105px;}
.ls8f{letter-spacing:17.528915px;}
.ls24{letter-spacing:17.534915px;}
.ls69{letter-spacing:18.080915px;}
.ls72{letter-spacing:18.137251px;}
.ls7a{letter-spacing:18.185412px;}
.ls19{letter-spacing:18.196379px;}
.ls49{letter-spacing:18.452851px;}
.ls3{letter-spacing:19.546621px;}
.ls5e{letter-spacing:19.701835px;}
.ls6{letter-spacing:19.965050px;}
.ls4{letter-spacing:20.024826px;}
.lsac{letter-spacing:20.094562px;}
.ls5f{letter-spacing:20.160017px;}
.ls60{letter-spacing:20.225471px;}
.lsab{letter-spacing:21.010927px;}
.lsb0{letter-spacing:21.164915px;}
.ls4f{letter-spacing:21.170325px;}
.ls99{letter-spacing:21.170915px;}
.lsb4{letter-spacing:21.200915px;}
.lsb1{letter-spacing:21.266915px;}
.ls38{letter-spacing:21.469109px;}
.ls9e{letter-spacing:21.534563px;}
.ls1{letter-spacing:21.585962px;}
.ls64{letter-spacing:21.600018px;}
.lsa0{letter-spacing:21.665473px;}
.ls55{letter-spacing:21.713412px;}
.ls96{letter-spacing:21.730927px;}
.ls8{letter-spacing:21.796382px;}
.lsd{letter-spacing:21.861836px;}
.lsc{letter-spacing:21.927291px;}
.lsb{letter-spacing:21.992746px;}
.lsa1{letter-spacing:22.123655px;}
.lsa5{letter-spacing:22.189109px;}
.ls97{letter-spacing:22.254564px;}
.ls13{letter-spacing:22.320019px;}
.ls94{letter-spacing:22.385473px;}
.ls89{letter-spacing:22.450928px;}
.ls11{letter-spacing:22.527962px;}
.ls9d{letter-spacing:22.533962px;}
.lsa9{letter-spacing:22.581837px;}
.ls83{letter-spacing:22.700915px;}
.lsb7{letter-spacing:22.772915px;}
.ls93{letter-spacing:22.814915px;}
.lsb8{letter-spacing:23.040019px;}
.ls86{letter-spacing:23.105474px;}
.ls81{letter-spacing:23.170928px;}
.lsa8{letter-spacing:23.236383px;}
.lsa2{letter-spacing:23.301838px;}
.ls70{letter-spacing:23.890929px;}
.lsae{letter-spacing:23.929462px;}
.ls48{letter-spacing:23.940288px;}
.ls9f{letter-spacing:24.480020px;}
.ls62{letter-spacing:24.545475px;}
.ls4a{letter-spacing:24.806325px;}
.ls30{letter-spacing:24.806915px;}
.ls75{letter-spacing:24.812325px;}
.lsb5{letter-spacing:25.200021px;}
.ls71{letter-spacing:25.330930px;}
.ls3d{letter-spacing:25.461839px;}
.ls15{letter-spacing:25.658203px;}
.lsf{letter-spacing:26.247295px;}
.ls3f{letter-spacing:26.560677px;}
.ls1e{letter-spacing:26.566677px;}
.lsaf{letter-spacing:26.574568px;}
.lsad{letter-spacing:26.896200px;}
.ls33{letter-spacing:26.899200px;}
.lsb3{letter-spacing:27.294568px;}
.ls95{letter-spacing:27.687296px;}
.lsb6{letter-spacing:30.043661px;}
.lsb2{letter-spacing:31.184915px;}
.lsaa{letter-spacing:31.886915px;}
.ls3c{letter-spacing:32.072915px;}
.ls4d{letter-spacing:32.721507px;}
.ls9{letter-spacing:32.727300px;}
.ls5a{letter-spacing:32.732012px;}
.ls14{letter-spacing:33.054573px;}
.ls53{letter-spacing:35.714915px;}
.ls34{letter-spacing:36.392758px;}
.ls50{letter-spacing:39.992761px;}
.ls17{letter-spacing:42.610945px;}
.ls2c{letter-spacing:54.078532px;}
.ls61{letter-spacing:64.145508px;}
.ls51{letter-spacing:66.305510px;}
.ls85{letter-spacing:66.763692px;}
.ls29{letter-spacing:68.622532px;}
.ls59{letter-spacing:79.556915px;}
.ls5b{letter-spacing:79.562915px;}
.ls4e{letter-spacing:141.840118px;}
.ls6f{letter-spacing:188.181975px;}
.ls2d{letter-spacing:266.727495px;}
.ls8b{letter-spacing:312.218442px;}
.ls31{letter-spacing:361.994915px;}
.ls8a{letter-spacing:367.448915px;}
.ls2f{letter-spacing:387.446915px;}
.ls32{letter-spacing:399.338515px;}
.ls2e{letter-spacing:409.942160px;}
.ls5d{letter-spacing:421.985806px;}
.ls92{letter-spacing:424.172915px;}
.ls90{letter-spacing:655.022915px;}
.ls8c{letter-spacing:673.986016px;}
.ls41{letter-spacing:790.102477px;}
.ls43{letter-spacing:850.975255px;}
.ls36{letter-spacing:969.709899px;}
.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;}
}
.ws90{word-spacing:-65.454600px;}
.ws65{word-spacing:-47.324343px;}
.ws7f{word-spacing:-47.258221px;}
.ws33{word-spacing:-42.637126px;}
.wse{word-spacing:-38.937826px;}
.ws69{word-spacing:-36.071827px;}
.ws66{word-spacing:-33.453846px;}
.ws80{word-spacing:-33.211407px;}
.ws35{word-spacing:-32.727300px;}
.ws43{word-spacing:-31.706208px;}
.ws4{word-spacing:-29.887800px;}
.ws85{word-spacing:-29.388273px;}
.ws60{word-spacing:-29.349843px;}
.ws70{word-spacing:-27.646998px;}
.ws84{word-spacing:-26.255705px;}
.ws8e{word-spacing:-22.949705px;}
.ws8c{word-spacing:-22.943705px;}
.ws81{word-spacing:-20.840745px;}
.wsb8{word-spacing:-19.963653px;}
.ws56{word-spacing:-18.922925px;}
.wsfb{word-spacing:-18.327288px;}
.ws32{word-spacing:-18.183288px;}
.wsef{word-spacing:-17.541833px;}
.ws7a{word-spacing:-17.410924px;}
.wsf2{word-spacing:-16.887287px;}
.ws2e{word-spacing:-16.494559px;}
.wsc8{word-spacing:-16.232741px;}
.ws37{word-spacing:-16.139475px;}
.wsee{word-spacing:-16.036377px;}
.ws36{word-spacing:-15.905468px;}
.ws1d{word-spacing:-15.840013px;}
.wse5{word-spacing:-15.774559px;}
.ws2f{word-spacing:-15.453831px;}
.ws73{word-spacing:-15.250922px;}
.ws5e{word-spacing:-15.185467px;}
.wsd6{word-spacing:-15.120013px;}
.wsb4{word-spacing:-14.989103px;}
.ws78{word-spacing:-14.596376px;}
.ws4e{word-spacing:-14.530921px;}
.wsb9{word-spacing:-14.472012px;}
.ws12{word-spacing:-14.405920px;}
.ws115{word-spacing:-14.400012px;}
.ws2d{word-spacing:-14.269103px;}
.wsd3{word-spacing:-14.203648px;}
.wsb5{word-spacing:-13.948375px;}
.wsc4{word-spacing:-13.745466px;}
.ws102{word-spacing:-13.549102px;}
.ws5d{word-spacing:-13.449600px;}
.ws113{word-spacing:-13.352738px;}
.ws4f{word-spacing:-13.293829px;}
.wsf9{word-spacing:-13.228375px;}
.ws72{word-spacing:-13.025465px;}
.ws3e{word-spacing:-12.829102px;}
.ws38{word-spacing:-12.763647px;}
.wsa2{word-spacing:-12.698192px;}
.wsfe{word-spacing:-12.632738px;}
.ws1a{word-spacing:-12.567283px;}
.ws74{word-spacing:-12.501829px;}
.wsc3{word-spacing:-12.436374px;}
.ws109{word-spacing:-12.370919px;}
.ws57{word-spacing:-12.305465px;}
.ws20{word-spacing:-12.240010px;}
.wsda{word-spacing:-12.174556px;}
.wsd4{word-spacing:-12.043646px;}
.ws7e{word-spacing:-12.041705px;}
.wsdf{word-spacing:-11.978192px;}
.wscc{word-spacing:-11.912737px;}
.wscd{word-spacing:-11.847283px;}
.wsf1{word-spacing:-11.781828px;}
.ws3{word-spacing:-11.735224px;}
.wsf3{word-spacing:-11.716373px;}
.ws89{word-spacing:-11.650919px;}
.ws2c{word-spacing:-11.585464px;}
.ws101{word-spacing:-11.461100px;}
.ws9c{word-spacing:-11.389100px;}
.ws61{word-spacing:-11.323646px;}
.ws40{word-spacing:-11.258191px;}
.wsa8{word-spacing:-11.192737px;}
.ws3f{word-spacing:-11.127282px;}
.ws39{word-spacing:-11.061827px;}
.wsab{word-spacing:-10.996373px;}
.wsde{word-spacing:-10.937464px;}
.ws1b{word-spacing:-10.930918px;}
.ws1e{word-spacing:-10.865464px;}
.wsdd{word-spacing:-10.806554px;}
.ws24{word-spacing:-10.800009px;}
.ws22{word-spacing:-10.734554px;}
.ws21{word-spacing:-10.669100px;}
.wsbb{word-spacing:-10.603645px;}
.ws29{word-spacing:-10.538191px;}
.ws9d{word-spacing:-10.479281px;}
.ws28{word-spacing:-10.472736px;}
.wsfc{word-spacing:-10.413827px;}
.wsa1{word-spacing:-10.407281px;}
.wsaa{word-spacing:-10.348372px;}
.wsca{word-spacing:-10.341827px;}
.wsa{word-spacing:-10.341179px;}
.wsf6{word-spacing:-10.282918px;}
.wsba{word-spacing:-10.276372px;}
.ws5{word-spacing:-10.221628px;}
.wsf4{word-spacing:-10.210918px;}
.ws7{word-spacing:-10.161852px;}
.ws34{word-spacing:-10.145463px;}
.ws117{word-spacing:-10.086554px;}
.wsd2{word-spacing:-10.080008px;}
.ws55{word-spacing:-10.021099px;}
.ws16{word-spacing:-9.982525px;}
.ws114{word-spacing:-9.955645px;}
.ws7c{word-spacing:-9.949099px;}
.ws11{word-spacing:-9.922750px;}
.ws10d{word-spacing:-9.883645px;}
.wsd{word-spacing:-9.862974px;}
.ws23{word-spacing:-9.824735px;}
.ws58{word-spacing:-9.759281px;}
.ws79{word-spacing:-9.752735px;}
.wse7{word-spacing:-9.693826px;}
.ws10c{word-spacing:-9.687281px;}
.ws14{word-spacing:-9.683647px;}
.wsec{word-spacing:-9.628372px;}
.ws26{word-spacing:-9.621826px;}
.ws6e{word-spacing:-9.570735px;}
.ws9a{word-spacing:-9.556372px;}
.wsb{word-spacing:-9.510298px;}
.ws91{word-spacing:-9.497462px;}
.wsd8{word-spacing:-9.490917px;}
.ws30{word-spacing:-9.425462px;}
.ws67{word-spacing:-9.409340px;}
.wseb{word-spacing:-9.301099px;}
.ws77{word-spacing:-9.294553px;}
.ws6f{word-spacing:-9.247945px;}
.ws4d{word-spacing:-9.194147px;}
.wsed{word-spacing:-9.170189px;}
.ws96{word-spacing:-9.163644px;}
.ws6c{word-spacing:-9.140348px;}
.ws105{word-spacing:-9.098189px;}
.ws13{word-spacing:-9.091869px;}
.wsa4{word-spacing:-9.032735px;}
.ws6d{word-spacing:-8.978953px;}
.ws25{word-spacing:-8.908371px;}
.ws3a{word-spacing:-8.901826px;}
.wse1{word-spacing:-8.836371px;}
.wsd7{word-spacing:-8.712007px;}
.ws7b{word-spacing:-8.640007px;}
.wsa9{word-spacing:-8.581098px;}
.ws92{word-spacing:-8.574553px;}
.ws97{word-spacing:-8.515643px;}
.wsa5{word-spacing:-8.384734px;}
.ws3b{word-spacing:-8.319280px;}
.wsd9{word-spacing:-8.312734px;}
.ws76{word-spacing:-8.247280px;}
.ws10b{word-spacing:-8.188370px;}
.ws75{word-spacing:-8.181825px;}
.ws9e{word-spacing:-7.985461px;}
.wsc9{word-spacing:-7.920007px;}
.ws6{word-spacing:-7.896357px;}
.wsf8{word-spacing:-7.854552px;}
.ws2a{word-spacing:-7.723643px;}
.wse4{word-spacing:-7.658188px;}
.wse8{word-spacing:-7.599279px;}
.ws62{word-spacing:-7.592734px;}
.ws27{word-spacing:-7.527279px;}
.ws93{word-spacing:-7.461824px;}
.ws2b{word-spacing:-7.141097px;}
.ws45{word-spacing:-7.069097px;}
.ws63{word-spacing:-7.010188px;}
.wsf{word-spacing:-6.933970px;}
.ws7d{word-spacing:-6.807278px;}
.ws4b{word-spacing:-6.741824px;}
.wsf7{word-spacing:-6.676369px;}
.ws82{word-spacing:-6.466914px;}
.ws8b{word-spacing:-6.439176px;}
.wsb2{word-spacing:-6.414551px;}
.wse0{word-spacing:-6.349096px;}
.wse6{word-spacing:-6.290187px;}
.wse9{word-spacing:-6.283642px;}
.wsc5{word-spacing:-6.218187px;}
.ws100{word-spacing:-6.152732px;}
.wsf5{word-spacing:-6.021823px;}
.wsf0{word-spacing:-5.629096px;}
.ws103{word-spacing:-5.432732px;}
.ws8{word-spacing:-5.200477px;}
.wsd0{word-spacing:-5.105459px;}
.wsce{word-spacing:-5.040004px;}
.ws116{word-spacing:-4.974550px;}
.wsfd{word-spacing:-4.909095px;}
.ws9{word-spacing:-4.847801px;}
.ws15{word-spacing:-4.841824px;}
.ws111{word-spacing:-4.385458px;}
.wsea{word-spacing:-4.326549px;}
.ws10f{word-spacing:-4.320004px;}
.ws112{word-spacing:-4.064731px;}
.ws99{word-spacing:-3.914185px;}
.wsae{word-spacing:-3.796367px;}
.wsb0{word-spacing:-3.730912px;}
.ws68{word-spacing:-3.652911px;}
.ws8f{word-spacing:-3.652367px;}
.wsb1{word-spacing:-3.606548px;}
.wsfa{word-spacing:-3.338185px;}
.ws110{word-spacing:-2.755639px;}
.ws10a{word-spacing:-2.683639px;}
.ws10e{word-spacing:-2.552729px;}
.ws3c{word-spacing:-1.701820px;}
.ws104{word-spacing:-1.178183px;}
.wsdc{word-spacing:-1.119274px;}
.wsdb{word-spacing:-1.112728px;}
.wsc2{word-spacing:-0.850910px;}
.wsb6{word-spacing:-0.445091px;}
.ws98{word-spacing:-0.314182px;}
.wsc{word-spacing:-0.227147px;}
.wsff{word-spacing:-0.086077px;}
.ws2{word-spacing:-0.071731px;}
.ws41{word-spacing:-0.065455px;}
.ws83{word-spacing:-0.052364px;}
.ws50{word-spacing:-0.047821px;}
.ws8a{word-spacing:-0.039999px;}
.ws54{word-spacing:-0.035866px;}
.ws17{word-spacing:0.000000px;}
.ws52{word-spacing:0.013091px;}
.ws44{word-spacing:0.261818px;}
.wse2{word-spacing:0.274909px;}
.ws42{word-spacing:0.327273px;}
.ws51{word-spacing:0.340364px;}
.wsd5{word-spacing:0.798546px;}
.wsa0{word-spacing:1.125819px;}
.wscb{word-spacing:1.256728px;}
.ws19{word-spacing:2.029093px;}
.ws31{word-spacing:2.827639px;}
.ws95{word-spacing:3.220366px;}
.wsa6{word-spacing:3.482185px;}
.wsac{word-spacing:3.547639px;}
.ws9b{word-spacing:3.613094px;}
.wsb3{word-spacing:3.809458px;}
.wsb7{word-spacing:4.005822px;}
.ws9f{word-spacing:5.184004px;}
.ws10{word-spacing:5.391759px;}
.wsa7{word-spacing:5.511277px;}
.ws94{word-spacing:6.100369px;}
.ws87{word-spacing:8.864855px;}
.ws4a{word-spacing:9.157099px;}
.ws6b{word-spacing:9.549216px;}
.ws48{word-spacing:9.752735px;}
.ws47{word-spacing:9.818190px;}
.ws49{word-spacing:10.014554px;}
.wscf{word-spacing:10.027645px;}
.wsd1{word-spacing:10.093099px;}
.ws5f{word-spacing:10.100638px;}
.ws1c{word-spacing:10.407281px;}
.wsaf{word-spacing:10.747645px;}
.ws46{word-spacing:11.578919px;}
.ws88{word-spacing:17.490094px;}
.wsad{word-spacing:17.778094px;}
.ws64{word-spacing:18.144015px;}
.wsc7{word-spacing:19.832744px;}
.ws8d{word-spacing:21.143438px;}
.ws3d{word-spacing:21.796382px;}
.ws4c{word-spacing:24.759348px;}
.ws1{word-spacing:25.034189px;}
.ws6a{word-spacing:25.527341px;}
.ws106{word-spacing:26.705477px;}
.wsa3{word-spacing:27.032750px;}
.wse3{word-spacing:27.229114px;}
.ws0{word-spacing:31.091012px;}
.ws59{word-spacing:39.010942px;}
.ws107{word-spacing:42.152762px;}
.ws1f{word-spacing:48.418425px;}
.wsbc{word-spacing:49.941860px;}
.wsc1{word-spacing:55.374592px;}
.wsbe{word-spacing:66.240055px;}
.ws108{word-spacing:87.185527px;}
.wsbd{word-spacing:99.032810px;}
.ws53{word-spacing:99.202992px;}
.wsc6{word-spacing:115.527369px;}
.wsbf{word-spacing:117.163734px;}
.ws5a{word-spacing:119.192827px;}
.ws86{word-spacing:120.206325px;}
.wsc0{word-spacing:133.527384px;}
.ws5b{word-spacing:176.478693px;}
.ws5c{word-spacing:227.336917px;}
.ws71{word-spacing:253.741302px;}
.ws18{word-spacing:2444.939256px;}
._e{margin-left:-32.792755px;}
._0{margin-left:-8.056807px;}
._2b{margin-left:-6.992576px;}
._4{margin-left:-5.810227px;}
._3{margin-left:-4.384225px;}
._1{margin-left:-2.788895px;}
._5{margin-left:-1.613941px;}
._7{width:1.494390px;}
._2{width:2.582310px;}
._2e{width:3.800898px;}
._1d{width:7.393503px;}
._2f{width:10.930918px;}
._30{width:17.803651px;}
._18{width:19.348909px;}
._2c{width:20.592546px;}
._10{width:21.861836px;}
._6{width:23.013606px;}
._3e{width:24.413333px;}
._2d{width:25.883011px;}
._2a{width:27.609104px;}
._17{width:29.100411px;}
._31{width:30.370934px;}
._43{width:32.959591px;}
._14{width:34.025034px;}
._d{width:35.781242px;}
._45{width:38.487305px;}
._9{width:39.665488px;}
._13{width:45.360038px;}
._c{width:48.698222px;}
._44{width:49.780543px;}
._12{width:54.916409px;}
._11{width:59.475808px;}
._19{width:64.839856px;}
._1e{width:66.436419px;}
._1c{width:71.738242px;}
._29{width:80.697600px;}
._3d{width:87.774619px;}
._40{width:94.450988px;}
._1a{width:96.836850px;}
._3a{width:119.910076px;}
._35{width:130.840995px;}
._42{width:136.276477px;}
._3c{width:142.821937px;}
._1b{width:147.076486px;}
._20{width:151.851921px;}
._27{width:161.018316px;}
._33{width:163.505591px;}
._23{width:177.316511px;}
._37{width:181.701970px;}
._3b{width:203.640326px;}
._39{width:214.494724px;}
._1f{width:220.123820px;}
._26{width:238.320199px;}
._34{width:253.241089px;}
._28{width:254.618394px;}
._32{width:266.987657px;}
._22{width:271.047499px;}
._36{width:276.085847px;}
._38{width:278.637474px;}
._41{width:291.207515px;}
._25{width:294.216771px;}
._24{width:296.833853px;}
._21{width:310.580421px;}
._3f{width:553.222279px;}
._a{width:1843.801693px;}
._b{width:1850.252118px;}
._16{width:2123.543588px;}
._8{width:2166.433608px;}
._f{width:2227.027801px;}
._15{width:2234.114929px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y13{bottom:61.467000px;}
.y79{bottom:106.299000px;}
.y12c{bottom:106.822500px;}
.y18d{bottom:108.993000px;}
.ya6{bottom:117.891000px;}
.y78{bottom:122.737500px;}
.y100{bottom:126.622500px;}
.y12b{bottom:127.146000px;}
.y4b{bottom:128.163000px;}
.y18c{bottom:129.316500px;}
.y77{bottom:139.176000px;}
.y156{bottom:150.043500px;}
.y4a{bottom:152.082000px;}
.y76{bottom:155.614500px;}
.yff{bottom:157.515000px;}
.ya5{bottom:157.686000px;}
.y18b{bottom:163.089000px;}
.y12a{bottom:170.367000px;}
.y74{bottom:172.053000px;}
.y49{bottom:172.407000px;}
.y18a{bottom:183.412500px;}
.y75{bottom:183.783000px;}
.y73{bottom:188.491500px;}
.ydd{bottom:189.333000px;}
.y129{bottom:190.690500px;}
.ya2{bottom:191.001000px;}
.y48{bottom:192.730500px;}
.y72{bottom:194.205000px;}
.ya4{bottom:198.423000px;}
.yfe{bottom:201.268500px;}
.ya3{bottom:202.822500px;}
.y189{bottom:203.737500px;}
.ya1{bottom:203.881500px;}
.ya0{bottom:205.479000px;}
.y9f{bottom:209.524500px;}
.ydc{bottom:209.656500px;}
.y71{bottom:210.643500px;}
.y128{bottom:211.015500px;}
.y47{bottom:213.054000px;}
.yfd{bottom:221.592000px;}
.y70{bottom:229.716000px;}
.y188{bottom:237.510000px;}
.ydb{bottom:240.549000px;}
.yfc{bottom:241.915500px;}
.y6f{bottom:242.976000px;}
.y177{bottom:245.842500px;}
.y155{bottom:247.543500px;}
.y127{bottom:254.236500px;}
.y187{bottom:257.833500px;}
.y9e{bottom:258.256500px;}
.y46{bottom:261.526500px;}
.yfb{bottom:262.239000px;}
.y176{bottom:266.166000px;}
.y126{bottom:274.560000px;}
.y9d{bottom:278.580000px;}
.y45{bottom:281.850000px;}
.yfa{bottom:282.564000px;}
.y6e{bottom:283.323000px;}
.yda{bottom:284.367000px;}
.y186{bottom:291.607500px;}
.y125{bottom:294.883500px;}
.y154{bottom:299.101500px;}
.yf9{bottom:302.887500px;}
.y6d{bottom:303.646500px;}
.yd9{bottom:304.692000px;}
.y175{bottom:309.387000px;}
.y9c{bottom:309.471000px;}
.y185{bottom:311.931000px;}
.y124{bottom:315.207000px;}
.y153{bottom:319.425000px;}
.y44{bottom:322.998000px;}
.yd8{bottom:325.015500px;}
.y174{bottom:329.710500px;}
.y6c{bottom:330.519000px;}
.y184{bottom:332.254500px;}
.y123{bottom:335.530500px;}
.y152{bottom:339.748500px;}
.y6b{bottom:343.779000px;}
.yd7{bottom:345.339000px;}
.y173{bottom:350.035500px;}
.yf8{bottom:351.222000px;}
.y9b{bottom:353.290500px;}
.y122{bottom:355.855500px;}
.y43{bottom:359.974500px;}
.y151{bottom:360.072000px;}
.yd6{bottom:365.662500px;}
.y183{bottom:366.028500px;}
.y172{bottom:370.359000px;}
.yf7{bottom:371.545500px;}
.y9a{bottom:373.614000px;}
.y121{bottom:376.179000px;}
.y42{bottom:380.298000px;}
.y150{bottom:380.395500px;}
.y6a{bottom:381.919500px;}
.y182{bottom:386.352000px;}
.y171{bottom:390.682500px;}
.yf6{bottom:391.869000px;}
.y99{bottom:393.937500px;}
.y120{bottom:396.502500px;}
.y41{bottom:400.621500px;}
.y14f{bottom:400.720500px;}
.y181{bottom:406.675500px;}
.y69{bottom:408.181500px;}
.yd5{bottom:408.883500px;}
.y170{bottom:411.006000px;}
.yf5{bottom:412.192500px;}
.y11f{bottom:416.826000px;}
.y40{bottom:420.946500px;}
.y14e{bottom:421.044000px;}
.y68{bottom:422.566500px;}
.yd4{bottom:429.207000px;}
.y16f{bottom:431.329500px;}
.y98{bottom:432.195000px;}
.yf4{bottom:432.516000px;}
.y11e{bottom:437.149500px;}
.y180{bottom:440.449500px;}
.y3f{bottom:441.270000px;}
.y14d{bottom:441.367500px;}
.y67{bottom:442.890000px;}
.yd3{bottom:449.532000px;}
.y97{bottom:452.518500px;}
.yf3{bottom:452.841000px;}
.ye9{bottom:453.939000px;}
.y11d{bottom:457.474500px;}
.y17f{bottom:460.773000px;}
.y3e{bottom:461.593500px;}
.y14c{bottom:461.691000px;}
.y66{bottom:463.215000px;}
.yd2{bottom:469.855500px;}
.y96{bottom:472.842000px;}
.yf2{bottom:473.164500px;}
.y11c{bottom:477.798000px;}
.y3d{bottom:481.917000px;}
.y14b{bottom:482.014500px;}
.y65{bottom:484.198500px;}
.y16e{bottom:484.767000px;}
.yd1{bottom:490.179000px;}
.yf1{bottom:493.488000px;}
.yc4{bottom:494.208000px;}
.y17e{bottom:494.547000px;}
.y11b{bottom:498.121500px;}
.y3c{bottom:502.240500px;}
.y14a{bottom:502.339500px;}
.y16d{bottom:505.090500px;}
.y64{bottom:506.493000px;}
.y95{bottom:506.616000px;}
.yd0{bottom:510.502500px;}
.yc3{bottom:514.531500px;}
.y17d{bottom:514.870500px;}
.yf0{bottom:522.021000px;}
.y3b{bottom:522.565500px;}
.y149{bottom:522.663000px;}
.y63{bottom:523.441500px;}
.y94{bottom:526.939500px;}
.ycf{bottom:530.826000px;}
.y16c{bottom:533.625000px;}
.y162{bottom:534.552000px;}
.y17c{bottom:535.194000px;}
.y11a{bottom:541.342500px;}
.y148{bottom:542.986500px;}
.y62{bottom:543.765000px;}
.yc2{bottom:545.422500px;}
.y93{bottom:547.263000px;}
.yce{bottom:551.151000px;}
.y161{bottom:554.875500px;}
.y119{bottom:561.666000px;}
.yef{bottom:563.169000px;}
.y61{bottom:564.090000px;}
.y3a{bottom:565.786500px;}
.y92{bottom:567.586500px;}
.y17b{bottom:568.968000px;}
.ycd{bottom:573.166500px;}
.y16b{bottom:574.771500px;}
.y160{bottom:575.199000px;}
.y118{bottom:581.991000px;}
.yc1{bottom:582.549000px;}
.y39{bottom:586.110000px;}
.y147{bottom:586.207500px;}
.y17a{bottom:589.291500px;}
.y60{bottom:594.981000px;}
.y15f{bottom:595.524000px;}
.yee{bottom:600.775500px;}
.y91{bottom:601.360500px;}
.y117{bottom:602.314500px;}
.y38{bottom:606.433500px;}
.y146{bottom:606.531000px;}
.y16a{bottom:610.651500px;}
.y15e{bottom:615.847500px;}
.ycc{bottom:616.387500px;}
.yed{bottom:621.099000px;}
.y90{bottom:621.684000px;}
.y116{bottom:622.638000px;}
.y179{bottom:625.819500px;}
.y37{bottom:626.757000px;}
.y145{bottom:626.854500px;}
.y169{bottom:630.975000px;}
.yc0{bottom:634.107000px;}
.ycb{bottom:636.711000px;}
.y115{bottom:640.507500px;}
.yec{bottom:641.422500px;}
.y8f{bottom:642.007500px;}
.y114{bottom:642.961500px;}
.y144{bottom:647.179500px;}
.y5f{bottom:648.231000px;}
.y15d{bottom:652.375500px;}
.ybf{bottom:654.430500px;}
.yca{bottom:657.034500px;}
.y8e{bottom:659.877000px;}
.y8d{bottom:662.331000px;}
.y36{bottom:663.285000px;}
.y12{bottom:665.751000px;}
.y143{bottom:667.503000px;}
.y5e{bottom:668.556000px;}
.yeb{bottom:672.315000px;}
.y168{bottom:674.196000px;}
.ybe{bottom:674.754000px;}
.yc9{bottom:677.358000px;}
.y8c{bottom:682.656000px;}
.y178{bottom:683.475000px;}
.y113{bottom:683.610000px;}
.y11{bottom:683.683500px;}
.y142{bottom:687.826500px;}
.y5d{bottom:688.879500px;}
.y167{bottom:694.519500px;}
.ybd{bottom:695.077500px;}
.yc7{bottom:697.683000px;}
.y10{bottom:701.616000px;}
.yc8{bottom:702.354000px;}
.y8b{bottom:702.979500px;}
.y15c{bottom:703.933500px;}
.y141{bottom:705.696000px;}
.y140{bottom:708.150000px;}
.y5c{bottom:709.203000px;}
.y35{bottom:714.843000px;}
.ybc{bottom:715.402500px;}
.yea{bottom:717.127500px;}
.yc6{bottom:718.006500px;}
.yf{bottom:719.550000px;}
.y15b{bottom:724.257000px;}
.y112{bottom:726.831000px;}
.y13f{bottom:728.473500px;}
.y5b{bottom:729.526500px;}
.y34{bottom:735.166500px;}
.ybb{bottom:735.726000px;}
.ye{bottom:737.482500px;}
.y21{bottom:738.067500px;}
.y8a{bottom:741.235500px;}
.y15a{bottom:744.580500px;}
.y111{bottom:747.154500px;}
.y13e{bottom:748.798500px;}
.y5a{bottom:749.850000px;}
.yd{bottom:755.415000px;}
.y33{bottom:755.491500px;}
.yba{bottom:756.049500px;}
.y89{bottom:761.559000px;}
.y159{bottom:764.904000px;}
.yc5{bottom:767.325000px;}
.y110{bottom:767.478000px;}
.y13d{bottom:769.122000px;}
.y59{bottom:770.175000px;}
.yc{bottom:773.347500px;}
.y20{bottom:774.756000px;}
.y32{bottom:775.815000px;}
.yb9{bottom:776.373000px;}
.y88{bottom:781.884000px;}
.y158{bottom:785.229000px;}
.y10f{bottom:787.801500px;}
.yb{bottom:789.039000px;}
.y13c{bottom:789.445500px;}
.y58{bottom:790.498500px;}
.ya{bottom:791.280000px;}
.y31{bottom:796.138500px;}
.y87{bottom:802.207500px;}
.y13b{bottom:807.315000px;}
.y10e{bottom:808.125000px;}
.y9{bottom:809.212500px;}
.y13a{bottom:809.769000px;}
.y57{bottom:810.822000px;}
.y1f{bottom:811.443000px;}
.y30{bottom:816.462000px;}
.yb8{bottom:819.594000px;}
.y157{bottom:821.757000px;}
.y10d{bottom:828.450000px;}
.y139{bottom:830.092500px;}
.y1e{bottom:831.766500px;}
.y8{bottom:836.485500px;}
.y2f{bottom:836.785500px;}
.y56{bottom:839.355000px;}
.yb7{bottom:839.919000px;}
.y86{bottom:845.428500px;}
.y10c{bottom:848.773500px;}
.y1d{bottom:852.090000px;}
.y166{bottom:857.110500px;}
.yb6{bottom:860.242500px;}
.y85{bottom:865.752000px;}
.ye8{bottom:865.758000px;}
.y10b{bottom:866.643000px;}
.y10a{bottom:869.097000px;}
.y1c{bottom:872.415000px;}
.y138{bottom:873.313500px;}
.y165{bottom:877.434000px;}
.y2e{bottom:880.008000px;}
.y55{bottom:880.503000px;}
.yb5{bottom:880.566000px;}
.y84{bottom:886.075500px;}
.ye7{bottom:886.081500px;}
.y109{bottom:889.420500px;}
.y1b{bottom:892.738500px;}
.y137{bottom:893.638500px;}
.y7{bottom:896.896500px;}
.y164{bottom:897.757500px;}
.y2d{bottom:900.331500px;}
.yb4{bottom:900.889500px;}
.y83{bottom:906.400500px;}
.y108{bottom:909.744000px;}
.y1a{bottom:913.062000px;}
.y136{bottom:913.962000px;}
.y54{bottom:915.673500px;}
.ye6{bottom:916.974000px;}
.y163{bottom:918.081000px;}
.y2c{bottom:920.655000px;}
.y82{bottom:926.724000px;}
.y6{bottom:933.385500px;}
.y135{bottom:934.285500px;}
.y53{bottom:935.997000px;}
.y2b{bottom:940.978500px;}
.yb3{bottom:944.110500px;}
.y107{bottom:946.272000px;}
.y5{bottom:954.306000px;}
.y134{bottom:954.609000px;}
.y81{bottom:956.929500px;}
.yb2{bottom:959.680500px;}
.y2a{bottom:961.302000px;}
.y80{bottom:961.387500px;}
.yb1{bottom:964.434000px;}
.y19{bottom:970.072500px;}
.ye5{bottom:971.008500px;}
.y7f{bottom:972.730500px;}
.y133{bottom:974.932500px;}
.y52{bottom:978.433500px;}
.y29{bottom:981.625500px;}
.y18{bottom:990.397500px;}
.ye4{bottom:991.333500px;}
.y132{bottom:995.257500px;}
.y106{bottom:997.830000px;}
.y51{bottom:998.757000px;}
.y4{bottom:999.774000px;}
.y28{bottom:1001.950500px;}
.yb0{bottom:1003.369500px;}
.ye3{bottom:1011.657000px;}
.y131{bottom:1015.581000px;}
.y105{bottom:1018.155000px;}
.y7e{bottom:1019.466000px;}
.y3{bottom:1020.694500px;}
.y27{bottom:1022.274000px;}
.y17{bottom:1027.084500px;}
.yae{bottom:1027.392000px;}
.ye2{bottom:1031.980500px;}
.y130{bottom:1035.904500px;}
.y4c{bottom:1036.482000px;}
.y50{bottom:1038.244500px;}
.y104{bottom:1038.478500px;}
.y7d{bottom:1039.789500px;}
.y2{bottom:1041.616500px;}
.y26{bottom:1042.597500px;}
.y4f{bottom:1043.325000px;}
.yad{bottom:1045.917000px;}
.y4d{bottom:1050.099000px;}
.ye1{bottom:1052.304000px;}
.y12f{bottom:1056.228000px;}
.y4e{bottom:1056.675000px;}
.yaf{bottom:1058.376000px;}
.y103{bottom:1058.802000px;}
.y25{bottom:1062.921000px;}
.y16{bottom:1063.771500px;}
.yac{bottom:1071.627000px;}
.ya8{bottom:1071.759000px;}
.ye0{bottom:1072.627500px;}
.y1{bottom:1074.493500px;}
.y12e{bottom:1076.551500px;}
.y102{bottom:1079.125500px;}
.y7b{bottom:1083.010500px;}
.y24{bottom:1083.244500px;}
.ya9{bottom:1084.641000px;}
.ya7{bottom:1090.284000px;}
.y7c{bottom:1095.471000px;}
.y12d{bottom:1096.876500px;}
.y101{bottom:1099.449000px;}
.y15{bottom:1100.458500px;}
.ydf{bottom:1101.160500px;}
.y23{bottom:1103.569500px;}
.yab{bottom:1104.835500px;}
.yaa{bottom:1109.319000px;}
.y7a{bottom:1119.774000px;}
.y14{bottom:1137.147000px;}
.y22{bottom:1140.097500px;}
.yde{bottom:1142.308500px;}
.h22{height:2.391024px;}
.h23{height:8.543503px;}
.h31{height:13.053450px;}
.h15{height:13.055024px;}
.h12{height:26.899200px;}
.h7{height:27.783619px;}
.h1e{height:33.665702px;}
.h1c{height:35.865450px;}
.h21{height:38.519654px;}
.h17{height:39.253200px;}
.h20{height:40.348800px;}
.h16{height:41.947200px;}
.h2d{height:43.375200px;}
.h8{height:44.831700px;}
.h10{height:45.425492px;}
.h9{height:46.326090px;}
.he{height:49.090950px;}
.h3{height:49.924915px;}
.ha{height:50.547024px;}
.h1b{height:50.727315px;}
.h18{height:51.335503px;}
.h33{height:51.963024px;}
.hf{height:52.233024px;}
.h5{height:53.319835px;}
.h4{height:53.798400px;}
.h6{height:54.336020px;}
.hb{height:58.385503px;}
.h25{height:58.413450px;}
.hd{height:59.498231px;}
.h11{height:59.619450px;}
.h30{height:60.597024px;}
.h28{height:62.889450px;}
.h19{height:65.131930px;}
.h1f{height:70.161024px;}
.h14{height:70.167024px;}
.h32{height:74.403450px;}
.h2f{height:74.933503px;}
.h2{height:77.366008px;}
.h29{height:77.817450px;}
.hc{height:78.158098px;}
.h2a{height:83.169024px;}
.h1d{height:97.517702px;}
.h13{height:97.523702px;}
.h1a{height:103.283503px;}
.h24{height:103.893450px;}
.h2e{height:114.567024px;}
.h2c{height:126.799200px;}
.h27{height:133.365024px;}
.h2b{height:144.255024px;}
.h26{height:167.097450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:105.045000px;}
.x25{left:106.299000px;}
.x3{left:109.429500px;}
.xd3{left:110.754000px;}
.x1{left:117.574500px;}
.xb3{left:118.647000px;}
.x103{left:121.566000px;}
.x27{left:122.662500px;}
.x4c{left:124.954500px;}
.xe1{left:127.102500px;}
.x30{left:129.369000px;}
.x26{left:130.845000px;}
.xba{left:133.176000px;}
.xb4{left:135.376500px;}
.xee{left:136.558500px;}
.x11e{left:137.674500px;}
.xf8{left:140.133000px;}
.x31{left:142.306500px;}
.x21{left:145.459500px;}
.x9{left:147.208500px;}
.x12a{left:152.352000px;}
.xac{left:153.802500px;}
.x6d{left:155.353500px;}
.x12b{left:158.262000px;}
.x48{left:163.855500px;}
.x9c{left:165.657000px;}
.x8{left:169.624500px;}
.xa2{left:172.338000px;}
.xd4{left:174.490500px;}
.x112{left:176.779500px;}
.x6e{left:180.168000px;}
.x40{left:183.447000px;}
.x10f{left:186.154500px;}
.xe2{left:188.263500px;}
.x113{left:189.715500px;}
.xa{left:191.821500px;}
.xad{left:194.362500px;}
.x8f{left:195.759000px;}
.x36{left:196.995000px;}
.x65{left:198.394500px;}
.x37{left:203.485500px;}
.xb{left:204.820500px;}
.xca{left:207.262500px;}
.x38{left:209.395500px;}
.xcb{left:211.024500px;}
.xed{left:213.475500px;}
.xfa{left:215.364000px;}
.x39{left:218.613000px;}
.x66{left:219.900000px;}
.xae{left:222.234000px;}
.x107{left:223.678500px;}
.xcc{left:224.932500px;}
.x130{left:228.507000px;}
.x83{left:230.784000px;}
.xfb{left:234.229500px;}
.xe3{left:235.551000px;}
.x9d{left:237.196500px;}
.x3a{left:239.266500px;}
.x108{left:241.437000px;}
.xcd{left:242.599500px;}
.x126{left:245.613000px;}
.xb0{left:248.284500px;}
.x9e{left:249.924000px;}
.x85{left:251.070000px;}
.x110{left:252.081000px;}
.x47{left:255.678000px;}
.xd5{left:257.008500px;}
.xd6{left:261.555000px;}
.xb1{left:264.724500px;}
.xe4{left:266.206500px;}
.x10d{left:267.465000px;}
.xce{left:268.656000px;}
.xb7{left:270.153000px;}
.x22{left:271.240500px;}
.xcf{left:273.202500px;}
.x41{left:276.798000px;}
.x2c{left:278.737500px;}
.x10b{left:280.300500px;}
.x23{left:283.054500px;}
.xb8{left:285.418500px;}
.xd7{left:287.437500px;}
.xf9{left:289.302000px;}
.x2d{left:291.009000px;}
.x127{left:293.364000px;}
.x42{left:295.767000px;}
.x2e{left:297.322500px;}
.x6{left:300.487500px;}
.x10c{left:302.058000px;}
.x2f{left:303.231000px;}
.xe{left:304.887000px;}
.x9f{left:307.420500px;}
.x43{left:308.703000px;}
.xa3{left:309.921000px;}
.x1d{left:312.795000px;}
.x137{left:314.232000px;}
.xf2{left:315.628500px;}
.xab{left:317.224500px;}
.x71{left:322.822500px;}
.x128{left:323.889000px;}
.x5f{left:325.618500px;}
.xf{left:327.717000px;}
.xaa{left:328.897500px;}
.xa5{left:329.952000px;}
.x60{left:331.938000px;}
.x10{left:333.610500px;}
.x114{left:334.770000px;}
.x7f{left:336.705000px;}
.x1e{left:338.446500px;}
.x2{left:339.544500px;}
.xbf{left:340.942500px;}
.x5{left:344.646000px;}
.xc4{left:346.704000px;}
.x115{left:348.466500px;}
.x80{left:351.970500px;}
.x111{left:353.407500px;}
.x10e{left:354.711000px;}
.x28{left:356.239500px;}
.x81{left:358.252500px;}
.x11d{left:359.974500px;}
.x4d{left:361.207500px;}
.x82{left:364.161000px;}
.x4a{left:366.694500px;}
.x29{left:368.512500px;}
.x6b{left:369.516000px;}
.x6c{left:371.817000px;}
.x2a{left:374.826000px;}
.x4e{left:376.198500px;}
.xc0{left:378.271500px;}
.x4{left:380.880000px;}
.x74{left:382.114500px;}
.xeb{left:384.379500px;}
.xa6{left:385.782000px;}
.xc1{left:389.725500px;}
.x61{left:391.737000px;}
.x135{left:393.210000px;}
.xd8{left:394.237500px;}
.xec{left:397.315500px;}
.x11{left:398.596500px;}
.x62{left:401.692500px;}
.x11a{left:403.531500px;}
.x119{left:406.195500px;}
.x77{left:407.269500px;}
.xa7{left:408.355500px;}
.x12{left:409.804500px;}
.x3c{left:410.877000px;}
.x7{left:412.038000px;}
.xfc{left:414.274500px;}
.x13{left:415.698000px;}
.x1f{left:418.098000px;}
.x14{left:421.093500px;}
.x102{left:422.781000px;}
.x44{left:423.810000px;}
.xd9{left:425.928000px;}
.xb5{left:428.449500px;}
.x45{left:430.300500px;}
.x11f{left:431.413500px;}
.xda{left:433.947000px;}
.x96{left:435.495000px;}
.x20{left:437.335500px;}
.xdb{left:438.492000px;}
.x78{left:439.963500px;}
.x24{left:442.366500px;}
.x132{left:445.410000px;}
.x15{left:447.075000px;}
.x84{left:448.513500px;}
.x97{left:449.674500px;}
.x7a{left:451.363500px;}
.x63{left:454.374000px;}
.x46{left:456.418500px;}
.xa9{left:457.650000px;}
.x98{left:459.085500px;}
.x116{left:462.061500px;}
.xa8{left:463.357500px;}
.xb9{left:464.614500px;}
.x86{left:467.268000px;}
.x117{left:468.298500px;}
.x16{left:469.906500px;}
.x75{left:471.327000px;}
.x17{left:474.190500px;}
.x99{left:477.048000px;}
.xa4{left:480.570000px;}
.x87{left:482.533500px;}
.x72{left:484.525500px;}
.x76{left:486.031500px;}
.xbb{left:487.161000px;}
.x88{left:489.025500px;}
.x9a{left:490.468500px;}
.xc{left:491.970000px;}
.x131{left:493.318500px;}
.x68{left:495.270000px;}
.xc5{left:499.251000px;}
.x73{left:500.515500px;}
.xd{left:503.784000px;}
.x9b{left:506.917500px;}
.xc2{left:508.011000px;}
.xd0{left:509.430000px;}
.xbc{left:510.771000px;}
.xc6{left:514.789500px;}
.x69{left:515.979000px;}
.xe5{left:519.235500px;}
.x18{left:520.258500px;}
.xdc{left:523.566000px;}
.x19{left:526.152000px;}
.xdd{left:528.111000px;}
.x120{left:529.686000px;}
.x1a{left:531.547500px;}
.x79{left:534.567000px;}
.xc3{left:535.774500px;}
.xf3{left:537.762000px;}
.x1b{left:539.931000px;}
.xc7{left:544.179000px;}
.x3b{left:545.250000px;}
.x58{left:546.892500px;}
.x1c{left:553.105500px;}
.xa0{left:555.786000px;}
.xf4{left:557.397000px;}
.x59{left:558.565500px;}
.x136{left:559.804500px;}
.x90{left:561.805500px;}
.x121{left:563.752500px;}
.x3d{left:565.513500px;}
.x5a{left:568.476000px;}
.xe6{left:570.694500px;}
.x8c{left:573.381000px;}
.x91{left:574.533000px;}
.x104{left:575.932500px;}
.x3e{left:578.071500px;}
.x5b{left:580.380000px;}
.x105{left:581.841000px;}
.x64{left:583.036500px;}
.x49{left:586.662000px;}
.xa1{left:589.450500px;}
.xfd{left:592.933500px;}
.x109{left:596.827500px;}
.x4f{left:598.378500px;}
.x7d{left:603.528000px;}
.x50{left:604.615500px;}
.x12c{left:606.274500px;}
.x106{left:607.657500px;}
.x51{left:610.524000px;}
.x4b{left:615.831000px;}
.x7e{left:621.933000px;}
.xf0{left:626.593500px;}
.xef{left:628.795500px;}
.xc8{left:631.306500px;}
.xe8{left:632.490000px;}
.xf5{left:634.023000px;}
.xea{left:636.195000px;}
.x52{left:638.325000px;}
.x13a{left:639.435000px;}
.x6f{left:641.215500px;}
.x129{left:642.387000px;}
.x5c{left:643.906500px;}
.xe9{left:645.427500px;}
.x92{left:648.766500px;}
.x11b{left:649.833000px;}
.x53{left:651.580500px;}
.xaf{left:653.455500px;}
.x5d{left:655.579500px;}
.x12d{left:657.021000px;}
.xc9{left:659.034000px;}
.xf1{left:660.411000px;}
.x70{left:661.581000px;}
.x54{left:664.944000px;}
.x118{left:666.549000px;}
.x11c{left:668.356500px;}
.x93{left:671.074500px;}
.x8d{left:673.969500px;}
.x5e{left:677.394000px;}
.x12e{left:681.372000px;}
.x12f{left:683.095500px;}
.x67{left:684.742500px;}
.x138{left:686.805000px;}
.x55{left:689.133000px;}
.xe7{left:691.236000px;}
.x139{left:692.715000px;}
.x122{left:694.110000px;}
.x56{left:695.370000px;}
.x57{left:701.278500px;}
.x89{left:704.215500px;}
.xde{left:705.705000px;}
.x133{left:706.777500px;}
.x123{left:709.377000px;}
.x8a{left:710.706000px;}
.x134{left:713.121000px;}
.x124{left:715.612500px;}
.x8b{left:716.614500px;}
.xfe{left:718.519500px;}
.x125{left:721.522500px;}
.xff{left:725.010000px;}
.xf6{left:726.046500px;}
.xf7{left:730.591500px;}
.x100{left:734.016000px;}
.xbd{left:735.543000px;}
.x32{left:737.104500px;}
.xb6{left:739.033500px;}
.x101{left:743.235000px;}
.x94{left:744.624000px;}
.xdf{left:747.816000px;}
.x33{left:749.376000px;}
.xb2{left:752.514000px;}
.x34{left:755.868000px;}
.x95{left:757.350000px;}
.xbe{left:759.736500px;}
.x35{left:761.776500px;}
.xe0{left:763.852500px;}
.xd1{left:765.787500px;}
.x8e{left:767.908500px;}
.xd2{left:770.332500px;}
.x7b{left:772.650000px;}
.x10a{left:776.205000px;}
.x6a{left:778.944000px;}
.x7c{left:782.937000px;}
.x3f{left:784.252500px;}
@media print{
.v10{vertical-align:-47.200000pt;}
.v11{vertical-align:-44.304000pt;}
.vf{vertical-align:-41.706667pt;}
.v5{vertical-align:-20.314667pt;}
.v26{vertical-align:-14.677333pt;}
.v2a{vertical-align:-11.477333pt;}
.v6{vertical-align:-9.242667pt;}
.v2{vertical-align:-7.968000pt;}
.vc{vertical-align:-6.266667pt;}
.v0{vertical-align:0.000000pt;}
.v27{vertical-align:9.242667pt;}
.vb{vertical-align:10.981333pt;}
.va{vertical-align:13.376000pt;}
.v19{vertical-align:14.384000pt;}
.v12{vertical-align:20.042667pt;}
.v4{vertical-align:21.114667pt;}
.v28{vertical-align:22.906667pt;}
.v17{vertical-align:24.021333pt;}
.ve{vertical-align:31.184000pt;}
.v29{vertical-align:34.256000pt;}
.v1a{vertical-align:37.290667pt;}
.vd{vertical-align:39.909333pt;}
.v25{vertical-align:41.109333pt;}
.v1{vertical-align:42.805333pt;}
.v3{vertical-align:44.304000pt;}
.v22{vertical-align:45.338667pt;}
.v14{vertical-align:47.450667pt;}
.v21{vertical-align:52.480000pt;}
.v9{vertical-align:56.762667pt;}
.v18{vertical-align:58.688000pt;}
.v7{vertical-align:60.245333pt;}
.v1d{vertical-align:65.861333pt;}
.v1b{vertical-align:71.802667pt;}
.v8{vertical-align:73.584000pt;}
.v15{vertical-align:86.810667pt;}
.v23{vertical-align:88.800000pt;}
.v1f{vertical-align:89.882667pt;}
.v16{vertical-align:95.541333pt;}
.v20{vertical-align:96.784000pt;}
.v24{vertical-align:99.712000pt;}
.v1e{vertical-align:110.165333pt;}
.v13{vertical-align:116.421333pt;}
.v1c{vertical-align:126.101333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000114pt;}
.ls46{letter-spacing:0.000522pt;}
.ls27{letter-spacing:0.000626pt;}
.ls66{letter-spacing:0.000749pt;}
.ls8e{letter-spacing:0.000932pt;}
.ls87{letter-spacing:0.000933pt;}
.ls65{letter-spacing:0.001431pt;}
.ls40{letter-spacing:0.001546pt;}
.ls5c{letter-spacing:0.001788pt;}
.ls57{letter-spacing:0.002405pt;}
.ls73{letter-spacing:0.002557pt;}
.ls1a{letter-spacing:0.002879pt;}
.ls63{letter-spacing:0.002881pt;}
.ls2{letter-spacing:0.003035pt;}
.ls4c{letter-spacing:0.003339pt;}
.ls12{letter-spacing:0.003370pt;}
.ls22{letter-spacing:0.003521pt;}
.ls7f{letter-spacing:0.004382pt;}
.ls3b{letter-spacing:0.005109pt;}
.ls8d{letter-spacing:0.005465pt;}
.ls52{letter-spacing:0.005650pt;}
.ls45{letter-spacing:0.006082pt;}
.ls84{letter-spacing:0.007608pt;}
.ls25{letter-spacing:0.008658pt;}
.ls98{letter-spacing:0.009869pt;}
.ls2a{letter-spacing:0.013991pt;}
.ls91{letter-spacing:0.017101pt;}
.ls7c{letter-spacing:0.026529pt;}
.ls56{letter-spacing:0.027523pt;}
.ls28{letter-spacing:1.142071pt;}
.ls2b{letter-spacing:1.147404pt;}
.ls6d{letter-spacing:1.275216pt;}
.ls6e{letter-spacing:1.522961pt;}
.ls80{letter-spacing:1.614498pt;}
.ls78{letter-spacing:1.620322pt;}
.ls7d{letter-spacing:1.625655pt;}
.ls67{letter-spacing:1.629092pt;}
.ls0{letter-spacing:1.903624pt;}
.ls3e{letter-spacing:2.077981pt;}
.ls10{letter-spacing:2.083799pt;}
.ls58{letter-spacing:2.090615pt;}
.ls1d{letter-spacing:2.098353pt;}
.ls4b{letter-spacing:2.652733pt;}
.ls3a{letter-spacing:2.653258pt;}
.ls1f{letter-spacing:2.653816pt;}
.ls16{letter-spacing:2.655975pt;}
.ls18{letter-spacing:2.656473pt;}
.ls7e{letter-spacing:2.656528pt;}
.ls82{letter-spacing:2.658591pt;}
.ls23{letter-spacing:2.659149pt;}
.ls79{letter-spacing:2.661861pt;}
.ls68{letter-spacing:6.400098pt;}
.ls42{letter-spacing:6.458187pt;}
.ls20{letter-spacing:6.574551pt;}
.ls44{letter-spacing:8.177357pt;}
.ls47{letter-spacing:8.192749pt;}
.ls37{letter-spacing:8.669098pt;}
.ls5{letter-spacing:8.979623pt;}
.ls39{letter-spacing:9.229816pt;}
.ls35{letter-spacing:9.658190pt;}
.ls7b{letter-spacing:9.693784pt;}
.ls6a{letter-spacing:9.699521pt;}
.ls21{letter-spacing:9.716372pt;}
.lsa3{letter-spacing:11.777394pt;}
.lsa6{letter-spacing:11.782727pt;}
.ls9c{letter-spacing:11.797746pt;}
.ls74{letter-spacing:12.348733pt;}
.ls26{letter-spacing:12.349258pt;}
.lsa4{letter-spacing:12.355149pt;}
.ls1c{letter-spacing:12.916374pt;}
.ls54{letter-spacing:12.929788pt;}
.ls1b{letter-spacing:12.931521pt;}
.ls6b{letter-spacing:12.934082pt;}
.ls77{letter-spacing:13.169788pt;}
.ls88{letter-spacing:13.207284pt;}
.ls9b{letter-spacing:13.323647pt;}
.ls9a{letter-spacing:13.336451pt;}
.lse{letter-spacing:13.624451pt;}
.lsa7{letter-spacing:14.021830pt;}
.ls76{letter-spacing:14.720012pt;}
.lsa{letter-spacing:15.243649pt;}
.ls8f{letter-spacing:15.581258pt;}
.ls24{letter-spacing:15.586591pt;}
.ls69{letter-spacing:16.071925pt;}
.ls72{letter-spacing:16.122001pt;}
.ls7a{letter-spacing:16.164811pt;}
.ls19{letter-spacing:16.174559pt;}
.ls49{letter-spacing:16.402534pt;}
.ls3{letter-spacing:17.374774pt;}
.ls5e{letter-spacing:17.512742pt;}
.ls6{letter-spacing:17.746711pt;}
.ls4{letter-spacing:17.799845pt;}
.lsac{letter-spacing:17.861833pt;}
.ls5f{letter-spacing:17.920015pt;}
.ls60{letter-spacing:17.978197pt;}
.lsab{letter-spacing:18.676379pt;}
.lsb0{letter-spacing:18.813258pt;}
.ls4f{letter-spacing:18.818066pt;}
.ls99{letter-spacing:18.818591pt;}
.lsb4{letter-spacing:18.845258pt;}
.lsb1{letter-spacing:18.903925pt;}
.ls38{letter-spacing:19.083652pt;}
.ls9e{letter-spacing:19.141834pt;}
.ls1{letter-spacing:19.187521pt;}
.ls64{letter-spacing:19.200016pt;}
.lsa0{letter-spacing:19.258198pt;}
.ls55{letter-spacing:19.300811pt;}
.ls96{letter-spacing:19.316380pt;}
.ls8{letter-spacing:19.374562pt;}
.lsd{letter-spacing:19.432743pt;}
.lsc{letter-spacing:19.490925pt;}
.lsb{letter-spacing:19.549107pt;}
.lsa1{letter-spacing:19.665471pt;}
.lsa5{letter-spacing:19.723653pt;}
.ls97{letter-spacing:19.781835pt;}
.ls13{letter-spacing:19.840017pt;}
.ls94{letter-spacing:19.898198pt;}
.ls89{letter-spacing:19.956380pt;}
.ls11{letter-spacing:20.024855pt;}
.ls9d{letter-spacing:20.030188pt;}
.lsa9{letter-spacing:20.072744pt;}
.ls83{letter-spacing:20.178591pt;}
.lsb7{letter-spacing:20.242591pt;}
.ls93{letter-spacing:20.279925pt;}
.lsb8{letter-spacing:20.480017pt;}
.ls86{letter-spacing:20.538199pt;}
.ls81{letter-spacing:20.596381pt;}
.lsa8{letter-spacing:20.654563pt;}
.lsa2{letter-spacing:20.712745pt;}
.ls70{letter-spacing:21.236381pt;}
.lsae{letter-spacing:21.270633pt;}
.ls48{letter-spacing:21.280256pt;}
.ls9f{letter-spacing:21.760018pt;}
.ls62{letter-spacing:21.818200pt;}
.ls4a{letter-spacing:22.050066pt;}
.ls30{letter-spacing:22.050591pt;}
.ls75{letter-spacing:22.055400pt;}
.lsb5{letter-spacing:22.400019pt;}
.ls71{letter-spacing:22.516382pt;}
.ls3d{letter-spacing:22.632746pt;}
.ls15{letter-spacing:22.807292pt;}
.lsf{letter-spacing:23.330929pt;}
.ls3f{letter-spacing:23.609490pt;}
.ls1e{letter-spacing:23.614824pt;}
.lsaf{letter-spacing:23.621838pt;}
.lsad{letter-spacing:23.907733pt;}
.ls33{letter-spacing:23.910400pt;}
.lsb3{letter-spacing:24.261838pt;}
.ls95{letter-spacing:24.610930pt;}
.lsb6{letter-spacing:26.705477pt;}
.lsb2{letter-spacing:27.719925pt;}
.lsaa{letter-spacing:28.343925pt;}
.ls3c{letter-spacing:28.509258pt;}
.ls4d{letter-spacing:29.085784pt;}
.ls9{letter-spacing:29.090933pt;}
.ls5a{letter-spacing:29.095121pt;}
.ls14{letter-spacing:29.381843pt;}
.ls53{letter-spacing:31.746591pt;}
.ls34{letter-spacing:32.349118pt;}
.ls50{letter-spacing:35.549121pt;}
.ls17{letter-spacing:37.876395pt;}
.ls2c{letter-spacing:48.069806pt;}
.ls61{letter-spacing:57.018229pt;}
.ls51{letter-spacing:58.938231pt;}
.ls85{letter-spacing:59.345504pt;}
.ls29{letter-spacing:60.997806pt;}
.ls59{letter-spacing:70.717258pt;}
.ls5b{letter-spacing:70.722591pt;}
.ls4e{letter-spacing:126.080105pt;}
.ls6f{letter-spacing:167.272867pt;}
.ls2d{letter-spacing:237.091107pt;}
.ls8b{letter-spacing:277.527504pt;}
.ls31{letter-spacing:321.773258pt;}
.ls8a{letter-spacing:326.621258pt;}
.ls2f{letter-spacing:344.397258pt;}
.ls32{letter-spacing:354.967569pt;}
.ls2e{letter-spacing:364.393031pt;}
.ls5d{letter-spacing:375.098494pt;}
.ls92{letter-spacing:377.042591pt;}
.ls90{letter-spacing:582.242591pt;}
.ls8c{letter-spacing:599.098681pt;}
.ls41{letter-spacing:702.313313pt;}
.ls43{letter-spacing:756.422449pt;}
.ls36{letter-spacing:861.964355pt;}
.ws90{word-spacing:-58.181867pt;}
.ws65{word-spacing:-42.066082pt;}
.ws7f{word-spacing:-42.007308pt;}
.ws33{word-spacing:-37.899668pt;}
.wse{word-spacing:-34.611401pt;}
.ws69{word-spacing:-32.063846pt;}
.ws66{word-spacing:-29.736752pt;}
.ws80{word-spacing:-29.521250pt;}
.ws35{word-spacing:-29.090933pt;}
.ws43{word-spacing:-28.183296pt;}
.ws4{word-spacing:-26.566933pt;}
.ws85{word-spacing:-26.122909pt;}
.ws60{word-spacing:-26.088749pt;}
.ws70{word-spacing:-24.575109pt;}
.ws84{word-spacing:-23.338405pt;}
.ws8e{word-spacing:-20.399738pt;}
.ws8c{word-spacing:-20.394405pt;}
.ws81{word-spacing:-18.525106pt;}
.wsb8{word-spacing:-17.745469pt;}
.ws56{word-spacing:-16.820378pt;}
.wsfb{word-spacing:-16.290923pt;}
.ws32{word-spacing:-16.162923pt;}
.wsef{word-spacing:-15.592740pt;}
.ws7a{word-spacing:-15.476377pt;}
.wsf2{word-spacing:-15.010922pt;}
.ws2e{word-spacing:-14.661830pt;}
.wsc8{word-spacing:-14.429103pt;}
.ws37{word-spacing:-14.346200pt;}
.wsee{word-spacing:-14.254557pt;}
.ws36{word-spacing:-14.138194pt;}
.ws1d{word-spacing:-14.080012pt;}
.wse5{word-spacing:-14.021830pt;}
.ws2f{word-spacing:-13.736739pt;}
.ws73{word-spacing:-13.556375pt;}
.ws5e{word-spacing:-13.498193pt;}
.wsd6{word-spacing:-13.440011pt;}
.wsb4{word-spacing:-13.323647pt;}
.ws78{word-spacing:-12.974556pt;}
.ws4e{word-spacing:-12.916374pt;}
.wsb9{word-spacing:-12.864011pt;}
.ws12{word-spacing:-12.805262pt;}
.ws115{word-spacing:-12.800011pt;}
.ws2d{word-spacing:-12.683647pt;}
.wsd3{word-spacing:-12.625465pt;}
.wsb5{word-spacing:-12.398556pt;}
.wsc4{word-spacing:-12.218192pt;}
.ws102{word-spacing:-12.043646pt;}
.ws5d{word-spacing:-11.955200pt;}
.ws113{word-spacing:-11.869101pt;}
.ws4f{word-spacing:-11.816737pt;}
.wsf9{word-spacing:-11.758555pt;}
.ws72{word-spacing:-11.578191pt;}
.ws3e{word-spacing:-11.403646pt;}
.ws38{word-spacing:-11.345464pt;}
.wsa2{word-spacing:-11.287282pt;}
.wsfe{word-spacing:-11.229100pt;}
.ws1a{word-spacing:-11.170918pt;}
.ws74{word-spacing:-11.112737pt;}
.wsc3{word-spacing:-11.054555pt;}
.ws109{word-spacing:-10.996373pt;}
.ws57{word-spacing:-10.938191pt;}
.ws20{word-spacing:-10.880009pt;}
.wsda{word-spacing:-10.821827pt;}
.wsd4{word-spacing:-10.705463pt;}
.ws7e{word-spacing:-10.703738pt;}
.wsdf{word-spacing:-10.647282pt;}
.wscc{word-spacing:-10.589100pt;}
.wscd{word-spacing:-10.530918pt;}
.wsf1{word-spacing:-10.472736pt;}
.ws3{word-spacing:-10.431311pt;}
.wsf3{word-spacing:-10.414554pt;}
.ws89{word-spacing:-10.356372pt;}
.ws2c{word-spacing:-10.298190pt;}
.ws101{word-spacing:-10.187645pt;}
.ws9c{word-spacing:-10.123645pt;}
.ws61{word-spacing:-10.065463pt;}
.ws40{word-spacing:-10.007281pt;}
.wsa8{word-spacing:-9.949099pt;}
.ws3f{word-spacing:-9.890917pt;}
.ws39{word-spacing:-9.832735pt;}
.wsab{word-spacing:-9.774554pt;}
.wsde{word-spacing:-9.722190pt;}
.ws1b{word-spacing:-9.716372pt;}
.ws1e{word-spacing:-9.658190pt;}
.wsdd{word-spacing:-9.605826pt;}
.ws24{word-spacing:-9.600008pt;}
.ws22{word-spacing:-9.541826pt;}
.ws21{word-spacing:-9.483644pt;}
.wsbb{word-spacing:-9.425462pt;}
.ws29{word-spacing:-9.367281pt;}
.ws9d{word-spacing:-9.314917pt;}
.ws28{word-spacing:-9.309099pt;}
.wsfc{word-spacing:-9.256735pt;}
.wsa1{word-spacing:-9.250917pt;}
.wsaa{word-spacing:-9.198553pt;}
.wsca{word-spacing:-9.192735pt;}
.wsa{word-spacing:-9.192159pt;}
.wsf6{word-spacing:-9.140371pt;}
.wsba{word-spacing:-9.134553pt;}
.ws5{word-spacing:-9.085891pt;}
.wsf4{word-spacing:-9.076371pt;}
.ws7{word-spacing:-9.032757pt;}
.ws34{word-spacing:-9.018189pt;}
.ws117{word-spacing:-8.965826pt;}
.wsd2{word-spacing:-8.960007pt;}
.ws55{word-spacing:-8.907644pt;}
.ws16{word-spacing:-8.873356pt;}
.ws114{word-spacing:-8.849462pt;}
.ws7c{word-spacing:-8.843644pt;}
.ws11{word-spacing:-8.820222pt;}
.ws10d{word-spacing:-8.785462pt;}
.wsd{word-spacing:-8.767088pt;}
.ws23{word-spacing:-8.733098pt;}
.ws58{word-spacing:-8.674916pt;}
.ws79{word-spacing:-8.669098pt;}
.wse7{word-spacing:-8.616734pt;}
.ws10c{word-spacing:-8.610916pt;}
.ws14{word-spacing:-8.607686pt;}
.wsec{word-spacing:-8.558553pt;}
.ws26{word-spacing:-8.552734pt;}
.ws6e{word-spacing:-8.507320pt;}
.ws9a{word-spacing:-8.494553pt;}
.wsb{word-spacing:-8.453598pt;}
.ws91{word-spacing:-8.442189pt;}
.wsd8{word-spacing:-8.436371pt;}
.ws30{word-spacing:-8.378189pt;}
.ws67{word-spacing:-8.363858pt;}
.wseb{word-spacing:-8.267643pt;}
.ws77{word-spacing:-8.261825pt;}
.ws6f{word-spacing:-8.220396pt;}
.ws4d{word-spacing:-8.172575pt;}
.wsed{word-spacing:-8.151280pt;}
.ws96{word-spacing:-8.145461pt;}
.ws6c{word-spacing:-8.124754pt;}
.ws105{word-spacing:-8.087279pt;}
.ws13{word-spacing:-8.081661pt;}
.wsa4{word-spacing:-8.029098pt;}
.ws6d{word-spacing:-7.981292pt;}
.ws25{word-spacing:-7.918552pt;}
.ws3a{word-spacing:-7.912734pt;}
.wse1{word-spacing:-7.854552pt;}
.wsd7{word-spacing:-7.744006pt;}
.ws7b{word-spacing:-7.680006pt;}
.wsa9{word-spacing:-7.627643pt;}
.ws92{word-spacing:-7.621825pt;}
.ws97{word-spacing:-7.569461pt;}
.wsa5{word-spacing:-7.453097pt;}
.ws3b{word-spacing:-7.394915pt;}
.wsd9{word-spacing:-7.389097pt;}
.ws76{word-spacing:-7.330915pt;}
.ws10b{word-spacing:-7.278552pt;}
.ws75{word-spacing:-7.272733pt;}
.ws9e{word-spacing:-7.098188pt;}
.wsc9{word-spacing:-7.040006pt;}
.ws6{word-spacing:-7.018984pt;}
.wsf8{word-spacing:-6.981824pt;}
.ws2a{word-spacing:-6.865460pt;}
.wse4{word-spacing:-6.807278pt;}
.wse8{word-spacing:-6.754915pt;}
.ws62{word-spacing:-6.749097pt;}
.ws27{word-spacing:-6.690915pt;}
.ws93{word-spacing:-6.632733pt;}
.ws2b{word-spacing:-6.347642pt;}
.ws45{word-spacing:-6.283642pt;}
.ws63{word-spacing:-6.231278pt;}
.wsf{word-spacing:-6.163529pt;}
.ws7d{word-spacing:-6.050914pt;}
.ws4b{word-spacing:-5.992732pt;}
.wsf7{word-spacing:-5.934550pt;}
.ws82{word-spacing:-5.748368pt;}
.ws8b{word-spacing:-5.723712pt;}
.wsb2{word-spacing:-5.701823pt;}
.wse0{word-spacing:-5.643641pt;}
.wse6{word-spacing:-5.591277pt;}
.wse9{word-spacing:-5.585459pt;}
.wsc5{word-spacing:-5.527277pt;}
.ws100{word-spacing:-5.469095pt;}
.wsf5{word-spacing:-5.352732pt;}
.wsf0{word-spacing:-5.003641pt;}
.ws103{word-spacing:-4.829095pt;}
.ws8{word-spacing:-4.622646pt;}
.wsd0{word-spacing:-4.538186pt;}
.wsce{word-spacing:-4.480004pt;}
.ws116{word-spacing:-4.421822pt;}
.wsfd{word-spacing:-4.363640pt;}
.ws9{word-spacing:-4.309157pt;}
.ws15{word-spacing:-4.303843pt;}
.ws111{word-spacing:-3.898185pt;}
.wsea{word-spacing:-3.845821pt;}
.ws10f{word-spacing:-3.840003pt;}
.ws112{word-spacing:-3.613094pt;}
.ws99{word-spacing:-3.479276pt;}
.wsae{word-spacing:-3.374548pt;}
.wsb0{word-spacing:-3.316366pt;}
.ws68{word-spacing:-3.247032pt;}
.ws8f{word-spacing:-3.246548pt;}
.wsb1{word-spacing:-3.205821pt;}
.wsfa{word-spacing:-2.967275pt;}
.ws110{word-spacing:-2.449457pt;}
.ws10a{word-spacing:-2.385457pt;}
.ws10e{word-spacing:-2.269093pt;}
.ws3c{word-spacing:-1.512729pt;}
.ws104{word-spacing:-1.047274pt;}
.wsdc{word-spacing:-0.994910pt;}
.wsdb{word-spacing:-0.989092pt;}
.wsc2{word-spacing:-0.756364pt;}
.wsb6{word-spacing:-0.395637pt;}
.ws98{word-spacing:-0.279273pt;}
.wsc{word-spacing:-0.201909pt;}
.wsff{word-spacing:-0.076513pt;}
.ws2{word-spacing:-0.063761pt;}
.ws41{word-spacing:-0.058182pt;}
.ws83{word-spacing:-0.046545pt;}
.ws50{word-spacing:-0.042507pt;}
.ws8a{word-spacing:-0.035554pt;}
.ws54{word-spacing:-0.031881pt;}
.ws17{word-spacing:0.000000pt;}
.ws52{word-spacing:0.011636pt;}
.ws44{word-spacing:0.232727pt;}
.wse2{word-spacing:0.244364pt;}
.ws42{word-spacing:0.290909pt;}
.ws51{word-spacing:0.302546pt;}
.wsd5{word-spacing:0.709819pt;}
.wsa0{word-spacing:1.000728pt;}
.wscb{word-spacing:1.117092pt;}
.ws19{word-spacing:1.803638pt;}
.ws31{word-spacing:2.513457pt;}
.ws95{word-spacing:2.862548pt;}
.wsa6{word-spacing:3.095275pt;}
.wsac{word-spacing:3.153457pt;}
.ws9b{word-spacing:3.211639pt;}
.wsb3{word-spacing:3.386185pt;}
.wsb7{word-spacing:3.560730pt;}
.ws9f{word-spacing:4.608004pt;}
.ws10{word-spacing:4.792675pt;}
.wsa7{word-spacing:4.898913pt;}
.ws94{word-spacing:5.422550pt;}
.ws87{word-spacing:7.879871pt;}
.ws4a{word-spacing:8.139643pt;}
.ws6b{word-spacing:8.488192pt;}
.ws48{word-spacing:8.669098pt;}
.ws47{word-spacing:8.727280pt;}
.ws49{word-spacing:8.901826pt;}
.wscf{word-spacing:8.913462pt;}
.wsd1{word-spacing:8.971644pt;}
.ws5f{word-spacing:8.978345pt;}
.ws1c{word-spacing:9.250917pt;}
.wsaf{word-spacing:9.553463pt;}
.ws46{word-spacing:10.292372pt;}
.ws88{word-spacing:15.546750pt;}
.wsad{word-spacing:15.802750pt;}
.ws64{word-spacing:16.128013pt;}
.wsc7{word-spacing:17.629106pt;}
.ws8d{word-spacing:18.794167pt;}
.ws3d{word-spacing:19.374562pt;}
.ws4c{word-spacing:22.008309pt;}
.ws1{word-spacing:22.252612pt;}
.ws6a{word-spacing:22.690970pt;}
.ws106{word-spacing:23.738202pt;}
.wsa3{word-spacing:24.029111pt;}
.wse3{word-spacing:24.203657pt;}
.ws0{word-spacing:27.636455pt;}
.ws59{word-spacing:34.676393pt;}
.ws107{word-spacing:37.469122pt;}
.ws1f{word-spacing:43.038600pt;}
.wsbc{word-spacing:44.392764pt;}
.wsc1{word-spacing:49.221859pt;}
.wsbe{word-spacing:58.880049pt;}
.ws108{word-spacing:77.498246pt;}
.wsbd{word-spacing:88.029164pt;}
.ws53{word-spacing:88.180437pt;}
.wsc6{word-spacing:102.690995pt;}
.wsbf{word-spacing:104.145541pt;}
.ws5a{word-spacing:105.949179pt;}
.ws86{word-spacing:106.850067pt;}
.wsc0{word-spacing:118.691008pt;}
.ws5b{word-spacing:156.869949pt;}
.ws5c{word-spacing:202.077259pt;}
.ws71{word-spacing:225.547824pt;}
.ws18{word-spacing:2173.279338pt;}
._e{margin-left:-29.149115pt;}
._0{margin-left:-7.161606pt;}
._2b{margin-left:-6.215623pt;}
._4{margin-left:-5.164646pt;}
._3{margin-left:-3.897089pt;}
._1{margin-left:-2.479018pt;}
._5{margin-left:-1.434614pt;}
._7{width:1.328347pt;}
._2{width:2.295387pt;}
._2e{width:3.378576pt;}
._1d{width:6.572002pt;}
._2f{width:9.716372pt;}
._30{width:15.825468pt;}
._18{width:17.199030pt;}
._2c{width:18.304485pt;}
._10{width:19.432743pt;}
._6{width:20.456539pt;}
._3e{width:21.700740pt;}
._2d{width:23.007121pt;}
._2a{width:24.541426pt;}
._17{width:25.867032pt;}
._31{width:26.996386pt;}
._43{width:29.297414pt;}
._14{width:30.244475pt;}
._d{width:31.805549pt;}
._45{width:34.210938pt;}
._9{width:35.258211pt;}
._13{width:40.320034pt;}
._c{width:43.287309pt;}
._44{width:44.249372pt;}
._12{width:48.814586pt;}
._11{width:52.867385pt;}
._19{width:57.635427pt;}
._1e{width:59.054595pt;}
._1c{width:63.767326pt;}
._29{width:71.731200pt;}
._3d{width:78.021883pt;}
._40{width:83.956434pt;}
._1a{width:86.077200pt;}
._3a{width:106.586735pt;}
._35{width:116.303106pt;}
._42{width:121.134646pt;}
._3c{width:126.952833pt;}
._1b{width:130.734654pt;}
._20{width:134.979485pt;}
._27{width:143.127392pt;}
._33{width:145.338303pt;}
._23{width:157.614677pt;}
._37{width:161.512862pt;}
._3b{width:181.013623pt;}
._39{width:190.661977pt;}
._1f{width:195.665618pt;}
._26{width:211.840177pt;}
._34{width:225.103190pt;}
._28{width:226.327461pt;}
._32{width:237.322362pt;}
._22{width:240.931110pt;}
._36{width:245.409642pt;}
._38{width:247.677754pt;}
._41{width:258.851125pt;}
._25{width:261.526019pt;}
._24{width:263.852313pt;}
._21{width:276.071485pt;}
._3f{width:491.753137pt;}
._a{width:1638.934838pt;}
._b{width:1644.668549pt;}
._16{width:1887.594300pt;}
._8{width:1925.718763pt;}
._f{width:1979.580268pt;}
._15{width:1985.879937pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:54.637333pt;}
.y79{bottom:94.488000pt;}
.y12c{bottom:94.953333pt;}
.y18d{bottom:96.882667pt;}
.ya6{bottom:104.792000pt;}
.y78{bottom:109.100000pt;}
.y100{bottom:112.553333pt;}
.y12b{bottom:113.018667pt;}
.y4b{bottom:113.922667pt;}
.y18c{bottom:114.948000pt;}
.y77{bottom:123.712000pt;}
.y156{bottom:133.372000pt;}
.y4a{bottom:135.184000pt;}
.y76{bottom:138.324000pt;}
.yff{bottom:140.013333pt;}
.ya5{bottom:140.165333pt;}
.y18b{bottom:144.968000pt;}
.y12a{bottom:151.437333pt;}
.y74{bottom:152.936000pt;}
.y49{bottom:153.250667pt;}
.y18a{bottom:163.033333pt;}
.y75{bottom:163.362667pt;}
.y73{bottom:167.548000pt;}
.ydd{bottom:168.296000pt;}
.y129{bottom:169.502667pt;}
.ya2{bottom:169.778667pt;}
.y48{bottom:171.316000pt;}
.y72{bottom:172.626667pt;}
.ya4{bottom:176.376000pt;}
.yfe{bottom:178.905333pt;}
.ya3{bottom:180.286667pt;}
.y189{bottom:181.100000pt;}
.ya1{bottom:181.228000pt;}
.ya0{bottom:182.648000pt;}
.y9f{bottom:186.244000pt;}
.ydc{bottom:186.361333pt;}
.y71{bottom:187.238667pt;}
.y128{bottom:187.569333pt;}
.y47{bottom:189.381333pt;}
.yfd{bottom:196.970667pt;}
.y70{bottom:204.192000pt;}
.y188{bottom:211.120000pt;}
.ydb{bottom:213.821333pt;}
.yfc{bottom:215.036000pt;}
.y6f{bottom:215.978667pt;}
.y177{bottom:218.526667pt;}
.y155{bottom:220.038667pt;}
.y127{bottom:225.988000pt;}
.y187{bottom:229.185333pt;}
.y9e{bottom:229.561333pt;}
.y46{bottom:232.468000pt;}
.yfb{bottom:233.101333pt;}
.y176{bottom:236.592000pt;}
.y126{bottom:244.053333pt;}
.y9d{bottom:247.626667pt;}
.y45{bottom:250.533333pt;}
.yfa{bottom:251.168000pt;}
.y6e{bottom:251.842667pt;}
.yda{bottom:252.770667pt;}
.y186{bottom:259.206667pt;}
.y125{bottom:262.118667pt;}
.y154{bottom:265.868000pt;}
.yf9{bottom:269.233333pt;}
.y6d{bottom:269.908000pt;}
.yd9{bottom:270.837333pt;}
.y175{bottom:275.010667pt;}
.y9c{bottom:275.085333pt;}
.y185{bottom:277.272000pt;}
.y124{bottom:280.184000pt;}
.y153{bottom:283.933333pt;}
.y44{bottom:287.109333pt;}
.yd8{bottom:288.902667pt;}
.y174{bottom:293.076000pt;}
.y6c{bottom:293.794667pt;}
.y184{bottom:295.337333pt;}
.y123{bottom:298.249333pt;}
.y152{bottom:301.998667pt;}
.y6b{bottom:305.581333pt;}
.yd7{bottom:306.968000pt;}
.y173{bottom:311.142667pt;}
.yf8{bottom:312.197333pt;}
.y9b{bottom:314.036000pt;}
.y122{bottom:316.316000pt;}
.y43{bottom:319.977333pt;}
.y151{bottom:320.064000pt;}
.yd6{bottom:325.033333pt;}
.y183{bottom:325.358667pt;}
.y172{bottom:329.208000pt;}
.yf7{bottom:330.262667pt;}
.y9a{bottom:332.101333pt;}
.y121{bottom:334.381333pt;}
.y42{bottom:338.042667pt;}
.y150{bottom:338.129333pt;}
.y6a{bottom:339.484000pt;}
.y182{bottom:343.424000pt;}
.y171{bottom:347.273333pt;}
.yf6{bottom:348.328000pt;}
.y99{bottom:350.166667pt;}
.y120{bottom:352.446667pt;}
.y41{bottom:356.108000pt;}
.y14f{bottom:356.196000pt;}
.y181{bottom:361.489333pt;}
.y69{bottom:362.828000pt;}
.yd5{bottom:363.452000pt;}
.y170{bottom:365.338667pt;}
.yf5{bottom:366.393333pt;}
.y11f{bottom:370.512000pt;}
.y40{bottom:374.174667pt;}
.y14e{bottom:374.261333pt;}
.y68{bottom:375.614667pt;}
.yd4{bottom:381.517333pt;}
.y16f{bottom:383.404000pt;}
.y98{bottom:384.173333pt;}
.yf4{bottom:384.458667pt;}
.y11e{bottom:388.577333pt;}
.y180{bottom:391.510667pt;}
.y3f{bottom:392.240000pt;}
.y14d{bottom:392.326667pt;}
.y67{bottom:393.680000pt;}
.yd3{bottom:399.584000pt;}
.y97{bottom:402.238667pt;}
.yf3{bottom:402.525333pt;}
.ye9{bottom:403.501333pt;}
.y11d{bottom:406.644000pt;}
.y17f{bottom:409.576000pt;}
.y3e{bottom:410.305333pt;}
.y14c{bottom:410.392000pt;}
.y66{bottom:411.746667pt;}
.yd2{bottom:417.649333pt;}
.y96{bottom:420.304000pt;}
.yf2{bottom:420.590667pt;}
.y11c{bottom:424.709333pt;}
.y3d{bottom:428.370667pt;}
.y14b{bottom:428.457333pt;}
.y65{bottom:430.398667pt;}
.y16e{bottom:430.904000pt;}
.yd1{bottom:435.714667pt;}
.yf1{bottom:438.656000pt;}
.yc4{bottom:439.296000pt;}
.y17e{bottom:439.597333pt;}
.y11b{bottom:442.774667pt;}
.y3c{bottom:446.436000pt;}
.y14a{bottom:446.524000pt;}
.y16d{bottom:448.969333pt;}
.y64{bottom:450.216000pt;}
.y95{bottom:450.325333pt;}
.yd0{bottom:453.780000pt;}
.yc3{bottom:457.361333pt;}
.y17d{bottom:457.662667pt;}
.yf0{bottom:464.018667pt;}
.y3b{bottom:464.502667pt;}
.y149{bottom:464.589333pt;}
.y63{bottom:465.281333pt;}
.y94{bottom:468.390667pt;}
.ycf{bottom:471.845333pt;}
.y16c{bottom:474.333333pt;}
.y162{bottom:475.157333pt;}
.y17c{bottom:475.728000pt;}
.y11a{bottom:481.193333pt;}
.y148{bottom:482.654667pt;}
.y62{bottom:483.346667pt;}
.yc2{bottom:484.820000pt;}
.y93{bottom:486.456000pt;}
.yce{bottom:489.912000pt;}
.y161{bottom:493.222667pt;}
.y119{bottom:499.258667pt;}
.yef{bottom:500.594667pt;}
.y61{bottom:501.413333pt;}
.y3a{bottom:502.921333pt;}
.y92{bottom:504.521333pt;}
.y17b{bottom:505.749333pt;}
.ycd{bottom:509.481333pt;}
.y16b{bottom:510.908000pt;}
.y160{bottom:511.288000pt;}
.y118{bottom:517.325333pt;}
.yc1{bottom:517.821333pt;}
.y39{bottom:520.986667pt;}
.y147{bottom:521.073333pt;}
.y17a{bottom:523.814667pt;}
.y60{bottom:528.872000pt;}
.y15f{bottom:529.354667pt;}
.yee{bottom:534.022667pt;}
.y91{bottom:534.542667pt;}
.y117{bottom:535.390667pt;}
.y38{bottom:539.052000pt;}
.y146{bottom:539.138667pt;}
.y16a{bottom:542.801333pt;}
.y15e{bottom:547.420000pt;}
.ycc{bottom:547.900000pt;}
.yed{bottom:552.088000pt;}
.y90{bottom:552.608000pt;}
.y116{bottom:553.456000pt;}
.y179{bottom:556.284000pt;}
.y37{bottom:557.117333pt;}
.y145{bottom:557.204000pt;}
.y169{bottom:560.866667pt;}
.yc0{bottom:563.650667pt;}
.ycb{bottom:565.965333pt;}
.y115{bottom:569.340000pt;}
.yec{bottom:570.153333pt;}
.y8f{bottom:570.673333pt;}
.y114{bottom:571.521333pt;}
.y144{bottom:575.270667pt;}
.y5f{bottom:576.205333pt;}
.y15d{bottom:579.889333pt;}
.ybf{bottom:581.716000pt;}
.yca{bottom:584.030667pt;}
.y8e{bottom:586.557333pt;}
.y8d{bottom:588.738667pt;}
.y36{bottom:589.586667pt;}
.y12{bottom:591.778667pt;}
.y143{bottom:593.336000pt;}
.y5e{bottom:594.272000pt;}
.yeb{bottom:597.613333pt;}
.y168{bottom:599.285333pt;}
.ybe{bottom:599.781333pt;}
.yc9{bottom:602.096000pt;}
.y8c{bottom:606.805333pt;}
.y178{bottom:607.533333pt;}
.y113{bottom:607.653333pt;}
.y11{bottom:607.718667pt;}
.y142{bottom:611.401333pt;}
.y5d{bottom:612.337333pt;}
.y167{bottom:617.350667pt;}
.ybd{bottom:617.846667pt;}
.yc7{bottom:620.162667pt;}
.y10{bottom:623.658667pt;}
.yc8{bottom:624.314667pt;}
.y8b{bottom:624.870667pt;}
.y15c{bottom:625.718667pt;}
.y141{bottom:627.285333pt;}
.y140{bottom:629.466667pt;}
.y5c{bottom:630.402667pt;}
.y35{bottom:635.416000pt;}
.ybc{bottom:635.913333pt;}
.yea{bottom:637.446667pt;}
.yc6{bottom:638.228000pt;}
.yf{bottom:639.600000pt;}
.y15b{bottom:643.784000pt;}
.y112{bottom:646.072000pt;}
.y13f{bottom:647.532000pt;}
.y5b{bottom:648.468000pt;}
.y34{bottom:653.481333pt;}
.ybb{bottom:653.978667pt;}
.ye{bottom:655.540000pt;}
.y21{bottom:656.060000pt;}
.y8a{bottom:658.876000pt;}
.y15a{bottom:661.849333pt;}
.y111{bottom:664.137333pt;}
.y13e{bottom:665.598667pt;}
.y5a{bottom:666.533333pt;}
.yd{bottom:671.480000pt;}
.y33{bottom:671.548000pt;}
.yba{bottom:672.044000pt;}
.y89{bottom:676.941333pt;}
.y159{bottom:679.914667pt;}
.yc5{bottom:682.066667pt;}
.y110{bottom:682.202667pt;}
.y13d{bottom:683.664000pt;}
.y59{bottom:684.600000pt;}
.yc{bottom:687.420000pt;}
.y20{bottom:688.672000pt;}
.y32{bottom:689.613333pt;}
.yb9{bottom:690.109333pt;}
.y88{bottom:695.008000pt;}
.y158{bottom:697.981333pt;}
.y10f{bottom:700.268000pt;}
.yb{bottom:701.368000pt;}
.y13c{bottom:701.729333pt;}
.y58{bottom:702.665333pt;}
.ya{bottom:703.360000pt;}
.y31{bottom:707.678667pt;}
.y87{bottom:713.073333pt;}
.y13b{bottom:717.613333pt;}
.y10e{bottom:718.333333pt;}
.y9{bottom:719.300000pt;}
.y13a{bottom:719.794667pt;}
.y57{bottom:720.730667pt;}
.y1f{bottom:721.282667pt;}
.y30{bottom:725.744000pt;}
.yb8{bottom:728.528000pt;}
.y157{bottom:730.450667pt;}
.y10d{bottom:736.400000pt;}
.y139{bottom:737.860000pt;}
.y1e{bottom:739.348000pt;}
.y8{bottom:743.542667pt;}
.y2f{bottom:743.809333pt;}
.y56{bottom:746.093333pt;}
.yb7{bottom:746.594667pt;}
.y86{bottom:751.492000pt;}
.y10c{bottom:754.465333pt;}
.y1d{bottom:757.413333pt;}
.y166{bottom:761.876000pt;}
.yb6{bottom:764.660000pt;}
.y85{bottom:769.557333pt;}
.ye8{bottom:769.562667pt;}
.y10b{bottom:770.349333pt;}
.y10a{bottom:772.530667pt;}
.y1c{bottom:775.480000pt;}
.y138{bottom:776.278667pt;}
.y165{bottom:779.941333pt;}
.y2e{bottom:782.229333pt;}
.y55{bottom:782.669333pt;}
.yb5{bottom:782.725333pt;}
.y84{bottom:787.622667pt;}
.ye7{bottom:787.628000pt;}
.y109{bottom:790.596000pt;}
.y1b{bottom:793.545333pt;}
.y137{bottom:794.345333pt;}
.y7{bottom:797.241333pt;}
.y164{bottom:798.006667pt;}
.y2d{bottom:800.294667pt;}
.yb4{bottom:800.790667pt;}
.y83{bottom:805.689333pt;}
.y108{bottom:808.661333pt;}
.y1a{bottom:811.610667pt;}
.y136{bottom:812.410667pt;}
.y54{bottom:813.932000pt;}
.ye6{bottom:815.088000pt;}
.y163{bottom:816.072000pt;}
.y2c{bottom:818.360000pt;}
.y82{bottom:823.754667pt;}
.y6{bottom:829.676000pt;}
.y135{bottom:830.476000pt;}
.y53{bottom:831.997333pt;}
.y2b{bottom:836.425333pt;}
.yb3{bottom:839.209333pt;}
.y107{bottom:841.130667pt;}
.y5{bottom:848.272000pt;}
.y134{bottom:848.541333pt;}
.y81{bottom:850.604000pt;}
.yb2{bottom:853.049333pt;}
.y2a{bottom:854.490667pt;}
.y80{bottom:854.566667pt;}
.yb1{bottom:857.274667pt;}
.y19{bottom:862.286667pt;}
.ye5{bottom:863.118667pt;}
.y7f{bottom:864.649333pt;}
.y133{bottom:866.606667pt;}
.y52{bottom:869.718667pt;}
.y29{bottom:872.556000pt;}
.y18{bottom:880.353333pt;}
.ye4{bottom:881.185333pt;}
.y132{bottom:884.673333pt;}
.y106{bottom:886.960000pt;}
.y51{bottom:887.784000pt;}
.y4{bottom:888.688000pt;}
.y28{bottom:890.622667pt;}
.yb0{bottom:891.884000pt;}
.ye3{bottom:899.250667pt;}
.y131{bottom:902.738667pt;}
.y105{bottom:905.026667pt;}
.y7e{bottom:906.192000pt;}
.y3{bottom:907.284000pt;}
.y27{bottom:908.688000pt;}
.y17{bottom:912.964000pt;}
.yae{bottom:913.237333pt;}
.ye2{bottom:917.316000pt;}
.y130{bottom:920.804000pt;}
.y4c{bottom:921.317333pt;}
.y50{bottom:922.884000pt;}
.y104{bottom:923.092000pt;}
.y7d{bottom:924.257333pt;}
.y2{bottom:925.881333pt;}
.y26{bottom:926.753333pt;}
.y4f{bottom:927.400000pt;}
.yad{bottom:929.704000pt;}
.y4d{bottom:933.421333pt;}
.ye1{bottom:935.381333pt;}
.y12f{bottom:938.869333pt;}
.y4e{bottom:939.266667pt;}
.yaf{bottom:940.778667pt;}
.y103{bottom:941.157333pt;}
.y25{bottom:944.818667pt;}
.y16{bottom:945.574667pt;}
.yac{bottom:952.557333pt;}
.ya8{bottom:952.674667pt;}
.ye0{bottom:953.446667pt;}
.y1{bottom:955.105333pt;}
.y12e{bottom:956.934667pt;}
.y102{bottom:959.222667pt;}
.y7b{bottom:962.676000pt;}
.y24{bottom:962.884000pt;}
.ya9{bottom:964.125333pt;}
.ya7{bottom:969.141333pt;}
.y7c{bottom:973.752000pt;}
.y12d{bottom:975.001333pt;}
.y101{bottom:977.288000pt;}
.y15{bottom:978.185333pt;}
.ydf{bottom:978.809333pt;}
.y23{bottom:980.950667pt;}
.yab{bottom:982.076000pt;}
.yaa{bottom:986.061333pt;}
.y7a{bottom:995.354667pt;}
.y14{bottom:1010.797333pt;}
.y22{bottom:1013.420000pt;}
.yde{bottom:1015.385333pt;}
.h22{height:2.125355pt;}
.h23{height:7.594225pt;}
.h31{height:11.603067pt;}
.h15{height:11.604466pt;}
.h12{height:23.910400pt;}
.h7{height:24.696550pt;}
.h1e{height:29.925069pt;}
.h1c{height:31.880400pt;}
.h21{height:34.239693pt;}
.h17{height:34.891733pt;}
.h20{height:35.865600pt;}
.h16{height:37.286400pt;}
.h2d{height:38.555733pt;}
.h8{height:39.850400pt;}
.h10{height:40.378215pt;}
.h9{height:41.178747pt;}
.he{height:43.636400pt;}
.h3{height:44.377702pt;}
.ha{height:44.930688pt;}
.h1b{height:45.090947pt;}
.h18{height:45.631558pt;}
.h33{height:46.189355pt;}
.hf{height:46.429355pt;}
.h5{height:47.395409pt;}
.h4{height:47.820800pt;}
.h6{height:48.298685pt;}
.hb{height:51.898225pt;}
.h25{height:51.923067pt;}
.hd{height:52.887317pt;}
.h11{height:52.995067pt;}
.h30{height:53.864021pt;}
.h28{height:55.901733pt;}
.h19{height:57.895049pt;}
.h1f{height:62.365355pt;}
.h14{height:62.370688pt;}
.h32{height:66.136400pt;}
.h2f{height:66.607558pt;}
.h2{height:68.769785pt;}
.h29{height:69.171067pt;}
.hc{height:69.473865pt;}
.h2a{height:73.928021pt;}
.h1d{height:86.682402pt;}
.h13{height:86.687735pt;}
.h1a{height:91.807558pt;}
.h24{height:92.349733pt;}
.h2e{height:101.837355pt;}
.h2c{height:112.710400pt;}
.h27{height:118.546688pt;}
.h2b{height:128.226688pt;}
.h26{height:148.531067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:93.373333pt;}
.x25{left:94.488000pt;}
.x3{left:97.270667pt;}
.xd3{left:98.448000pt;}
.x1{left:104.510667pt;}
.xb3{left:105.464000pt;}
.x103{left:108.058667pt;}
.x27{left:109.033333pt;}
.x4c{left:111.070667pt;}
.xe1{left:112.980000pt;}
.x30{left:114.994667pt;}
.x26{left:116.306667pt;}
.xba{left:118.378667pt;}
.xb4{left:120.334667pt;}
.xee{left:121.385333pt;}
.x11e{left:122.377333pt;}
.xf8{left:124.562667pt;}
.x31{left:126.494667pt;}
.x21{left:129.297333pt;}
.x9{left:130.852000pt;}
.x12a{left:135.424000pt;}
.xac{left:136.713333pt;}
.x6d{left:138.092000pt;}
.x12b{left:140.677333pt;}
.x48{left:145.649333pt;}
.x9c{left:147.250667pt;}
.x8{left:150.777333pt;}
.xa2{left:153.189333pt;}
.xd4{left:155.102667pt;}
.x112{left:157.137333pt;}
.x6e{left:160.149333pt;}
.x40{left:163.064000pt;}
.x10f{left:165.470667pt;}
.xe2{left:167.345333pt;}
.x113{left:168.636000pt;}
.xa{left:170.508000pt;}
.xad{left:172.766667pt;}
.x8f{left:174.008000pt;}
.x36{left:175.106667pt;}
.x65{left:176.350667pt;}
.x37{left:180.876000pt;}
.xb{left:182.062667pt;}
.xca{left:184.233333pt;}
.x38{left:186.129333pt;}
.xcb{left:187.577333pt;}
.xed{left:189.756000pt;}
.xfa{left:191.434667pt;}
.x39{left:194.322667pt;}
.x66{left:195.466667pt;}
.xae{left:197.541333pt;}
.x107{left:198.825333pt;}
.xcc{left:199.940000pt;}
.x130{left:203.117333pt;}
.x83{left:205.141333pt;}
.xfb{left:208.204000pt;}
.xe3{left:209.378667pt;}
.x9d{left:210.841333pt;}
.x3a{left:212.681333pt;}
.x108{left:214.610667pt;}
.xcd{left:215.644000pt;}
.x126{left:218.322667pt;}
.xb0{left:220.697333pt;}
.x9e{left:222.154667pt;}
.x85{left:223.173333pt;}
.x110{left:224.072000pt;}
.x47{left:227.269333pt;}
.xd5{left:228.452000pt;}
.xd6{left:232.493333pt;}
.xb1{left:235.310667pt;}
.xe4{left:236.628000pt;}
.x10d{left:237.746667pt;}
.xce{left:238.805333pt;}
.xb7{left:240.136000pt;}
.x22{left:241.102667pt;}
.xcf{left:242.846667pt;}
.x41{left:246.042667pt;}
.x2c{left:247.766667pt;}
.x10b{left:249.156000pt;}
.x23{left:251.604000pt;}
.xb8{left:253.705333pt;}
.xd7{left:255.500000pt;}
.xf9{left:257.157333pt;}
.x2d{left:258.674667pt;}
.x127{left:260.768000pt;}
.x42{left:262.904000pt;}
.x2e{left:264.286667pt;}
.x6{left:267.100000pt;}
.x10c{left:268.496000pt;}
.x2f{left:269.538667pt;}
.xe{left:271.010667pt;}
.x9f{left:273.262667pt;}
.x43{left:274.402667pt;}
.xa3{left:275.485333pt;}
.x1d{left:278.040000pt;}
.x137{left:279.317333pt;}
.xf2{left:280.558667pt;}
.xab{left:281.977333pt;}
.x71{left:286.953333pt;}
.x128{left:287.901333pt;}
.x5f{left:289.438667pt;}
.xf{left:291.304000pt;}
.xaa{left:292.353333pt;}
.xa5{left:293.290667pt;}
.x60{left:295.056000pt;}
.x10{left:296.542667pt;}
.x114{left:297.573333pt;}
.x7f{left:299.293333pt;}
.x1e{left:300.841333pt;}
.x2{left:301.817333pt;}
.xbf{left:303.060000pt;}
.x5{left:306.352000pt;}
.xc4{left:308.181333pt;}
.x115{left:309.748000pt;}
.x80{left:312.862667pt;}
.x111{left:314.140000pt;}
.x10e{left:315.298667pt;}
.x28{left:316.657333pt;}
.x81{left:318.446667pt;}
.x11d{left:319.977333pt;}
.x4d{left:321.073333pt;}
.x82{left:323.698667pt;}
.x4a{left:325.950667pt;}
.x29{left:327.566667pt;}
.x6b{left:328.458667pt;}
.x6c{left:330.504000pt;}
.x2a{left:333.178667pt;}
.x4e{left:334.398667pt;}
.xc0{left:336.241333pt;}
.x4{left:338.560000pt;}
.x74{left:339.657333pt;}
.xeb{left:341.670667pt;}
.xa6{left:342.917333pt;}
.xc1{left:346.422667pt;}
.x61{left:348.210667pt;}
.x135{left:349.520000pt;}
.xd8{left:350.433333pt;}
.xec{left:353.169333pt;}
.x11{left:354.308000pt;}
.x62{left:357.060000pt;}
.x11a{left:358.694667pt;}
.x119{left:361.062667pt;}
.x77{left:362.017333pt;}
.xa7{left:362.982667pt;}
.x12{left:364.270667pt;}
.x3c{left:365.224000pt;}
.x7{left:366.256000pt;}
.xfc{left:368.244000pt;}
.x13{left:369.509333pt;}
.x1f{left:371.642667pt;}
.x14{left:374.305333pt;}
.x102{left:375.805333pt;}
.x44{left:376.720000pt;}
.xd9{left:378.602667pt;}
.xb5{left:380.844000pt;}
.x45{left:382.489333pt;}
.x11f{left:383.478667pt;}
.xda{left:385.730667pt;}
.x96{left:387.106667pt;}
.x20{left:388.742667pt;}
.xdb{left:389.770667pt;}
.x78{left:391.078667pt;}
.x24{left:393.214667pt;}
.x132{left:395.920000pt;}
.x15{left:397.400000pt;}
.x84{left:398.678667pt;}
.x97{left:399.710667pt;}
.x7a{left:401.212000pt;}
.x63{left:403.888000pt;}
.x46{left:405.705333pt;}
.xa9{left:406.800000pt;}
.x98{left:408.076000pt;}
.x116{left:410.721333pt;}
.xa8{left:411.873333pt;}
.xb9{left:412.990667pt;}
.x86{left:415.349333pt;}
.x117{left:416.265333pt;}
.x16{left:417.694667pt;}
.x75{left:418.957333pt;}
.x17{left:421.502667pt;}
.x99{left:424.042667pt;}
.xa4{left:427.173333pt;}
.x87{left:428.918667pt;}
.x72{left:430.689333pt;}
.x76{left:432.028000pt;}
.xbb{left:433.032000pt;}
.x88{left:434.689333pt;}
.x9a{left:435.972000pt;}
.xc{left:437.306667pt;}
.x131{left:438.505333pt;}
.x68{left:440.240000pt;}
.xc5{left:443.778667pt;}
.x73{left:444.902667pt;}
.xd{left:447.808000pt;}
.x9b{left:450.593333pt;}
.xc2{left:451.565333pt;}
.xd0{left:452.826667pt;}
.xbc{left:454.018667pt;}
.xc6{left:457.590667pt;}
.x69{left:458.648000pt;}
.xe5{left:461.542667pt;}
.x18{left:462.452000pt;}
.xdc{left:465.392000pt;}
.x19{left:467.690667pt;}
.xdd{left:469.432000pt;}
.x120{left:470.832000pt;}
.x1a{left:472.486667pt;}
.x79{left:475.170667pt;}
.xc3{left:476.244000pt;}
.xf3{left:478.010667pt;}
.x1b{left:479.938667pt;}
.xc7{left:483.714667pt;}
.x3b{left:484.666667pt;}
.x58{left:486.126667pt;}
.x1c{left:491.649333pt;}
.xa0{left:494.032000pt;}
.xf4{left:495.464000pt;}
.x59{left:496.502667pt;}
.x136{left:497.604000pt;}
.x90{left:499.382667pt;}
.x121{left:501.113333pt;}
.x3d{left:502.678667pt;}
.x5a{left:505.312000pt;}
.xe6{left:507.284000pt;}
.x8c{left:509.672000pt;}
.x91{left:510.696000pt;}
.x104{left:511.940000pt;}
.x3e{left:513.841333pt;}
.x5b{left:515.893333pt;}
.x105{left:517.192000pt;}
.x64{left:518.254667pt;}
.x49{left:521.477333pt;}
.xa1{left:523.956000pt;}
.xfd{left:527.052000pt;}
.x109{left:530.513333pt;}
.x4f{left:531.892000pt;}
.x7d{left:536.469333pt;}
.x50{left:537.436000pt;}
.x12c{left:538.910667pt;}
.x106{left:540.140000pt;}
.x51{left:542.688000pt;}
.x4b{left:547.405333pt;}
.x7e{left:552.829333pt;}
.xf0{left:556.972000pt;}
.xef{left:558.929333pt;}
.xc8{left:561.161333pt;}
.xe8{left:562.213333pt;}
.xf5{left:563.576000pt;}
.xea{left:565.506667pt;}
.x52{left:567.400000pt;}
.x13a{left:568.386667pt;}
.x6f{left:569.969333pt;}
.x129{left:571.010667pt;}
.x5c{left:572.361333pt;}
.xe9{left:573.713333pt;}
.x92{left:576.681333pt;}
.x11b{left:577.629333pt;}
.x53{left:579.182667pt;}
.xaf{left:580.849333pt;}
.x5d{left:582.737333pt;}
.x12d{left:584.018667pt;}
.xc9{left:585.808000pt;}
.xf1{left:587.032000pt;}
.x70{left:588.072000pt;}
.x54{left:591.061333pt;}
.x118{left:592.488000pt;}
.x11c{left:594.094667pt;}
.x93{left:596.510667pt;}
.x8d{left:599.084000pt;}
.x5e{left:602.128000pt;}
.x12e{left:605.664000pt;}
.x12f{left:607.196000pt;}
.x67{left:608.660000pt;}
.x138{left:610.493333pt;}
.x55{left:612.562667pt;}
.xe7{left:614.432000pt;}
.x139{left:615.746667pt;}
.x122{left:616.986667pt;}
.x56{left:618.106667pt;}
.x57{left:623.358667pt;}
.x89{left:625.969333pt;}
.xde{left:627.293333pt;}
.x133{left:628.246667pt;}
.x123{left:630.557333pt;}
.x8a{left:631.738667pt;}
.x134{left:633.885333pt;}
.x124{left:636.100000pt;}
.x8b{left:636.990667pt;}
.xfe{left:638.684000pt;}
.x125{left:641.353333pt;}
.xff{left:644.453333pt;}
.xf6{left:645.374667pt;}
.xf7{left:649.414667pt;}
.x100{left:652.458667pt;}
.xbd{left:653.816000pt;}
.x32{left:655.204000pt;}
.xb6{left:656.918667pt;}
.x101{left:660.653333pt;}
.x94{left:661.888000pt;}
.xdf{left:664.725333pt;}
.x33{left:666.112000pt;}
.xb2{left:668.901333pt;}
.x34{left:671.882667pt;}
.x95{left:673.200000pt;}
.xbe{left:675.321333pt;}
.x35{left:677.134667pt;}
.xe0{left:678.980000pt;}
.xd1{left:680.700000pt;}
.x8e{left:682.585333pt;}
.xd2{left:684.740000pt;}
.x7b{left:686.800000pt;}
.x10a{left:689.960000pt;}
.x6a{left:692.394667pt;}
.x7c{left:695.944000pt;}
.x3f{left:697.113333pt;}
}




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