
    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_a6c7e94e8e8bebc27f044312.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_856d7564f4d57dfdee390b68.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_5af0c1c4b6f298019219802b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_a9c84943f473d1a1a5d71a16.woff')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_0ff3cd11bea68f088423cc26.woff')format("woff");}.ff5{font-family:ff5;line-height:1.103027;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_3a864c4d57d61bda50417ba8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_fcc2e21288ae0eb177e86b13.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_0e40c1c093fa11100aea367b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_83a851a7b7b58a8e30b8eb7b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.027360;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_a639ab970b217115016189e2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.041992;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_a8d75b810d93f5ebc33952a2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_e980c7b1390b98d5374aa58e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964852;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_e73a3d85475cf5e4871d270e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.026855;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_b1650417b42bba19172b3b8c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.968262;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_de6450bd3c3497c6667ada8d.woff')format("woff");}.fff{font-family:fff;line-height:0.976600;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_716ce79c8d1928810162b12c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.940000;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_272a524ba8f15dbc536320aa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.939000;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_8fb4d3ae5de4c63138bfee71.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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_272a524ba8f15dbc536320aa.woff')format("woff");}.ff13{font-family:ff13;line-height:0.939000;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_1ce4e5b0f8a369e244c5c5a4.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938000;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_1614d31dfcb70be3b73cbc8b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938000;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_8fb4d3ae5de4c63138bfee71.woff')format("woff");}.ff16{font-family:ff16;line-height:0.940000;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_716ce79c8d1928810162b12c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.940000;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_1ce4e5b0f8a369e244c5c5a4.woff')format("woff");}.ff18{font-family:ff18;line-height:0.938000;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_1614d31dfcb70be3b73cbc8b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.938000;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_8fb4d3ae5de4c63138bfee71.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.940000;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_272a524ba8f15dbc536320aa.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.939000;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_1614d31dfcb70be3b73cbc8b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938000;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_86aea0106166a4792efbe8f2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.711000;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_c3fbf0666979c827a84854f6.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;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_8fb4d3ae5de4c63138bfee71.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.940000;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_272a524ba8f15dbc536320aa.woff')format("woff");}.ff20{font-family:ff20;line-height:0.939000;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_86aea0106166a4792efbe8f2.woff')format("woff");}.ff21{font-family:ff21;line-height:0.711000;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_1614d31dfcb70be3b73cbc8b.woff')format("woff");}.ff22{font-family:ff22;line-height:0.938000;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_b6ce994c9892515a5d4ca048.woff')format("woff");}.ff23{font-family:ff23;line-height:0.938000;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_5ab73a720e4e444f5d52f449.woff')format("woff");}.ff24{font-family:ff24;line-height:0.964844;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_453030964f10a8525bf9e477.woff')format("woff");}.ff25{font-family:ff25;line-height:0.892090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.000000,-0.161337,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.161337,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.161337,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.161338,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.161338,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.161338,0.250000,0.000000,0,0);}
