
    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_f37bb1659bc1145126499723.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f61733ade75d7a5350b32189.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_344c80328d05f9a02f106245.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7a9c6ac9f4d17a5aa6eefbbc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f81357965e2d1bae7ee9af2.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d11a9ee0b6e47cb34719c870.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_15a747776a09861313eb2b7a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.390000;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_e0082640378fe9d5ea2f0730.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6174c0f2851698d594e96142.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2e1d2cff4c808ba12fb8d48e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7e5f7e4c3c9c2c0ce502749a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_942a64bc6739463a5a192af4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ffff28a401235955b6213d38.woff')format("woff");}.ffd{font-family:ffd;line-height:0.429000;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_b01a36d208624f368017e136.woff')format("woff");}.ffe{font-family:ffe;line-height:0.773000;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_6f504a97af4fdb83f9f2e066.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_acb88631e8a3591ba0262a97.woff')format("woff");}.ff10{font-family:ff10;line-height:2.222000;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_7e0bc2d45bbd9cf1025c57fd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.688000;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_8c1a0099a688dcf03772d71c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.734000;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_08aeaeb9a32133a7c0ce264f.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_6cf4653408a5aa80482882e6.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d443ab0207474aefc71f54fb.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_f0a91b4eba74efed985d75e5.woff')format("woff");}.ff16{font-family:ff16;line-height:1.734000;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_48bda2466a466bc380e1fce2.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_ee020d0706fbfe315d7f18b0.woff')format("woff");}.ff18{font-family:ff18;line-height:1.258000;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_d443ab0207474aefc71f54fb.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_4d2879a3e0cc40deb58f3fae.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.922000;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_48bda2466a466bc380e1fce2.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_6cf4653408a5aa80482882e6.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_d443ab0207474aefc71f54fb.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_0b91426cd508e17ad8600fb0.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_f0a91b4eba74efed985d75e5.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.734000;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:ff20;src:url('chunks/assets/font_0b91426cd508e17ad8600fb0.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_08aeaeb9a32133a7c0ce264f.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_2631170599a4ffd6427ac2de.woff')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_4e646b4a46ad864bff46327c.woff')format("woff");}.ff23{font-family:ff23;line-height:1.734000;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:ff24;src:url('chunks/assets/font_35fadb7bd583c32546c6b8c1.woff')format("woff");}.ff24{font-family:ff24;line-height:0.542000;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:ff25;src:url('chunks/assets/font_ea4c5e39bb478e4ef12bc882.woff')format("woff");}.ff25{font-family:ff25;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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:-40.072146px;}
