
    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_4deea44ff52f59b9b36b5a8b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a1dc23ce10c528aeab92eb62.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_673e983e5cb1d0a96e4d16ca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_104d7974f03818bb88dd5dc2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_53cad0d0dcf0c63972ca0f09.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_c1953d39ecbd6375c735215d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_d07184803a67d8a2c8a99394.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_d6662662d499c7b2c46a7a51.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_d6e82e9949319b7af8e98996.woff')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_e63a52fcacb5fc8c5b1e8ad3.woff')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_091541e017b6a819a47582f1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_3c2e26da9de4d88d5bdfa49a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_ffa4b741a74daf769872909a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_3fc6013a55c3a524af5d9839.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_392f58b0c7ed40d121289d24.woff')format("woff");}.fff{font-family:fff;line-height:1.284668;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_50b78d75c93037d4dbf75e34.woff')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_bf7680008c0d1572d40885af.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_5596a9119b0b7dedae25074e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_a164a8b2c2314ceee9d3ede7.woff')format("woff");}.ff13{font-family:ff13;line-height:1.284668;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_4f54a5c6d91f00db7df6e0d1.woff')format("woff");}.ff14{font-family:ff14;line-height:1.284180;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_c904ff1f7866b2ec6c74e516.woff')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_e1deaa9487b26f903e6ca1c8.woff')format("woff");}.ff16{font-family:ff16;line-height:1.281250;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_7cb51697a7c18bb818e5c997.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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_3197c38857d8e64c96040a52.woff')format("woff");}.ff18{font-family:ff18;line-height:1.284180;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_0ad16260f51e01937460c326.woff')format("woff");}.ff19{font-family:ff19;line-height:1.284668;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_a8b349475f698773620da892.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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_d1c0d95ff8bd75bc9965fdbb.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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_76133a464a647283e50184ce.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.281250;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_d6257c7cd7c9493e1da4d7a2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;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_673e983e5cb1d0a96e4d16ca.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;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_b63e61d8e07276f43634beb2.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;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_e57214211ea4df0c2fa07659.woff')format("woff");}.ff20{font-family:ff20;line-height:1.284180;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_eddee036ad01f0dabf629402.woff')format("woff");}.ff21{font-family:ff21;line-height:1.311035;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_78c18b26410fb83356a5ef6a.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284180;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_a7df218b0cc392d9bbe5232e.woff')format("woff");}.ff23{font-family:ff23;line-height:1.311035;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;}
.m6{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v0{vertical-align:0.000000px;}
.ls73{letter-spacing:-13.500000px;}
.ls74{letter-spacing:-13.260000px;}
.ls8a{letter-spacing:-12.600000px;}
.ls8c{letter-spacing:-10.800000px;}
.ls88{letter-spacing:-8.940000px;}
.ls90{letter-spacing:-8.280000px;}
.ls77{letter-spacing:-7.920000px;}
.ls8b{letter-spacing:-7.560000px;}
.ls8d{letter-spacing:-7.320000px;}
.ls78{letter-spacing:-6.360000px;}
.lsb2{letter-spacing:-5.940000px;}
.ls80{letter-spacing:-5.760000px;}
.ls75{letter-spacing:-5.580000px;}
.ls7f{letter-spacing:-5.400000px;}
.lsab{letter-spacing:-5.280000px;}
.lsaa{letter-spacing:-5.100000px;}
.lsa0{letter-spacing:-4.860000px;}
.lsb1{letter-spacing:-4.800000px;}
.ls4e{letter-spacing:-4.680000px;}
.ls7a{letter-spacing:-4.620000px;}
.ls72{letter-spacing:-4.560000px;}
.lsaf{letter-spacing:-4.500000px;}
.lsae{letter-spacing:-4.320000px;}
.lsb0{letter-spacing:-4.080000px;}
.lsa6{letter-spacing:-3.960000px;}
.lsa4{letter-spacing:-3.900000px;}
.ls4d{letter-spacing:-3.720000px;}
.ls56{letter-spacing:-3.600000px;}
.lsad{letter-spacing:-3.540000px;}
.ls89{letter-spacing:-3.480000px;}
.ls41{letter-spacing:-3.360000px;}
.ls55{letter-spacing:-3.240000px;}
.ls44{letter-spacing:-3.120000px;}
.ls7c{letter-spacing:-3.000000px;}
.lsa5{letter-spacing:-2.880000px;}
.ls47{letter-spacing:-2.820000px;}
.ls9e{letter-spacing:-2.760000px;}
.ls53{letter-spacing:-2.700000px;}
.ls46{letter-spacing:-2.640000px;}
.ls43{letter-spacing:-2.580000px;}
.ls9f{letter-spacing:-2.520000px;}
.ls48{letter-spacing:-2.460000px;}
.lsa1{letter-spacing:-2.400000px;}
.ls3d{letter-spacing:-2.340000px;}
.ls50{letter-spacing:-2.280000px;}
.ls49{letter-spacing:-2.160000px;}
.ls51{letter-spacing:-2.040000px;}
.lsac{letter-spacing:-1.920000px;}
.ls3e{letter-spacing:-1.860000px;}
.ls35{letter-spacing:-1.800000px;}
.ls91{letter-spacing:-1.740000px;}
.lsa7{letter-spacing:-1.620000px;}
.ls45{letter-spacing:-1.560000px;}
.ls36{letter-spacing:-1.500000px;}
.ls4a{letter-spacing:-1.440000px;}
.ls3b{letter-spacing:-1.380000px;}
.lsa9{letter-spacing:-1.320000px;}
.ls3f{letter-spacing:-1.260000px;}
.ls4f{letter-spacing:-1.200000px;}
.ls38{letter-spacing:-1.080000px;}
.lsa8{letter-spacing:-1.020000px;}
.ls39{letter-spacing:-0.960000px;}
.ls9d{letter-spacing:-0.900000px;}
.ls3a{letter-spacing:-0.840000px;}
.ls54{letter-spacing:-0.780000px;}
.ls42{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.660000px;}
.ls52{letter-spacing:-0.600000px;}
.ls40{letter-spacing:-0.540000px;}
.lsa3{letter-spacing:-0.480000px;}
.ls3c{letter-spacing:-0.420000px;}
.ls4b{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.240000px;}
.ls4c{letter-spacing:-0.180000px;}
.lsa2{letter-spacing:-0.120000px;}
.ls33{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.900000px;}
.lsc{letter-spacing:0.960000px;}
.ls8{letter-spacing:1.080000px;}
.ls85{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.200000px;}
.ls6{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.320000px;}
.ls1{letter-spacing:1.380000px;}
.lsa{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.500000px;}
.ls29{letter-spacing:1.560000px;}
.ls4{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.680000px;}
.lsf{letter-spacing:1.740000px;}
.ls12{letter-spacing:1.800000px;}
.ls2f{letter-spacing:1.860000px;}
.lsd{letter-spacing:1.920000px;}
.ls14{letter-spacing:1.980000px;}
.ls18{letter-spacing:2.040000px;}
.ls19{letter-spacing:2.100000px;}
.lse{letter-spacing:2.160000px;}
.ls28{letter-spacing:2.220000px;}
.ls2e{letter-spacing:2.280000px;}
.ls1d{letter-spacing:2.340000px;}
.ls17{letter-spacing:2.400000px;}
.ls15{letter-spacing:2.460000px;}
.ls13{letter-spacing:2.520000px;}
.ls25{letter-spacing:2.580000px;}
.ls2b{letter-spacing:2.640000px;}
.ls30{letter-spacing:2.700000px;}
.ls22{letter-spacing:2.760000px;}
.ls11{letter-spacing:2.820000px;}
.ls1b{letter-spacing:2.880000px;}
.ls2c{letter-spacing:2.940000px;}
.ls2a{letter-spacing:3.000000px;}
.ls1e{letter-spacing:3.060000px;}
.ls27{letter-spacing:3.120000px;}
.ls63{letter-spacing:3.180000px;}
.ls9{letter-spacing:3.240000px;}
.ls9c{letter-spacing:3.300000px;}
.ls5e{letter-spacing:3.360000px;}
.ls24{letter-spacing:3.420000px;}
.ls10{letter-spacing:3.480000px;}
.ls5f{letter-spacing:3.540000px;}
.ls3{letter-spacing:3.600000px;}
.ls61{letter-spacing:3.660000px;}
.ls62{letter-spacing:3.720000px;}
.ls5d{letter-spacing:3.780000px;}
.ls6e{letter-spacing:3.840000px;}
.ls31{letter-spacing:3.900000px;}
.ls23{letter-spacing:3.960000px;}
.ls69{letter-spacing:4.020000px;}
.ls64{letter-spacing:4.080000px;}
.ls60{letter-spacing:4.140000px;}
.ls67{letter-spacing:4.200000px;}
.ls5c{letter-spacing:4.320000px;}
.ls94{letter-spacing:4.380000px;}
.ls83{letter-spacing:4.440000px;}
.ls86{letter-spacing:4.500000px;}
.ls65{letter-spacing:4.560000px;}
.ls66{letter-spacing:4.680000px;}
.ls2d{letter-spacing:4.740000px;}
.ls95{letter-spacing:4.800000px;}
.ls82{letter-spacing:4.860000px;}
.ls5b{letter-spacing:4.920000px;}
.lsb3{letter-spacing:4.980000px;}
.ls57{letter-spacing:5.040000px;}
.ls6a{letter-spacing:5.100000px;}
.ls93{letter-spacing:5.160000px;}
.ls92{letter-spacing:5.220000px;}
.ls79{letter-spacing:5.280000px;}
.ls32{letter-spacing:5.400000px;}
.ls7e{letter-spacing:5.520000px;}
.ls58{letter-spacing:5.640000px;}
.ls96{letter-spacing:5.700000px;}
.ls97{letter-spacing:5.760000px;}
.ls81{letter-spacing:5.880000px;}
.ls5a{letter-spacing:5.940000px;}
.ls7d{letter-spacing:6.000000px;}
.ls6f{letter-spacing:6.120000px;}
.ls6d{letter-spacing:6.180000px;}
.ls59{letter-spacing:6.360000px;}
.ls6c{letter-spacing:6.480000px;}
.ls7b{letter-spacing:6.660000px;}
.ls8e{letter-spacing:6.780000px;}
.ls9b{letter-spacing:6.900000px;}
.ls1f{letter-spacing:6.960000px;}
.ls87{letter-spacing:7.020000px;}
.ls21{letter-spacing:7.140000px;}
.ls68{letter-spacing:7.200000px;}
.ls26{letter-spacing:7.320000px;}
.ls70{letter-spacing:7.500000px;}
.ls98{letter-spacing:7.560000px;}
.ls9a{letter-spacing:7.800000px;}
.ls99{letter-spacing:7.860000px;}
.ls20{letter-spacing:7.920000px;}
.ls76{letter-spacing:7.980000px;}
.ls1c{letter-spacing:8.040000px;}
.ls6b{letter-spacing:8.160000px;}
.ls84{letter-spacing:8.940000px;}
.ls8f{letter-spacing:9.240000px;}
.ls71{letter-spacing:10.800000px;}
.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;}
}
.ws1{word-spacing:-19.440000px;}
.ws0{word-spacing:0.000000px;}
._50{margin-left:-57.446182px;}
._52{margin-left:-54.147305px;}
._4f{margin-left:-48.855273px;}
._33{margin-left:-27.136080px;}
._1d{margin-left:-22.402371px;}
._3d{margin-left:-19.221758px;}
._2e{margin-left:-17.730000px;}
._3e{margin-left:-16.563240px;}
._23{margin-left:-14.519331px;}
._22{margin-left:-13.016476px;}
._1b{margin-left:-11.250139px;}
._67{margin-left:-10.187590px;}
._2{margin-left:-9.152703px;}
._11{margin-left:-8.099823px;}
._16{margin-left:-6.095634px;}
._6{margin-left:-4.479164px;}
._8{margin-left:-2.998067px;}
._5{margin-left:-1.959032px;}
._3{width:1.948156px;}
._1{width:3.474133px;}
._7{width:4.724432px;}
._18{width:5.726842px;}
._f{width:6.931200px;}
._4{width:8.412632px;}
._e{width:9.920842px;}
._b{width:11.832404px;}
._d{width:12.915436px;}
._17{width:14.153457px;}
._10{width:15.372834px;}
._37{width:16.608647px;}
._c{width:17.773301px;}
._a{width:18.843606px;}
._9{width:20.821806px;}
._1a{width:22.429617px;}
._19{width:23.837053px;}
._12{width:24.923217px;}
._13{width:26.914055px;}
._14{width:28.687674px;}
._36{width:30.107876px;}
._25{width:31.174674px;}
._15{width:32.543242px;}
._1e{width:33.900000px;}
._1f{width:35.734004px;}
._21{width:36.943806px;}
._1c{width:38.617446px;}
._20{width:40.350063px;}
._24{width:41.666242px;}
._27{width:43.176493px;}
._26{width:44.660615px;}
._28{width:46.294642px;}
._48{width:51.403888px;}
._2a{width:53.610133px;}
._2b{width:54.862459px;}
._29{width:57.455135px;}
._46{width:58.584388px;}
._3c{width:60.124918px;}
._34{width:61.674344px;}
._35{width:63.135529px;}
._3a{width:64.146135px;}
._3b{width:65.579713px;}
._39{width:68.465560px;}
._38{width:71.362906px;}
._51{width:75.277851px;}
._30{width:77.624912px;}
._64{width:79.423625px;}
._5d{width:80.918225px;}
._4e{width:82.826655px;}
._4a{width:83.918139px;}
._4c{width:84.976381px;}
._49{width:86.707680px;}
._68{width:87.710542px;}
._42{width:90.083033px;}
._43{width:91.084044px;}
._44{width:92.204446px;}
._45{width:93.567168px;}
._47{width:95.746322px;}
._5c{width:99.313342px;}
._69{width:101.931606px;}
._5f{width:105.417742px;}
._32{width:107.863920px;}
._5e{width:114.037625px;}
._31{width:120.441960px;}
._63{width:124.826825px;}
._41{width:127.472768px;}
._61{width:129.278225px;}
._60{width:131.051225px;}
._5b{width:139.797142px;}
._62{width:141.010625px;}
._66{width:149.241337px;}
._59{width:150.495937px;}
._65{width:151.815937px;}
._58{width:158.072137px;}
._55{width:173.331654px;}
._56{width:174.531654px;}
._57{width:175.745137px;}
._5a{width:177.452737px;}
._53{width:184.258298px;}
._6a{width:213.293659px;}
._2c{width:234.486688px;}
._4d{width:252.172002px;}
._3f{width:268.489149px;}
._40{width:274.233830px;}
._2d{width:276.316699px;}
._2f{width:343.076760px;}
._54{width:744.736353px;}
._4b{width:1136.862632px;}
._0{width:1151.515263px;}
.fc0{color:transparent;}
.fs12{font-size:34.560000px;}
.fsd{font-size:43.200000px;}
.fs2{font-size:45.360000px;}
.fsa{font-size:46.440000px;}
.fsc{font-size:47.520000px;}
.fs11{font-size:48.600000px;}
.fsb{font-size:49.680000px;}
.fs1{font-size:50.760000px;}
.fs3{font-size:51.840000px;}
.fs14{font-size:54.000000px;}
.fs4{font-size:55.080000px;}
.fs13{font-size:56.160000px;}
.fs0{font-size:57.240000px;}
.fs7{font-size:58.320000px;}
.fs5{font-size:59.400000px;}
.fs9{font-size:62.640000px;}
.fsf{font-size:65.880000px;}
.fse{font-size:66.960000px;}
.fs10{font-size:73.440000px;}
.fs6{font-size:76.680000px;}
.fs15{font-size:79.920000px;}
.fs8{font-size:164.160000px;}
.y0{bottom:0.000000px;}
.y186{bottom:69.390000px;}
.y180{bottom:69.660000px;}
.y37{bottom:72.630000px;}
.y48{bottom:72.900000px;}
.y8a{bottom:85.590000px;}
.ybc{bottom:86.400000px;}
.yf4{bottom:89.910000px;}
.y13b{bottom:90.990000px;}
.y17f{bottom:92.340000px;}
.y36{bottom:95.310000px;}
.y47{bottom:95.850000px;}
.y89{bottom:99.090000px;}
.yf3{bottom:101.790000px;}
.y116{bottom:102.060000px;}
.ybb{bottom:102.600000px;}
.y13a{bottom:104.220000px;}
.y17e{bottom:109.080000px;}
.y35{bottom:112.050000px;}
.y46{bottom:112.590000px;}
.yf2{bottom:113.670000px;}
.y115{bottom:114.210000px;}
.yba{bottom:119.340000px;}
.y185{bottom:124.740000px;}
.y17d{bottom:125.010000px;}
.yf1{bottom:125.550000px;}
.y88{bottom:125.820000px;}
.y139{bottom:128.250000px;}
.y45{bottom:129.060000px;}
.yb9{bottom:135.810000px;}
.y138{bottom:137.160000px;}
.yf0{bottom:137.430000px;}
.y114{bottom:137.700000px;}
.y87{bottom:139.320000px;}
.y184{bottom:141.750000px;}
.y17c{bottom:142.020000px;}
.y44{bottom:145.530000px;}
.y34{bottom:145.800000px;}
.yef{bottom:149.310000px;}
.y113{bottom:149.580000px;}
.yb8{bottom:152.010000px;}
.y86{bottom:152.820000px;}
.y17b{bottom:158.490000px;}
.yee{bottom:161.460000px;}
.y112{bottom:161.730000px;}
.y43{bottom:162.270000px;}
.y33{bottom:162.540000px;}
.yb7{bottom:168.750000px;}
.yed{bottom:173.340000px;}
.y111{bottom:173.610000px;}
.y183{bottom:174.960000px;}
.y17a{bottom:175.230000px;}
.y137{bottom:177.120000px;}
.y42{bottom:178.470000px;}
.y32{bottom:178.740000px;}
.y85{bottom:184.410000px;}
.yb6{bottom:185.220000px;}
.y110{bottom:185.760000px;}
.y179{bottom:191.160000px;}
.y41{bottom:194.400000px;}
.y31{bottom:194.670000px;}
.yec{bottom:197.370000px;}
.y10f{bottom:197.640000px;}
.y136{bottom:198.180000px;}
.y84{bottom:200.610000px;}
.yb5{bottom:201.690000px;}
.y182{bottom:207.900000px;}
.y178{bottom:208.170000px;}
.yeb{bottom:209.250000px;}
.y10e{bottom:209.520000px;}
.y40{bottom:210.600000px;}
.y30{bottom:210.870000px;}
.y135{bottom:211.410000px;}
.y83{bottom:217.350000px;}
.yea{bottom:221.130000px;}
.y10d{bottom:221.400000px;}
.y181{bottom:223.560000px;}
.y177{bottom:224.100000px;}
.y2f{bottom:227.340000px;}
.ye9{bottom:233.280000px;}
.y10c{bottom:233.550000px;}
.y82{bottom:233.820000px;}
.y134{bottom:235.710000px;}
.yb4{bottom:236.250000px;}
.y2e{bottom:243.810000px;}
.ye8{bottom:245.430000px;}
.y10b{bottom:245.700000px;}
.yb3{bottom:252.990000px;}
.ye7{bottom:257.580000px;}
.y10a{bottom:257.850000px;}
.y3f{bottom:259.200000px;}
.y2d{bottom:260.280000px;}
.y176{bottom:268.380000px;}
.y81{bottom:268.920000px;}
.yb2{bottom:269.460000px;}
.y109{bottom:269.730000px;}
.y2c{bottom:276.750000px;}
.y3e{bottom:277.020000px;}
.ye6{bottom:281.340000px;}
.y108{bottom:281.880000px;}
.y133{bottom:282.960000px;}
.y80{bottom:285.120000px;}
.yb1{bottom:285.660000px;}
.y2b{bottom:293.220000px;}
.y3d{bottom:293.490000px;}
.y107{bottom:293.760000px;}
.y7f{bottom:301.860000px;}
.yb0{bottom:302.400000px;}
.ye5{bottom:305.370000px;}
.y106{bottom:305.640000px;}
.y175{bottom:309.150000px;}
.y2a{bottom:309.690000px;}
.y3c{bottom:309.960000px;}
.ye4{bottom:316.980000px;}
.y105{bottom:317.250000px;}
.yaf{bottom:319.140000px;}
.y174{bottom:325.350000px;}
.y29{bottom:326.160000px;}
.ye3{bottom:328.860000px;}
.y104{bottom:329.130000px;}
.y7e{bottom:335.070000px;}
.yae{bottom:335.880000px;}
.ye2{bottom:340.740000px;}
.y103{bottom:341.280000px;}
.y28{bottom:342.090000px;}
.y3b{bottom:342.900000px;}
.y173{bottom:349.380000px;}
.y7d{bottom:351.540000px;}
.yad{bottom:352.080000px;}
.y27{bottom:358.830000px;}
.y3a{bottom:359.370000px;}
.ye1{bottom:364.500000px;}
.y102{bottom:365.040000px;}
.y7c{bottom:368.010000px;}
.yac{bottom:368.280000px;}
.y26{bottom:374.760000px;}
.y39{bottom:375.570000px;}
.ye0{bottom:376.650000px;}
.y101{bottom:377.190000px;}
.y7b{bottom:384.210000px;}
.yab{bottom:384.750000px;}
.y172{bottom:386.100000px;}
.ydf{bottom:388.530000px;}
.y100{bottom:389.070000px;}
.y25{bottom:391.230000px;}
.y38{bottom:391.770000px;}
.y24{bottom:396.630000px;}
.yde{bottom:400.680000px;}
.y7a{bottom:400.950000px;}
.yaa{bottom:401.220000px;}
.ydd{bottom:412.560000px;}
.yff{bottom:412.830000px;}
.y79{bottom:417.690000px;}
.ydc{bottom:424.440000px;}
.yfe{bottom:424.980000px;}
.y171{bottom:427.410000px;}
.y23{bottom:433.890000px;}
.ya9{bottom:434.160000px;}
.ydb{bottom:436.590000px;}
.yfd{bottom:436.860000px;}
.yda{bottom:448.200000px;}
.yfc{bottom:448.470000px;}
.y78{bottom:450.630000px;}
.ya8{bottom:450.900000px;}
.yd9{bottom:460.080000px;}
.yfb{bottom:460.350000px;}
.y77{bottom:467.370000px;}
.ya7{bottom:467.640000px;}
.yd8{bottom:471.690000px;}
.y170{bottom:471.960000px;}
.yfa{bottom:472.230000px;}
.y22{bottom:474.390000px;}
.yd7{bottom:483.300000px;}
.yf9{bottom:483.570000px;}
.y76{bottom:483.840000px;}
.ya6{bottom:484.110000px;}
.y16f{bottom:487.350000px;}
.yd6{bottom:495.450000px;}
.yf8{bottom:495.720000px;}
.y21{bottom:498.690000px;}
.y75{bottom:500.580000px;}
.ya5{bottom:500.850000px;}
.yd5{bottom:507.060000px;}
.yf7{bottom:507.600000px;}
.y74{bottom:516.780000px;}
.ya4{bottom:517.050000px;}
.yd4{bottom:519.480000px;}
.yf6{bottom:519.750000px;}
.y20{bottom:529.470000px;}
.yd3{bottom:531.360000px;}
.yf5{bottom:531.630000px;}
.y73{bottom:533.790000px;}
.ya3{bottom:534.060000px;}
.y132{bottom:537.030000px;}
.y16e{bottom:538.380000px;}
.y72{bottom:550.260000px;}
.ya2{bottom:550.530000px;}
.y1f{bottom:553.230000px;}
.yd2{bottom:555.930000px;}
.y71{bottom:566.190000px;}
.ya1{bottom:567.000000px;}
.y131{bottom:572.400000px;}
.y70{bottom:583.200000px;}
.y1e{bottom:589.140000px;}
.y6f{bottom:599.670000px;}
.yd1{bottom:600.750000px;}
.y130{bottom:605.340000px;}
.yd0{bottom:614.520000px;}
.y9f{bottom:615.060000px;}
.y6e{bottom:616.140000px;}
.y16d{bottom:616.680000px;}
.y151{bottom:618.030000px;}
.y12f{bottom:621.810000px;}
.y6d{bottom:626.940000px;}
.y1d{bottom:629.910000px;}
.y16c{bottom:630.990000px;}
.y150{bottom:631.260000px;}
.y6c{bottom:633.150000px;}
.y12e{bottom:638.550000px;}
.y9e{bottom:639.090000px;}
.ycf{bottom:640.170000px;}
.y16b{bottom:644.220000px;}
.y6b{bottom:649.620000px;}
.y9d{bottom:650.970000px;}
.y14f{bottom:652.590000px;}
.y12d{bottom:654.480000px;}
.y16a{bottom:658.260000px;}
.yce{bottom:661.230000px;}
.y9c{bottom:662.850000px;}
.y6a{bottom:665.280000px;}
.y12c{bottom:671.220000px;}
.y69{bottom:674.460000px;}
.y9b{bottom:674.730000px;}
.y68{bottom:682.290000px;}
.y169{bottom:684.720000px;}
.y9a{bottom:686.610000px;}
.y12b{bottom:687.690000px;}
.y14e{bottom:691.470000px;}
.y67{bottom:698.490000px;}
.y99{bottom:698.760000px;}
.y12a{bottom:703.890000px;}
.y14d{bottom:707.940000px;}
.y98{bottom:710.640000px;}
.y168{bottom:712.260000px;}
.y66{bottom:714.690000px;}
.y5{bottom:718.740000px;}
.y1c{bottom:719.280000px;}
.y129{bottom:720.360000px;}
.y65{bottom:722.790000px;}
.ycd{bottom:723.330000px;}
.y14c{bottom:724.680000px;}
.y167{bottom:725.760000px;}
.y64{bottom:732.240000px;}
.y4{bottom:732.510000px;}
.y1b{bottom:733.320000px;}
.y97{bottom:734.670000px;}
.ycc{bottom:735.480000px;}
.y128{bottom:736.560000px;}
.y166{bottom:739.260000px;}
.y14b{bottom:741.420000px;}
.y1a{bottom:746.820000px;}
.y96{bottom:747.090000px;}
.y63{bottom:748.440000px;}
.y165{bottom:753.030000px;}
.y127{bottom:753.300000px;}
.y14a{bottom:758.160000px;}
.y95{bottom:758.970000px;}
.y19{bottom:760.050000px;}
.y62{bottom:764.640000px;}
.ycb{bottom:765.720000px;}
.y164{bottom:766.260000px;}
.y126{bottom:769.770000px;}
.y61{bottom:770.850000px;}
.y18{bottom:773.820000px;}
.y163{bottom:780.030000px;}
.y60{bottom:781.920000px;}
.y94{bottom:783.000000px;}
.yca{bottom:784.890000px;}
.y125{bottom:786.510000px;}
.y17{bottom:787.860000px;}
.y149{bottom:790.830000px;}
.y162{bottom:793.530000px;}
.y93{bottom:795.150000px;}
.y5f{bottom:798.390000px;}
.y16{bottom:801.090000px;}
.y124{bottom:802.980000px;}
.y161{bottom:806.490000px;}
.y5e{bottom:807.030000px;}
.y15{bottom:814.320000px;}
.y5d{bottom:814.860000px;}
.y92{bottom:818.370000px;}
.y123{bottom:819.180000px;}
.y160{bottom:819.990000px;}
.y148{bottom:823.770000px;}
.y14{bottom:828.900000px;}
.y91{bottom:830.520000px;}
.y5c{bottom:831.330000px;}
.y15f{bottom:834.030000px;}
.yc9{bottom:834.570000px;}
.y122{bottom:835.650000px;}
.y147{bottom:840.240000px;}
.y90{bottom:842.670000px;}
.y13{bottom:843.210000px;}
.y15e{bottom:847.530000px;}
.y5b{bottom:847.800000px;}
.yc8{bottom:851.310000px;}
.y121{bottom:852.120000px;}
.y5a{bottom:854.550000px;}
.y8f{bottom:854.820000px;}
.y146{bottom:856.980000px;}
.y12{bottom:857.520000px;}
.y15d{bottom:861.570000px;}
.y59{bottom:864.810000px;}
.y8e{bottom:866.700000px;}
.yc7{bottom:867.510000px;}
.y120{bottom:869.670000px;}
.y11{bottom:871.290000px;}
.y145{bottom:873.720000px;}
.y15c{bottom:874.800000px;}
.y58{bottom:878.580000px;}
.y8d{bottom:878.850000px;}
.yc6{bottom:884.250000px;}
.y10{bottom:884.790000px;}
.y11f{bottom:885.060000px;}
.y15b{bottom:888.840000px;}
.y144{bottom:890.460000px;}
.y57{bottom:890.730000px;}
.y50{bottom:895.860000px;}
.yf{bottom:898.290000px;}
.yc5{bottom:900.990000px;}
.y11e{bottom:901.800000px;}
.y56{bottom:902.880000px;}
.y143{bottom:906.660000px;}
.y4f{bottom:908.550000px;}
.ye{bottom:912.060000px;}
.y4e{bottom:913.950000px;}
.y55{bottom:915.030000px;}
.y15a{bottom:915.570000px;}
.yc4{bottom:917.460000px;}
.y11d{bottom:918.540000px;}
.y142{bottom:923.400000px;}
.yd{bottom:925.290000px;}
.y54{bottom:926.910000px;}
.y159{bottom:929.340000px;}
.y4d{bottom:933.660000px;}
.yc3{bottom:933.930000px;}
.y11c{bottom:935.010000px;}
.yc{bottom:938.790000px;}
.y53{bottom:939.060000px;}
.y141{bottom:939.330000px;}
.y158{bottom:942.030000px;}
.yc2{bottom:950.400000px;}
.y11b{bottom:951.750000px;}
.yb{bottom:952.290000px;}
.y8c{bottom:952.560000px;}
.ya0{bottom:953.370000px;}
.y157{bottom:955.530000px;}
.y140{bottom:956.070000px;}
.ya{bottom:966.060000px;}
.yc1{bottom:967.140000px;}
.y11a{bottom:968.490000px;}
.y156{bottom:969.570000px;}
.y8b{bottom:972.540000px;}
.y4c{bottom:978.210000px;}
.y9{bottom:979.020000px;}
.y155{bottom:982.800000px;}
.yc0{bottom:983.340000px;}
.y119{bottom:984.690000px;}
.y13f{bottom:989.280000px;}
.y8{bottom:992.790000px;}
.y154{bottom:996.570000px;}
.y52{bottom:997.920000px;}
.ybf{bottom:999.810000px;}
.y118{bottom:1000.620000px;}
.y4a{bottom:1002.240000px;}
.y13e{bottom:1005.750000px;}
.y7{bottom:1006.830000px;}
.y153{bottom:1009.800000px;}
.y51{bottom:1014.120000px;}
.y3{bottom:1014.660000px;}
.ybe{bottom:1016.010000px;}
.y117{bottom:1017.090000px;}
.y4b{bottom:1019.250000px;}
.y13d{bottom:1022.220000px;}
.y152{bottom:1023.300000px;}
.y2{bottom:1023.840000px;}
.y6{bottom:1024.650000px;}
.y49{bottom:1048.140000px;}
.ybd{bottom:1049.760000px;}
.y1{bottom:1053.810000px;}
.y13c{bottom:1054.620000px;}
.h19{height:36.045000px;}
.h11{height:42.377344px;}
.h1a{height:44.496211px;}
.he{height:45.578320px;}
.h2{height:45.714375px;}
.h1b{height:46.615078px;}
.h18{height:47.698242px;}
.h1d{height:47.891250px;}
.h10{height:49.561875px;}
.h3{height:49.818164px;}
.h16{height:50.688281px;}
.h4{height:50.852812px;}
.hf{height:51.814687px;}
.h1e{height:52.245000px;}
.h1f{height:52.971680px;}
.h5{height:54.058008px;}
.h1c{height:55.117969px;}
.h8{height:55.510312px;}
.h1{height:56.177930px;}
.hd{height:57.209414px;}
.ha{height:57.237891px;}
.h6{height:58.268848px;}
.hc{height:61.477734px;}
.h13{height:65.684883px;}
.h14{height:68.710781px;}
.h15{height:72.041484px;}
.h17{height:75.219785px;}
.h7{height:77.279062px;}
.h20{height:80.544375px;}
.hb{height:165.442500px;}
.h12{height:1105.500000px;}
.h0{height:1107.000000px;}
.h9{height:1111.500000px;}
.w0{width:882.000000px;}
.x0{left:0.000000px;}
.xf{left:46.170000px;}
.x1{left:47.520000px;}
.x17{left:49.140000px;}
.x33{left:51.840000px;}
.x32{left:53.460000px;}
.x42{left:54.810000px;}
.x43{left:55.890000px;}
.x36{left:67.770000px;}
.x3b{left:93.420000px;}
.x3c{left:102.600000px;}
.x37{left:106.920000px;}
.x34{left:108.540000px;}
.x12{left:112.050000px;}
.x18{left:119.340000px;}
.x25{left:120.960000px;}
.x28{left:122.310000px;}
.x3a{left:124.470000px;}
.x67{left:126.630000px;}
.x5c{left:128.520000px;}
.x5b{left:129.600000px;}
.x29{left:135.270000px;}
.x19{left:136.620000px;}
.x5d{left:143.370000px;}
.x5a{left:145.260000px;}
.x40{left:146.880000px;}
.x3f{left:150.930000px;}
.x10{left:154.170000px;}
.x35{left:162.270000px;}
.x14{left:163.890000px;}
.x1f{left:182.520000px;}
.x3{left:188.460000px;}
.x1a{left:203.580000px;}
.x4{left:207.360000px;}
.x16{left:211.140000px;}
.x59{left:221.940000px;}
.x38{left:229.500000px;}
.x21{left:231.660000px;}
.x44{left:233.550000px;}
.x45{left:234.630000px;}
.x11{left:245.430000px;}
.x68{left:258.390000px;}
.x41{left:268.920000px;}
.x15{left:271.890000px;}
.x20{left:281.610000px;}
.x22{left:284.310000px;}
.x26{left:286.740000px;}
.x3e{left:294.840000px;}
.x3d{left:296.190000px;}
.x39{left:304.020000px;}
.x1d{left:315.900000px;}
.x13{left:323.730000px;}
.x27{left:331.830000px;}
.x5e{left:340.470000px;}
.x69{left:341.820000px;}
.x6b{left:350.190000px;}
.x66{left:358.830000px;}
.x1e{left:365.580000px;}
.x2{left:366.660000px;}
.x6a{left:382.590000px;}
.x6{left:402.840000px;}
.x9{left:403.920000px;}
.xe{left:405.000000px;}
.x1b{left:406.080000px;}
.x46{left:408.240000px;}
.x4c{left:409.320000px;}
.x51{left:410.400000px;}
.x53{left:411.480000px;}
.x58{left:413.370000px;}
.x7{left:415.530000px;}
.x8{left:416.610000px;}
.xd{left:418.500000px;}
.x1c{left:421.470000px;}
.x4d{left:424.170000px;}
.x52{left:426.330000px;}
.x56{left:450.090000px;}
.x5f{left:453.330000px;}
.x55{left:457.650000px;}
.xa{left:459.000000px;}
.x47{left:466.290000px;}
.x54{left:469.260000px;}
.x23{left:478.980000px;}
.x31{left:480.060000px;}
.x2e{left:481.140000px;}
.x65{left:485.190000px;}
.x62{left:486.540000px;}
.x60{left:487.620000px;}
.x50{left:491.670000px;}
.x2f{left:494.100000px;}
.x30{left:495.720000px;}
.x64{left:499.770000px;}
.x61{left:500.850000px;}
.x57{left:503.010000px;}
.xb{left:509.760000px;}
.x48{left:511.650000px;}
.x5{left:545.940000px;}
.x2c{left:550.530000px;}
.x49{left:555.930000px;}
.x2a{left:559.440000px;}
.x2b{left:568.620000px;}
.x24{left:589.950000px;}
.xc{left:609.660000px;}
.x4a{left:626.940000px;}
.x4e{left:678.240000px;}
.x4b{left:690.390000px;}
.x4f{left:701.730000px;}
.x63{left:746.010000px;}
.x2d{left:800.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls73{letter-spacing:-12.000000pt;}
.ls74{letter-spacing:-11.786667pt;}
.ls8a{letter-spacing:-11.200000pt;}
.ls8c{letter-spacing:-9.600000pt;}
.ls88{letter-spacing:-7.946667pt;}
.ls90{letter-spacing:-7.360000pt;}
.ls77{letter-spacing:-7.040000pt;}
.ls8b{letter-spacing:-6.720000pt;}
.ls8d{letter-spacing:-6.506667pt;}
.ls78{letter-spacing:-5.653333pt;}
.lsb2{letter-spacing:-5.280000pt;}
.ls80{letter-spacing:-5.120000pt;}
.ls75{letter-spacing:-4.960000pt;}
.ls7f{letter-spacing:-4.800000pt;}
.lsab{letter-spacing:-4.693333pt;}
.lsaa{letter-spacing:-4.533333pt;}
.lsa0{letter-spacing:-4.320000pt;}
.lsb1{letter-spacing:-4.266667pt;}
.ls4e{letter-spacing:-4.160000pt;}
.ls7a{letter-spacing:-4.106667pt;}
.ls72{letter-spacing:-4.053333pt;}
.lsaf{letter-spacing:-4.000000pt;}
.lsae{letter-spacing:-3.840000pt;}
.lsb0{letter-spacing:-3.626667pt;}
.lsa6{letter-spacing:-3.520000pt;}
.lsa4{letter-spacing:-3.466667pt;}
.ls4d{letter-spacing:-3.306667pt;}
.ls56{letter-spacing:-3.200000pt;}
.lsad{letter-spacing:-3.146667pt;}
.ls89{letter-spacing:-3.093333pt;}
.ls41{letter-spacing:-2.986667pt;}
.ls55{letter-spacing:-2.880000pt;}
.ls44{letter-spacing:-2.773333pt;}
.ls7c{letter-spacing:-2.666667pt;}
.lsa5{letter-spacing:-2.560000pt;}
.ls47{letter-spacing:-2.506667pt;}
.ls9e{letter-spacing:-2.453333pt;}
.ls53{letter-spacing:-2.400000pt;}
.ls46{letter-spacing:-2.346667pt;}
.ls43{letter-spacing:-2.293333pt;}
.ls9f{letter-spacing:-2.240000pt;}
.ls48{letter-spacing:-2.186667pt;}
.lsa1{letter-spacing:-2.133333pt;}
.ls3d{letter-spacing:-2.080000pt;}
.ls50{letter-spacing:-2.026667pt;}
.ls49{letter-spacing:-1.920000pt;}
.ls51{letter-spacing:-1.813333pt;}
.lsac{letter-spacing:-1.706667pt;}
.ls3e{letter-spacing:-1.653333pt;}
.ls35{letter-spacing:-1.600000pt;}
.ls91{letter-spacing:-1.546667pt;}
.lsa7{letter-spacing:-1.440000pt;}
.ls45{letter-spacing:-1.386667pt;}
.ls36{letter-spacing:-1.333333pt;}
.ls4a{letter-spacing:-1.280000pt;}
.ls3b{letter-spacing:-1.226667pt;}
.lsa9{letter-spacing:-1.173333pt;}
.ls3f{letter-spacing:-1.120000pt;}
.ls4f{letter-spacing:-1.066667pt;}
.ls38{letter-spacing:-0.960000pt;}
.lsa8{letter-spacing:-0.906667pt;}
.ls39{letter-spacing:-0.853333pt;}
.ls9d{letter-spacing:-0.800000pt;}
.ls3a{letter-spacing:-0.746667pt;}
.ls54{letter-spacing:-0.693333pt;}
.ls42{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.586667pt;}
.ls52{letter-spacing:-0.533333pt;}
.ls40{letter-spacing:-0.480000pt;}
.lsa3{letter-spacing:-0.426667pt;}
.ls3c{letter-spacing:-0.373333pt;}
.ls4b{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls4c{letter-spacing:-0.160000pt;}
.lsa2{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls8{letter-spacing:0.960000pt;}
.ls85{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.066667pt;}
.ls6{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1.226667pt;}
.lsa{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.333333pt;}
.ls29{letter-spacing:1.386667pt;}
.ls4{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.493333pt;}
.lsf{letter-spacing:1.546667pt;}
.ls12{letter-spacing:1.600000pt;}
.ls2f{letter-spacing:1.653333pt;}
.lsd{letter-spacing:1.706667pt;}
.ls14{letter-spacing:1.760000pt;}
.ls18{letter-spacing:1.813333pt;}
.ls19{letter-spacing:1.866667pt;}
.lse{letter-spacing:1.920000pt;}
.ls28{letter-spacing:1.973333pt;}
.ls2e{letter-spacing:2.026667pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls17{letter-spacing:2.133333pt;}
.ls15{letter-spacing:2.186667pt;}
.ls13{letter-spacing:2.240000pt;}
.ls25{letter-spacing:2.293333pt;}
.ls2b{letter-spacing:2.346667pt;}
.ls30{letter-spacing:2.400000pt;}
.ls22{letter-spacing:2.453333pt;}
.ls11{letter-spacing:2.506667pt;}
.ls1b{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:2.613333pt;}
.ls2a{letter-spacing:2.666667pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls27{letter-spacing:2.773333pt;}
.ls63{letter-spacing:2.826667pt;}
.ls9{letter-spacing:2.880000pt;}
.ls9c{letter-spacing:2.933333pt;}
.ls5e{letter-spacing:2.986667pt;}
.ls24{letter-spacing:3.040000pt;}
.ls10{letter-spacing:3.093333pt;}
.ls5f{letter-spacing:3.146667pt;}
.ls3{letter-spacing:3.200000pt;}
.ls61{letter-spacing:3.253333pt;}
.ls62{letter-spacing:3.306667pt;}
.ls5d{letter-spacing:3.360000pt;}
.ls6e{letter-spacing:3.413333pt;}
.ls31{letter-spacing:3.466667pt;}
.ls23{letter-spacing:3.520000pt;}
.ls69{letter-spacing:3.573333pt;}
.ls64{letter-spacing:3.626667pt;}
.ls60{letter-spacing:3.680000pt;}
.ls67{letter-spacing:3.733333pt;}
.ls5c{letter-spacing:3.840000pt;}
.ls94{letter-spacing:3.893333pt;}
.ls83{letter-spacing:3.946667pt;}
.ls86{letter-spacing:4.000000pt;}
.ls65{letter-spacing:4.053333pt;}
.ls66{letter-spacing:4.160000pt;}
.ls2d{letter-spacing:4.213333pt;}
.ls95{letter-spacing:4.266667pt;}
.ls82{letter-spacing:4.320000pt;}
.ls5b{letter-spacing:4.373333pt;}
.lsb3{letter-spacing:4.426667pt;}
.ls57{letter-spacing:4.480000pt;}
.ls6a{letter-spacing:4.533333pt;}
.ls93{letter-spacing:4.586667pt;}
.ls92{letter-spacing:4.640000pt;}
.ls79{letter-spacing:4.693333pt;}
.ls32{letter-spacing:4.800000pt;}
.ls7e{letter-spacing:4.906667pt;}
.ls58{letter-spacing:5.013333pt;}
.ls96{letter-spacing:5.066667pt;}
.ls97{letter-spacing:5.120000pt;}
.ls81{letter-spacing:5.226667pt;}
.ls5a{letter-spacing:5.280000pt;}
.ls7d{letter-spacing:5.333333pt;}
.ls6f{letter-spacing:5.440000pt;}
.ls6d{letter-spacing:5.493333pt;}
.ls59{letter-spacing:5.653333pt;}
.ls6c{letter-spacing:5.760000pt;}
.ls7b{letter-spacing:5.920000pt;}
.ls8e{letter-spacing:6.026667pt;}
.ls9b{letter-spacing:6.133333pt;}
.ls1f{letter-spacing:6.186667pt;}
.ls87{letter-spacing:6.240000pt;}
.ls21{letter-spacing:6.346667pt;}
.ls68{letter-spacing:6.400000pt;}
.ls26{letter-spacing:6.506667pt;}
.ls70{letter-spacing:6.666667pt;}
.ls98{letter-spacing:6.720000pt;}
.ls9a{letter-spacing:6.933333pt;}
.ls99{letter-spacing:6.986667pt;}
.ls20{letter-spacing:7.040000pt;}
.ls76{letter-spacing:7.093333pt;}
.ls1c{letter-spacing:7.146667pt;}
.ls6b{letter-spacing:7.253333pt;}
.ls84{letter-spacing:7.946667pt;}
.ls8f{letter-spacing:8.213333pt;}
.ls71{letter-spacing:9.600000pt;}
.ws1{word-spacing:-17.280000pt;}
.ws0{word-spacing:0.000000pt;}
._50{margin-left:-51.063273pt;}
._52{margin-left:-48.130938pt;}
._4f{margin-left:-43.426909pt;}
._33{margin-left:-24.120960pt;}
._1d{margin-left:-19.913218pt;}
._3d{margin-left:-17.086008pt;}
._2e{margin-left:-15.760000pt;}
._3e{margin-left:-14.722880pt;}
._23{margin-left:-12.906072pt;}
._22{margin-left:-11.570201pt;}
._1b{margin-left:-10.000124pt;}
._67{margin-left:-9.055635pt;}
._2{margin-left:-8.135736pt;}
._11{margin-left:-7.199843pt;}
._16{margin-left:-5.418341pt;}
._6{margin-left:-3.981479pt;}
._8{margin-left:-2.664949pt;}
._5{margin-left:-1.741361pt;}
._3{width:1.731694pt;}
._1{width:3.088118pt;}
._7{width:4.199495pt;}
._18{width:5.090526pt;}
._f{width:6.161067pt;}
._4{width:7.477895pt;}
._e{width:8.818526pt;}
._b{width:10.517693pt;}
._d{width:11.480387pt;}
._17{width:12.580851pt;}
._10{width:13.664741pt;}
._37{width:14.763242pt;}
._c{width:15.798490pt;}
._a{width:16.749872pt;}
._9{width:18.508272pt;}
._1a{width:19.937437pt;}
._19{width:21.188491pt;}
._12{width:22.153971pt;}
._13{width:23.923604pt;}
._14{width:25.500154pt;}
._36{width:26.762557pt;}
._25{width:27.710821pt;}
._15{width:28.927326pt;}
._1e{width:30.133333pt;}
._1f{width:31.763559pt;}
._21{width:32.838939pt;}
._1c{width:34.326619pt;}
._20{width:35.866723pt;}
._24{width:37.036660pt;}
._27{width:38.379105pt;}
._26{width:39.698324pt;}
._28{width:41.150793pt;}
._48{width:45.692345pt;}
._2a{width:47.653451pt;}
._2b{width:48.766630pt;}
._29{width:51.071231pt;}
._46{width:52.075011pt;}
._3c{width:53.444371pt;}
._34{width:54.821639pt;}
._35{width:56.120471pt;}
._3a{width:57.018786pt;}
._3b{width:58.293078pt;}
._39{width:60.858276pt;}
._38{width:63.433694pt;}
._51{width:66.913646pt;}
._30{width:68.999921pt;}
._64{width:70.598778pt;}
._5d{width:71.927311pt;}
._4e{width:73.623693pt;}
._4a{width:74.593902pt;}
._4c{width:75.534561pt;}
._49{width:77.073493pt;}
._68{width:77.964926pt;}
._42{width:80.073807pt;}
._43{width:80.963595pt;}
._44{width:81.959508pt;}
._45{width:83.170816pt;}
._47{width:85.107842pt;}
._5c{width:88.278526pt;}
._69{width:90.605872pt;}
._5f{width:93.704659pt;}
._32{width:95.879040pt;}
._5e{width:101.366778pt;}
._31{width:107.059520pt;}
._63{width:110.957178pt;}
._41{width:113.309127pt;}
._61{width:114.913978pt;}
._60{width:116.489978pt;}
._5b{width:124.264126pt;}
._62{width:125.342778pt;}
._66{width:132.658966pt;}
._59{width:133.774166pt;}
._65{width:134.947500pt;}
._58{width:140.508566pt;}
._55{width:154.072581pt;}
._56{width:155.139248pt;}
._57{width:156.217900pt;}
._5a{width:157.735766pt;}
._53{width:163.785153pt;}
._6a{width:189.594364pt;}
._2c{width:208.432611pt;}
._4d{width:224.152890pt;}
._3f{width:238.657021pt;}
._40{width:243.763404pt;}
._2d{width:245.614844pt;}
._2f{width:304.957120pt;}
._54{width:661.987870pt;}
._4b{width:1010.544561pt;}
._0{width:1023.569123pt;}
.fs12{font-size:30.720000pt;}
.fsd{font-size:38.400000pt;}
.fs2{font-size:40.320000pt;}
.fsa{font-size:41.280000pt;}
.fsc{font-size:42.240000pt;}
.fs11{font-size:43.200000pt;}
.fsb{font-size:44.160000pt;}
.fs1{font-size:45.120000pt;}
.fs3{font-size:46.080000pt;}
.fs14{font-size:48.000000pt;}
.fs4{font-size:48.960000pt;}
.fs13{font-size:49.920000pt;}
.fs0{font-size:50.880000pt;}
.fs7{font-size:51.840000pt;}
.fs5{font-size:52.800000pt;}
.fs9{font-size:55.680000pt;}
.fsf{font-size:58.560000pt;}
.fse{font-size:59.520000pt;}
.fs10{font-size:65.280000pt;}
.fs6{font-size:68.160000pt;}
.fs15{font-size:71.040000pt;}
.fs8{font-size:145.920000pt;}
.y0{bottom:0.000000pt;}
.y186{bottom:61.680000pt;}
.y180{bottom:61.920000pt;}
.y37{bottom:64.560000pt;}
.y48{bottom:64.800000pt;}
.y8a{bottom:76.080000pt;}
.ybc{bottom:76.800000pt;}
.yf4{bottom:79.920000pt;}
.y13b{bottom:80.880000pt;}
.y17f{bottom:82.080000pt;}
.y36{bottom:84.720000pt;}
.y47{bottom:85.200000pt;}
.y89{bottom:88.080000pt;}
.yf3{bottom:90.480000pt;}
.y116{bottom:90.720000pt;}
.ybb{bottom:91.200000pt;}
.y13a{bottom:92.640000pt;}
.y17e{bottom:96.960000pt;}
.y35{bottom:99.600000pt;}
.y46{bottom:100.080000pt;}
.yf2{bottom:101.040000pt;}
.y115{bottom:101.520000pt;}
.yba{bottom:106.080000pt;}
.y185{bottom:110.880000pt;}
.y17d{bottom:111.120000pt;}
.yf1{bottom:111.600000pt;}
.y88{bottom:111.840000pt;}
.y139{bottom:114.000000pt;}
.y45{bottom:114.720000pt;}
.yb9{bottom:120.720000pt;}
.y138{bottom:121.920000pt;}
.yf0{bottom:122.160000pt;}
.y114{bottom:122.400000pt;}
.y87{bottom:123.840000pt;}
.y184{bottom:126.000000pt;}
.y17c{bottom:126.240000pt;}
.y44{bottom:129.360000pt;}
.y34{bottom:129.600000pt;}
.yef{bottom:132.720000pt;}
.y113{bottom:132.960000pt;}
.yb8{bottom:135.120000pt;}
.y86{bottom:135.840000pt;}
.y17b{bottom:140.880000pt;}
.yee{bottom:143.520000pt;}
.y112{bottom:143.760000pt;}
.y43{bottom:144.240000pt;}
.y33{bottom:144.480000pt;}
.yb7{bottom:150.000000pt;}
.yed{bottom:154.080000pt;}
.y111{bottom:154.320000pt;}
.y183{bottom:155.520000pt;}
.y17a{bottom:155.760000pt;}
.y137{bottom:157.440000pt;}
.y42{bottom:158.640000pt;}
.y32{bottom:158.880000pt;}
.y85{bottom:163.920000pt;}
.yb6{bottom:164.640000pt;}
.y110{bottom:165.120000pt;}
.y179{bottom:169.920000pt;}
.y41{bottom:172.800000pt;}
.y31{bottom:173.040000pt;}
.yec{bottom:175.440000pt;}
.y10f{bottom:175.680000pt;}
.y136{bottom:176.160000pt;}
.y84{bottom:178.320000pt;}
.yb5{bottom:179.280000pt;}
.y182{bottom:184.800000pt;}
.y178{bottom:185.040000pt;}
.yeb{bottom:186.000000pt;}
.y10e{bottom:186.240000pt;}
.y40{bottom:187.200000pt;}
.y30{bottom:187.440000pt;}
.y135{bottom:187.920000pt;}
.y83{bottom:193.200000pt;}
.yea{bottom:196.560000pt;}
.y10d{bottom:196.800000pt;}
.y181{bottom:198.720000pt;}
.y177{bottom:199.200000pt;}
.y2f{bottom:202.080000pt;}
.ye9{bottom:207.360000pt;}
.y10c{bottom:207.600000pt;}
.y82{bottom:207.840000pt;}
.y134{bottom:209.520000pt;}
.yb4{bottom:210.000000pt;}
.y2e{bottom:216.720000pt;}
.ye8{bottom:218.160000pt;}
.y10b{bottom:218.400000pt;}
.yb3{bottom:224.880000pt;}
.ye7{bottom:228.960000pt;}
.y10a{bottom:229.200000pt;}
.y3f{bottom:230.400000pt;}
.y2d{bottom:231.360000pt;}
.y176{bottom:238.560000pt;}
.y81{bottom:239.040000pt;}
.yb2{bottom:239.520000pt;}
.y109{bottom:239.760000pt;}
.y2c{bottom:246.000000pt;}
.y3e{bottom:246.240000pt;}
.ye6{bottom:250.080000pt;}
.y108{bottom:250.560000pt;}
.y133{bottom:251.520000pt;}
.y80{bottom:253.440000pt;}
.yb1{bottom:253.920000pt;}
.y2b{bottom:260.640000pt;}
.y3d{bottom:260.880000pt;}
.y107{bottom:261.120000pt;}
.y7f{bottom:268.320000pt;}
.yb0{bottom:268.800000pt;}
.ye5{bottom:271.440000pt;}
.y106{bottom:271.680000pt;}
.y175{bottom:274.800000pt;}
.y2a{bottom:275.280000pt;}
.y3c{bottom:275.520000pt;}
.ye4{bottom:281.760000pt;}
.y105{bottom:282.000000pt;}
.yaf{bottom:283.680000pt;}
.y174{bottom:289.200000pt;}
.y29{bottom:289.920000pt;}
.ye3{bottom:292.320000pt;}
.y104{bottom:292.560000pt;}
.y7e{bottom:297.840000pt;}
.yae{bottom:298.560000pt;}
.ye2{bottom:302.880000pt;}
.y103{bottom:303.360000pt;}
.y28{bottom:304.080000pt;}
.y3b{bottom:304.800000pt;}
.y173{bottom:310.560000pt;}
.y7d{bottom:312.480000pt;}
.yad{bottom:312.960000pt;}
.y27{bottom:318.960000pt;}
.y3a{bottom:319.440000pt;}
.ye1{bottom:324.000000pt;}
.y102{bottom:324.480000pt;}
.y7c{bottom:327.120000pt;}
.yac{bottom:327.360000pt;}
.y26{bottom:333.120000pt;}
.y39{bottom:333.840000pt;}
.ye0{bottom:334.800000pt;}
.y101{bottom:335.280000pt;}
.y7b{bottom:341.520000pt;}
.yab{bottom:342.000000pt;}
.y172{bottom:343.200000pt;}
.ydf{bottom:345.360000pt;}
.y100{bottom:345.840000pt;}
.y25{bottom:347.760000pt;}
.y38{bottom:348.240000pt;}
.y24{bottom:352.560000pt;}
.yde{bottom:356.160000pt;}
.y7a{bottom:356.400000pt;}
.yaa{bottom:356.640000pt;}
.ydd{bottom:366.720000pt;}
.yff{bottom:366.960000pt;}
.y79{bottom:371.280000pt;}
.ydc{bottom:377.280000pt;}
.yfe{bottom:377.760000pt;}
.y171{bottom:379.920000pt;}
.y23{bottom:385.680000pt;}
.ya9{bottom:385.920000pt;}
.ydb{bottom:388.080000pt;}
.yfd{bottom:388.320000pt;}
.yda{bottom:398.400000pt;}
.yfc{bottom:398.640000pt;}
.y78{bottom:400.560000pt;}
.ya8{bottom:400.800000pt;}
.yd9{bottom:408.960000pt;}
.yfb{bottom:409.200000pt;}
.y77{bottom:415.440000pt;}
.ya7{bottom:415.680000pt;}
.yd8{bottom:419.280000pt;}
.y170{bottom:419.520000pt;}
.yfa{bottom:419.760000pt;}
.y22{bottom:421.680000pt;}
.yd7{bottom:429.600000pt;}
.yf9{bottom:429.840000pt;}
.y76{bottom:430.080000pt;}
.ya6{bottom:430.320000pt;}
.y16f{bottom:433.200000pt;}
.yd6{bottom:440.400000pt;}
.yf8{bottom:440.640000pt;}
.y21{bottom:443.280000pt;}
.y75{bottom:444.960000pt;}
.ya5{bottom:445.200000pt;}
.yd5{bottom:450.720000pt;}
.yf7{bottom:451.200000pt;}
.y74{bottom:459.360000pt;}
.ya4{bottom:459.600000pt;}
.yd4{bottom:461.760000pt;}
.yf6{bottom:462.000000pt;}
.y20{bottom:470.640000pt;}
.yd3{bottom:472.320000pt;}
.yf5{bottom:472.560000pt;}
.y73{bottom:474.480000pt;}
.ya3{bottom:474.720000pt;}
.y132{bottom:477.360000pt;}
.y16e{bottom:478.560000pt;}
.y72{bottom:489.120000pt;}
.ya2{bottom:489.360000pt;}
.y1f{bottom:491.760000pt;}
.yd2{bottom:494.160000pt;}
.y71{bottom:503.280000pt;}
.ya1{bottom:504.000000pt;}
.y131{bottom:508.800000pt;}
.y70{bottom:518.400000pt;}
.y1e{bottom:523.680000pt;}
.y6f{bottom:533.040000pt;}
.yd1{bottom:534.000000pt;}
.y130{bottom:538.080000pt;}
.yd0{bottom:546.240000pt;}
.y9f{bottom:546.720000pt;}
.y6e{bottom:547.680000pt;}
.y16d{bottom:548.160000pt;}
.y151{bottom:549.360000pt;}
.y12f{bottom:552.720000pt;}
.y6d{bottom:557.280000pt;}
.y1d{bottom:559.920000pt;}
.y16c{bottom:560.880000pt;}
.y150{bottom:561.120000pt;}
.y6c{bottom:562.800000pt;}
.y12e{bottom:567.600000pt;}
.y9e{bottom:568.080000pt;}
.ycf{bottom:569.040000pt;}
.y16b{bottom:572.640000pt;}
.y6b{bottom:577.440000pt;}
.y9d{bottom:578.640000pt;}
.y14f{bottom:580.080000pt;}
.y12d{bottom:581.760000pt;}
.y16a{bottom:585.120000pt;}
.yce{bottom:587.760000pt;}
.y9c{bottom:589.200000pt;}
.y6a{bottom:591.360000pt;}
.y12c{bottom:596.640000pt;}
.y69{bottom:599.520000pt;}
.y9b{bottom:599.760000pt;}
.y68{bottom:606.480000pt;}
.y169{bottom:608.640000pt;}
.y9a{bottom:610.320000pt;}
.y12b{bottom:611.280000pt;}
.y14e{bottom:614.640000pt;}
.y67{bottom:620.880000pt;}
.y99{bottom:621.120000pt;}
.y12a{bottom:625.680000pt;}
.y14d{bottom:629.280000pt;}
.y98{bottom:631.680000pt;}
.y168{bottom:633.120000pt;}
.y66{bottom:635.280000pt;}
.y5{bottom:638.880000pt;}
.y1c{bottom:639.360000pt;}
.y129{bottom:640.320000pt;}
.y65{bottom:642.480000pt;}
.ycd{bottom:642.960000pt;}
.y14c{bottom:644.160000pt;}
.y167{bottom:645.120000pt;}
.y64{bottom:650.880000pt;}
.y4{bottom:651.120000pt;}
.y1b{bottom:651.840000pt;}
.y97{bottom:653.040000pt;}
.ycc{bottom:653.760000pt;}
.y128{bottom:654.720000pt;}
.y166{bottom:657.120000pt;}
.y14b{bottom:659.040000pt;}
.y1a{bottom:663.840000pt;}
.y96{bottom:664.080000pt;}
.y63{bottom:665.280000pt;}
.y165{bottom:669.360000pt;}
.y127{bottom:669.600000pt;}
.y14a{bottom:673.920000pt;}
.y95{bottom:674.640000pt;}
.y19{bottom:675.600000pt;}
.y62{bottom:679.680000pt;}
.ycb{bottom:680.640000pt;}
.y164{bottom:681.120000pt;}
.y126{bottom:684.240000pt;}
.y61{bottom:685.200000pt;}
.y18{bottom:687.840000pt;}
.y163{bottom:693.360000pt;}
.y60{bottom:695.040000pt;}
.y94{bottom:696.000000pt;}
.yca{bottom:697.680000pt;}
.y125{bottom:699.120000pt;}
.y17{bottom:700.320000pt;}
.y149{bottom:702.960000pt;}
.y162{bottom:705.360000pt;}
.y93{bottom:706.800000pt;}
.y5f{bottom:709.680000pt;}
.y16{bottom:712.080000pt;}
.y124{bottom:713.760000pt;}
.y161{bottom:716.880000pt;}
.y5e{bottom:717.360000pt;}
.y15{bottom:723.840000pt;}
.y5d{bottom:724.320000pt;}
.y92{bottom:727.440000pt;}
.y123{bottom:728.160000pt;}
.y160{bottom:728.880000pt;}
.y148{bottom:732.240000pt;}
.y14{bottom:736.800000pt;}
.y91{bottom:738.240000pt;}
.y5c{bottom:738.960000pt;}
.y15f{bottom:741.360000pt;}
.yc9{bottom:741.840000pt;}
.y122{bottom:742.800000pt;}
.y147{bottom:746.880000pt;}
.y90{bottom:749.040000pt;}
.y13{bottom:749.520000pt;}
.y15e{bottom:753.360000pt;}
.y5b{bottom:753.600000pt;}
.yc8{bottom:756.720000pt;}
.y121{bottom:757.440000pt;}
.y5a{bottom:759.600000pt;}
.y8f{bottom:759.840000pt;}
.y146{bottom:761.760000pt;}
.y12{bottom:762.240000pt;}
.y15d{bottom:765.840000pt;}
.y59{bottom:768.720000pt;}
.y8e{bottom:770.400000pt;}
.yc7{bottom:771.120000pt;}
.y120{bottom:773.040000pt;}
.y11{bottom:774.480000pt;}
.y145{bottom:776.640000pt;}
.y15c{bottom:777.600000pt;}
.y58{bottom:780.960000pt;}
.y8d{bottom:781.200000pt;}
.yc6{bottom:786.000000pt;}
.y10{bottom:786.480000pt;}
.y11f{bottom:786.720000pt;}
.y15b{bottom:790.080000pt;}
.y144{bottom:791.520000pt;}
.y57{bottom:791.760000pt;}
.y50{bottom:796.320000pt;}
.yf{bottom:798.480000pt;}
.yc5{bottom:800.880000pt;}
.y11e{bottom:801.600000pt;}
.y56{bottom:802.560000pt;}
.y143{bottom:805.920000pt;}
.y4f{bottom:807.600000pt;}
.ye{bottom:810.720000pt;}
.y4e{bottom:812.400000pt;}
.y55{bottom:813.360000pt;}
.y15a{bottom:813.840000pt;}
.yc4{bottom:815.520000pt;}
.y11d{bottom:816.480000pt;}
.y142{bottom:820.800000pt;}
.yd{bottom:822.480000pt;}
.y54{bottom:823.920000pt;}
.y159{bottom:826.080000pt;}
.y4d{bottom:829.920000pt;}
.yc3{bottom:830.160000pt;}
.y11c{bottom:831.120000pt;}
.yc{bottom:834.480000pt;}
.y53{bottom:834.720000pt;}
.y141{bottom:834.960000pt;}
.y158{bottom:837.360000pt;}
.yc2{bottom:844.800000pt;}
.y11b{bottom:846.000000pt;}
.yb{bottom:846.480000pt;}
.y8c{bottom:846.720000pt;}
.ya0{bottom:847.440000pt;}
.y157{bottom:849.360000pt;}
.y140{bottom:849.840000pt;}
.ya{bottom:858.720000pt;}
.yc1{bottom:859.680000pt;}
.y11a{bottom:860.880000pt;}
.y156{bottom:861.840000pt;}
.y8b{bottom:864.480000pt;}
.y4c{bottom:869.520000pt;}
.y9{bottom:870.240000pt;}
.y155{bottom:873.600000pt;}
.yc0{bottom:874.080000pt;}
.y119{bottom:875.280000pt;}
.y13f{bottom:879.360000pt;}
.y8{bottom:882.480000pt;}
.y154{bottom:885.840000pt;}
.y52{bottom:887.040000pt;}
.ybf{bottom:888.720000pt;}
.y118{bottom:889.440000pt;}
.y4a{bottom:890.880000pt;}
.y13e{bottom:894.000000pt;}
.y7{bottom:894.960000pt;}
.y153{bottom:897.600000pt;}
.y51{bottom:901.440000pt;}
.y3{bottom:901.920000pt;}
.ybe{bottom:903.120000pt;}
.y117{bottom:904.080000pt;}
.y4b{bottom:906.000000pt;}
.y13d{bottom:908.640000pt;}
.y152{bottom:909.600000pt;}
.y2{bottom:910.080000pt;}
.y6{bottom:910.800000pt;}
.y49{bottom:931.680000pt;}
.ybd{bottom:933.120000pt;}
.y1{bottom:936.720000pt;}
.y13c{bottom:937.440000pt;}
.h19{height:32.040000pt;}
.h11{height:37.668750pt;}
.h1a{height:39.552188pt;}
.he{height:40.514062pt;}
.h2{height:40.635000pt;}
.h1b{height:41.435625pt;}
.h18{height:42.398437pt;}
.h1d{height:42.570000pt;}
.h10{height:44.055000pt;}
.h3{height:44.282812pt;}
.h16{height:45.056250pt;}
.h4{height:45.202500pt;}
.hf{height:46.057500pt;}
.h1e{height:46.440000pt;}
.h1f{height:47.085938pt;}
.h5{height:48.051562pt;}
.h1c{height:48.993750pt;}
.h8{height:49.342500pt;}
.h1{height:49.935937pt;}
.hd{height:50.852812pt;}
.ha{height:50.878125pt;}
.h6{height:51.794531pt;}
.hc{height:54.646875pt;}
.h13{height:58.386563pt;}
.h14{height:61.076250pt;}
.h15{height:64.036875pt;}
.h17{height:66.862031pt;}
.h7{height:68.692500pt;}
.h20{height:71.595000pt;}
.hb{height:147.060000pt;}
.h12{height:982.666667pt;}
.h0{height:984.000000pt;}
.h9{height:988.000000pt;}
.w0{width:784.000000pt;}
.x0{left:0.000000pt;}
.xf{left:41.040000pt;}
.x1{left:42.240000pt;}
.x17{left:43.680000pt;}
.x33{left:46.080000pt;}
.x32{left:47.520000pt;}
.x42{left:48.720000pt;}
.x43{left:49.680000pt;}
.x36{left:60.240000pt;}
.x3b{left:83.040000pt;}
.x3c{left:91.200000pt;}
.x37{left:95.040000pt;}
.x34{left:96.480000pt;}
.x12{left:99.600000pt;}
.x18{left:106.080000pt;}
.x25{left:107.520000pt;}
.x28{left:108.720000pt;}
.x3a{left:110.640000pt;}
.x67{left:112.560000pt;}
.x5c{left:114.240000pt;}
.x5b{left:115.200000pt;}
.x29{left:120.240000pt;}
.x19{left:121.440000pt;}
.x5d{left:127.440000pt;}
.x5a{left:129.120000pt;}
.x40{left:130.560000pt;}
.x3f{left:134.160000pt;}
.x10{left:137.040000pt;}
.x35{left:144.240000pt;}
.x14{left:145.680000pt;}
.x1f{left:162.240000pt;}
.x3{left:167.520000pt;}
.x1a{left:180.960000pt;}
.x4{left:184.320000pt;}
.x16{left:187.680000pt;}
.x59{left:197.280000pt;}
.x38{left:204.000000pt;}
.x21{left:205.920000pt;}
.x44{left:207.600000pt;}
.x45{left:208.560000pt;}
.x11{left:218.160000pt;}
.x68{left:229.680000pt;}
.x41{left:239.040000pt;}
.x15{left:241.680000pt;}
.x20{left:250.320000pt;}
.x22{left:252.720000pt;}
.x26{left:254.880000pt;}
.x3e{left:262.080000pt;}
.x3d{left:263.280000pt;}
.x39{left:270.240000pt;}
.x1d{left:280.800000pt;}
.x13{left:287.760000pt;}
.x27{left:294.960000pt;}
.x5e{left:302.640000pt;}
.x69{left:303.840000pt;}
.x6b{left:311.280000pt;}
.x66{left:318.960000pt;}
.x1e{left:324.960000pt;}
.x2{left:325.920000pt;}
.x6a{left:340.080000pt;}
.x6{left:358.080000pt;}
.x9{left:359.040000pt;}
.xe{left:360.000000pt;}
.x1b{left:360.960000pt;}
.x46{left:362.880000pt;}
.x4c{left:363.840000pt;}
.x51{left:364.800000pt;}
.x53{left:365.760000pt;}
.x58{left:367.440000pt;}
.x7{left:369.360000pt;}
.x8{left:370.320000pt;}
.xd{left:372.000000pt;}
.x1c{left:374.640000pt;}
.x4d{left:377.040000pt;}
.x52{left:378.960000pt;}
.x56{left:400.080000pt;}
.x5f{left:402.960000pt;}
.x55{left:406.800000pt;}
.xa{left:408.000000pt;}
.x47{left:414.480000pt;}
.x54{left:417.120000pt;}
.x23{left:425.760000pt;}
.x31{left:426.720000pt;}
.x2e{left:427.680000pt;}
.x65{left:431.280000pt;}
.x62{left:432.480000pt;}
.x60{left:433.440000pt;}
.x50{left:437.040000pt;}
.x2f{left:439.200000pt;}
.x30{left:440.640000pt;}
.x64{left:444.240000pt;}
.x61{left:445.200000pt;}
.x57{left:447.120000pt;}
.xb{left:453.120000pt;}
.x48{left:454.800000pt;}
.x5{left:485.280000pt;}
.x2c{left:489.360000pt;}
.x49{left:494.160000pt;}
.x2a{left:497.280000pt;}
.x2b{left:505.440000pt;}
.x24{left:524.400000pt;}
.xc{left:541.920000pt;}
.x4a{left:557.280000pt;}
.x4e{left:602.880000pt;}
.x4b{left:613.680000pt;}
.x4f{left:623.760000pt;}
.x63{left:663.120000pt;}
.x2d{left:711.120000pt;}
}