.m7{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);}
.m9{transform:matrix(0.161338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161338,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.204564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204564,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.205726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205726,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257176,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.257177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257177,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259758,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.199348px;}
.v6{vertical-align:18.030000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:35.322000px;}
.ls10{letter-spacing:-3.300000px;}
.lsf{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-2.400000px;}
.ls5{letter-spacing:-1.938000px;}
.ls9{letter-spacing:-1.512000px;}
.ls21{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.326000px;}
.ls17{letter-spacing:-1.263319px;}
.ls35{letter-spacing:-1.200000px;}
.ls37{letter-spacing:-1.140000px;}
.ls18{letter-spacing:-1.105402px;}
.ls24{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-0.960000px;}
.ls38{letter-spacing:-0.918000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls27{letter-spacing:-0.780000px;}
.ls3c{letter-spacing:-0.756000px;}
.ls7{letter-spacing:-0.691200px;}
.ls36{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.600000px;}
.ls3a{letter-spacing:-0.594000px;}
.ls11{letter-spacing:-0.588000px;}
.ls3{letter-spacing:-0.510000px;}
.ls39{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.408000px;}
.ls8{letter-spacing:-0.378000px;}
.ls3b{letter-spacing:-0.346302px;}
.lsa{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls31{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.510000px;}
.ls14{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.660000px;}
.ls29{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.756000px;}
.ls1f{letter-spacing:0.793800px;}
.ls33{letter-spacing:0.810000px;}
.ls30{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.918000px;}
.ls15{letter-spacing:0.960000px;}
.ls2e{letter-spacing:1.020000px;}
.ls32{letter-spacing:1.140000px;}
.ls19{letter-spacing:1.200000px;}
.ls2b{letter-spacing:4.740000px;}
.ls2d{letter-spacing:6.840000px;}
.ls28{letter-spacing:6.960000px;}
.ls23{letter-spacing:8.172000px;}
.ls20{letter-spacing:9.360000px;}
.ls34{letter-spacing:10.440000px;}
.ls1b{letter-spacing:12.480000px;}
.lsd{letter-spacing:126.966000px;}
.lse{letter-spacing:210.546000px;}
.ls22{letter-spacing:1487.356068px;}
.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;}
}
.ws13e{word-spacing:-1487.356068px;}
.ws75{word-spacing:-220.962000px;}
.ws18b{word-spacing:-51.960000px;}
.wse{word-spacing:-17.928000px;}
.ws18d{word-spacing:-16.434000px;}
.ws142{word-spacing:-16.302000px;}
.wsfb{word-spacing:-15.900000px;}
.ws16f{word-spacing:-15.840000px;}
.ws166{word-spacing:-15.720000px;}
.ws179{word-spacing:-15.690000px;}
.wsc5{word-spacing:-15.660000px;}
.wsad{word-spacing:-15.540000px;}
.wsac{word-spacing:-15.480000px;}
.ws116{word-spacing:-15.420000px;}
.ws117{word-spacing:-15.390000px;}
.wsc4{word-spacing:-15.240000px;}
.wsc6{word-spacing:-15.180000px;}
.ws167{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.880000px;}
.ws15e{word-spacing:-14.820000px;}
.wsf{word-spacing:-14.760000px;}
.ws30{word-spacing:-14.700000px;}
.ws143{word-spacing:-14.580000px;}
.ws2f{word-spacing:-14.460000px;}
.ws17d{word-spacing:-14.100000px;}
.ws118{word-spacing:-14.040000px;}
.ws14e{word-spacing:-13.920000px;}
.ws12e{word-spacing:-13.860000px;}
.ws50{word-spacing:-13.740000px;}
.ws14d{word-spacing:-13.680000px;}
.ws141{word-spacing:-13.620000px;}
.ws17c{word-spacing:-13.500000px;}
.wse5{word-spacing:-13.446000px;}
.wsc{word-spacing:-13.392000px;}
.ws12f{word-spacing:-13.260000px;}
.wsd{word-spacing:-13.230000px;}
.ws194{word-spacing:-12.960000px;}
.wsa{word-spacing:-12.852000px;}
.ws193{word-spacing:-12.798000px;}
.ws19d{word-spacing:-12.636000px;}
.wsfc{word-spacing:-12.480000px;}
.ws11{word-spacing:-12.366000px;}
.ws13{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.718000px;}
.ws8e{word-spacing:-11.400000px;}
.ws7{word-spacing:-10.896000px;}
.ws6f{word-spacing:-10.416000px;}
.ws77{word-spacing:-10.290000px;}
.ws8{word-spacing:-9.892800px;}
.ws6{word-spacing:-9.618000px;}
.wse4{word-spacing:-9.358314px;}
.ws8f{word-spacing:-8.675040px;}
.wsdf{word-spacing:-8.501296px;}
.ws6d{word-spacing:-7.896000px;}
.ws1b4{word-spacing:-7.807536px;}
.ws19e{word-spacing:-7.461234px;}
.ws146{word-spacing:-5.700000px;}
.wsec{word-spacing:-5.076000px;}
.wsed{word-spacing:-5.022000px;}
.ws196{word-spacing:-4.644000px;}
.ws18c{word-spacing:-4.560000px;}
.ws128{word-spacing:-4.500000px;}
.ws129{word-spacing:-4.440000px;}
.ws150{word-spacing:-4.380000px;}
.ws16d{word-spacing:-3.840000px;}
.wsef{word-spacing:-3.618000px;}
.ws14b{word-spacing:-3.600000px;}
.ws10b{word-spacing:-3.540000px;}
.ws139{word-spacing:-3.420000px;}
.ws19f{word-spacing:-3.402000px;}
.ws14a{word-spacing:-3.360000px;}
.wsbe{word-spacing:-3.180000px;}
.ws175{word-spacing:-3.000000px;}
.ws11b{word-spacing:-2.940000px;}
.wsd0{word-spacing:-2.880000px;}
.ws160{word-spacing:-2.820000px;}
.ws163{word-spacing:-2.760000px;}
.ws132{word-spacing:-2.700000px;}
.wsa7{word-spacing:-2.640000px;}
.ws59{word-spacing:-2.580000px;}
.ws18e{word-spacing:-2.538000px;}
.wsc8{word-spacing:-2.520000px;}
.ws21{word-spacing:-2.484000px;}
.ws1a2{word-spacing:-2.430000px;}
.ws17b{word-spacing:-2.400000px;}
.ws1a1{word-spacing:-2.376000px;}
.wsd2{word-spacing:-2.340000px;}
.wsd1{word-spacing:-2.280000px;}
.wseb{word-spacing:-2.220000px;}
.wsf8{word-spacing:-2.214000px;}
.ws137{word-spacing:-2.160000px;}
.wsae{word-spacing:-2.100000px;}
.ws58{word-spacing:-2.040000px;}
.ws1a3{word-spacing:-1.998000px;}
.wsb5{word-spacing:-1.980000px;}
.ws1a9{word-spacing:-1.890000px;}
.ws151{word-spacing:-1.860000px;}
.ws197{word-spacing:-1.836000px;}
.wscc{word-spacing:-1.800000px;}
.ws8d{word-spacing:-1.764000px;}
.wsb7{word-spacing:-1.740000px;}
.ws1a4{word-spacing:-1.728000px;}
.wscf{word-spacing:-1.680000px;}
.ws121{word-spacing:-1.620000px;}
.ws14c{word-spacing:-1.560000px;}
.ws152{word-spacing:-1.500000px;}
.ws19a{word-spacing:-1.458000px;}
.ws145{word-spacing:-1.440000px;}
.ws168{word-spacing:-1.380000px;}
.ws127{word-spacing:-1.320000px;}
.ws18f{word-spacing:-1.296000px;}
.ws172{word-spacing:-1.260000px;}
.ws13f{word-spacing:-1.242000px;}
.ws5a{word-spacing:-1.200000px;}
.ws3c{word-spacing:-1.140000px;}
.ws12d{word-spacing:-1.134000px;}
.wsff{word-spacing:-1.080000px;}
.ws2d{word-spacing:-1.026000px;}
.ws62{word-spacing:-1.020000px;}
.ws57{word-spacing:-0.960000px;}
.ws53{word-spacing:-0.900000px;}
.ws171{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.810000px;}
.ws161{word-spacing:-0.780000px;}
.ws46{word-spacing:-0.720000px;}
.ws12c{word-spacing:-0.702000px;}
.wsba{word-spacing:-0.660000px;}
.ws140{word-spacing:-0.648000px;}
.wsb0{word-spacing:-0.600000px;}
.wsf7{word-spacing:-0.594000px;}
.wsc9{word-spacing:-0.540000px;}
.ws1ac{word-spacing:-0.486000px;}
.wsda{word-spacing:-0.480000px;}
.ws40{word-spacing:-0.420000px;}
.ws134{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.300000px;}
.ws1b1{word-spacing:-0.270000px;}
.ws5f{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.216000px;}
.ws48{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.162000px;}
.wsde{word-spacing:-0.063124px;}
.ws25{word-spacing:-0.060000px;}
.ws12{word-spacing:-0.054000px;}
.ws2e{word-spacing:-0.048000px;}
.ws130{word-spacing:-0.047237px;}
.ws14{word-spacing:0.000000px;}
.ws112{word-spacing:0.054000px;}
.ws157{word-spacing:0.060000px;}
.ws4d{word-spacing:0.120000px;}
.ws111{word-spacing:0.162000px;}
.ws4f{word-spacing:0.180000px;}
.ws1c{word-spacing:0.216000px;}
.ws39{word-spacing:0.240000px;}
.ws64{word-spacing:0.300000px;}
.ws1{word-spacing:0.306000px;}
.ws131{word-spacing:0.360000px;}
.ws19{word-spacing:0.378000px;}
.ws0{word-spacing:0.408000px;}
.ws3f{word-spacing:0.420000px;}
.ws22{word-spacing:0.432000px;}
.ws147{word-spacing:0.480000px;}
.wse0{word-spacing:0.486000px;}
.ws43{word-spacing:0.540000px;}
.wsee{word-spacing:0.594000px;}
.ws4e{word-spacing:0.600000px;}
.ws89{word-spacing:0.660000px;}
.ws16{word-spacing:0.691200px;}
.ws148{word-spacing:0.720000px;}
.ws1a7{word-spacing:0.756000px;}
.wsd6{word-spacing:0.780000px;}
.wsd7{word-spacing:0.840000px;}
.ws12b{word-spacing:0.864000px;}
.ws4a{word-spacing:0.900000px;}
.ws191{word-spacing:0.918000px;}
.ws51{word-spacing:0.960000px;}
.wsbd{word-spacing:1.020000px;}
.ws12a{word-spacing:1.026000px;}
.wse3{word-spacing:1.043990px;}
.ws120{word-spacing:1.080000px;}
.ws10e{word-spacing:1.134000px;}
.ws192{word-spacing:1.188000px;}
.wse1{word-spacing:1.193135px;}
.ws17e{word-spacing:1.200000px;}
.ws3{word-spacing:1.224000px;}
.ws38{word-spacing:1.260000px;}
.ws1b5{word-spacing:1.296000px;}
.wsfe{word-spacing:1.320000px;}
.ws45{word-spacing:1.380000px;}
.ws190{word-spacing:1.404000px;}
.wsbb{word-spacing:1.440000px;}
.ws19b{word-spacing:1.458000px;}
.wsb4{word-spacing:1.500000px;}
.wsf0{word-spacing:1.512000px;}
.wse9{word-spacing:1.560000px;}
.ws1ad{word-spacing:1.566000px;}
.wsab{word-spacing:1.620000px;}
.ws102{word-spacing:1.680000px;}
.ws1b{word-spacing:1.728000px;}
.wsa9{word-spacing:1.740000px;}
.ws1a8{word-spacing:1.782000px;}
.ws60{word-spacing:1.800000px;}
.ws2{word-spacing:1.836000px;}
.ws173{word-spacing:1.860000px;}
.wse7{word-spacing:1.920000px;}
.wsb2{word-spacing:1.980000px;}
.ws108{word-spacing:2.040000px;}
.ws115{word-spacing:2.052000px;}
.ws109{word-spacing:2.100000px;}
.ws65{word-spacing:2.160000px;}
.ws1e{word-spacing:2.214000px;}
.ws104{word-spacing:2.220000px;}
.ws18{word-spacing:2.268000px;}
.ws33{word-spacing:2.280000px;}
.wsc7{word-spacing:2.340000px;}
.wsf2{word-spacing:2.376000px;}
.ws101{word-spacing:2.400000px;}
.ws8c{word-spacing:2.520000px;}
.ws1a5{word-spacing:2.538000px;}
.wsd3{word-spacing:2.580000px;}
.ws1b2{word-spacing:2.592000px;}
.wsea{word-spacing:2.640000px;}
.ws10d{word-spacing:2.646000px;}
.ws10c{word-spacing:2.700000px;}
.wsfa{word-spacing:2.754000px;}
.wsbf{word-spacing:2.760000px;}
.ws20{word-spacing:2.808000px;}
.wsd8{word-spacing:2.820000px;}
.ws34{word-spacing:2.880000px;}
.ws1a0{word-spacing:2.916000px;}
.ws5d{word-spacing:2.940000px;}
.wsf9{word-spacing:2.970000px;}
.ws52{word-spacing:3.000000px;}
.ws107{word-spacing:3.060000px;}
.ws158{word-spacing:3.120000px;}
.wsaf{word-spacing:3.180000px;}
.ws47{word-spacing:3.240000px;}
.wsc2{word-spacing:3.300000px;}
.wsf1{word-spacing:3.348000px;}
.wsa8{word-spacing:3.360000px;}
.wsc1{word-spacing:3.420000px;}
.ws37{word-spacing:3.540000px;}
.ws42{word-spacing:3.600000px;}
.ws19c{word-spacing:3.618000px;}
.ws156{word-spacing:3.660000px;}
.ws15a{word-spacing:3.720000px;}
.wsca{word-spacing:3.780000px;}
.ws1b7{word-spacing:3.834000px;}
.ws63{word-spacing:3.840000px;}
.ws159{word-spacing:3.900000px;}
.ws133{word-spacing:3.960000px;}
.ws164{word-spacing:4.020000px;}
.ws1aa{word-spacing:4.050000px;}
.ws56{word-spacing:4.080000px;}
.ws1f{word-spacing:4.104000px;}
.wscd{word-spacing:4.140000px;}
.ws122{word-spacing:4.200000px;}
.ws1ae{word-spacing:4.212000px;}
.ws155{word-spacing:4.260000px;}
.ws15c{word-spacing:4.320000px;}
.wsbc{word-spacing:4.380000px;}
.ws4b{word-spacing:4.440000px;}
.ws8b{word-spacing:4.482000px;}
.ws11f{word-spacing:4.500000px;}
.ws8a{word-spacing:4.536000px;}
.ws11e{word-spacing:4.560000px;}
.ws110{word-spacing:4.590000px;}
.wsd4{word-spacing:4.620000px;}
.ws10f{word-spacing:4.644000px;}
.wsce{word-spacing:4.680000px;}
.ws125{word-spacing:4.740000px;}
.ws3b{word-spacing:4.800000px;}
.wsb6{word-spacing:4.860000px;}
.ws199{word-spacing:4.914000px;}
.ws29{word-spacing:4.920000px;}
.ws149{word-spacing:4.980000px;}
.ws1b0{word-spacing:5.022000px;}
.wsc0{word-spacing:5.040000px;}
.ws174{word-spacing:5.100000px;}
.ws1b3{word-spacing:5.130000px;}
.ws15b{word-spacing:5.160000px;}
.ws11a{word-spacing:5.220000px;}
.ws55{word-spacing:5.280000px;}
.ws105{word-spacing:5.340000px;}
.ws170{word-spacing:5.400000px;}
.ws4c{word-spacing:5.460000px;}
.ws1af{word-spacing:5.508000px;}
.ws3a{word-spacing:5.520000px;}
.ws2c{word-spacing:5.580000px;}
.ws49{word-spacing:5.640000px;}
.ws119{word-spacing:5.700000px;}
.ws32{word-spacing:5.820000px;}
.wse8{word-spacing:5.880000px;}
.ws5b{word-spacing:5.940000px;}
.ws41{word-spacing:6.000000px;}
.ws5e{word-spacing:6.060000px;}
.ws66{word-spacing:6.120000px;}
.wsd5{word-spacing:6.180000px;}
.ws16a{word-spacing:6.240000px;}
.ws17a{word-spacing:6.300000px;}
.wsfd{word-spacing:6.360000px;}
.ws36{word-spacing:6.420000px;}
.ws1a6{word-spacing:6.426000px;}
.wsc3{word-spacing:6.480000px;}
.wsa6{word-spacing:6.540000px;}
.wscb{word-spacing:6.600000px;}
.wsaa{word-spacing:6.660000px;}
.ws126{word-spacing:6.720000px;}
.ws5c{word-spacing:6.780000px;}
.ws16e{word-spacing:6.840000px;}
.ws162{word-spacing:6.900000px;}
.ws1a{word-spacing:6.912000px;}
.ws31{word-spacing:6.960000px;}
.ws136{word-spacing:7.020000px;}
.ws135{word-spacing:7.080000px;}
.wsb9{word-spacing:7.140000px;}
.ws54{word-spacing:7.200000px;}
.ws27{word-spacing:7.260000px;}
.wse6{word-spacing:7.320000px;}
.ws113{word-spacing:7.344000px;}
.ws14f{word-spacing:7.380000px;}
.ws44{word-spacing:7.440000px;}
.ws114{word-spacing:7.452000px;}
.ws26{word-spacing:7.500000px;}
.ws15d{word-spacing:7.560000px;}
.ws35{word-spacing:7.680000px;}
.ws67{word-spacing:7.740000px;}
.ws178{word-spacing:7.800000px;}
.ws176{word-spacing:7.860000px;}
.ws198{word-spacing:7.884000px;}
.ws138{word-spacing:7.920000px;}
.ws124{word-spacing:7.980000px;}
.ws144{word-spacing:8.160000px;}
.ws103{word-spacing:8.220000px;}
.ws100{word-spacing:8.280000px;}
.ws169{word-spacing:8.340000px;}
.ws16c{word-spacing:8.400000px;}
.ws2b{word-spacing:8.460000px;}
.ws16b{word-spacing:8.520000px;}
.ws1ab{word-spacing:8.586000px;}
.ws3e{word-spacing:8.640000px;}
.ws3d{word-spacing:8.700000px;}
.ws2a{word-spacing:8.820000px;}
.ws106{word-spacing:8.940000px;}
.ws10a{word-spacing:9.000000px;}
.ws13c{word-spacing:9.060000px;}
.ws165{word-spacing:9.120000px;}
.ws184{word-spacing:9.240000px;}
.ws13b{word-spacing:9.300000px;}
.ws13a{word-spacing:9.360000px;}
.ws186{word-spacing:9.420000px;}
.ws13d{word-spacing:9.480000px;}
.ws185{word-spacing:9.540000px;}
.wsf4{word-spacing:9.612000px;}
.ws15f{word-spacing:9.660000px;}
.wsf3{word-spacing:9.720000px;}
.ws177{word-spacing:9.900000px;}
.ws195{word-spacing:10.152000px;}
.ws24{word-spacing:10.206000px;}
.ws23{word-spacing:10.260000px;}
.ws187{word-spacing:10.380000px;}
.ws188{word-spacing:10.440000px;}
.ws183{word-spacing:10.620000px;}
.ws182{word-spacing:10.740000px;}
.ws153{word-spacing:10.920000px;}
.ws154{word-spacing:11.040000px;}
.wsb1{word-spacing:11.220000px;}
.ws11d{word-spacing:11.340000px;}
.ws11c{word-spacing:11.460000px;}
.ws180{word-spacing:12.660000px;}
.ws181{word-spacing:12.780000px;}
.ws17f{word-spacing:12.840000px;}
.ws28{word-spacing:12.900000px;}
.ws18a{word-spacing:13.140000px;}
.ws189{word-spacing:13.260000px;}
.ws123{word-spacing:13.380000px;}
.wsb8{word-spacing:14.460000px;}
.ws1b6{word-spacing:15.174000px;}
.wsb3{word-spacing:15.420000px;}
.wsf6{word-spacing:15.876000px;}
.wsf5{word-spacing:15.984000px;}
.wsdb{word-spacing:16.500000px;}
.wsd9{word-spacing:21.720000px;}
.ws1b8{word-spacing:24.786000px;}
.ws6a{word-spacing:32.844000px;}
.ws4{word-spacing:33.650535px;}
.ws5{word-spacing:33.651135px;}
.ws68{word-spacing:73.752000px;}
.wsa1{word-spacing:94.332000px;}
.wsa2{word-spacing:109.536000px;}
.ws71{word-spacing:116.424000px;}
.ws72{word-spacing:116.550000px;}
.wsa5{word-spacing:126.294000px;}
.ws95{word-spacing:141.078000px;}
.ws9b{word-spacing:141.624000px;}
.wsa3{word-spacing:142.758000px;}
.ws99{word-spacing:147.163800px;}
.ws80{word-spacing:152.754000px;}
.ws98{word-spacing:155.610000px;}
.ws9d{word-spacing:159.726000px;}
.wsa0{word-spacing:161.826000px;}
.ws7e{word-spacing:164.312400px;}
.ws7f{word-spacing:164.556000px;}
.ws69{word-spacing:176.072400px;}
.ws9c{word-spacing:176.878800px;}
.ws9f{word-spacing:178.836000px;}
.ws91{word-spacing:180.222000px;}
.ws92{word-spacing:191.688000px;}
.ws78{word-spacing:192.822000px;}
.ws9e{word-spacing:193.956000px;}
.ws6b{word-spacing:198.996000px;}
.ws83{word-spacing:204.624000px;}
.ws86{word-spacing:205.548000px;}
.ws79{word-spacing:208.656000px;}
.ws6c{word-spacing:208.782000px;}
.ws90{word-spacing:214.746000px;}
.ws82{word-spacing:216.350400px;}
.ws73{word-spacing:216.556200px;}
.ws6e{word-spacing:220.584000px;}
.ws7a{word-spacing:226.262400px;}
.ws97{word-spacing:227.094000px;}
.ws94{word-spacing:246.107400px;}
.ws7d{word-spacing:255.822000px;}
.ws85{word-spacing:260.950200px;}
.ws84{word-spacing:261.496200px;}
.ws7b{word-spacing:265.171200px;}
.ws70{word-spacing:273.000000px;}
.ws81{word-spacing:281.064000px;}
.ws88{word-spacing:285.600000px;}
.ws87{word-spacing:311.136000px;}
.ws76{word-spacing:316.453200px;}
.ws74{word-spacing:325.920000px;}
.ws7c{word-spacing:331.380000px;}
.wsa4{word-spacing:355.525800px;}
.ws96{word-spacing:425.334000px;}
.ws93{word-spacing:444.305400px;}
.ws9a{word-spacing:460.408200px;}
.wsdd{word-spacing:1611.103643px;}
.wsdc{word-spacing:1744.294439px;}
.wse2{word-spacing:2482.222561px;}
._46{margin-left:-209.916000px;}
._1f{margin-left:-83.580000px;}
._b{margin-left:-11.136000px;}
._62{margin-left:-9.714000px;}
._67{margin-left:-8.656200px;}
._a{margin-left:-6.408000px;}
._c{margin-left:-4.944000px;}
._3{margin-left:-3.468000px;}
._0{margin-left:-1.805400px;}
._4{width:1.009800px;}
._1{width:2.050200px;}
._2{width:3.641400px;}
._8{width:5.514000px;}
._7{width:7.506000px;}
._d{width:8.633400px;}
._6{width:9.905400px;}
._e{width:11.220000px;}
._9{width:12.245400px;}
._60{width:13.349400px;}
._68{width:14.572800px;}
._61{width:15.822000px;}
._65{width:16.880400px;}
._66{width:17.933400px;}
._5{width:36.369600px;}
._64{width:42.226800px;}
._63{width:43.891200px;}
._33{width:82.110000px;}
._30{width:93.912000px;}
._12{width:96.852000px;}
._4a{width:102.900000px;}
._24{width:122.513400px;}
._17{width:126.840000px;}
._16{width:134.315400px;}
._2e{width:135.633600px;}
._54{width:137.111400px;}
._1c{width:140.797800px;}
._26{width:142.614000px;}
._14{width:147.435600px;}
._51{width:158.760000px;}
._53{width:163.842000px;}
._50{width:165.879000px;}
._1a{width:168.774600px;}
._3e{width:173.940000px;}
._52{width:178.920000px;}
._10{width:181.440000px;}
._41{width:185.677200px;}
._3b{width:187.437000px;}
._2c{width:188.832000px;}
._4f{width:191.016000px;}
._55{width:192.822000px;}
._28{width:196.299600px;}
._5e{width:201.516000px;}
._43{width:202.860000px;}
._4d{width:204.624000px;}
._19{width:206.093400px;}
._37{width:207.125400px;}
._39{width:208.796400px;}
._1b{width:210.378000px;}
._3d{width:217.895400px;}
._35{width:230.193000px;}
._5c{width:241.752000px;}
._4c{width:244.776000px;}
._4b{width:259.854000px;}
._22{width:260.960400px;}
._31{width:269.220600px;}
._5f{width:288.753000px;}
._2a{width:292.376400px;}
._11{width:299.460000px;}
._5d{width:303.202800px;}
._23{width:304.373400px;}
._2d{width:306.768000px;}
._5b{width:314.853000px;}
._58{width:322.356000px;}
._40{width:324.534000px;}
._1e{width:328.902000px;}
._5a{width:330.243600px;}
._42{width:335.370000px;}
._56{width:339.213000px;}
._29{width:341.082000px;}
._3f{width:347.046000px;}
._57{width:355.894200px;}
._45{width:357.798000px;}
._13{width:364.811400px;}
._20{width:367.458000px;}
._44{width:368.592000px;}
._f{width:371.010000px;}
._4e{width:375.645000px;}
._48{width:378.486000px;}
._21{width:382.914000px;}
._49{width:384.046800px;}
._47{width:386.778000px;}
._27{width:390.095400px;}
._15{width:399.545400px;}
._18{width:404.837400px;}
._2f{width:419.369400px;}
._2b{width:423.149400px;}
._25{width:427.517400px;}
._59{width:432.936000px;}
._1d{width:437.976000px;}
._34{width:449.904000px;}
._36{width:453.642000px;}
._3c{width:471.996000px;}
._3a{width:484.512000px;}
._32{width:507.780000px;}
._38{width:510.552000px;}
.fc6{color:rgb(90,49,20);}
.fc7{color:rgb(88,97,44);}
.fc5{color:rgb(20,17,19);}
.fc4{color:rgb(46,49,146);}
.fc3{color:rgb(29,100,52);}
.fc1{color:rgb(81,126,140);}
.fc8{color:rgb(92,24,28);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:24.463800px;}
.fs11{font-size:26.930400px;}
.fsb{font-size:30.580200px;}
.fs16{font-size:31.482000px;}
.fsd{font-size:31.561800px;}
.fs10{font-size:33.663000px;}
.fs9{font-size:34.980000px;}
.fs12{font-size:35.092200px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs15{font-size:47.236800px;}
.fs0{font-size:48.000000px;}
.fs13{font-size:51.623400px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs14{font-size:60.733200px;}
.fsf{font-size:61.411200px;}
.fsa{font-size:63.123600px;}
.fs2{font-size:66.000000px;}
.fse{font-size:70.184400px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y20b{bottom:-0.123600px;}
.y0{bottom:0.000000px;}
.y185{bottom:2.572650px;}
.y246{bottom:4.857900px;}
.y23c{bottom:4.951950px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y2d5{bottom:112.790850px;}
.y2eb{bottom:113.024850px;}
.y99{bottom:113.078700px;}
.y6d{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.y225{bottom:120.464850px;}
.y237{bottom:120.469350px;}
.y22c{bottom:120.473850px;}
.y174{bottom:120.478350px;}
.y213{bottom:120.500850px;}
.ydd{bottom:120.526350px;}
.yd{bottom:131.601450px;}
.y2a7{bottom:133.796850px;}
.y2d4{bottom:133.808850px;}
.y278{bottom:134.006700px;}
.y2ea{bottom:134.030850px;}
.y98{bottom:134.078700px;}
.y6c{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.y224{bottom:140.269350px;}
.y236{bottom:140.273850px;}
.y22b{bottom:140.278350px;}
.y173{bottom:140.282850px;}
.y184{bottom:141.256500px;}
.y20a{bottom:141.313500px;}
.ydc{bottom:142.660350px;}
.yc{bottom:145.997850px;}
.y1f0{bottom:152.642845px;}
.y2a6{bottom:154.802850px;}
.y2d3{bottom:154.814850px;}
.y277{bottom:155.012700px;}
.y2e9{bottom:155.036850px;}
.y9a{bottom:155.078700px;}
.y6b{bottom:155.078850px;}
.y19d{bottom:155.547586px;}
.y29{bottom:159.212550px;}
.y223{bottom:160.073850px;}
.y235{bottom:160.078350px;}
.y22a{bottom:160.082850px;}
.y172{bottom:160.087350px;}
.yb{bottom:160.397850px;}
.ydb{bottom:160.741350px;}
.y257{bottom:160.937100px;}
.y1b4{bottom:167.287557px;}
.y97{bottom:169.440900px;}
.y244{bottom:171.959250px;}
.y1dc{bottom:174.135892px;}
.y2a5{bottom:175.808850px;}
.y2d2{bottom:175.820850px;}
.y276{bottom:176.018700px;}
.y2e8{bottom:176.042850px;}
.y215{bottom:176.078700px;}
.y6a{bottom:176.078850px;}
.y190{bottom:179.027528px;}
.y222{bottom:179.878350px;}
.y234{bottom:179.882850px;}
.y229{bottom:179.887350px;}
.y171{bottom:179.891850px;}
.y28{bottom:180.212550px;}
.y256{bottom:190.441050px;}
.y18a{bottom:190.767500px;}
.y1d7{bottom:192.145597px;}
.y2a4{bottom:196.814850px;}
.y2d1{bottom:196.826850px;}
.yda{bottom:196.903350px;}
.y275{bottom:197.024700px;}
.y2e7{bottom:197.048850px;}
.y214{bottom:197.078700px;}
.y69{bottom:197.078850px;}
.y221{bottom:199.682850px;}
.y233{bottom:199.687350px;}
.y228{bottom:199.691850px;}
.y170{bottom:199.696350px;}
.y27{bottom:201.212550px;}
.ycd{bottom:202.377750px;}
.y1c6{bottom:202.490639px;}
.y37{bottom:203.447400px;}
.y1f1{bottom:211.317003px;}
.y1bd{bottom:214.230611px;}
.yd9{bottom:214.984350px;}
.y2a3{bottom:217.820850px;}
.y2d0{bottom:217.832850px;}
.y274{bottom:218.030700px;}
.y2e6{bottom:218.054850px;}
.y96{bottom:218.078700px;}
.y68{bottom:218.078850px;}
.y220{bottom:219.487350px;}
.y232{bottom:219.491850px;}
.y227{bottom:219.496350px;}
.y16f{bottom:219.500850px;}
.ycc{bottom:220.458750px;}
.y36{bottom:221.442900px;}
.y26{bottom:222.212550px;}
.y199{bottom:225.962166px;}
.yd8{bottom:233.065350px;}
.y1c8{bottom:237.693722px;}
.ycb{bottom:238.539750px;}
.y2a2{bottom:238.826850px;}
.y2cf{bottom:238.838850px;}
.y273{bottom:239.036700px;}
.y2e5{bottom:239.060850px;}
.y95{bottom:239.078700px;}
.y67{bottom:239.078850px;}
.y21f{bottom:239.291850px;}
.y231{bottom:239.296350px;}
.y226{bottom:239.300850px;}
.y35{bottom:239.438400px;}
.y25{bottom:243.212550px;}
.y1f2{bottom:246.514480px;}
.y108{bottom:247.438665px;}
.y1dd{bottom:248.241620px;}
.y1b9{bottom:249.425277px;}
.y133{bottom:249.672545px;}
.yca{bottom:256.620750px;}
.y34{bottom:257.433900px;}
.y136{bottom:258.993252px;}
.y21e{bottom:259.096350px;}
.y230{bottom:259.100850px;}
.y110{bottom:259.219687px;}
.y2a1{bottom:259.832850px;}
.y2ce{bottom:259.844850px;}
.y272{bottom:260.042700px;}
.y2e4{bottom:260.066850px;}
.y94{bottom:260.078700px;}
.y66{bottom:260.078850px;}
.y1b8{bottom:261.156833px;}
.y144{bottom:261.445343px;}
.y24{bottom:264.212550px;}
.yd7{bottom:269.227350px;}
.y129{bottom:271.008354px;}
.y1bf{bottom:272.896804px;}
.yc9{bottom:274.701750px;}
.y33{bottom:275.429400px;}
.y21d{bottom:278.900850px;}
.y16c{bottom:279.553974px;}
.y2a0{bottom:280.838850px;}
.y2cd{bottom:280.850850px;}
.y271{bottom:281.048700px;}
.y2e3{bottom:281.072850px;}
.y93{bottom:281.078700px;}
.y65{bottom:281.078850px;}
.y121{bottom:282.781731px;}
.y1b0{bottom:284.619944px;}
.y23{bottom:285.212550px;}
.y16d{bottom:285.440249px;}
.yd6{bottom:287.308350px;}
.y1ef{bottom:287.589900px;}
.yc8{bottom:292.782750px;}
.y32{bottom:293.424900px;}
.yf6{bottom:294.555108px;}
.y1c7{bottom:296.368331px;}
.y29f{bottom:301.844850px;}
.y2cc{bottom:301.856850px;}
.y270{bottom:302.054700px;}
.y92{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.yd5{bottom:305.389350px;}
.y22{bottom:306.212550px;}
.ye3{bottom:306.305550px;}
.y18e{bottom:308.108302px;}
.yc7{bottom:310.863750px;}
.y31{bottom:311.420400px;}
.ye2{bottom:316.102950px;}
.yeb{bottom:318.094217px;}
.y1c4{bottom:319.831442px;}
.y146{bottom:320.617159px;}
.y14e{bottom:320.984116px;}
.y29e{bottom:322.850850px;}
.y2cb{bottom:322.862850px;}
.y26f{bottom:323.060700px;}
.y91{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.yd4{bottom:323.470350px;}
.yc6{bottom:328.944750px;}
.y30{bottom:329.415900px;}
.y128{bottom:329.890529px;}
.y1a9{bottom:331.562997px;}
.y24c{bottom:336.470700px;}
.y2e2{bottom:336.513600px;}
.y21{bottom:338.804250px;}
.y120{bottom:341.656261px;}
.y1bb{bottom:343.311384px;}
.y29d{bottom:343.856850px;}
.y2ca{bottom:343.868850px;}
.y26e{bottom:344.066700px;}
.y90{bottom:344.078700px;}
.y62{bottom:344.078850px;}
.yc5{bottom:347.025750px;}
.y16a{bottom:348.737439px;}
.y1f3{bottom:349.194257px;}
.y11d{bottom:353.429638px;}
.y13a{bottom:354.188014px;}
.y194{bottom:355.051355px;}
.ye1{bottom:358.441050px;}
.yd3{bottom:359.632350px;}
.y16b{bottom:361.985505px;}
.y2f{bottom:364.421400px;}
.y29c{bottom:364.862850px;}
.y2c9{bottom:364.874850px;}
.y26d{bottom:365.072700px;}
.y8f{bottom:365.078700px;}
.y61{bottom:365.078850px;}
.yc4{bottom:365.106750px;}
.y102{bottom:365.203015px;}
.y17f{bottom:366.781731px;}
.y2e1{bottom:368.811000px;}
.yec{bottom:376.968747px;}
.yd2{bottom:377.713350px;}
.y1e9{bottom:377.797042px;}
.y189{bottom:378.522882px;}
.y2e{bottom:382.421400px;}
.yc3{bottom:383.187750px;}
.y169{bottom:385.530608px;}
.y29b{bottom:385.868850px;}
.y2c8{bottom:385.880850px;}
.y8e{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.y105{bottom:388.749769px;}
.y1e7{bottom:388.791378px;}
.y18c{bottom:390.254437px;}
.y149{bottom:394.106414px;}
.yd1{bottom:395.794350px;}
.y1d4{bottom:398.472857px;}
.y2d{bottom:400.421400px;}
.y126{bottom:400.546081px;}
.yc2{bottom:401.268750px;}
.y19f{bottom:401.977577px;}
.y29a{bottom:406.874850px;}
.y2c7{bottom:406.886850px;}
.y8d{bottom:407.078700px;}
.y5f{bottom:407.078850px;}
.y168{bottom:409.083601px;}
.y20{bottom:410.823450px;}
.y20c{bottom:411.842400px;}
.yf4{bottom:412.311813px;}
.y1c5{bottom:413.717549px;}
.yd0{bottom:413.875350px;}
.y167{bottom:417.913014px;}
.y2c{bottom:418.421400px;}
.yc1{bottom:419.349750px;}
.y26c{bottom:421.440900px;}
.y1f4{bottom:422.536955px;}
.y119{bottom:424.085190px;}
.y181{bottom:425.456340px;}
.y299{bottom:427.880850px;}
.y2c6{bottom:427.892850px;}
.y2e0{bottom:428.012850px;}
.y8c{bottom:428.078700px;}
.y5e{bottom:428.078850px;}
.y1e3{bottom:430.573894px;}
.y1f{bottom:430.627950px;}
.ycf{bottom:432.250350px;}
.y13d{bottom:434.031741px;}
.yf1{bottom:435.850922px;}
.y1ca{bottom:437.180660px;}
.yc0{bottom:437.430750px;}
.y1e8{bottom:442.005848px;}
.y166{bottom:444.409146px;}
.y11c{bottom:447.639589px;}
.y298{bottom:448.886850px;}
.y2c5{bottom:448.898850px;}
.y1af{bottom:448.912215px;}
.y2df{bottom:449.018850px;}
.y8b{bottom:449.078700px;}
.y5d{bottom:449.078850px;}
.y21c{bottom:449.403300px;}
.ybf{bottom:455.511750px;}
.y1f5{bottom:458.524006px;}
.y104{bottom:459.405321px;}
.y18b{bottom:460.660602px;}
.yce{bottom:461.607300px;}
.y14b{bottom:462.287025px;}
.y16e{bottom:462.708000px;}
.y21b{bottom:469.207800px;}
.y297{bottom:469.892850px;}
.y2c4{bottom:469.904850px;}
.y2de{bottom:470.024850px;}
.y26b{bottom:470.072700px;}
.y8a{bottom:470.078700px;}
.y5c{bottom:470.078850px;}
.yff{bottom:471.186343px;}
.y1e{bottom:471.629250px;}
.y1b2{bottom:472.383742px;}
.ybe{bottom:473.592750px;}
.y1f7{bottom:481.211114px;}
.y118{bottom:482.959720px;}
.y138{bottom:483.216211px;}
.y193{bottom:484.132129px;}
.y21a{bottom:489.012300px;}
.y1f6{bottom:490.010483px;}
.y296{bottom:490.898850px;}
.y2c3{bottom:490.910850px;}
.y2dd{bottom:491.030850px;}
.y89{bottom:491.078700px;}
.y5b{bottom:491.078850px;}
.y1d{bottom:491.433750px;}
.ybd{bottom:491.673750px;}
.y163{bottom:494.458270px;}
.y10b{bottom:494.733097px;}
.y186{bottom:495.872100px;}
.y17a{bottom:499.404013px;}
.ye4{bottom:506.498829px;}
.y1a5{bottom:507.578408px;}
.y219{bottom:508.816800px;}
.ybc{bottom:509.754750px;}
.y164{bottom:510.649473px;}
.y1c{bottom:511.238250px;}
.y295{bottom:511.904850px;}
.y2c2{bottom:511.916850px;}
.y2dc{bottom:512.036850px;}
.y88{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.y26a{bottom:517.529250px;}
.y10f{bottom:518.287496px;}
.y1b7{bottom:519.326795px;}
.y1ed{bottom:525.032272px;}
.y162{bottom:526.840677px;}
.ybb{bottom:527.835750px;}
.y1f8{bottom:528.146931px;}
.y218{bottom:528.621300px;}
.y113{bottom:530.060873px;}
.y143{bottom:530.076214px;}
.y1e5{bottom:530.600132px;}
.y1b{bottom:531.042750px;}
.y1b1{bottom:531.058351px;}
.y294{bottom:532.910850px;}
.y2c1{bottom:532.922850px;}
.y2db{bottom:533.042850px;}
.y87{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.y165{bottom:535.070416px;}
.y12b{bottom:541.857186px;}
.y1ae{bottom:542.789906px;}
.y1d5{bottom:543.809493px;}
.y14a{bottom:544.057276px;}
.yba{bottom:545.916750px;}
.y255{bottom:547.441050px;}
.y217{bottom:548.425800px;}
.y1a{bottom:550.847250px;}
.yfa{bottom:553.615272px;}
.y293{bottom:553.916850px;}
.y2c0{bottom:553.928850px;}
.y2da{bottom:554.048850px;}
.y269{bottom:554.072700px;}
.y86{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.y1a4{bottom:554.521462px;}
.y1df{bottom:554.541257px;}
.y13e{bottom:557.677903px;}
.y161{bottom:562.166221px;}
.yb9{bottom:563.997750px;}
.yee{bottom:565.381004px;}
.y1f9{bottom:565.555216px;}
.y1be{bottom:566.269849px;}
.y216{bottom:568.230300px;}
.y19{bottom:570.651750px;}
.y1d1{bottom:572.052750px;}
.y160{bottom:573.938773px;}
.y292{bottom:574.922850px;}
.y2bf{bottom:574.934850px;}
.y2d9{bottom:575.054850px;}
.y268{bottom:575.072700px;}
.y85{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y111{bottom:577.169671px;}
.y1c2{bottom:578.001404px;}
.y131{bottom:580.967440px;}
.yb8{bottom:582.078750px;}
.y115{bottom:588.935403px;}
.y252{bottom:589.441050px;}
.y1bc{bottom:589.741376px;}
.y18{bottom:590.456250px;}
.y291{bottom:595.928850px;}
.y2be{bottom:595.940850px;}
.y2d8{bottom:596.060850px;}
.y267{bottom:596.072700px;}
.y84{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.yb7{bottom:600.159750px;}
.y106{bottom:600.716425px;}
.y1a6{bottom:601.456100px;}
.y1fa{bottom:607.358799px;}
.y15f{bottom:609.264317px;}
.y17{bottom:610.260750px;}
.y1ea{bottom:612.010731px;}
.y123{bottom:612.505093px;}
.y19c{bottom:613.204487px;}
.y1eb{bottom:615.828115px;}
.y290{bottom:616.934850px;}
.y2bd{bottom:616.946850px;}
.y2d7{bottom:617.066850px;}
.y83{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.yb6{bottom:618.240750px;}
.ye9{bottom:624.263179px;}
.y1b3{bottom:624.936042px;}
.y16{bottom:630.065250px;}
.y1fb{bottom:632.300581px;}
.y137{bottom:635.699077px;}
.y127{bottom:636.059492px;}
.yb5{bottom:636.321750px;}
.y187{bottom:636.692845px;}
.y28f{bottom:637.940850px;}
.y2bc{bottom:637.952850px;}
.y2d6{bottom:638.072850px;}
.y82{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.y175{bottom:640.529250px;}
.y179{bottom:640.542304px;}
.y266{bottom:643.529250px;}
.y1fc{bottom:645.504021px;}
.yf2{bottom:647.817579px;}
.y1c0{bottom:648.407569px;}
.y15{bottom:649.869750px;}
.yb4{bottom:654.402750px;}
.y15e{bottom:656.370304px;}
.y28e{bottom:658.946850px;}
.y2bb{bottom:658.958850px;}
.y81{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.yfc{bottom:659.598601px;}
.y1ce{bottom:660.139124px;}
.y14{bottom:669.674250px;}
.ye8{bottom:671.364333px;}
.y18f{bottom:671.895927px;}
.yb3{bottom:672.483750px;}
.y1fe{bottom:677.771299px;}
.y28d{bottom:679.952850px;}
.y2ba{bottom:679.964850px;}
.y265{bottom:680.060700px;}
.y80{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.yfe{bottom:683.145355px;}
.y1c1{bottom:683.610651px;}
.y14f{bottom:685.366301px;}
.y13{bottom:689.478750px;}
.yb2{bottom:690.564750px;}
.y22f{bottom:693.509100px;}
.y117{bottom:694.918732px;}
.y19a{bottom:695.350622px;}
.y15d{bottom:700.525262px;}
.y28c{bottom:700.958850px;}
.y2b9{bottom:700.970850px;}
.y264{bottom:701.066700px;}
.y51{bottom:701.078850px;}
.y1ec{bottom:702.328560px;}
.y1fd{bottom:705.494137px;}
.y100{bottom:706.699754px;}
.y1c9{bottom:707.082178px;}
.yb1{bottom:708.645750px;}
.y12{bottom:709.283250px;}
.y148{bottom:711.389668px;}
.y22e{bottom:714.513600px;}
.y7f{bottom:715.440900px;}
.y147{bottom:717.707444px;}
.yf7{bottom:718.480776px;}
.y19b{bottom:718.822149px;}
.y28b{bottom:721.964850px;}
.y2b8{bottom:721.976850px;}
.y263{bottom:722.072700px;}
.y50{bottom:722.078850px;}
.y1de{bottom:723.973869px;}
.yb0{bottom:726.726750px;}
.y15c{bottom:727.021393px;}
.y1ff{bottom:727.646088px;}
.y250{bottom:729.073650px;}
.y11{bottom:729.087750px;}
.y12d{bottom:730.269443px;}
.y1a7{bottom:730.545289px;}
.y12f{bottom:731.933550px;}
.y178{bottom:733.549566px;}
.y251{bottom:736.441050px;}
.y1da{bottom:739.593501px;}
.y122{bottom:742.035175px;}
.y197{bottom:742.293676px;}
.y28a{bottom:742.970850px;}
.y2b7{bottom:742.982850px;}
.y262{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.yaf{bottom:744.807750px;}
.y22d{bottom:746.811150px;}
.y24f{bottom:748.878150px;}
.yfb{bottom:753.808552px;}
.y183{bottom:754.032467px;}
.y10{bottom:760.185300px;}
.yae{bottom:762.888750px;}
.y289{bottom:763.976850px;}
.y2b6{bottom:763.988850px;}
.y7e{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.y13c{bottom:765.320521px;}
.yef{bottom:765.574284px;}
.y1c3{bottom:765.756787px;}
.y145{bottom:765.882783px;}
.y24e{bottom:768.682650px;}
.y261{bottom:769.529250px;}
.yf3{bottom:777.355306px;}
.y192{bottom:777.505174px;}
.yad{bottom:780.969750px;}
.y212{bottom:783.304429px;}
.y288{bottom:784.982850px;}
.y2b5{bottom:784.994850px;}
.y7d{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.y103{bottom:789.128683px;}
.y17c{bottom:789.235549px;}
.y132{bottom:789.435712px;}
.y23b{bottom:789.438000px;}
.y24d{bottom:792.618150px;}
.y211{bottom:793.832089px;}
.yac{bottom:799.050750px;}
.y12c{bottom:800.917350px;}
.y1cc{bottom:800.959869px;}
.y15b{bottom:804.789668px;}
.y287{bottom:805.988850px;}
.y2b4{bottom:806.000850px;}
.y260{bottom:806.054700px;}
.y7c{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.y11a{bottom:812.683082px;}
.y18d{bottom:812.708256px;}
.y1e2{bottom:813.854079px;}
.y200{bottom:815.841560px;}
.yab{bottom:817.131750px;}
.y1ac{bottom:824.422980px;}
.yf5{bottom:824.464104px;}
.y286{bottom:826.994850px;}
.y2b3{bottom:827.006850px;}
.y25f{bottom:827.060700px;}
.y7b{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yaa{bottom:835.212750px;}
.y240{bottom:835.970398px;}
.y1a3{bottom:836.154536px;}
.y134{bottom:836.167686px;}
.y10e{bottom:836.229836px;}
.y249{bottom:836.815329px;}
.y157{bottom:837.937449px;}
.y1d2{bottom:838.643512px;}
.ya{bottom:839.466750px;}
.y182{bottom:847.910158px;}
.y285{bottom:848.000850px;}
.y112{bottom:848.010858px;}
.y2b2{bottom:848.012850px;}
.y25e{bottom:848.066700px;}
.y7a{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.ya9{bottom:853.293750px;}
.y159{bottom:855.083397px;}
.y9{bottom:857.466750px;}
.y1d6{bottom:857.710235px;}
.y19e{bottom:859.634478px;}
.y11b{bottom:859.791880px;}
.y210{bottom:863.209369px;}
.y14d{bottom:864.208911px;}
.y284{bottom:869.006850px;}
.y2b1{bottom:869.018850px;}
.y25d{bottom:869.072700px;}
.y79{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y1aa{bottom:871.366034px;}
.ya8{bottom:871.374750px;}
.ye5{bottom:871.549967px;}
.y20f{bottom:873.737029px;}
.y8{bottom:875.466750px;}
.y23a{bottom:877.561901px;}
.y24b{bottom:878.397978px;}
.y201{bottom:882.402690px;}
.ye0{bottom:882.513600px;}
.y1ad{bottom:883.097589px;}
.yf0{bottom:883.330989px;}
.y158{bottom:887.102843px;}
.ya7{bottom:889.455750px;}
.y283{bottom:890.012850px;}
.y2b0{bottom:890.024850px;}
.y78{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.y202{bottom:894.430542px;}
.y188{bottom:894.854392px;}
.yed{bottom:895.104366px;}
.y15a{bottom:903.657007px;}
.y1ab{bottom:906.569116px;}
.y114{bottom:906.885388px;}
.ya6{bottom:907.536750px;}
.y135{bottom:907.748765px;}
.y282{bottom:911.018850px;}
.y2af{bottom:911.030850px;}
.y77{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.ydf{bottom:914.811000px;}
.y25c{bottom:916.529250px;}
.y1a2{bottom:918.300671px;}
.y10d{bottom:918.666410px;}
.y241{bottom:919.135695px;}
.y248{bottom:919.812851px;}
.y20e{bottom:923.962740px;}
.ya5{bottom:925.617750px;}
.y203{bottom:927.136472px;}
.y191{bottom:930.057474px;}
.yf8{bottom:930.439787px;}
.y281{bottom:932.024850px;}
.y2ae{bottom:932.036850px;}
.y76{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y20d{bottom:934.490400px;}
.y155{bottom:938.335535px;}
.y1e1{bottom:941.288732px;}
.y130{bottom:941.539388px;}
.y1cf{bottom:941.772198px;}
.y116{bottom:942.213164px;}
.ya4{bottom:943.698750px;}
.y5{bottom:946.474800px;}
.y280{bottom:953.030850px;}
.y2ad{bottom:953.042850px;}
.y25b{bottom:953.072850px;}
.y75{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y1d0{bottom:953.503754px;}
.y12e{bottom:954.009476px;}
.y1e6{bottom:956.995888px;}
.y23d{bottom:960.731250px;}
.y1d3{bottom:960.840202px;}
.y156{bottom:961.067921px;}
.y243{bottom:961.402753px;}
.ya3{bottom:961.779750px;}
.y1ba{bottom:965.252141px;}
.y10a{bottom:965.759918px;}
.y1e4{bottom:966.987066px;}
.y154{bottom:973.661079px;}
.y27f{bottom:974.036850px;}
.y2ac{bottom:974.048850px;}
.y74{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y1a8{bottom:976.975280px;}
.y10c{bottom:977.540940px;}
.ya2{bottom:979.860750px;}
.y4{bottom:983.288550px;}
.y1d8{bottom:983.838764px;}
.y254{bottom:988.441050px;}
.y196{bottom:988.723667px;}
.y12a{bottom:989.337252px;}
.y27e{bottom:995.042850px;}
.y2ab{bottom:995.054850px;}
.y73{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.y204{bottom:997.540198px;}
.ya1{bottom:997.941750px;}
.y17d{bottom:1000.462459px;}
.y25a{bottom:1000.529250px;}
.y11e{bottom:1001.095339px;}
.y23f{bottom:1002.313899px;}
.y24a{bottom:1002.991054px;}
.y153{bottom:1006.090829px;}
.y14c{bottom:1008.007127px;}
.y1a0{bottom:1012.186778px;}
.y125{bottom:1012.884006px;}
.ya0{bottom:1016.022750px;}
.y27d{bottom:1016.048850px;}
.y2aa{bottom:1016.060850px;}
.y72{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y1e0{bottom:1021.245089px;}
.y17e{bottom:1023.925570px;}
.y107{bottom:1024.642093px;}
.yde{bottom:1030.441050px;}
.y152{bottom:1032.429151px;}
.y205{bottom:1032.746448px;}
.y9f{bottom:1034.103750px;}
.y1b6{bottom:1035.658305px;}
.yfd{bottom:1036.423115px;}
.y27c{bottom:1037.054850px;}
.y2a9{bottom:1037.066850px;}
.y71{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y1ee{bottom:1037.127293px;}
.y239{bottom:1043.905401px;}
.y207{bottom:1044.476016px;}
.y242{bottom:1044.568050px;}
.y139{bottom:1047.186309px;}
.y198{bottom:1047.398276px;}
.y109{bottom:1048.196492px;}
.y177{bottom:1048.297319px;}
.y2{bottom:1049.282550px;}
.y9e{bottom:1052.478750px;}
.y151{bottom:1056.147844px;}
.y206{bottom:1056.214357px;}
.y27b{bottom:1058.060850px;}
.y2a8{bottom:1058.072850px;}
.y70{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y195{bottom:1059.138248px;}
.y124{bottom:1059.985159px;}
.y9d{bottom:1061.298750px;}
.y259{bottom:1063.529250px;}
.y140{bottom:1066.830750px;}
.y1b5{bottom:1070.861387px;}
.y101{bottom:1071.750891px;}
.y176{bottom:1073.690850px;}
.y27a{bottom:1079.066850px;}
.y3f{bottom:1079.078850px;}
.y208{bottom:1079.682265px;}
.y1cd{bottom:1082.592943px;}
.ye6{bottom:1083.516623px;}
.y238{bottom:1085.488050px;}
.y245{bottom:1086.153600px;}
.y141{bottom:1086.181200px;}
.y6f{bottom:1092.029250px;}
.y17b{bottom:1094.340150px;}
.y13f{bottom:1095.276024px;}
.y11f{bottom:1095.305290px;}
.y1db{bottom:1096.071206px;}
.y9c{bottom:1099.478400px;}
.y279{bottom:1100.072850px;}
.y3e{bottom:1100.078850px;}
.y1a1{bottom:1106.056054px;}
.yea{bottom:1107.071022px;}
.y13b{bottom:1107.679170px;}
.yf{bottom:1109.815500px;}
.y150{bottom:1114.474050px;}
.y253{bottom:1114.821900px;}
.y1cb{bottom:1117.796025px;}
.y1d9{bottom:1118.039680px;}
.ye7{bottom:1118.844399px;}
.y9b{bottom:1119.282900px;}
.y142{bottom:1120.191998px;}
.y3d{bottom:1121.078850px;}
.y6e{bottom:1124.326650px;}
.y258{bottom:1125.451800px;}
.y209{bottom:1126.618083px;}
.y23e{bottom:1127.074751px;}
.y247{bottom:1127.739000px;}
.y180{bottom:1129.543232px;}
.yf9{bottom:1130.633066px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h1b{height:17.809646px;}
.h22{height:19.605331px;}
.h1a{height:22.262386px;}
.h19{height:22.292966px;}
.h1c{height:22.976990px;}
.h1f{height:24.506664px;}
.h20{height:24.540327px;}
.h25{height:24.564540px;}
.h23{height:25.547122px;}
.h15{height:33.448242px;}
.h17{height:34.125000px;}
.h29{height:34.388390px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h16{height:36.688477px;}
.h26{height:37.633459px;}
.h11{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h28{height:42.513240px;}
.h8{height:43.004883px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.hb{height:43.875000px;}
.h1e{height:44.768765px;}
.ha{height:47.170898px;}
.h2b{height:47.194898px;}
.h18{height:47.216453px;}
.h2c{height:47.218898px;}
.h9{height:47.343750px;}
.h2d{height:47.698898px;}
.he{height:48.750000px;}
.h13{height:50.176758px;}
.h1d{height:51.167428px;}
.h12{height:52.078125px;}
.hd{height:52.412109px;}
.h2a{height:55.085391px;}
.hc{height:56.812500px;}
.h4{height:57.653320px;}
.h14{height:68.770242px;}
.h3{height:81.231445px;}
.h27{height:352.641000px;}
.h24{height:1000.762500px;}
.h21{height:1000.822500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:685.851000px;}
.w3{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xaf{left:2.840850px;}
.x2{left:73.984200px;}
.xa{left:107.067450px;}
.xab{left:108.067500px;}
.xf{left:112.243200px;}
.xa4{left:116.032650px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xad{left:150.530550px;}
.xd{left:176.870700px;}
.x14{left:179.646600px;}
.x15{left:183.762600px;}
.x11{left:193.107600px;}
.x13{left:198.693600px;}
.x12{left:201.969600px;}
.x10{left:204.920100px;}
.x56{left:206.902200px;}
.x55{left:216.489690px;}
.x53{left:218.465252px;}
.x57{left:220.433700px;}
.x58{left:223.554334px;}
.x51{left:234.666122px;}
.x5f{left:238.673048px;}
.x9d{left:248.796885px;}
.xac{left:258.530550px;}
.x4f{left:263.569733px;}
.x9c{left:268.188134px;}
.x4b{left:273.869082px;}
.x61{left:278.014800px;}
.x62{left:279.808646px;}
.x2a{left:284.219210px;}
.x63{left:286.107399px;}
.x2d{left:287.703183px;}
.x1b{left:292.374696px;}
.x42{left:294.332956px;}
.x30{left:295.355342px;}
.x5c{left:296.895515px;}
.x1a{left:297.903440px;}
.x4{left:300.189000px;}
.x34{left:303.164790px;}
.x64{left:304.638396px;}
.x40{left:306.876834px;}
.x3f{left:309.047436px;}
.x47{left:315.677210px;}
.xc{left:317.184000px;}
.x29{left:318.956706px;}
.xa5{left:320.864700px;}
.x35{left:322.810311px;}
.x95{left:323.878513px;}
.x9b{left:325.732294px;}
.x94{left:326.823577px;}
.x98{left:328.285615px;}
.x37{left:332.782497px;}
.x52{left:341.705113px;}
.x54{left:348.632165px;}
.x92{left:350.551973px;}
.x4e{left:351.671008px;}
.xa3{left:354.156468px;}
.x4a{left:357.106950px;}
.xa1{left:359.670682px;}
.x96{left:362.395186px;}
.x97{left:371.377279px;}
.x6e{left:373.315910px;}
.xa2{left:374.336145px;}
.x99{left:376.931627px;}
.x91{left:381.534600px;}
.x5b{left:382.788438px;}
.x93{left:385.088263px;}
.x6f{left:388.803051px;}
.x3{left:396.050700px;}
.x5a{left:398.605520px;}
.x9f{left:401.780866px;}
.x3e{left:402.925972px;}
.x9e{left:404.064165px;}
.x24{left:406.087502px;}
.x60{left:410.748308px;}
.xa0{left:412.655870px;}
.x88{left:414.125055px;}
.x65{left:415.629570px;}
.x83{left:417.377860px;}
.x68{left:419.899086px;}
.x86{left:424.215746px;}
.x84{left:425.649778px;}
.x7b{left:426.742942px;}
.x71{left:427.894282px;}
.x90{left:429.322300px;}
.x7c{left:431.097504px;}
.x9a{left:432.475103px;}
.x7a{left:433.659526px;}
.x81{left:435.679261px;}
.x7e{left:437.043492px;}
.x7f{left:439.771500px;}
.x8a{left:443.540207px;}
.x79{left:444.886950px;}
.x22{left:446.518896px;}
.x89{left:449.005270px;}
.x4c{left:450.870665px;}
.x2c{left:455.059743px;}
.x8f{left:456.481475px;}
.x8c{left:457.819322px;}
.x38{left:458.952670px;}
.x70{left:460.069872px;}
.x7d{left:461.273393px;}
.x4d{left:463.277700px;}
.x67{left:465.402708px;}
.x85{left:466.598399px;}
.x66{left:472.634910px;}
.x32{left:473.761524px;}
.x1f{left:475.373747px;}
.x69{left:477.505080px;}
.x50{left:479.050741px;}
.x28{left:482.294507px;}
.x8d{left:484.794871px;}
.x8e{left:486.237647px;}
.x23{left:489.671407px;}
.x20{left:492.188047px;}
.x43{left:494.130579px;}
.x87{left:496.372059px;}
.x25{left:497.693198px;}
.x82{left:499.948396px;}
.x8b{left:503.201201px;}
.x6a{left:506.490709px;}
.x26{left:509.198961px;}
.x80{left:510.476293px;}
.x1c{left:512.100962px;}
.x59{left:513.175556px;}
.x5d{left:517.504177px;}
.x39{left:518.746464px;}
.x49{left:521.569819px;}
.x27{left:523.449435px;}
.x19{left:526.744661px;}
.x3d{left:530.016292px;}
.x33{left:535.136082px;}
.x1d{left:540.004208px;}
.x44{left:543.794897px;}
.x6b{left:545.070572px;}
.x3c{left:547.986675px;}
.x5e{left:550.635743px;}
.x2e{left:556.582573px;}
.x21{left:558.470054px;}
.x6d{left:559.729784px;}
.x3b{left:563.707811px;}
.x6c{left:565.314245px;}
.x2f{left:566.940120px;}
.xb{left:579.447450px;}
.x36{left:581.159136px;}
.x3a{left:583.966762px;}
.x18{left:585.256541px;}
.x46{left:586.758660px;}
.x2b{left:590.101072px;}
.xe{left:591.347700px;}
.x17{left:596.353350px;}
.x48{left:597.556619px;}
.x41{left:600.073258px;}
.x31{left:607.575991px;}
.x45{left:611.390274px;}
.x1e{left:612.735104px;}
.xa6{left:622.061250px;}
.xa8{left:641.563740px;}
.x9{left:649.179300px;}
.xa7{left:651.801890px;}
.xa9{left:654.723315px;}
.x8{left:667.155300px;}
.x74{left:676.158000px;}
.x76{left:692.842988px;}
.x75{left:695.765833px;}
.xb0{left:702.426900px;}
.xae{left:704.796750px;}
.x77{left:713.015574px;}
.x78{left:714.135172px;}
.x72{left:735.700350px;}
.x16{left:764.716800px;}
.x73{left:798.832800px;}
.xaa{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.066087pt;}
.v6{vertical-align:16.026667pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:31.397333pt;}
.ls10{letter-spacing:-2.933333pt;}
.lsf{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-2.133333pt;}
.ls5{letter-spacing:-1.722667pt;}
.ls9{letter-spacing:-1.344000pt;}
.ls21{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.178667pt;}
.ls17{letter-spacing:-1.122950pt;}
.ls35{letter-spacing:-1.066667pt;}
.ls37{letter-spacing:-1.013333pt;}
.ls18{letter-spacing:-0.982579pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.853333pt;}
.ls38{letter-spacing:-0.816000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls3c{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls36{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls3a{letter-spacing:-0.528000pt;}
.ls11{letter-spacing:-0.522667pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls3b{letter-spacing:-0.307824pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls31{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.453333pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.586667pt;}
.ls29{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:0.705600pt;}
.ls33{letter-spacing:0.720000pt;}
.ls30{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.816000pt;}
.ls15{letter-spacing:0.853333pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls32{letter-spacing:1.013333pt;}
.ls19{letter-spacing:1.066667pt;}
.ls2b{letter-spacing:4.213333pt;}
.ls2d{letter-spacing:6.080000pt;}
.ls28{letter-spacing:6.186667pt;}
.ls23{letter-spacing:7.264000pt;}
.ls20{letter-spacing:8.320000pt;}
.ls34{letter-spacing:9.280000pt;}
.ls1b{letter-spacing:11.093333pt;}
.lsd{letter-spacing:112.858667pt;}
.lse{letter-spacing:187.152000pt;}
.ls22{letter-spacing:1322.094283pt;}
.ws13e{word-spacing:-1322.094283pt;}
.ws75{word-spacing:-196.410667pt;}
.ws18b{word-spacing:-46.186667pt;}
.wse{word-spacing:-15.936000pt;}
.ws18d{word-spacing:-14.608000pt;}
.ws142{word-spacing:-14.490667pt;}
.wsfb{word-spacing:-14.133333pt;}
.ws16f{word-spacing:-14.080000pt;}
.ws166{word-spacing:-13.973333pt;}
.ws179{word-spacing:-13.946667pt;}
.wsc5{word-spacing:-13.920000pt;}
.wsad{word-spacing:-13.813333pt;}
.wsac{word-spacing:-13.760000pt;}
.ws116{word-spacing:-13.706667pt;}
.ws117{word-spacing:-13.680000pt;}
.wsc4{word-spacing:-13.546667pt;}
.wsc6{word-spacing:-13.493333pt;}
.ws167{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.226667pt;}
.ws15e{word-spacing:-13.173333pt;}
.wsf{word-spacing:-13.120000pt;}
.ws30{word-spacing:-13.066667pt;}
.ws143{word-spacing:-12.960000pt;}
.ws2f{word-spacing:-12.853333pt;}
.ws17d{word-spacing:-12.533333pt;}
.ws118{word-spacing:-12.480000pt;}
.ws14e{word-spacing:-12.373333pt;}
.ws12e{word-spacing:-12.320000pt;}
.ws50{word-spacing:-12.213333pt;}
.ws14d{word-spacing:-12.160000pt;}
.ws141{word-spacing:-12.106667pt;}
.ws17c{word-spacing:-12.000000pt;}
.wse5{word-spacing:-11.952000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws12f{word-spacing:-11.786667pt;}
.wsd{word-spacing:-11.760000pt;}
.ws194{word-spacing:-11.520000pt;}
.wsa{word-spacing:-11.424000pt;}
.ws193{word-spacing:-11.376000pt;}
.ws19d{word-spacing:-11.232000pt;}
.wsfc{word-spacing:-11.093333pt;}
.ws11{word-spacing:-10.992000pt;}
.ws13{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.416000pt;}
.ws8e{word-spacing:-10.133333pt;}
.ws7{word-spacing:-9.685333pt;}
.ws6f{word-spacing:-9.258667pt;}
.ws77{word-spacing:-9.146667pt;}
.ws8{word-spacing:-8.793600pt;}
.ws6{word-spacing:-8.549333pt;}
.wse4{word-spacing:-8.318501pt;}
.ws8f{word-spacing:-7.711147pt;}
.wsdf{word-spacing:-7.556707pt;}
.ws6d{word-spacing:-7.018667pt;}
.ws1b4{word-spacing:-6.940032pt;}
.ws19e{word-spacing:-6.632208pt;}
.ws146{word-spacing:-5.066667pt;}
.wsec{word-spacing:-4.512000pt;}
.wsed{word-spacing:-4.464000pt;}
.ws196{word-spacing:-4.128000pt;}
.ws18c{word-spacing:-4.053333pt;}
.ws128{word-spacing:-4.000000pt;}
.ws129{word-spacing:-3.946667pt;}
.ws150{word-spacing:-3.893333pt;}
.ws16d{word-spacing:-3.413333pt;}
.wsef{word-spacing:-3.216000pt;}
.ws14b{word-spacing:-3.200000pt;}
.ws10b{word-spacing:-3.146667pt;}
.ws139{word-spacing:-3.040000pt;}
.ws19f{word-spacing:-3.024000pt;}
.ws14a{word-spacing:-2.986667pt;}
.wsbe{word-spacing:-2.826667pt;}
.ws175{word-spacing:-2.666667pt;}
.ws11b{word-spacing:-2.613333pt;}
.wsd0{word-spacing:-2.560000pt;}
.ws160{word-spacing:-2.506667pt;}
.ws163{word-spacing:-2.453333pt;}
.ws132{word-spacing:-2.400000pt;}
.wsa7{word-spacing:-2.346667pt;}
.ws59{word-spacing:-2.293333pt;}
.ws18e{word-spacing:-2.256000pt;}
.wsc8{word-spacing:-2.240000pt;}
.ws21{word-spacing:-2.208000pt;}
.ws1a2{word-spacing:-2.160000pt;}
.ws17b{word-spacing:-2.133333pt;}
.ws1a1{word-spacing:-2.112000pt;}
.wsd2{word-spacing:-2.080000pt;}
.wsd1{word-spacing:-2.026667pt;}
.wseb{word-spacing:-1.973333pt;}
.wsf8{word-spacing:-1.968000pt;}
.ws137{word-spacing:-1.920000pt;}
.wsae{word-spacing:-1.866667pt;}
.ws58{word-spacing:-1.813333pt;}
.ws1a3{word-spacing:-1.776000pt;}
.wsb5{word-spacing:-1.760000pt;}
.ws1a9{word-spacing:-1.680000pt;}
.ws151{word-spacing:-1.653333pt;}
.ws197{word-spacing:-1.632000pt;}
.wscc{word-spacing:-1.600000pt;}
.ws8d{word-spacing:-1.568000pt;}
.wsb7{word-spacing:-1.546667pt;}
.ws1a4{word-spacing:-1.536000pt;}
.wscf{word-spacing:-1.493333pt;}
.ws121{word-spacing:-1.440000pt;}
.ws14c{word-spacing:-1.386667pt;}
.ws152{word-spacing:-1.333333pt;}
.ws19a{word-spacing:-1.296000pt;}
.ws145{word-spacing:-1.280000pt;}
.ws168{word-spacing:-1.226667pt;}
.ws127{word-spacing:-1.173333pt;}
.ws18f{word-spacing:-1.152000pt;}
.ws172{word-spacing:-1.120000pt;}
.ws13f{word-spacing:-1.104000pt;}
.ws5a{word-spacing:-1.066667pt;}
.ws3c{word-spacing:-1.013333pt;}
.ws12d{word-spacing:-1.008000pt;}
.wsff{word-spacing:-0.960000pt;}
.ws2d{word-spacing:-0.912000pt;}
.ws62{word-spacing:-0.906667pt;}
.ws57{word-spacing:-0.853333pt;}
.ws53{word-spacing:-0.800000pt;}
.ws171{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.720000pt;}
.ws161{word-spacing:-0.693333pt;}
.ws46{word-spacing:-0.640000pt;}
.ws12c{word-spacing:-0.624000pt;}
.wsba{word-spacing:-0.586667pt;}
.ws140{word-spacing:-0.576000pt;}
.wsb0{word-spacing:-0.533333pt;}
.wsf7{word-spacing:-0.528000pt;}
.wsc9{word-spacing:-0.480000pt;}
.ws1ac{word-spacing:-0.432000pt;}
.wsda{word-spacing:-0.426667pt;}
.ws40{word-spacing:-0.373333pt;}
.ws134{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws1b1{word-spacing:-0.240000pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.192000pt;}
.ws48{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.144000pt;}
.wsde{word-spacing:-0.056110pt;}
.ws25{word-spacing:-0.053333pt;}
.ws12{word-spacing:-0.048000pt;}
.ws2e{word-spacing:-0.042667pt;}
.ws130{word-spacing:-0.041988pt;}
.ws14{word-spacing:0.000000pt;}
.ws112{word-spacing:0.048000pt;}
.ws157{word-spacing:0.053333pt;}
.ws4d{word-spacing:0.106667pt;}
.ws111{word-spacing:0.144000pt;}
.ws4f{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.192000pt;}
.ws39{word-spacing:0.213333pt;}
.ws64{word-spacing:0.266667pt;}
.ws1{word-spacing:0.272000pt;}
.ws131{word-spacing:0.320000pt;}
.ws19{word-spacing:0.336000pt;}
.ws0{word-spacing:0.362667pt;}
.ws3f{word-spacing:0.373333pt;}
.ws22{word-spacing:0.384000pt;}
.ws147{word-spacing:0.426667pt;}
.wse0{word-spacing:0.432000pt;}
.ws43{word-spacing:0.480000pt;}
.wsee{word-spacing:0.528000pt;}
.ws4e{word-spacing:0.533333pt;}
.ws89{word-spacing:0.586667pt;}
.ws16{word-spacing:0.614400pt;}
.ws148{word-spacing:0.640000pt;}
.ws1a7{word-spacing:0.672000pt;}
.wsd6{word-spacing:0.693333pt;}
.wsd7{word-spacing:0.746667pt;}
.ws12b{word-spacing:0.768000pt;}
.ws4a{word-spacing:0.800000pt;}
.ws191{word-spacing:0.816000pt;}
.ws51{word-spacing:0.853333pt;}
.wsbd{word-spacing:0.906667pt;}
.ws12a{word-spacing:0.912000pt;}
.wse3{word-spacing:0.927991pt;}
.ws120{word-spacing:0.960000pt;}
.ws10e{word-spacing:1.008000pt;}
.ws192{word-spacing:1.056000pt;}
.wse1{word-spacing:1.060564pt;}
.ws17e{word-spacing:1.066667pt;}
.ws3{word-spacing:1.088000pt;}
.ws38{word-spacing:1.120000pt;}
.ws1b5{word-spacing:1.152000pt;}
.wsfe{word-spacing:1.173333pt;}
.ws45{word-spacing:1.226667pt;}
.ws190{word-spacing:1.248000pt;}
.wsbb{word-spacing:1.280000pt;}
.ws19b{word-spacing:1.296000pt;}
.wsb4{word-spacing:1.333333pt;}
.wsf0{word-spacing:1.344000pt;}
.wse9{word-spacing:1.386667pt;}
.ws1ad{word-spacing:1.392000pt;}
.wsab{word-spacing:1.440000pt;}
.ws102{word-spacing:1.493333pt;}
.ws1b{word-spacing:1.536000pt;}
.wsa9{word-spacing:1.546667pt;}
.ws1a8{word-spacing:1.584000pt;}
.ws60{word-spacing:1.600000pt;}
.ws2{word-spacing:1.632000pt;}
.ws173{word-spacing:1.653333pt;}
.wse7{word-spacing:1.706667pt;}
.wsb2{word-spacing:1.760000pt;}
.ws108{word-spacing:1.813333pt;}
.ws115{word-spacing:1.824000pt;}
.ws109{word-spacing:1.866667pt;}
.ws65{word-spacing:1.920000pt;}
.ws1e{word-spacing:1.968000pt;}
.ws104{word-spacing:1.973333pt;}
.ws18{word-spacing:2.016000pt;}
.ws33{word-spacing:2.026667pt;}
.wsc7{word-spacing:2.080000pt;}
.wsf2{word-spacing:2.112000pt;}
.ws101{word-spacing:2.133333pt;}
.ws8c{word-spacing:2.240000pt;}
.ws1a5{word-spacing:2.256000pt;}
.wsd3{word-spacing:2.293333pt;}
.ws1b2{word-spacing:2.304000pt;}
.wsea{word-spacing:2.346667pt;}
.ws10d{word-spacing:2.352000pt;}
.ws10c{word-spacing:2.400000pt;}
.wsfa{word-spacing:2.448000pt;}
.wsbf{word-spacing:2.453333pt;}
.ws20{word-spacing:2.496000pt;}
.wsd8{word-spacing:2.506667pt;}
.ws34{word-spacing:2.560000pt;}
.ws1a0{word-spacing:2.592000pt;}
.ws5d{word-spacing:2.613333pt;}
.wsf9{word-spacing:2.640000pt;}
.ws52{word-spacing:2.666667pt;}
.ws107{word-spacing:2.720000pt;}
.ws158{word-spacing:2.773333pt;}
.wsaf{word-spacing:2.826667pt;}
.ws47{word-spacing:2.880000pt;}
.wsc2{word-spacing:2.933333pt;}
.wsf1{word-spacing:2.976000pt;}
.wsa8{word-spacing:2.986667pt;}
.wsc1{word-spacing:3.040000pt;}
.ws37{word-spacing:3.146667pt;}
.ws42{word-spacing:3.200000pt;}
.ws19c{word-spacing:3.216000pt;}
.ws156{word-spacing:3.253333pt;}
.ws15a{word-spacing:3.306667pt;}
.wsca{word-spacing:3.360000pt;}
.ws1b7{word-spacing:3.408000pt;}
.ws63{word-spacing:3.413333pt;}
.ws159{word-spacing:3.466667pt;}
.ws133{word-spacing:3.520000pt;}
.ws164{word-spacing:3.573333pt;}
.ws1aa{word-spacing:3.600000pt;}
.ws56{word-spacing:3.626667pt;}
.ws1f{word-spacing:3.648000pt;}
.wscd{word-spacing:3.680000pt;}
.ws122{word-spacing:3.733333pt;}
.ws1ae{word-spacing:3.744000pt;}
.ws155{word-spacing:3.786667pt;}
.ws15c{word-spacing:3.840000pt;}
.wsbc{word-spacing:3.893333pt;}
.ws4b{word-spacing:3.946667pt;}
.ws8b{word-spacing:3.984000pt;}
.ws11f{word-spacing:4.000000pt;}
.ws8a{word-spacing:4.032000pt;}
.ws11e{word-spacing:4.053333pt;}
.ws110{word-spacing:4.080000pt;}
.wsd4{word-spacing:4.106667pt;}
.ws10f{word-spacing:4.128000pt;}
.wsce{word-spacing:4.160000pt;}
.ws125{word-spacing:4.213333pt;}
.ws3b{word-spacing:4.266667pt;}
.wsb6{word-spacing:4.320000pt;}
.ws199{word-spacing:4.368000pt;}
.ws29{word-spacing:4.373333pt;}
.ws149{word-spacing:4.426667pt;}
.ws1b0{word-spacing:4.464000pt;}
.wsc0{word-spacing:4.480000pt;}
.ws174{word-spacing:4.533333pt;}
.ws1b3{word-spacing:4.560000pt;}
.ws15b{word-spacing:4.586667pt;}
.ws11a{word-spacing:4.640000pt;}
.ws55{word-spacing:4.693333pt;}
.ws105{word-spacing:4.746667pt;}
.ws170{word-spacing:4.800000pt;}
.ws4c{word-spacing:4.853333pt;}
.ws1af{word-spacing:4.896000pt;}
.ws3a{word-spacing:4.906667pt;}
.ws2c{word-spacing:4.960000pt;}
.ws49{word-spacing:5.013333pt;}
.ws119{word-spacing:5.066667pt;}
.ws32{word-spacing:5.173333pt;}
.wse8{word-spacing:5.226667pt;}
.ws5b{word-spacing:5.280000pt;}
.ws41{word-spacing:5.333333pt;}
.ws5e{word-spacing:5.386667pt;}
.ws66{word-spacing:5.440000pt;}
.wsd5{word-spacing:5.493333pt;}
.ws16a{word-spacing:5.546667pt;}
.ws17a{word-spacing:5.600000pt;}
.wsfd{word-spacing:5.653333pt;}
.ws36{word-spacing:5.706667pt;}
.ws1a6{word-spacing:5.712000pt;}
.wsc3{word-spacing:5.760000pt;}
.wsa6{word-spacing:5.813333pt;}
.wscb{word-spacing:5.866667pt;}
.wsaa{word-spacing:5.920000pt;}
.ws126{word-spacing:5.973333pt;}
.ws5c{word-spacing:6.026667pt;}
.ws16e{word-spacing:6.080000pt;}
.ws162{word-spacing:6.133333pt;}
.ws1a{word-spacing:6.144000pt;}
.ws31{word-spacing:6.186667pt;}
.ws136{word-spacing:6.240000pt;}
.ws135{word-spacing:6.293333pt;}
.wsb9{word-spacing:6.346667pt;}
.ws54{word-spacing:6.400000pt;}
.ws27{word-spacing:6.453333pt;}
.wse6{word-spacing:6.506667pt;}
.ws113{word-spacing:6.528000pt;}
.ws14f{word-spacing:6.560000pt;}
.ws44{word-spacing:6.613333pt;}
.ws114{word-spacing:6.624000pt;}
.ws26{word-spacing:6.666667pt;}
.ws15d{word-spacing:6.720000pt;}
.ws35{word-spacing:6.826667pt;}
.ws67{word-spacing:6.880000pt;}
.ws178{word-spacing:6.933333pt;}
.ws176{word-spacing:6.986667pt;}
.ws198{word-spacing:7.008000pt;}
.ws138{word-spacing:7.040000pt;}
.ws124{word-spacing:7.093333pt;}
.ws144{word-spacing:7.253333pt;}
.ws103{word-spacing:7.306667pt;}
.ws100{word-spacing:7.360000pt;}
.ws169{word-spacing:7.413333pt;}
.ws16c{word-spacing:7.466667pt;}
.ws2b{word-spacing:7.520000pt;}
.ws16b{word-spacing:7.573333pt;}
.ws1ab{word-spacing:7.632000pt;}
.ws3e{word-spacing:7.680000pt;}
.ws3d{word-spacing:7.733333pt;}
.ws2a{word-spacing:7.840000pt;}
.ws106{word-spacing:7.946667pt;}
.ws10a{word-spacing:8.000000pt;}
.ws13c{word-spacing:8.053333pt;}
.ws165{word-spacing:8.106667pt;}
.ws184{word-spacing:8.213333pt;}
.ws13b{word-spacing:8.266667pt;}
.ws13a{word-spacing:8.320000pt;}
.ws186{word-spacing:8.373333pt;}
.ws13d{word-spacing:8.426667pt;}
.ws185{word-spacing:8.480000pt;}
.wsf4{word-spacing:8.544000pt;}
.ws15f{word-spacing:8.586667pt;}
.wsf3{word-spacing:8.640000pt;}
.ws177{word-spacing:8.800000pt;}
.ws195{word-spacing:9.024000pt;}
.ws24{word-spacing:9.072000pt;}
.ws23{word-spacing:9.120000pt;}
.ws187{word-spacing:9.226667pt;}
.ws188{word-spacing:9.280000pt;}
.ws183{word-spacing:9.440000pt;}
.ws182{word-spacing:9.546667pt;}
.ws153{word-spacing:9.706667pt;}
.ws154{word-spacing:9.813333pt;}
.wsb1{word-spacing:9.973333pt;}
.ws11d{word-spacing:10.080000pt;}
.ws11c{word-spacing:10.186667pt;}
.ws180{word-spacing:11.253333pt;}
.ws181{word-spacing:11.360000pt;}
.ws17f{word-spacing:11.413333pt;}
.ws28{word-spacing:11.466667pt;}
.ws18a{word-spacing:11.680000pt;}
.ws189{word-spacing:11.786667pt;}
.ws123{word-spacing:11.893333pt;}
.wsb8{word-spacing:12.853333pt;}
.ws1b6{word-spacing:13.488000pt;}
.wsb3{word-spacing:13.706667pt;}
.wsf6{word-spacing:14.112000pt;}
.wsf5{word-spacing:14.208000pt;}
.wsdb{word-spacing:14.666667pt;}
.wsd9{word-spacing:19.306667pt;}
.ws1b8{word-spacing:22.032000pt;}
.ws6a{word-spacing:29.194667pt;}
.ws4{word-spacing:29.911587pt;}
.ws5{word-spacing:29.912120pt;}
.ws68{word-spacing:65.557333pt;}
.wsa1{word-spacing:83.850667pt;}
.wsa2{word-spacing:97.365333pt;}
.ws71{word-spacing:103.488000pt;}
.ws72{word-spacing:103.600000pt;}
.wsa5{word-spacing:112.261333pt;}
.ws95{word-spacing:125.402667pt;}
.ws9b{word-spacing:125.888000pt;}
.wsa3{word-spacing:126.896000pt;}
.ws99{word-spacing:130.812267pt;}
.ws80{word-spacing:135.781333pt;}
.ws98{word-spacing:138.320000pt;}
.ws9d{word-spacing:141.978667pt;}
.wsa0{word-spacing:143.845333pt;}
.ws7e{word-spacing:146.055467pt;}
.ws7f{word-spacing:146.272000pt;}
.ws69{word-spacing:156.508800pt;}
.ws9c{word-spacing:157.225600pt;}
.ws9f{word-spacing:158.965333pt;}
.ws91{word-spacing:160.197333pt;}
.ws92{word-spacing:170.389333pt;}
.ws78{word-spacing:171.397333pt;}
.ws9e{word-spacing:172.405333pt;}
.ws6b{word-spacing:176.885333pt;}
.ws83{word-spacing:181.888000pt;}
.ws86{word-spacing:182.709333pt;}
.ws79{word-spacing:185.472000pt;}
.ws6c{word-spacing:185.584000pt;}
.ws90{word-spacing:190.885333pt;}
.ws82{word-spacing:192.311467pt;}
.ws73{word-spacing:192.494400pt;}
.ws6e{word-spacing:196.074667pt;}
.ws7a{word-spacing:201.122133pt;}
.ws97{word-spacing:201.861333pt;}
.ws94{word-spacing:218.762133pt;}
.ws7d{word-spacing:227.397333pt;}
.ws85{word-spacing:231.955733pt;}
.ws84{word-spacing:232.441067pt;}
.ws7b{word-spacing:235.707733pt;}
.ws70{word-spacing:242.666667pt;}
.ws81{word-spacing:249.834667pt;}
.ws88{word-spacing:253.866667pt;}
.ws87{word-spacing:276.565333pt;}
.ws76{word-spacing:281.291733pt;}
.ws74{word-spacing:289.706667pt;}
.ws7c{word-spacing:294.560000pt;}
.wsa4{word-spacing:316.022933pt;}
.ws96{word-spacing:378.074667pt;}
.ws93{word-spacing:394.938133pt;}
.ws9a{word-spacing:409.251733pt;}
.wsdd{word-spacing:1432.092127pt;}
.wsdc{word-spacing:1550.483946pt;}
.wse2{word-spacing:2206.420054pt;}
._46{margin-left:-186.592000pt;}
._1f{margin-left:-74.293333pt;}
._b{margin-left:-9.898667pt;}
._62{margin-left:-8.634667pt;}
._67{margin-left:-7.694400pt;}
._a{margin-left:-5.696000pt;}
._c{margin-left:-4.394667pt;}
._3{margin-left:-3.082667pt;}
._0{margin-left:-1.604800pt;}
._4{width:0.897600pt;}
._1{width:1.822400pt;}
._2{width:3.236800pt;}
._8{width:4.901333pt;}
._7{width:6.672000pt;}
._d{width:7.674133pt;}
._6{width:8.804800pt;}
._e{width:9.973333pt;}
._9{width:10.884800pt;}
._60{width:11.866133pt;}
._68{width:12.953600pt;}
._61{width:14.064000pt;}
._65{width:15.004800pt;}
._66{width:15.940800pt;}
._5{width:32.328533pt;}
._64{width:37.534933pt;}
._63{width:39.014400pt;}
._33{width:72.986667pt;}
._30{width:83.477333pt;}
._12{width:86.090667pt;}
._4a{width:91.466667pt;}
._24{width:108.900800pt;}
._17{width:112.746667pt;}
._16{width:119.391467pt;}
._2e{width:120.563200pt;}
._54{width:121.876800pt;}
._1c{width:125.153600pt;}
._26{width:126.768000pt;}
._14{width:131.053867pt;}
._51{width:141.120000pt;}
._53{width:145.637333pt;}
._50{width:147.448000pt;}
._1a{width:150.021867pt;}
._3e{width:154.613333pt;}
._52{width:159.040000pt;}
._10{width:161.280000pt;}
._41{width:165.046400pt;}
._3b{width:166.610667pt;}
._2c{width:167.850667pt;}
._4f{width:169.792000pt;}
._55{width:171.397333pt;}
._28{width:174.488533pt;}
._5e{width:179.125333pt;}
._43{width:180.320000pt;}
._4d{width:181.888000pt;}
._19{width:183.194133pt;}
._37{width:184.111467pt;}
._39{width:185.596800pt;}
._1b{width:187.002667pt;}
._3d{width:193.684800pt;}
._35{width:204.616000pt;}
._5c{width:214.890667pt;}
._4c{width:217.578667pt;}
._4b{width:230.981333pt;}
._22{width:231.964800pt;}
._31{width:239.307200pt;}
._5f{width:256.669333pt;}
._2a{width:259.890133pt;}
._11{width:266.186667pt;}
._5d{width:269.513600pt;}
._23{width:270.554133pt;}
._2d{width:272.682667pt;}
._5b{width:279.869333pt;}
._58{width:286.538667pt;}
._40{width:288.474667pt;}
._1e{width:292.357333pt;}
._5a{width:293.549867pt;}
._42{width:298.106667pt;}
._56{width:301.522667pt;}
._29{width:303.184000pt;}
._3f{width:308.485333pt;}
._57{width:316.350400pt;}
._45{width:318.042667pt;}
._13{width:324.276800pt;}
._20{width:326.629333pt;}
._44{width:327.637333pt;}
._f{width:329.786667pt;}
._4e{width:333.906667pt;}
._48{width:336.432000pt;}
._21{width:340.368000pt;}
._49{width:341.374933pt;}
._47{width:343.802667pt;}
._27{width:346.751467pt;}
._15{width:355.151467pt;}
._18{width:359.855467pt;}
._2f{width:372.772800pt;}
._2b{width:376.132800pt;}
._25{width:380.015467pt;}
._59{width:384.832000pt;}
._1d{width:389.312000pt;}
._34{width:399.914667pt;}
._36{width:403.237333pt;}
._3c{width:419.552000pt;}
._3a{width:430.677333pt;}
._32{width:451.360000pt;}
._38{width:453.824000pt;}
.fsc{font-size:21.745600pt;}
.fs11{font-size:23.938133pt;}
.fsb{font-size:27.182400pt;}
.fs16{font-size:27.984000pt;}
.fsd{font-size:28.054933pt;}
.fs10{font-size:29.922667pt;}
.fs9{font-size:31.093333pt;}
.fs12{font-size:31.193067pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs15{font-size:41.988267pt;}
.fs0{font-size:42.666667pt;}
.fs13{font-size:45.887467pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs14{font-size:53.985067pt;}
.fsf{font-size:54.587733pt;}
.fsa{font-size:56.109867pt;}
.fs2{font-size:58.666667pt;}
.fse{font-size:62.386133pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y20b{bottom:-0.109867pt;}
.y0{bottom:0.000000pt;}
.y185{bottom:2.286800pt;}
.y246{bottom:4.318133pt;}
.y23c{bottom:4.401733pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y2d5{bottom:100.258533pt;}
.y2eb{bottom:100.466533pt;}
.y99{bottom:100.514400pt;}
.y6d{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.y225{bottom:107.079867pt;}
.y237{bottom:107.083867pt;}
.y22c{bottom:107.087867pt;}
.y174{bottom:107.091867pt;}
.y213{bottom:107.111867pt;}
.ydd{bottom:107.134533pt;}
.yd{bottom:116.979067pt;}
.y2a7{bottom:118.930533pt;}
.y2d4{bottom:118.941200pt;}
.y278{bottom:119.117067pt;}
.y2ea{bottom:119.138533pt;}
.y98{bottom:119.181067pt;}
.y6c{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.y224{bottom:124.683867pt;}
.y236{bottom:124.687867pt;}
.y22b{bottom:124.691867pt;}
.y173{bottom:124.695867pt;}
.y184{bottom:125.561333pt;}
.y20a{bottom:125.612000pt;}
.ydc{bottom:126.809200pt;}
.yc{bottom:129.775867pt;}
.y1f0{bottom:135.682529pt;}
.y2a6{bottom:137.602533pt;}
.y2d3{bottom:137.613200pt;}
.y277{bottom:137.789067pt;}
.y2e9{bottom:137.810533pt;}
.y9a{bottom:137.847733pt;}
.y6b{bottom:137.847867pt;}
.y19d{bottom:138.264521pt;}
.y29{bottom:141.522267pt;}
.y223{bottom:142.287867pt;}
.y235{bottom:142.291867pt;}
.y22a{bottom:142.295867pt;}
.y172{bottom:142.299867pt;}
.yb{bottom:142.575867pt;}
.ydb{bottom:142.881200pt;}
.y257{bottom:143.055200pt;}
.y1b4{bottom:148.700051pt;}
.y97{bottom:150.614133pt;}
.y244{bottom:152.852667pt;}
.y1dc{bottom:154.787460pt;}
.y2a5{bottom:156.274533pt;}
.y2d2{bottom:156.285200pt;}
.y276{bottom:156.461067pt;}
.y2e8{bottom:156.482533pt;}
.y215{bottom:156.514400pt;}
.y6a{bottom:156.514533pt;}
.y190{bottom:159.135581pt;}
.y222{bottom:159.891867pt;}
.y234{bottom:159.895867pt;}
.y229{bottom:159.899867pt;}
.y171{bottom:159.903867pt;}
.y28{bottom:160.188933pt;}
.y256{bottom:169.280933pt;}
.y18a{bottom:169.571111pt;}
.y1d7{bottom:170.796086pt;}
.y2a4{bottom:174.946533pt;}
.y2d1{bottom:174.957200pt;}
.yda{bottom:175.025200pt;}
.y275{bottom:175.133067pt;}
.y2e7{bottom:175.154533pt;}
.y214{bottom:175.181067pt;}
.y69{bottom:175.181200pt;}
.y221{bottom:177.495867pt;}
.y233{bottom:177.499867pt;}
.y228{bottom:177.503867pt;}
.y170{bottom:177.507867pt;}
.y27{bottom:178.855600pt;}
.ycd{bottom:179.891333pt;}
.y1c6{bottom:179.991679pt;}
.y37{bottom:180.842133pt;}
.y1f1{bottom:187.837336pt;}
.y1bd{bottom:190.427209pt;}
.yd9{bottom:191.097200pt;}
.y2a3{bottom:193.618533pt;}
.y2d0{bottom:193.629200pt;}
.y274{bottom:193.805067pt;}
.y2e6{bottom:193.826533pt;}
.y96{bottom:193.847733pt;}
.y68{bottom:193.847867pt;}
.y220{bottom:195.099867pt;}
.y232{bottom:195.103867pt;}
.y227{bottom:195.107867pt;}
.y16f{bottom:195.111867pt;}
.ycc{bottom:195.963333pt;}
.y36{bottom:196.838133pt;}
.y26{bottom:197.522267pt;}
.y199{bottom:200.855259pt;}
.yd8{bottom:207.169200pt;}
.y1c8{bottom:211.283308pt;}
.ycb{bottom:212.035333pt;}
.y2a2{bottom:212.290533pt;}
.y2cf{bottom:212.301200pt;}
.y273{bottom:212.477067pt;}
.y2e5{bottom:212.498533pt;}
.y95{bottom:212.514400pt;}
.y67{bottom:212.514533pt;}
.y21f{bottom:212.703867pt;}
.y231{bottom:212.707867pt;}
.y226{bottom:212.711867pt;}
.y35{bottom:212.834133pt;}
.y25{bottom:216.188933pt;}
.y1f2{bottom:219.123982pt;}
.y108{bottom:219.945480pt;}
.y1dd{bottom:220.659218pt;}
.y1b9{bottom:221.711357pt;}
.y133{bottom:221.931151pt;}
.yca{bottom:228.107333pt;}
.y34{bottom:228.830133pt;}
.y136{bottom:230.216224pt;}
.y21e{bottom:230.307867pt;}
.y230{bottom:230.311867pt;}
.y110{bottom:230.417500pt;}
.y2a1{bottom:230.962533pt;}
.y2ce{bottom:230.973200pt;}
.y272{bottom:231.149067pt;}
.y2e4{bottom:231.170533pt;}
.y94{bottom:231.181067pt;}
.y66{bottom:231.181200pt;}
.y1b8{bottom:232.139407pt;}
.y144{bottom:232.395860pt;}
.y24{bottom:234.855600pt;}
.yd7{bottom:239.313200pt;}
.y129{bottom:240.896315pt;}
.y1bf{bottom:242.574937pt;}
.yc9{bottom:244.179333pt;}
.y33{bottom:244.826133pt;}
.y21d{bottom:247.911867pt;}
.y16c{bottom:248.492421pt;}
.y2a0{bottom:249.634533pt;}
.y2cd{bottom:249.645200pt;}
.y271{bottom:249.821067pt;}
.y2e3{bottom:249.842533pt;}
.y93{bottom:249.847733pt;}
.y65{bottom:249.847867pt;}
.y121{bottom:251.361539pt;}
.y1b0{bottom:252.995505pt;}
.y23{bottom:253.522267pt;}
.y16d{bottom:253.724666pt;}
.yd6{bottom:255.385200pt;}
.y1ef{bottom:255.635467pt;}
.yc8{bottom:260.251333pt;}
.y32{bottom:260.822133pt;}
.yf6{bottom:261.826763pt;}
.y1c7{bottom:263.438516pt;}
.y29f{bottom:268.306533pt;}
.y2cc{bottom:268.317200pt;}
.y270{bottom:268.493067pt;}
.y92{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.yd5{bottom:271.457200pt;}
.y22{bottom:272.188933pt;}
.ye3{bottom:272.271600pt;}
.y18e{bottom:273.874046pt;}
.yc7{bottom:276.323333pt;}
.y31{bottom:276.818133pt;}
.ye2{bottom:280.980400pt;}
.yeb{bottom:282.750415pt;}
.y1c4{bottom:284.294615pt;}
.y146{bottom:284.993030pt;}
.y14e{bottom:285.319214pt;}
.y29e{bottom:286.978533pt;}
.y2cb{bottom:286.989200pt;}
.y26f{bottom:287.165067pt;}
.y91{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.yd4{bottom:287.529200pt;}
.yc6{bottom:292.395333pt;}
.y30{bottom:292.814133pt;}
.y128{bottom:293.236026pt;}
.y1a9{bottom:294.722664pt;}
.y24c{bottom:299.085067pt;}
.y2e2{bottom:299.123200pt;}
.y21{bottom:301.159333pt;}
.y120{bottom:303.694454pt;}
.y1bb{bottom:305.165675pt;}
.y29d{bottom:305.650533pt;}
.y2ca{bottom:305.661200pt;}
.y26e{bottom:305.837067pt;}
.y90{bottom:305.847733pt;}
.y62{bottom:305.847867pt;}
.yc5{bottom:308.467333pt;}
.y16a{bottom:309.988835pt;}
.y1f3{bottom:310.394895pt;}
.y11d{bottom:314.159678pt;}
.y13a{bottom:314.833790pt;}
.y194{bottom:315.601205pt;}
.ye1{bottom:318.614267pt;}
.yd3{bottom:319.673200pt;}
.y16b{bottom:321.764893pt;}
.y2f{bottom:323.930133pt;}
.y29c{bottom:324.322533pt;}
.y2c9{bottom:324.333200pt;}
.y26d{bottom:324.509067pt;}
.y8f{bottom:324.514400pt;}
.y61{bottom:324.514533pt;}
.yc4{bottom:324.539333pt;}
.y102{bottom:324.624902pt;}
.y17f{bottom:326.028205pt;}
.y2e1{bottom:327.832000pt;}
.yec{bottom:335.083331pt;}
.yd2{bottom:335.745200pt;}
.y1e9{bottom:335.819593pt;}
.y189{bottom:336.464784pt;}
.y2e{bottom:339.930133pt;}
.yc3{bottom:340.611333pt;}
.y169{bottom:342.693873pt;}
.y29b{bottom:342.994533pt;}
.y2c8{bottom:343.005200pt;}
.y8e{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.y105{bottom:345.555350pt;}
.y1e7{bottom:345.592336pt;}
.y18c{bottom:346.892833pt;}
.y149{bottom:350.316812pt;}
.yd1{bottom:351.817200pt;}
.y1d4{bottom:354.198095pt;}
.y2d{bottom:355.930133pt;}
.y126{bottom:356.040961pt;}
.yc2{bottom:356.683333pt;}
.y19f{bottom:357.313402pt;}
.y29a{bottom:361.666533pt;}
.y2c7{bottom:361.677200pt;}
.y8d{bottom:361.847733pt;}
.y5f{bottom:361.847867pt;}
.y168{bottom:363.629867pt;}
.y20{bottom:365.176400pt;}
.y20c{bottom:366.082133pt;}
.yf4{bottom:366.499390pt;}
.y1c5{bottom:367.748932pt;}
.yd0{bottom:367.889200pt;}
.y167{bottom:371.478235pt;}
.y2c{bottom:371.930133pt;}
.yc1{bottom:372.755333pt;}
.y26c{bottom:374.614133pt;}
.y1f4{bottom:375.588405pt;}
.y119{bottom:376.964614pt;}
.y181{bottom:378.183413pt;}
.y299{bottom:380.338533pt;}
.y2c6{bottom:380.349200pt;}
.y2e0{bottom:380.455867pt;}
.y8c{bottom:380.514400pt;}
.y5e{bottom:380.514533pt;}
.y1e3{bottom:382.732350pt;}
.y1f{bottom:382.780400pt;}
.ycf{bottom:384.222533pt;}
.y13d{bottom:385.805992pt;}
.yf1{bottom:387.423042pt;}
.y1ca{bottom:388.605031pt;}
.yc0{bottom:388.827333pt;}
.y1e8{bottom:392.894087pt;}
.y166{bottom:395.030352pt;}
.y11c{bottom:397.901857pt;}
.y298{bottom:399.010533pt;}
.y2c5{bottom:399.021200pt;}
.y1af{bottom:399.033080pt;}
.y2df{bottom:399.127867pt;}
.y8b{bottom:399.181067pt;}
.y5d{bottom:399.181200pt;}
.y21c{bottom:399.469600pt;}
.ybf{bottom:404.899333pt;}
.y1f5{bottom:407.576894pt;}
.y104{bottom:408.360286pt;}
.y18b{bottom:409.476091pt;}
.yce{bottom:410.317600pt;}
.y14b{bottom:410.921800pt;}
.y16e{bottom:411.296000pt;}
.y21b{bottom:417.073600pt;}
.y297{bottom:417.682533pt;}
.y2c4{bottom:417.693200pt;}
.y2de{bottom:417.799867pt;}
.y26b{bottom:417.842400pt;}
.y8a{bottom:417.847733pt;}
.y5c{bottom:417.847867pt;}
.yff{bottom:418.832305pt;}
.y1e{bottom:419.226000pt;}
.y1b2{bottom:419.896659pt;}
.ybe{bottom:420.971333pt;}
.y1f7{bottom:427.743212pt;}
.y118{bottom:429.297529pt;}
.y138{bottom:429.525521pt;}
.y193{bottom:430.339670pt;}
.y21a{bottom:434.677600pt;}
.y1f6{bottom:435.564873pt;}
.y296{bottom:436.354533pt;}
.y2c3{bottom:436.365200pt;}
.y2dd{bottom:436.471867pt;}
.y89{bottom:436.514400pt;}
.y5b{bottom:436.514533pt;}
.y1d{bottom:436.830000pt;}
.ybd{bottom:437.043333pt;}
.y163{bottom:439.518462pt;}
.y10b{bottom:439.762753pt;}
.y186{bottom:440.775200pt;}
.y17a{bottom:443.914678pt;}
.ye4{bottom:450.221182pt;}
.y1a5{bottom:451.180807pt;}
.y219{bottom:452.281600pt;}
.ybc{bottom:453.115333pt;}
.y164{bottom:453.910643pt;}
.y1c{bottom:454.434000pt;}
.y295{bottom:455.026533pt;}
.y2c2{bottom:455.037200pt;}
.y2dc{bottom:455.143867pt;}
.y88{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.y26a{bottom:460.026000pt;}
.y10f{bottom:460.699997pt;}
.y1b7{bottom:461.623818pt;}
.y1ed{bottom:466.695353pt;}
.y162{bottom:468.302824pt;}
.ybb{bottom:469.187333pt;}
.y1f8{bottom:469.463939pt;}
.y218{bottom:469.885600pt;}
.y113{bottom:471.165221pt;}
.y143{bottom:471.178857pt;}
.y1e5{bottom:471.644562pt;}
.y1b{bottom:472.038000pt;}
.y1b1{bottom:472.051867pt;}
.y294{bottom:473.698533pt;}
.y2c1{bottom:473.709200pt;}
.y2db{bottom:473.815867pt;}
.y87{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.y165{bottom:475.618148pt;}
.y12b{bottom:481.650832pt;}
.y1ae{bottom:482.479917pt;}
.y1d5{bottom:483.386216pt;}
.y14a{bottom:483.606468pt;}
.yba{bottom:485.259333pt;}
.y255{bottom:486.614267pt;}
.y217{bottom:487.489600pt;}
.y1a{bottom:489.642000pt;}
.yfa{bottom:492.102464pt;}
.y293{bottom:492.370533pt;}
.y2c0{bottom:492.381200pt;}
.y2da{bottom:492.487867pt;}
.y269{bottom:492.509067pt;}
.y86{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.y1a4{bottom:492.907966pt;}
.y1df{bottom:492.925562pt;}
.y13e{bottom:495.713691pt;}
.y161{bottom:499.703308pt;}
.yb9{bottom:501.331333pt;}
.yee{bottom:502.560893pt;}
.y1f9{bottom:502.715748pt;}
.y1be{bottom:503.350977pt;}
.y216{bottom:505.093600pt;}
.y19{bottom:507.246000pt;}
.y1d1{bottom:508.491333pt;}
.y160{bottom:510.167798pt;}
.y292{bottom:511.042533pt;}
.y2bf{bottom:511.053200pt;}
.y2d9{bottom:511.159867pt;}
.y268{bottom:511.175733pt;}
.y85{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y111{bottom:513.039708pt;}
.y1c2{bottom:513.779026pt;}
.y131{bottom:516.415502pt;}
.yb8{bottom:517.403333pt;}
.y115{bottom:523.498136pt;}
.y252{bottom:523.947600pt;}
.y1bc{bottom:524.214556pt;}
.y18{bottom:524.850000pt;}
.y291{bottom:529.714533pt;}
.y2be{bottom:529.725200pt;}
.y2d8{bottom:529.831867pt;}
.y267{bottom:529.842400pt;}
.y84{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.yb7{bottom:533.475333pt;}
.y106{bottom:533.970156pt;}
.y1a6{bottom:534.627644pt;}
.y1fa{bottom:539.874488pt;}
.y15f{bottom:541.568282pt;}
.y17{bottom:542.454000pt;}
.y1ea{bottom:544.009539pt;}
.y123{bottom:544.448971pt;}
.y19c{bottom:545.070655pt;}
.y1eb{bottom:547.402769pt;}
.y290{bottom:548.386533pt;}
.y2bd{bottom:548.397200pt;}
.y2d7{bottom:548.503867pt;}
.y83{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.yb6{bottom:549.547333pt;}
.ye9{bottom:554.900604pt;}
.y1b3{bottom:555.498704pt;}
.y16{bottom:560.058000pt;}
.y1fb{bottom:562.044961pt;}
.y137{bottom:565.065846pt;}
.y127{bottom:565.386215pt;}
.yb5{bottom:565.619333pt;}
.y187{bottom:565.949195pt;}
.y28f{bottom:567.058533pt;}
.y2bc{bottom:567.069200pt;}
.y2d6{bottom:567.175867pt;}
.y82{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.y175{bottom:569.359333pt;}
.y179{bottom:569.370937pt;}
.y266{bottom:572.026000pt;}
.y1fc{bottom:573.781352pt;}
.yf2{bottom:575.837848pt;}
.y1c0{bottom:576.362283pt;}
.y15{bottom:577.662000pt;}
.yb4{bottom:581.691333pt;}
.y15e{bottom:583.440270pt;}
.y28e{bottom:585.730533pt;}
.y2bb{bottom:585.741200pt;}
.y81{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.yfc{bottom:586.309867pt;}
.y1ce{bottom:586.790333pt;}
.y14{bottom:595.266000pt;}
.ye8{bottom:596.768296pt;}
.y18f{bottom:597.240824pt;}
.yb3{bottom:597.763333pt;}
.y1fe{bottom:602.463377pt;}
.y28d{bottom:604.402533pt;}
.y2ba{bottom:604.413200pt;}
.y265{bottom:604.498400pt;}
.y80{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.yfe{bottom:607.240315pt;}
.y1c1{bottom:607.653912pt;}
.y14f{bottom:609.214490pt;}
.y13{bottom:612.870000pt;}
.yb2{bottom:613.835333pt;}
.y22f{bottom:616.452533pt;}
.y117{bottom:617.705539pt;}
.y19a{bottom:618.089442pt;}
.y15d{bottom:622.689122pt;}
.y28c{bottom:623.074533pt;}
.y2b9{bottom:623.085200pt;}
.y264{bottom:623.170400pt;}
.y51{bottom:623.181200pt;}
.y1ec{bottom:624.292053pt;}
.y1fd{bottom:627.105899pt;}
.y100{bottom:628.177559pt;}
.y1c9{bottom:628.517491pt;}
.yb1{bottom:629.907333pt;}
.y12{bottom:630.474000pt;}
.y148{bottom:632.346372pt;}
.y22e{bottom:635.123200pt;}
.y7f{bottom:635.947467pt;}
.y147{bottom:637.962173pt;}
.yf7{bottom:638.649578pt;}
.y19b{bottom:638.953021pt;}
.y28b{bottom:641.746533pt;}
.y2b8{bottom:641.757200pt;}
.y263{bottom:641.842400pt;}
.y50{bottom:641.847867pt;}
.y1de{bottom:643.532328pt;}
.yb0{bottom:645.979333pt;}
.y15c{bottom:646.241238pt;}
.y1ff{bottom:646.796523pt;}
.y250{bottom:648.065467pt;}
.y11{bottom:648.078000pt;}
.y12d{bottom:649.128394pt;}
.y1a7{bottom:649.373590pt;}
.y12f{bottom:650.607600pt;}
.y178{bottom:652.044059pt;}
.y251{bottom:654.614267pt;}
.y1da{bottom:657.416445pt;}
.y122{bottom:659.586822pt;}
.y197{bottom:659.816601pt;}
.y28a{bottom:660.418533pt;}
.y2b7{bottom:660.429200pt;}
.y262{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.yaf{bottom:662.051333pt;}
.y22d{bottom:663.832133pt;}
.y24f{bottom:665.669467pt;}
.yfb{bottom:670.052046pt;}
.y183{bottom:670.251082pt;}
.y10{bottom:675.720267pt;}
.yae{bottom:678.123333pt;}
.y289{bottom:679.090533pt;}
.y2b6{bottom:679.101200pt;}
.y7e{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.y13c{bottom:680.284908pt;}
.yef{bottom:680.510474pt;}
.y1c3{bottom:680.672699pt;}
.y145{bottom:680.784696pt;}
.y24e{bottom:683.273467pt;}
.y261{bottom:684.026000pt;}
.yf3{bottom:690.982494pt;}
.y192{bottom:691.115710pt;}
.yad{bottom:694.195333pt;}
.y212{bottom:696.270604pt;}
.y288{bottom:697.762533pt;}
.y2b5{bottom:697.773200pt;}
.y7d{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.y103{bottom:701.447718pt;}
.y17c{bottom:701.542711pt;}
.y132{bottom:701.720633pt;}
.y23b{bottom:701.722667pt;}
.y24d{bottom:704.549467pt;}
.y211{bottom:705.628524pt;}
.yac{bottom:710.267333pt;}
.y12c{bottom:711.926533pt;}
.y1cc{bottom:711.964328pt;}
.y15b{bottom:715.368594pt;}
.y287{bottom:716.434533pt;}
.y2b4{bottom:716.445200pt;}
.y260{bottom:716.493067pt;}
.y7c{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.y11a{bottom:722.384962pt;}
.y18d{bottom:722.407339pt;}
.y1e2{bottom:723.425848pt;}
.y200{bottom:725.192497pt;}
.yab{bottom:726.339333pt;}
.y1ac{bottom:732.820427pt;}
.yf5{bottom:732.856981pt;}
.y286{bottom:735.106533pt;}
.y2b3{bottom:735.117200pt;}
.y25f{bottom:735.165067pt;}
.y7b{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yaa{bottom:742.411333pt;}
.y240{bottom:743.084798pt;}
.y1a3{bottom:743.248476pt;}
.y134{bottom:743.260165pt;}
.y10e{bottom:743.315410pt;}
.y249{bottom:743.835848pt;}
.y157{bottom:744.833288pt;}
.y1d2{bottom:745.460900pt;}
.ya{bottom:746.192667pt;}
.y182{bottom:753.697919pt;}
.y285{bottom:753.778533pt;}
.y112{bottom:753.787429pt;}
.y2b2{bottom:753.789200pt;}
.y25e{bottom:753.837067pt;}
.y7a{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.ya9{bottom:758.483333pt;}
.y159{bottom:760.074130pt;}
.y9{bottom:762.192667pt;}
.y1d6{bottom:762.409098pt;}
.y19e{bottom:764.119536pt;}
.y11b{bottom:764.259449pt;}
.y210{bottom:767.297217pt;}
.y14d{bottom:768.185698pt;}
.y284{bottom:772.450533pt;}
.y2b1{bottom:772.461200pt;}
.y25d{bottom:772.509067pt;}
.y79{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y1aa{bottom:774.547585pt;}
.ya8{bottom:774.555333pt;}
.ye5{bottom:774.711082pt;}
.y20f{bottom:776.655137pt;}
.y8{bottom:778.192667pt;}
.y23a{bottom:780.055023pt;}
.y24b{bottom:780.798203pt;}
.y201{bottom:784.357947pt;}
.ye0{bottom:784.456533pt;}
.y1ad{bottom:784.975635pt;}
.yf0{bottom:785.183101pt;}
.y158{bottom:788.535860pt;}
.ya7{bottom:790.627333pt;}
.y283{bottom:791.122533pt;}
.y2b0{bottom:791.133200pt;}
.y78{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.y202{bottom:795.049370pt;}
.y188{bottom:795.426126pt;}
.yed{bottom:795.648325pt;}
.y15a{bottom:803.250673pt;}
.y1ab{bottom:805.839214pt;}
.y114{bottom:806.120345pt;}
.ya6{bottom:806.699333pt;}
.y135{bottom:806.887791pt;}
.y282{bottom:809.794533pt;}
.y2af{bottom:809.805200pt;}
.y77{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.ydf{bottom:813.165333pt;}
.y25c{bottom:814.692667pt;}
.y1a2{bottom:816.267263pt;}
.y10d{bottom:816.592364pt;}
.y241{bottom:817.009507pt;}
.y248{bottom:817.611423pt;}
.y20e{bottom:821.300213pt;}
.ya5{bottom:822.771333pt;}
.y203{bottom:824.121308pt;}
.y191{bottom:826.717755pt;}
.yf8{bottom:827.057588pt;}
.y281{bottom:828.466533pt;}
.y2ae{bottom:828.477200pt;}
.y76{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y20d{bottom:830.658133pt;}
.y155{bottom:834.076031pt;}
.y1e1{bottom:836.701095pt;}
.y130{bottom:836.923901pt;}
.y1cf{bottom:837.130843pt;}
.y116{bottom:837.522812pt;}
.ya4{bottom:838.843333pt;}
.y5{bottom:841.310933pt;}
.y280{bottom:847.138533pt;}
.y2ad{bottom:847.149200pt;}
.y25b{bottom:847.175867pt;}
.y75{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y1d0{bottom:847.558892pt;}
.y12e{bottom:848.008423pt;}
.y1e6{bottom:850.663011pt;}
.y23d{bottom:853.983333pt;}
.y1d3{bottom:854.080180pt;}
.y156{bottom:854.282597pt;}
.y243{bottom:854.580225pt;}
.ya3{bottom:854.915333pt;}
.y1ba{bottom:858.001903pt;}
.y10a{bottom:858.453260pt;}
.y1e4{bottom:859.544059pt;}
.y154{bottom:865.476515pt;}
.y27f{bottom:865.810533pt;}
.y2ac{bottom:865.821200pt;}
.y74{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y1a8{bottom:868.422471pt;}
.y10c{bottom:868.925280pt;}
.ya2{bottom:870.987333pt;}
.y4{bottom:874.034267pt;}
.y1d8{bottom:874.523346pt;}
.y254{bottom:878.614267pt;}
.y196{bottom:878.865482pt;}
.y12a{bottom:879.410891pt;}
.y27e{bottom:884.482533pt;}
.y2ab{bottom:884.493200pt;}
.y73{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.y204{bottom:886.702398pt;}
.ya1{bottom:887.059333pt;}
.y17d{bottom:889.299963pt;}
.y25a{bottom:889.359333pt;}
.y11e{bottom:889.862524pt;}
.y23f{bottom:890.945688pt;}
.y24a{bottom:891.547603pt;}
.y153{bottom:894.302959pt;}
.y14c{bottom:896.006335pt;}
.y1a0{bottom:899.721581pt;}
.y125{bottom:900.341339pt;}
.ya0{bottom:903.131333pt;}
.y27d{bottom:903.154533pt;}
.y2aa{bottom:903.165200pt;}
.y72{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y1e0{bottom:907.773413pt;}
.y17e{bottom:910.156062pt;}
.y107{bottom:910.792972pt;}
.yde{bottom:915.947600pt;}
.y152{bottom:917.714801pt;}
.y205{bottom:917.996843pt;}
.y9f{bottom:919.203333pt;}
.y1b6{bottom:920.585160pt;}
.yfd{bottom:921.264991pt;}
.y27c{bottom:921.826533pt;}
.y2a9{bottom:921.837200pt;}
.y71{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y1ee{bottom:921.890927pt;}
.y239{bottom:927.915912pt;}
.y207{bottom:928.423125pt;}
.y242{bottom:928.504933pt;}
.y139{bottom:930.832274pt;}
.y198{bottom:931.020690pt;}
.y109{bottom:931.730215pt;}
.y177{bottom:931.819839pt;}
.y2{bottom:932.695600pt;}
.y9e{bottom:935.536667pt;}
.y151{bottom:938.798083pt;}
.y206{bottom:938.857206pt;}
.y27b{bottom:940.498533pt;}
.y2a8{bottom:940.509200pt;}
.y70{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y195{bottom:941.456220pt;}
.y124{bottom:942.209030pt;}
.y9d{bottom:943.376667pt;}
.y259{bottom:945.359333pt;}
.y140{bottom:948.294000pt;}
.y1b5{bottom:951.876789pt;}
.y101{bottom:952.667459pt;}
.y176{bottom:954.391867pt;}
.y27a{bottom:959.170533pt;}
.y3f{bottom:959.181200pt;}
.y208{bottom:959.717569pt;}
.y1cd{bottom:962.304838pt;}
.ye6{bottom:963.125887pt;}
.y238{bottom:964.878267pt;}
.y245{bottom:965.469867pt;}
.y141{bottom:965.494400pt;}
.y6f{bottom:970.692667pt;}
.y17b{bottom:972.746800pt;}
.y13f{bottom:973.578688pt;}
.y11f{bottom:973.604702pt;}
.y1db{bottom:974.285516pt;}
.y9c{bottom:977.314133pt;}
.y279{bottom:977.842533pt;}
.y3e{bottom:977.847867pt;}
.y1a1{bottom:983.160937pt;}
.yea{bottom:984.063131pt;}
.y13b{bottom:984.603707pt;}
.yf{bottom:986.502667pt;}
.y150{bottom:990.643600pt;}
.y253{bottom:990.952800pt;}
.y1cb{bottom:993.596467pt;}
.y1d9{bottom:993.813049pt;}
.ye7{bottom:994.528355pt;}
.y9b{bottom:994.918133pt;}
.y142{bottom:995.726220pt;}
.y3d{bottom:996.514533pt;}
.y6e{bottom:999.401467pt;}
.y258{bottom:1000.401600pt;}
.y209{bottom:1001.438296pt;}
.y23e{bottom:1001.844223pt;}
.y247{bottom:1002.434667pt;}
.y180{bottom:1004.038429pt;}
.yf9{bottom:1005.007170pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h1b{height:15.830797pt;}
.h22{height:17.426961pt;}
.h1a{height:19.788787pt;}
.h19{height:19.815970pt;}
.h1c{height:20.423991pt;}
.h1f{height:21.783701pt;}
.h20{height:21.813624pt;}
.h25{height:21.835147pt;}
.h23{height:22.708553pt;}
.h15{height:29.731771pt;}
.h17{height:30.333333pt;}
.h29{height:30.567458pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h16{height:32.611979pt;}
.h26{height:33.451963pt;}
.h11{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h28{height:37.789547pt;}
.h8{height:38.226562pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.hb{height:39.000000pt;}
.h1e{height:39.794458pt;}
.ha{height:41.929688pt;}
.h2b{height:41.951021pt;}
.h18{height:41.970180pt;}
.h2c{height:41.972354pt;}
.h9{height:42.083333pt;}
.h2d{height:42.399021pt;}
.he{height:43.333333pt;}
.h13{height:44.601562pt;}
.h1d{height:45.482158pt;}
.h12{height:46.291667pt;}
.hd{height:46.588542pt;}
.h2a{height:48.964792pt;}
.hc{height:50.500000pt;}
.h4{height:51.247396pt;}
.h14{height:61.129104pt;}
.h3{height:72.205729pt;}
.h27{height:313.458667pt;}
.h24{height:889.566667pt;}
.h21{height:889.620000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:609.645333pt;}
.w3{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xaf{left:2.525200pt;}
.x2{left:65.763733pt;}
.xa{left:95.171067pt;}
.xab{left:96.060000pt;}
.xf{left:99.771733pt;}
.xa4{left:103.140133pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xad{left:133.804933pt;}
.xd{left:157.218400pt;}
.x14{left:159.685867pt;}
.x15{left:163.344533pt;}
.x11{left:171.651200pt;}
.x13{left:176.616533pt;}
.x12{left:179.528533pt;}
.x10{left:182.151200pt;}
.x56{left:183.913067pt;}
.x55{left:192.435280pt;}
.x53{left:194.191335pt;}
.x57{left:195.941067pt;}
.x58{left:198.714963pt;}
.x51{left:208.592109pt;}
.x5f{left:212.153821pt;}
.x9d{left:221.152787pt;}
.xac{left:229.804933pt;}
.x4f{left:234.284207pt;}
.x9c{left:238.389452pt;}
.x4b{left:243.439184pt;}
.x61{left:247.124267pt;}
.x62{left:248.718796pt;}
.x2a{left:252.639297pt;}
.x63{left:254.317688pt;}
.x2d{left:255.736163pt;}
.x1b{left:259.888619pt;}
.x42{left:261.629295pt;}
.x30{left:262.538081pt;}
.x5c{left:263.907124pt;}
.x1a{left:264.803057pt;}
.x4{left:266.834667pt;}
.x34{left:269.479813pt;}
.x64{left:270.789685pt;}
.x40{left:272.779408pt;}
.x3f{left:274.708832pt;}
.x47{left:280.601964pt;}
.xc{left:281.941333pt;}
.x29{left:283.517072pt;}
.xa5{left:285.213067pt;}
.x35{left:286.942499pt;}
.x95{left:287.892012pt;}
.x9b{left:289.539817pt;}
.x94{left:290.509846pt;}
.x98{left:291.809436pt;}
.x37{left:295.806664pt;}
.x52{left:303.737878pt;}
.x54{left:309.895258pt;}
.x92{left:311.601754pt;}
.x4e{left:312.596451pt;}
.xa3{left:314.805750pt;}
.x4a{left:317.428400pt;}
.xa1{left:319.707273pt;}
.x96{left:322.129054pt;}
.x97{left:330.113137pt;}
.x6e{left:331.836364pt;}
.xa2{left:332.743240pt;}
.x99{left:335.050335pt;}
.x91{left:339.141867pt;}
.x5b{left:340.256389pt;}
.x93{left:342.300678pt;}
.x6f{left:345.602712pt;}
.x3{left:352.045067pt;}
.x5a{left:354.316018pt;}
.x9f{left:357.138547pt;}
.x3e{left:358.156420pt;}
.x9e{left:359.168147pt;}
.x24{left:360.966668pt;}
.x60{left:365.109607pt;}
.xa0{left:366.805218pt;}
.x88{left:368.111160pt;}
.x65{left:369.448507pt;}
.x83{left:371.002542pt;}
.x68{left:373.243632pt;}
.x86{left:377.080663pt;}
.x84{left:378.355359pt;}
.x7b{left:379.327060pt;}
.x71{left:380.350473pt;}
.x90{left:381.619823pt;}
.x7c{left:383.197782pt;}
.x9a{left:384.422314pt;}
.x7a{left:385.475134pt;}
.x81{left:387.270454pt;}
.x7e{left:388.483104pt;}
.x7f{left:390.908000pt;}
.x8a{left:394.257962pt;}
.x79{left:395.455067pt;}
.x22{left:396.905685pt;}
.x89{left:399.115795pt;}
.x4c{left:400.773924pt;}
.x2c{left:404.497549pt;}
.x8f{left:405.761311pt;}
.x8c{left:406.950509pt;}
.x38{left:407.957929pt;}
.x70{left:408.950997pt;}
.x7d{left:410.020794pt;}
.x4d{left:411.802400pt;}
.x67{left:413.691296pt;}
.x85{left:414.754132pt;}
.x66{left:420.119920pt;}
.x32{left:421.121355pt;}
.x1f{left:422.554441pt;}
.x69{left:424.448960pt;}
.x50{left:425.822881pt;}
.x28{left:428.706228pt;}
.x8d{left:430.928774pt;}
.x8e{left:432.211242pt;}
.x23{left:435.263473pt;}
.x20{left:437.500487pt;}
.x43{left:439.227181pt;}
.x87{left:441.219608pt;}
.x25{left:442.393953pt;}
.x82{left:444.398574pt;}
.x8b{left:447.289957pt;}
.x6a{left:450.213963pt;}
.x26{left:452.621299pt;}
.x80{left:453.756705pt;}
.x1c{left:455.200855pt;}
.x59{left:456.156050pt;}
.x5d{left:460.003713pt;}
.x39{left:461.107968pt;}
.x49{left:463.617617pt;}
.x27{left:465.288387pt;}
.x19{left:468.217476pt;}
.x3d{left:471.125593pt;}
.x33{left:475.676517pt;}
.x1d{left:480.003740pt;}
.x44{left:483.373241pt;}
.x6b{left:484.507175pt;}
.x3c{left:487.099267pt;}
.x5e{left:489.453994pt;}
.x2e{left:494.740065pt;}
.x21{left:496.417825pt;}
.x6d{left:497.537585pt;}
.x3b{left:501.073609pt;}
.x6c{left:502.501551pt;}
.x2f{left:503.946773pt;}
.xb{left:515.064400pt;}
.x36{left:516.585899pt;}
.x3a{left:519.081567pt;}
.x18{left:520.228036pt;}
.x46{left:521.563253pt;}
.x2b{left:524.534287pt;}
.xe{left:525.642400pt;}
.x17{left:530.091867pt;}
.x48{left:531.161439pt;}
.x41{left:533.398452pt;}
.x31{left:540.067548pt;}
.x45{left:543.458021pt;}
.x1e{left:544.653425pt;}
.xa6{left:552.943333pt;}
.xa8{left:570.278880pt;}
.x9{left:577.048267pt;}
.xa7{left:579.379457pt;}
.xa9{left:581.976280pt;}
.x8{left:593.026933pt;}
.x74{left:601.029333pt;}
.x76{left:615.860434pt;}
.x75{left:618.458518pt;}
.xb0{left:624.379467pt;}
.xae{left:626.486000pt;}
.x77{left:633.791621pt;}
.x78{left:634.786820pt;}
.x72{left:653.955867pt;}
.x16{left:679.748267pt;}
.x73{left:710.073600pt;}
.xaa{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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