.v2{vertical-align:-26.034000px;}
.v4{vertical-align:-16.878000px;}
.v6{vertical-align:-8.964000px;}
.vc{vertical-align:-5.976000px;}
.vf{vertical-align:-3.436376px;}
.v5{vertical-align:-1.698000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.964000px;}
.ve{vertical-align:16.876715px;}
.v3{vertical-align:21.690000px;}
.vd{vertical-align:24.684000px;}
.v1{vertical-align:26.034000px;}
.v8{vertical-align:30.654000px;}
.v11{vertical-align:33.652775px;}
.vb{vertical-align:40.440000px;}
.v12{vertical-align:46.284874px;}
.va{vertical-align:107.928000px;}
.v9{vertical-align:122.706000px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000065px;}
.ls0{letter-spacing:0.000141px;}
.ls23{letter-spacing:0.000376px;}
.ls15{letter-spacing:0.000538px;}
.ls2c{letter-spacing:0.000615px;}
.ls1f{letter-spacing:0.000648px;}
.ls25{letter-spacing:0.000691px;}
.ls14{letter-spacing:0.000993px;}
.lsb{letter-spacing:0.002338px;}
.ls2b{letter-spacing:0.002450px;}
.ls3{letter-spacing:0.002915px;}
.ls19{letter-spacing:0.003031px;}
.ls49{letter-spacing:0.003226px;}
.ls1b{letter-spacing:0.003269px;}
.ls21{letter-spacing:0.004188px;}
.ls13{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.004430px;}
.ls2e{letter-spacing:0.004648px;}
.ls40{letter-spacing:0.005114px;}
.ls1c{letter-spacing:0.005374px;}
.ls38{letter-spacing:0.006062px;}
.ls28{letter-spacing:0.006065px;}
.ls3e{letter-spacing:0.006844px;}
.ls17{letter-spacing:0.006993px;}
.ls43{letter-spacing:0.012320px;}
.ls3c{letter-spacing:0.019164px;}
.ls3d{letter-spacing:0.028003px;}
.ls44{letter-spacing:0.033704px;}
.ls37{letter-spacing:0.830638px;}
.ls7{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.984915px;}
.ls42{letter-spacing:2.988532px;}
.ls12{letter-spacing:2.989409px;}
.ls4{letter-spacing:2.990525px;}
.ls2{letter-spacing:2.990915px;}
.ls8{letter-spacing:2.994532px;}
.ls3f{letter-spacing:3.020551px;}
.ls26{letter-spacing:9.956338px;}
.ls24{letter-spacing:9.962338px;}
.ls3a{letter-spacing:11.364538px;}
.ls35{letter-spacing:11.370538px;}
.ls36{letter-spacing:12.944525px;}
.ls3b{letter-spacing:12.950525px;}
.ls2a{letter-spacing:13.278538px;}
.ls2f{letter-spacing:13.280338px;}
.ls30{letter-spacing:13.281269px;}
.ls2d{letter-spacing:13.284538px;}
.ls29{letter-spacing:13.287269px;}
.lsa{letter-spacing:16.304525px;}
.ls11{letter-spacing:16.382525px;}
.ls22{letter-spacing:16.602538px;}
.ls18{letter-spacing:19.040525px;}
.ls31{letter-spacing:19.592525px;}
.ls1d{letter-spacing:20.273374px;}
.lsd{letter-spacing:20.498525px;}
.ls50{letter-spacing:21.026338px;}
.ls46{letter-spacing:21.044525px;}
.lsc{letter-spacing:21.122525px;}
.ls39{letter-spacing:21.950525px;}
.ls33{letter-spacing:22.053960px;}
.ls32{letter-spacing:22.056376px;}
.ls51{letter-spacing:22.256338px;}
.ls4a{letter-spacing:22.520338px;}
.ls4f{letter-spacing:22.676338px;}
.lse{letter-spacing:22.910525px;}
.ls4e{letter-spacing:24.626338px;}
.ls1e{letter-spacing:26.560677px;}
.ls6{letter-spacing:27.398525px;}
.ls41{letter-spacing:28.772525px;}
.ls4b{letter-spacing:29.138338px;}
.ls34{letter-spacing:29.327023px;}
.ls48{letter-spacing:29.546525px;}
.ls4c{letter-spacing:29.582338px;}
.ls16{letter-spacing:30.408062px;}
.ls52{letter-spacing:36.656338px;}
.ls47{letter-spacing:37.616525px;}
.ls4d{letter-spacing:42.452338px;}
.ls45{letter-spacing:46.616525px;}
.ls5{letter-spacing:51.022178px;}
.lsf{letter-spacing:104.600525px;}
.ls10{letter-spacing:152.882525px;}
.ls27{letter-spacing:954.230525px;}
.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;}
}
.ws2e{word-spacing:-19.092327px;}
.ws30{word-spacing:-16.605662px;}
.ws98{word-spacing:-15.278643px;}
.ws2{word-spacing:-14.111859px;}
.ws119{word-spacing:-14.107098px;}
.wsdc{word-spacing:-6.682912px;}
.wsd3{word-spacing:-6.658340px;}
.wsbc{word-spacing:-6.643262px;}
.ws14d{word-spacing:-6.642774px;}
.wsbf{word-spacing:-6.642723px;}
.wsd1{word-spacing:-6.626919px;}
.ws8b{word-spacing:-6.623136px;}
.wsae{word-spacing:-6.614704px;}
.ws117{word-spacing:-6.443810px;}
.ws10e{word-spacing:-5.252540px;}
.wsee{word-spacing:-3.335478px;}
.ws73{word-spacing:-3.275703px;}
.wsa6{word-spacing:-3.215927px;}
.ws39{word-spacing:-3.156152px;}
.ws178{word-spacing:-2.976825px;}
.wseb{word-spacing:-2.917049px;}
.ws24{word-spacing:-2.797498px;}
.ws65{word-spacing:-2.737722px;}
.ws16c{word-spacing:-2.703567px;}
.ws26{word-spacing:-2.677947px;}
.wsb5{word-spacing:-2.618171px;}
.wsb6{word-spacing:-2.558396px;}
.ws78{word-spacing:-2.498620px;}
.ws126{word-spacing:-2.438844px;}
.ws29{word-spacing:-2.379069px;}
.ws1a1{word-spacing:-2.300171px;}
.ws19a{word-spacing:-2.199742px;}
.ws25{word-spacing:-2.139966px;}
.ws8d{word-spacing:-2.080191px;}
.ws159{word-spacing:-2.061068px;}
.ws12d{word-spacing:-2.020415px;}
.ws1d{word-spacing:-1.960640px;}
.wsa5{word-spacing:-1.900864px;}
.wsd4{word-spacing:-1.841088px;}
.ws4e{word-spacing:-1.721537px;}
.ws1b{word-spacing:-1.661762px;}
.ws14b{word-spacing:-1.542210px;}
.ws154{word-spacing:-1.482435px;}
.ws14c{word-spacing:-1.422659px;}
.ws28{word-spacing:-1.362884px;}
.ws19e{word-spacing:-1.303108px;}
.ws132{word-spacing:-1.243332px;}
.ws5c{word-spacing:-1.183557px;}
.ws17e{word-spacing:-1.123781px;}
.ws177{word-spacing:-1.064006px;}
.ws114{word-spacing:-1.020660px;}
.ws115{word-spacing:-1.010987px;}
.ws76{word-spacing:-1.004230px;}
.ws12a{word-spacing:-0.992862px;}
.ws165{word-spacing:-0.944454px;}
.wsc7{word-spacing:-0.824903px;}
.ws20{word-spacing:-0.765128px;}
.ws99{word-spacing:-0.705352px;}
.wsde{word-spacing:-0.585801px;}
.wsdd{word-spacing:-0.554108px;}
.ws3{word-spacing:-0.526025px;}
.ws107{word-spacing:-0.466250px;}
.wsa9{word-spacing:-0.406474px;}
.wsd5{word-spacing:-0.400615px;}
.wsd7{word-spacing:-0.397010px;}
.wsd8{word-spacing:-0.346698px;}
.ws134{word-spacing:-0.167372px;}
.ws2d{word-spacing:-0.071731px;}
.wsa7{word-spacing:-0.059776px;}
.ws34{word-spacing:-0.047820px;}
.wse6{word-spacing:-0.041843px;}
.wsf6{word-spacing:-0.021471px;}
.wsf7{word-spacing:-0.015471px;}
.wsf4{word-spacing:-0.014540px;}
.ws4c{word-spacing:0.000000px;}
.ws163{word-spacing:0.011955px;}
.ws37{word-spacing:0.191282px;}
.ws2b{word-spacing:0.430384px;}
.ws55{word-spacing:0.490160px;}
.ws66{word-spacing:0.549936px;}
.ws4{word-spacing:0.609711px;}
.ws1a2{word-spacing:0.729262px;}
.ws9f{word-spacing:0.789038px;}
.ws87{word-spacing:0.848814px;}
.ws9a{word-spacing:0.908589px;}
.ws155{word-spacing:0.968365px;}
.ws22{word-spacing:1.028140px;}
.wsce{word-spacing:1.087916px;}
.ws170{word-spacing:1.142912px;}
.ws173{word-spacing:1.147692px;}
.wse{word-spacing:1.207467px;}
.wscd{word-spacing:1.267243px;}
.ws172{word-spacing:1.291153px;}
.ws141{word-spacing:1.327018px;}
.ws86{word-spacing:1.446570px;}
.ws8a{word-spacing:1.506345px;}
.wsd9{word-spacing:1.625896px;}
.ws189{word-spacing:1.685672px;}
.ws88{word-spacing:1.745448px;}
.ws16f{word-spacing:1.805223px;}
.ws15a{word-spacing:1.812401px;}
.ws162{word-spacing:1.924774px;}
.ws48{word-spacing:1.984550px;}
.ws59{word-spacing:2.044326px;}
.ws6f{word-spacing:2.104101px;}
.ws130{word-spacing:2.163877px;}
.ws12f{word-spacing:2.196207px;}
.ws68{word-spacing:2.223652px;}
.wse7{word-spacing:2.283428px;}
.wse5{word-spacing:2.296822px;}
.ws21{word-spacing:2.343204px;}
.ws1cf{word-spacing:2.355159px;}
.ws10f{word-spacing:2.361892px;}
.ws5a{word-spacing:2.462755px;}
.ws15e{word-spacing:2.474710px;}
.ws1a6{word-spacing:2.522530px;}
.ws15b{word-spacing:2.577530px;}
.ws23{word-spacing:2.582306px;}
.ws157{word-spacing:2.625351px;}
.wscc{word-spacing:2.642082px;}
.ws4a{word-spacing:2.673172px;}
.ws27{word-spacing:2.701857px;}
.ws8c{word-spacing:2.761633px;}
.ws4b{word-spacing:2.816633px;}
.ws19f{word-spacing:2.821408px;}
.ws129{word-spacing:2.829633px;}
.ws171{word-spacing:2.864454px;}
.ws7c{word-spacing:2.881184px;}
.ws164{word-spacing:2.940960px;}
.ws14a{word-spacing:3.000735px;}
.ws93{word-spacing:3.039610px;}
.wsa8{word-spacing:3.060511px;}
.ws92{word-spacing:3.093408px;}
.ws15c{word-spacing:3.103557px;}
.ws176{word-spacing:3.120286px;}
.wse4{word-spacing:3.239838px;}
.ws1a{word-spacing:3.299613px;}
.wsed{word-spacing:3.332389px;}
.ws1c{word-spacing:3.359389px;}
.wse1{word-spacing:3.419164px;}
.wsf{word-spacing:3.478940px;}
.ws198{word-spacing:3.505077px;}
.ws1b3{word-spacing:3.550671px;}
.wsda{word-spacing:3.598491px;}
.ws152{word-spacing:3.658267px;}
.ws144{word-spacing:3.718042px;}
.ws5b{word-spacing:3.777818px;}
.ws6d{word-spacing:3.801728px;}
.ws6b{word-spacing:3.837594px;}
.wsc8{word-spacing:3.861504px;}
.ws19d{word-spacing:3.897369px;}
.wse0{word-spacing:3.921279px;}
.ws1c2{word-spacing:3.957145px;}
.wsb4{word-spacing:4.016920px;}
.wsb3{word-spacing:4.076696px;}
.ws89{word-spacing:4.136472px;}
.wscb{word-spacing:4.256023px;}
.ws61{word-spacing:4.315798px;}
.ws1c9{word-spacing:4.375574px;}
.ws1cb{word-spacing:4.403604px;}
.ws1e{word-spacing:4.435350px;}
.ws32{word-spacing:4.495125px;}
.ws111{word-spacing:4.554901px;}
.ws64{word-spacing:4.614676px;}
.ws167{word-spacing:4.638587px;}
.ws2f{word-spacing:4.674452px;}
.ws1a0{word-spacing:4.777278px;}
.ws7{word-spacing:4.794003px;}
.wsb9{word-spacing:4.853779px;}
.ws2a{word-spacing:4.913554px;}
.ws10b{word-spacing:4.923892px;}
.ws36{word-spacing:4.973330px;}
.ws67{word-spacing:5.033106px;}
.ws3a{word-spacing:5.152657px;}
.ws125{word-spacing:5.176567px;}
.ws158{word-spacing:5.207663px;}
.ws179{word-spacing:5.212432px;}
.ws12{word-spacing:5.272208px;}
.ws195{word-spacing:5.331984px;}
.ws1d1{word-spacing:5.433419px;}
.ws102{word-spacing:5.445892px;}
.ws103{word-spacing:5.451535px;}
.ws3c{word-spacing:5.571086px;}
.ws14{word-spacing:5.630862px;}
.ws1aa{word-spacing:5.690637px;}
.ws1a7{word-spacing:5.750413px;}
.ws91{word-spacing:5.781511px;}
.ws81{word-spacing:5.810188px;}
.ws1ab{word-spacing:5.918277px;}
.ws5d{word-spacing:5.929740px;}
.ws168{word-spacing:5.989515px;}
.ws13d{word-spacing:6.049291px;}
.ws94{word-spacing:6.061246px;}
.ws148{word-spacing:6.109066px;}
.ws147{word-spacing:6.118822px;}
.ws95{word-spacing:6.121021px;}
.wsec{word-spacing:6.168842px;}
.ws199{word-spacing:6.240573px;}
.ws96{word-spacing:6.288393px;}
.ws7e{word-spacing:6.348169px;}
.ws13c{word-spacing:6.407944px;}
.ws77{word-spacing:6.467720px;}
.wsb{word-spacing:6.527496px;}
.ws6a{word-spacing:6.587271px;}
.ws8e{word-spacing:6.647047px;}
.ws184{word-spacing:6.649077px;}
.ws58{word-spacing:6.706822px;}
.ws11e{word-spacing:6.718777px;}
.ws16d{word-spacing:6.729570px;}
.ws17{word-spacing:6.766598px;}
.ws9{word-spacing:6.826374px;}
.ws44{word-spacing:6.886149px;}
.ws3b{word-spacing:6.945925px;}
.wsaa{word-spacing:7.005700px;}
.ws1b2{word-spacing:7.065476px;}
.ws52{word-spacing:7.125252px;}
.ws56{word-spacing:7.244803px;}
.ws17f{word-spacing:7.304578px;}
.ws17a{word-spacing:7.369077px;}
.ws166{word-spacing:7.424130px;}
.ws169{word-spacing:7.483905px;}
.ws151{word-spacing:7.495860px;}
.ws108{word-spacing:7.543681px;}
.ws82{word-spacing:7.603456px;}
.ws18a{word-spacing:7.646514px;}
.ws75{word-spacing:7.663232px;}
.ws116{word-spacing:7.675187px;}
.ws4f{word-spacing:7.687142px;}
.wsac{word-spacing:7.723008px;}
.ws31{word-spacing:7.782783px;}
.ws11f{word-spacing:7.842559px;}
.ws42{word-spacing:7.902334px;}
.ws1c4{word-spacing:8.021886px;}
.ws1c3{word-spacing:8.023161px;}
.ws35{word-spacing:8.081661px;}
.wse9{word-spacing:8.201212px;}
.ws16a{word-spacing:8.217570px;}
.wsa{word-spacing:8.260988px;}
.ws8{word-spacing:8.320764px;}
.ws1a9{word-spacing:8.332719px;}
.ws1c6{word-spacing:8.380539px;}
.ws12b{word-spacing:8.475210px;}
.ws46{word-spacing:8.559866px;}
.ws8f{word-spacing:8.602926px;}
.ws57{word-spacing:8.619642px;}
.ws16b{word-spacing:8.620952px;}
.wsa1{word-spacing:8.679417px;}
.ws33{word-spacing:8.739193px;}
.ws18b{word-spacing:8.746388px;}
.ws109{word-spacing:8.798968px;}
.ws2c{word-spacing:8.858744px;}
.ws121{word-spacing:8.978295px;}
.ws133{word-spacing:9.038071px;}
.ws49{word-spacing:9.081132px;}
.ws1b1{word-spacing:9.085891px;}
.wscf{word-spacing:9.097846px;}
.ws18{word-spacing:9.157622px;}
.ws185{word-spacing:9.169577px;}
.ws18e{word-spacing:9.217398px;}
.ws18c{word-spacing:9.229699px;}
.ws38{word-spacing:9.277173px;}
.ws1a8{word-spacing:9.336949px;}
.ws1c7{word-spacing:9.348904px;}
.ws62{word-spacing:9.396724px;}
.ws13{word-spacing:9.456500px;}
.ws105{word-spacing:9.516276px;}
.ws104{word-spacing:9.546088px;}
.ws1b5{word-spacing:9.564096px;}
.ws7f{word-spacing:9.635827px;}
.wsc{word-spacing:9.755378px;}
.ws90{word-spacing:9.798441px;}
.wsb2{word-spacing:9.815154px;}
.ws17b{word-spacing:9.827109px;}
.ws17d{word-spacing:9.874929px;}
.wsf2{word-spacing:9.922750px;}
.ws188{word-spacing:9.934705px;}
.wsd{word-spacing:9.994480px;}
.ws1bf{word-spacing:10.006435px;}
.ws123{word-spacing:10.054256px;}
.ws74{word-spacing:10.173807px;}
.wsa0{word-spacing:10.246952px;}
.ws9b{word-spacing:10.333562px;}
.ws7a{word-spacing:10.412910px;}
.ws156{word-spacing:10.419570px;}
.ws194{word-spacing:10.472685px;}
.ws5{word-spacing:10.532461px;}
.ws174{word-spacing:10.561562px;}
.ws196{word-spacing:10.592236px;}
.ws183{word-spacing:10.604191px;}
.ws79{word-spacing:10.652012px;}
.ws1be{word-spacing:10.711788px;}
.ws10{word-spacing:10.831339px;}
.ws149{word-spacing:10.891114px;}
.ws197{word-spacing:10.950890px;}
.ws11{word-spacing:11.010666px;}
.ws9e{word-spacing:11.070441px;}
.ws72{word-spacing:11.130217px;}
.ws19c{word-spacing:11.189992px;}
.wsb8{word-spacing:11.249768px;}
.ws3d{word-spacing:11.309544px;}
.ws7b{word-spacing:11.369319px;}
.ws15f{word-spacing:11.385892px;}
.ws54{word-spacing:11.429095px;}
.ws16{word-spacing:11.488870px;}
.ws70{word-spacing:11.548646px;}
.wsbb{word-spacing:11.608422px;}
.ws15{word-spacing:11.668197px;}
.ws142{word-spacing:11.727973px;}
.ws182{word-spacing:11.739928px;}
.ws97{word-spacing:11.787748px;}
.ws1cc{word-spacing:11.799703px;}
.ws135{word-spacing:11.967075px;}
.ws47{word-spacing:12.026851px;}
.ws193{word-spacing:12.086626px;}
.ws17c{word-spacing:12.098581px;}
.ws127{word-spacing:12.110537px;}
.ws7d{word-spacing:12.146402px;}
.ws1d3{word-spacing:12.206178px;}
.ws4d{word-spacing:12.265953px;}
.wsb1{word-spacing:12.325729px;}
.ws1d0{word-spacing:12.425248px;}
.ws190{word-spacing:12.445280px;}
.ws138{word-spacing:12.505056px;}
.ws153{word-spacing:12.528966px;}
.ws1b0{word-spacing:12.545277px;}
.ws60{word-spacing:12.624607px;}
.ws1cd{word-spacing:12.634832px;}
.wse3{word-spacing:12.684382px;}
.ws106{word-spacing:12.744158px;}
.ws9c{word-spacing:12.745562px;}
.ws1c8{word-spacing:12.815889px;}
.ws11d{word-spacing:12.875664px;}
.ws53{word-spacing:12.983260px;}
.ws1b4{word-spacing:12.989277px;}
.wsca{word-spacing:13.043036px;}
.ws145{word-spacing:13.162325px;}
.ws1c1{word-spacing:13.162587px;}
.ws1a3{word-spacing:13.222363px;}
.ws6e{word-spacing:13.401690px;}
.ws112{word-spacing:13.480627px;}
.ws140{word-spacing:13.540325px;}
.ws175{word-spacing:13.581016px;}
.ws1bb{word-spacing:13.772298px;}
.wsc5{word-spacing:13.820119px;}
.ws63{word-spacing:13.939670px;}
.wsba{word-spacing:14.059221px;}
.ws71{word-spacing:14.118997px;}
.ws69{word-spacing:14.178772px;}
.ws18f{word-spacing:14.358099px;}
.ws1ae{word-spacing:14.370054px;}
.ws9d{word-spacing:14.477650px;}
.ws5f{word-spacing:14.501561px;}
.ws19{word-spacing:14.597202px;}
.ws85{word-spacing:14.836304px;}
.wsdf{word-spacing:14.896080px;}
.ws6{word-spacing:14.955855px;}
.ws80{word-spacing:15.015631px;}
.ws191{word-spacing:15.073077px;}
.ws1b9{word-spacing:15.075406px;}
.wsa2{word-spacing:15.087361px;}
.ws13f{word-spacing:15.135182px;}
.ws1c0{word-spacing:15.147137px;}
.ws1ca{word-spacing:15.314509px;}
.ws12c{word-spacing:15.326464px;}
.ws13e{word-spacing:15.471570px;}
.wse2{word-spacing:15.613387px;}
.ws51{word-spacing:15.673162px;}
.ws5e{word-spacing:15.697073px;}
.ws120{word-spacing:15.732938px;}
.ws14e{word-spacing:15.744893px;}
.ws137{word-spacing:15.792714px;}
.ws84{word-spacing:16.091592px;}
.ws45{word-spacing:16.151367px;}
.wsfb{word-spacing:16.211360px;}
.wsf9{word-spacing:16.229510px;}
.ws1d2{word-spacing:16.270918px;}
.ws19b{word-spacing:16.390470px;}
.ws1af{word-spacing:16.402425px;}
.ws1b6{word-spacing:16.569796px;}
.ws1d6{word-spacing:16.617617px;}
.ws1a4{word-spacing:16.808899px;}
.ws187{word-spacing:16.868674px;}
.ws1ba{word-spacing:16.880629px;}
.ws1ce{word-spacing:16.928450px;}
.ws192{word-spacing:16.940405px;}
.ws131{word-spacing:17.107777px;}
.ws1ac{word-spacing:17.167552px;}
.ws122{word-spacing:17.287104px;}
.ws12e{word-spacing:17.466430px;}
.wsa3{word-spacing:17.478385px;}
.wsc6{word-spacing:17.585982px;}
.ws43{word-spacing:18.064186px;}
.ws180{word-spacing:18.145077px;}
.ws1f{word-spacing:18.183738px;}
.ws41{word-spacing:18.363064px;}
.ws83{word-spacing:18.422840px;}
.ws186{word-spacing:18.554346px;}
.wsb7{word-spacing:18.602167px;}
.ws18d{word-spacing:18.645570px;}
.ws124{word-spacing:18.721718px;}
.ws1d4{word-spacing:18.818327px;}
.wsb0{word-spacing:18.901045px;}
.wsaf{word-spacing:19.379250px;}
.ws100{word-spacing:19.529360px;}
.ws110{word-spacing:19.535360px;}
.wsd2{word-spacing:19.545881px;}
.ws10d{word-spacing:19.550537px;}
.wsd6{word-spacing:19.561252px;}
.ws181{word-spacing:19.749858px;}
.ws13a{word-spacing:19.917230px;}
.ws146{word-spacing:19.977006px;}
.ws1d5{word-spacing:20.036781px;}
.wsdb{word-spacing:20.089252px;}
.ws40{word-spacing:20.455210px;}
.ws1b8{word-spacing:20.634537px;}
.ws160{word-spacing:20.821562px;}
.ws1a5{word-spacing:20.933415px;}
.ws161{word-spacing:20.941562px;}
.wsab{word-spacing:21.112742px;}
.ws143{word-spacing:21.159570px;}
.wsc9{word-spacing:21.351844px;}
.ws16e{word-spacing:21.483570px;}
.wse8{word-spacing:21.851038px;}
.ws139{word-spacing:21.909570px;}
.ws1b7{word-spacing:22.069152px;}
.ws1bd{word-spacing:22.356074px;}
.wsad{word-spacing:23.085337px;}
.ws1{word-spacing:23.312640px;}
.ws6c{word-spacing:23.647227px;}
.ws10c{word-spacing:24.455360px;}
.ws10a{word-spacing:24.479510px;}
.ws1ad{word-spacing:24.579727px;}
.ws1c5{word-spacing:25.595912px;}
.ws1bc{word-spacing:25.871069px;}
.ws136{word-spacing:26.791424px;}
.ws0{word-spacing:26.827469px;}
.wsd0{word-spacing:27.469252px;}
.wsea{word-spacing:27.782218px;}
.wsc4{word-spacing:29.122672px;}
.ws13b{word-spacing:29.313570px;}
.wsbd{word-spacing:30.366005px;}
.ws3f{word-spacing:31.812574px;}
.wsc1{word-spacing:31.932126px;}
.wsbe{word-spacing:33.335741px;}
.ws3e{word-spacing:36.558757px;}
.wsc0{word-spacing:37.670583px;}
.ws50{word-spacing:40.678974px;}
.wsef{word-spacing:42.774055px;}
.ws15d{word-spacing:48.600092px;}
.wsc3{word-spacing:48.680724px;}
.wsf0{word-spacing:50.348787px;}
.wsc2{word-spacing:51.500724px;}
.wsa4{word-spacing:55.125058px;}
.ws14f{word-spacing:60.505034px;}
.wsf1{word-spacing:65.106055px;}
.wsfa{word-spacing:67.025510px;}
.ws128{word-spacing:132.950696px;}
.ws118{word-spacing:142.906430px;}
.wsff{word-spacing:145.547360px;}
.ws113{word-spacing:151.351017px;}
.ws11c{word-spacing:216.344308px;}
.ws150{word-spacing:216.361045px;}
.wsfc{word-spacing:222.995360px;}
.ws11b{word-spacing:238.412668px;}
.wsf8{word-spacing:246.586305px;}
.ws11a{word-spacing:256.292382px;}
.ws101{word-spacing:266.551356px;}
.wsfd{word-spacing:311.249510px;}
.wsfe{word-spacing:320.129510px;}
.wsf3{word-spacing:342.825021px;}
.wsf5{word-spacing:598.664589px;}
._1b{margin-left:-31.071342px;}
._44{margin-left:-29.887800px;}
._f{margin-left:-7.065491px;}
._2{margin-left:-5.810227px;}
._a{margin-left:-4.351649px;}
._13{margin-left:-3.287658px;}
._1{margin-left:-2.223667px;}
._3{margin-left:-1.063991px;}
._6{width:1.183542px;}
._0{width:2.223667px;}
._4{width:3.837608px;}
._42{width:5.463486px;}
._24{width:8.512067px;}
._d{width:9.982525px;}
._3a{width:12.287743px;}
._3d{width:13.628871px;}
._11{width:14.848289px;}
._10{width:16.055795px;}
._35{width:17.081875px;}
._18{width:18.566346px;}
._19{width:20.574776px;}
._1d{width:22.308269px;}
._12{width:24.101537px;}
._14{width:25.811089px;}
._8{width:26.851238px;}
._1a{width:27.855430px;}
._9{width:28.955330px;}
._40{width:30.150842px;}
._c{width:31.214857px;}
._43{width:32.338600px;}
._b{width:34.143838px;}
._39{width:35.207828px;}
._22{width:36.475086px;}
._e{width:37.491271px;}
._1f{width:39.105212px;}
._7{width:41.304940px;}
._1e{width:42.500452px;}
._3c{width:44.126363px;}
._26{width:45.178384px;}
._23{width:46.744519px;}
._20{width:47.880256px;}
._41{width:50.331055px;}
._17{width:51.586343px;}
._21{width:53.020957px;}
._3f{width:54.646868px;}
._3b{width:56.983655px;}
._1c{width:58.580088px;}
._15{width:59.811428px;}
._5{width:62.059043px;}
._38{width:64.868496px;}
._3e{width:67.705786px;}
._16{width:71.670944px;}
._34{width:74.875430px;}
._33{width:85.897537px;}
._27{width:95.521409px;}
._32{width:97.912433px;}
._31{width:112.856333px;}
._28{width:140.891089px;}
._29{width:142.863684px;}
._2d{width:148.721693px;}
._2c{width:150.578922px;}
._36{width:158.401144px;}
._2e{width:164.920880px;}
._2b{width:176.577122px;}
._37{width:178.148344px;}
._25{width:181.175658px;}
._2f{width:184.587053px;}
._30{width:204.731430px;}
._2a{width:210.589439px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs8{font-size:35.865504px;}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs7{font-size:47.820672px;}
.fs5{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:59.775841px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y1c8{bottom:13.124619px;}
.y153{bottom:13.788792px;}
.y1da{bottom:17.924619px;}
.y152{bottom:31.079787px;}
.y202{bottom:34.649237px;}
.y5e{bottom:43.534500px;}
.y1d4{bottom:43.949597px;}
.y1c9{bottom:48.017063px;}
.y154{bottom:50.692576px;}
.y18e{bottom:51.598076px;}
.y16c{bottom:52.907777px;}
.y162{bottom:55.860469px;}
.y1f7{bottom:58.349597px;}
.y1d5{bottom:58.600698px;}
.y167{bottom:61.011442px;}
.y5d{bottom:61.467000px;}
.y19c{bottom:63.006608px;}
.y1f8{bottom:67.181187px;}
.y16b{bottom:73.166939px;}
.y193{bottom:74.076914px;}
.y161{bottom:76.119630px;}
.y192{bottom:78.366713px;}
.y19b{bottom:79.731226px;}
.y158{bottom:80.336354px;}
.y166{bottom:81.270604px;}
.y1ca{bottom:84.074250px;}
.y18f{bottom:84.216544px;}
.y155{bottom:84.389542px;}
.y1d8{bottom:88.607737px;}
.y1f9{bottom:89.761120px;}
.y16a{bottom:93.426101px;}
.y1d6{bottom:95.890797px;}
.y160{bottom:96.378792px;}
.y19a{bottom:96.455845px;}
.y1cd{bottom:99.559023px;}
.y165{bottom:101.529765px;}
.y31{bottom:106.299000px;}
.y18c{bottom:110.518500px;}
.y199{bottom:113.180464px;}
.y169{bottom:113.685262px;}
.y15f{bottom:116.637954px;}
.y190{bottom:116.835012px;}
.y156{bottom:118.086507px;}
.y2c6{bottom:119.424000px;}
.y1cb{bottom:120.131437px;}
.y5c{bottom:120.496500px;}
.y164{bottom:121.788927px;}
.y30{bottom:124.231500px;}
.y15a{bottom:124.536920px;}
.y150{bottom:124.714500px;}
.y2a5{bottom:127.554000px;}
.y198{bottom:129.905082px;}
.y194{bottom:130.771654px;}
.y1d7{bottom:133.180895px;}
.y168{bottom:133.944424px;}
.y1fc{bottom:134.150257px;}
.y18b{bottom:134.469000px;}
.y1fa{bottom:134.547625px;}
.yc6{bottom:134.692500px;}
.y15e{bottom:136.897115px;}
.y2c5{bottom:137.356500px;}
.y5b{bottom:138.912000px;}
.y159{bottom:141.261538px;}
.y163{bottom:142.048088px;}
.y2f{bottom:142.164000px;}
.y197{bottom:146.629701px;}
.y2a4{bottom:146.782500px;}
.y22b{bottom:147.162000px;}
.y1f5{bottom:148.890000px;}
.y191{bottom:149.453480px;}
.y14f{bottom:151.318500px;}
.y157{bottom:151.783473px;}
.y18a{bottom:152.401500px;}
.yc5{bottom:153.108000px;}
.y2c4{bottom:155.289000px;}
.y1cc{bottom:156.188624px;}
.y2e{bottom:160.096500px;}
.ye2{bottom:160.098000px;}
.y16d{bottom:160.177797px;}
.y1c6{bottom:163.086000px;}
.y196{bottom:163.354319px;}
.y27e{bottom:164.256000px;}
.y2a3{bottom:164.715000px;}
.y1d9{bottom:164.722056px;}
.y22a{bottom:165.094500px;}
.y5a{bottom:165.127500px;}
.y260{bottom:166.837500px;}
.y14e{bottom:169.251000px;}
.y1d0{bottom:171.428339px;}
.y201{bottom:171.985359px;}
.y2c3{bottom:173.223000px;}
.y189{bottom:175.278000px;}
.y195{bottom:176.437509px;}
.y1f4{bottom:177.283500px;}
.y2d{bottom:178.030500px;}
.yc4{bottom:179.050500px;}
.y1fb{bottom:179.334130px;}
.y1c5{bottom:181.018500px;}
.y111{bottom:181.168500px;}
.y16f{bottom:181.428899px;}
.y2a2{bottom:182.647500px;}
.y229{bottom:183.027000px;}
.y59{bottom:183.060000px;}
.y25f{bottom:184.770000px;}
.y27d{bottom:185.178000px;}
.y14d{bottom:187.183500px;}
.y1cf{bottom:188.152957px;}
.y1fe{bottom:189.617012px;}
.y2c2{bottom:191.155500px;}
.y188{bottom:193.210500px;}
.y1f3{bottom:195.699000px;}
.y93{bottom:195.963000px;}
.yc3{bottom:196.983000px;}
.y16e{bottom:198.153517px;}
.y1c4{bottom:198.951000px;}
.y2a1{bottom:200.580000px;}
.y228{bottom:200.959500px;}
.y58{bottom:200.994000px;}
.y110{bottom:202.089000px;}
.y25e{bottom:202.704000px;}
.y27c{bottom:203.110500px;}
.y2c{bottom:203.434500px;}
.y1ce{bottom:204.877576px;}
.y14c{bottom:205.116000px;}
.y1ff{bottom:205.406177px;}
.y1fd{bottom:208.371866px;}
.y2c1{bottom:209.088000px;}
.y187{bottom:211.143000px;}
.y130{bottom:213.895500px;}
.yc2{bottom:214.915500px;}
.y1c3{bottom:216.883500px;}
.y92{bottom:217.033500px;}
.y2a0{bottom:218.512500px;}
.y227{bottom:218.893500px;}
.y57{bottom:218.926500px;}
.y10f{bottom:220.023000px;}
.y25d{bottom:220.636500px;}
.y27b{bottom:221.043000px;}
.y1f2{bottom:221.299500px;}
.y14b{bottom:223.050000px;}
.y200{bottom:224.646674px;}
.ye1{bottom:224.856000px;}
.y2c0{bottom:227.020500px;}
.y186{bottom:229.075500px;}
.y12f{bottom:231.828000px;}
.yc1{bottom:232.848000px;}
.y1c2{bottom:234.817500px;}
.y91{bottom:234.966000px;}
.y2b{bottom:235.380000px;}
.y29f{bottom:236.446500px;}
.y226{bottom:236.826000px;}
.y56{bottom:236.859000px;}
.y10e{bottom:237.955500px;}
.y25c{bottom:238.569000px;}
.y27a{bottom:238.975500px;}
.y1f1{bottom:239.232000px;}
.y14a{bottom:240.982500px;}
.y2bf{bottom:244.953000px;}
.ye0{bottom:245.976000px;}
.y185{bottom:247.009500px;}
.y12e{bottom:249.760500px;}
.yc0{bottom:250.780500px;}
.y1c1{bottom:252.750000px;}
.y2a{bottom:253.312500px;}
.y29e{bottom:254.379000px;}
.y225{bottom:254.758500px;}
.y55{bottom:254.791500px;}
.y90{bottom:255.888000px;}
.y25b{bottom:256.501500px;}
.y279{bottom:256.908000px;}
.y1f0{bottom:257.164500px;}
.y149{bottom:258.915000px;}
.y2be{bottom:262.885500px;}
.ydf{bottom:263.908500px;}
.y184{bottom:264.942000px;}
.y12d{bottom:267.694500px;}
.ybf{bottom:268.714500px;}
.y1c0{bottom:270.682500px;}
.y29{bottom:271.245000px;}
.y29d{bottom:272.311500px;}
.y224{bottom:272.691000px;}
.y54{bottom:272.724000px;}
.y8f{bottom:273.820500px;}
.y25a{bottom:274.434000px;}
.y278{bottom:274.842000px;}
.y148{bottom:276.847500px;}
.y1ef{bottom:278.086500px;}
.y2bd{bottom:280.819500px;}
.y183{bottom:282.874500px;}
.yde{bottom:285.028500px;}
.y12c{bottom:285.627000px;}
.ybe{bottom:286.647000px;}
.y1bf{bottom:288.615000px;}
.y28{bottom:289.177500px;}
.y29c{bottom:290.244000px;}
.y223{bottom:290.623500px;}
.y53{bottom:290.656500px;}
.y8e{bottom:291.753000px;}
.y259{bottom:292.366500px;}
.y277{bottom:292.774500px;}
.y147{bottom:294.780000px;}
.y1ee{bottom:296.019000px;}
.y2bc{bottom:298.752000px;}
.y12b{bottom:303.559500px;}
.y182{bottom:303.945000px;}
.ybd{bottom:304.579500px;}
.ydd{bottom:306.148500px;}
.y1be{bottom:306.547500px;}
.y29b{bottom:308.176500px;}
.y222{bottom:308.557500px;}
.y52{bottom:308.590500px;}
.y8d{bottom:309.685500px;}
.y258{bottom:310.300500px;}
.y27{bottom:310.423500px;}
.y276{bottom:310.707000px;}
.y146{bottom:312.712500px;}
.y1ed{bottom:313.951500px;}
.y2bb{bottom:316.684500px;}
.y1bd{bottom:324.481500px;}
.ybc{bottom:325.650000px;}
.y29a{bottom:326.109000px;}
.y221{bottom:326.490000px;}
.y51{bottom:326.523000px;}
.ydc{bottom:327.268500px;}
.y8c{bottom:327.619500px;}
.y257{bottom:328.233000px;}
.y26{bottom:328.356000px;}
.y275{bottom:328.639500px;}
.y181{bottom:329.350500px;}
.y10d{bottom:330.607500px;}
.y145{bottom:330.646500px;}
.y12a{bottom:330.915000px;}
.y1ec{bottom:331.884000px;}
.y2ba{bottom:334.617000px;}
.y299{bottom:344.043000px;}
.y220{bottom:344.422500px;}
.y50{bottom:344.455500px;}
.y1bc{bottom:345.402000px;}
.y8b{bottom:345.552000px;}
.y256{bottom:346.165500px;}
.y25{bottom:346.288500px;}
.ybb{bottom:346.572000px;}
.y10c{bottom:348.540000px;}
.y144{bottom:348.579000px;}
.y129{bottom:348.847500px;}
.y1eb{bottom:349.818000px;}
.y2b9{bottom:352.549500px;}
.ydb{bottom:356.161500px;}
.y180{bottom:357.744000px;}
.y298{bottom:361.975500px;}
.y21f{bottom:362.355000px;}
.y1bb{bottom:363.334500px;}
.y8a{bottom:363.484500px;}
.y24{bottom:364.221000px;}
.yba{bottom:364.504500px;}
.y10b{bottom:366.474000px;}
.y143{bottom:366.511500px;}
.y128{bottom:366.780000px;}
.y255{bottom:367.087500px;}
.y1ea{bottom:367.750500px;}
.y4f{bottom:368.878500px;}
.y2b8{bottom:370.483500px;}
.yda{bottom:374.094000px;}
.y17f{bottom:375.676500px;}
.y297{bottom:379.908000px;}
.y21e{bottom:380.287500px;}
.y1ba{bottom:381.268500px;}
.y89{bottom:381.417000px;}
.yb9{bottom:382.437000px;}
.y274{bottom:382.438500px;}
.y10a{bottom:384.406500px;}
.y127{bottom:384.714000px;}
.y254{bottom:385.020000px;}
.y23{bottom:385.465500px;}
.y1e9{bottom:385.683000px;}
.y4e{bottom:386.811000px;}
.y2b7{bottom:388.416000px;}
.yd9{bottom:392.026500px;}
.y17e{bottom:393.609000px;}
.y296{bottom:397.840500px;}
.y21d{bottom:398.220000px;}
.y1b9{bottom:399.201000px;}
.y88{bottom:399.349500px;}
.yb8{bottom:400.369500px;}
.y273{bottom:400.371000px;}
.y142{bottom:401.623500px;}
.y109{bottom:402.339000px;}
.y126{bottom:402.646500px;}
.y253{bottom:402.952500px;}
.y22{bottom:403.399500px;}
.y1e8{bottom:403.615500px;}
.y4d{bottom:404.743500px;}
.y2b6{bottom:406.348500px;}
.y17d{bottom:411.541500px;}
.yd8{bottom:412.948500px;}
.y295{bottom:415.773000px;}
.y21c{bottom:416.154000px;}
.y1b8{bottom:417.133500px;}
.y87{bottom:417.282000px;}
.yb7{bottom:418.303500px;}
.y108{bottom:420.271500px;}
.y125{bottom:420.579000px;}
.y252{bottom:420.885000px;}
.y21{bottom:421.332000px;}
.y1e7{bottom:421.548000px;}
.y4c{bottom:422.676000px;}
.y141{bottom:424.039500px;}
.y2b5{bottom:424.281000px;}
.y17c{bottom:429.474000px;}
.yd7{bottom:430.881000px;}
.y294{bottom:433.705500px;}
.y21b{bottom:434.086500px;}
.y1b7{bottom:435.066000px;}
.y86{bottom:435.216000px;}
.yb6{bottom:436.236000px;}
.y107{bottom:438.204000px;}
.y124{bottom:438.511500px;}
.y251{bottom:438.817500px;}
.y1e6{bottom:439.480500px;}
.y4b{bottom:440.608500px;}
.y2b4{bottom:442.213500px;}
.y20{bottom:446.736000px;}
.y17b{bottom:447.408000px;}
.y140{bottom:448.308000px;}
.y293{bottom:451.639500px;}
.y21a{bottom:452.019000px;}
.y1b6{bottom:452.998500px;}
.y85{bottom:453.148500px;}
.yb5{bottom:454.168500px;}
.y106{bottom:456.136500px;}
.y123{bottom:456.444000px;}
.y250{bottom:456.751500px;}
.y1e5{bottom:457.414500px;}
.y4a{bottom:458.542500px;}
.y2b3{bottom:460.146000px;}
.y17a{bottom:465.340500px;}
.y292{bottom:469.572000px;}
.y219{bottom:469.951500px;}
.y1b5{bottom:470.931000px;}
.y84{bottom:471.081000px;}
.yb4{bottom:472.101000px;}
.y13f{bottom:472.576500px;}
.y105{bottom:474.070500px;}
.y122{bottom:474.376500px;}
.y24f{bottom:474.684000px;}
.y1f{bottom:475.129500px;}
.y1e4{bottom:475.347000px;}
.y2b2{bottom:478.080000px;}
.y49{bottom:479.463000px;}
.yd6{bottom:482.554500px;}
.y179{bottom:483.273000px;}
.y291{bottom:487.504500px;}
.y218{bottom:487.884000px;}
.y1b4{bottom:488.865000px;}
.y83{bottom:489.013500px;}
.yb3{bottom:490.033500px;}
.y272{bottom:490.035000px;}
.y104{bottom:492.003000px;}
.y121{bottom:492.310500px;}
.y24e{bottom:492.616500px;}
.y1e{bottom:493.062000px;}
.y1e3{bottom:493.279500px;}
.y2b1{bottom:496.012500px;}
.y13e{bottom:496.846500px;}
.y48{bottom:497.395500px;}
.y178{bottom:501.205500px;}
.y290{bottom:505.437000px;}
.y217{bottom:505.816500px;}
.y1b3{bottom:506.797500px;}
.y82{bottom:506.946000px;}
.yb2{bottom:507.967500px;}
.y120{bottom:510.243000px;}
.y24d{bottom:510.549000px;}
.y1d{bottom:510.996000px;}
.y1e2{bottom:511.212000px;}
.y103{bottom:513.073500px;}
.y2b0{bottom:513.945000px;}
.y47{bottom:515.329500px;}
.y271{bottom:515.439000px;}
.y13d{bottom:516.871500px;}
.y177{bottom:519.138000px;}
.y28f{bottom:523.369500px;}
.y216{bottom:523.750500px;}
.y1b2{bottom:524.730000px;}
.y81{bottom:524.880000px;}
.yb1{bottom:525.900000px;}
.y11f{bottom:528.175500px;}
.y24c{bottom:528.481500px;}
.y1c{bottom:528.928500px;}
.y2af{bottom:531.877500px;}
.y46{bottom:533.262000px;}
.y102{bottom:533.995500px;}
.y13a{bottom:534.322500px;}
.y1e1{bottom:534.972000px;}
.y176{bottom:537.072000px;}
.y28e{bottom:541.302000px;}
.y215{bottom:541.683000px;}
.y1b1{bottom:542.662500px;}
.y80{bottom:542.812500px;}
.yb0{bottom:543.832500px;}
.y11e{bottom:546.108000px;}
.y24b{bottom:546.414000px;}
.y1b{bottom:546.861000px;}
.y13c{bottom:548.518500px;}
.y2ae{bottom:549.810000px;}
.y45{bottom:551.194500px;}
.y101{bottom:551.928000px;}
.y1e0{bottom:552.904500px;}
.y13b{bottom:553.168500px;}
.y175{bottom:558.142500px;}
.y214{bottom:559.615500px;}
.y1b0{bottom:560.595000px;}
.y7f{bottom:560.745000px;}
.yaf{bottom:561.765000px;}
.y11d{bottom:564.040500px;}
.y24a{bottom:564.348000px;}
.y1a{bottom:564.793500px;}
.y28d{bottom:566.707500px;}
.y2ad{bottom:567.742500px;}
.y44{bottom:569.127000px;}
.y100{bottom:569.860500px;}
.y1df{bottom:570.837000px;}
.y139{bottom:573.168000px;}
.y1af{bottom:578.527500px;}
.y7e{bottom:578.677500px;}
.y174{bottom:579.064500px;}
.yae{bottom:579.697500px;}
.y270{bottom:579.699000px;}
.y213{bottom:580.875000px;}
.y11c{bottom:581.973000px;}
.y249{bottom:582.280500px;}
.y19{bottom:582.726000px;}
.y2ac{bottom:585.676500px;}
.y43{bottom:587.059500px;}
.yff{bottom:587.793000px;}
.y1de{bottom:588.769500px;}
.y138{bottom:595.584000px;}
.y1ae{bottom:596.461500px;}
.y7d{bottom:596.610000px;}
.y173{bottom:596.997000px;}
.yad{bottom:597.630000px;}
.y26f{bottom:597.631500px;}
.y212{bottom:598.807500px;}
.y11b{bottom:599.907000px;}
.y248{bottom:600.213000px;}
.y18{bottom:600.660000px;}
.y2ab{bottom:603.609000px;}
.yd5{bottom:604.582500px;}
.y42{bottom:604.992000px;}
.yfe{bottom:605.725500px;}
.y1dd{bottom:606.702000px;}
.y1ad{bottom:614.394000px;}
.y7c{bottom:614.542500px;}
.yac{bottom:615.564000px;}
.y211{bottom:616.740000px;}
.y11a{bottom:617.839500px;}
.y137{bottom:618.000000px;}
.y247{bottom:618.145500px;}
.y17{bottom:618.592500px;}
.y2aa{bottom:621.541500px;}
.y41{bottom:622.926000px;}
.yfd{bottom:623.659500px;}
.y1ac{bottom:632.326500px;}
.y7b{bottom:632.476500px;}
.yab{bottom:633.496500px;}
.y210{bottom:634.672500px;}
.y119{bottom:635.772000px;}
.y16{bottom:636.525000px;}
.y136{bottom:636.531000px;}
.y246{bottom:639.067500px;}
.y2a9{bottom:639.474000px;}
.y40{bottom:640.858500px;}
.yfc{bottom:641.592000px;}
.y135{bottom:646.780500px;}
.y172{bottom:648.117000px;}
.y1ab{bottom:650.259000px;}
.y7a{bottom:650.409000px;}
.y20f{bottom:652.605000px;}
.y118{bottom:653.704500px;}
.y26e{bottom:654.418500px;}
.y15{bottom:654.457500px;}
.y245{bottom:657.000000px;}
.y2a8{bottom:657.406500px;}
.y1dc{bottom:658.233000px;}
.y3f{bottom:658.791000px;}
.yaa{bottom:658.900500px;}
.yfb{bottom:659.524500px;}
.y171{bottom:666.049500px;}
.y1aa{bottom:668.191500px;}
.y79{bottom:668.341500px;}
.y20e{bottom:670.537500px;}
.y117{bottom:671.637000px;}
.y26d{bottom:672.351000px;}
.y14{bottom:672.390000px;}
.y134{bottom:674.907000px;}
.y244{bottom:674.932500px;}
.y28c{bottom:675.339000px;}
.y1db{bottom:676.165500px;}
.y3e{bottom:676.723500px;}
.yfa{bottom:677.457000px;}
.y133{bottom:678.186000px;}
.y170{bottom:683.982000px;}
.ya9{bottom:687.294000px;}
.y20d{bottom:688.471500px;}
.y132{bottom:688.522500px;}
.y1d3{bottom:688.717500px;}
.y1a9{bottom:689.113500px;}
.y116{bottom:689.569500px;}
.y78{bottom:689.773500px;}
.y26c{bottom:690.283500px;}
.y13{bottom:690.322500px;}
.y243{bottom:692.865000px;}
.y28b{bottom:693.273000px;}
.y3d{bottom:694.656000px;}
.yf9{bottom:695.389500px;}
.y15d{bottom:696.535500px;}
.ya8{bottom:705.226500px;}
.y20c{bottom:706.404000px;}
.y1a8{bottom:707.046000px;}
.y115{bottom:707.503500px;}
.y77{bottom:707.706000px;}
.y26b{bottom:708.216000px;}
.y12{bottom:708.256500px;}
.y242{bottom:710.799000px;}
.y28a{bottom:711.205500px;}
.y3c{bottom:712.590000px;}
.yf8{bottom:713.323500px;}
.ya7{bottom:723.160500px;}
.y20b{bottom:724.336500px;}
.y1a7{bottom:724.978500px;}
.y114{bottom:725.436000px;}
.y76{bottom:725.638500px;}
.y26a{bottom:726.148500px;}
.y11{bottom:726.189000px;}
.y241{bottom:728.731500px;}
.y289{bottom:729.138000px;}
.yf7{bottom:731.256000px;}
.y3b{bottom:733.660500px;}
.y131{bottom:734.859000px;}
.ya6{bottom:741.093000px;}
.y20a{bottom:742.269000px;}
.y1a6{bottom:742.912500px;}
.y75{bottom:743.571000px;}
.y269{bottom:744.082500px;}
.y10{bottom:744.121500px;}
.y240{bottom:746.664000px;}
.y288{bottom:747.070500px;}
.yf6{bottom:752.176500px;}
.y113{bottom:752.791500px;}
.ya5{bottom:759.025500px;}
.y3a{bottom:759.064500px;}
.y209{bottom:760.201500px;}
.y1a5{bottom:760.845000px;}
.y74{bottom:761.505000px;}
.y268{bottom:762.015000px;}
.yf{bottom:762.054000px;}
.y23f{bottom:764.596500px;}
.y287{bottom:765.003000px;}
.yf5{bottom:770.110500px;}
.ya4{bottom:776.958000px;}
.y208{bottom:778.134000px;}
.y1a4{bottom:778.777500px;}
.y73{bottom:779.437500px;}
.y267{bottom:779.947500px;}
.ye{bottom:779.986500px;}
.y23e{bottom:782.529000px;}
.y286{bottom:782.937000px;}
.y39{bottom:787.458000px;}
.yf4{bottom:788.043000px;}
.ya3{bottom:794.890500px;}
.y207{bottom:796.068000px;}
.y1a3{bottom:796.710000px;}
.y72{bottom:797.370000px;}
.y266{bottom:797.880000px;}
.yd{bottom:797.919000px;}
.y23d{bottom:800.461500px;}
.y285{bottom:800.869500px;}
.y112{bottom:803.004000px;}
.y38{bottom:805.392000px;}
.yf3{bottom:805.975500px;}
.y206{bottom:814.000500px;}
.y1a2{bottom:814.642500px;}
.y71{bottom:815.302500px;}
.ya2{bottom:815.812500px;}
.yc{bottom:815.853000px;}
.y23c{bottom:818.395500px;}
.y284{bottom:818.802000px;}
.y37{bottom:823.324500px;}
.yf2{bottom:823.908000px;}
.y205{bottom:831.933000px;}
.y1a1{bottom:832.575000px;}
.y70{bottom:833.235000px;}
.ya1{bottom:833.745000px;}
.yb{bottom:833.785500px;}
.y23b{bottom:836.328000px;}
.y283{bottom:836.734500px;}
.y36{bottom:841.257000px;}
.yf1{bottom:841.840500px;}
.y204{bottom:849.865500px;}
.y1a0{bottom:850.509000px;}
.y6f{bottom:851.167500px;}
.ya0{bottom:851.677500px;}
.y265{bottom:851.679000px;}
.ya{bottom:851.718000px;}
.y282{bottom:854.667000px;}
.y23a{bottom:857.248500px;}
.y35{bottom:859.189500px;}
.yf0{bottom:859.773000px;}
.y19f{bottom:868.441500px;}
.y6e{bottom:869.101500px;}
.y9f{bottom:869.611500px;}
.y9{bottom:869.650500px;}
.y281{bottom:872.599500px;}
.y239{bottom:875.182500px;}
.y34{bottom:877.122000px;}
.yef{bottom:877.707000px;}
.y6d{bottom:887.034000px;}
.y9e{bottom:887.544000px;}
.y8{bottom:887.583000px;}
.y2a7{bottom:890.533500px;}
.y33{bottom:895.054500px;}
.yee{bottom:895.639500px;}
.y238{bottom:896.253000px;}
.y1d2{bottom:897.172500px;}
.y280{bottom:898.005000px;}
.yd4{bottom:900.028500px;}
.y203{bottom:900.234000px;}
.y6c{bottom:904.966500px;}
.y9d{bottom:905.476500px;}
.y7{bottom:905.515500px;}
.y2a6{bottom:908.466000px;}
.y1f6{bottom:912.787500px;}
.y32{bottom:912.988500px;}
.yed{bottom:913.572000px;}
.y1d1{bottom:915.105000px;}
.y237{bottom:917.175000px;}
.yd3{bottom:920.892000px;}
.y6b{bottom:922.899000px;}
.y9c{bottom:923.409000px;}
.y27f{bottom:926.398500px;}
.y1c7{bottom:927.658500px;}
.y19e{bottom:929.847000px;}
.y6{bottom:930.921000px;}
.yec{bottom:931.504500px;}
.y236{bottom:935.107500px;}
.y15c{bottom:940.651500px;}
.y6a{bottom:940.831500px;}
.y9b{bottom:941.341500px;}
.y264{bottom:944.331000px;}
.y19d{bottom:947.779500px;}
.y235{bottom:953.040000px;}
.yd2{bottom:953.658000px;}
.ycd{bottom:954.081000px;}
.y15b{bottom:958.584000px;}
.y69{bottom:958.764000px;}
.y9a{bottom:959.274000px;}
.y18d{bottom:960.331500px;}
.y263{bottom:962.263500px;}
.y234{bottom:970.972500px;}
.y151{bottom:971.136000px;}
.y68{bottom:976.698000px;}
.y99{bottom:977.208000px;}
.y262{bottom:980.196000px;}
.yeb{bottom:987.640500px;}
.yd1{bottom:987.673500px;}
.ycc{bottom:988.098000px;}
.y233{bottom:988.905000px;}
.y67{bottom:994.630500px;}
.y98{bottom:995.140500px;}
.y261{bottom:998.130000px;}
.yea{bottom:1005.573000px;}
.y232{bottom:1006.837500px;}
.y5{bottom:1010.614500px;}
.y97{bottom:1013.073000px;}
.y66{bottom:1016.062500px;}
.ycb{bottom:1022.113500px;}
.ye9{bottom:1023.505500px;}
.y231{bottom:1024.771500px;}
.y96{bottom:1031.005500px;}
.y4{bottom:1031.536500px;}
.y65{bottom:1033.995000px;}
.ye8{bottom:1041.438000px;}
.y230{bottom:1042.704000px;}
.y3{bottom:1045.950000px;}
.y95{bottom:1048.938000px;}
.y64{bottom:1051.927500px;}
.yca{bottom:1056.129000px;}
.ye7{bottom:1059.370500px;}
.y22f{bottom:1060.636500px;}
.yd0{bottom:1065.651000px;}
.y63{bottom:1069.860000px;}
.y22e{bottom:1078.569000px;}
.ycf{bottom:1082.089500px;}
.ye6{bottom:1084.806000px;}
.y62{bottom:1087.792500px;}
.yc9{bottom:1089.121500px;}
.y2{bottom:1089.288000px;}
.y22d{bottom:1096.501500px;}
.yce{bottom:1098.528000px;}
.yc8{bottom:1105.560000px;}
.y94{bottom:1105.725000px;}
.y61{bottom:1105.726500px;}
.ye5{bottom:1108.117500px;}
.y1{bottom:1112.700000px;}
.y22c{bottom:1114.435500px;}
.y60{bottom:1123.659000px;}
.ye4{bottom:1126.050000px;}
.yc7{bottom:1141.168500px;}
.y5f{bottom:1141.591500px;}
.ye3{bottom:1143.982500px;}
.h10{height:0.000000px;}
.h1a{height:26.899128px;}
.h9{height:26.899200px;}
.hf{height:29.038903px;}
.hc{height:31.382100px;}
.h4{height:35.865450px;}
.h17{height:35.865504px;}
.h15{height:37.252304px;}
.ha{height:40.348800px;}
.h7{height:41.842920px;}
.h5{height:44.831700px;}
.h1f{height:44.831880px;}
.h19{height:44.855791px;}
.h16{height:45.067001px;}
.h2{height:50.211840px;}
.h6{height:53.072100px;}
.h8{height:53.078100px;}
.h12{height:56.060100px;}
.h11{height:56.066100px;}
.h13{height:57.764100px;}
.h3{height:61.899450px;}
.h20{height:75.125157px;}
.h21{height:84.525796px;}
.hd{height:85.271700px;}
.he{height:85.835700px;}
.hb{height:139.310100px;}
.h1d{height:183.824259px;}
.h14{height:185.399280px;}
.h1b{height:196.203886px;}
.h18{height:219.895720px;}
.h1c{height:228.877576px;}
.h1e{height:243.748877px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:350.793124px;}
.w2{width:357.119280px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:10.800000px;}
.x24{left:19.766376px;}
.x43{left:21.839550px;}
.x23{left:28.755168px;}
.x42{left:31.691788px;}
.x47{left:35.106442px;}
.x41{left:38.043062px;}
.x46{left:41.457717px;}
.x26{left:43.186987px;}
.x21{left:54.046513px;}
.x27{left:56.050739px;}
.x3f{left:60.025407px;}
.x45{left:63.215777px;}
.x4e{left:66.447912px;}
.x48{left:67.736728px;}
.x2c{left:74.221711px;}
.x4b{left:75.248261px;}
.x6{left:85.039500px;}
.x25{left:87.238369px;}
.x16{left:88.333500px;}
.x2b{left:93.691962px;}
.x7{left:94.701000px;}
.x15{left:98.299500px;}
.x29{left:99.918744px;}
.x2a{left:101.259767px;}
.xe{left:104.097000px;}
.x2{left:106.107000px;}
.x18{left:107.497500px;}
.xf{left:112.861500px;}
.x8{left:114.927000px;}
.x10{left:121.597500px;}
.xd{left:130.519500px;}
.x40{left:134.710262px;}
.x3e{left:142.604869px;}
.x2d{left:148.917553px;}
.x3d{left:156.886972px;}
.x4c{left:158.951132px;}
.x2e{left:161.781306px;}
.x22{left:163.913384px;}
.x33{left:180.310094px;}
.x32{left:181.750755px;}
.x3{left:183.448500px;}
.x4d{left:186.852089px;}
.x30{left:197.712208px;}
.x31{left:201.060007px;}
.x2f{left:207.422430px;}
.x1{left:209.043000px;}
.x49{left:211.721282px;}
.x52{left:214.953416px;}
.x53{left:216.937657px;}
.x4a{left:219.582881px;}
.x4f{left:223.753766px;}
.x44{left:230.090095px;}
.x50{left:251.654723px;}
.x34{left:254.648120px;}
.x11{left:279.595500px;}
.x3c{left:281.533761px;}
.x13{left:283.957500px;}
.x12{left:291.310500px;}
.x35{left:293.262863px;}
.x36{left:297.034349px;}
.x14{left:300.180000px;}
.x38{left:302.825228px;}
.x37{left:305.815024px;}
.x51{left:307.456637px;}
.x39{left:314.924804px;}
.x3a{left:317.384659px;}
.x3b{left:319.870158px;}
.x4{left:329.395500px;}
.x5{left:335.305500px;}
.x9{left:463.464000px;}
.x20{left:468.979500px;}
.x1b{left:474.172500px;}
.x17{left:477.252000px;}
.x54{left:478.408500px;}
.xa{left:480.102000px;}
.xc{left:510.945000px;}
.x19{left:512.364000px;}
.x1c{left:521.265000px;}
.x1a{left:548.323500px;}
.x1d{left:584.550000px;}
.x1e{left:590.046000px;}
.x1f{left:619.618500px;}
.xb{left:777.985500px;}
@media print{
.v10{vertical-align:-35.619685pt;}
.v2{vertical-align:-23.141333pt;}
.v4{vertical-align:-15.002667pt;}
.v6{vertical-align:-7.968000pt;}
.vc{vertical-align:-5.312000pt;}
.vf{vertical-align:-3.054557pt;}
.v5{vertical-align:-1.509333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.968000pt;}
.ve{vertical-align:15.001524pt;}
.v3{vertical-align:19.280000pt;}
.vd{vertical-align:21.941333pt;}
.v1{vertical-align:23.141333pt;}
.v8{vertical-align:27.248000pt;}
.v11{vertical-align:29.913578pt;}
.vb{vertical-align:35.946667pt;}
.v12{vertical-align:41.142110pt;}
.va{vertical-align:95.936000pt;}
.v9{vertical-align:109.072000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000058pt;}
.ls0{letter-spacing:0.000125pt;}
.ls23{letter-spacing:0.000334pt;}
.ls15{letter-spacing:0.000479pt;}
.ls2c{letter-spacing:0.000546pt;}
.ls1f{letter-spacing:0.000576pt;}
.ls25{letter-spacing:0.000614pt;}
.ls14{letter-spacing:0.000882pt;}
.lsb{letter-spacing:0.002079pt;}
.ls2b{letter-spacing:0.002178pt;}
.ls3{letter-spacing:0.002591pt;}
.ls19{letter-spacing:0.002694pt;}
.ls49{letter-spacing:0.002868pt;}
.ls1b{letter-spacing:0.002906pt;}
.ls21{letter-spacing:0.003723pt;}
.ls13{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.003938pt;}
.ls2e{letter-spacing:0.004132pt;}
.ls40{letter-spacing:0.004545pt;}
.ls1c{letter-spacing:0.004777pt;}
.ls38{letter-spacing:0.005388pt;}
.ls28{letter-spacing:0.005391pt;}
.ls3e{letter-spacing:0.006084pt;}
.ls17{letter-spacing:0.006216pt;}
.ls43{letter-spacing:0.010951pt;}
.ls3c{letter-spacing:0.017035pt;}
.ls3d{letter-spacing:0.024892pt;}
.ls44{letter-spacing:0.029959pt;}
.ls37{letter-spacing:0.738345pt;}
.ls7{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.653258pt;}
.ls42{letter-spacing:2.656473pt;}
.ls12{letter-spacing:2.657253pt;}
.ls4{letter-spacing:2.658245pt;}
.ls2{letter-spacing:2.658591pt;}
.ls8{letter-spacing:2.661806pt;}
.ls3f{letter-spacing:2.684934pt;}
.ls26{letter-spacing:8.850079pt;}
.ls24{letter-spacing:8.855412pt;}
.ls3a{letter-spacing:10.101812pt;}
.ls35{letter-spacing:10.107145pt;}
.ls36{letter-spacing:11.506245pt;}
.ls3b{letter-spacing:11.511578pt;}
.ls2a{letter-spacing:11.803145pt;}
.ls2f{letter-spacing:11.804745pt;}
.ls30{letter-spacing:11.805573pt;}
.ls2d{letter-spacing:11.808479pt;}
.ls29{letter-spacing:11.810906pt;}
.lsa{letter-spacing:14.492911pt;}
.ls11{letter-spacing:14.562245pt;}
.ls22{letter-spacing:14.757812pt;}
.ls18{letter-spacing:16.924911pt;}
.ls31{letter-spacing:17.415578pt;}
.ls1d{letter-spacing:18.020777pt;}
.lsd{letter-spacing:18.220911pt;}
.ls50{letter-spacing:18.690079pt;}
.ls46{letter-spacing:18.706245pt;}
.lsc{letter-spacing:18.775578pt;}
.ls39{letter-spacing:19.511578pt;}
.ls33{letter-spacing:19.603520pt;}
.ls32{letter-spacing:19.605667pt;}
.ls51{letter-spacing:19.783412pt;}
.ls4a{letter-spacing:20.018079pt;}
.ls4f{letter-spacing:20.156745pt;}
.lse{letter-spacing:20.364911pt;}
.ls4e{letter-spacing:21.890079pt;}
.ls1e{letter-spacing:23.609490pt;}
.ls6{letter-spacing:24.354245pt;}
.ls41{letter-spacing:25.575578pt;}
.ls4b{letter-spacing:25.900745pt;}
.ls34{letter-spacing:26.068465pt;}
.ls48{letter-spacing:26.263578pt;}
.ls4c{letter-spacing:26.295412pt;}
.ls16{letter-spacing:27.029388pt;}
.ls52{letter-spacing:32.583412pt;}
.ls47{letter-spacing:33.436911pt;}
.ls4d{letter-spacing:37.735412pt;}
.ls45{letter-spacing:41.436911pt;}
.ls5{letter-spacing:45.353047pt;}
.lsf{letter-spacing:92.978245pt;}
.ls10{letter-spacing:135.895578pt;}
.ls27{letter-spacing:848.204911pt;}
.ws2e{word-spacing:-16.970957pt;}
.ws30{word-spacing:-14.760588pt;}
.ws98{word-spacing:-13.581016pt;}
.ws2{word-spacing:-12.543875pt;}
.ws119{word-spacing:-12.539643pt;}
.wsdc{word-spacing:-5.940366pt;}
.wsd3{word-spacing:-5.918525pt;}
.wsbc{word-spacing:-5.905121pt;}
.ws14d{word-spacing:-5.904688pt;}
.wsbf{word-spacing:-5.904643pt;}
.wsd1{word-spacing:-5.890595pt;}
.ws8b{word-spacing:-5.887232pt;}
.wsae{word-spacing:-5.879737pt;}
.ws117{word-spacing:-5.727831pt;}
.ws10e{word-spacing:-4.668925pt;}
.wsee{word-spacing:-2.964870pt;}
.ws73{word-spacing:-2.911736pt;}
.wsa6{word-spacing:-2.858602pt;}
.ws39{word-spacing:-2.805468pt;}
.ws178{word-spacing:-2.646067pt;}
.wseb{word-spacing:-2.592933pt;}
.ws24{word-spacing:-2.486665pt;}
.ws65{word-spacing:-2.433531pt;}
.ws16c{word-spacing:-2.403170pt;}
.ws26{word-spacing:-2.380397pt;}
.wsb5{word-spacing:-2.327263pt;}
.wsb6{word-spacing:-2.274129pt;}
.ws78{word-spacing:-2.220996pt;}
.ws126{word-spacing:-2.167862pt;}
.ws29{word-spacing:-2.114728pt;}
.ws1a1{word-spacing:-2.044596pt;}
.ws19a{word-spacing:-1.955326pt;}
.ws25{word-spacing:-1.902192pt;}
.ws8d{word-spacing:-1.849059pt;}
.ws159{word-spacing:-1.832060pt;}
.ws12d{word-spacing:-1.795925pt;}
.ws1d{word-spacing:-1.742791pt;}
.wsa5{word-spacing:-1.689657pt;}
.wsd4{word-spacing:-1.636523pt;}
.ws4e{word-spacing:-1.530255pt;}
.ws1b{word-spacing:-1.477121pt;}
.ws14b{word-spacing:-1.370854pt;}
.ws154{word-spacing:-1.317720pt;}
.ws14c{word-spacing:-1.264586pt;}
.ws28{word-spacing:-1.211452pt;}
.ws19e{word-spacing:-1.158318pt;}
.ws132{word-spacing:-1.105184pt;}
.ws5c{word-spacing:-1.052051pt;}
.ws17e{word-spacing:-0.998917pt;}
.ws177{word-spacing:-0.945783pt;}
.ws114{word-spacing:-0.907253pt;}
.ws115{word-spacing:-0.898655pt;}
.ws76{word-spacing:-0.892649pt;}
.ws12a{word-spacing:-0.882544pt;}
.ws165{word-spacing:-0.839515pt;}
.wsc7{word-spacing:-0.733247pt;}
.ws20{word-spacing:-0.680113pt;}
.ws99{word-spacing:-0.626980pt;}
.wsde{word-spacing:-0.520712pt;}
.wsdd{word-spacing:-0.492541pt;}
.ws3{word-spacing:-0.467578pt;}
.ws107{word-spacing:-0.414444pt;}
.wsa9{word-spacing:-0.361310pt;}
.wsd5{word-spacing:-0.356102pt;}
.wsd7{word-spacing:-0.352898pt;}
.wsd8{word-spacing:-0.308176pt;}
.ws134{word-spacing:-0.148775pt;}
.ws2d{word-spacing:-0.063761pt;}
.wsa7{word-spacing:-0.053134pt;}
.ws34{word-spacing:-0.042507pt;}
.wse6{word-spacing:-0.037194pt;}
.wsf6{word-spacing:-0.019085pt;}
.wsf7{word-spacing:-0.013752pt;}
.wsf4{word-spacing:-0.012925pt;}
.ws4c{word-spacing:0.000000pt;}
.ws163{word-spacing:0.010627pt;}
.ws37{word-spacing:0.170028pt;}
.ws2b{word-spacing:0.382564pt;}
.ws55{word-spacing:0.435698pt;}
.ws66{word-spacing:0.488832pt;}
.ws4{word-spacing:0.541965pt;}
.ws1a2{word-spacing:0.648233pt;}
.ws9f{word-spacing:0.701367pt;}
.ws87{word-spacing:0.754501pt;}
.ws9a{word-spacing:0.807635pt;}
.ws155{word-spacing:0.860769pt;}
.ws22{word-spacing:0.913903pt;}
.wsce{word-spacing:0.967036pt;}
.ws170{word-spacing:1.015922pt;}
.ws173{word-spacing:1.020170pt;}
.wse{word-spacing:1.073304pt;}
.wscd{word-spacing:1.126438pt;}
.ws172{word-spacing:1.147692pt;}
.ws141{word-spacing:1.179572pt;}
.ws86{word-spacing:1.285840pt;}
.ws8a{word-spacing:1.338973pt;}
.wsd9{word-spacing:1.445241pt;}
.ws189{word-spacing:1.498375pt;}
.ws88{word-spacing:1.551509pt;}
.ws16f{word-spacing:1.604643pt;}
.ws15a{word-spacing:1.611023pt;}
.ws162{word-spacing:1.710911pt;}
.ws48{word-spacing:1.764044pt;}
.ws59{word-spacing:1.817178pt;}
.ws6f{word-spacing:1.870312pt;}
.ws130{word-spacing:1.923446pt;}
.ws12f{word-spacing:1.952184pt;}
.ws68{word-spacing:1.976580pt;}
.wse7{word-spacing:2.029714pt;}
.wse5{word-spacing:2.041620pt;}
.ws21{word-spacing:2.082848pt;}
.ws1cf{word-spacing:2.093474pt;}
.ws10f{word-spacing:2.099459pt;}
.ws5a{word-spacing:2.189115pt;}
.ws15e{word-spacing:2.199742pt;}
.ws1a6{word-spacing:2.242249pt;}
.ws15b{word-spacing:2.291138pt;}
.ws23{word-spacing:2.295383pt;}
.ws157{word-spacing:2.333645pt;}
.wscc{word-spacing:2.348517pt;}
.ws4a{word-spacing:2.376152pt;}
.ws27{word-spacing:2.401651pt;}
.ws8c{word-spacing:2.454785pt;}
.ws4b{word-spacing:2.503674pt;}
.ws19f{word-spacing:2.507919pt;}
.ws129{word-spacing:2.515229pt;}
.ws171{word-spacing:2.546181pt;}
.ws7c{word-spacing:2.561052pt;}
.ws164{word-spacing:2.614186pt;}
.ws14a{word-spacing:2.667320pt;}
.ws93{word-spacing:2.701875pt;}
.wsa8{word-spacing:2.720454pt;}
.ws92{word-spacing:2.749696pt;}
.ws15c{word-spacing:2.758717pt;}
.ws176{word-spacing:2.773588pt;}
.wse4{word-spacing:2.879856pt;}
.ws1a{word-spacing:2.932989pt;}
.wsed{word-spacing:2.962124pt;}
.ws1c{word-spacing:2.986123pt;}
.wse1{word-spacing:3.039257pt;}
.wsf{word-spacing:3.092391pt;}
.ws198{word-spacing:3.115624pt;}
.ws1b3{word-spacing:3.156152pt;}
.wsda{word-spacing:3.198659pt;}
.ws152{word-spacing:3.251793pt;}
.ws144{word-spacing:3.304927pt;}
.ws5b{word-spacing:3.358060pt;}
.ws6d{word-spacing:3.379314pt;}
.ws6b{word-spacing:3.411194pt;}
.wsc8{word-spacing:3.432448pt;}
.ws19d{word-spacing:3.464328pt;}
.wse0{word-spacing:3.485582pt;}
.ws1c2{word-spacing:3.517462pt;}
.wsb4{word-spacing:3.570596pt;}
.wsb3{word-spacing:3.623730pt;}
.ws89{word-spacing:3.676864pt;}
.wscb{word-spacing:3.783131pt;}
.ws61{word-spacing:3.836265pt;}
.ws1c9{word-spacing:3.889399pt;}
.ws1cb{word-spacing:3.914314pt;}
.ws1e{word-spacing:3.942533pt;}
.ws32{word-spacing:3.995667pt;}
.ws111{word-spacing:4.048801pt;}
.ws64{word-spacing:4.101935pt;}
.ws167{word-spacing:4.123188pt;}
.ws2f{word-spacing:4.155068pt;}
.ws1a0{word-spacing:4.246469pt;}
.ws7{word-spacing:4.261336pt;}
.wsb9{word-spacing:4.314470pt;}
.ws2a{word-spacing:4.367604pt;}
.ws10b{word-spacing:4.376793pt;}
.ws36{word-spacing:4.420738pt;}
.ws67{word-spacing:4.473872pt;}
.ws3a{word-spacing:4.580139pt;}
.ws125{word-spacing:4.601393pt;}
.ws158{word-spacing:4.629034pt;}
.ws179{word-spacing:4.633273pt;}
.ws12{word-spacing:4.686407pt;}
.ws195{word-spacing:4.739541pt;}
.ws1d1{word-spacing:4.829705pt;}
.ws102{word-spacing:4.840793pt;}
.ws103{word-spacing:4.845809pt;}
.ws3c{word-spacing:4.952076pt;}
.ws14{word-spacing:5.005210pt;}
.ws1aa{word-spacing:5.058344pt;}
.ws1a7{word-spacing:5.111478pt;}
.ws91{word-spacing:5.139120pt;}
.ws81{word-spacing:5.164612pt;}
.ws1ab{word-spacing:5.260690pt;}
.ws5d{word-spacing:5.270880pt;}
.ws168{word-spacing:5.324013pt;}
.ws13d{word-spacing:5.377147pt;}
.ws94{word-spacing:5.387774pt;}
.ws148{word-spacing:5.430281pt;}
.ws147{word-spacing:5.438953pt;}
.ws95{word-spacing:5.440908pt;}
.wsec{word-spacing:5.483415pt;}
.ws199{word-spacing:5.547176pt;}
.ws96{word-spacing:5.589683pt;}
.ws7e{word-spacing:5.642817pt;}
.ws13c{word-spacing:5.695951pt;}
.ws77{word-spacing:5.749084pt;}
.wsb{word-spacing:5.802218pt;}
.ws6a{word-spacing:5.855352pt;}
.ws8e{word-spacing:5.908486pt;}
.ws184{word-spacing:5.910290pt;}
.ws58{word-spacing:5.961620pt;}
.ws11e{word-spacing:5.972247pt;}
.ws16d{word-spacing:5.981840pt;}
.ws17{word-spacing:6.014754pt;}
.ws9{word-spacing:6.067888pt;}
.ws44{word-spacing:6.121021pt;}
.ws3b{word-spacing:6.174155pt;}
.wsaa{word-spacing:6.227289pt;}
.ws1b2{word-spacing:6.280423pt;}
.ws52{word-spacing:6.333557pt;}
.ws56{word-spacing:6.439825pt;}
.ws17f{word-spacing:6.492959pt;}
.ws17a{word-spacing:6.550290pt;}
.ws166{word-spacing:6.599226pt;}
.ws169{word-spacing:6.652360pt;}
.ws151{word-spacing:6.662987pt;}
.ws108{word-spacing:6.705494pt;}
.ws82{word-spacing:6.758628pt;}
.ws18a{word-spacing:6.796901pt;}
.ws75{word-spacing:6.811762pt;}
.ws116{word-spacing:6.822388pt;}
.ws4f{word-spacing:6.833015pt;}
.wsac{word-spacing:6.864896pt;}
.ws31{word-spacing:6.918029pt;}
.ws11f{word-spacing:6.971163pt;}
.ws42{word-spacing:7.024297pt;}
.ws1c4{word-spacing:7.130565pt;}
.ws1c3{word-spacing:7.131698pt;}
.ws35{word-spacing:7.183699pt;}
.wse9{word-spacing:7.289967pt;}
.ws16a{word-spacing:7.304507pt;}
.wsa{word-spacing:7.343100pt;}
.ws8{word-spacing:7.396234pt;}
.ws1a9{word-spacing:7.406861pt;}
.ws1c6{word-spacing:7.449368pt;}
.ws12b{word-spacing:7.533520pt;}
.ws46{word-spacing:7.608770pt;}
.ws8f{word-spacing:7.647045pt;}
.ws57{word-spacing:7.661904pt;}
.ws16b{word-spacing:7.663068pt;}
.wsa1{word-spacing:7.715037pt;}
.ws33{word-spacing:7.768171pt;}
.ws18b{word-spacing:7.774567pt;}
.ws109{word-spacing:7.821305pt;}
.ws2c{word-spacing:7.874439pt;}
.ws121{word-spacing:7.980707pt;}
.ws133{word-spacing:8.033841pt;}
.ws49{word-spacing:8.072117pt;}
.ws1b1{word-spacing:8.076348pt;}
.wscf{word-spacing:8.086975pt;}
.ws18{word-spacing:8.140108pt;}
.ws185{word-spacing:8.150735pt;}
.ws18e{word-spacing:8.193242pt;}
.ws18c{word-spacing:8.204177pt;}
.ws38{word-spacing:8.246376pt;}
.ws1a8{word-spacing:8.299510pt;}
.ws1c7{word-spacing:8.310137pt;}
.ws62{word-spacing:8.352644pt;}
.ws13{word-spacing:8.405778pt;}
.ws105{word-spacing:8.458912pt;}
.ws104{word-spacing:8.485411pt;}
.ws1b5{word-spacing:8.501419pt;}
.ws7f{word-spacing:8.565179pt;}
.wsc{word-spacing:8.671447pt;}
.ws90{word-spacing:8.709725pt;}
.wsb2{word-spacing:8.724581pt;}
.ws17b{word-spacing:8.735208pt;}
.ws17d{word-spacing:8.777715pt;}
.wsf2{word-spacing:8.820222pt;}
.ws188{word-spacing:8.830849pt;}
.wsd{word-spacing:8.883983pt;}
.ws1bf{word-spacing:8.894609pt;}
.ws123{word-spacing:8.937116pt;}
.ws74{word-spacing:9.043384pt;}
.wsa0{word-spacing:9.108402pt;}
.ws9b{word-spacing:9.185388pt;}
.ws7a{word-spacing:9.255920pt;}
.ws156{word-spacing:9.261840pt;}
.ws194{word-spacing:9.309053pt;}
.ws5{word-spacing:9.362187pt;}
.ws174{word-spacing:9.388055pt;}
.ws196{word-spacing:9.415321pt;}
.ws183{word-spacing:9.425948pt;}
.ws79{word-spacing:9.468455pt;}
.ws1be{word-spacing:9.521589pt;}
.ws10{word-spacing:9.627857pt;}
.ws149{word-spacing:9.680991pt;}
.ws197{word-spacing:9.734124pt;}
.ws11{word-spacing:9.787258pt;}
.ws9e{word-spacing:9.840392pt;}
.ws72{word-spacing:9.893526pt;}
.ws19c{word-spacing:9.946660pt;}
.wsb8{word-spacing:9.999794pt;}
.ws3d{word-spacing:10.052928pt;}
.ws7b{word-spacing:10.106061pt;}
.ws15f{word-spacing:10.120793pt;}
.ws54{word-spacing:10.159195pt;}
.ws16{word-spacing:10.212329pt;}
.ws70{word-spacing:10.265463pt;}
.wsbb{word-spacing:10.318597pt;}
.ws15{word-spacing:10.371731pt;}
.ws142{word-spacing:10.424865pt;}
.ws182{word-spacing:10.435491pt;}
.ws97{word-spacing:10.477999pt;}
.ws1cc{word-spacing:10.488625pt;}
.ws135{word-spacing:10.637400pt;}
.ws47{word-spacing:10.690534pt;}
.ws193{word-spacing:10.743668pt;}
.ws17c{word-spacing:10.754295pt;}
.ws127{word-spacing:10.764921pt;}
.ws7d{word-spacing:10.796802pt;}
.ws1d3{word-spacing:10.849936pt;}
.ws4d{word-spacing:10.903069pt;}
.wsb1{word-spacing:10.956203pt;}
.ws1d0{word-spacing:11.044665pt;}
.ws190{word-spacing:11.062471pt;}
.ws138{word-spacing:11.115605pt;}
.ws153{word-spacing:11.136858pt;}
.ws1b0{word-spacing:11.151357pt;}
.ws60{word-spacing:11.221873pt;}
.ws1cd{word-spacing:11.230962pt;}
.wse3{word-spacing:11.275007pt;}
.ws106{word-spacing:11.328140pt;}
.ws9c{word-spacing:11.329388pt;}
.ws1c8{word-spacing:11.391901pt;}
.ws11d{word-spacing:11.445035pt;}
.ws53{word-spacing:11.540676pt;}
.ws1b4{word-spacing:11.546024pt;}
.wsca{word-spacing:11.593810pt;}
.ws145{word-spacing:11.699845pt;}
.ws1c1{word-spacing:11.700077pt;}
.ws1a3{word-spacing:11.753211pt;}
.ws6e{word-spacing:11.912613pt;}
.ws112{word-spacing:11.982780pt;}
.ws140{word-spacing:12.035845pt;}
.ws175{word-spacing:12.072015pt;}
.ws1bb{word-spacing:12.242043pt;}
.wsc5{word-spacing:12.284550pt;}
.ws63{word-spacing:12.390818pt;}
.wsba{word-spacing:12.497085pt;}
.ws71{word-spacing:12.550219pt;}
.ws69{word-spacing:12.603353pt;}
.ws18f{word-spacing:12.762755pt;}
.ws1ae{word-spacing:12.773382pt;}
.ws9d{word-spacing:12.869023pt;}
.ws5f{word-spacing:12.890276pt;}
.ws19{word-spacing:12.975290pt;}
.ws85{word-spacing:13.187826pt;}
.wsdf{word-spacing:13.240960pt;}
.ws6{word-spacing:13.294093pt;}
.ws80{word-spacing:13.347227pt;}
.ws191{word-spacing:13.398290pt;}
.ws1b9{word-spacing:13.400361pt;}
.wsa2{word-spacing:13.410988pt;}
.ws13f{word-spacing:13.453495pt;}
.ws1c0{word-spacing:13.464122pt;}
.ws1ca{word-spacing:13.612897pt;}
.ws12c{word-spacing:13.623523pt;}
.ws13e{word-spacing:13.752507pt;}
.wse2{word-spacing:13.878566pt;}
.ws51{word-spacing:13.931700pt;}
.ws5e{word-spacing:13.952953pt;}
.ws120{word-spacing:13.984834pt;}
.ws14e{word-spacing:13.995460pt;}
.ws137{word-spacing:14.037968pt;}
.ws84{word-spacing:14.303637pt;}
.ws45{word-spacing:14.356771pt;}
.wsfb{word-spacing:14.410098pt;}
.wsf9{word-spacing:14.426231pt;}
.ws1d2{word-spacing:14.463039pt;}
.ws19b{word-spacing:14.569306pt;}
.ws1af{word-spacing:14.579933pt;}
.ws1b6{word-spacing:14.728708pt;}
.ws1d6{word-spacing:14.771215pt;}
.ws1a4{word-spacing:14.941243pt;}
.ws187{word-spacing:14.994377pt;}
.ws1ba{word-spacing:15.005004pt;}
.ws1ce{word-spacing:15.047511pt;}
.ws192{word-spacing:15.058138pt;}
.ws131{word-spacing:15.206913pt;}
.ws1ac{word-spacing:15.260047pt;}
.ws122{word-spacing:15.366314pt;}
.ws12e{word-spacing:15.525716pt;}
.wsa3{word-spacing:15.536343pt;}
.wsc6{word-spacing:15.631984pt;}
.ws43{word-spacing:16.057055pt;}
.ws180{word-spacing:16.128957pt;}
.ws1f{word-spacing:16.163322pt;}
.ws41{word-spacing:16.322724pt;}
.ws83{word-spacing:16.375858pt;}
.ws186{word-spacing:16.492752pt;}
.wsb7{word-spacing:16.535259pt;}
.ws18d{word-spacing:16.573840pt;}
.ws124{word-spacing:16.641527pt;}
.ws1d4{word-spacing:16.727401pt;}
.wsb0{word-spacing:16.800929pt;}
.wsaf{word-spacing:17.226000pt;}
.ws100{word-spacing:17.359431pt;}
.ws110{word-spacing:17.364765pt;}
.wsd2{word-spacing:17.374116pt;}
.ws10d{word-spacing:17.378255pt;}
.wsd6{word-spacing:17.387780pt;}
.ws181{word-spacing:17.555430pt;}
.ws13a{word-spacing:17.704204pt;}
.ws146{word-spacing:17.757338pt;}
.ws1d5{word-spacing:17.810472pt;}
.wsdb{word-spacing:17.857113pt;}
.ws40{word-spacing:18.182409pt;}
.ws1b8{word-spacing:18.341811pt;}
.ws160{word-spacing:18.508055pt;}
.ws1a5{word-spacing:18.607480pt;}
.ws161{word-spacing:18.614722pt;}
.wsab{word-spacing:18.766882pt;}
.ws143{word-spacing:18.808507pt;}
.wsc9{word-spacing:18.979417pt;}
.ws16e{word-spacing:19.096507pt;}
.wse8{word-spacing:19.423145pt;}
.ws139{word-spacing:19.475174pt;}
.ws1b7{word-spacing:19.617024pt;}
.ws1bd{word-spacing:19.872066pt;}
.wsad{word-spacing:20.520299pt;}
.ws1{word-spacing:20.722347pt;}
.ws6c{word-spacing:21.019758pt;}
.ws10c{word-spacing:21.738098pt;}
.ws10a{word-spacing:21.759564pt;}
.ws1ad{word-spacing:21.848646pt;}
.ws1c5{word-spacing:22.751922pt;}
.ws1bc{word-spacing:22.996506pt;}
.ws136{word-spacing:23.814599pt;}
.ws0{word-spacing:23.846639pt;}
.wsd0{word-spacing:24.417113pt;}
.wsea{word-spacing:24.695305pt;}
.wsc4{word-spacing:25.886820pt;}
.ws13b{word-spacing:26.056507pt;}
.wsbd{word-spacing:26.992004pt;}
.ws3f{word-spacing:28.277844pt;}
.wsc1{word-spacing:28.384112pt;}
.wsbe{word-spacing:29.631770pt;}
.ws3e{word-spacing:32.496673pt;}
.wsc0{word-spacing:33.484963pt;}
.ws50{word-spacing:36.159088pt;}
.wsef{word-spacing:38.021383pt;}
.ws15d{word-spacing:43.200081pt;}
.wsc3{word-spacing:43.271755pt;}
.wsf0{word-spacing:44.754478pt;}
.wsc2{word-spacing:45.778422pt;}
.wsa4{word-spacing:49.000052pt;}
.ws14f{word-spacing:53.782252pt;}
.wsf1{word-spacing:57.872049pt;}
.wsfa{word-spacing:59.578231pt;}
.ws128{word-spacing:118.178396pt;}
.ws118{word-spacing:127.027937pt;}
.wsff{word-spacing:129.375431pt;}
.ws113{word-spacing:134.534237pt;}
.ws11c{word-spacing:192.306052pt;}
.ws150{word-spacing:192.320929pt;}
.wsfc{word-spacing:198.218098pt;}
.ws11b{word-spacing:211.922372pt;}
.wsf8{word-spacing:219.187827pt;}
.ws11a{word-spacing:227.815451pt;}
.ws101{word-spacing:236.934538pt;}
.wsfd{word-spacing:276.666231pt;}
.wsfe{word-spacing:284.559564pt;}
.wsf3{word-spacing:304.733352pt;}
.wsf5{word-spacing:532.146301pt;}
._1b{margin-left:-27.618971pt;}
._44{margin-left:-26.566933pt;}
._f{margin-left:-6.280436pt;}
._2{margin-left:-5.164646pt;}
._a{margin-left:-3.868132pt;}
._13{margin-left:-2.922363pt;}
._1{margin-left:-1.976593pt;}
._3{margin-left:-0.945770pt;}
._6{width:1.052037pt;}
._0{width:1.976593pt;}
._4{width:3.411207pt;}
._42{width:4.856432pt;}
._24{width:7.566282pt;}
._d{width:8.873356pt;}
._3a{width:10.922438pt;}
._3d{width:12.114552pt;}
._11{width:13.198479pt;}
._10{width:14.271818pt;}
._35{width:15.183889pt;}
._18{width:16.503419pt;}
._19{width:18.288690pt;}
._1d{width:19.829572pt;}
._12{width:21.423588pt;}
._14{width:22.943190pt;}
._8{width:23.867767pt;}
._1a{width:24.760382pt;}
._9{width:25.738071pt;}
._40{width:26.800749pt;}
._c{width:27.746540pt;}
._43{width:28.745422pt;}
._b{width:30.350078pt;}
._39{width:31.295847pt;}
._22{width:32.422299pt;}
._e{width:33.325574pt;}
._1f{width:34.760189pt;}
._7{width:36.715502pt;}
._1e{width:37.778179pt;}
._3c{width:39.223434pt;}
._26{width:40.158563pt;}
._23{width:41.550684pt;}
._20{width:42.560227pt;}
._41{width:44.738716pt;}
._17{width:45.854527pt;}
._21{width:47.129740pt;}
._3f{width:48.574994pt;}
._3b{width:50.652137pt;}
._1c{width:52.071189pt;}
._15{width:53.165714pt;}
._5{width:55.163594pt;}
._38{width:57.660885pt;}
._3e{width:60.182921pt;}
._16{width:63.707506pt;}
._34{width:66.555938pt;}
._33{width:76.353366pt;}
._27{width:84.907919pt;}
._32{width:87.033274pt;}
._31{width:100.316740pt;}
._28{width:125.236524pt;}
._29{width:126.989941pt;}
._2d{width:132.197060pt;}
._2c{width:133.847930pt;}
._36{width:140.801017pt;}
._2e{width:146.596338pt;}
._2b{width:156.957442pt;}
._37{width:158.354084pt;}
._25{width:161.045030pt;}
._2f{width:164.077380pt;}
._30{width:181.983493pt;}
._2a{width:187.190612pt;}
.fs6{font-size:26.566933pt;}
.fs8{font-size:31.880448pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs7{font-size:42.507264pt;}
.fs5{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.134081pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y1c8{bottom:11.666328pt;}
.y153{bottom:12.256704pt;}
.y1da{bottom:15.932994pt;}
.y152{bottom:27.626477pt;}
.y202{bottom:30.799322pt;}
.y5e{bottom:38.697333pt;}
.y1d4{bottom:39.066309pt;}
.y1c9{bottom:42.681834pt;}
.y154{bottom:45.060068pt;}
.y18e{bottom:45.864956pt;}
.y16c{bottom:47.029135pt;}
.y162{bottom:49.653750pt;}
.y1f7{bottom:51.866309pt;}
.y1d5{bottom:52.089510pt;}
.y167{bottom:54.232393pt;}
.y5d{bottom:54.637333pt;}
.y19c{bottom:56.005874pt;}
.y1f8{bottom:59.716610pt;}
.y16b{bottom:65.037279pt;}
.y193{bottom:65.846146pt;}
.y161{bottom:67.661894pt;}
.y192{bottom:69.659300pt;}
.y19b{bottom:70.872201pt;}
.y158{bottom:71.410092pt;}
.y166{bottom:72.240536pt;}
.y1ca{bottom:74.732667pt;}
.y18f{bottom:74.859150pt;}
.y155{bottom:75.012926pt;}
.y1d8{bottom:78.762433pt;}
.y1f9{bottom:79.787662pt;}
.y16a{bottom:83.045423pt;}
.y1d6{bottom:85.236264pt;}
.y160{bottom:85.670037pt;}
.y19a{bottom:85.738529pt;}
.y1cd{bottom:88.496909pt;}
.y165{bottom:90.248680pt;}
.y31{bottom:94.488000pt;}
.y18c{bottom:98.238667pt;}
.y199{bottom:100.604856pt;}
.y169{bottom:101.053566pt;}
.y15f{bottom:103.678181pt;}
.y190{bottom:103.853344pt;}
.y156{bottom:104.965784pt;}
.y2c6{bottom:106.154667pt;}
.y1cb{bottom:106.783500pt;}
.y5c{bottom:107.108000pt;}
.y164{bottom:108.256824pt;}
.y30{bottom:110.428000pt;}
.y15a{bottom:110.699484pt;}
.y150{bottom:110.857333pt;}
.y2a5{bottom:113.381333pt;}
.y198{bottom:115.471184pt;}
.y194{bottom:116.241470pt;}
.y1d7{bottom:118.383018pt;}
.y168{bottom:119.061710pt;}
.y1fc{bottom:119.244672pt;}
.y18b{bottom:119.528000pt;}
.y1fa{bottom:119.597888pt;}
.yc6{bottom:119.726667pt;}
.y15e{bottom:121.686325pt;}
.y2c5{bottom:122.094667pt;}
.y5b{bottom:123.477333pt;}
.y159{bottom:125.565812pt;}
.y163{bottom:126.264967pt;}
.y2f{bottom:126.368000pt;}
.y197{bottom:130.337512pt;}
.y2a4{bottom:130.473333pt;}
.y22b{bottom:130.810667pt;}
.y1f5{bottom:132.346667pt;}
.y191{bottom:132.847538pt;}
.y14f{bottom:134.505333pt;}
.y157{bottom:134.918642pt;}
.y18a{bottom:135.468000pt;}
.yc5{bottom:136.096000pt;}
.y2c4{bottom:138.034667pt;}
.y1cc{bottom:138.834333pt;}
.y2e{bottom:142.308000pt;}
.ye2{bottom:142.309333pt;}
.y16d{bottom:142.380264pt;}
.y1c6{bottom:144.965333pt;}
.y196{bottom:145.203839pt;}
.y27e{bottom:146.005333pt;}
.y2a3{bottom:146.413333pt;}
.y1d9{bottom:146.419605pt;}
.y22a{bottom:146.750667pt;}
.y5a{bottom:146.780000pt;}
.y260{bottom:148.300000pt;}
.y14e{bottom:150.445333pt;}
.y1d0{bottom:152.380746pt;}
.y201{bottom:152.875875pt;}
.y2c3{bottom:153.976000pt;}
.y189{bottom:155.802667pt;}
.y195{bottom:156.833342pt;}
.y1f4{bottom:157.585333pt;}
.y2d{bottom:158.249333pt;}
.yc4{bottom:159.156000pt;}
.y1fb{bottom:159.408115pt;}
.y1c5{bottom:160.905333pt;}
.y111{bottom:161.038667pt;}
.y16f{bottom:161.270132pt;}
.y2a2{bottom:162.353333pt;}
.y229{bottom:162.690667pt;}
.y59{bottom:162.720000pt;}
.y25f{bottom:164.240000pt;}
.y27d{bottom:164.602667pt;}
.y14d{bottom:166.385333pt;}
.y1cf{bottom:167.247073pt;}
.y1fe{bottom:168.548455pt;}
.y2c2{bottom:169.916000pt;}
.y188{bottom:171.742667pt;}
.y1f3{bottom:173.954667pt;}
.y93{bottom:174.189333pt;}
.yc3{bottom:175.096000pt;}
.y16e{bottom:176.136460pt;}
.y1c4{bottom:176.845333pt;}
.y2a1{bottom:178.293333pt;}
.y228{bottom:178.630667pt;}
.y58{bottom:178.661333pt;}
.y110{bottom:179.634667pt;}
.y25e{bottom:180.181333pt;}
.y27c{bottom:180.542667pt;}
.y2c{bottom:180.830667pt;}
.y1ce{bottom:182.113401pt;}
.y14c{bottom:182.325333pt;}
.y1ff{bottom:182.583268pt;}
.y1fd{bottom:185.219436pt;}
.y2c1{bottom:185.856000pt;}
.y187{bottom:187.682667pt;}
.y130{bottom:190.129333pt;}
.yc2{bottom:191.036000pt;}
.y1c3{bottom:192.785333pt;}
.y92{bottom:192.918667pt;}
.y2a0{bottom:194.233333pt;}
.y227{bottom:194.572000pt;}
.y57{bottom:194.601333pt;}
.y10f{bottom:195.576000pt;}
.y25d{bottom:196.121333pt;}
.y27b{bottom:196.482667pt;}
.y1f2{bottom:196.710667pt;}
.y14b{bottom:198.266667pt;}
.y200{bottom:199.685933pt;}
.ye1{bottom:199.872000pt;}
.y2c0{bottom:201.796000pt;}
.y186{bottom:203.622667pt;}
.y12f{bottom:206.069333pt;}
.yc1{bottom:206.976000pt;}
.y1c2{bottom:208.726667pt;}
.y91{bottom:208.858667pt;}
.y2b{bottom:209.226667pt;}
.y29f{bottom:210.174667pt;}
.y226{bottom:210.512000pt;}
.y56{bottom:210.541333pt;}
.y10e{bottom:211.516000pt;}
.y25c{bottom:212.061333pt;}
.y27a{bottom:212.422667pt;}
.y1f1{bottom:212.650667pt;}
.y14a{bottom:214.206667pt;}
.y2bf{bottom:217.736000pt;}
.ye0{bottom:218.645333pt;}
.y185{bottom:219.564000pt;}
.y12e{bottom:222.009333pt;}
.yc0{bottom:222.916000pt;}
.y1c1{bottom:224.666667pt;}
.y2a{bottom:225.166667pt;}
.y29e{bottom:226.114667pt;}
.y225{bottom:226.452000pt;}
.y55{bottom:226.481333pt;}
.y90{bottom:227.456000pt;}
.y25b{bottom:228.001333pt;}
.y279{bottom:228.362667pt;}
.y1f0{bottom:228.590667pt;}
.y149{bottom:230.146667pt;}
.y2be{bottom:233.676000pt;}
.ydf{bottom:234.585333pt;}
.y184{bottom:235.504000pt;}
.y12d{bottom:237.950667pt;}
.ybf{bottom:238.857333pt;}
.y1c0{bottom:240.606667pt;}
.y29{bottom:241.106667pt;}
.y29d{bottom:242.054667pt;}
.y224{bottom:242.392000pt;}
.y54{bottom:242.421333pt;}
.y8f{bottom:243.396000pt;}
.y25a{bottom:243.941333pt;}
.y278{bottom:244.304000pt;}
.y148{bottom:246.086667pt;}
.y1ef{bottom:247.188000pt;}
.y2bd{bottom:249.617333pt;}
.y183{bottom:251.444000pt;}
.yde{bottom:253.358667pt;}
.y12c{bottom:253.890667pt;}
.ybe{bottom:254.797333pt;}
.y1bf{bottom:256.546667pt;}
.y28{bottom:257.046667pt;}
.y29c{bottom:257.994667pt;}
.y223{bottom:258.332000pt;}
.y53{bottom:258.361333pt;}
.y8e{bottom:259.336000pt;}
.y259{bottom:259.881333pt;}
.y277{bottom:260.244000pt;}
.y147{bottom:262.026667pt;}
.y1ee{bottom:263.128000pt;}
.y2bc{bottom:265.557333pt;}
.y12b{bottom:269.830667pt;}
.y182{bottom:270.173333pt;}
.ybd{bottom:270.737333pt;}
.ydd{bottom:272.132000pt;}
.y1be{bottom:272.486667pt;}
.y29b{bottom:273.934667pt;}
.y222{bottom:274.273333pt;}
.y52{bottom:274.302667pt;}
.y8d{bottom:275.276000pt;}
.y258{bottom:275.822667pt;}
.y27{bottom:275.932000pt;}
.y276{bottom:276.184000pt;}
.y146{bottom:277.966667pt;}
.y1ed{bottom:279.068000pt;}
.y2bb{bottom:281.497333pt;}
.y1bd{bottom:288.428000pt;}
.ybc{bottom:289.466667pt;}
.y29a{bottom:289.874667pt;}
.y221{bottom:290.213333pt;}
.y51{bottom:290.242667pt;}
.ydc{bottom:290.905333pt;}
.y8c{bottom:291.217333pt;}
.y257{bottom:291.762667pt;}
.y26{bottom:291.872000pt;}
.y275{bottom:292.124000pt;}
.y181{bottom:292.756000pt;}
.y10d{bottom:293.873333pt;}
.y145{bottom:293.908000pt;}
.y12a{bottom:294.146667pt;}
.y1ec{bottom:295.008000pt;}
.y2ba{bottom:297.437333pt;}
.y299{bottom:305.816000pt;}
.y220{bottom:306.153333pt;}
.y50{bottom:306.182667pt;}
.y1bc{bottom:307.024000pt;}
.y8b{bottom:307.157333pt;}
.y256{bottom:307.702667pt;}
.y25{bottom:307.812000pt;}
.ybb{bottom:308.064000pt;}
.y10c{bottom:309.813333pt;}
.y144{bottom:309.848000pt;}
.y129{bottom:310.086667pt;}
.y1eb{bottom:310.949333pt;}
.y2b9{bottom:313.377333pt;}
.ydb{bottom:316.588000pt;}
.y180{bottom:317.994667pt;}
.y298{bottom:321.756000pt;}
.y21f{bottom:322.093333pt;}
.y1bb{bottom:322.964000pt;}
.y8a{bottom:323.097333pt;}
.y24{bottom:323.752000pt;}
.yba{bottom:324.004000pt;}
.y10b{bottom:325.754667pt;}
.y143{bottom:325.788000pt;}
.y128{bottom:326.026667pt;}
.y255{bottom:326.300000pt;}
.y1ea{bottom:326.889333pt;}
.y4f{bottom:327.892000pt;}
.y2b8{bottom:329.318667pt;}
.yda{bottom:332.528000pt;}
.y17f{bottom:333.934667pt;}
.y297{bottom:337.696000pt;}
.y21e{bottom:338.033333pt;}
.y1ba{bottom:338.905333pt;}
.y89{bottom:339.037333pt;}
.yb9{bottom:339.944000pt;}
.y274{bottom:339.945333pt;}
.y10a{bottom:341.694667pt;}
.y127{bottom:341.968000pt;}
.y254{bottom:342.240000pt;}
.y23{bottom:342.636000pt;}
.y1e9{bottom:342.829333pt;}
.y4e{bottom:343.832000pt;}
.y2b7{bottom:345.258667pt;}
.yd9{bottom:348.468000pt;}
.y17e{bottom:349.874667pt;}
.y296{bottom:353.636000pt;}
.y21d{bottom:353.973333pt;}
.y1b9{bottom:354.845333pt;}
.y88{bottom:354.977333pt;}
.yb8{bottom:355.884000pt;}
.y273{bottom:355.885333pt;}
.y142{bottom:356.998667pt;}
.y109{bottom:357.634667pt;}
.y126{bottom:357.908000pt;}
.y253{bottom:358.180000pt;}
.y22{bottom:358.577333pt;}
.y1e8{bottom:358.769333pt;}
.y4d{bottom:359.772000pt;}
.y2b6{bottom:361.198667pt;}
.y17d{bottom:365.814667pt;}
.yd8{bottom:367.065333pt;}
.y295{bottom:369.576000pt;}
.y21c{bottom:369.914667pt;}
.y1b8{bottom:370.785333pt;}
.y87{bottom:370.917333pt;}
.yb7{bottom:371.825333pt;}
.y108{bottom:373.574667pt;}
.y125{bottom:373.848000pt;}
.y252{bottom:374.120000pt;}
.y21{bottom:374.517333pt;}
.y1e7{bottom:374.709333pt;}
.y4c{bottom:375.712000pt;}
.y141{bottom:376.924000pt;}
.y2b5{bottom:377.138667pt;}
.y17c{bottom:381.754667pt;}
.yd7{bottom:383.005333pt;}
.y294{bottom:385.516000pt;}
.y21b{bottom:385.854667pt;}
.y1b7{bottom:386.725333pt;}
.y86{bottom:386.858667pt;}
.yb6{bottom:387.765333pt;}
.y107{bottom:389.514667pt;}
.y124{bottom:389.788000pt;}
.y251{bottom:390.060000pt;}
.y1e6{bottom:390.649333pt;}
.y4b{bottom:391.652000pt;}
.y2b4{bottom:393.078667pt;}
.y20{bottom:397.098667pt;}
.y17b{bottom:397.696000pt;}
.y140{bottom:398.496000pt;}
.y293{bottom:401.457333pt;}
.y21a{bottom:401.794667pt;}
.y1b6{bottom:402.665333pt;}
.y85{bottom:402.798667pt;}
.yb5{bottom:403.705333pt;}
.y106{bottom:405.454667pt;}
.y123{bottom:405.728000pt;}
.y250{bottom:406.001333pt;}
.y1e5{bottom:406.590667pt;}
.y4a{bottom:407.593333pt;}
.y2b3{bottom:409.018667pt;}
.y17a{bottom:413.636000pt;}
.y292{bottom:417.397333pt;}
.y219{bottom:417.734667pt;}
.y1b5{bottom:418.605333pt;}
.y84{bottom:418.738667pt;}
.yb4{bottom:419.645333pt;}
.y13f{bottom:420.068000pt;}
.y105{bottom:421.396000pt;}
.y122{bottom:421.668000pt;}
.y24f{bottom:421.941333pt;}
.y1f{bottom:422.337333pt;}
.y1e4{bottom:422.530667pt;}
.y2b2{bottom:424.960000pt;}
.y49{bottom:426.189333pt;}
.yd6{bottom:428.937333pt;}
.y179{bottom:429.576000pt;}
.y291{bottom:433.337333pt;}
.y218{bottom:433.674667pt;}
.y1b4{bottom:434.546667pt;}
.y83{bottom:434.678667pt;}
.yb3{bottom:435.585333pt;}
.y272{bottom:435.586667pt;}
.y104{bottom:437.336000pt;}
.y121{bottom:437.609333pt;}
.y24e{bottom:437.881333pt;}
.y1e{bottom:438.277333pt;}
.y1e3{bottom:438.470667pt;}
.y2b1{bottom:440.900000pt;}
.y13e{bottom:441.641333pt;}
.y48{bottom:442.129333pt;}
.y178{bottom:445.516000pt;}
.y290{bottom:449.277333pt;}
.y217{bottom:449.614667pt;}
.y1b3{bottom:450.486667pt;}
.y82{bottom:450.618667pt;}
.yb2{bottom:451.526667pt;}
.y120{bottom:453.549333pt;}
.y24d{bottom:453.821333pt;}
.y1d{bottom:454.218667pt;}
.y1e2{bottom:454.410667pt;}
.y103{bottom:456.065333pt;}
.y2b0{bottom:456.840000pt;}
.y47{bottom:458.070667pt;}
.y271{bottom:458.168000pt;}
.y13d{bottom:459.441333pt;}
.y177{bottom:461.456000pt;}
.y28f{bottom:465.217333pt;}
.y216{bottom:465.556000pt;}
.y1b2{bottom:466.426667pt;}
.y81{bottom:466.560000pt;}
.yb1{bottom:467.466667pt;}
.y11f{bottom:469.489333pt;}
.y24c{bottom:469.761333pt;}
.y1c{bottom:470.158667pt;}
.y2af{bottom:472.780000pt;}
.y46{bottom:474.010667pt;}
.y102{bottom:474.662667pt;}
.y13a{bottom:474.953333pt;}
.y1e1{bottom:475.530667pt;}
.y176{bottom:477.397333pt;}
.y28e{bottom:481.157333pt;}
.y215{bottom:481.496000pt;}
.y1b1{bottom:482.366667pt;}
.y80{bottom:482.500000pt;}
.yb0{bottom:483.406667pt;}
.y11e{bottom:485.429333pt;}
.y24b{bottom:485.701333pt;}
.y1b{bottom:486.098667pt;}
.y13c{bottom:487.572000pt;}
.y2ae{bottom:488.720000pt;}
.y45{bottom:489.950667pt;}
.y101{bottom:490.602667pt;}
.y1e0{bottom:491.470667pt;}
.y13b{bottom:491.705333pt;}
.y175{bottom:496.126667pt;}
.y214{bottom:497.436000pt;}
.y1b0{bottom:498.306667pt;}
.y7f{bottom:498.440000pt;}
.yaf{bottom:499.346667pt;}
.y11d{bottom:501.369333pt;}
.y24a{bottom:501.642667pt;}
.y1a{bottom:502.038667pt;}
.y28d{bottom:503.740000pt;}
.y2ad{bottom:504.660000pt;}
.y44{bottom:505.890667pt;}
.y100{bottom:506.542667pt;}
.y1df{bottom:507.410667pt;}
.y139{bottom:509.482667pt;}
.y1af{bottom:514.246667pt;}
.y7e{bottom:514.380000pt;}
.y174{bottom:514.724000pt;}
.yae{bottom:515.286667pt;}
.y270{bottom:515.288000pt;}
.y213{bottom:516.333333pt;}
.y11c{bottom:517.309333pt;}
.y249{bottom:517.582667pt;}
.y19{bottom:517.978667pt;}
.y2ac{bottom:520.601333pt;}
.y43{bottom:521.830667pt;}
.yff{bottom:522.482667pt;}
.y1de{bottom:523.350667pt;}
.y138{bottom:529.408000pt;}
.y1ae{bottom:530.188000pt;}
.y7d{bottom:530.320000pt;}
.y173{bottom:530.664000pt;}
.yad{bottom:531.226667pt;}
.y26f{bottom:531.228000pt;}
.y212{bottom:532.273333pt;}
.y11b{bottom:533.250667pt;}
.y248{bottom:533.522667pt;}
.y18{bottom:533.920000pt;}
.y2ab{bottom:536.541333pt;}
.yd5{bottom:537.406667pt;}
.y42{bottom:537.770667pt;}
.yfe{bottom:538.422667pt;}
.y1dd{bottom:539.290667pt;}
.y1ad{bottom:546.128000pt;}
.y7c{bottom:546.260000pt;}
.yac{bottom:547.168000pt;}
.y211{bottom:548.213333pt;}
.y11a{bottom:549.190667pt;}
.y137{bottom:549.333333pt;}
.y247{bottom:549.462667pt;}
.y17{bottom:549.860000pt;}
.y2aa{bottom:552.481333pt;}
.y41{bottom:553.712000pt;}
.yfd{bottom:554.364000pt;}
.y1ac{bottom:562.068000pt;}
.y7b{bottom:562.201333pt;}
.yab{bottom:563.108000pt;}
.y210{bottom:564.153333pt;}
.y119{bottom:565.130667pt;}
.y16{bottom:565.800000pt;}
.y136{bottom:565.805333pt;}
.y246{bottom:568.060000pt;}
.y2a9{bottom:568.421333pt;}
.y40{bottom:569.652000pt;}
.yfc{bottom:570.304000pt;}
.y135{bottom:574.916000pt;}
.y172{bottom:576.104000pt;}
.y1ab{bottom:578.008000pt;}
.y7a{bottom:578.141333pt;}
.y20f{bottom:580.093333pt;}
.y118{bottom:581.070667pt;}
.y26e{bottom:581.705333pt;}
.y15{bottom:581.740000pt;}
.y245{bottom:584.000000pt;}
.y2a8{bottom:584.361333pt;}
.y1dc{bottom:585.096000pt;}
.y3f{bottom:585.592000pt;}
.yaa{bottom:585.689333pt;}
.yfb{bottom:586.244000pt;}
.y171{bottom:592.044000pt;}
.y1aa{bottom:593.948000pt;}
.y79{bottom:594.081333pt;}
.y20e{bottom:596.033333pt;}
.y117{bottom:597.010667pt;}
.y26d{bottom:597.645333pt;}
.y14{bottom:597.680000pt;}
.y134{bottom:599.917333pt;}
.y244{bottom:599.940000pt;}
.y28c{bottom:600.301333pt;}
.y1db{bottom:601.036000pt;}
.y3e{bottom:601.532000pt;}
.yfa{bottom:602.184000pt;}
.y133{bottom:602.832000pt;}
.y170{bottom:607.984000pt;}
.ya9{bottom:610.928000pt;}
.y20d{bottom:611.974667pt;}
.y132{bottom:612.020000pt;}
.y1d3{bottom:612.193333pt;}
.y1a9{bottom:612.545333pt;}
.y116{bottom:612.950667pt;}
.y78{bottom:613.132000pt;}
.y26c{bottom:613.585333pt;}
.y13{bottom:613.620000pt;}
.y243{bottom:615.880000pt;}
.y28b{bottom:616.242667pt;}
.y3d{bottom:617.472000pt;}
.yf9{bottom:618.124000pt;}
.y15d{bottom:619.142667pt;}
.ya8{bottom:626.868000pt;}
.y20c{bottom:627.914667pt;}
.y1a8{bottom:628.485333pt;}
.y115{bottom:628.892000pt;}
.y77{bottom:629.072000pt;}
.y26b{bottom:629.525333pt;}
.y12{bottom:629.561333pt;}
.y242{bottom:631.821333pt;}
.y28a{bottom:632.182667pt;}
.y3c{bottom:633.413333pt;}
.yf8{bottom:634.065333pt;}
.ya7{bottom:642.809333pt;}
.y20b{bottom:643.854667pt;}
.y1a7{bottom:644.425333pt;}
.y114{bottom:644.832000pt;}
.y76{bottom:645.012000pt;}
.y26a{bottom:645.465333pt;}
.y11{bottom:645.501333pt;}
.y241{bottom:647.761333pt;}
.y289{bottom:648.122667pt;}
.yf7{bottom:650.005333pt;}
.y3b{bottom:652.142667pt;}
.y131{bottom:653.208000pt;}
.ya6{bottom:658.749333pt;}
.y20a{bottom:659.794667pt;}
.y1a6{bottom:660.366667pt;}
.y75{bottom:660.952000pt;}
.y269{bottom:661.406667pt;}
.y10{bottom:661.441333pt;}
.y240{bottom:663.701333pt;}
.y288{bottom:664.062667pt;}
.yf6{bottom:668.601333pt;}
.y113{bottom:669.148000pt;}
.ya5{bottom:674.689333pt;}
.y3a{bottom:674.724000pt;}
.y209{bottom:675.734667pt;}
.y1a5{bottom:676.306667pt;}
.y74{bottom:676.893333pt;}
.y268{bottom:677.346667pt;}
.yf{bottom:677.381333pt;}
.y23f{bottom:679.641333pt;}
.y287{bottom:680.002667pt;}
.yf5{bottom:684.542667pt;}
.ya4{bottom:690.629333pt;}
.y208{bottom:691.674667pt;}
.y1a4{bottom:692.246667pt;}
.y73{bottom:692.833333pt;}
.y267{bottom:693.286667pt;}
.ye{bottom:693.321333pt;}
.y23e{bottom:695.581333pt;}
.y286{bottom:695.944000pt;}
.y39{bottom:699.962667pt;}
.yf4{bottom:700.482667pt;}
.ya3{bottom:706.569333pt;}
.y207{bottom:707.616000pt;}
.y1a3{bottom:708.186667pt;}
.y72{bottom:708.773333pt;}
.y266{bottom:709.226667pt;}
.yd{bottom:709.261333pt;}
.y23d{bottom:711.521333pt;}
.y285{bottom:711.884000pt;}
.y112{bottom:713.781333pt;}
.y38{bottom:715.904000pt;}
.yf3{bottom:716.422667pt;}
.y206{bottom:723.556000pt;}
.y1a2{bottom:724.126667pt;}
.y71{bottom:724.713333pt;}
.ya2{bottom:725.166667pt;}
.yc{bottom:725.202667pt;}
.y23c{bottom:727.462667pt;}
.y284{bottom:727.824000pt;}
.y37{bottom:731.844000pt;}
.yf2{bottom:732.362667pt;}
.y205{bottom:739.496000pt;}
.y1a1{bottom:740.066667pt;}
.y70{bottom:740.653333pt;}
.ya1{bottom:741.106667pt;}
.yb{bottom:741.142667pt;}
.y23b{bottom:743.402667pt;}
.y283{bottom:743.764000pt;}
.y36{bottom:747.784000pt;}
.yf1{bottom:748.302667pt;}
.y204{bottom:755.436000pt;}
.y1a0{bottom:756.008000pt;}
.y6f{bottom:756.593333pt;}
.ya0{bottom:757.046667pt;}
.y265{bottom:757.048000pt;}
.ya{bottom:757.082667pt;}
.y282{bottom:759.704000pt;}
.y23a{bottom:761.998667pt;}
.y35{bottom:763.724000pt;}
.yf0{bottom:764.242667pt;}
.y19f{bottom:771.948000pt;}
.y6e{bottom:772.534667pt;}
.y9f{bottom:772.988000pt;}
.y9{bottom:773.022667pt;}
.y281{bottom:775.644000pt;}
.y239{bottom:777.940000pt;}
.y34{bottom:779.664000pt;}
.yef{bottom:780.184000pt;}
.y6d{bottom:788.474667pt;}
.y9e{bottom:788.928000pt;}
.y8{bottom:788.962667pt;}
.y2a7{bottom:791.585333pt;}
.y33{bottom:795.604000pt;}
.yee{bottom:796.124000pt;}
.y238{bottom:796.669333pt;}
.y1d2{bottom:797.486667pt;}
.y280{bottom:798.226667pt;}
.yd4{bottom:800.025333pt;}
.y203{bottom:800.208000pt;}
.y6c{bottom:804.414667pt;}
.y9d{bottom:804.868000pt;}
.y7{bottom:804.902667pt;}
.y2a6{bottom:807.525333pt;}
.y1f6{bottom:811.366667pt;}
.y32{bottom:811.545333pt;}
.yed{bottom:812.064000pt;}
.y1d1{bottom:813.426667pt;}
.y237{bottom:815.266667pt;}
.yd3{bottom:818.570667pt;}
.y6b{bottom:820.354667pt;}
.y9c{bottom:820.808000pt;}
.y27f{bottom:823.465333pt;}
.y1c7{bottom:824.585333pt;}
.y19e{bottom:826.530667pt;}
.y6{bottom:827.485333pt;}
.yec{bottom:828.004000pt;}
.y236{bottom:831.206667pt;}
.y15c{bottom:836.134667pt;}
.y6a{bottom:836.294667pt;}
.y9b{bottom:836.748000pt;}
.y264{bottom:839.405333pt;}
.y19d{bottom:842.470667pt;}
.y235{bottom:847.146667pt;}
.yd2{bottom:847.696000pt;}
.ycd{bottom:848.072000pt;}
.y15b{bottom:852.074667pt;}
.y69{bottom:852.234667pt;}
.y9a{bottom:852.688000pt;}
.y18d{bottom:853.628000pt;}
.y263{bottom:855.345333pt;}
.y234{bottom:863.086667pt;}
.y151{bottom:863.232000pt;}
.y68{bottom:868.176000pt;}
.y99{bottom:868.629333pt;}
.y262{bottom:871.285333pt;}
.yeb{bottom:877.902667pt;}
.yd1{bottom:877.932000pt;}
.ycc{bottom:878.309333pt;}
.y233{bottom:879.026667pt;}
.y67{bottom:884.116000pt;}
.y98{bottom:884.569333pt;}
.y261{bottom:887.226667pt;}
.yea{bottom:893.842667pt;}
.y232{bottom:894.966667pt;}
.y5{bottom:898.324000pt;}
.y97{bottom:900.509333pt;}
.y66{bottom:903.166667pt;}
.ycb{bottom:908.545333pt;}
.ye9{bottom:909.782667pt;}
.y231{bottom:910.908000pt;}
.y96{bottom:916.449333pt;}
.y4{bottom:916.921333pt;}
.y65{bottom:919.106667pt;}
.ye8{bottom:925.722667pt;}
.y230{bottom:926.848000pt;}
.y3{bottom:929.733333pt;}
.y95{bottom:932.389333pt;}
.y64{bottom:935.046667pt;}
.yca{bottom:938.781333pt;}
.ye7{bottom:941.662667pt;}
.y22f{bottom:942.788000pt;}
.yd0{bottom:947.245333pt;}
.y63{bottom:950.986667pt;}
.y22e{bottom:958.728000pt;}
.ycf{bottom:961.857333pt;}
.ye6{bottom:964.272000pt;}
.y62{bottom:966.926667pt;}
.yc9{bottom:968.108000pt;}
.y2{bottom:968.256000pt;}
.y22d{bottom:974.668000pt;}
.yce{bottom:976.469333pt;}
.yc8{bottom:982.720000pt;}
.y94{bottom:982.866667pt;}
.y61{bottom:982.868000pt;}
.ye5{bottom:984.993333pt;}
.y1{bottom:989.066667pt;}
.y22c{bottom:990.609333pt;}
.y60{bottom:998.808000pt;}
.ye4{bottom:1000.933333pt;}
.yc7{bottom:1014.372000pt;}
.y5f{bottom:1014.748000pt;}
.ye3{bottom:1016.873333pt;}
.h10{height:0.000000pt;}
.h1a{height:23.910336pt;}
.h9{height:23.910400pt;}
.hf{height:25.812358pt;}
.hc{height:27.895200pt;}
.h4{height:31.880400pt;}
.h17{height:31.880448pt;}
.h15{height:33.113159pt;}
.ha{height:35.865600pt;}
.h7{height:37.193707pt;}
.h5{height:39.850400pt;}
.h1f{height:39.850560pt;}
.h19{height:39.871814pt;}
.h16{height:40.059557pt;}
.h2{height:44.632747pt;}
.h6{height:47.175200pt;}
.h8{height:47.180533pt;}
.h12{height:49.831200pt;}
.h11{height:49.836533pt;}
.h13{height:51.345867pt;}
.h3{height:55.021733pt;}
.h20{height:66.777918pt;}
.h21{height:75.134041pt;}
.hd{height:75.797067pt;}
.he{height:76.298400pt;}
.hb{height:123.831200pt;}
.h1d{height:163.399341pt;}
.h14{height:164.799360pt;}
.h1b{height:174.403454pt;}
.h18{height:195.462862pt;}
.h1c{height:203.446734pt;}
.h1e{height:216.665669pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:311.816110pt;}
.w2{width:317.439360pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:9.600000pt;}
.x24{left:17.570112pt;}
.x43{left:19.412933pt;}
.x23{left:25.560149pt;}
.x42{left:28.170478pt;}
.x47{left:31.205727pt;}
.x41{left:33.816055pt;}
.x46{left:36.851304pt;}
.x26{left:38.388433pt;}
.x21{left:48.041345pt;}
.x27{left:49.822879pt;}
.x3f{left:53.355918pt;}
.x45{left:56.191802pt;}
.x4e{left:59.064810pt;}
.x48{left:60.210425pt;}
.x2c{left:65.974854pt;}
.x4b{left:66.887343pt;}
.x6{left:75.590667pt;}
.x25{left:77.545217pt;}
.x16{left:78.518667pt;}
.x2b{left:83.281744pt;}
.x7{left:84.178667pt;}
.x15{left:87.377333pt;}
.x29{left:88.816661pt;}
.x2a{left:90.008682pt;}
.xe{left:92.530667pt;}
.x2{left:94.317333pt;}
.x18{left:95.553333pt;}
.xf{left:100.321333pt;}
.x8{left:102.157333pt;}
.x10{left:108.086667pt;}
.xd{left:116.017333pt;}
.x40{left:119.742456pt;}
.x3e{left:126.759884pt;}
.x2d{left:132.371158pt;}
.x3d{left:139.455086pt;}
.x4c{left:141.289895pt;}
.x2e{left:143.805605pt;}
.x22{left:145.700786pt;}
.x33{left:160.275639pt;}
.x32{left:161.556227pt;}
.x3{left:163.065333pt;}
.x4d{left:166.090746pt;}
.x30{left:175.744185pt;}
.x31{left:178.720007pt;}
.x2f{left:184.375493pt;}
.x1{left:185.816000pt;}
.x49{left:188.196695pt;}
.x52{left:191.069703pt;}
.x53{left:192.833473pt;}
.x4a{left:195.184783pt;}
.x4f{left:198.892236pt;}
.x44{left:204.524529pt;}
.x50{left:223.693087pt;}
.x34{left:226.353884pt;}
.x11{left:248.529333pt;}
.x3c{left:250.252232pt;}
.x13{left:252.406667pt;}
.x12{left:258.942667pt;}
.x35{left:260.678101pt;}
.x36{left:264.030532pt;}
.x14{left:266.826667pt;}
.x38{left:269.177980pt;}
.x37{left:271.835577pt;}
.x51{left:273.294788pt;}
.x39{left:279.933159pt;}
.x3a{left:282.119697pt;}
.x3b{left:284.329029pt;}
.x4{left:292.796000pt;}
.x5{left:298.049333pt;}
.x9{left:411.968000pt;}
.x20{left:416.870667pt;}
.x1b{left:421.486667pt;}
.x17{left:424.224000pt;}
.x54{left:425.252000pt;}
.xa{left:426.757333pt;}
.xc{left:454.173333pt;}
.x19{left:455.434667pt;}
.x1c{left:463.346667pt;}
.x1a{left:487.398667pt;}
.x1d{left:519.600000pt;}
.x1e{left:524.485333pt;}
.x1f{left:550.772000pt;}
.xb{left:691.542667pt;}
}




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