
    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_368b813f9aa8a2c76a308217.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_6dce1c846ed3192cdf7420e6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.889000;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_1f033278911d1382170823fd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1e4055505742d6ec48533efa.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f35663587b6a90c35004063.woff')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_efd86d307be91283de49f710.woff')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_3a569b47a9fa5469c72a54c8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_1b7364613738420a80f64de7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_32e4672b54417192dbd112a8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_28e19d4d645b9879da5d4df2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.892000;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_b123403da48eef8f43bb40fc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.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:ffc;src:url('chunks/assets/font_e07a354319474b17ecd44ac2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_407fd3387cd6ecc0c03df092.woff')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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_196404dd4974722fb7f3b563.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0dfb68626f884fc73d272050.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3de1813a2c6126738ca0e47a.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_8acfacfd1c36b002391864aa.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4a4a54b892e91156ef6e4306.woff')format("woff");}.ff12{font-family:ff12;line-height:0.911000;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_89586aec5b57f1359047ffdd.woff')format("woff");}.ff13{font-family:ff13;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4b72c13819911d937300fab2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d80ab77123803d83258fd7f5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_353a3fefa91b17e9978a47a3.woff')format("woff");}.ff16{font-family:ff16;line-height:0.911000;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_3645709eae454169753c04ee.woff')format("woff");}.ff17{font-family:ff17;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_52ce2f77f1d13853c1116acc.woff')format("woff");}.ff18{font-family:ff18;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_8273f1c188b988d4892d7d37.woff')format("woff");}.ff19{font-family:ff19;line-height:0.911000;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_7076ec2b02e4e952ebce281b.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(-0.001175,-0.249997,0.249997,-0.001175,0,0);-ms-transform:matrix(-0.001175,-0.249997,0.249997,-0.001175,0,0);-webkit-transform:matrix(-0.001175,-0.249997,0.249997,-0.001175,0,0);}
