
    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_bfa07a857a9e0fd67cb09b46.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8dd567b16499ae12ca7e935b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.805000;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_4d05c23be2cf57d92e299817.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_56b8239151d2419573681920.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8552ae4600f0f657071fa153.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3e621ec8bfacc5cb69852567.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c06475b15b909c311cb3615.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f4719d3f7ad09c5c08964540.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_33297f61ae6e3787bc4a0af3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.860000;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_6f2dee30166c679185004d8e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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_a5a4f7d078ee57a483472fb2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_20a6384a7bf687bc86b54287.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7cc9aabad5214d57894e61ce.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9f723c9258d66c4510c3a1ff.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b25bbeced87af1bbf50b7c1b.woff')format("woff");}.fff{font-family:fff;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9021c921fef1fc804bea2588.woff')format("woff");}.ff10{font-family:ff10;line-height:0.959000;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_31754da1e6ed4e504e059038.woff')format("woff");}.ff11{font-family:ff11;line-height:0.959000;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_19d99f8ddd848289b5da7bb4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.959000;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_1fc0c6a2d5f878f713223a55.woff')format("woff");}.ff13{font-family:ff13;line-height:0.959000;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_d304929a1b9c50a46e9646ee.woff')format("woff");}.ff14{font-family:ff14;line-height:0.899000;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_1d4908f8fd31e9d115c47362.woff')format("woff");}.ff15{font-family:ff15;line-height:0.752000;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_a50b0b5a567cdc4d00e873cd.woff')format("woff");}.ff16{font-family:ff16;line-height:0.954000;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_b78b1038c3987f0bc9fe7fe7.woff')format("woff");}.ff17{font-family:ff17;line-height:0.752000;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_a50b0b5a567cdc4d00e873cd.woff')format("woff");}.ff18{font-family:ff18;line-height:0.954000;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_fcb5cac1955cb00e8758339f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.764000;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_a50b0b5a567cdc4d00e873cd.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.954000;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_52d88f4188a23df109008249.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.752000;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_a50b0b5a567cdc4d00e873cd.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.954000;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_8d626d08a2e5aec177a5ec4d.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.399000;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_525efc59cf704a30ee7656b3.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.596000;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_dc76228dd12dc9ed16796f68.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;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_e655a789da3fdb098c41e209.woff')format("woff");}.ff20{font-family:ff20;line-height:0.947000;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_d2aa341f0d19f00e062b0834.woff')format("woff");}.ff21{font-family:ff21;line-height:0.959000;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_40e9a00b140ead5ee7ffc885.woff')format("woff");}.ff22{font-family:ff22;line-height:0.628000;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_4e90de762699a956717739ca.woff')format("woff");}.ff23{font-family:ff23;line-height:2.531000;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_5011dfdf7bc45bfe4ef5e461.woff')format("woff");}.ff24{font-family:ff24;line-height:0.905000;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_c1f5710f6b1188decf2baa04.woff')format("woff");}.ff25{font-family:ff25;line-height:0.685000;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:ff26;src:url('chunks/assets/font_743598615193da9a53847a9a.woff')format("woff");}.ff26{font-family:ff26;line-height:0.685000;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:ff27;src:url('chunks/assets/font_63f8b58e377331a72cdb90bc.woff')format("woff");}.ff27{font-family:ff27;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_5a846807c3664ccdb45813de.woff')format("woff");}.ff28{font-family:ff28;line-height:0.894000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v13{vertical-align:-56.316000px;}
.v16{vertical-align:-44.136000px;}
.v2{vertical-align:-23.748000px;}
.v3{vertical-align:-16.872000px;}
.v6{vertical-align:-15.638400px;}
.v9{vertical-align:-10.948230px;}
.v5{vertical-align:-9.816000px;}
.v10{vertical-align:-7.290000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:9.774000px;}
.v8{vertical-align:11.568000px;}
.v7{vertical-align:15.638400px;}
.va{vertical-align:18.384000px;}
.ve{vertical-align:19.590000px;}
.v1{vertical-align:23.748000px;}
.vb{vertical-align:27.024000px;}
.vd{vertical-align:31.842000px;}
.vc{vertical-align:43.206000px;}
.v14{vertical-align:46.980000px;}
.v15{vertical-align:60.732000px;}
.v11{vertical-align:69.696000px;}
.v12{vertical-align:72.918000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000780px;}
.lsa{letter-spacing:0.001002px;}
.ls52{letter-spacing:0.001050px;}
.ls15{letter-spacing:0.001597px;}
.ls22{letter-spacing:0.001603px;}
.ls8c{letter-spacing:0.001711px;}
.ls94{letter-spacing:0.001883px;}
.ls65{letter-spacing:0.002149px;}
.ls6a{letter-spacing:0.002461px;}
.ls55{letter-spacing:0.002682px;}
.ls6e{letter-spacing:0.002696px;}
.ls1a{letter-spacing:0.002700px;}
.ls32{letter-spacing:0.002706px;}
.ls19{letter-spacing:0.002712px;}
.ls4e{letter-spacing:0.003056px;}
.ls5c{letter-spacing:0.003229px;}
.ls86{letter-spacing:0.004669px;}
.ls75{letter-spacing:0.004888px;}
.ls70{letter-spacing:0.004890px;}
.ls3{letter-spacing:0.005092px;}
.ls6d{letter-spacing:0.005419px;}
.ls66{letter-spacing:0.005429px;}
.ls59{letter-spacing:0.006493px;}
.ls49{letter-spacing:0.007604px;}
.ls3b{letter-spacing:0.608539px;}
.ls8a{letter-spacing:0.667711px;}
.ls18{letter-spacing:0.869234px;}
.ls3c{letter-spacing:1.177804px;}
.ls77{letter-spacing:1.271644px;}
.ls78{letter-spacing:1.765052px;}
.ls50{letter-spacing:2.062335px;}
.ls71{letter-spacing:2.347610px;}
.ls87{letter-spacing:2.420150px;}
.ls89{letter-spacing:2.426150px;}
.ls76{letter-spacing:2.755488px;}
.ls3d{letter-spacing:2.864731px;}
.ls4f{letter-spacing:2.984915px;}
.ls93{letter-spacing:2.988532px;}
.ls5a{letter-spacing:2.988557px;}
.ls68{letter-spacing:2.989289px;}
.ls90{letter-spacing:2.990915px;}
.ls8{letter-spacing:3.385980px;}
.ls5{letter-spacing:3.391980px;}
.ls5d{letter-spacing:3.523599px;}
.ls7c{letter-spacing:3.747796px;}
.ls1b{letter-spacing:4.130154px;}
.ls45{letter-spacing:4.136154px;}
.lsd{letter-spacing:4.149372px;}
.ls33{letter-spacing:4.394783px;}
.ls30{letter-spacing:4.400783px;}
.ls85{letter-spacing:5.069159px;}
.ls91{letter-spacing:5.087403px;}
.ls80{letter-spacing:5.093403px;}
.ls4b{letter-spacing:5.443358px;}
.ls24{letter-spacing:5.978915px;}
.ls8e{letter-spacing:10.042177px;}
.ls84{letter-spacing:10.453577px;}
.ls8b{letter-spacing:10.714177px;}
.ls81{letter-spacing:10.910712px;}
.ls2c{letter-spacing:11.132700px;}
.ls2d{letter-spacing:11.135412px;}
.ls88{letter-spacing:14.543412px;}
.ls8d{letter-spacing:14.564915px;}
.ls6f{letter-spacing:18.179412px;}
.ls83{letter-spacing:18.179418px;}
.ls25{letter-spacing:18.184344px;}
.ls62{letter-spacing:18.187593px;}
.ls8f{letter-spacing:18.845412px;}
.ls29{letter-spacing:19.174344px;}
.ls2a{letter-spacing:19.175412px;}
.ls1{letter-spacing:19.622915px;}
.ls1d{letter-spacing:19.892796px;}
.ls1c{letter-spacing:19.897002px;}
.ls12{letter-spacing:20.107559px;}
.ls0{letter-spacing:20.150915px;}
.ls11{letter-spacing:20.153468px;}
.lse{letter-spacing:20.274557px;}
.ls4a{letter-spacing:20.516915px;}
.ls7e{letter-spacing:20.527610px;}
.ls58{letter-spacing:20.651418px;}
.ls2f{letter-spacing:20.732783px;}
.ls60{letter-spacing:21.424890px;}
.ls26{letter-spacing:21.710712px;}
.ls3a{letter-spacing:21.767412px;}
.ls63{letter-spacing:21.815412px;}
.ls73{letter-spacing:21.818700px;}
.ls92{letter-spacing:21.860915px;}
.ls17{letter-spacing:22.093223px;}
.ls2e{letter-spacing:22.310915px;}
.ls10{letter-spacing:22.333559px;}
.ls4d{letter-spacing:22.352915px;}
.lsf{letter-spacing:22.645559px;}
.ls28{letter-spacing:22.841412px;}
.ls27{letter-spacing:22.846344px;}
.ls7d{letter-spacing:22.885610px;}
.ls53{letter-spacing:23.048915px;}
.ls6{letter-spacing:23.320500px;}
.ls39{letter-spacing:23.612783px;}
.ls20{letter-spacing:23.633412px;}
.ls2b{letter-spacing:23.756915px;}
.ls57{letter-spacing:24.175599px;}
.ls5e{letter-spacing:24.421289px;}
.ls16{letter-spacing:24.571223px;}
.ls51{letter-spacing:24.806915px;}
.ls48{letter-spacing:24.824783px;}
.ls1e{letter-spacing:24.866915px;}
.ls5f{letter-spacing:24.949599px;}
.ls21{letter-spacing:25.091412px;}
.ls61{letter-spacing:25.826022px;}
.ls1f{letter-spacing:25.904712px;}
.ls38{letter-spacing:26.132783px;}
.ls7f{letter-spacing:26.216783px;}
.ls13{letter-spacing:26.360915px;}
.ls72{letter-spacing:26.815610px;}
.ls23{letter-spacing:27.074915px;}
.ls4{letter-spacing:27.230832px;}
.ls14{letter-spacing:27.506915px;}
.ls4c{letter-spacing:27.524915px;}
.ls44{letter-spacing:27.794915px;}
.ls64{letter-spacing:28.147599px;}
.ls54{letter-spacing:28.430783px;}
.ls31{letter-spacing:28.454783px;}
.ls6c{letter-spacing:28.631412px;}
.ls69{letter-spacing:28.631418px;}
.ls42{letter-spacing:29.402783px;}
.ls43{letter-spacing:29.435412px;}
.ls47{letter-spacing:29.822915px;}
.ls5b{letter-spacing:30.441539px;}
.ls6b{letter-spacing:31.618059px;}
.ls67{letter-spacing:31.839796px;}
.ls37{letter-spacing:32.054783px;}
.ls36{letter-spacing:32.060783px;}
.ls34{letter-spacing:33.512783px;}
.ls46{letter-spacing:33.794783px;}
.ls35{letter-spacing:38.186783px;}
.ls56{letter-spacing:43.322783px;}
.ls40{letter-spacing:49.960500px;}
.ls3f{letter-spacing:49.966500px;}
.ls41{letter-spacing:51.237372px;}
.ls82{letter-spacing:65.791289px;}
.ls3e{letter-spacing:72.668832px;}
.ls79{letter-spacing:79.849488px;}
.ls74{letter-spacing:101.869289px;}
.ls7b{letter-spacing:103.081488px;}
.ls9{letter-spacing:155.629559px;}
.lsb{letter-spacing:219.593468px;}
.lsc{letter-spacing:260.851559px;}
.ls7a{letter-spacing:1101.362712px;}
.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;}
}
.ws39{word-spacing:-65.454600px;}
.ws15c{word-spacing:-50.809387px;}
.ws7f{word-spacing:-47.275776px;}
.wsb6{word-spacing:-47.258221px;}
.ws85{word-spacing:-46.276402px;}
.ws3d{word-spacing:-42.637126px;}
.ws83{word-spacing:-42.610945px;}
.ws24{word-spacing:-36.071827px;}
.ws142{word-spacing:-33.211407px;}
.ws154{word-spacing:-31.706208px;}
.ws26{word-spacing:-28.432454px;}
.ws91{word-spacing:-18.727815px;}
.wsb9{word-spacing:-18.451815px;}
.ws36{word-spacing:-18.183288px;}
.wsb2{word-spacing:-18.126094px;}
.ws13e{word-spacing:-18.067815px;}
.ws117{word-spacing:-17.107815px;}
.ws15b{word-spacing:-15.674607px;}
.ws22{word-spacing:-15.359443px;}
.wsbb{word-spacing:-15.313815px;}
.ws157{word-spacing:-14.299815px;}
.wsa5{word-spacing:-14.111859px;}
.ws8{word-spacing:-14.111320px;}
.wscf{word-spacing:-13.555815px;}
.ws59{word-spacing:-13.363815px;}
.ws53{word-spacing:-13.303815px;}
.wsed{word-spacing:-12.523815px;}
.ws159{word-spacing:-12.038607px;}
.wsca{word-spacing:-10.681815px;}
.ws74{word-spacing:-10.369815px;}
.ws9a{word-spacing:-8.413815px;}
.ws9e{word-spacing:-8.365815px;}
.ws4b{word-spacing:-7.729086px;}
.ws5d{word-spacing:-7.149755px;}
.ws5f{word-spacing:-7.080584px;}
.ws82{word-spacing:-6.241815px;}
.ws15e{word-spacing:-5.502149px;}
.ws15f{word-spacing:-5.484149px;}
.wsd3{word-spacing:-5.411028px;}
.wsc8{word-spacing:-3.652367px;}
.ws135{word-spacing:-3.259639px;}
.ws165{word-spacing:-2.997821px;}
.ws1e{word-spacing:-2.826197px;}
.wsa2{word-spacing:-2.736002px;}
.wsfa{word-spacing:-2.146911px;}
.wsf0{word-spacing:-1.950547px;}
.ws95{word-spacing:-1.885092px;}
.ws44{word-spacing:-1.819638px;}
.ws18{word-spacing:-1.557819px;}
.ws17{word-spacing:-1.034183px;}
.ws10{word-spacing:-0.968728px;}
.ws166{word-spacing:-0.913373px;}
.ws56{word-spacing:-0.837819px;}
.ws16e{word-spacing:-0.817732px;}
.ws10d{word-spacing:-0.772364px;}
.ws10b{word-spacing:-0.738606px;}
.wsb4{word-spacing:-0.706910px;}
.ws122{word-spacing:-0.641455px;}
.ws93{word-spacing:-0.576000px;}
.wsae{word-spacing:-0.510546px;}
.ws179{word-spacing:-0.196064px;}
.ws79{word-spacing:-0.117818px;}
.ws6f{word-spacing:-0.065455px;}
.wsd9{word-spacing:-0.053798px;}
.ws5b{word-spacing:-0.052364px;}
.ws167{word-spacing:-0.047821px;}
.ws15a{word-spacing:-0.046027px;}
.ws6{word-spacing:-0.035866px;}
.ws40{word-spacing:-0.029888px;}
.ws20{word-spacing:0.000000px;}
.ws13d{word-spacing:0.013091px;}
.wse3{word-spacing:0.134496px;}
.wsfd{word-spacing:0.340364px;}
.ws43{word-spacing:0.405819px;}
.ws37{word-spacing:0.471273px;}
.ws7a{word-spacing:0.536728px;}
.ws90{word-spacing:0.602182px;}
.ws145{word-spacing:0.625370px;}
.ws12c{word-spacing:0.661477px;}
.ws12e{word-spacing:0.667637px;}
.ws127{word-spacing:0.733092px;}
.ws97{word-spacing:0.798546px;}
.ws38{word-spacing:0.864001px;}
.ws47{word-spacing:0.929455px;}
.ws8b{word-spacing:0.994910px;}
.ws3c{word-spacing:1.060365px;}
.wsb5{word-spacing:1.125819px;}
.ws148{word-spacing:1.165370px;}
.wsb7{word-spacing:1.181747px;}
.ws12a{word-spacing:1.191274px;}
.ws119{word-spacing:1.256728px;}
.ws107{word-spacing:1.322183px;}
.ws16f{word-spacing:1.334195px;}
.ws128{word-spacing:1.387638px;}
.ws14e{word-spacing:1.399370px;}
.wsa3{word-spacing:1.453092px;}
.wsb8{word-spacing:1.584001px;}
.ws138{word-spacing:1.714911px;}
.ws31{word-spacing:1.748448px;}
.ws54{word-spacing:1.780365px;}
.ws30{word-spacing:1.802246px;}
.ws55{word-spacing:1.845820px;}
.ws2c{word-spacing:1.909843px;}
.ws92{word-spacing:1.911274px;}
.wscd{word-spacing:1.976729px;}
.wsc1{word-spacing:2.042184px;}
.wsc6{word-spacing:2.107638px;}
.ws13{word-spacing:2.173093px;}
.ws118{word-spacing:2.236261px;}
.ws116{word-spacing:2.238547px;}
.ws4f{word-spacing:2.286432px;}
.ws102{word-spacing:2.304002px;}
.ws16d{word-spacing:2.338427px;}
.ws4e{word-spacing:2.340230px;}
.ws41{word-spacing:2.434911px;}
.wsdc{word-spacing:2.501626px;}
.ws8a{word-spacing:2.565820px;}
.ws17f{word-spacing:2.577530px;}
.wsac{word-spacing:2.631275px;}
.ws60{word-spacing:2.716819px;}
.ws123{word-spacing:2.762184px;}
.ws16a{word-spacing:2.768813px;}
.wse4{word-spacing:2.770618px;}
.ws1f{word-spacing:2.816633px;}
.ws180{word-spacing:2.821974px;}
.ws17e{word-spacing:2.824837px;}
.wsbf{word-spacing:2.827639px;}
.ws17c{word-spacing:2.831007px;}
.wsdb{word-spacing:2.878214px;}
.ws96{word-spacing:2.893093px;}
.wsc0{word-spacing:2.958548px;}
.ws4d{word-spacing:2.996771px;}
.ws77{word-spacing:3.024003px;}
.wsa{word-spacing:3.039610px;}
.ws88{word-spacing:3.089457px;}
.ws21{word-spacing:3.093408px;}
.wsad{word-spacing:3.154912px;}
.ws144{word-spacing:3.220366px;}
.ws17a{word-spacing:3.247019px;}
.ws1b{word-spacing:3.285821px;}
.ws3a{word-spacing:3.351276px;}
.ws45{word-spacing:3.380574px;}
.ws46{word-spacing:3.416730px;}
.ws130{word-spacing:3.419971px;}
.ws7e{word-spacing:3.482185px;}
.wsb3{word-spacing:3.547639px;}
.ws14{word-spacing:3.613094px;}
.ws94{word-spacing:3.628848px;}
.ws158{word-spacing:3.634818px;}
.ws134{word-spacing:3.647783px;}
.ws6a{word-spacing:3.678549px;}
.wse2{word-spacing:3.738989px;}
.ws6b{word-spacing:3.744003px;}
.ws17d{word-spacing:3.773045px;}
.ws49{word-spacing:3.940367px;}
.wsba{word-spacing:4.005822px;}
.ws2f{word-spacing:4.007981px;}
.ws9c{word-spacing:4.071276px;}
.ws16c{word-spacing:4.107790px;}
.ws86{word-spacing:4.136731px;}
.ws84{word-spacing:4.202185px;}
.ws177{word-spacing:4.251251px;}
.ws2e{word-spacing:4.276973px;}
.ws11b{word-spacing:4.285884px;}
.ws78{word-spacing:4.333095px;}
.ws67{word-spacing:4.398549px;}
.ws149{word-spacing:4.464004px;}
.ws62{word-spacing:4.518534px;}
.wsa6{word-spacing:4.529458px;}
.ws61{word-spacing:4.545965px;}
.ws70{word-spacing:4.594913px;}
.wse6{word-spacing:4.660368px;}
.ws104{word-spacing:4.725822px;}
.ws168{word-spacing:4.777278px;}
.ws34{word-spacing:4.856731px;}
.ws63{word-spacing:4.868755px;}
.ws6e{word-spacing:4.922186px;}
.ws155{word-spacing:5.050209px;}
.ws156{word-spacing:5.053095px;}
.ws51{word-spacing:5.118550px;}
.wsf2{word-spacing:5.136112px;}
.ws32{word-spacing:5.184004px;}
.ws120{word-spacing:5.314914px;}
.ws175{word-spacing:5.351125px;}
.ws152{word-spacing:5.511277px;}
.ws2d{word-spacing:5.514336px;}
.wsf4{word-spacing:5.525971px;}
.wsde{word-spacing:5.568134px;}
.wsd1{word-spacing:5.642187px;}
.wsc5{word-spacing:5.707641px;}
.wsce{word-spacing:5.773096px;}
.wsd7{word-spacing:5.783328px;}
.wsd0{word-spacing:5.788821px;}
.wsb{word-spacing:5.838550px;}
.ws13c{word-spacing:5.847495px;}
.ws72{word-spacing:5.904005px;}
.ws17b{word-spacing:5.924972px;}
.ws3b{word-spacing:5.969460px;}
.ws58{word-spacing:5.986818px;}
.ws5a{word-spacing:5.996522px;}
.ws11{word-spacing:6.034914px;}
.ws16{word-spacing:6.100369px;}
.ws52{word-spacing:6.165823px;}
.ws125{word-spacing:6.209971px;}
.wseb{word-spacing:6.231278px;}
.wsb0{word-spacing:6.296733px;}
.wsb1{word-spacing:6.322697px;}
.ws1d{word-spacing:6.362187px;}
.ws76{word-spacing:6.427642px;}
.wsd8{word-spacing:6.428909px;}
.wsda{word-spacing:6.482707px;}
.ws89{word-spacing:6.493096px;}
.wsaf{word-spacing:6.539971px;}
.wsfe{word-spacing:6.558551px;}
.ws50{word-spacing:6.624006px;}
.ws139{word-spacing:6.689460px;}
.ws1c{word-spacing:6.754915px;}
.ws169{word-spacing:6.785743px;}
.wsee{word-spacing:6.814845px;}
.wsef{word-spacing:6.820369px;}
.ws178{word-spacing:6.833564px;}
.ws9f{word-spacing:6.866549px;}
.wsf{word-spacing:6.885824px;}
.ws124{word-spacing:6.951279px;}
.ws7c{word-spacing:7.016733px;}
.ws173{word-spacing:7.024846px;}
.ws7d{word-spacing:7.082188px;}
.ws68{word-spacing:7.147642px;}
.wsd6{word-spacing:7.235885px;}
.wsab{word-spacing:7.278552px;}
.ws132{word-spacing:7.344006px;}
.ws19{word-spacing:7.409461px;}
.ws153{word-spacing:7.421842px;}
.wsa4{word-spacing:7.445943px;}
.ws13b{word-spacing:7.474915px;}
.ws162{word-spacing:7.540370px;}
.ws108{word-spacing:7.605825px;}
.wsbd{word-spacing:7.671279px;}
.ws176{word-spacing:7.694335px;}
.ws12f{word-spacing:7.733971px;}
.ws87{word-spacing:7.736734px;}
.ws15d{word-spacing:7.745971px;}
.ws12b{word-spacing:7.802188px;}
.ws11d{word-spacing:7.867643px;}
.ws3f{word-spacing:7.933098px;}
.ws12{word-spacing:8.194916px;}
.ws10f{word-spacing:8.391280px;}
.ws5{word-spacing:8.416426px;}
.ws129{word-spacing:8.453971px;}
.ws57{word-spacing:8.456734px;}
.wsd5{word-spacing:8.468771px;}
.ws48{word-spacing:8.522189px;}
.ws2a{word-spacing:8.540953px;}
.wse1{word-spacing:8.548120px;}
.wse0{word-spacing:8.548487px;}
.wsd{word-spacing:8.587644px;}
.wsc9{word-spacing:8.653098px;}
.wscb{word-spacing:8.662261px;}
.wsc{word-spacing:8.784007px;}
.ws109{word-spacing:8.849462px;}
.ws126{word-spacing:8.914917px;}
.ws73{word-spacing:8.980371px;}
.ws75{word-spacing:9.001513px;}
.ws1a{word-spacing:9.111280px;}
.ws163{word-spacing:9.176735px;}
.ws35{word-spacing:9.242190px;}
.ws10c{word-spacing:9.305971px;}
.wse{word-spacing:9.307644px;}
.ws8f{word-spacing:9.373099px;}
.ws143{word-spacing:9.408486px;}
.wsaa{word-spacing:9.438553px;}
.wsa8{word-spacing:9.504008px;}
.ws6c{word-spacing:9.569463px;}
.ws0{word-spacing:9.589000px;}
.ws6d{word-spacing:9.634917px;}
.ws14b{word-spacing:9.635971px;}
.ws8d{word-spacing:9.697456px;}
.ws8c{word-spacing:9.700372px;}
.wsff{word-spacing:9.765826px;}
.ws100{word-spacing:9.831281px;}
.ws146{word-spacing:9.890451px;}
.wscc{word-spacing:9.896736px;}
.ws147{word-spacing:9.898848px;}
.wsbe{word-spacing:9.944717px;}
.wsf9{word-spacing:9.962190px;}
.wsf8{word-spacing:10.027645px;}
.ws133{word-spacing:10.093099px;}
.wsc7{word-spacing:10.158554px;}
.ws161{word-spacing:10.289463px;}
.wsf6{word-spacing:10.354918px;}
.ws71{word-spacing:10.420372px;}
.ws65{word-spacing:10.534255px;}
.ws66{word-spacing:10.551282px;}
.ws14f{word-spacing:10.672242px;}
.ws13a{word-spacing:10.682191px;}
.wsc4{word-spacing:10.691971px;}
.ws3{word-spacing:10.693584px;}
.ws33{word-spacing:10.878555px;}
.ws99{word-spacing:10.903342px;}
.ws98{word-spacing:10.911973px;}
.ws9b{word-spacing:10.944009px;}
.ws10e{word-spacing:11.093971px;}
.ws8e{word-spacing:11.140373px;}
.ws10a{word-spacing:11.162717px;}
.ws106{word-spacing:11.205828px;}
.ws103{word-spacing:11.271282px;}
.ws174{word-spacing:11.280880px;}
.ws141{word-spacing:11.284269px;}
.ws101{word-spacing:11.336737px;}
.ws2{word-spacing:11.390538px;}
.ws42{word-spacing:11.402191px;}
.ws7{word-spacing:11.550516px;}
.wse9{word-spacing:11.598555px;}
.ws64{word-spacing:11.664010px;}
.ws9{word-spacing:11.819508px;}
.ws69{word-spacing:11.860374px;}
.ws14c{word-spacing:11.957971px;}
.wsa0{word-spacing:12.056737px;}
.wsd4{word-spacing:12.077741px;}
.wsfb{word-spacing:12.318556px;}
.ws11f{word-spacing:12.347943px;}
.ws172{word-spacing:12.380753px;}
.wsa1{word-spacing:12.384010px;}
.ws150{word-spacing:12.449465px;}
.wse7{word-spacing:12.711283px;}
.wsf5{word-spacing:12.776738px;}
.wsa7{word-spacing:12.973102px;}
.ws81{word-spacing:13.104011px;}
.ws11e{word-spacing:13.693102px;}
.ws131{word-spacing:13.889971px;}
.ws113{word-spacing:14.151285px;}
.wsc2{word-spacing:14.282194px;}
.ws110{word-spacing:15.449971px;}
.ws9d{word-spacing:15.591286px;}
.ws115{word-spacing:15.714112px;}
.wsf1{word-spacing:16.184658px;}
.ws16b{word-spacing:16.899087px;}
.ws112{word-spacing:17.288658px;}
.ws7b{word-spacing:17.996118px;}
.ws12d{word-spacing:18.794118px;}
.ws111{word-spacing:18.851971px;}
.ws13f{word-spacing:19.394118px;}
.ws136{word-spacing:19.409971px;}
.ws171{word-spacing:19.462984px;}
.wse8{word-spacing:19.793971px;}
.wsdd{word-spacing:20.794675px;}
.ws170{word-spacing:20.988461px;}
.ws114{word-spacing:21.216112px;}
.wsc3{word-spacing:21.329971px;}
.wsf3{word-spacing:21.603561px;}
.ws80{word-spacing:21.620652px;}
.ws4{word-spacing:21.730927px;}
.wsbc{word-spacing:21.752118px;}
.ws1{word-spacing:21.796382px;}
.wsfc{word-spacing:22.267655px;}
.ws11c{word-spacing:22.268118px;}
.ws28{word-spacing:22.363951px;}
.ws137{word-spacing:22.808118px;}
.ws105{word-spacing:22.850652px;}
.ws164{word-spacing:24.676384px;}
.ws11a{word-spacing:24.992652px;}
.wsec{word-spacing:25.723658px;}
.ws140{word-spacing:26.213742px;}
.wse5{word-spacing:26.558118px;}
.ws151{word-spacing:26.674068px;}
.ws25{word-spacing:26.958305px;}
.wsdf{word-spacing:27.364153px;}
.wsa9{word-spacing:27.590118px;}
.ws121{word-spacing:28.954116px;}
.wsea{word-spacing:29.750118px;}
.ws14a{word-spacing:34.187943px;}
.ws27{word-spacing:36.187951px;}
.ws23{word-spacing:42.996305px;}
.ws2b{word-spacing:45.403283px;}
.ws14d{word-spacing:50.546652px;}
.ws5e{word-spacing:59.123482px;}
.ws5c{word-spacing:67.016547px;}
.wsf7{word-spacing:85.069322px;}
.ws15{word-spacing:89.394720px;}
.ws160{word-spacing:91.494579px;}
.wsd2{word-spacing:92.026267px;}
.ws3e{word-spacing:143.818150px;}
.ws29{word-spacing:202.405559px;}
.ws4c{word-spacing:228.603583px;}
.ws4a{word-spacing:236.422963px;}
._4e{margin-left:-3120.118177px;}
._64{margin-left:-3119.097471px;}
._78{margin-left:-3116.590401px;}
._1b{margin-left:-3105.097813px;}
._18{margin-left:-3104.006024px;}
._89{margin-left:-2930.888594px;}
._1{margin-left:-2889.690192px;}
._3{margin-left:-2886.272927px;}
._79{margin-left:-2855.609695px;}
._51{margin-left:-2851.495080px;}
._17{margin-left:-2839.598113px;}
._4f{margin-left:-2773.178753px;}
._98{margin-left:-2746.810130px;}
._65{margin-left:-2727.576449px;}
._aa{margin-left:-2724.178742px;}
._6b{margin-left:-2698.660316px;}
._74{margin-left:-2681.512277px;}
._7a{margin-left:-2637.366546px;}
._71{margin-left:-2615.448902px;}
._86{margin-left:-2574.717341px;}
._53{margin-left:-2521.095244px;}
._70{margin-left:-2454.767695px;}
._9{margin-left:-2448.520217px;}
._c{margin-left:-2424.859703px;}
._58{margin-left:-2380.411722px;}
._57{margin-left:-2337.780352px;}
._6f{margin-left:-2332.131956px;}
._a7{margin-left:-2287.291758px;}
._82{margin-left:-2241.453614px;}
._97{margin-left:-2214.935468px;}
._66{margin-left:-2191.037331px;}
._93{margin-left:-2177.905516px;}
._9b{margin-left:-2119.855615px;}
._4c{margin-left:-2098.207574px;}
._96{margin-left:-2096.558780px;}
._3c{margin-left:-2038.268661px;}
._31{margin-left:-1989.689781px;}
._88{margin-left:-1988.121460px;}
._a4{margin-left:-1927.889667px;}
._92{margin-left:-1899.628687px;}
._67{margin-left:-1896.038611px;}
._81{margin-left:-1888.958149px;}
._84{margin-left:-1855.239814px;}
._99{margin-left:-1829.778706px;}
._8b{margin-left:-1827.262326px;}
._9a{margin-left:-1818.645162px;}
._a5{margin-left:-1798.173972px;}
._5a{margin-left:-1795.371356px;}
._8d{margin-left:-1779.653246px;}
._85{margin-left:-1711.018874px;}
._83{margin-left:-1699.402609px;}
._a2{margin-left:-1644.867837px;}
._87{margin-left:-1625.961605px;}
._a0{margin-left:-1589.901371px;}
._a8{margin-left:-1587.575945px;}
._8c{margin-left:-1570.880196px;}
._9e{margin-left:-1549.128079px;}
._4b{margin-left:-1451.055345px;}
._59{margin-left:-1431.612042px;}
._63{margin-left:-1412.744139px;}
._a6{margin-left:-1402.240538px;}
._73{margin-left:-1361.577288px;}
._95{margin-left:-1305.698677px;}
._6a{margin-left:-1294.827174px;}
._52{margin-left:-1269.520620px;}
._94{margin-left:-1242.653851px;}
._47{margin-left:-1240.854442px;}
._9f{margin-left:-1231.861107px;}
._91{margin-left:-1194.494090px;}
._6c{margin-left:-1107.888836px;}
._8f{margin-left:-992.787990px;}
._11{margin-left:-943.270374px;}
._68{margin-left:-901.399210px;}
._62{margin-left:-860.747776px;}
._56{margin-left:-843.181734px;}
._7e{margin-left:-783.818636px;}
._4{margin-left:-770.710544px;}
._49{margin-left:-753.595181px;}
._9c{margin-left:-708.330742px;}
._a9{margin-left:-702.664560px;}
._a3{margin-left:-664.226325px;}
._7d{margin-left:-623.433636px;}
._a1{margin-left:-617.299475px;}
._7c{margin-left:-530.550943px;}
._e{margin-left:-415.626441px;}
._7f{margin-left:-414.310104px;}
._a{margin-left:-396.926102px;}
._6d{margin-left:-364.054062px;}
._2e{margin-left:-354.402794px;}
._77{margin-left:-323.788547px;}
._3a{margin-left:-255.847803px;}
._80{margin-left:-192.818283px;}
._69{margin-left:-34.977854px;}
._30{margin-left:-31.668005px;}
._b{margin-left:-27.451365px;}
._8e{margin-left:-25.867640px;}
._8a{margin-left:-24.484067px;}
._46{margin-left:-6.455390px;}
._1a{margin-left:-5.432732px;}
._d{margin-left:-4.250074px;}
._0{margin-left:-2.668393px;}
._5{margin-left:-1.018771px;}
._10{width:1.018771px;}
._2{width:2.496239px;}
._6{width:3.604421px;}
._2f{width:5.066791px;}
._1e{width:6.621412px;}
._3b{width:7.702734px;}
._14{width:9.787310px;}
._7{width:11.437168px;}
._54{width:14.404305px;}
._9d{width:15.473412px;}
._39{width:16.680903px;}
._34{width:18.050224px;}
._50{width:19.328825px;}
._33{width:20.362961px;}
._40{width:21.879847px;}
._1d{width:23.114060px;}
._f{width:24.585869px;}
._13{width:26.428413px;}
._8{width:27.476277px;}
._35{width:29.192752px;}
._43{width:30.435801px;}
._55{width:31.605396px;}
._42{width:32.825730px;}
._2c{width:34.695231px;}
._48{width:35.814160px;}
._19{width:37.228422px;}
._4a{width:38.403435px;}
._1c{width:40.038643px;}
._7b{width:41.371601px;}
._15{width:42.394860px;}
._72{width:43.598635px;}
._12{width:44.640037px;}
._4d{width:46.333072px;}
._76{width:47.524175px;}
._45{width:49.352768px;}
._2d{width:51.628434px;}
._32{width:53.234308px;}
._44{width:54.484227px;}
._3f{width:57.376682px;}
._16{width:59.024804px;}
._3e{width:66.172660px;}
._60{width:69.331467px;}
._90{width:75.172185px;}
._3d{width:83.771159px;}
._75{width:85.430072px;}
._41{width:90.068308px;}
._6e{width:92.030214px;}
._5c{width:93.925247px;}
._5b{width:100.109957px;}
._5f{width:110.055564px;}
._27{width:121.832396px;}
._23{width:135.655394px;}
._5e{width:141.448790px;}
._29{width:148.143007px;}
._61{width:154.586561px;}
._22{width:161.967007px;}
._25{width:164.423727px;}
._20{width:176.617719px;}
._28{width:178.247727px;}
._2b{width:198.835002px;}
._38{width:212.864636px;}
._37{width:220.965467px;}
._1f{width:227.401002px;}
._24{width:229.555002px;}
._26{width:231.237007px;}
._36{width:234.938932px;}
._21{width:245.060004px;}
._2a{width:287.458998px;}
._5d{width:483.181996px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,255,0);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:19.464128px;}
.fs16{font-size:24.328792px;}
.fs12{font-size:25.469728px;}
.fse{font-size:25.718544px;}
.fs1c{font-size:25.917351px;}
.fsa{font-size:27.802469px;}
.fs1{font-size:29.887800px;}
.fs10{font-size:31.347448px;}
.fs14{font-size:31.627733px;}
.fsc{font-size:31.653684px;}
.fs1b{font-size:32.985591px;}
.fs11{font-size:33.307472px;}
.fsd{font-size:33.632856px;}
.fs9{font-size:34.751131px;}
.fs15{font-size:34.791772px;}
.fs13{font-size:35.266320px;}
.fs19{font-size:35.341200px;}
.fsf{font-size:35.610840px;}
.fs4{font-size:35.865600px;}
.fs1a{font-size:38.875320px;}
.fs18{font-size:38.926553px;}
.fs1e{font-size:46.027200px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs7{font-size:55.602505px;}
.fs6{font-size:59.775600px;}
.fs8{font-size:61.164215px;}
.fsb{font-size:62.553600px;}
.fs2{font-size:65.454600px;}
.fs1d{font-size:65.754000px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y80{bottom:1.346977px;}
.y74{bottom:1.360136px;}
.ye6{bottom:2.104615px;}
.yf6{bottom:2.385531px;}
.y49{bottom:3.258000px;}
.yf4{bottom:3.436528px;}
.y7f{bottom:11.657478px;}
.y73{bottom:11.771361px;}
.ye5{bottom:13.204903px;}
.yf5{bottom:14.460441px;}
.yf3{bottom:14.536816px;}
.y81{bottom:18.796459px;}
.y75{bottom:18.980083px;}
.y48{bottom:21.546240px;}
.yf7{bottom:25.843253px;}
.yf2{bottom:30.209329px;}
.y4a{bottom:34.209000px;}
.y82{bottom:36.062261px;}
.y76{bottom:36.202623px;}
.ye7{bottom:36.924852px;}
.yf0{bottom:37.609116px;}
.y10c{bottom:42.851205px;}
.yef{bottom:46.529977px;}
.y10d{bottom:46.827090px;}
.yf8{bottom:52.702564px;}
.y83{bottom:53.328064px;}
.y77{bottom:53.425163px;}
.yee{bottom:53.828798px;}
.y10a{bottom:59.638275px;}
.y10b{bottom:63.614160px;}
.y54{bottom:64.834200px;}
.ye8{bottom:66.525703px;}
.y7d{bottom:69.614246px;}
.y89{bottom:69.675472px;}
.y84{bottom:70.593866px;}
.y78{bottom:70.647703px;}
.y108{bottom:72.449460px;}
.y109{bottom:76.425345px;}
.y5e{bottom:77.084280px;}
.yec{bottom:78.462315px;}
.yf9{bottom:79.561877px;}
.y106{bottom:85.702410px;}
.y4b{bottom:87.803100px;}
.y85{bottom:87.859669px;}
.y79{bottom:87.870044px;}
.y107{bottom:89.678295px;}
.y4f{bottom:95.459400px;}
.ye9{bottom:96.126554px;}
.y104{bottom:102.047715px;}
.y7a{bottom:105.092584px;}
.y86{bottom:105.125471px;}
.y46{bottom:105.654000px;}
.y105{bottom:106.023600px;}
.yfa{bottom:106.421188px;}
.y1c5{bottom:109.873500px;}
.y20{bottom:114.132000px;}
.y102{bottom:118.834785px;}
.y5f{bottom:119.959560px;}
.y7b{bottom:122.315124px;}
.y87{bottom:122.391274px;}
.y103{bottom:122.810670px;}
.y1c4{bottom:124.069500px;}
.yea{bottom:125.727162px;}
.y55{bottom:126.084600px;}
.y1f{bottom:129.334500px;}
.yfb{bottom:133.280501px;}
.y100{bottom:135.180090px;}
.y45{bottom:137.791500px;}
.y1c3{bottom:138.267000px;}
.y101{bottom:139.155975px;}
.y7c{bottom:139.537664px;}
.y88{bottom:139.657076px;}
.y4c{bottom:141.397200px;}
.y7e{bottom:143.472118px;}
.y8a{bottom:143.606414px;}
.yfe{bottom:151.967278px;}
.y1c2{bottom:152.463000px;}
.yeb{bottom:155.328013px;}
.yff{bottom:155.943163px;}
.y56{bottom:156.709800px;}
.yfc{bottom:160.139813px;}
.yf1{bottom:162.272354px;}
.y60{bottom:162.834840px;}
.y1c1{bottom:166.660500px;}
.y44{bottom:169.927500px;}
.yfd{bottom:170.883537px;}
.yed{bottom:173.152948px;}
.y1c0{bottom:176.638500px;}
.y65{bottom:186.064032px;}
.y57{bottom:187.335000px;}
.y53{bottom:190.758593px;}
.y1e{bottom:190.885500px;}
.y5c{bottom:190.919148px;}
.y69{bottom:193.370119px;}
.y4d{bottom:194.991300px;}
.y1bf{bottom:195.054000px;}
.y63{bottom:201.996000px;}
.y43{bottom:202.065000px;}
.ya2{bottom:202.629000px;}
.y61{bottom:205.710120px;}
.ybd{bottom:207.100500px;}
.y1be{bottom:209.250000px;}
.y51{bottom:209.815200px;}
.y5a{bottom:211.118400px;}
.y67{bottom:215.028000px;}
.y62{bottom:216.331200px;}
.y58{bottom:217.960200px;}
.y1bd{bottom:219.228000px;}
.y1d{bottom:223.023000px;}
.y50{bottom:227.408400px;}
.y59{bottom:230.014800px;}
.y42{bottom:234.202500px;}
.y66{bottom:234.576000px;}
.ya1{bottom:234.766500px;}
.y1bc{bottom:237.643500px;}
.y128{bottom:238.224000px;}
.ybc{bottom:239.238000px;}
.y64{bottom:239.977503px;}
.y155{bottom:244.146000px;}
.y4e{bottom:248.585400px;}
.y1bb{bottom:251.841000px;}
.y1c{bottom:255.160500px;}
.y52{bottom:257.382000px;}
.y1ba{bottom:261.819000px;}
.y5b{bottom:262.693930px;}
.y41{bottom:266.338500px;}
.ycf{bottom:266.340000px;}
.ya0{bottom:266.904000px;}
.y68{bottom:269.457972px;}
.y127{bottom:270.361500px;}
.ye3{bottom:270.535500px;}
.ybb{bottom:271.375500px;}
.y1b9{bottom:280.234500px;}
.y154{bottom:286.228500px;}
.y1b{bottom:287.296500px;}
.y1b8{bottom:294.430500px;}
.y40{bottom:298.476000px;}
.y9f{bottom:299.040000px;}
.y16b{bottom:300.679500px;}
.y126{bottom:302.499000px;}
.ye2{bottom:302.673000px;}
.yba{bottom:303.511500px;}
.y71{bottom:303.645000px;}
.y1b7{bottom:308.628000px;}
.y153{bottom:318.366000px;}
.y1b6{bottom:318.606000px;}
.y1a{bottom:319.434000px;}
.y3f{bottom:330.613500px;}
.y9e{bottom:331.177500px;}
.y16a{bottom:332.817000px;}
.y125{bottom:334.636500px;}
.ye1{bottom:334.809000px;}
.y70{bottom:335.782500px;}
.y13b{bottom:336.279000px;}
.y1b5{bottom:337.021500px;}
.y189{bottom:338.796000px;}
.yb9{bottom:340.684500px;}
.y152{bottom:350.503500px;}
.y1b4{bottom:351.217500px;}
.y19{bottom:351.571500px;}
.y1b3{bottom:361.195500px;}
.yce{bottom:362.751000px;}
.y9d{bottom:363.315000px;}
.y3e{bottom:364.084500px;}
.y169{bottom:364.954500px;}
.y124{bottom:366.772500px;}
.y6f{bottom:367.920000px;}
.y13a{bottom:368.416500px;}
.y188{bottom:370.932000px;}
.ye0{bottom:371.143500px;}
.yb8{bottom:372.822000px;}
.y1b2{bottom:375.393000px;}
.y151{bottom:382.639500px;}
.y18{bottom:383.709000px;}
.y1b1{bottom:393.808500px;}
.ycd{bottom:394.887000px;}
.y9c{bottom:395.452500px;}
.y3d{bottom:396.222000px;}
.y168{bottom:397.090500px;}
.y123{bottom:398.910000px;}
.y6e{bottom:400.056000px;}
.y139{bottom:400.552500px;}
.y187{bottom:403.069500px;}
.ydf{bottom:403.279500px;}
.y162{bottom:403.281000px;}
.yb7{bottom:404.958000px;}
.y1b0{bottom:408.004500px;}
.y150{bottom:414.777000px;}
.y17{bottom:415.845000px;}
.y1af{bottom:422.202000px;}
.ycc{bottom:427.024500px;}
.y9b{bottom:427.588500px;}
.y167{bottom:429.228000px;}
.y6d{bottom:432.193500px;}
.y138{bottom:432.690000px;}
.y122{bottom:435.069000px;}
.y186{bottom:435.207000px;}
.yde{bottom:435.417000px;}
.y1ae{bottom:436.398000px;}
.yb6{bottom:437.095500px;}
.y3c{bottom:437.875500px;}
.y14f{bottom:446.914500px;}
.y16{bottom:447.982500px;}
.y1ad{bottom:450.595500px;}
.ycb{bottom:459.162000px;}
.y9a{bottom:459.726000px;}
.y1ac{bottom:460.573500px;}
.y137{bottom:464.827500px;}
.y121{bottom:467.206500px;}
.y185{bottom:467.343000px;}
.ydd{bottom:467.554500px;}
.yb5{bottom:469.233000px;}
.y3b{bottom:470.011500px;}
.y166{bottom:471.750000px;}
.y1ab{bottom:474.769500px;}
.y15{bottom:480.120000px;}
.y14e{bottom:480.814500px;}
.y1aa{bottom:488.967000px;}
.y6c{bottom:490.351500px;}
.yca{bottom:491.299500px;}
.y99{bottom:492.427500px;}
.y136{bottom:496.963500px;}
.y120{bottom:499.344000px;}
.y184{bottom:499.480500px;}
.y161{bottom:499.692000px;}
.yb4{bottom:501.370500px;}
.y3a{bottom:502.149000px;}
.y1a9{bottom:503.163000px;}
.ydc{bottom:503.887500px;}
.y6b{bottom:506.043000px;}
.y1a8{bottom:507.382500px;}
.y14d{bottom:512.950500px;}
.y1a7{bottom:517.360500px;}
.y6a{bottom:521.734500px;}
.yc9{bottom:523.435500px;}
.y98{bottom:524.565000px;}
.y135{bottom:529.101000px;}
.y11f{bottom:531.481500px;}
.yb3{bottom:533.506500px;}
.y39{bottom:534.286500px;}
.y1a6{bottom:535.776000px;}
.ydb{bottom:536.025000px;}
.y160{bottom:540.220500px;}
.y182{bottom:541.854000px;}
.y14c{bottom:545.088000px;}
.y14{bottom:547.338000px;}
.y1a5{bottom:549.973500px;}
.y5d{bottom:552.369000px;}
.yc8{bottom:555.573000px;}
.y97{bottom:556.701000px;}
.y134{bottom:561.238500px;}
.y1a4{bottom:564.169500px;}
.y38{bottom:566.422500px;}
.yda{bottom:568.162500px;}
.yb2{bottom:570.679500px;}
.y15f{bottom:572.358000px;}
.y1a3{bottom:574.147500px;}
.y14b{bottom:577.225500px;}
.y180{bottom:581.031000px;}
.y181{bottom:581.032500px;}
.y183{bottom:586.150500px;}
.yc7{bottom:587.710500px;}
.y96{bottom:588.838500px;}
.y13{bottom:589.008000px;}
.y11e{bottom:589.962000px;}
.y1a2{bottom:592.563000px;}
.y133{bottom:593.376000px;}
.y37{bottom:598.560000px;}
.yd9{bottom:600.298500px;}
.yb1{bottom:602.817000px;}
.y15e{bottom:604.495500px;}
.y11d{bottom:605.653500px;}
.y1a1{bottom:606.760500px;}
.y14a{bottom:609.361500px;}
.y17f{bottom:615.106500px;}
.y1a0{bottom:616.737000px;}
.yc6{bottom:619.846500px;}
.y95{bottom:620.976000px;}
.y12{bottom:621.145500px;}
.y11c{bottom:621.343500px;}
.y132{bottom:625.512000px;}
.y17e{bottom:625.773000px;}
.y36{bottom:632.031000px;}
.yd8{bottom:632.436000px;}
.yb0{bottom:634.953000px;}
.y19f{bottom:635.154000px;}
.y15d{bottom:636.633000px;}
.y11b{bottom:637.035000px;}
.y149{bottom:643.261500px;}
.y19e{bottom:649.350000px;}
.y11a{bottom:652.726500px;}
.y94{bottom:653.113500px;}
.y11{bottom:653.281500px;}
.y131{bottom:657.649500px;}
.y17d{bottom:661.551000px;}
.y19d{bottom:663.547500px;}
.y35{bottom:664.168500px;}
.yc5{bottom:664.573500px;}
.y17c{bottom:666.448500px;}
.yaf{bottom:667.090500px;}
.y15c{bottom:668.769000px;}
.y148{bottom:675.399000px;}
.y19c{bottom:677.743500px;}
.y119{bottom:683.959500px;}
.y93{bottom:685.249500px;}
.y10{bottom:685.419000px;}
.y130{bottom:689.787000px;}
.y19b{bottom:691.941000px;}
.y34{bottom:696.306000px;}
.yc4{bottom:696.709500px;}
.y17b{bottom:698.586000px;}
.yae{bottom:699.228000px;}
.y15b{bottom:700.906500px;}
.y118{bottom:703.744500px;}
.y19a{bottom:706.137000px;}
.y147{bottom:707.536500px;}
.y92{bottom:717.387000px;}
.yf{bottom:717.556500px;}
.y199{bottom:720.334500px;}
.y12f{bottom:721.923000px;}
.y117{bottom:723.531000px;}
.y33{bottom:728.443500px;}
.yc3{bottom:728.847000px;}
.y17a{bottom:730.723500px;}
.yad{bottom:731.365500px;}
.y15a{bottom:733.044000px;}
.y198{bottom:734.530500px;}
.y146{bottom:739.674000px;}
.y116{bottom:743.316000px;}
.y197{bottom:748.728000px;}
.y91{bottom:749.524500px;}
.ye{bottom:749.692500px;}
.y12e{bottom:754.060500px;}
.y179{bottom:758.265000px;}
.y32{bottom:760.579500px;}
.yc2{bottom:760.984500px;}
.y178{bottom:762.859500px;}
.y196{bottom:762.924000px;}
.y159{bottom:765.180000px;}
.yac{bottom:768.537000px;}
.y145{bottom:771.810000px;}
.y195{bottom:772.902000px;}
.y90{bottom:781.662000px;}
.yd{bottom:781.830000px;}
.y115{bottom:789.379500px;}
.y194{bottom:791.317500px;}
.y12d{bottom:791.863500px;}
.yc1{bottom:793.122000px;}
.y177{bottom:793.951500px;}
.y175{bottom:794.350500px;}
.yd7{bottom:797.317500px;}
.yab{bottom:800.674500px;}
.y144{bottom:803.947500px;}
.y114{bottom:805.069500px;}
.y193{bottom:805.515000px;}
.y172{bottom:810.009000px;}
.y31{bottom:813.684000px;}
.y8f{bottom:813.798000px;}
.yc{bottom:813.967500px;}
.y171{bottom:814.054500px;}
.y192{bottom:819.711000px;}
.y113{bottom:820.761000px;}
.y12c{bottom:823.999500px;}
.yc0{bottom:825.258000px;}
.y30{bottom:829.375500px;}
.yd6{bottom:829.455000px;}
.y174{bottom:829.651500px;}
.y191{bottom:829.689000px;}
.yaa{bottom:832.812000px;}
.y176{bottom:834.583500px;}
.y173{bottom:834.616500px;}
.y47{bottom:835.351500px;}
.y143{bottom:836.085000px;}
.y112{bottom:836.452500px;}
.y158{bottom:837.847500px;}
.y190{bottom:843.885000px;}
.y2f{bottom:845.067000px;}
.y8e{bottom:845.935500px;}
.yb{bottom:846.105000px;}
.y111{bottom:852.144000px;}
.y12b{bottom:856.137000px;}
.ybf{bottom:857.395500px;}
.y18f{bottom:858.082500px;}
.y2e{bottom:860.757000px;}
.yd5{bottom:861.592500px;}
.y170{bottom:861.802500px;}
.ya9{bottom:864.949500px;}
.y110{bottom:867.834000px;}
.y142{bottom:868.221000px;}
.y157{bottom:869.985000px;}
.y2d{bottom:876.448500px;}
.y18e{bottom:876.498000px;}
.ya{bottom:878.241000px;}
.y10f{bottom:883.525500px;}
.y18d{bottom:886.476000px;}
.y12a{bottom:888.274500px;}
.y165{bottom:889.533000px;}
.y2c{bottom:892.140000px;}
.yd4{bottom:893.728500px;}
.y16f{bottom:893.940000px;}
.ya8{bottom:897.085500px;}
.y8d{bottom:897.499500px;}
.y10e{bottom:899.217000px;}
.y141{bottom:900.358500px;}
.ybe{bottom:902.121000px;}
.y18c{bottom:904.891500px;}
.y2b{bottom:907.831500px;}
.y8c{bottom:913.191000px;}
.y9{bottom:918.597000px;}
.y129{bottom:920.412000px;}
.yd3{bottom:925.866000px;}
.y16e{bottom:926.076000px;}
.y8b{bottom:928.882500px;}
.ye4{bottom:929.851500px;}
.y164{bottom:932.055000px;}
.y140{bottom:932.496000px;}
.ya7{bottom:934.258500px;}
.y2a{bottom:938.914500px;}
.y8{bottom:941.761500px;}
.y29{bottom:958.102500px;}
.y16d{bottom:958.213500px;}
.y72{bottom:959.517000px;}
.yd2{bottom:962.199000px;}
.y7{bottom:963.165000px;}
.y163{bottom:964.192500px;}
.y13f{bottom:964.633500px;}
.ya6{bottom:966.396000px;}
.y6{bottom:973.143000px;}
.y28{bottom:977.889000px;}
.y18b{bottom:990.351000px;}
.yd1{bottom:994.336500px;}
.y5{bottom:994.548000px;}
.y13e{bottom:996.769500px;}
.y27{bottom:997.674000px;}
.ya5{bottom:998.532000px;}
.y156{bottom:998.533500px;}
.y4{bottom:1004.526000px;}
.y26{bottom:1016.862000px;}
.y18a{bottom:1022.488500px;}
.yd0{bottom:1026.474000px;}
.y13d{bottom:1028.907000px;}
.ya4{bottom:1030.669500px;}
.y25{bottom:1036.050000px;}
.y3{bottom:1041.145500px;}
.y1ca{bottom:1042.375500px;}
.y1c9{bottom:1052.353500px;}
.y24{bottom:1055.238000px;}
.y16c{bottom:1058.211000px;}
.y13c{bottom:1061.044500px;}
.ya3{bottom:1062.807000px;}
.y2{bottom:1068.045000px;}
.y1c8{bottom:1070.769000px;}
.y23{bottom:1075.024500px;}
.y1c7{bottom:1084.966500px;}
.y22{bottom:1094.809500px;}
.y1{bottom:1094.944500px;}
.y1c6{bottom:1099.162500px;}
.y21{bottom:1133.799000px;}
.h21{height:18.027635px;}
.h27{height:19.204757px;}
.h3{height:20.234041px;}
.h14{height:23.075536px;}
.h18{height:23.228459px;}
.h1e{height:23.436150px;}
.h26{height:24.442323px;}
.h19{height:24.680837px;}
.h15{height:24.921946px;}
.h20{height:25.363202px;}
.he{height:25.750588px;}
.h1f{height:25.780703px;}
.h16{height:25.960302px;}
.h1a{height:26.132343px;}
.h24{height:26.187829px;}
.h4{height:26.899200px;}
.h25{height:28.806612px;}
.h22{height:28.844576px;}
.h3d{height:31.077450px;}
.h30{height:33.713523px;}
.h32{height:35.865450px;}
.h5{height:38.519654px;}
.h6{height:40.348800px;}
.hc{height:41.201456px;}
.h9{height:44.831700px;}
.hd{height:45.322683px;}
.h2b{height:46.014584px;}
.hf{height:46.352218px;}
.h28{height:46.865494px;}
.ha{height:48.103382px;}
.h7{height:49.090950px;}
.h31{height:50.762088px;}
.h2c{height:57.467523px;}
.h2{height:59.613450px;}
.h8{height:59.619450px;}
.h1b{height:60.658950px;}
.h1c{height:60.664950px;}
.h2e{height:60.737523px;}
.h37{height:60.743523px;}
.h1{height:61.631275px;}
.h2f{height:65.272950px;}
.h35{height:65.555523px;}
.h29{height:67.358088px;}
.h2a{height:67.364088px;}
.h34{height:67.468950px;}
.h2d{height:67.474950px;}
.h36{height:68.680950px;}
.h33{height:76.919523px;}
.h3a{height:80.693523px;}
.h3c{height:82.851450px;}
.h38{height:105.561450px;}
.h3b{height:123.674088px;}
.h39{height:123.680088px;}
.h13{height:150.356880px;}
.h17{height:150.371670px;}
.h23{height:177.884040px;}
.h1d{height:180.037560px;}
.h11{height:258.902400px;}
.hb{height:269.328000px;}
.h10{height:274.540800px;}
.h12{height:281.491200px;}
.h0{height:1188.000000px;}
.w2{width:185.967720px;}
.w3{width:190.536090px;}
.w1{width:335.356800px;}
.w5{width:373.438680px;}
.w4{width:373.456290px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:2.541240px;}
.x1e{left:4.698652px;}
.x28{left:7.046524px;}
.x27{left:11.152110px;}
.x11{left:12.423840px;}
.x1d{left:16.222716px;}
.xf{left:18.288240px;}
.x1c{left:23.641641px;}
.x17{left:26.107440px;}
.x1a{left:28.810159px;}
.x10{left:31.320240px;}
.x26{left:37.609116px;}
.xd{left:40.399200px;}
.x29{left:42.424635px;}
.x15{left:48.218400px;}
.x24{left:63.114000px;}
.xb{left:67.083000px;}
.x3{left:71.053500px;}
.x1{left:81.000000px;}
.x25{left:86.313000px;}
.x58{left:92.706000px;}
.xa{left:95.944500px;}
.x1b{left:97.435215px;}
.x2a{left:106.745243px;}
.x32{left:109.263210px;}
.xe{left:111.097800px;}
.x16{left:115.007400px;}
.xc{left:124.423500px;}
.x2{left:135.000000px;}
.x4e{left:140.386500px;}
.x5{left:184.278000px;}
.x4f{left:189.139500px;}
.x31{left:203.834876px;}
.x2e{left:207.326632px;}
.x2d{left:211.432218px;}
.x2c{left:216.450157px;}
.x9{left:218.094000px;}
.x7{left:221.332500px;}
.x18{left:224.802000px;}
.x2b{left:238.326545px;}
.x13{left:239.381333px;}
.x19{left:241.825267px;}
.x3d{left:256.035000px;}
.x2f{left:260.932815px;}
.x37{left:262.620000px;}
.x38{left:268.414500px;}
.x1f{left:271.536000px;}
.x30{left:307.462793px;}
.x3b{left:323.614500px;}
.x33{left:333.238065px;}
.x34{left:337.655715px;}
.x50{left:345.427500px;}
.x8{left:347.988000px;}
.x35{left:354.884550px;}
.x36{left:357.216000px;}
.x23{left:358.237500px;}
.x6{left:360.652500px;}
.x40{left:363.762000px;}
.x45{left:377.251500px;}
.x3e{left:379.591500px;}
.x46{left:385.273500px;}
.x3f{left:389.836500px;}
.x52{left:395.131500px;}
.x55{left:412.404000px;}
.x57{left:417.862500px;}
.x53{left:422.221500px;}
.x48{left:432.337500px;}
.x47{left:436.050000px;}
.x51{left:438.132000px;}
.x3a{left:442.173000px;}
.x54{left:448.900500px;}
.x4a{left:458.809500px;}
.x20{left:462.070500px;}
.x14{left:464.374500px;}
.x49{left:467.506500px;}
.x4b{left:485.281500px;}
.x22{left:491.877000px;}
.x4c{left:494.634000px;}
.x4d{left:517.246500px;}
.x42{left:538.527000px;}
.x43{left:638.929500px;}
.x21{left:657.177000px;}
.x44{left:685.168500px;}
.x59{left:722.775000px;}
.x3c{left:746.433000px;}
.x56{left:822.232500px;}
.x39{left:828.198000px;}
.x41{left:830.926500px;}
.x4{left:835.669500px;}
@media print{
.v13{vertical-align:-50.058667pt;}
.v16{vertical-align:-39.232000pt;}
.v2{vertical-align:-21.109333pt;}
.v3{vertical-align:-14.997333pt;}
.v6{vertical-align:-13.900800pt;}
.v9{vertical-align:-9.731760pt;}
.v5{vertical-align:-8.725333pt;}
.v10{vertical-align:-6.480000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:8.688000pt;}
.v8{vertical-align:10.282667pt;}
.v7{vertical-align:13.900800pt;}
.va{vertical-align:16.341333pt;}
.ve{vertical-align:17.413333pt;}
.v1{vertical-align:21.109333pt;}
.vb{vertical-align:24.021333pt;}
.vd{vertical-align:28.304000pt;}
.vc{vertical-align:38.405333pt;}
.v14{vertical-align:41.760000pt;}
.v15{vertical-align:53.984000pt;}
.v11{vertical-align:61.952000pt;}
.v12{vertical-align:64.816000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000693pt;}
.lsa{letter-spacing:0.000891pt;}
.ls52{letter-spacing:0.000933pt;}
.ls15{letter-spacing:0.001420pt;}
.ls22{letter-spacing:0.001425pt;}
.ls8c{letter-spacing:0.001521pt;}
.ls94{letter-spacing:0.001673pt;}
.ls65{letter-spacing:0.001910pt;}
.ls6a{letter-spacing:0.002188pt;}
.ls55{letter-spacing:0.002384pt;}
.ls6e{letter-spacing:0.002397pt;}
.ls1a{letter-spacing:0.002400pt;}
.ls32{letter-spacing:0.002405pt;}
.ls19{letter-spacing:0.002411pt;}
.ls4e{letter-spacing:0.002717pt;}
.ls5c{letter-spacing:0.002870pt;}
.ls86{letter-spacing:0.004150pt;}
.ls75{letter-spacing:0.004345pt;}
.ls70{letter-spacing:0.004347pt;}
.ls3{letter-spacing:0.004526pt;}
.ls6d{letter-spacing:0.004817pt;}
.ls66{letter-spacing:0.004826pt;}
.ls59{letter-spacing:0.005771pt;}
.ls49{letter-spacing:0.006759pt;}
.ls3b{letter-spacing:0.540924pt;}
.ls8a{letter-spacing:0.593521pt;}
.ls18{letter-spacing:0.772653pt;}
.ls3c{letter-spacing:1.046937pt;}
.ls77{letter-spacing:1.130350pt;}
.ls78{letter-spacing:1.568935pt;}
.ls50{letter-spacing:1.833187pt;}
.ls71{letter-spacing:2.086764pt;}
.ls87{letter-spacing:2.151244pt;}
.ls89{letter-spacing:2.156577pt;}
.ls76{letter-spacing:2.449323pt;}
.ls3d{letter-spacing:2.546428pt;}
.ls4f{letter-spacing:2.653258pt;}
.ls93{letter-spacing:2.656473pt;}
.ls5a{letter-spacing:2.656495pt;}
.ls68{letter-spacing:2.657146pt;}
.ls90{letter-spacing:2.658591pt;}
.ls8{letter-spacing:3.009760pt;}
.ls5{letter-spacing:3.015093pt;}
.ls5d{letter-spacing:3.132088pt;}
.ls7c{letter-spacing:3.331374pt;}
.ls1b{letter-spacing:3.671248pt;}
.ls45{letter-spacing:3.676581pt;}
.lsd{letter-spacing:3.688330pt;}
.ls33{letter-spacing:3.906474pt;}
.ls30{letter-spacing:3.911807pt;}
.ls85{letter-spacing:4.505919pt;}
.ls91{letter-spacing:4.522136pt;}
.ls80{letter-spacing:4.527469pt;}
.ls4b{letter-spacing:4.838541pt;}
.ls24{letter-spacing:5.314591pt;}
.ls8e{letter-spacing:8.926379pt;}
.ls84{letter-spacing:9.292068pt;}
.ls8b{letter-spacing:9.523713pt;}
.ls81{letter-spacing:9.698411pt;}
.ls2c{letter-spacing:9.895733pt;}
.ls2d{letter-spacing:9.898144pt;}
.ls88{letter-spacing:12.927477pt;}
.ls8d{letter-spacing:12.946591pt;}
.ls6f{letter-spacing:16.159477pt;}
.ls83{letter-spacing:16.159483pt;}
.ls25{letter-spacing:16.163861pt;}
.ls62{letter-spacing:16.166750pt;}
.ls8f{letter-spacing:16.751477pt;}
.ls29{letter-spacing:17.043861pt;}
.ls2a{letter-spacing:17.044811pt;}
.ls1{letter-spacing:17.442591pt;}
.ls1d{letter-spacing:17.682485pt;}
.ls1c{letter-spacing:17.686224pt;}
.ls12{letter-spacing:17.873386pt;}
.ls0{letter-spacing:17.911925pt;}
.ls11{letter-spacing:17.914194pt;}
.lse{letter-spacing:18.021828pt;}
.ls4a{letter-spacing:18.237258pt;}
.ls7e{letter-spacing:18.246764pt;}
.ls58{letter-spacing:18.356816pt;}
.ls2f{letter-spacing:18.429140pt;}
.ls60{letter-spacing:19.044347pt;}
.ls26{letter-spacing:19.298411pt;}
.ls3a{letter-spacing:19.348811pt;}
.ls63{letter-spacing:19.391477pt;}
.ls73{letter-spacing:19.394400pt;}
.ls92{letter-spacing:19.431925pt;}
.ls17{letter-spacing:19.638420pt;}
.ls2e{letter-spacing:19.831925pt;}
.ls10{letter-spacing:19.852052pt;}
.ls4d{letter-spacing:19.869258pt;}
.lsf{letter-spacing:20.129386pt;}
.ls28{letter-spacing:20.303477pt;}
.ls27{letter-spacing:20.307861pt;}
.ls7d{letter-spacing:20.342764pt;}
.ls53{letter-spacing:20.487925pt;}
.ls6{letter-spacing:20.729334pt;}
.ls39{letter-spacing:20.989140pt;}
.ls20{letter-spacing:21.007477pt;}
.ls2b{letter-spacing:21.117258pt;}
.ls57{letter-spacing:21.489421pt;}
.ls5e{letter-spacing:21.707812pt;}
.ls16{letter-spacing:21.841087pt;}
.ls51{letter-spacing:22.050591pt;}
.ls48{letter-spacing:22.066474pt;}
.ls1e{letter-spacing:22.103925pt;}
.ls5f{letter-spacing:22.177421pt;}
.ls21{letter-spacing:22.303477pt;}
.ls61{letter-spacing:22.956464pt;}
.ls1f{letter-spacing:23.026411pt;}
.ls38{letter-spacing:23.229140pt;}
.ls7f{letter-spacing:23.303807pt;}
.ls13{letter-spacing:23.431925pt;}
.ls72{letter-spacing:23.836097pt;}
.ls23{letter-spacing:24.066591pt;}
.ls4{letter-spacing:24.205184pt;}
.ls14{letter-spacing:24.450591pt;}
.ls4c{letter-spacing:24.466591pt;}
.ls44{letter-spacing:24.706591pt;}
.ls64{letter-spacing:25.020088pt;}
.ls54{letter-spacing:25.271807pt;}
.ls31{letter-spacing:25.293140pt;}
.ls6c{letter-spacing:25.450144pt;}
.ls69{letter-spacing:25.450149pt;}
.ls42{letter-spacing:26.135807pt;}
.ls43{letter-spacing:26.164811pt;}
.ls47{letter-spacing:26.509258pt;}
.ls5b{letter-spacing:27.059145pt;}
.ls6b{letter-spacing:28.104941pt;}
.ls67{letter-spacing:28.302041pt;}
.ls37{letter-spacing:28.493140pt;}
.ls36{letter-spacing:28.498474pt;}
.ls34{letter-spacing:29.789140pt;}
.ls46{letter-spacing:30.039807pt;}
.ls35{letter-spacing:33.943807pt;}
.ls56{letter-spacing:38.509140pt;}
.ls40{letter-spacing:44.409334pt;}
.ls3f{letter-spacing:44.414667pt;}
.ls41{letter-spacing:45.544330pt;}
.ls82{letter-spacing:58.481146pt;}
.ls3e{letter-spacing:64.594517pt;}
.ls79{letter-spacing:70.977323pt;}
.ls74{letter-spacing:90.550479pt;}
.ls7b{letter-spacing:91.627989pt;}
.ls9{letter-spacing:138.337386pt;}
.lsb{letter-spacing:195.194194pt;}
.lsc{letter-spacing:231.868052pt;}
.ls7a{letter-spacing:978.989077pt;}
.ws39{word-spacing:-58.181867pt;}
.ws15c{word-spacing:-45.163900pt;}
.ws7f{word-spacing:-42.022912pt;}
.wsb6{word-spacing:-42.007308pt;}
.ws85{word-spacing:-41.134580pt;}
.ws3d{word-spacing:-37.899668pt;}
.ws83{word-spacing:-37.876395pt;}
.ws24{word-spacing:-32.063846pt;}
.ws142{word-spacing:-29.521250pt;}
.ws154{word-spacing:-28.183296pt;}
.ws26{word-spacing:-25.273293pt;}
.ws91{word-spacing:-16.646946pt;}
.wsb9{word-spacing:-16.401613pt;}
.ws36{word-spacing:-16.162923pt;}
.wsb2{word-spacing:-16.112084pt;}
.ws13e{word-spacing:-16.060280pt;}
.ws117{word-spacing:-15.206946pt;}
.ws15b{word-spacing:-13.932984pt;}
.ws22{word-spacing:-13.652838pt;}
.wsbb{word-spacing:-13.612280pt;}
.ws157{word-spacing:-12.710946pt;}
.wsa5{word-spacing:-12.543875pt;}
.ws8{word-spacing:-12.543396pt;}
.wscf{word-spacing:-12.049613pt;}
.ws59{word-spacing:-11.878946pt;}
.ws53{word-spacing:-11.825613pt;}
.wsed{word-spacing:-11.132280pt;}
.ws159{word-spacing:-10.700984pt;}
.wsca{word-spacing:-9.494946pt;}
.ws74{word-spacing:-9.217613pt;}
.ws9a{word-spacing:-7.478946pt;}
.ws9e{word-spacing:-7.436280pt;}
.ws4b{word-spacing:-6.870299pt;}
.ws5d{word-spacing:-6.355338pt;}
.ws5f{word-spacing:-6.293853pt;}
.ws82{word-spacing:-5.548280pt;}
.ws15e{word-spacing:-4.890799pt;}
.ws15f{word-spacing:-4.874799pt;}
.wsd3{word-spacing:-4.809802pt;}
.wsc8{word-spacing:-3.246548pt;}
.ws135{word-spacing:-2.897457pt;}
.ws165{word-spacing:-2.664729pt;}
.ws1e{word-spacing:-2.512176pt;}
.wsa2{word-spacing:-2.432002pt;}
.wsfa{word-spacing:-1.908365pt;}
.wsf0{word-spacing:-1.733820pt;}
.ws95{word-spacing:-1.675638pt;}
.ws44{word-spacing:-1.617456pt;}
.ws18{word-spacing:-1.384728pt;}
.ws17{word-spacing:-0.919273pt;}
.ws10{word-spacing:-0.861092pt;}
.ws166{word-spacing:-0.811888pt;}
.ws56{word-spacing:-0.744728pt;}
.ws16e{word-spacing:-0.726873pt;}
.ws10d{word-spacing:-0.686546pt;}
.ws10b{word-spacing:-0.656539pt;}
.wsb4{word-spacing:-0.628364pt;}
.ws122{word-spacing:-0.570182pt;}
.ws93{word-spacing:-0.512000pt;}
.wsae{word-spacing:-0.453819pt;}
.ws179{word-spacing:-0.174280pt;}
.ws79{word-spacing:-0.104727pt;}
.ws6f{word-spacing:-0.058182pt;}
.wsd9{word-spacing:-0.047821pt;}
.ws5b{word-spacing:-0.046545pt;}
.ws167{word-spacing:-0.042507pt;}
.ws15a{word-spacing:-0.040913pt;}
.ws6{word-spacing:-0.031881pt;}
.ws40{word-spacing:-0.026567pt;}
.ws20{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.011636pt;}
.wse3{word-spacing:0.119552pt;}
.wsfd{word-spacing:0.302546pt;}
.ws43{word-spacing:0.360728pt;}
.ws37{word-spacing:0.418909pt;}
.ws7a{word-spacing:0.477091pt;}
.ws90{word-spacing:0.535273pt;}
.ws145{word-spacing:0.555885pt;}
.ws12c{word-spacing:0.587980pt;}
.ws12e{word-spacing:0.593455pt;}
.ws127{word-spacing:0.651637pt;}
.ws97{word-spacing:0.709819pt;}
.ws38{word-spacing:0.768001pt;}
.ws47{word-spacing:0.826183pt;}
.ws8b{word-spacing:0.884364pt;}
.ws3c{word-spacing:0.942546pt;}
.wsb5{word-spacing:1.000728pt;}
.ws148{word-spacing:1.035885pt;}
.wsb7{word-spacing:1.050442pt;}
.ws12a{word-spacing:1.058910pt;}
.ws119{word-spacing:1.117092pt;}
.ws107{word-spacing:1.175274pt;}
.ws16f{word-spacing:1.185951pt;}
.ws128{word-spacing:1.233456pt;}
.ws14e{word-spacing:1.243885pt;}
.wsa3{word-spacing:1.291637pt;}
.wsb8{word-spacing:1.408001pt;}
.ws138{word-spacing:1.524365pt;}
.ws31{word-spacing:1.554176pt;}
.ws54{word-spacing:1.582547pt;}
.ws30{word-spacing:1.601997pt;}
.ws55{word-spacing:1.640729pt;}
.ws2c{word-spacing:1.697638pt;}
.ws92{word-spacing:1.698911pt;}
.wscd{word-spacing:1.757092pt;}
.wsc1{word-spacing:1.815274pt;}
.wsc6{word-spacing:1.873456pt;}
.ws13{word-spacing:1.931638pt;}
.ws118{word-spacing:1.987787pt;}
.ws116{word-spacing:1.989820pt;}
.ws4f{word-spacing:2.032384pt;}
.ws102{word-spacing:2.048002pt;}
.ws16d{word-spacing:2.078602pt;}
.ws4e{word-spacing:2.080205pt;}
.ws41{word-spacing:2.164365pt;}
.wsdc{word-spacing:2.223667pt;}
.ws8a{word-spacing:2.280729pt;}
.ws17f{word-spacing:2.291138pt;}
.wsac{word-spacing:2.338911pt;}
.ws60{word-spacing:2.414950pt;}
.ws123{word-spacing:2.455275pt;}
.ws16a{word-spacing:2.461167pt;}
.wse4{word-spacing:2.462771pt;}
.ws1f{word-spacing:2.503674pt;}
.ws180{word-spacing:2.508422pt;}
.ws17e{word-spacing:2.510966pt;}
.wsbf{word-spacing:2.513457pt;}
.ws17c{word-spacing:2.516450pt;}
.wsdb{word-spacing:2.558413pt;}
.ws96{word-spacing:2.571639pt;}
.wsc0{word-spacing:2.629820pt;}
.ws4d{word-spacing:2.663796pt;}
.ws77{word-spacing:2.688002pt;}
.wsa{word-spacing:2.701875pt;}
.ws88{word-spacing:2.746184pt;}
.ws21{word-spacing:2.749696pt;}
.wsad{word-spacing:2.804366pt;}
.ws144{word-spacing:2.862548pt;}
.ws17a{word-spacing:2.886239pt;}
.ws1b{word-spacing:2.920730pt;}
.ws3a{word-spacing:2.978912pt;}
.ws45{word-spacing:3.004955pt;}
.ws46{word-spacing:3.037093pt;}
.ws130{word-spacing:3.039975pt;}
.ws7e{word-spacing:3.095275pt;}
.wsb3{word-spacing:3.153457pt;}
.ws14{word-spacing:3.211639pt;}
.ws94{word-spacing:3.225643pt;}
.ws158{word-spacing:3.230949pt;}
.ws134{word-spacing:3.242474pt;}
.ws6a{word-spacing:3.269821pt;}
.wse2{word-spacing:3.323546pt;}
.ws6b{word-spacing:3.328003pt;}
.ws17d{word-spacing:3.353818pt;}
.ws49{word-spacing:3.502548pt;}
.wsba{word-spacing:3.560730pt;}
.ws2f{word-spacing:3.562650pt;}
.ws9c{word-spacing:3.618912pt;}
.ws16c{word-spacing:3.651368pt;}
.ws86{word-spacing:3.677094pt;}
.ws84{word-spacing:3.735276pt;}
.ws177{word-spacing:3.778890pt;}
.ws2e{word-spacing:3.801754pt;}
.ws11b{word-spacing:3.809675pt;}
.ws78{word-spacing:3.851640pt;}
.ws67{word-spacing:3.909821pt;}
.ws149{word-spacing:3.968003pt;}
.ws62{word-spacing:4.016474pt;}
.wsa6{word-spacing:4.026185pt;}
.ws61{word-spacing:4.040858pt;}
.ws70{word-spacing:4.084367pt;}
.wse6{word-spacing:4.142549pt;}
.ws104{word-spacing:4.200731pt;}
.ws168{word-spacing:4.246469pt;}
.ws34{word-spacing:4.317095pt;}
.ws63{word-spacing:4.327782pt;}
.ws6e{word-spacing:4.375276pt;}
.ws155{word-spacing:4.489075pt;}
.ws156{word-spacing:4.491640pt;}
.ws51{word-spacing:4.549822pt;}
.wsf2{word-spacing:4.565433pt;}
.ws32{word-spacing:4.608004pt;}
.ws120{word-spacing:4.724368pt;}
.ws175{word-spacing:4.756556pt;}
.ws152{word-spacing:4.898913pt;}
.ws2d{word-spacing:4.901632pt;}
.wsf4{word-spacing:4.911975pt;}
.wsde{word-spacing:4.949453pt;}
.wsd1{word-spacing:5.015277pt;}
.wsc5{word-spacing:5.073459pt;}
.wsce{word-spacing:5.131641pt;}
.wsd7{word-spacing:5.140736pt;}
.wsd0{word-spacing:5.145619pt;}
.wsb{word-spacing:5.189823pt;}
.ws13c{word-spacing:5.197774pt;}
.ws72{word-spacing:5.248004pt;}
.ws17b{word-spacing:5.266642pt;}
.ws3b{word-spacing:5.306186pt;}
.ws58{word-spacing:5.321616pt;}
.ws5a{word-spacing:5.330242pt;}
.ws11{word-spacing:5.364368pt;}
.ws16{word-spacing:5.422550pt;}
.ws52{word-spacing:5.480732pt;}
.ws125{word-spacing:5.519975pt;}
.wseb{word-spacing:5.538914pt;}
.wsb0{word-spacing:5.597096pt;}
.wsb1{word-spacing:5.620175pt;}
.ws1d{word-spacing:5.655277pt;}
.ws76{word-spacing:5.713459pt;}
.wsd8{word-spacing:5.714586pt;}
.wsda{word-spacing:5.762406pt;}
.ws89{word-spacing:5.771641pt;}
.wsaf{word-spacing:5.813308pt;}
.wsfe{word-spacing:5.829823pt;}
.ws50{word-spacing:5.888005pt;}
.ws139{word-spacing:5.946187pt;}
.ws1c{word-spacing:6.004369pt;}
.ws169{word-spacing:6.031772pt;}
.wsee{word-spacing:6.057640pt;}
.wsef{word-spacing:6.062551pt;}
.ws178{word-spacing:6.074279pt;}
.ws9f{word-spacing:6.103599pt;}
.wsf{word-spacing:6.120732pt;}
.ws124{word-spacing:6.178914pt;}
.ws7c{word-spacing:6.237096pt;}
.ws173{word-spacing:6.244308pt;}
.ws7d{word-spacing:6.295278pt;}
.ws68{word-spacing:6.353460pt;}
.wsd6{word-spacing:6.431898pt;}
.wsab{word-spacing:6.469824pt;}
.ws132{word-spacing:6.528005pt;}
.ws19{word-spacing:6.586187pt;}
.ws153{word-spacing:6.597192pt;}
.wsa4{word-spacing:6.618616pt;}
.ws13b{word-spacing:6.644369pt;}
.ws162{word-spacing:6.702551pt;}
.ws108{word-spacing:6.760733pt;}
.wsbd{word-spacing:6.818915pt;}
.ws176{word-spacing:6.839408pt;}
.ws12f{word-spacing:6.874641pt;}
.ws87{word-spacing:6.877097pt;}
.ws15d{word-spacing:6.885308pt;}
.ws12b{word-spacing:6.935279pt;}
.ws11d{word-spacing:6.993460pt;}
.ws3f{word-spacing:7.051642pt;}
.ws12{word-spacing:7.284370pt;}
.ws10f{word-spacing:7.458915pt;}
.ws5{word-spacing:7.481267pt;}
.ws129{word-spacing:7.514641pt;}
.ws57{word-spacing:7.517097pt;}
.wsd5{word-spacing:7.527796pt;}
.ws48{word-spacing:7.575279pt;}
.ws2a{word-spacing:7.591958pt;}
.wse1{word-spacing:7.598329pt;}
.wse0{word-spacing:7.598655pt;}
.wsd{word-spacing:7.633461pt;}
.wsc9{word-spacing:7.691643pt;}
.wscb{word-spacing:7.699787pt;}
.wsc{word-spacing:7.808007pt;}
.ws109{word-spacing:7.866188pt;}
.ws126{word-spacing:7.924370pt;}
.ws73{word-spacing:7.982552pt;}
.ws75{word-spacing:8.001345pt;}
.ws1a{word-spacing:8.098916pt;}
.ws163{word-spacing:8.157098pt;}
.ws35{word-spacing:8.215280pt;}
.ws10c{word-spacing:8.271975pt;}
.wse{word-spacing:8.273461pt;}
.ws8f{word-spacing:8.331643pt;}
.ws143{word-spacing:8.363099pt;}
.wsaa{word-spacing:8.389825pt;}
.wsa8{word-spacing:8.448007pt;}
.ws6c{word-spacing:8.506189pt;}
.ws0{word-spacing:8.523556pt;}
.ws6d{word-spacing:8.564371pt;}
.ws14b{word-spacing:8.565308pt;}
.ws8d{word-spacing:8.619961pt;}
.ws8c{word-spacing:8.622553pt;}
.wsff{word-spacing:8.680735pt;}
.ws100{word-spacing:8.738916pt;}
.ws146{word-spacing:8.791512pt;}
.wscc{word-spacing:8.797098pt;}
.ws147{word-spacing:8.798976pt;}
.wsbe{word-spacing:8.839748pt;}
.wsf9{word-spacing:8.855280pt;}
.wsf8{word-spacing:8.913462pt;}
.ws133{word-spacing:8.971644pt;}
.wsc7{word-spacing:9.029826pt;}
.ws161{word-spacing:9.146189pt;}
.wsf6{word-spacing:9.204371pt;}
.ws71{word-spacing:9.262553pt;}
.ws65{word-spacing:9.363782pt;}
.ws66{word-spacing:9.378917pt;}
.ws14f{word-spacing:9.486438pt;}
.ws13a{word-spacing:9.495281pt;}
.wsc4{word-spacing:9.503975pt;}
.ws3{word-spacing:9.505408pt;}
.ws33{word-spacing:9.669826pt;}
.ws99{word-spacing:9.691860pt;}
.ws98{word-spacing:9.699531pt;}
.ws9b{word-spacing:9.728008pt;}
.ws10e{word-spacing:9.861308pt;}
.ws8e{word-spacing:9.902554pt;}
.ws10a{word-spacing:9.922415pt;}
.ws106{word-spacing:9.960736pt;}
.ws103{word-spacing:10.018917pt;}
.ws174{word-spacing:10.027448pt;}
.ws141{word-spacing:10.030461pt;}
.ws101{word-spacing:10.077099pt;}
.ws2{word-spacing:10.124922pt;}
.ws42{word-spacing:10.135281pt;}
.ws7{word-spacing:10.267126pt;}
.wse9{word-spacing:10.309827pt;}
.ws64{word-spacing:10.368009pt;}
.ws9{word-spacing:10.506230pt;}
.ws69{word-spacing:10.542554pt;}
.ws14c{word-spacing:10.629308pt;}
.wsa0{word-spacing:10.717100pt;}
.wsd4{word-spacing:10.735770pt;}
.wsfb{word-spacing:10.949827pt;}
.ws11f{word-spacing:10.975949pt;}
.ws172{word-spacing:11.005114pt;}
.wsa1{word-spacing:11.008009pt;}
.ws150{word-spacing:11.066191pt;}
.wse7{word-spacing:11.298919pt;}
.wsf5{word-spacing:11.357100pt;}
.wsa7{word-spacing:11.531646pt;}
.ws81{word-spacing:11.648010pt;}
.ws11e{word-spacing:12.171647pt;}
.ws131{word-spacing:12.346641pt;}
.ws113{word-spacing:12.578920pt;}
.wsc2{word-spacing:12.695283pt;}
.ws110{word-spacing:13.733308pt;}
.ws9d{word-spacing:13.858921pt;}
.ws115{word-spacing:13.968100pt;}
.wsf1{word-spacing:14.386362pt;}
.ws16b{word-spacing:15.021411pt;}
.ws112{word-spacing:15.367696pt;}
.ws7b{word-spacing:15.996549pt;}
.ws12d{word-spacing:16.705882pt;}
.ws111{word-spacing:16.757308pt;}
.ws13f{word-spacing:17.239216pt;}
.ws136{word-spacing:17.253308pt;}
.ws171{word-spacing:17.300430pt;}
.wse8{word-spacing:17.594641pt;}
.wsdd{word-spacing:18.484156pt;}
.ws170{word-spacing:18.656410pt;}
.ws114{word-spacing:18.858767pt;}
.wsc3{word-spacing:18.959975pt;}
.wsf3{word-spacing:19.203165pt;}
.ws80{word-spacing:19.218357pt;}
.ws4{word-spacing:19.316380pt;}
.wsbc{word-spacing:19.335216pt;}
.ws1{word-spacing:19.374562pt;}
.wsfc{word-spacing:19.793471pt;}
.ws11c{word-spacing:19.793882pt;}
.ws28{word-spacing:19.879067pt;}
.ws137{word-spacing:20.273883pt;}
.ws105{word-spacing:20.311691pt;}
.ws164{word-spacing:21.934564pt;}
.ws11a{word-spacing:22.215691pt;}
.wsec{word-spacing:22.865474pt;}
.ws140{word-spacing:23.301104pt;}
.wse5{word-spacing:23.607216pt;}
.ws151{word-spacing:23.710282pt;}
.ws25{word-spacing:23.962938pt;}
.wsdf{word-spacing:24.323692pt;}
.wsa9{word-spacing:24.524549pt;}
.ws121{word-spacing:25.736992pt;}
.wsea{word-spacing:26.444549pt;}
.ws14a{word-spacing:30.389282pt;}
.ws27{word-spacing:32.167067pt;}
.ws23{word-spacing:38.218938pt;}
.ws2b{word-spacing:40.358473pt;}
.ws14d{word-spacing:44.930357pt;}
.ws5e{word-spacing:52.554206pt;}
.ws5c{word-spacing:59.570264pt;}
.wsf7{word-spacing:75.617175pt;}
.ws15{word-spacing:79.461973pt;}
.ws160{word-spacing:81.328515pt;}
.wsd2{word-spacing:81.801126pt;}
.ws3e{word-spacing:127.838355pt;}
.ws29{word-spacing:179.916052pt;}
.ws4c{word-spacing:203.203185pt;}
.ws4a{word-spacing:210.153745pt;}
._4e{margin-left:-2773.438379pt;}
._64{margin-left:-2772.531086pt;}
._78{margin-left:-2770.302579pt;}
._1b{margin-left:-2760.086945pt;}
._18{margin-left:-2759.116466pt;}
._89{margin-left:-2605.234306pt;}
._1{margin-left:-2568.613504pt;}
._3{margin-left:-2565.575935pt;}
._79{margin-left:-2538.319728pt;}
._51{margin-left:-2534.662293pt;}
._17{margin-left:-2524.087211pt;}
._4f{margin-left:-2465.047781pt;}
._98{margin-left:-2441.609004pt;}
._65{margin-left:-2424.512399pt;}
._aa{margin-left:-2421.492215pt;}
._6b{margin-left:-2398.809170pt;}
._74{margin-left:-2383.566469pt;}
._7a{margin-left:-2344.325819pt;}
._71{margin-left:-2324.843468pt;}
._86{margin-left:-2288.637636pt;}
._53{margin-left:-2240.973550pt;}
._70{margin-left:-2182.015729pt;}
._9{margin-left:-2176.462415pt;}
._c{margin-left:-2155.430847pt;}
._58{margin-left:-2115.921531pt;}
._57{margin-left:-2078.026979pt;}
._6f{margin-left:-2073.006183pt;}
._a7{margin-left:-2033.148229pt;}
._82{margin-left:-1992.403213pt;}
._97{margin-left:-1968.831527pt;}
._66{margin-left:-1947.588739pt;}
._93{margin-left:-1935.916015pt;}
._9b{margin-left:-1884.316102pt;}
._4c{margin-left:-1865.073399pt;}
._96{margin-left:-1863.607804pt;}
._3c{margin-left:-1811.794365pt;}
._31{margin-left:-1768.613139pt;}
._88{margin-left:-1767.219076pt;}
._a4{margin-left:-1713.679704pt;}
._92{margin-left:-1688.558833pt;}
._67{margin-left:-1685.367655pt;}
._81{margin-left:-1679.073910pt;}
._84{margin-left:-1649.102057pt;}
._99{margin-left:-1626.469961pt;}
._8b{margin-left:-1624.233179pt;}
._9a{margin-left:-1616.573477pt;}
._a5{margin-left:-1598.376864pt;}
._5a{margin-left:-1595.885649pt;}
._8d{margin-left:-1581.913996pt;}
._85{margin-left:-1520.905666pt;}
._83{margin-left:-1510.580097pt;}
._a2{margin-left:-1462.104744pt;}
._87{margin-left:-1445.299205pt;}
._a0{margin-left:-1413.245664pt;}
._a8{margin-left:-1411.178618pt;}
._8c{margin-left:-1396.337952pt;}
._9e{margin-left:-1377.002737pt;}
._4b{margin-left:-1289.826973pt;}
._59{margin-left:-1272.544038pt;}
._63{margin-left:-1255.772568pt;}
._a6{margin-left:-1246.436034pt;}
._73{margin-left:-1210.290923pt;}
._95{margin-left:-1160.621046pt;}
._6a{margin-left:-1150.957488pt;}
._52{margin-left:-1128.462773pt;}
._94{margin-left:-1104.581201pt;}
._47{margin-left:-1102.981726pt;}
._9f{margin-left:-1094.987651pt;}
._91{margin-left:-1061.772524pt;}
._6c{margin-left:-984.790077pt;}
._8f{margin-left:-882.478213pt;}
._11{margin-left:-838.462554pt;}
._68{margin-left:-801.243742pt;}
._62{margin-left:-765.109134pt;}
._56{margin-left:-749.494875pt;}
._7e{margin-left:-696.727677pt;}
._4{margin-left:-685.076039pt;}
._49{margin-left:-669.862383pt;}
._9c{margin-left:-629.627326pt;}
._a9{margin-left:-624.590720pt;}
._a3{margin-left:-590.423400pt;}
._7d{margin-left:-554.163232pt;}
._a1{margin-left:-548.710645pt;}
._7c{margin-left:-471.600838pt;}
._e{margin-left:-369.445725pt;}
._7f{margin-left:-368.275648pt;}
._a{margin-left:-352.823202pt;}
._6d{margin-left:-323.603611pt;}
._2e{margin-left:-315.024706pt;}
._77{margin-left:-287.812041pt;}
._3a{margin-left:-227.420269pt;}
._80{margin-left:-171.394029pt;}
._69{margin-left:-31.091426pt;}
._30{margin-left:-28.149337pt;}
._b{margin-left:-24.401213pt;}
._8e{margin-left:-22.993458pt;}
._8a{margin-left:-21.763615pt;}
._46{margin-left:-5.738125pt;}
._1a{margin-left:-4.829095pt;}
._d{margin-left:-3.777843pt;}
._0{margin-left:-2.371905pt;}
._5{margin-left:-0.905574pt;}
._10{width:0.905574pt;}
._2{width:2.218879pt;}
._6{width:3.203930pt;}
._2f{width:4.503814pt;}
._1e{width:5.885699pt;}
._3b{width:6.846874pt;}
._14{width:8.699831pt;}
._7{width:10.166372pt;}
._54{width:12.803827pt;}
._9d{width:13.754144pt;}
._39{width:14.827469pt;}
._34{width:16.044644pt;}
._50{width:17.181178pt;}
._33{width:18.100409pt;}
._40{width:19.448753pt;}
._1d{width:20.545831pt;}
._f{width:21.854106pt;}
._13{width:23.491923pt;}
._8{width:24.423357pt;}
._35{width:25.949113pt;}
._43{width:27.054045pt;}
._55{width:28.093685pt;}
._42{width:29.178427pt;}
._2c{width:30.840206pt;}
._48{width:31.834809pt;}
._19{width:33.091931pt;}
._4a{width:34.136387pt;}
._1c{width:35.589905pt;}
._7b{width:36.774756pt;}
._15{width:37.684320pt;}
._72{width:38.754342pt;}
._12{width:39.680033pt;}
._4d{width:41.184953pt;}
._76{width:42.243711pt;}
._45{width:43.869127pt;}
._2d{width:45.891941pt;}
._32{width:47.319385pt;}
._44{width:48.430424pt;}
._3f{width:51.001495pt;}
._16{width:52.466492pt;}
._3e{width:58.820142pt;}
._60{width:61.627971pt;}
._90{width:66.819720pt;}
._3d{width:74.463252pt;}
._75{width:75.937841pt;}
._41{width:80.060718pt;}
._6e{width:81.804635pt;}
._5c{width:83.489108pt;}
._5b{width:88.986628pt;}
._5f{width:97.827168pt;}
._27{width:108.295463pt;}
._23{width:120.582572pt;}
._5e{width:125.732258pt;}
._29{width:131.682673pt;}
._61{width:137.410277pt;}
._22{width:143.970673pt;}
._25{width:146.154424pt;}
._20{width:156.993528pt;}
._28{width:158.442424pt;}
._2b{width:176.742224pt;}
._38{width:189.213010pt;}
._37{width:196.413748pt;}
._1f{width:202.134224pt;}
._24{width:204.048891pt;}
._26{width:205.544006pt;}
._36{width:208.834606pt;}
._21{width:217.831115pt;}
._2a{width:255.519109pt;}
._5d{width:429.495108pt;}
.fs17{font-size:17.301447pt;}
.fs16{font-size:21.625593pt;}
.fs12{font-size:22.639758pt;}
.fse{font-size:22.860928pt;}
.fs1c{font-size:23.037646pt;}
.fsa{font-size:24.713306pt;}
.fs1{font-size:26.566933pt;}
.fs10{font-size:27.864398pt;}
.fs14{font-size:28.113541pt;}
.fsc{font-size:28.136608pt;}
.fs1b{font-size:29.320526pt;}
.fs11{font-size:29.606642pt;}
.fsd{font-size:29.895872pt;}
.fs9{font-size:30.889894pt;}
.fs15{font-size:30.926019pt;}
.fs13{font-size:31.347840pt;}
.fs19{font-size:31.414400pt;}
.fsf{font-size:31.654080pt;}
.fs4{font-size:31.880533pt;}
.fs1a{font-size:34.555840pt;}
.fs18{font-size:34.601381pt;}
.fs1e{font-size:40.913067pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs7{font-size:49.424449pt;}
.fs6{font-size:53.133867pt;}
.fs8{font-size:54.368191pt;}
.fsb{font-size:55.603200pt;}
.fs2{font-size:58.181867pt;}
.fs1d{font-size:58.448000pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:1.197313pt;}
.y74{bottom:1.209010pt;}
.ye6{bottom:1.870769pt;}
.yf6{bottom:2.120472pt;}
.y49{bottom:2.896000pt;}
.yf4{bottom:3.054691pt;}
.y7f{bottom:10.362203pt;}
.y73{bottom:10.463432pt;}
.ye5{bottom:11.737692pt;}
.yf5{bottom:12.853725pt;}
.yf3{bottom:12.921615pt;}
.y81{bottom:16.707963pt;}
.y75{bottom:16.871185pt;}
.y48{bottom:19.152213pt;}
.yf7{bottom:22.971780pt;}
.yf2{bottom:26.852737pt;}
.y4a{bottom:30.408000pt;}
.y82{bottom:32.055343pt;}
.y76{bottom:32.180109pt;}
.ye7{bottom:32.822091pt;}
.yf0{bottom:33.430326pt;}
.y10c{bottom:38.089960pt;}
.yef{bottom:41.359980pt;}
.y10d{bottom:41.624080pt;}
.yf8{bottom:46.846724pt;}
.y83{bottom:47.402723pt;}
.y77{bottom:47.489034pt;}
.yee{bottom:47.847820pt;}
.y10a{bottom:53.011800pt;}
.y10b{bottom:56.545920pt;}
.y54{bottom:57.630400pt;}
.ye8{bottom:59.133958pt;}
.y7d{bottom:61.879330pt;}
.y89{bottom:61.933753pt;}
.y84{bottom:62.750103pt;}
.y78{bottom:62.797958pt;}
.y108{bottom:64.399520pt;}
.y109{bottom:67.933640pt;}
.y5e{bottom:68.519360pt;}
.yec{bottom:69.744280pt;}
.yf9{bottom:70.721668pt;}
.y106{bottom:76.179920pt;}
.y4b{bottom:78.047200pt;}
.y85{bottom:78.097483pt;}
.y79{bottom:78.106706pt;}
.y107{bottom:79.714040pt;}
.y4f{bottom:84.852800pt;}
.ye9{bottom:85.445826pt;}
.y104{bottom:90.709080pt;}
.y7a{bottom:93.415630pt;}
.y86{bottom:93.444863pt;}
.y46{bottom:93.914667pt;}
.y105{bottom:94.243200pt;}
.yfa{bottom:94.596612pt;}
.y1c5{bottom:97.665333pt;}
.y20{bottom:101.450667pt;}
.y102{bottom:105.630920pt;}
.y5f{bottom:106.630720pt;}
.y7b{bottom:108.724555pt;}
.y87{bottom:108.792243pt;}
.y103{bottom:109.165040pt;}
.y1c4{bottom:110.284000pt;}
.yea{bottom:111.757477pt;}
.y55{bottom:112.075200pt;}
.y1f{bottom:114.964000pt;}
.yfb{bottom:118.471556pt;}
.y100{bottom:120.160080pt;}
.y45{bottom:122.481333pt;}
.y1c3{bottom:122.904000pt;}
.y101{bottom:123.694200pt;}
.y7c{bottom:124.033479pt;}
.y88{bottom:124.139623pt;}
.y4c{bottom:125.686400pt;}
.y7e{bottom:127.530771pt;}
.y8a{bottom:127.650146pt;}
.yfe{bottom:135.082025pt;}
.y1c2{bottom:135.522667pt;}
.yeb{bottom:138.069345pt;}
.yff{bottom:138.616145pt;}
.y56{bottom:139.297600pt;}
.yfc{bottom:142.346500pt;}
.yf1{bottom:144.242092pt;}
.y60{bottom:144.742080pt;}
.y1c1{bottom:148.142667pt;}
.y44{bottom:151.046667pt;}
.yfd{bottom:151.896478pt;}
.yed{bottom:153.913732pt;}
.y1c0{bottom:157.012000pt;}
.y65{bottom:165.390251pt;}
.y57{bottom:166.520000pt;}
.y53{bottom:169.563194pt;}
.y1e{bottom:169.676000pt;}
.y5c{bottom:169.705909pt;}
.y69{bottom:171.884550pt;}
.y4d{bottom:173.325600pt;}
.y1bf{bottom:173.381333pt;}
.y63{bottom:179.552000pt;}
.y43{bottom:179.613333pt;}
.ya2{bottom:180.114667pt;}
.y61{bottom:182.853440pt;}
.ybd{bottom:184.089333pt;}
.y1be{bottom:186.000000pt;}
.y51{bottom:186.502400pt;}
.y5a{bottom:187.660800pt;}
.y67{bottom:191.136000pt;}
.y62{bottom:192.294400pt;}
.y58{bottom:193.742400pt;}
.y1bd{bottom:194.869333pt;}
.y1d{bottom:198.242667pt;}
.y50{bottom:202.140800pt;}
.y59{bottom:204.457600pt;}
.y42{bottom:208.180000pt;}
.y66{bottom:208.512000pt;}
.ya1{bottom:208.681333pt;}
.y1bc{bottom:211.238667pt;}
.y128{bottom:211.754667pt;}
.ybc{bottom:212.656000pt;}
.y64{bottom:213.313336pt;}
.y155{bottom:217.018667pt;}
.y4e{bottom:220.964800pt;}
.y1bb{bottom:223.858667pt;}
.y1c{bottom:226.809333pt;}
.y52{bottom:228.784000pt;}
.y1ba{bottom:232.728000pt;}
.y5b{bottom:233.505716pt;}
.y41{bottom:236.745333pt;}
.ycf{bottom:236.746667pt;}
.ya0{bottom:237.248000pt;}
.y68{bottom:239.518198pt;}
.y127{bottom:240.321333pt;}
.ye3{bottom:240.476000pt;}
.ybb{bottom:241.222667pt;}
.y1b9{bottom:249.097333pt;}
.y154{bottom:254.425333pt;}
.y1b{bottom:255.374667pt;}
.y1b8{bottom:261.716000pt;}
.y40{bottom:265.312000pt;}
.y9f{bottom:265.813333pt;}
.y16b{bottom:267.270667pt;}
.y126{bottom:268.888000pt;}
.ye2{bottom:269.042667pt;}
.yba{bottom:269.788000pt;}
.y71{bottom:269.906667pt;}
.y1b7{bottom:274.336000pt;}
.y153{bottom:282.992000pt;}
.y1b6{bottom:283.205333pt;}
.y1a{bottom:283.941333pt;}
.y3f{bottom:293.878667pt;}
.y9e{bottom:294.380000pt;}
.y16a{bottom:295.837333pt;}
.y125{bottom:297.454667pt;}
.ye1{bottom:297.608000pt;}
.y70{bottom:298.473333pt;}
.y13b{bottom:298.914667pt;}
.y1b5{bottom:299.574667pt;}
.y189{bottom:301.152000pt;}
.yb9{bottom:302.830667pt;}
.y152{bottom:311.558667pt;}
.y1b4{bottom:312.193333pt;}
.y19{bottom:312.508000pt;}
.y1b3{bottom:321.062667pt;}
.yce{bottom:322.445333pt;}
.y9d{bottom:322.946667pt;}
.y3e{bottom:323.630667pt;}
.y169{bottom:324.404000pt;}
.y124{bottom:326.020000pt;}
.y6f{bottom:327.040000pt;}
.y13a{bottom:327.481333pt;}
.y188{bottom:329.717333pt;}
.ye0{bottom:329.905333pt;}
.yb8{bottom:331.397333pt;}
.y1b2{bottom:333.682667pt;}
.y151{bottom:340.124000pt;}
.y18{bottom:341.074667pt;}
.y1b1{bottom:350.052000pt;}
.ycd{bottom:351.010667pt;}
.y9c{bottom:351.513333pt;}
.y3d{bottom:352.197333pt;}
.y168{bottom:352.969333pt;}
.y123{bottom:354.586667pt;}
.y6e{bottom:355.605333pt;}
.y139{bottom:356.046667pt;}
.y187{bottom:358.284000pt;}
.ydf{bottom:358.470667pt;}
.y162{bottom:358.472000pt;}
.yb7{bottom:359.962667pt;}
.y1b0{bottom:362.670667pt;}
.y150{bottom:368.690667pt;}
.y17{bottom:369.640000pt;}
.y1af{bottom:375.290667pt;}
.ycc{bottom:379.577333pt;}
.y9b{bottom:380.078667pt;}
.y167{bottom:381.536000pt;}
.y6d{bottom:384.172000pt;}
.y138{bottom:384.613333pt;}
.y122{bottom:386.728000pt;}
.y186{bottom:386.850667pt;}
.yde{bottom:387.037333pt;}
.y1ae{bottom:387.909333pt;}
.yb6{bottom:388.529333pt;}
.y3c{bottom:389.222667pt;}
.y14f{bottom:397.257333pt;}
.y16{bottom:398.206667pt;}
.y1ad{bottom:400.529333pt;}
.ycb{bottom:408.144000pt;}
.y9a{bottom:408.645333pt;}
.y1ac{bottom:409.398667pt;}
.y137{bottom:413.180000pt;}
.y121{bottom:415.294667pt;}
.y185{bottom:415.416000pt;}
.ydd{bottom:415.604000pt;}
.yb5{bottom:417.096000pt;}
.y3b{bottom:417.788000pt;}
.y166{bottom:419.333333pt;}
.y1ab{bottom:422.017333pt;}
.y15{bottom:426.773333pt;}
.y14e{bottom:427.390667pt;}
.y1aa{bottom:434.637333pt;}
.y6c{bottom:435.868000pt;}
.yca{bottom:436.710667pt;}
.y99{bottom:437.713333pt;}
.y136{bottom:441.745333pt;}
.y120{bottom:443.861333pt;}
.y184{bottom:443.982667pt;}
.y161{bottom:444.170667pt;}
.yb4{bottom:445.662667pt;}
.y3a{bottom:446.354667pt;}
.y1a9{bottom:447.256000pt;}
.ydc{bottom:447.900000pt;}
.y6b{bottom:449.816000pt;}
.y1a8{bottom:451.006667pt;}
.y14d{bottom:455.956000pt;}
.y1a7{bottom:459.876000pt;}
.y6a{bottom:463.764000pt;}
.yc9{bottom:465.276000pt;}
.y98{bottom:466.280000pt;}
.y135{bottom:470.312000pt;}
.y11f{bottom:472.428000pt;}
.yb3{bottom:474.228000pt;}
.y39{bottom:474.921333pt;}
.y1a6{bottom:476.245333pt;}
.ydb{bottom:476.466667pt;}
.y160{bottom:480.196000pt;}
.y182{bottom:481.648000pt;}
.y14c{bottom:484.522667pt;}
.y14{bottom:486.522667pt;}
.y1a5{bottom:488.865333pt;}
.y5d{bottom:490.994667pt;}
.yc8{bottom:493.842667pt;}
.y97{bottom:494.845333pt;}
.y134{bottom:498.878667pt;}
.y1a4{bottom:501.484000pt;}
.y38{bottom:503.486667pt;}
.yda{bottom:505.033333pt;}
.yb2{bottom:507.270667pt;}
.y15f{bottom:508.762667pt;}
.y1a3{bottom:510.353333pt;}
.y14b{bottom:513.089333pt;}
.y180{bottom:516.472000pt;}
.y181{bottom:516.473333pt;}
.y183{bottom:521.022667pt;}
.yc7{bottom:522.409333pt;}
.y96{bottom:523.412000pt;}
.y13{bottom:523.562667pt;}
.y11e{bottom:524.410667pt;}
.y1a2{bottom:526.722667pt;}
.y133{bottom:527.445333pt;}
.y37{bottom:532.053333pt;}
.yd9{bottom:533.598667pt;}
.yb1{bottom:535.837333pt;}
.y15e{bottom:537.329333pt;}
.y11d{bottom:538.358667pt;}
.y1a1{bottom:539.342667pt;}
.y14a{bottom:541.654667pt;}
.y17f{bottom:546.761333pt;}
.y1a0{bottom:548.210667pt;}
.yc6{bottom:550.974667pt;}
.y95{bottom:551.978667pt;}
.y12{bottom:552.129333pt;}
.y11c{bottom:552.305333pt;}
.y132{bottom:556.010667pt;}
.y17e{bottom:556.242667pt;}
.y36{bottom:561.805333pt;}
.yd8{bottom:562.165333pt;}
.yb0{bottom:564.402667pt;}
.y19f{bottom:564.581333pt;}
.y15d{bottom:565.896000pt;}
.y11b{bottom:566.253333pt;}
.y149{bottom:571.788000pt;}
.y19e{bottom:577.200000pt;}
.y11a{bottom:580.201333pt;}
.y94{bottom:580.545333pt;}
.y11{bottom:580.694667pt;}
.y131{bottom:584.577333pt;}
.y17d{bottom:588.045333pt;}
.y19d{bottom:589.820000pt;}
.y35{bottom:590.372000pt;}
.yc5{bottom:590.732000pt;}
.y17c{bottom:592.398667pt;}
.yaf{bottom:592.969333pt;}
.y15c{bottom:594.461333pt;}
.y148{bottom:600.354667pt;}
.y19c{bottom:602.438667pt;}
.y119{bottom:607.964000pt;}
.y93{bottom:609.110667pt;}
.y10{bottom:609.261333pt;}
.y130{bottom:613.144000pt;}
.y19b{bottom:615.058667pt;}
.y34{bottom:618.938667pt;}
.yc4{bottom:619.297333pt;}
.y17b{bottom:620.965333pt;}
.yae{bottom:621.536000pt;}
.y15b{bottom:623.028000pt;}
.y118{bottom:625.550667pt;}
.y19a{bottom:627.677333pt;}
.y147{bottom:628.921333pt;}
.y92{bottom:637.677333pt;}
.yf{bottom:637.828000pt;}
.y199{bottom:640.297333pt;}
.y12f{bottom:641.709333pt;}
.y117{bottom:643.138667pt;}
.y33{bottom:647.505333pt;}
.yc3{bottom:647.864000pt;}
.y17a{bottom:649.532000pt;}
.yad{bottom:650.102667pt;}
.y15a{bottom:651.594667pt;}
.y198{bottom:652.916000pt;}
.y146{bottom:657.488000pt;}
.y116{bottom:660.725333pt;}
.y197{bottom:665.536000pt;}
.y91{bottom:666.244000pt;}
.ye{bottom:666.393333pt;}
.y12e{bottom:670.276000pt;}
.y179{bottom:674.013333pt;}
.y32{bottom:676.070667pt;}
.yc2{bottom:676.430667pt;}
.y178{bottom:678.097333pt;}
.y196{bottom:678.154667pt;}
.y159{bottom:680.160000pt;}
.yac{bottom:683.144000pt;}
.y145{bottom:686.053333pt;}
.y195{bottom:687.024000pt;}
.y90{bottom:694.810667pt;}
.yd{bottom:694.960000pt;}
.y115{bottom:701.670667pt;}
.y194{bottom:703.393333pt;}
.y12d{bottom:703.878667pt;}
.yc1{bottom:704.997333pt;}
.y177{bottom:705.734667pt;}
.y175{bottom:706.089333pt;}
.yd7{bottom:708.726667pt;}
.yab{bottom:711.710667pt;}
.y144{bottom:714.620000pt;}
.y114{bottom:715.617333pt;}
.y193{bottom:716.013333pt;}
.y172{bottom:720.008000pt;}
.y31{bottom:723.274667pt;}
.y8f{bottom:723.376000pt;}
.yc{bottom:723.526667pt;}
.y171{bottom:723.604000pt;}
.y192{bottom:728.632000pt;}
.y113{bottom:729.565333pt;}
.y12c{bottom:732.444000pt;}
.yc0{bottom:733.562667pt;}
.y30{bottom:737.222667pt;}
.yd6{bottom:737.293333pt;}
.y174{bottom:737.468000pt;}
.y191{bottom:737.501333pt;}
.yaa{bottom:740.277333pt;}
.y176{bottom:741.852000pt;}
.y173{bottom:741.881333pt;}
.y47{bottom:742.534667pt;}
.y143{bottom:743.186667pt;}
.y112{bottom:743.513333pt;}
.y158{bottom:744.753333pt;}
.y190{bottom:750.120000pt;}
.y2f{bottom:751.170667pt;}
.y8e{bottom:751.942667pt;}
.yb{bottom:752.093333pt;}
.y111{bottom:757.461333pt;}
.y12b{bottom:761.010667pt;}
.ybf{bottom:762.129333pt;}
.y18f{bottom:762.740000pt;}
.y2e{bottom:765.117333pt;}
.yd5{bottom:765.860000pt;}
.y170{bottom:766.046667pt;}
.ya9{bottom:768.844000pt;}
.y110{bottom:771.408000pt;}
.y142{bottom:771.752000pt;}
.y157{bottom:773.320000pt;}
.y2d{bottom:779.065333pt;}
.y18e{bottom:779.109333pt;}
.ya{bottom:780.658667pt;}
.y10f{bottom:785.356000pt;}
.y18d{bottom:787.978667pt;}
.y12a{bottom:789.577333pt;}
.y165{bottom:790.696000pt;}
.y2c{bottom:793.013333pt;}
.yd4{bottom:794.425333pt;}
.y16f{bottom:794.613333pt;}
.ya8{bottom:797.409333pt;}
.y8d{bottom:797.777333pt;}
.y10e{bottom:799.304000pt;}
.y141{bottom:800.318667pt;}
.ybe{bottom:801.885333pt;}
.y18c{bottom:804.348000pt;}
.y2b{bottom:806.961333pt;}
.y8c{bottom:811.725333pt;}
.y9{bottom:816.530667pt;}
.y129{bottom:818.144000pt;}
.yd3{bottom:822.992000pt;}
.y16e{bottom:823.178667pt;}
.y8b{bottom:825.673333pt;}
.ye4{bottom:826.534667pt;}
.y164{bottom:828.493333pt;}
.y140{bottom:828.885333pt;}
.ya7{bottom:830.452000pt;}
.y2a{bottom:834.590667pt;}
.y8{bottom:837.121333pt;}
.y29{bottom:851.646667pt;}
.y16d{bottom:851.745333pt;}
.y72{bottom:852.904000pt;}
.yd2{bottom:855.288000pt;}
.y7{bottom:856.146667pt;}
.y163{bottom:857.060000pt;}
.y13f{bottom:857.452000pt;}
.ya6{bottom:859.018667pt;}
.y6{bottom:865.016000pt;}
.y28{bottom:869.234667pt;}
.y18b{bottom:880.312000pt;}
.yd1{bottom:883.854667pt;}
.y5{bottom:884.042667pt;}
.y13e{bottom:886.017333pt;}
.y27{bottom:886.821333pt;}
.ya5{bottom:887.584000pt;}
.y156{bottom:887.585333pt;}
.y4{bottom:892.912000pt;}
.y26{bottom:903.877333pt;}
.y18a{bottom:908.878667pt;}
.yd0{bottom:912.421333pt;}
.y13d{bottom:914.584000pt;}
.ya4{bottom:916.150667pt;}
.y25{bottom:920.933333pt;}
.y3{bottom:925.462667pt;}
.y1ca{bottom:926.556000pt;}
.y1c9{bottom:935.425333pt;}
.y24{bottom:937.989333pt;}
.y16c{bottom:940.632000pt;}
.y13c{bottom:943.150667pt;}
.ya3{bottom:944.717333pt;}
.y2{bottom:949.373333pt;}
.y1c8{bottom:951.794667pt;}
.y23{bottom:955.577333pt;}
.y1c7{bottom:964.414667pt;}
.y22{bottom:973.164000pt;}
.y1{bottom:973.284000pt;}
.y1c6{bottom:977.033333pt;}
.y21{bottom:1007.821333pt;}
.h21{height:16.024564pt;}
.h27{height:17.070895pt;}
.h3{height:17.985814pt;}
.h14{height:20.511587pt;}
.h18{height:20.647519pt;}
.h1e{height:20.832134pt;}
.h26{height:21.726509pt;}
.h19{height:21.938521pt;}
.h15{height:22.152841pt;}
.h20{height:22.545068pt;}
.he{height:22.889412pt;}
.h1f{height:22.916180pt;}
.h16{height:23.075824pt;}
.h1a{height:23.228749pt;}
.h24{height:23.278070pt;}
.h4{height:23.910400pt;}
.h25{height:25.605877pt;}
.h22{height:25.639623pt;}
.h3d{height:27.624400pt;}
.h30{height:29.967576pt;}
.h32{height:31.880400pt;}
.h5{height:34.239693pt;}
.h6{height:35.865600pt;}
.hc{height:36.623517pt;}
.h9{height:39.850400pt;}
.hd{height:40.286830pt;}
.h2b{height:40.901852pt;}
.hf{height:41.201971pt;}
.h28{height:41.658217pt;}
.ha{height:42.758562pt;}
.h7{height:43.636400pt;}
.h31{height:45.121856pt;}
.h2c{height:51.082243pt;}
.h2{height:52.989733pt;}
.h8{height:52.995067pt;}
.h1b{height:53.919067pt;}
.h1c{height:53.924400pt;}
.h2e{height:53.988909pt;}
.h37{height:53.994243pt;}
.h1{height:54.783356pt;}
.h2f{height:58.020400pt;}
.h35{height:58.271576pt;}
.h29{height:59.873856pt;}
.h2a{height:59.879189pt;}
.h34{height:59.972400pt;}
.h2d{height:59.977733pt;}
.h36{height:61.049733pt;}
.h33{height:68.372909pt;}
.h3a{height:71.727576pt;}
.h3c{height:73.645733pt;}
.h38{height:93.832400pt;}
.h3b{height:109.932523pt;}
.h39{height:109.937856pt;}
.h13{height:133.650560pt;}
.h17{height:133.663707pt;}
.h23{height:158.119147pt;}
.h1d{height:160.033387pt;}
.h11{height:230.135467pt;}
.hb{height:239.402667pt;}
.h10{height:244.036267pt;}
.h12{height:250.214400pt;}
.h0{height:1056.000000pt;}
.w2{width:165.304640pt;}
.w3{width:169.365413pt;}
.w1{width:298.094933pt;}
.w5{width:331.945493pt;}
.w4{width:331.961147pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:2.258880pt;}
.x1e{left:4.176580pt;}
.x28{left:6.263577pt;}
.x27{left:9.912987pt;}
.x11{left:11.043413pt;}
.x1d{left:14.420192pt;}
.xf{left:16.256213pt;}
.x1c{left:21.014792pt;}
.x17{left:23.206613pt;}
.x1a{left:25.609030pt;}
.x10{left:27.840213pt;}
.x26{left:33.430326pt;}
.xd{left:35.910400pt;}
.x29{left:37.710786pt;}
.x15{left:42.860800pt;}
.x24{left:56.101333pt;}
.xb{left:59.629333pt;}
.x3{left:63.158667pt;}
.x1{left:72.000000pt;}
.x25{left:76.722667pt;}
.x58{left:82.405333pt;}
.xa{left:85.284000pt;}
.x1b{left:86.609080pt;}
.x2a{left:94.884660pt;}
.x32{left:97.122853pt;}
.xe{left:98.753600pt;}
.x16{left:102.228800pt;}
.xc{left:110.598667pt;}
.x2{left:120.000000pt;}
.x4e{left:124.788000pt;}
.x5{left:163.802667pt;}
.x4f{left:168.124000pt;}
.x31{left:181.186556pt;}
.x2e{left:184.290339pt;}
.x2d{left:187.939749pt;}
.x2c{left:192.400139pt;}
.x9{left:193.861333pt;}
.x7{left:196.740000pt;}
.x18{left:199.824000pt;}
.x2b{left:211.845818pt;}
.x13{left:212.783407pt;}
.x19{left:214.955793pt;}
.x3d{left:227.586667pt;}
.x2f{left:231.940280pt;}
.x37{left:233.440000pt;}
.x38{left:238.590667pt;}
.x1f{left:241.365333pt;}
.x30{left:273.300260pt;}
.x3b{left:287.657333pt;}
.x33{left:296.211613pt;}
.x34{left:300.138413pt;}
.x50{left:307.046667pt;}
.x8{left:309.322667pt;}
.x35{left:315.452933pt;}
.x36{left:317.525333pt;}
.x23{left:318.433333pt;}
.x6{left:320.580000pt;}
.x40{left:323.344000pt;}
.x45{left:335.334667pt;}
.x3e{left:337.414667pt;}
.x46{left:342.465333pt;}
.x3f{left:346.521333pt;}
.x52{left:351.228000pt;}
.x55{left:366.581333pt;}
.x57{left:371.433333pt;}
.x53{left:375.308000pt;}
.x48{left:384.300000pt;}
.x47{left:387.600000pt;}
.x51{left:389.450667pt;}
.x3a{left:393.042667pt;}
.x54{left:399.022667pt;}
.x4a{left:407.830667pt;}
.x20{left:410.729333pt;}
.x14{left:412.777333pt;}
.x49{left:415.561333pt;}
.x4b{left:431.361333pt;}
.x22{left:437.224000pt;}
.x4c{left:439.674667pt;}
.x4d{left:459.774667pt;}
.x42{left:478.690667pt;}
.x43{left:567.937333pt;}
.x21{left:584.157333pt;}
.x44{left:609.038667pt;}
.x59{left:642.466667pt;}
.x3c{left:663.496000pt;}
.x56{left:730.873333pt;}
.x39{left:736.176000pt;}
.x41{left:738.601333pt;}
.x4{left:742.817333pt;}
}




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