.m8{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);}
.ma{transform:matrix(0.000425,-0.250000,0.250000,0.000425,0,0);-ms-transform:matrix(0.000425,-0.250000,0.250000,0.000425,0,0);-webkit-transform:matrix(0.000425,-0.250000,0.250000,0.000425,0,0);}
.m9{transform:matrix(0.001275,-0.249997,0.249997,0.001275,0,0);-ms-transform:matrix(0.001275,-0.249997,0.249997,0.001275,0,0);-webkit-transform:matrix(0.001275,-0.249997,0.249997,0.001275,0,0);}
.m4{transform:matrix(0.208695,-0.137646,0.137646,0.208695,0,0);-ms-transform:matrix(0.208695,-0.137646,0.137646,0.208695,0,0);-webkit-transform:matrix(0.208695,-0.137646,0.137646,0.208695,0,0);}
.m3{transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);-ms-transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);-webkit-transform:matrix(0.236550,0.000000,-0.080895,0.236550,0,0);}
.m5{transform:matrix(0.245801,0.045625,-0.045625,0.245801,0,0);-ms-transform:matrix(0.245801,0.045625,-0.045625,0.245801,0,0);-webkit-transform:matrix(0.245801,0.045625,-0.045625,0.245801,0,0);}
.m6{transform:matrix(0.247277,-0.036800,0.036800,0.247277,0,0);-ms-transform:matrix(0.247277,-0.036800,0.036800,0.247277,0,0);-webkit-transform:matrix(0.247277,-0.036800,0.036800,0.247277,0,0);}
.m0{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-121.381800px;}
.v8{vertical-align:-28.800000px;}
.v4{vertical-align:-25.920000px;}
.v3{vertical-align:-24.480000px;}
.v5{vertical-align:-8.640000px;}
.v9{vertical-align:-7.200000px;}
.v16{vertical-align:-5.985000px;}
.v15{vertical-align:-4.515600px;}
.v11{vertical-align:-2.925600px;}
.vb{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.260428px;}
.v13{vertical-align:2.377800px;}
.v10{vertical-align:4.305000px;}
.va{vertical-align:7.200000px;}
.v6{vertical-align:8.640000px;}
.v14{vertical-align:13.789800px;}
.ve{vertical-align:15.840000px;}
.vd{vertical-align:17.280000px;}
.v2{vertical-align:24.480000px;}
.v7{vertical-align:25.920000px;}
.vf{vertical-align:33.120000px;}
.vc{vertical-align:41.760000px;}
.lsc{letter-spacing:-0.032996px;}
.ls9{letter-spacing:-0.026396px;}
.lsa{letter-spacing:-0.019797px;}
.ls6{letter-spacing:-0.013198px;}
.lsb{letter-spacing:-0.006599px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006599px;}
.ls1{letter-spacing:0.013198px;}
.ls0{letter-spacing:0.017994px;}
.ls4{letter-spacing:0.019797px;}
.ls23{letter-spacing:0.022200px;}
.ls8{letter-spacing:0.026396px;}
.ls18{letter-spacing:0.036567px;}
.ls5{letter-spacing:0.046194px;}
.ls10{letter-spacing:0.073135px;}
.ls2{letter-spacing:0.085788px;}
.ls12{letter-spacing:0.129619px;}
.ls1f{letter-spacing:0.188280px;}
.lsd{letter-spacing:0.328652px;}
.ls1e{letter-spacing:0.376524px;}
.ls1d{letter-spacing:0.376560px;}
.ls15{letter-spacing:0.447120px;}
.ls14{letter-spacing:0.532800px;}
.ls21{letter-spacing:0.716553px;}
.ls17{letter-spacing:0.964220px;}
.lse{letter-spacing:1.229989px;}
.lsf{letter-spacing:1.552605px;}
.ls20{letter-spacing:1.628280px;}
.ls16{letter-spacing:2.156553px;}
.ls13{letter-spacing:11.556567px;}
.ls11{letter-spacing:40.356567px;}
.ls1b{letter-spacing:47.683440px;}
.ls1c{letter-spacing:122.202097px;}
.ls1a{letter-spacing:152.511551px;}
.ls22{letter-spacing:188.091000px;}
.ls19{letter-spacing:228.804919px;}
.ls24{letter-spacing:426.027000px;}
.ls26{letter-spacing:469.260000px;}
.ls27{letter-spacing:1014.987600px;}
.ls28{letter-spacing:3199.863600px;}
.ls25{letter-spacing:3657.241200px;}
.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;}
}
.ws8{word-spacing:-44.170026px;}
.ws1a{word-spacing:-23.352000px;}
.wse{word-spacing:-20.016000px;}
.ws9{word-spacing:-17.119800px;}
.wsa{word-spacing:-14.588244px;}
.wsb{word-spacing:-14.211731px;}
.ws6{word-spacing:-14.211720px;}
.wsc{word-spacing:-9.136447px;}
.ws5{word-spacing:-9.136440px;}
.ws7{word-spacing:-8.870844px;}
.ws1d{word-spacing:-0.010200px;}
.ws1b{word-spacing:-0.008400px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.012000px;}
.ws3{word-spacing:0.032996px;}
.ws4{word-spacing:1.346216px;}
.ws1c{word-spacing:57.031800px;}
.ws1e{word-spacing:69.001800px;}
.ws16{word-spacing:76.044000px;}
.ws28{word-spacing:111.919200px;}
.ws10{word-spacing:222.556200px;}
.ws17{word-spacing:340.135200px;}
.ws26{word-spacing:343.563600px;}
.ws22{word-spacing:346.857600px;}
.ws23{word-spacing:350.531400px;}
.ws25{word-spacing:351.243600px;}
.ws1f{word-spacing:370.435800px;}
.ws24{word-spacing:386.907600px;}
.ws18{word-spacing:399.537600px;}
.ws21{word-spacing:418.551600px;}
.ws29{word-spacing:423.831000px;}
.wsd{word-spacing:475.198200px;}
.ws1{word-spacing:477.319502px;}
.ws0{word-spacing:513.799327px;}
.ws12{word-spacing:579.954600px;}
.ws11{word-spacing:585.000600px;}
.ws13{word-spacing:586.372800px;}
.ws2a{word-spacing:732.586800px;}
.ws2b{word-spacing:733.798200px;}
.ws14{word-spacing:743.230200px;}
.wsf{word-spacing:745.497000px;}
.ws20{word-spacing:1095.498600px;}
.ws19{word-spacing:2488.791600px;}
.ws27{word-spacing:3575.166000px;}
._f{margin-left:-106.640791px;}
._e{margin-left:-97.683574px;}
._17{margin-left:-39.609062px;}
._11{margin-left:-29.774544px;}
._10{margin-left:-23.521382px;}
._12{margin-left:-18.629216px;}
._13{margin-left:-12.777370px;}
._23{margin-left:-11.751293px;}
._26{margin-left:-10.211093px;}
._22{margin-left:-5.343000px;}
._b{margin-left:-3.967102px;}
._a{margin-left:-2.145907px;}
._9{margin-left:-1.095451px;}
._6{width:1.082252px;}
._7{width:2.296487px;}
._8{width:3.345744px;}
._d{width:6.555675px;}
._5{width:13.561151px;}
._c{width:31.680207px;}
._16{width:83.392858px;}
._1a{width:130.627341px;}
._15{width:139.927227px;}
._1b{width:144.487559px;}
._25{width:151.953000px;}
._14{width:154.925100px;}
._1d{width:159.724263px;}
._19{width:167.255271px;}
._1e{width:177.308261px;}
._21{width:206.108027px;}
._1c{width:207.633615px;}
._1f{width:210.428390px;}
._4{width:220.515526px;}
._2{width:224.303409px;}
._18{width:239.670744px;}
._3{width:257.061341px;}
._1{width:277.432763px;}
._20{width:338.798773px;}
._0{width:343.463358px;}
._24{width:787.483200px;}
.fc9{color:rgb(244,114,22);}
.fc8{color:rgb(236,0,140);}
.fc6{color:rgb(0,255,0);}
.fc7{color:rgb(145,143,143);}
.fc5{color:rgb(255,0,255);}
.fc4{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:6.000000px;}
.fs5{font-size:36.545760px;}
.fs11{font-size:36.545789px;}
.fs8{font-size:39.251520px;}
.fsa{font-size:39.942720px;}
.fsf{font-size:39.993120px;}
.fs1b{font-size:48.000000px;}
.fs1f{font-size:54.000000px;}
.fs4{font-size:56.846880px;}
.fs10{font-size:56.846925px;}
.fs13{font-size:60.000000px;}
.fs6{font-size:62.262600px;}
.fs1{font-size:65.991000px;}
.fs7{font-size:67.680000px;}
.fsb{font-size:68.479200px;}
.fse{font-size:68.557200px;}
.fsd{font-size:68.557255px;}
.fs17{font-size:71.999519px;}
.fs16{font-size:71.999586px;}
.fs14{font-size:72.000000px;}
.fs18{font-size:72.000795px;}
.fs15{font-size:72.001850px;}
.fsc{font-size:72.454744px;}
.fs9{font-size:78.508800px;}
.fs2{font-size:79.183200px;}
.fs1d{font-size:84.000000px;}
.fs0{font-size:89.972400px;}
.fs20{font-size:96.000000px;}
.fs3{font-size:96.102600px;}
.fs1a{font-size:108.000000px;}
.fs19{font-size:144.000000px;}
.fs1e{font-size:144.000208px;}
.fs1c{font-size:144.001873px;}
.y0{bottom:0.000000px;}
.y1a2{bottom:1.800447px;}
.y197{bottom:1.801966px;}
.y18c{bottom:1.801994px;}
.y188{bottom:1.802022px;}
.y178{bottom:1.802132px;}
.y16f{bottom:1.802160px;}
.y167{bottom:1.802188px;}
.y1b8{bottom:1.837500px;}
.y1b4{bottom:2.160340px;}
.y1b1{bottom:2.160366px;}
.y1ac{bottom:2.160393px;}
.y1a7{bottom:2.160420px;}
.y196{bottom:2.160557px;}
.y18b{bottom:2.160584px;}
.y187{bottom:2.160612px;}
.y177{bottom:2.160723px;}
.y16e{bottom:2.160750px;}
.y166{bottom:2.160778px;}
.y193{bottom:2.881961px;}
.y18f{bottom:2.881989px;}
.y185{bottom:2.882017px;}
.y181{bottom:2.882044px;}
.y175{bottom:2.882127px;}
.y171{bottom:2.882155px;}
.y16a{bottom:2.882183px;}
.y162{bottom:2.882210px;}
.y1ae{bottom:3.240361px;}
.y1a9{bottom:3.240388px;}
.y1a4{bottom:3.240415px;}
.y19f{bottom:3.240442px;}
.y192{bottom:3.240552px;}
.y18e{bottom:3.240579px;}
.y184{bottom:3.240607px;}
.y180{bottom:3.240635px;}
.y174{bottom:3.240718px;}
.y170{bottom:3.240745px;}
.y169{bottom:3.240773px;}
.y161{bottom:3.240801px;}
.ybc{bottom:3.960660px;}
.y246{bottom:17.083200px;}
.y1cd{bottom:18.028350px;}
.y1bf{bottom:18.942450px;}
.y25b{bottom:26.165400px;}
.y1f0{bottom:27.323100px;}
.y20b{bottom:32.766600px;}
.y1f4{bottom:35.651550px;}
.y229{bottom:40.219350px;}
.y22b{bottom:43.819500px;}
.y1bc{bottom:49.645500px;}
.y20a{bottom:50.766450px;}
.y249{bottom:71.976000px;}
.y1ce{bottom:72.118500px;}
.y24a{bottom:72.467550px;}
.y248{bottom:73.104900px;}
.y25a{bottom:73.846500px;}
.y259{bottom:74.075250px;}
.y1f1{bottom:82.880250px;}
.y1be{bottom:85.826400px;}
.y20f{bottom:98.583150px;}
.y20e{bottom:99.164400px;}
.y20c{bottom:99.432750px;}
.y25c{bottom:104.001000px;}
.y251{bottom:104.361150px;}
.y1d3{bottom:104.804250px;}
.y1c0{bottom:105.359100px;}
.y1f5{bottom:105.842550px;}
.y1bd{bottom:105.934800px;}
.y1ba{bottom:107.400000px;}
.yaa{bottom:108.000000px;}
.y1ea{bottom:113.041500px;}
.ye8{bottom:115.920000px;}
.y11a{bottom:117.360000px;}
.y3b{bottom:121.680000px;}
.y15d{bottom:123.840000px;}
.ya9{bottom:124.560000px;}
.y20d{bottom:129.778950px;}
.y70{bottom:130.320000px;}
.y1c2{bottom:131.784600px;}
.y227{bottom:133.263900px;}
.y119{bottom:133.560000px;}
.y228{bottom:133.898700px;}
.y22a{bottom:133.963800px;}
.ye7{bottom:137.880000px;}
.y1fa{bottom:137.959800px;}
.y13c{bottom:139.680000px;}
.ya8{bottom:140.760000px;}
.y15c{bottom:141.480000px;}
.y118{bottom:149.760000px;}
.ye6{bottom:154.080000px;}
.y3a{bottom:154.440000px;}
.ya7{bottom:156.960000px;}
.y13b{bottom:157.680000px;}
.y15b{bottom:159.120000px;}
.y6f{bottom:162.360000px;}
.y233{bottom:164.625600px;}
.y1bb{bottom:165.954750px;}
.y117{bottom:165.960000px;}
.y22c{bottom:166.287300px;}
.ye5{bottom:169.920000px;}
.ya6{bottom:173.160000px;}
.y13a{bottom:175.320000px;}
.y15a{bottom:177.120000px;}
.y116{bottom:182.160000px;}
.y217{bottom:183.711450px;}
.y224{bottom:184.611150px;}
.ye4{bottom:186.480000px;}
.ya5{bottom:189.360000px;}
.y139{bottom:192.960000px;}
.y39{bottom:194.760000px;}
.y115{bottom:198.360000px;}
.y24d{bottom:201.309900px;}
.y255{bottom:201.699000px;}
.y1c1{bottom:202.195500px;}
.ye3{bottom:202.680000px;}
.ya4{bottom:205.560000px;}
.y216{bottom:207.171150px;}
.y223{bottom:208.071300px;}
.y6e{bottom:210.960000px;}
.y159{bottom:212.760000px;}
.y114{bottom:214.920000px;}
.ye2{bottom:218.880000px;}
.y247{bottom:221.553900px;}
.ya3{bottom:221.760000px;}
.y1d5{bottom:221.902650px;}
.y252{bottom:222.274650px;}
.y210{bottom:222.275100px;}
.y38{bottom:223.200000px;}
.y245{bottom:224.376000px;}
.y6d{bottom:227.160000px;}
.y138{bottom:228.960000px;}
.y1eb{bottom:229.005000px;}
.y158{bottom:230.760000px;}
.y113{bottom:231.120000px;}
.ye1{bottom:235.080000px;}
.ya2{bottom:237.960000px;}
.y244{bottom:242.375850px;}
.y6c{bottom:243.360000px;}
.y137{bottom:246.600000px;}
.y112{bottom:246.960000px;}
.y157{bottom:248.760000px;}
.y260{bottom:250.779450px;}
.ye0{bottom:251.280000px;}
.ya1{bottom:254.160000px;}
.y1c9{bottom:256.710000px;}
.y6b{bottom:259.920000px;}
.y111{bottom:263.160000px;}
.y136{bottom:264.600000px;}
.y156{bottom:266.040000px;}
.y1d4{bottom:266.151900px;}
.y37{bottom:267.120000px;}
.ydf{bottom:267.480000px;}
.y25f{bottom:268.778850px;}
.ya0{bottom:270.360000px;}
.y6a{bottom:276.120000px;}
.y218{bottom:278.272200px;}
.y110{bottom:279.360000px;}
.y209{bottom:279.389550px;}
.y135{bottom:282.600000px;}
.y1f9{bottom:283.079850px;}
.y36{bottom:283.320000px;}
.yde{bottom:283.680000px;}
.y155{bottom:284.040000px;}
.y9f{bottom:287.280000px;}
.y69{bottom:292.320000px;}
.y1e9{bottom:293.032050px;}
.y10f{bottom:295.560000px;}
.y1c8{bottom:296.739000px;}
.y250{bottom:298.886100px;}
.y258{bottom:299.275200px;}
.y35{bottom:299.520000px;}
.ydd{bottom:299.880000px;}
.y222{bottom:301.672500px;}
.y154{bottom:302.040000px;}
.y9e{bottom:305.280000px;}
.y68{bottom:308.520000px;}
.y232{bottom:311.334300px;}
.y10e{bottom:311.760000px;}
.y22d{bottom:312.437550px;}
.y215{bottom:315.010500px;}
.ydc{bottom:316.440000px;}
.y34{bottom:316.800000px;}
.y134{bottom:317.880000px;}
.y153{bottom:319.680000px;}
.y1c4{bottom:320.679150px;}
.y1ca{bottom:320.952150px;}
.y9d{bottom:321.840000px;}
.y67{bottom:324.720000px;}
.y1fb{bottom:326.268450px;}
.y10d{bottom:327.960000px;}
.ydb{bottom:332.640000px;}
.y33{bottom:333.360000px;}
.y133{bottom:335.880000px;}
.y152{bottom:337.680000px;}
.y9c{bottom:338.040000px;}
.y1d2{bottom:338.238600px;}
.y66{bottom:340.560000px;}
.y1c3{bottom:342.837000px;}
.y10c{bottom:344.520000px;}
.y1ec{bottom:346.090650px;}
.yda{bottom:348.480000px;}
.y32{bottom:349.560000px;}
.y219{bottom:350.675550px;}
.y1b6{bottom:352.080000px;}
.y132{bottom:353.520000px;}
.y9b{bottom:354.240000px;}
.y151{bottom:355.680000px;}
.y65{bottom:356.760000px;}
.y10b{bottom:360.720000px;}
.yd9{bottom:364.680000px;}
.y31{bottom:365.760000px;}
.y1c5{bottom:366.358050px;}
.y9a{bottom:370.440000px;}
.y131{bottom:371.520000px;}
.y64{bottom:372.960000px;}
.y1cc{bottom:375.900000px;}
.y10a{bottom:376.920000px;}
.y23c{bottom:378.144000px;}
.yd8{bottom:380.880000px;}
.y30{bottom:381.960000px;}
.y208{bottom:383.058000px;}
.y1b5{bottom:384.840000px;}
.y99{bottom:386.640000px;}
.y63{bottom:389.520000px;}
.y1e4{bottom:390.900000px;}
.y150{bottom:390.960000px;}
.y109{bottom:393.120000px;}
.y253{bottom:396.446700px;}
.yd7{bottom:397.080000px;}
.y24b{bottom:397.137750px;}
.y2f{bottom:397.800000px;}
.y98{bottom:402.840000px;}
.y62{bottom:405.720000px;}
.y130{bottom:407.160000px;}
.y211{bottom:407.676600px;}
.y1c7{bottom:408.808050px;}
.y14f{bottom:408.960000px;}
.y108{bottom:409.320000px;}
.y1f3{bottom:415.054500px;}
.y1b2{bottom:417.960000px;}
.y97{bottom:419.040000px;}
.y25e{bottom:421.055400px;}
.y61{bottom:421.920000px;}
.y1b3{bottom:422.280000px;}
.y12f{bottom:424.800000px;}
.y107{bottom:425.160000px;}
.y14e{bottom:426.960000px;}
.yd6{bottom:429.480000px;}
.y1f8{bottom:429.480300px;}
.y2e{bottom:430.200000px;}
.y1c6{bottom:430.716750px;}
.y21a{bottom:433.139100px;}
.y203{bottom:434.408700px;}
.y96{bottom:434.880000px;}
.y60{bottom:438.120000px;}
.y25d{bottom:439.055250px;}
.y1cb{bottom:439.500000px;}
.y106{bottom:441.360000px;}
.y12e{bottom:442.800000px;}
.y14d{bottom:444.600000px;}
.yd5{bottom:446.040000px;}
.y1ad{bottom:448.560000px;}
.y95{bottom:451.440000px;}
.y1af{bottom:451.800000px;}
.y5f{bottom:454.320000px;}
.y1b0{bottom:455.760000px;}
.y1d1{bottom:456.609900px;}
.y105{bottom:457.560000px;}
.y234{bottom:457.831950px;}
.y22e{bottom:458.609250px;}
.y226{bottom:459.924000px;}
.y12d{bottom:460.800000px;}
.yd4{bottom:462.240000px;}
.y14c{bottom:462.600000px;}
.y1ed{bottom:463.433550px;}
.y2d{bottom:466.200000px;}
.y94{bottom:467.640000px;}
.y12{bottom:469.969821px;}
.y5e{bottom:470.520000px;}
.y1db{bottom:473.634900px;}
.y104{bottom:474.120000px;}
.yd3{bottom:478.440000px;}
.y14b{bottom:480.240000px;}
.y1a8{bottom:482.040000px;}
.y2c{bottom:482.400000px;}
.y93{bottom:483.840000px;}
.y1aa{bottom:485.280000px;}
.y5d{bottom:486.720000px;}
.y221{bottom:487.139100px;}
.y1ab{bottom:489.240000px;}
.y103{bottom:490.320000px;}
.y11{bottom:492.154345px;}
.y24c{bottom:494.467800px;}
.y1dc{bottom:494.635800px;}
.yd2{bottom:494.640000px;}
.y12c{bottom:496.440000px;}
.y14a{bottom:497.880000px;}
.y212{bottom:499.986900px;}
.y92{bottom:500.040000px;}
.y254{bottom:502.416900px;}
.y5c{bottom:502.920000px;}
.y1e2{bottom:506.371650px;}
.y102{bottom:506.520000px;}
.y202{bottom:506.939250px;}
.yd1{bottom:510.840000px;}
.y12b{bottom:514.080000px;}
.y10{bottom:514.338870px;}
.y1a3{bottom:515.520000px;}
.y149{bottom:515.880000px;}
.y91{bottom:516.240000px;}
.y2b{bottom:518.400000px;}
.y1a5{bottom:518.760000px;}
.y5b{bottom:519.480000px;}
.y1da{bottom:519.768300px;}
.y101{bottom:522.720000px;}
.y1a6{bottom:523.080000px;}
.yd0{bottom:527.040000px;}
.y12a{bottom:532.080000px;}
.y90{bottom:532.440000px;}
.y148{bottom:533.880000px;}
.y5a{bottom:535.320000px;}
.yf{bottom:536.569588px;}
.y100{bottom:538.920000px;}
.y1b7{bottom:542.820000px;}
.ycf{bottom:542.880000px;}
.y243{bottom:543.075000px;}
.y241{bottom:546.017400px;}
.y8f{bottom:548.640000px;}
.y19e{bottom:549.000000px;}
.y129{bottom:549.720000px;}
.y1a0{bottom:550.080000px;}
.y1de{bottom:550.838700px;}
.y59{bottom:551.520000px;}
.y147{bottom:551.880000px;}
.y1d9{bottom:553.248300px;}
.yff{bottom:555.120000px;}
.y1dd{bottom:556.278600px;}
.y1a1{bottom:556.920000px;}
.yce{bottom:559.080000px;}
.y200{bottom:559.704000px;}
.y242{bottom:561.074850px;}
.y264{bottom:564.766500px;}
.y8e{bottom:564.840000px;}
.y206{bottom:566.663700px;}
.y58{bottom:567.720000px;}
.y128{bottom:568.440000px;}
.y1e8{bottom:569.023050px;}
.y146{bottom:569.160000px;}
.y2a{bottom:570.600000px;}
.yfe{bottom:571.320000px;}
.y1d0{bottom:573.455700px;}
.y205{bottom:573.863100px;}
.y240{bottom:574.451550px;}
.ycd{bottom:575.640000px;}
.y1f7{bottom:576.339450px;}
.y1ee{bottom:580.647900px;}
.y8d{bottom:581.400000px;}
.y57{bottom:583.920000px;}
.y145{bottom:585.000000px;}
.y127{bottom:586.440000px;}
.y19d{bottom:586.800000px;}
.yfd{bottom:587.520000px;}
.y1d8{bottom:588.244500px;}
.y256{bottom:591.239250px;}
.ycc{bottom:591.840000px;}
.y24e{bottom:591.930150px;}
.y263{bottom:592.701900px;}
.y213{bottom:592.904250px;}
.y1df{bottom:595.960650px;}
.y8c{bottom:597.600000px;}
.y56{bottom:600.120000px;}
.y1e7{bottom:602.503050px;}
.y144{bottom:602.640000px;}
.y23f{bottom:602.885700px;}
.y29{bottom:603.360000px;}
.yfc{bottom:604.080000px;}
.y22f{bottom:604.168950px;}
.y231{bottom:604.601850px;}
.y19c{bottom:605.520000px;}
.ycb{bottom:608.040000px;}
.y8b{bottom:613.440000px;}
.y55{bottom:615.960000px;}
.y143{bottom:618.480000px;}
.ye{bottom:618.739931px;}
.y1ff{bottom:619.804350px;}
.yfb{bottom:619.920000px;}
.y262{bottom:620.976150px;}
.y1d7{bottom:621.401400px;}
.y126{bottom:621.720000px;}
.y19b{bottom:623.160000px;}
.yca{bottom:623.880000px;}
.y23e{bottom:630.854850px;}
.y8a{bottom:631.080000px;}
.y54{bottom:633.600000px;}
.y28{bottom:635.400000px;}
.yfa{bottom:636.120000px;}
.y1e6{bottom:637.176150px;}
.y19a{bottom:639.360000px;}
.y125{bottom:639.720000px;}
.y1e0{bottom:641.067150px;}
.yd{bottom:641.285757px;}
.yc9{bottom:641.520000px;}
.y201{bottom:642.051000px;}
.y239{bottom:642.203250px;}
.y89{bottom:646.920000px;}
.y21d{bottom:647.647950px;}
.y238{bottom:649.403100px;}
.y53{bottom:649.800000px;}
.y220{bottom:651.474750px;}
.y27{bottom:651.600000px;}
.yf9{bottom:652.320000px;}
.y21c{bottom:653.047500px;}
.y199{bottom:655.560000px;}
.y1d6{bottom:655.638300px;}
.y21f{bottom:656.874300px;}
.y124{bottom:657.360000px;}
.yc8{bottom:658.440000px;}
.y261{bottom:660.991500px;}
.y23d{bottom:661.275900px;}
.y88{bottom:663.120000px;}
.yc{bottom:663.470281px;}
.y52{bottom:666.000000px;}
.y21b{bottom:666.547050px;}
.y26{bottom:667.800000px;}
.yf8{bottom:668.520000px;}
.y1fe{bottom:668.564250px;}
.y21e{bottom:670.373850px;}
.y1e5{bottom:671.413050px;}
.y23a{bottom:672.349800px;}
.y123{bottom:675.360000px;}
.y1fd{bottom:675.764100px;}
.yc7{bottom:676.800000px;}
.y87{bottom:679.320000px;}
.y51{bottom:683.280000px;}
.y25{bottom:684.000000px;}
.yf7{bottom:684.720000px;}
.y214{bottom:685.257000px;}
.y1e1{bottom:685.536000px;}
.y191{bottom:686.160000px;}
.y24f{bottom:689.364450px;}
.y194{bottom:689.400000px;}
.y257{bottom:689.753550px;}
.y1cf{bottom:689.876400px;}
.y198{bottom:690.480000px;}
.yc6{bottom:693.000000px;}
.y122{bottom:693.360000px;}
.y195{bottom:693.720000px;}
.y1fc{bottom:693.764400px;}
.y237{bottom:694.156350px;}
.y204{bottom:694.510200px;}
.y86{bottom:695.520000px;}
.y1ef{bottom:698.247600px;}
.y50{bottom:699.840000px;}
.y24{bottom:700.200000px;}
.yf6{bottom:700.920000px;}
.y236{bottom:701.355450px;}
.y235{bottom:704.028600px;}
.y1e3{bottom:708.000000px;}
.yc5{bottom:709.200000px;}
.y265{bottom:710.250000px;}
.y121{bottom:711.360000px;}
.y85{bottom:711.720000px;}
.y225{bottom:715.155000px;}
.y4f{bottom:716.040000px;}
.y23{bottom:716.760000px;}
.yf5{bottom:717.120000px;}
.yb{bottom:718.684951px;}
.y1f6{bottom:720.609150px;}
.y18d{bottom:720.720000px;}
.y1f2{bottom:723.000000px;}
.y18a{bottom:723.960000px;}
.y190{bottom:725.040000px;}
.yc4{bottom:725.400000px;}
.y84{bottom:728.280000px;}
.y120{bottom:728.640000px;}
.y4e{bottom:732.240000px;}
.y22{bottom:732.960000px;}
.yf4{bottom:733.680000px;}
.ya{bottom:740.869475px;}
.yc3{bottom:741.600000px;}
.y83{bottom:744.480000px;}
.y11f{bottom:746.640000px;}
.y207{bottom:747.150000px;}
.y4d{bottom:748.440000px;}
.y21{bottom:749.160000px;}
.yf3{bottom:749.880000px;}
.y230{bottom:750.423600px;}
.y183{bottom:755.640000px;}
.yc2{bottom:757.440000px;}
.y189{bottom:759.960000px;}
.y82{bottom:760.680000px;}
.y9{bottom:763.054000px;}
.y186{bottom:763.200000px;}
.y11e{bottom:764.640000px;}
.y20{bottom:765.360000px;}
.yf2{bottom:766.080000px;}
.yc1{bottom:773.640000px;}
.y81{bottom:776.880000px;}
.y1f{bottom:781.560000px;}
.yf1{bottom:782.280000px;}
.y4c{bottom:783.360000px;}
.yc0{bottom:789.840000px;}
.y17f{bottom:790.200000px;}
.y182{bottom:791.280000px;}
.y23b{bottom:792.030000px;}
.y80{bottom:793.080000px;}
.y17e{bottom:794.520000px;}
.yf0{bottom:798.120000px;}
.y11d{bottom:799.920000px;}
.y8{bottom:806.253358px;}
.y7f{bottom:809.280000px;}
.y17d{bottom:811.440000px;}
.y1e{bottom:813.960000px;}
.yef{bottom:814.320000px;}
.y4b{bottom:815.760000px;}
.y11c{bottom:816.120000px;}
.ybb{bottom:820.800000px;}
.yba{bottom:824.760000px;}
.y7e{bottom:825.480000px;}
.ybe{bottom:825.840000px;}
.y17c{bottom:827.640000px;}
.yee{bottom:830.520000px;}
.y11b{bottom:832.320000px;}
.ybf{bottom:833.760000px;}
.y13{bottom:837.900000px;}
.ybd{bottom:838.080000px;}
.y7d{bottom:841.320000px;}
.y17b{bottom:843.840000px;}
.y1d{bottom:846.720000px;}
.y4a{bottom:848.520000px;}
.y7{bottom:849.452716px;}
.y7c{bottom:858.240000px;}
.y17a{bottom:860.040000px;}
.yed{bottom:863.280000px;}
.y49{bottom:864.720000px;}
.yb9{bottom:868.680000px;}
.y6{bottom:871.637241px;}
.y1b9{bottom:874.920000px;}
.y7b{bottom:876.600000px;}
.yec{bottom:879.480000px;}
.y48{bottom:880.920000px;}
.yb8{bottom:884.880000px;}
.y1c{bottom:885.960000px;}
.y5{bottom:893.867959px;}
.y173{bottom:893.880000px;}
.y1b{bottom:895.680000px;}
.y176{bottom:897.120000px;}
.y47{bottom:897.480000px;}
.y179{bottom:897.840000px;}
.yb7{bottom:901.080000px;}
.y7a{bottom:909.000000px;}
.y1a{bottom:911.880000px;}
.y46{bottom:913.680000px;}
.yb6{bottom:917.280000px;}
.y79{bottom:925.560000px;}
.yeb{bottom:928.080000px;}
.y45{bottom:929.880000px;}
.y16c{bottom:931.320000px;}
.y172{bottom:932.400000px;}
.yb5{bottom:933.480000px;}
.y19{bottom:934.560000px;}
.y16d{bottom:935.640000px;}
.y4{bottom:937.067317px;}
.y78{bottom:942.120000px;}
.y142{bottom:944.280000px;}
.y44{bottom:945.720000px;}
.yb4{bottom:949.320000px;}
.y3{bottom:959.251842px;}
.yea{bottom:960.480000px;}
.y77{bottom:960.840000px;}
.y43{bottom:961.920000px;}
.y168{bottom:963.000000px;}
.yb3{bottom:965.520000px;}
.y164{bottom:966.240000px;}
.y18{bottom:966.960000px;}
.y16b{bottom:967.320000px;}
.y165{bottom:970.560000px;}
.ye9{bottom:976.680000px;}
.y76{bottom:977.040000px;}
.y42{bottom:978.120000px;}
.yb2{bottom:982.080000px;}
.y17{bottom:992.880000px;}
.y75{bottom:993.240000px;}
.y41{bottom:994.320000px;}
.y160{bottom:997.560000px;}
.y163{bottom:999.000000px;}
.y15f{bottom:1001.880000px;}
.y2{bottom:1002.451200px;}
.y141{bottom:1009.080000px;}
.y74{bottom:1009.800000px;}
.y40{bottom:1010.520000px;}
.y16{bottom:1011.240000px;}
.yab{bottom:1014.120000px;}
.y15e{bottom:1019.160000px;}
.yac{bottom:1021.680000px;}
.y140{bottom:1025.280000px;}
.y73{bottom:1026.000000px;}
.y3f{bottom:1027.080000px;}
.y15{bottom:1038.240000px;}
.yae{bottom:1039.320000px;}
.y13f{bottom:1041.480000px;}
.y72{bottom:1042.200000px;}
.y3e{bottom:1043.280000px;}
.yb0{bottom:1050.120000px;}
.y13e{bottom:1057.680000px;}
.y71{bottom:1059.120000px;}
.y3d{bottom:1059.480000px;}
.yaf{bottom:1061.280000px;}
.y14{bottom:1066.320000px;}
.y1{bottom:1066.891200px;}
.yad{bottom:1067.760000px;}
.yb1{bottom:1072.080000px;}
.y13d{bottom:1073.520000px;}
.y3c{bottom:1075.680000px;}
.h34{height:4.446000px;}
.h2d{height:7.560000px;}
.h2f{height:7.920000px;}
.h31{height:8.280000px;}
.h27{height:9.360000px;}
.h2b{height:15.480000px;}
.h25{height:15.840000px;}
.h29{height:16.560000px;}
.h22{height:16.920000px;}
.h18{height:19.440000px;}
.h28{height:24.595316px;}
.h9{height:25.143483px;}
.h30{height:25.143503px;}
.h2c{height:26.057127px;}
.h2e{height:26.057148px;}
.hf{height:27.138746px;}
.h13{height:27.480591px;}
.h1b{height:27.515267px;}
.h41{height:34.944000px;}
.h23{height:38.257981px;}
.ha{height:39.110653px;}
.h10{height:39.304288px;}
.h4a{height:39.312000px;}
.hb{height:40.531825px;}
.h26{height:40.531858px;}
.h1e{height:42.836669px;}
.he{height:43.048751px;}
.h20{height:44.393234px;}
.h2{height:45.401808px;}
.h16{height:46.086502px;}
.h3{height:46.332281px;}
.h12{height:46.563840px;}
.h15{height:46.771294px;}
.h19{height:46.824605px;}
.h14{height:47.113690px;}
.h21{height:47.167354px;}
.h24{height:47.731825px;}
.hd{height:48.255840px;}
.h17{height:48.762043px;}
.h2a{height:49.171825px;}
.h8{height:49.623483px;}
.h1f{height:50.880754px;}
.hc{height:51.063483px;}
.h3b{height:52.415650px;}
.h3a{height:52.415698px;}
.h38{height:52.416000px;}
.h3c{height:52.416579px;}
.h39{height:52.417347px;}
.h11{height:54.014054px;}
.h5{height:54.953141px;}
.h1d{height:55.976774px;}
.h37{height:56.721000px;}
.h46{height:61.152000px;}
.h1{height:61.901011px;}
.h35{height:62.578125px;}
.h1c{height:63.418996px;}
.h7{height:66.118589px;}
.h6{height:68.521154px;}
.h53{height:69.888000px;}
.h40{height:78.624000px;}
.h1a{height:88.927354px;}
.h3e{height:104.832000px;}
.h49{height:104.832151px;}
.h45{height:104.833363px;}
.h4f{height:106.648200px;}
.h3f{height:106.820400px;}
.h4d{height:107.371200px;}
.h4e{height:108.128400px;}
.h50{height:118.621800px;}
.h36{height:457.500000px;}
.h3d{height:726.000000px;}
.h51{height:728.244000px;}
.h52{height:728.250000px;}
.h47{height:733.158000px;}
.h48{height:733.500000px;}
.h42{height:741.000000px;}
.h44{height:765.000000px;}
.h43{height:765.154500px;}
.h4c{height:810.000000px;}
.h4b{height:810.024000px;}
.h32{height:892.914000px;}
.h33{height:893.250000px;}
.h4{height:1188.000000px;}
.h0{height:1191.000000px;}
.w8{width:3.240000px;}
.w9{width:3.600000px;}
.w7{width:3.960000px;}
.wf{width:4.680000px;}
.w12{width:5.040000px;}
.w6{width:5.400000px;}
.w3{width:6.480000px;}
.w5{width:6.840000px;}
.w13{width:7.200000px;}
.wd{width:7.201440px;}
.w4{width:7.920000px;}
.w2{width:8.280000px;}
.w19{width:9.000000px;}
.w17{width:9.360000px;}
.wb{width:10.440000px;}
.wa{width:10.800000px;}
.we{width:20.880000px;}
.w14{width:35.280000px;}
.w18{width:39.600000px;}
.w10{width:50.040000px;}
.w15{width:50.400000px;}
.w11{width:50.760000px;}
.wc{width:79.920000px;}
.w16{width:119.521440px;}
.w1c{width:844.500000px;}
.w0{width:892.500000px;}
.w21{width:900.414000px;}
.w22{width:900.750000px;}
.w1{width:918.000000px;}
.w1f{width:989.778000px;}
.w20{width:990.000000px;}
.w1e{width:1039.500000px;}
.w1d{width:1132.500000px;}
.w1a{width:1262.835000px;}
.w1b{width:1263.000000px;}
.w23{width:1944.000000px;}
.w24{width:1999.320000px;}
.w25{width:1999.500000px;}
.x0{left:0.000000px;}
.x52{left:4.252740px;}
.x53{left:7.500000px;}
.x94{left:31.964550px;}
.x95{left:37.745550px;}
.x96{left:43.616700px;}
.x69{left:45.225600px;}
.x64{left:49.706400px;}
.x7a{left:52.161450px;}
.x1{left:63.765000px;}
.x61{left:73.179000px;}
.xb0{left:77.435100px;}
.x60{left:91.945050px;}
.x78{left:93.727350px;}
.x79{left:100.955700px;}
.x68{left:112.078050px;}
.x72{left:113.945550px;}
.x9c{left:116.526450px;}
.x9a{left:117.631200px;}
.x55{left:126.142350px;}
.x9b{left:127.633050px;}
.x81{left:133.263000px;}
.xb2{left:135.980550px;}
.x62{left:146.142300px;}
.x5{left:158.758500px;}
.xb4{left:161.224500px;}
.x5f{left:164.478900px;}
.x3{left:168.838500px;}
.x63{left:172.395150px;}
.x50{left:177.118500px;}
.x7e{left:180.785250px;}
.x7{left:183.958500px;}
.x7f{left:199.541100px;}
.x6{left:201.238500px;}
.x70{left:207.427650px;}
.x8{left:209.518500px;}
.x27{left:236.518560px;}
.x74{left:237.652650px;}
.x16{left:241.198500px;}
.x26{left:242.278500px;}
.x2b{left:245.518500px;}
.x28{left:246.958500px;}
.x36{left:251.278500px;}
.x22{left:252.358560px;}
.x46{left:254.518560px;}
.x23{left:257.398560px;}
.x7c{left:260.280450px;}
.x24{left:261.358560px;}
.x29{left:262.798560px;}
.x34{left:265.318560px;}
.x2a{left:266.758560px;}
.x37{left:271.078560px;}
.x39{left:273.958560px;}
.x71{left:278.029050px;}
.x6a{left:279.466200px;}
.x17{left:281.878560px;}
.x2c{left:286.198560px;}
.x18{left:288.358500px;}
.x2d{left:292.678500px;}
.x4c{left:294.478560px;}
.x56{left:302.025000px;}
.x86{left:305.926950px;}
.x25{left:314.638500px;}
.x38{left:315.718500px;}
.x35{left:318.958500px;}
.x77{left:322.767750px;}
.x4d{left:334.078560px;}
.xb3{left:342.411000px;}
.x87{left:345.233550px;}
.x85{left:351.823200px;}
.x3a{left:353.878560px;}
.x7b{left:358.351200px;}
.x67{left:362.088300px;}
.x58{left:364.948950px;}
.x57{left:369.048300px;}
.x88{left:371.145450px;}
.x47{left:374.040000px;}
.xb1{left:380.247150px;}
.x3b{left:389.160000px;}
.x19{left:398.160000px;}
.x2e{left:402.840000px;}
.x1a{left:406.078500px;}
.x2f{left:410.398500px;}
.x4{left:411.478500px;}
.x3c{left:414.000000px;}
.x48{left:415.078500px;}
.x76{left:420.929100px;}
.x11{left:424.078500px;}
.x14{left:426.238500px;}
.x91{left:429.186000px;}
.xd{left:435.958500px;}
.x15{left:442.078500px;}
.x13{left:445.678500px;}
.x83{left:453.646350px;}
.x73{left:457.434900px;}
.x9{left:458.638500px;}
.x66{left:462.112050px;}
.x3d{left:464.038500px;}
.x90{left:468.268500px;}
.x12{left:469.438500px;}
.x1b{left:472.680000px;}
.x30{left:474.840000px;}
.x10{left:476.998500px;}
.x1c{left:480.598500px;}
.x31{left:482.398500px;}
.xe{left:484.198500px;}
.xc{left:485.998500px;}
.xf{left:489.958500px;}
.x7d{left:492.556050px;}
.xb{left:494.638500px;}
.x4e{left:496.080000px;}
.xa{left:500.038500px;}
.x49{left:502.920000px;}
.x4f{left:504.718500px;}
.x59{left:506.484750px;}
.x4a{left:511.918500px;}
.x3e{left:528.120000px;}
.x1d{left:532.080000px;}
.x5b{left:533.268300px;}
.x5c{left:535.043100px;}
.x3f{left:538.200000px;}
.x1e{left:547.200000px;}
.x5e{left:551.085750px;}
.x40{left:553.680000px;}
.x1f{left:555.118500px;}
.x5d{left:559.777650px;}
.x41{left:588.958500px;}
.x42{left:602.640000px;}
.x82{left:613.346850px;}
.x32{left:619.200000px;}
.x20{left:621.720000px;}
.x8e{left:622.727550px;}
.x33{left:627.118500px;}
.x21{left:629.278500px;}
.x4b{left:647.280000px;}
.x5a{left:649.780350px;}
.x43{left:652.680000px;}
.x44{left:657.360000px;}
.x8c{left:660.233700px;}
.x45{left:662.400000px;}
.x8d{left:668.623800px;}
.x8a{left:671.696250px;}
.x54{left:674.790000px;}
.x8b{left:689.705550px;}
.x6d{left:692.128650px;}
.x6e{left:701.472300px;}
.x80{left:702.747000px;}
.x2{left:711.540000px;}
.xb5{left:734.221800px;}
.x75{left:747.429000px;}
.x89{left:766.250250px;}
.x6f{left:772.290000px;}
.x6c{left:789.124950px;}
.xb6{left:799.939350px;}
.x6b{left:804.550200px;}
.x65{left:818.790000px;}
.x84{left:823.091400px;}
.x51{left:883.957500px;}
.x99{left:966.756450px;}
.x98{left:972.060750px;}
.x97{left:978.561150px;}
.x92{left:1040.972850px;}
.xaa{left:1048.972500px;}
.xaf{left:1074.630600px;}
.xae{left:1080.130950px;}
.x9f{left:1097.467500px;}
.x9d{left:1098.572100px;}
.xa0{left:1107.469350px;}
.x9e{left:1108.574100px;}
.xad{left:1140.196800px;}
.xa8{left:1201.074000px;}
.xa7{left:1221.096000px;}
.x8f{left:1224.540000px;}
.xa1{left:1252.200000px;}
.xab{left:1276.513650px;}
.xa6{left:1322.164950px;}
.xa5{left:1342.186200px;}
.x93{left:1388.331000px;}
.xa9{left:1482.716250px;}
.xac{left:1549.973850px;}
.xa2{left:1741.207500px;}
.xa4{left:1806.099750px;}
.xa3{left:1807.185750px;}
@media print{
.v12{vertical-align:-107.894933pt;}
.v8{vertical-align:-25.600000pt;}
.v4{vertical-align:-23.040000pt;}
.v3{vertical-align:-21.760000pt;}
.v5{vertical-align:-7.680000pt;}
.v9{vertical-align:-6.400000pt;}
.v16{vertical-align:-5.320000pt;}
.v15{vertical-align:-4.013867pt;}
.v11{vertical-align:-2.600533pt;}
.vb{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.120381pt;}
.v13{vertical-align:2.113600pt;}
.v10{vertical-align:3.826667pt;}
.va{vertical-align:6.400000pt;}
.v6{vertical-align:7.680000pt;}
.v14{vertical-align:12.257600pt;}
.ve{vertical-align:14.080000pt;}
.vd{vertical-align:15.360000pt;}
.v2{vertical-align:21.760000pt;}
.v7{vertical-align:23.040000pt;}
.vf{vertical-align:29.440000pt;}
.vc{vertical-align:37.120000pt;}
.lsc{letter-spacing:-0.029329pt;}
.ls9{letter-spacing:-0.023463pt;}
.lsa{letter-spacing:-0.017598pt;}
.ls6{letter-spacing:-0.011732pt;}
.lsb{letter-spacing:-0.005866pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005866pt;}
.ls1{letter-spacing:0.011732pt;}
.ls0{letter-spacing:0.015995pt;}
.ls4{letter-spacing:0.017598pt;}
.ls23{letter-spacing:0.019733pt;}
.ls8{letter-spacing:0.023463pt;}
.ls18{letter-spacing:0.032504pt;}
.ls5{letter-spacing:0.041061pt;}
.ls10{letter-spacing:0.065009pt;}
.ls2{letter-spacing:0.076256pt;}
.ls12{letter-spacing:0.115217pt;}
.ls1f{letter-spacing:0.167360pt;}
.lsd{letter-spacing:0.292135pt;}
.ls1e{letter-spacing:0.334688pt;}
.ls1d{letter-spacing:0.334720pt;}
.ls15{letter-spacing:0.397440pt;}
.ls14{letter-spacing:0.473600pt;}
.ls21{letter-spacing:0.636936pt;}
.ls17{letter-spacing:0.857084pt;}
.lse{letter-spacing:1.093324pt;}
.lsf{letter-spacing:1.380093pt;}
.ls20{letter-spacing:1.447360pt;}
.ls16{letter-spacing:1.916936pt;}
.ls13{letter-spacing:10.272504pt;}
.ls11{letter-spacing:35.872504pt;}
.ls1b{letter-spacing:42.385280pt;}
.ls1c{letter-spacing:108.624086pt;}
.ls1a{letter-spacing:135.565823pt;}
.ls22{letter-spacing:167.192000pt;}
.ls19{letter-spacing:203.382150pt;}
.ls24{letter-spacing:378.690667pt;}
.ls26{letter-spacing:417.120000pt;}
.ls27{letter-spacing:902.211200pt;}
.ls28{letter-spacing:2844.323200pt;}
.ls25{letter-spacing:3250.881067pt;}
.ws8{word-spacing:-39.262245pt;}
.ws1a{word-spacing:-20.757333pt;}
.wse{word-spacing:-17.792000pt;}
.ws9{word-spacing:-15.217600pt;}
.wsa{word-spacing:-12.967328pt;}
.wsb{word-spacing:-12.632650pt;}
.ws6{word-spacing:-12.632640pt;}
.wsc{word-spacing:-8.121286pt;}
.ws5{word-spacing:-8.121280pt;}
.ws7{word-spacing:-7.885194pt;}
.ws1d{word-spacing:-0.009067pt;}
.ws1b{word-spacing:-0.007467pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.010667pt;}
.ws3{word-spacing:0.029329pt;}
.ws4{word-spacing:1.196637pt;}
.ws1c{word-spacing:50.694933pt;}
.ws1e{word-spacing:61.334933pt;}
.ws16{word-spacing:67.594667pt;}
.ws28{word-spacing:99.483733pt;}
.ws10{word-spacing:197.827733pt;}
.ws17{word-spacing:302.342400pt;}
.ws26{word-spacing:305.389867pt;}
.ws22{word-spacing:308.317867pt;}
.ws23{word-spacing:311.583467pt;}
.ws25{word-spacing:312.216533pt;}
.ws1f{word-spacing:329.276267pt;}
.ws24{word-spacing:343.917867pt;}
.ws18{word-spacing:355.144533pt;}
.ws21{word-spacing:372.045867pt;}
.ws29{word-spacing:376.738667pt;}
.wsd{word-spacing:422.398400pt;}
.ws1{word-spacing:424.284002pt;}
.ws0{word-spacing:456.710513pt;}
.ws12{word-spacing:515.515200pt;}
.ws11{word-spacing:520.000533pt;}
.ws13{word-spacing:521.220267pt;}
.ws2a{word-spacing:651.188267pt;}
.ws2b{word-spacing:652.265067pt;}
.ws14{word-spacing:660.649067pt;}
.wsf{word-spacing:662.664000pt;}
.ws20{word-spacing:973.776533pt;}
.ws19{word-spacing:2212.259200pt;}
.ws27{word-spacing:3177.925333pt;}
._f{margin-left:-94.791814pt;}
._e{margin-left:-86.829843pt;}
._17{margin-left:-35.208055pt;}
._11{margin-left:-26.466261pt;}
._10{margin-left:-20.907895pt;}
._12{margin-left:-16.559303pt;}
._13{margin-left:-11.357662pt;}
._23{margin-left:-10.445593pt;}
._26{margin-left:-9.076527pt;}
._22{margin-left:-4.749333pt;}
._b{margin-left:-3.526313pt;}
._a{margin-left:-1.907473pt;}
._9{margin-left:-0.973734pt;}
._6{width:0.962002pt;}
._7{width:2.041322pt;}
._8{width:2.973994pt;}
._d{width:5.827267pt;}
._5{width:12.054356pt;}
._c{width:28.160184pt;}
._16{width:74.126985pt;}
._1a{width:116.113192pt;}
._15{width:124.379757pt;}
._1b{width:128.433386pt;}
._25{width:135.069333pt;}
._14{width:137.711200pt;}
._1d{width:141.977122pt;}
._19{width:148.671352pt;}
._1e{width:157.607343pt;}
._21{width:183.207135pt;}
._1c{width:184.563213pt;}
._1f{width:187.047458pt;}
._4{width:196.013801pt;}
._2{width:199.380808pt;}
._18{width:213.040662pt;}
._3{width:228.498970pt;}
._1{width:246.606901pt;}
._20{width:301.154465pt;}
._0{width:305.300762pt;}
._24{width:699.985067pt;}
.fs12{font-size:5.333333pt;}
.fs5{font-size:32.485120pt;}
.fs11{font-size:32.485146pt;}
.fs8{font-size:34.890240pt;}
.fsa{font-size:35.504640pt;}
.fsf{font-size:35.549440pt;}
.fs1b{font-size:42.666667pt;}
.fs1f{font-size:48.000000pt;}
.fs4{font-size:50.530560pt;}
.fs10{font-size:50.530600pt;}
.fs13{font-size:53.333333pt;}
.fs6{font-size:55.344533pt;}
.fs1{font-size:58.658667pt;}
.fs7{font-size:60.160000pt;}
.fsb{font-size:60.870400pt;}
.fse{font-size:60.939733pt;}
.fsd{font-size:60.939782pt;}
.fs17{font-size:63.999573pt;}
.fs16{font-size:63.999632pt;}
.fs14{font-size:64.000000pt;}
.fs18{font-size:64.000707pt;}
.fs15{font-size:64.001645pt;}
.fsc{font-size:64.404217pt;}
.fs9{font-size:69.785600pt;}
.fs2{font-size:70.385067pt;}
.fs1d{font-size:74.666667pt;}
.fs0{font-size:79.975467pt;}
.fs20{font-size:85.333333pt;}
.fs3{font-size:85.424533pt;}
.fs1a{font-size:96.000000pt;}
.fs19{font-size:128.000000pt;}
.fs1e{font-size:128.000185pt;}
.fs1c{font-size:128.001665pt;}
.y0{bottom:0.000000pt;}
.y1a2{bottom:1.600397pt;}
.y197{bottom:1.601748pt;}
.y18c{bottom:1.601773pt;}
.y188{bottom:1.601797pt;}
.y178{bottom:1.601895pt;}
.y16f{bottom:1.601920pt;}
.y167{bottom:1.601945pt;}
.y1b8{bottom:1.633333pt;}
.y1b4{bottom:1.920302pt;}
.y1b1{bottom:1.920326pt;}
.y1ac{bottom:1.920349pt;}
.y1a7{bottom:1.920374pt;}
.y196{bottom:1.920495pt;}
.y18b{bottom:1.920519pt;}
.y187{bottom:1.920544pt;}
.y177{bottom:1.920642pt;}
.y16e{bottom:1.920667pt;}
.y166{bottom:1.920692pt;}
.y193{bottom:2.561743pt;}
.y18f{bottom:2.561768pt;}
.y185{bottom:2.561793pt;}
.y181{bottom:2.561817pt;}
.y175{bottom:2.561891pt;}
.y171{bottom:2.561915pt;}
.y16a{bottom:2.561940pt;}
.y162{bottom:2.561965pt;}
.y1ae{bottom:2.880321pt;}
.y1a9{bottom:2.880345pt;}
.y1a4{bottom:2.880369pt;}
.y19f{bottom:2.880393pt;}
.y192{bottom:2.880490pt;}
.y18e{bottom:2.880515pt;}
.y184{bottom:2.880540pt;}
.y180{bottom:2.880564pt;}
.y174{bottom:2.880638pt;}
.y170{bottom:2.880662pt;}
.y169{bottom:2.880687pt;}
.y161{bottom:2.880712pt;}
.ybc{bottom:3.520586pt;}
.y246{bottom:15.185067pt;}
.y1cd{bottom:16.025200pt;}
.y1bf{bottom:16.837733pt;}
.y25b{bottom:23.258133pt;}
.y1f0{bottom:24.287200pt;}
.y20b{bottom:29.125867pt;}
.y1f4{bottom:31.690267pt;}
.y229{bottom:35.750533pt;}
.y22b{bottom:38.950667pt;}
.y1bc{bottom:44.129333pt;}
.y20a{bottom:45.125733pt;}
.y249{bottom:63.978667pt;}
.y1ce{bottom:64.105333pt;}
.y24a{bottom:64.415600pt;}
.y248{bottom:64.982133pt;}
.y25a{bottom:65.641333pt;}
.y259{bottom:65.844667pt;}
.y1f1{bottom:73.671333pt;}
.y1be{bottom:76.290133pt;}
.y20f{bottom:87.629467pt;}
.y20e{bottom:88.146133pt;}
.y20c{bottom:88.384667pt;}
.y25c{bottom:92.445333pt;}
.y251{bottom:92.765467pt;}
.y1d3{bottom:93.159333pt;}
.y1c0{bottom:93.652533pt;}
.y1f5{bottom:94.082267pt;}
.y1bd{bottom:94.164267pt;}
.y1ba{bottom:95.466667pt;}
.yaa{bottom:96.000000pt;}
.y1ea{bottom:100.481333pt;}
.ye8{bottom:103.040000pt;}
.y11a{bottom:104.320000pt;}
.y3b{bottom:108.160000pt;}
.y15d{bottom:110.080000pt;}
.ya9{bottom:110.720000pt;}
.y20d{bottom:115.359067pt;}
.y70{bottom:115.840000pt;}
.y1c2{bottom:117.141867pt;}
.y227{bottom:118.456800pt;}
.y119{bottom:118.720000pt;}
.y228{bottom:119.021067pt;}
.y22a{bottom:119.078933pt;}
.ye7{bottom:122.560000pt;}
.y1fa{bottom:122.630933pt;}
.y13c{bottom:124.160000pt;}
.ya8{bottom:125.120000pt;}
.y15c{bottom:125.760000pt;}
.y118{bottom:133.120000pt;}
.ye6{bottom:136.960000pt;}
.y3a{bottom:137.280000pt;}
.ya7{bottom:139.520000pt;}
.y13b{bottom:140.160000pt;}
.y15b{bottom:141.440000pt;}
.y6f{bottom:144.320000pt;}
.y233{bottom:146.333867pt;}
.y1bb{bottom:147.515333pt;}
.y117{bottom:147.520000pt;}
.y22c{bottom:147.810933pt;}
.ye5{bottom:151.040000pt;}
.ya6{bottom:153.920000pt;}
.y13a{bottom:155.840000pt;}
.y15a{bottom:157.440000pt;}
.y116{bottom:161.920000pt;}
.y217{bottom:163.299067pt;}
.y224{bottom:164.098800pt;}
.ye4{bottom:165.760000pt;}
.ya5{bottom:168.320000pt;}
.y139{bottom:171.520000pt;}
.y39{bottom:173.120000pt;}
.y115{bottom:176.320000pt;}
.y24d{bottom:178.942133pt;}
.y255{bottom:179.288000pt;}
.y1c1{bottom:179.729333pt;}
.ye3{bottom:180.160000pt;}
.ya4{bottom:182.720000pt;}
.y216{bottom:184.152133pt;}
.y223{bottom:184.952267pt;}
.y6e{bottom:187.520000pt;}
.y159{bottom:189.120000pt;}
.y114{bottom:191.040000pt;}
.ye2{bottom:194.560000pt;}
.y247{bottom:196.936800pt;}
.ya3{bottom:197.120000pt;}
.y1d5{bottom:197.246800pt;}
.y252{bottom:197.577467pt;}
.y210{bottom:197.577867pt;}
.y38{bottom:198.400000pt;}
.y245{bottom:199.445333pt;}
.y6d{bottom:201.920000pt;}
.y138{bottom:203.520000pt;}
.y1eb{bottom:203.560000pt;}
.y158{bottom:205.120000pt;}
.y113{bottom:205.440000pt;}
.ye1{bottom:208.960000pt;}
.ya2{bottom:211.520000pt;}
.y244{bottom:215.445200pt;}
.y6c{bottom:216.320000pt;}
.y137{bottom:219.200000pt;}
.y112{bottom:219.520000pt;}
.y157{bottom:221.120000pt;}
.y260{bottom:222.915067pt;}
.ye0{bottom:223.360000pt;}
.ya1{bottom:225.920000pt;}
.y1c9{bottom:228.186667pt;}
.y6b{bottom:231.040000pt;}
.y111{bottom:233.920000pt;}
.y136{bottom:235.200000pt;}
.y156{bottom:236.480000pt;}
.y1d4{bottom:236.579467pt;}
.y37{bottom:237.440000pt;}
.ydf{bottom:237.760000pt;}
.y25f{bottom:238.914533pt;}
.ya0{bottom:240.320000pt;}
.y6a{bottom:245.440000pt;}
.y218{bottom:247.353067pt;}
.y110{bottom:248.320000pt;}
.y209{bottom:248.346267pt;}
.y135{bottom:251.200000pt;}
.y1f9{bottom:251.626533pt;}
.y36{bottom:251.840000pt;}
.yde{bottom:252.160000pt;}
.y155{bottom:252.480000pt;}
.y9f{bottom:255.360000pt;}
.y69{bottom:259.840000pt;}
.y1e9{bottom:260.472933pt;}
.y10f{bottom:262.720000pt;}
.y1c8{bottom:263.768000pt;}
.y250{bottom:265.676533pt;}
.y258{bottom:266.022400pt;}
.y35{bottom:266.240000pt;}
.ydd{bottom:266.560000pt;}
.y222{bottom:268.153333pt;}
.y154{bottom:268.480000pt;}
.y9e{bottom:271.360000pt;}
.y68{bottom:274.240000pt;}
.y232{bottom:276.741600pt;}
.y10e{bottom:277.120000pt;}
.y22d{bottom:277.722267pt;}
.y215{bottom:280.009333pt;}
.ydc{bottom:281.280000pt;}
.y34{bottom:281.600000pt;}
.y134{bottom:282.560000pt;}
.y153{bottom:284.160000pt;}
.y1c4{bottom:285.048133pt;}
.y1ca{bottom:285.290800pt;}
.y9d{bottom:286.080000pt;}
.y67{bottom:288.640000pt;}
.y1fb{bottom:290.016400pt;}
.y10d{bottom:291.520000pt;}
.ydb{bottom:295.680000pt;}
.y33{bottom:296.320000pt;}
.y133{bottom:298.560000pt;}
.y152{bottom:300.160000pt;}
.y9c{bottom:300.480000pt;}
.y1d2{bottom:300.656533pt;}
.y66{bottom:302.720000pt;}
.y1c3{bottom:304.744000pt;}
.y10c{bottom:306.240000pt;}
.y1ec{bottom:307.636133pt;}
.yda{bottom:309.760000pt;}
.y32{bottom:310.720000pt;}
.y219{bottom:311.711600pt;}
.y1b6{bottom:312.960000pt;}
.y132{bottom:314.240000pt;}
.y9b{bottom:314.880000pt;}
.y151{bottom:316.160000pt;}
.y65{bottom:317.120000pt;}
.y10b{bottom:320.640000pt;}
.yd9{bottom:324.160000pt;}
.y31{bottom:325.120000pt;}
.y1c5{bottom:325.651600pt;}
.y9a{bottom:329.280000pt;}
.y131{bottom:330.240000pt;}
.y64{bottom:331.520000pt;}
.y1cc{bottom:334.133333pt;}
.y10a{bottom:335.040000pt;}
.y23c{bottom:336.128000pt;}
.yd8{bottom:338.560000pt;}
.y30{bottom:339.520000pt;}
.y208{bottom:340.496000pt;}
.y1b5{bottom:342.080000pt;}
.y99{bottom:343.680000pt;}
.y63{bottom:346.240000pt;}
.y1e4{bottom:347.466667pt;}
.y150{bottom:347.520000pt;}
.y109{bottom:349.440000pt;}
.y253{bottom:352.397067pt;}
.yd7{bottom:352.960000pt;}
.y24b{bottom:353.011333pt;}
.y2f{bottom:353.600000pt;}
.y98{bottom:358.080000pt;}
.y62{bottom:360.640000pt;}
.y130{bottom:361.920000pt;}
.y211{bottom:362.379200pt;}
.y1c7{bottom:363.384933pt;}
.y14f{bottom:363.520000pt;}
.y108{bottom:363.840000pt;}
.y1f3{bottom:368.937333pt;}
.y1b2{bottom:371.520000pt;}
.y97{bottom:372.480000pt;}
.y25e{bottom:374.271467pt;}
.y61{bottom:375.040000pt;}
.y1b3{bottom:375.360000pt;}
.y12f{bottom:377.600000pt;}
.y107{bottom:377.920000pt;}
.y14e{bottom:379.520000pt;}
.yd6{bottom:381.760000pt;}
.y1f8{bottom:381.760267pt;}
.y2e{bottom:382.400000pt;}
.y1c6{bottom:382.859333pt;}
.y21a{bottom:385.012533pt;}
.y203{bottom:386.141067pt;}
.y96{bottom:386.560000pt;}
.y60{bottom:389.440000pt;}
.y25d{bottom:390.271333pt;}
.y1cb{bottom:390.666667pt;}
.y106{bottom:392.320000pt;}
.y12e{bottom:393.600000pt;}
.y14d{bottom:395.200000pt;}
.yd5{bottom:396.480000pt;}
.y1ad{bottom:398.720000pt;}
.y95{bottom:401.280000pt;}
.y1af{bottom:401.600000pt;}
.y5f{bottom:403.840000pt;}
.y1b0{bottom:405.120000pt;}
.y1d1{bottom:405.875467pt;}
.y105{bottom:406.720000pt;}
.y234{bottom:406.961733pt;}
.y22e{bottom:407.652667pt;}
.y226{bottom:408.821333pt;}
.y12d{bottom:409.600000pt;}
.yd4{bottom:410.880000pt;}
.y14c{bottom:411.200000pt;}
.y1ed{bottom:411.940933pt;}
.y2d{bottom:414.400000pt;}
.y94{bottom:415.680000pt;}
.y12{bottom:417.750952pt;}
.y5e{bottom:418.240000pt;}
.y1db{bottom:421.008800pt;}
.y104{bottom:421.440000pt;}
.yd3{bottom:425.280000pt;}
.y14b{bottom:426.880000pt;}
.y1a8{bottom:428.480000pt;}
.y2c{bottom:428.800000pt;}
.y93{bottom:430.080000pt;}
.y1aa{bottom:431.360000pt;}
.y5d{bottom:432.640000pt;}
.y221{bottom:433.012533pt;}
.y1ab{bottom:434.880000pt;}
.y103{bottom:435.840000pt;}
.y11{bottom:437.470529pt;}
.y24c{bottom:439.526933pt;}
.y1dc{bottom:439.676267pt;}
.yd2{bottom:439.680000pt;}
.y12c{bottom:441.280000pt;}
.y14a{bottom:442.560000pt;}
.y212{bottom:444.432800pt;}
.y92{bottom:444.480000pt;}
.y254{bottom:446.592800pt;}
.y5c{bottom:447.040000pt;}
.y1e2{bottom:450.108133pt;}
.y102{bottom:450.240000pt;}
.y202{bottom:450.612667pt;}
.yd1{bottom:454.080000pt;}
.y12b{bottom:456.960000pt;}
.y10{bottom:457.190107pt;}
.y1a3{bottom:458.240000pt;}
.y149{bottom:458.560000pt;}
.y91{bottom:458.880000pt;}
.y2b{bottom:460.800000pt;}
.y1a5{bottom:461.120000pt;}
.y5b{bottom:461.760000pt;}
.y1da{bottom:462.016267pt;}
.y101{bottom:464.640000pt;}
.y1a6{bottom:464.960000pt;}
.yd0{bottom:468.480000pt;}
.y12a{bottom:472.960000pt;}
.y90{bottom:473.280000pt;}
.y148{bottom:474.560000pt;}
.y5a{bottom:475.840000pt;}
.yf{bottom:476.950745pt;}
.y100{bottom:479.040000pt;}
.y1b7{bottom:482.506667pt;}
.ycf{bottom:482.560000pt;}
.y243{bottom:482.733333pt;}
.y241{bottom:485.348800pt;}
.y8f{bottom:487.680000pt;}
.y19e{bottom:488.000000pt;}
.y129{bottom:488.640000pt;}
.y1a0{bottom:488.960000pt;}
.y1de{bottom:489.634400pt;}
.y59{bottom:490.240000pt;}
.y147{bottom:490.560000pt;}
.y1d9{bottom:491.776267pt;}
.yff{bottom:493.440000pt;}
.y1dd{bottom:494.469867pt;}
.y1a1{bottom:495.040000pt;}
.yce{bottom:496.960000pt;}
.y200{bottom:497.514667pt;}
.y242{bottom:498.733200pt;}
.y264{bottom:502.014667pt;}
.y8e{bottom:502.080000pt;}
.y206{bottom:503.701067pt;}
.y58{bottom:504.640000pt;}
.y128{bottom:505.280000pt;}
.y1e8{bottom:505.798267pt;}
.y146{bottom:505.920000pt;}
.y2a{bottom:507.200000pt;}
.yfe{bottom:507.840000pt;}
.y1d0{bottom:509.738400pt;}
.y205{bottom:510.100533pt;}
.y240{bottom:510.623600pt;}
.ycd{bottom:511.680000pt;}
.y1f7{bottom:512.301733pt;}
.y1ee{bottom:516.131467pt;}
.y8d{bottom:516.800000pt;}
.y57{bottom:519.040000pt;}
.y145{bottom:520.000000pt;}
.y127{bottom:521.280000pt;}
.y19d{bottom:521.600000pt;}
.yfd{bottom:522.240000pt;}
.y1d8{bottom:522.884000pt;}
.y256{bottom:525.546000pt;}
.ycc{bottom:526.080000pt;}
.y24e{bottom:526.160133pt;}
.y263{bottom:526.846133pt;}
.y213{bottom:527.026000pt;}
.y1df{bottom:529.742800pt;}
.y8c{bottom:531.200000pt;}
.y56{bottom:533.440000pt;}
.y1e7{bottom:535.558267pt;}
.y144{bottom:535.680000pt;}
.y23f{bottom:535.898400pt;}
.y29{bottom:536.320000pt;}
.yfc{bottom:536.960000pt;}
.y22f{bottom:537.039067pt;}
.y231{bottom:537.423867pt;}
.y19c{bottom:538.240000pt;}
.ycb{bottom:540.480000pt;}
.y8b{bottom:545.280000pt;}
.y55{bottom:547.520000pt;}
.y143{bottom:549.760000pt;}
.ye{bottom:549.991050pt;}
.y1ff{bottom:550.937200pt;}
.yfb{bottom:551.040000pt;}
.y262{bottom:551.978800pt;}
.y1d7{bottom:552.356800pt;}
.y126{bottom:552.640000pt;}
.y19b{bottom:553.920000pt;}
.yca{bottom:554.560000pt;}
.y23e{bottom:560.759867pt;}
.y8a{bottom:560.960000pt;}
.y54{bottom:563.200000pt;}
.y28{bottom:564.800000pt;}
.yfa{bottom:565.440000pt;}
.y1e6{bottom:566.378800pt;}
.y19a{bottom:568.320000pt;}
.y125{bottom:568.640000pt;}
.y1e0{bottom:569.837467pt;}
.yd{bottom:570.031784pt;}
.yc9{bottom:570.240000pt;}
.y201{bottom:570.712000pt;}
.y239{bottom:570.847333pt;}
.y89{bottom:575.040000pt;}
.y21d{bottom:575.687067pt;}
.y238{bottom:577.247200pt;}
.y53{bottom:577.600000pt;}
.y220{bottom:579.088667pt;}
.y27{bottom:579.200000pt;}
.yf9{bottom:579.840000pt;}
.y21c{bottom:580.486667pt;}
.y199{bottom:582.720000pt;}
.y1d6{bottom:582.789600pt;}
.y21f{bottom:583.888267pt;}
.y124{bottom:584.320000pt;}
.yc8{bottom:585.280000pt;}
.y261{bottom:587.548000pt;}
.y23d{bottom:587.800800pt;}
.y88{bottom:589.440000pt;}
.yc{bottom:589.751361pt;}
.y52{bottom:592.000000pt;}
.y21b{bottom:592.486267pt;}
.y26{bottom:593.600000pt;}
.yf8{bottom:594.240000pt;}
.y1fe{bottom:594.279333pt;}
.y21e{bottom:595.887867pt;}
.y1e5{bottom:596.811600pt;}
.y23a{bottom:597.644267pt;}
.y123{bottom:600.320000pt;}
.y1fd{bottom:600.679200pt;}
.yc7{bottom:601.600000pt;}
.y87{bottom:603.840000pt;}
.y51{bottom:607.360000pt;}
.y25{bottom:608.000000pt;}
.yf7{bottom:608.640000pt;}
.y214{bottom:609.117333pt;}
.y1e1{bottom:609.365333pt;}
.y191{bottom:609.920000pt;}
.y24f{bottom:612.768400pt;}
.y194{bottom:612.800000pt;}
.y257{bottom:613.114267pt;}
.y1cf{bottom:613.223467pt;}
.y198{bottom:613.760000pt;}
.yc6{bottom:616.000000pt;}
.y122{bottom:616.320000pt;}
.y195{bottom:616.640000pt;}
.y1fc{bottom:616.679467pt;}
.y237{bottom:617.027867pt;}
.y204{bottom:617.342400pt;}
.y86{bottom:618.240000pt;}
.y1ef{bottom:620.664533pt;}
.y50{bottom:622.080000pt;}
.y24{bottom:622.400000pt;}
.yf6{bottom:623.040000pt;}
.y236{bottom:623.427067pt;}
.y235{bottom:625.803200pt;}
.y1e3{bottom:629.333333pt;}
.yc5{bottom:630.400000pt;}
.y265{bottom:631.333333pt;}
.y121{bottom:632.320000pt;}
.y85{bottom:632.640000pt;}
.y225{bottom:635.693333pt;}
.y4f{bottom:636.480000pt;}
.y23{bottom:637.120000pt;}
.yf5{bottom:637.440000pt;}
.yb{bottom:638.831067pt;}
.y1f6{bottom:640.541467pt;}
.y18d{bottom:640.640000pt;}
.y1f2{bottom:642.666667pt;}
.y18a{bottom:643.520000pt;}
.y190{bottom:644.480000pt;}
.yc4{bottom:644.800000pt;}
.y84{bottom:647.360000pt;}
.y120{bottom:647.680000pt;}
.y4e{bottom:650.880000pt;}
.y22{bottom:651.520000pt;}
.yf4{bottom:652.160000pt;}
.ya{bottom:658.550645pt;}
.yc3{bottom:659.200000pt;}
.y83{bottom:661.760000pt;}
.y11f{bottom:663.680000pt;}
.y207{bottom:664.133333pt;}
.y4d{bottom:665.280000pt;}
.y21{bottom:665.920000pt;}
.yf3{bottom:666.560000pt;}
.y230{bottom:667.043200pt;}
.y183{bottom:671.680000pt;}
.yc2{bottom:673.280000pt;}
.y189{bottom:675.520000pt;}
.y82{bottom:676.160000pt;}
.y9{bottom:678.270222pt;}
.y186{bottom:678.400000pt;}
.y11e{bottom:679.680000pt;}
.y20{bottom:680.320000pt;}
.yf2{bottom:680.960000pt;}
.yc1{bottom:687.680000pt;}
.y81{bottom:690.560000pt;}
.y1f{bottom:694.720000pt;}
.yf1{bottom:695.360000pt;}
.y4c{bottom:696.320000pt;}
.yc0{bottom:702.080000pt;}
.y17f{bottom:702.400000pt;}
.y182{bottom:703.360000pt;}
.y23b{bottom:704.026667pt;}
.y80{bottom:704.960000pt;}
.y17e{bottom:706.240000pt;}
.yf0{bottom:709.440000pt;}
.y11d{bottom:711.040000pt;}
.y8{bottom:716.669651pt;}
.y7f{bottom:719.360000pt;}
.y17d{bottom:721.280000pt;}
.y1e{bottom:723.520000pt;}
.yef{bottom:723.840000pt;}
.y4b{bottom:725.120000pt;}
.y11c{bottom:725.440000pt;}
.ybb{bottom:729.600000pt;}
.yba{bottom:733.120000pt;}
.y7e{bottom:733.760000pt;}
.ybe{bottom:734.080000pt;}
.y17c{bottom:735.680000pt;}
.yee{bottom:738.240000pt;}
.y11b{bottom:739.840000pt;}
.ybf{bottom:741.120000pt;}
.y13{bottom:744.800000pt;}
.ybd{bottom:744.960000pt;}
.y7d{bottom:747.840000pt;}
.y17b{bottom:750.080000pt;}
.y1d{bottom:752.640000pt;}
.y4a{bottom:754.240000pt;}
.y7{bottom:755.069081pt;}
.y7c{bottom:762.880000pt;}
.y17a{bottom:764.480000pt;}
.yed{bottom:767.360000pt;}
.y49{bottom:768.640000pt;}
.yb9{bottom:772.160000pt;}
.y6{bottom:774.788658pt;}
.y1b9{bottom:777.706667pt;}
.y7b{bottom:779.200000pt;}
.yec{bottom:781.760000pt;}
.y48{bottom:783.040000pt;}
.yb8{bottom:786.560000pt;}
.y1c{bottom:787.520000pt;}
.y5{bottom:794.549297pt;}
.y173{bottom:794.560000pt;}
.y1b{bottom:796.160000pt;}
.y176{bottom:797.440000pt;}
.y47{bottom:797.760000pt;}
.y179{bottom:798.080000pt;}
.yb7{bottom:800.960000pt;}
.y7a{bottom:808.000000pt;}
.y1a{bottom:810.560000pt;}
.y46{bottom:812.160000pt;}
.yb6{bottom:815.360000pt;}
.y79{bottom:822.720000pt;}
.yeb{bottom:824.960000pt;}
.y45{bottom:826.560000pt;}
.y16c{bottom:827.840000pt;}
.y172{bottom:828.800000pt;}
.yb5{bottom:829.760000pt;}
.y19{bottom:830.720000pt;}
.y16d{bottom:831.680000pt;}
.y4{bottom:832.948726pt;}
.y78{bottom:837.440000pt;}
.y142{bottom:839.360000pt;}
.y44{bottom:840.640000pt;}
.yb4{bottom:843.840000pt;}
.y3{bottom:852.668304pt;}
.yea{bottom:853.760000pt;}
.y77{bottom:854.080000pt;}
.y43{bottom:855.040000pt;}
.y168{bottom:856.000000pt;}
.yb3{bottom:858.240000pt;}
.y164{bottom:858.880000pt;}
.y18{bottom:859.520000pt;}
.y16b{bottom:859.840000pt;}
.y165{bottom:862.720000pt;}
.ye9{bottom:868.160000pt;}
.y76{bottom:868.480000pt;}
.y42{bottom:869.440000pt;}
.yb2{bottom:872.960000pt;}
.y17{bottom:882.560000pt;}
.y75{bottom:882.880000pt;}
.y41{bottom:883.840000pt;}
.y160{bottom:886.720000pt;}
.y163{bottom:888.000000pt;}
.y15f{bottom:890.560000pt;}
.y2{bottom:891.067733pt;}
.y141{bottom:896.960000pt;}
.y74{bottom:897.600000pt;}
.y40{bottom:898.240000pt;}
.y16{bottom:898.880000pt;}
.yab{bottom:901.440000pt;}
.y15e{bottom:905.920000pt;}
.yac{bottom:908.160000pt;}
.y140{bottom:911.360000pt;}
.y73{bottom:912.000000pt;}
.y3f{bottom:912.960000pt;}
.y15{bottom:922.880000pt;}
.yae{bottom:923.840000pt;}
.y13f{bottom:925.760000pt;}
.y72{bottom:926.400000pt;}
.y3e{bottom:927.360000pt;}
.yb0{bottom:933.440000pt;}
.y13e{bottom:940.160000pt;}
.y71{bottom:941.440000pt;}
.y3d{bottom:941.760000pt;}
.yaf{bottom:943.360000pt;}
.y14{bottom:947.840000pt;}
.y1{bottom:948.347733pt;}
.yad{bottom:949.120000pt;}
.yb1{bottom:952.960000pt;}
.y13d{bottom:954.240000pt;}
.y3c{bottom:956.160000pt;}
.h34{height:3.952000pt;}
.h2d{height:6.720000pt;}
.h2f{height:7.040000pt;}
.h31{height:7.360000pt;}
.h27{height:8.320000pt;}
.h2b{height:13.760000pt;}
.h25{height:14.080000pt;}
.h29{height:14.720000pt;}
.h22{height:15.040000pt;}
.h18{height:17.280000pt;}
.h28{height:21.862503pt;}
.h9{height:22.349763pt;}
.h30{height:22.349780pt;}
.h2c{height:23.161891pt;}
.h2e{height:23.161909pt;}
.hf{height:24.123330pt;}
.h13{height:24.427192pt;}
.h1b{height:24.458015pt;}
.h41{height:31.061333pt;}
.h23{height:34.007094pt;}
.ha{height:34.765025pt;}
.h10{height:34.937145pt;}
.h4a{height:34.944000pt;}
.hb{height:36.028289pt;}
.h26{height:36.028318pt;}
.h1e{height:38.077039pt;}
.he{height:38.265556pt;}
.h20{height:39.460652pt;}
.h2{height:40.357163pt;}
.h16{height:40.965779pt;}
.h3{height:41.184250pt;}
.h12{height:41.390080pt;}
.h15{height:41.574483pt;}
.h19{height:41.621871pt;}
.h14{height:41.878835pt;}
.h21{height:41.926537pt;}
.h24{height:42.428289pt;}
.hd{height:42.894080pt;}
.h17{height:43.344038pt;}
.h2a{height:43.708289pt;}
.h8{height:44.109763pt;}
.h1f{height:45.227337pt;}
.hc{height:45.389763pt;}
.h3b{height:46.591689pt;}
.h3a{height:46.591732pt;}
.h38{height:46.592000pt;}
.h3c{height:46.592515pt;}
.h39{height:46.593197pt;}
.h11{height:48.012493pt;}
.h5{height:48.847236pt;}
.h1d{height:49.757133pt;}
.h37{height:50.418667pt;}
.h46{height:54.357333pt;}
.h1{height:55.023121pt;}
.h35{height:55.625000pt;}
.h1c{height:56.372441pt;}
.h7{height:58.772079pt;}
.h6{height:60.907692pt;}
.h53{height:62.122667pt;}
.h40{height:69.888000pt;}
.h1a{height:79.046537pt;}
.h3e{height:93.184000pt;}
.h49{height:93.184135pt;}
.h45{height:93.185212pt;}
.h4f{height:94.798400pt;}
.h3f{height:94.951467pt;}
.h4d{height:95.441067pt;}
.h4e{height:96.114133pt;}
.h50{height:105.441600pt;}
.h36{height:406.666667pt;}
.h3d{height:645.333333pt;}
.h51{height:647.328000pt;}
.h52{height:647.333333pt;}
.h47{height:651.696000pt;}
.h48{height:652.000000pt;}
.h42{height:658.666667pt;}
.h44{height:680.000000pt;}
.h43{height:680.137333pt;}
.h4c{height:720.000000pt;}
.h4b{height:720.021333pt;}
.h32{height:793.701333pt;}
.h33{height:794.000000pt;}
.h4{height:1056.000000pt;}
.h0{height:1058.666667pt;}
.w8{width:2.880000pt;}
.w9{width:3.200000pt;}
.w7{width:3.520000pt;}
.wf{width:4.160000pt;}
.w12{width:4.480000pt;}
.w6{width:4.800000pt;}
.w3{width:5.760000pt;}
.w5{width:6.080000pt;}
.w13{width:6.400000pt;}
.wd{width:6.401280pt;}
.w4{width:7.040000pt;}
.w2{width:7.360000pt;}
.w19{width:8.000000pt;}
.w17{width:8.320000pt;}
.wb{width:9.280000pt;}
.wa{width:9.600000pt;}
.we{width:18.560000pt;}
.w14{width:31.360000pt;}
.w18{width:35.200000pt;}
.w10{width:44.480000pt;}
.w15{width:44.800000pt;}
.w11{width:45.120000pt;}
.wc{width:71.040000pt;}
.w16{width:106.241280pt;}
.w1c{width:750.666667pt;}
.w0{width:793.333333pt;}
.w21{width:800.368000pt;}
.w22{width:800.666667pt;}
.w1{width:816.000000pt;}
.w1f{width:879.802667pt;}
.w20{width:880.000000pt;}
.w1e{width:924.000000pt;}
.w1d{width:1006.666667pt;}
.w1a{width:1122.520000pt;}
.w1b{width:1122.666667pt;}
.w23{width:1728.000000pt;}
.w24{width:1777.173333pt;}
.w25{width:1777.333333pt;}
.x0{left:0.000000pt;}
.x52{left:3.780213pt;}
.x53{left:6.666667pt;}
.x94{left:28.412933pt;}
.x95{left:33.551600pt;}
.x96{left:38.770400pt;}
.x69{left:40.200533pt;}
.x64{left:44.183467pt;}
.x7a{left:46.365733pt;}
.x1{left:56.680000pt;}
.x61{left:65.048000pt;}
.xb0{left:68.831200pt;}
.x60{left:81.728933pt;}
.x78{left:83.313200pt;}
.x79{left:89.738400pt;}
.x68{left:99.624933pt;}
.x72{left:101.284933pt;}
.x9c{left:103.579067pt;}
.x9a{left:104.561067pt;}
.x55{left:112.126533pt;}
.x9b{left:113.451600pt;}
.x81{left:118.456000pt;}
.xb2{left:120.871600pt;}
.x62{left:129.904267pt;}
.x5{left:141.118667pt;}
.xb4{left:143.310667pt;}
.x5f{left:146.203467pt;}
.x3{left:150.078667pt;}
.x63{left:153.240133pt;}
.x50{left:157.438667pt;}
.x7e{left:160.698000pt;}
.x7{left:163.518667pt;}
.x7f{left:177.369867pt;}
.x6{left:178.878667pt;}
.x70{left:184.380133pt;}
.x8{left:186.238667pt;}
.x27{left:210.238720pt;}
.x74{left:211.246800pt;}
.x16{left:214.398667pt;}
.x26{left:215.358667pt;}
.x2b{left:218.238667pt;}
.x28{left:219.518667pt;}
.x36{left:223.358667pt;}
.x22{left:224.318720pt;}
.x46{left:226.238720pt;}
.x23{left:228.798720pt;}
.x7c{left:231.360400pt;}
.x24{left:232.318720pt;}
.x29{left:233.598720pt;}
.x34{left:235.838720pt;}
.x2a{left:237.118720pt;}
.x37{left:240.958720pt;}
.x39{left:243.518720pt;}
.x71{left:247.136933pt;}
.x6a{left:248.414400pt;}
.x17{left:250.558720pt;}
.x2c{left:254.398720pt;}
.x18{left:256.318667pt;}
.x2d{left:260.158667pt;}
.x4c{left:261.758720pt;}
.x56{left:268.466667pt;}
.x86{left:271.935067pt;}
.x25{left:279.678667pt;}
.x38{left:280.638667pt;}
.x35{left:283.518667pt;}
.x77{left:286.904667pt;}
.x4d{left:296.958720pt;}
.xb3{left:304.365333pt;}
.x87{left:306.874267pt;}
.x85{left:312.731733pt;}
.x3a{left:314.558720pt;}
.x7b{left:318.534400pt;}
.x67{left:321.856267pt;}
.x58{left:324.399067pt;}
.x57{left:328.042933pt;}
.x88{left:329.907067pt;}
.x47{left:332.480000pt;}
.xb1{left:337.997467pt;}
.x3b{left:345.920000pt;}
.x19{left:353.920000pt;}
.x2e{left:358.080000pt;}
.x1a{left:360.958667pt;}
.x2f{left:364.798667pt;}
.x4{left:365.758667pt;}
.x3c{left:368.000000pt;}
.x48{left:368.958667pt;}
.x76{left:374.159200pt;}
.x11{left:376.958667pt;}
.x14{left:378.878667pt;}
.x91{left:381.498667pt;}
.xd{left:387.518667pt;}
.x15{left:392.958667pt;}
.x13{left:396.158667pt;}
.x83{left:403.241200pt;}
.x73{left:406.608800pt;}
.x9{left:407.678667pt;}
.x66{left:410.766267pt;}
.x3d{left:412.478667pt;}
.x90{left:416.238667pt;}
.x12{left:417.278667pt;}
.x1b{left:420.160000pt;}
.x30{left:422.080000pt;}
.x10{left:423.998667pt;}
.x1c{left:427.198667pt;}
.x31{left:428.798667pt;}
.xe{left:430.398667pt;}
.xc{left:431.998667pt;}
.xf{left:435.518667pt;}
.x7d{left:437.827600pt;}
.xb{left:439.678667pt;}
.x4e{left:440.960000pt;}
.xa{left:444.478667pt;}
.x49{left:447.040000pt;}
.x4f{left:448.638667pt;}
.x59{left:450.208667pt;}
.x4a{left:455.038667pt;}
.x3e{left:469.440000pt;}
.x1d{left:472.960000pt;}
.x5b{left:474.016267pt;}
.x5c{left:475.593867pt;}
.x3f{left:478.400000pt;}
.x1e{left:486.400000pt;}
.x5e{left:489.854000pt;}
.x40{left:492.160000pt;}
.x1f{left:493.438667pt;}
.x5d{left:497.580133pt;}
.x41{left:523.518667pt;}
.x42{left:535.680000pt;}
.x82{left:545.197200pt;}
.x32{left:550.400000pt;}
.x20{left:552.640000pt;}
.x8e{left:553.535600pt;}
.x33{left:557.438667pt;}
.x21{left:559.358667pt;}
.x4b{left:575.360000pt;}
.x5a{left:577.582533pt;}
.x43{left:580.160000pt;}
.x44{left:584.320000pt;}
.x8c{left:586.874400pt;}
.x45{left:588.800000pt;}
.x8d{left:594.332267pt;}
.x8a{left:597.063333pt;}
.x54{left:599.813333pt;}
.x8b{left:613.071600pt;}
.x6d{left:615.225467pt;}
.x6e{left:623.530933pt;}
.x80{left:624.664000pt;}
.x2{left:632.480000pt;}
.xb5{left:652.641600pt;}
.x75{left:664.381333pt;}
.x89{left:681.111333pt;}
.x6f{left:686.480000pt;}
.x6c{left:701.444400pt;}
.xb6{left:711.057200pt;}
.x6b{left:715.155733pt;}
.x65{left:727.813333pt;}
.x84{left:731.636800pt;}
.x51{left:785.740000pt;}
.x99{left:859.339067pt;}
.x98{left:864.054000pt;}
.x97{left:869.832133pt;}
.x92{left:925.309200pt;}
.xaa{left:932.420000pt;}
.xaf{left:955.227200pt;}
.xae{left:960.116400pt;}
.x9f{left:975.526667pt;}
.x9d{left:976.508533pt;}
.xa0{left:984.417200pt;}
.x9e{left:985.399200pt;}
.xad{left:1013.508267pt;}
.xa8{left:1067.621333pt;}
.xa7{left:1085.418667pt;}
.x8f{left:1088.480000pt;}
.xa1{left:1113.066667pt;}
.xab{left:1134.678800pt;}
.xa6{left:1175.257733pt;}
.xa5{left:1193.054400pt;}
.x93{left:1234.072000pt;}
.xa9{left:1317.970000pt;}
.xac{left:1377.754533pt;}
.xa2{left:1547.740000pt;}
.xa4{left:1605.422000pt;}
.xa3{left:1606.387333pt;}
}

