
    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_2dfd16f5fc97d97971fbc7a5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_6ffdb8d5be81f60fb696fdcd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_55fe1adfba7e1c36dbe5da6c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3714c40dbdebbd2a4b1a28a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_52f3cc8169088c6544ed60f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_e7e4ec9bb32cddf5c9a268cc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_bc4d0ffdb3d144790e218425.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_32e8d43b2ecceb3de403b595.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_73688b088b28a6980684a5d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_332b0009316a122d86d5105a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919434;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_977de0397fb67411b7c6d1e4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c464411e88939a3975d757c3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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_fa5cf82de459a1638db39c5a.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_23c32118a1993199dd3a4b1e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919434;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_cfa63c3a303004c9ad3c14f6.woff')format("woff");}.fff{font-family:fff;line-height:0.882324;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_89d40d2be29ee3b9dcb4055e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c2e7f5a3832fd38bd45e6099.woff')format("woff");}.ff11{font-family:ff11;line-height:0.896973;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_f24e2169f432663a7a2fb378.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_a0fafcd32bbd9ee53b4b5e14.woff')format("woff");}.ff13{font-family:ff13;line-height:0.893555;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_07780f75c5bc6c448c2b0485.woff')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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_82532d367c91afc0c05df92f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.689941;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_9196b9394ebebee33f0e101e.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_c1a0fec4be77b39d95b8cb90.woff')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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_468788b95b153ef645889617.woff')format("woff");}.ff18{font-family:ff18;line-height:0.926270;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_88f2f7528b2e63b846a66487.woff')format("woff");}.ff19{font-family:ff19;line-height:1.208008;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_0a37f066d7f9fd39e95a7f61.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.923340;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_0a835bc651f036fc12008360.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.689453;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_0b52ade56e81f10c5e75d707.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.677246;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_5b4942cea50f70fcb4515db9.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_0f39dbfcbe983311763a4757.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.675781;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_de3e531cc1da643ad52c8a77.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.706055;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-37.440000px;}
.ve{vertical-align:-28.800000px;}
.v2{vertical-align:-21.600000px;}
.v11{vertical-align:-20.160000px;}
.va{vertical-align:-14.400000px;}
.v6{vertical-align:-10.080000px;}
.v3{vertical-align:-5.760000px;}
.v10{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.880000px;}
.v7{vertical-align:10.080000px;}
.v9{vertical-align:11.520000px;}
.vd{vertical-align:14.400000px;}
.v1{vertical-align:24.480000px;}
.v4{vertical-align:27.360000px;}
.vc{vertical-align:36.000000px;}
.v5{vertical-align:47.520000px;}
.vb{vertical-align:56.160000px;}
.ls3{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.347328px;}
.ls12{letter-spacing:-0.338688px;}
.ls5f{letter-spacing:-0.318384px;}
.ls60{letter-spacing:-0.299088px;}
.ls1c{letter-spacing:-0.289440px;}
.ls2f{letter-spacing:-0.238464px;}
.ls16{letter-spacing:-0.223776px;}
.ls5d{letter-spacing:-0.205344px;}
.ls23{letter-spacing:-0.202608px;}
.ls2d{letter-spacing:-0.198720px;}
.ls3a{letter-spacing:-0.172224px;}
.ls29{letter-spacing:-0.158976px;}
.ls14{letter-spacing:-0.157248px;}
.ls17{letter-spacing:-0.145152px;}
.ls1d{letter-spacing:-0.135072px;}
.ls2c{letter-spacing:-0.125856px;}
.ls15{letter-spacing:-0.120960px;}
.ls2b{letter-spacing:-0.119232px;}
.ls5c{letter-spacing:-0.086112px;}
.ls2a{letter-spacing:-0.079488px;}
.ls2e{letter-spacing:-0.059616px;}
.ls5b{letter-spacing:-0.028800px;}
.ls38{letter-spacing:-0.021600px;}
.ls18{letter-spacing:-0.014400px;}
.ls1e{letter-spacing:-0.007200px;}
.ls2{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000576px;}
.ls30{letter-spacing:0.001440px;}
.ls49{letter-spacing:0.002016px;}
.ls3d{letter-spacing:0.007200px;}
.lse{letter-spacing:0.010944px;}
.ls26{letter-spacing:0.011520px;}
.ls4a{letter-spacing:0.012096px;}
.ls1a{letter-spacing:0.014400px;}
.ls13{letter-spacing:0.046656px;}
.lsb{letter-spacing:0.047376px;}
.lsc{letter-spacing:0.059904px;}
.lsd{letter-spacing:0.060048px;}
.ls3c{letter-spacing:0.069552px;}
.ls37{letter-spacing:0.069984px;}
.ls31{letter-spacing:0.077760px;}
.ls5e{letter-spacing:0.100224px;}
.ls41{letter-spacing:0.101088px;}
.ls3b{letter-spacing:0.108864px;}
.ls24{letter-spacing:0.116640px;}
.ls10{letter-spacing:0.118800px;}
.ls27{letter-spacing:0.119952px;}
.ls43{letter-spacing:0.120960px;}
.ls20{letter-spacing:0.124416px;}
.ls3e{letter-spacing:0.127872px;}
.ls40{letter-spacing:0.139968px;}
.ls1{letter-spacing:0.144000px;}
.ls3f{letter-spacing:0.155520px;}
.ls8{letter-spacing:0.161280px;}
.ls39{letter-spacing:0.161568px;}
.ls34{letter-spacing:0.162864px;}
.ls6{letter-spacing:0.192096px;}
.ls11{letter-spacing:0.204336px;}
.ls9{letter-spacing:0.205920px;}
.ls25{letter-spacing:0.239040px;}
.ls28{letter-spacing:0.239904px;}
.ls1b{letter-spacing:0.240048px;}
.lsa{letter-spacing:0.240480px;}
.ls7{letter-spacing:0.242208px;}
.lsf{letter-spacing:0.275616px;}
.ls5a{letter-spacing:0.282240px;}
.ls4b{letter-spacing:0.285552px;}
.ls0{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.301200px;}
.ls59{letter-spacing:0.332640px;}
.ls4e{letter-spacing:0.335520px;}
.ls56{letter-spacing:0.347760px;}
.ls52{letter-spacing:0.351360px;}
.ls47{letter-spacing:0.352800px;}
.ls57{letter-spacing:0.365904px;}
.ls4{letter-spacing:0.371400px;}
.ls58{letter-spacing:0.393120px;}
.ls32{letter-spacing:0.626400px;}
.ls4f{letter-spacing:1.824480px;}
.ls33{letter-spacing:2.247840px;}
.ls42{letter-spacing:2.760480px;}
.ls50{letter-spacing:4.937760px;}
.ls45{letter-spacing:5.469120px;}
.ls46{letter-spacing:5.918400px;}
.ls48{letter-spacing:6.242400px;}
.ls4c{letter-spacing:6.322176px;}
.ls55{letter-spacing:6.533280px;}
.ls51{letter-spacing:6.580800px;}
.ls19{letter-spacing:7.435296px;}
.ls53{letter-spacing:12.028320px;}
.ls35{letter-spacing:15.994080px;}
.ls44{letter-spacing:16.008336px;}
.ls4d{letter-spacing:24.937200px;}
.ls62{letter-spacing:30.131424px;}
.ls1f{letter-spacing:53.683056px;}
.ls21{letter-spacing:54.866736px;}
.ls61{letter-spacing:66.131424px;}
.ls54{letter-spacing:71.562240px;}
.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;}
}
.ws5{word-spacing:-21.155616px;}
.ws0{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.339440px;}
.ws1{word-spacing:-19.152000px;}
.ws3{word-spacing:-19.038240px;}
.wsd{word-spacing:-18.014400px;}
.ws26{word-spacing:-18.007200px;}
.ws14{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.992800px;}
.ws9{word-spacing:-17.985600px;}
.ws15{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.480512px;}
.ws18{word-spacing:-16.440768px;}
.ws17{word-spacing:-16.434144px;}
.ws16{word-spacing:-16.401024px;}
.ws19{word-spacing:-16.361280px;}
.ws1b{word-spacing:-16.321536px;}
.ws8{word-spacing:-15.120000px;}
.ws29{word-spacing:-12.245904px;}
.ws7{word-spacing:-12.084336px;}
.ws23{word-spacing:-12.041568px;}
.ws6{word-spacing:-11.998800px;}
.ws2f{word-spacing:-0.443520px;}
.ws33{word-spacing:-0.398160px;}
.ws32{word-spacing:-0.332640px;}
.ws28{word-spacing:-0.217728px;}
.ws22{word-spacing:-0.204624px;}
.ws12{word-spacing:-0.202176px;}
.ws11{word-spacing:-0.194400px;}
.ws25{word-spacing:-0.186624px;}
.ws27{word-spacing:-0.178848px;}
.ws1d{word-spacing:-0.155520px;}
.ws24{word-spacing:-0.147744px;}
.ws36{word-spacing:-0.141984px;}
.ws10{word-spacing:-0.096480px;}
.ws1e{word-spacing:-0.077760px;}
.ws13{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.050400px;}
.ws35{word-spacing:-0.041760px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.038592px;}
.wsf{word-spacing:0.106128px;}
.wsa{word-spacing:0.192960px;}
.ws38{word-spacing:0.202608px;}
.ws37{word-spacing:0.221904px;}
.wse{word-spacing:0.250848px;}
.ws1c{word-spacing:4.768992px;}
.ws2b{word-spacing:9.932112px;}
.ws20{word-spacing:9.932544px;}
.ws2d{word-spacing:15.933600px;}
.ws2e{word-spacing:19.517040px;}
.ws2c{word-spacing:19.630080px;}
.ws31{word-spacing:19.932480px;}
.ws1f{word-spacing:21.428928px;}
.ws30{word-spacing:23.629104px;}
.ws2a{word-spacing:25.337376px;}
.ws34{word-spacing:41.448960px;}
._20{margin-left:-9.094464px;}
._18{margin-left:-7.065504px;}
._10{margin-left:-4.649328px;}
._f{margin-left:-3.463200px;}
._4{margin-left:-2.352960px;}
._0{margin-left:-1.126080px;}
._2{width:1.188000px;}
._5{width:2.210400px;}
._7{width:3.506400px;}
._6{width:5.241600px;}
._9{width:6.825600px;}
._a{width:8.642880px;}
._e{width:10.022544px;}
._11{width:11.570400px;}
._14{width:12.852000px;}
._8{width:14.767200px;}
._16{width:15.905088px;}
._c{width:16.992000px;}
._3{width:19.296000px;}
._17{width:20.462400px;}
._b{width:22.464000px;}
._24{width:24.574752px;}
._1f{width:30.585600px;}
._12{width:38.445840px;}
._23{width:39.555072px;}
._15{width:40.597200px;}
._13{width:42.516000px;}
._1c{width:46.289088px;}
._22{width:56.289600px;}
._1e{width:93.951072px;}
._19{width:95.594400px;}
._1d{width:112.210560px;}
._21{width:116.177328px;}
._1b{width:161.278272px;}
._1a{width:194.398560px;}
._d{width:846.000000px;}
._1{width:990.627360px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fsa{font-size:50.400000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:4.020000px;}
.y87{bottom:4.320000px;}
.yce{bottom:4.500000px;}
.y85{bottom:4.620000px;}
.y93{bottom:4.680000px;}
.ycc{bottom:4.740000px;}
.y95{bottom:4.800000px;}
.y82{bottom:4.860000px;}
.y84{bottom:4.920000px;}
.y96{bottom:5.160000px;}
.y8f{bottom:5.220000px;}
.yd5{bottom:5.280000px;}
.yca{bottom:5.340000px;}
.yd0{bottom:5.400000px;}
.yd4{bottom:5.520000px;}
.yc8{bottom:5.580000px;}
.y8b{bottom:6.840000px;}
.y89{bottom:7.020000px;}
.y7a{bottom:7.560000px;}
.y78{bottom:7.740000px;}
.y7d{bottom:7.800000px;}
.y73{bottom:7.920000px;}
.y7e{bottom:8.040000px;}
.y7c{bottom:9.240000px;}
.y15f{bottom:14.220000px;}
.y164{bottom:15.060000px;}
.y162{bottom:15.960000px;}
.yc6{bottom:16.020000px;}
.y167{bottom:16.080000px;}
.y166{bottom:16.440000px;}
.y168{bottom:17.520000px;}
.y160{bottom:23.580000px;}
.y80{bottom:24.420000px;}
.yc7{bottom:26.460000px;}
.y76{bottom:32.160000px;}
.y75{bottom:54.120000px;}
.y10{bottom:57.240000px;}
.yf{bottom:78.120000px;}
.y132{bottom:110.520000px;}
.y191{bottom:113.040000px;}
.y196{bottom:113.400000px;}
.y155{bottom:113.760000px;}
.y178{bottom:114.840000px;}
.y181{bottom:118.440000px;}
.yed{bottom:121.320000px;}
.y68{bottom:123.480000px;}
.y13e{bottom:123.840000px;}
.y15c{bottom:125.280000px;}
.y110{bottom:130.680000px;}
.y12c{bottom:132.120000px;}
.yab{bottom:133.920000px;}
.ya1{bottom:137.160000px;}
.ye9{bottom:141.120000px;}
.y131{bottom:141.480000px;}
.y121{bottom:142.920000px;}
.y190{bottom:144.000000px;}
.y195{bottom:144.360000px;}
.y154{bottom:144.720000px;}
.y177{bottom:145.800000px;}
.y4c{bottom:147.240000px;}
.y1a5{bottom:149.040000px;}
.y180{bottom:149.400000px;}
.yec{bottom:152.640000px;}
.y67{bottom:154.440000px;}
.y13d{bottom:154.800000px;}
.y108{bottom:159.120000px;}
.y10f{bottom:161.640000px;}
.y12b{bottom:163.440000px;}
.y15b{bottom:164.880000px;}
.yaa{bottom:165.960000px;}
.ybd{bottom:166.320000px;}
.ya0{bottom:168.120000px;}
.ye8{bottom:172.080000px;}
.y120{bottom:174.240000px;}
.y18f{bottom:174.960000px;}
.y194{bottom:175.320000px;}
.y153{bottom:175.680000px;}
.y176{bottom:177.120000px;}
.y4b{bottom:178.200000px;}
.y1a4{bottom:180.360000px;}
.y17f{bottom:180.720000px;}
.yeb{bottom:183.600000px;}
.y66{bottom:185.400000px;}
.y13c{bottom:185.760000px;}
.y17a{bottom:189.000000px;}
.y107{bottom:190.080000px;}
.y1cc{bottom:193.320000px;}
.y12a{bottom:194.400000px;}
.ybc{bottom:197.280000px;}
.ya9{bottom:198.000000px;}
.y130{bottom:198.360000px;}
.y9f{bottom:199.440000px;}
.ye7{bottom:203.040000px;}
.y179{bottom:204.480000px;}
.y1bf{bottom:204.840000px;}
.y11f{bottom:205.200000px;}
.y18e{bottom:205.920000px;}
.y193{bottom:206.640000px;}
.y175{bottom:208.080000px;}
.y4a{bottom:209.520000px;}
.y1a3{bottom:211.320000px;}
.y17e{bottom:211.680000px;}
.y12f{bottom:213.840000px;}
.y65{bottom:216.360000px;}
.y13b{bottom:216.720000px;}
.y10e{bottom:218.520000px;}
.y106{bottom:221.400000px;}
.y1cb{bottom:224.280000px;}
.y152{bottom:224.640000px;}
.y129{bottom:225.360000px;}
.y9e{bottom:230.400000px;}
.y10d{bottom:234.000000px;}
.ye6{bottom:234.360000px;}
.y1be{bottom:235.800000px;}
.ybb{bottom:237.600000px;}
.y11e{bottom:239.040000px;}
.y1cd{bottom:239.400000px;}
.y49{bottom:240.480000px;}
.y1a2{bottom:242.280000px;}
.y64{bottom:247.320000px;}
.y13a{bottom:248.040000px;}
.yfc{bottom:252.000000px;}
.y105{bottom:252.360000px;}
.ya8{bottom:254.880000px;}
.y1ca{bottom:255.600000px;}
.yea{bottom:255.960000px;}
.y128{bottom:256.320000px;}
.y9d{bottom:261.360000px;}
.ye5{bottom:265.320000px;}
.y1bd{bottom:266.760000px;}
.y17d{bottom:268.560000px;}
.y174{bottom:270.000000px;}
.ya7{bottom:270.360000px;}
.y48{bottom:271.440000px;}
.y1a1{bottom:273.240000px;}
.y63{bottom:278.640000px;}
.y139{bottom:279.000000px;}
.yfb{bottom:282.960000px;}
.y104{bottom:283.320000px;}
.y11d{bottom:283.680000px;}
.y1c9{bottom:286.560000px;}
.y151{bottom:286.920000px;}
.y127{bottom:287.640000px;}
.y9c{bottom:292.320000px;}
.ye4{bottom:296.280000px;}
.y17c{bottom:297.000000px;}
.y1bc{bottom:297.720000px;}
.yba{bottom:301.320000px;}
.y47{bottom:302.400000px;}
.y1a0{bottom:304.560000px;}
.y62{bottom:309.600000px;}
.y138{bottom:309.960000px;}
.y17b{bottom:312.480000px;}
.yfa{bottom:314.280000px;}
.y11c{bottom:314.640000px;}
.y1c8{bottom:317.520000px;}
.y150{bottom:317.880000px;}
.y126{bottom:318.600000px;}
.y9b{bottom:323.640000px;}
.ye3{bottom:327.240000px;}
.y1bb{bottom:328.680000px;}
.yb9{bottom:332.280000px;}
.y46{bottom:333.720000px;}
.y19f{bottom:335.520000px;}
.y137{bottom:340.920000px;}
.y18d{bottom:345.240000px;}
.y11b{bottom:345.960000px;}
.yf9{bottom:348.120000px;}
.y1c7{bottom:348.480000px;}
.y14f{bottom:348.840000px;}
.y125{bottom:349.560000px;}
.y9a{bottom:354.600000px;}
.y61{bottom:355.680000px;}
.ye2{bottom:358.560000px;}
.y1ba{bottom:360.000000px;}
.y103{bottom:360.360000px;}
.y173{bottom:363.240000px;}
.yb8{bottom:363.600000px;}
.y45{bottom:364.680000px;}
.y19e{bottom:366.480000px;}
.y2c{bottom:369.000000px;}
.y136{bottom:372.240000px;}
.y192{bottom:372.600000px;}
.y18c{bottom:376.200000px;}
.y11a{bottom:378.000000px;}
.y1c6{bottom:379.800000px;}
.y14e{bottom:380.160000px;}
.y124{bottom:380.520000px;}
.y99{bottom:385.560000px;}
.y60{bottom:386.640000px;}
.ye1{bottom:389.520000px;}
.y102{bottom:391.320000px;}
.y172{bottom:394.200000px;}
.yb7{bottom:394.560000px;}
.y44{bottom:395.640000px;}
.y19d{bottom:397.440000px;}
.y1b9{bottom:399.960000px;}
.y135{bottom:403.200000px;}
.y18b{bottom:407.160000px;}
.y119{bottom:409.320000px;}
.y1c5{bottom:410.760000px;}
.y2b{bottom:415.080000px;}
.y98{bottom:416.520000px;}
.y5f{bottom:417.600000px;}
.y101{bottom:422.640000px;}
.ye0{bottom:423.360000px;}
.yb6{bottom:425.520000px;}
.y43{bottom:426.600000px;}
.y19c{bottom:428.400000px;}
.y14d{bottom:431.640000px;}
.y170{bottom:435.960000px;}
.y123{bottom:437.400000px;}
.y97{bottom:437.760000px;}
.y18a{bottom:438.480000px;}
.y118{bottom:441.360000px;}
.y1c4{bottom:441.720000px;}
.y2a{bottom:446.040000px;}
.y5e{bottom:448.920000px;}
.y122{bottom:452.880000px;}
.y100{bottom:453.600000px;}
.y1b8{bottom:454.680000px;}
.y94{bottom:456.000000px;}
.yb5{bottom:456.480000px;}
.yf8{bottom:457.560000px;}
.y42{bottom:457.920000px;}
.y19b{bottom:459.720000px;}
.y134{bottom:460.080000px;}
.y14c{bottom:465.120000px;}
.y16f{bottom:466.920000px;}
.y189{bottom:469.440000px;}
.ydf{bottom:470.880000px;}
.y117{bottom:472.680000px;}
.y133{bottom:475.560000px;}
.y92{bottom:477.000000px;}
.y29{bottom:477.360000px;}
.y5d{bottom:479.880000px;}
.yff{bottom:484.560000px;}
.y1b7{bottom:486.000000px;}
.yb4{bottom:487.440000px;}
.yf7{bottom:488.520000px;}
.y41{bottom:488.880000px;}
.y19a{bottom:490.680000px;}
.y91{bottom:496.500000px;}
.y16e{bottom:497.880000px;}
.y14a{bottom:500.400000px;}
.y14b{bottom:501.120000px;}
.y1c3{bottom:504.000000px;}
.yde{bottom:507.000000px;}
.y28{bottom:508.320000px;}
.y5c{bottom:510.840000px;}
.y171{bottom:513.360000px;}
.y188{bottom:515.520000px;}
.y90{bottom:516.000000px;}
.y1b6{bottom:516.960000px;}
.yb3{bottom:518.760000px;}
.y40{bottom:519.840000px;}
.ydd{bottom:528.000000px;}
.y16d{bottom:528.840000px;}
.y1c2{bottom:534.960000px;}
.y8e{bottom:535.500000px;}
.y27{bottom:539.280000px;}
.yfe{bottom:541.440000px;}
.y187{bottom:546.480000px;}
.y1b5{bottom:547.920000px;}
.y199{bottom:548.640000px;}
.yb2{bottom:549.720000px;}
.ydc{bottom:550.500000px;}
.y3f{bottom:550.800000px;}
.y149{bottom:551.160000px;}
.y8c{bottom:556.500000px;}
.y5b{bottom:556.920000px;}
.yfd{bottom:557.280000px;}
.y116{bottom:565.920000px;}
.y26{bottom:570.240000px;}
.ydb{bottom:571.500000px;}
.y16c{bottom:574.920000px;}
.y8a{bottom:576.000000px;}
.y186{bottom:577.440000px;}
.y1b4{bottom:578.880000px;}
.y198{bottom:579.600000px;}
.yb1{bottom:580.680000px;}
.yf6{bottom:581.760000px;}
.ye{bottom:582.015000px;}
.y3e{bottom:582.120000px;}
.y5a{bottom:588.240000px;}
.yda{bottom:594.000000px;}
.y115{bottom:596.880000px;}
.y88{bottom:598.500000px;}
.y25{bottom:601.560000px;}
.y15a{bottom:605.880000px;}
.y197{bottom:606.960000px;}
.y185{bottom:608.760000px;}
.y1b3{bottom:610.200000px;}
.yb0{bottom:611.640000px;}
.yf5{bottom:612.720000px;}
.y3d{bottom:613.080000px;}
.yd9{bottom:616.500000px;}
.yd{bottom:620.175000px;}
.y59{bottom:620.280000px;}
.y86{bottom:621.000000px;}
.y114{bottom:627.840000px;}
.y1c1{bottom:628.200000px;}
.y24{bottom:632.520000px;}
.y16b{bottom:637.200000px;}
.yd8{bottom:637.500000px;}
.ya6{bottom:639.720000px;}
.y7f{bottom:640.500000px;}
.y1b2{bottom:641.160000px;}
.yaf{bottom:642.960000px;}
.y3c{bottom:644.040000px;}
.y148{bottom:644.400000px;}
.y159{bottom:647.280000px;}
.y58{bottom:651.600000px;}
.yc{bottom:654.555000px;}
.yd7{bottom:658.500000px;}
.y113{bottom:658.800000px;}
.y1c0{bottom:659.160000px;}
.y83{bottom:660.000000px;}
.y23{bottom:663.480000px;}
.y16a{bottom:668.160000px;}
.y184{bottom:670.680000px;}
.y1b1{bottom:672.120000px;}
.ya5{bottom:673.560000px;}
.yae{bottom:673.920000px;}
.y3b{bottom:675.000000px;}
.y81{bottom:679.500000px;}
.y57{bottom:683.640000px;}
.yb{bottom:685.545000px;}
.y112{bottom:690.120000px;}
.y22{bottom:694.440000px;}
.y146{bottom:695.160000px;}
.y74{bottom:699.000000px;}
.y183{bottom:701.640000px;}
.yd6{bottom:702.000000px;}
.y1b0{bottom:703.080000px;}
.y147{bottom:704.520000px;}
.yad{bottom:704.880000px;}
.yf4{bottom:705.960000px;}
.y169{bottom:714.240000px;}
.y56{bottom:714.960000px;}
.ya{bottom:716.685000px;}
.y3a{bottom:721.080000px;}
.y7b{bottom:723.000000px;}
.y21{bottom:725.760000px;}
.y165{bottom:732.000000px;}
.y1af{bottom:734.400000px;}
.y182{bottom:735.480000px;}
.yac{bottom:735.840000px;}
.yf3{bottom:736.920000px;}
.yd3{bottom:744.000000px;}
.y79{bottom:747.000000px;}
.y145{bottom:748.440000px;}
.y9{bottom:751.965000px;}
.y111{bottom:752.040000px;}
.y39{bottom:752.400000px;}
.y20{bottom:756.720000px;}
.y55{bottom:762.120000px;}
.y1ae{bottom:765.360000px;}
.yd2{bottom:766.500000px;}
.ya4{bottom:767.160000px;}
.yf2{bottom:768.240000px;}
.y77{bottom:769.500000px;}
.y163{bottom:775.500000px;}
.y144{bottom:780.840000px;}
.y12e{bottom:783.000000px;}
.y38{bottom:783.360000px;}
.y1f{bottom:787.680000px;}
.yd1{bottom:789.000000px;}
.y8{bottom:789.045000px;}
.y72{bottom:792.000000px;}
.y54{bottom:795.960000px;}
.y1ad{bottom:796.320000px;}
.ya3{bottom:798.120000px;}
.yf1{bottom:799.200000px;}
.ycf{bottom:810.000000px;}
.y12d{bottom:813.960000px;}
.y37{bottom:814.320000px;}
.y161{bottom:816.000000px;}
.y1e{bottom:818.640000px;}
.y7{bottom:823.425000px;}
.y143{bottom:826.200000px;}
.y1ac{bottom:827.280000px;}
.ya2{bottom:829.080000px;}
.yf0{bottom:830.160000px;}
.y71{bottom:830.520000px;}
.ycd{bottom:832.500000px;}
.y142{bottom:835.200000px;}
.y53{bottom:837.360000px;}
.y36{bottom:845.280000px;}
.y1d{bottom:849.960000px;}
.ycb{bottom:853.500000px;}
.y6{bottom:857.805000px;}
.y1ab{bottom:858.600000px;}
.y15e{bottom:859.500000px;}
.y70{bottom:860.040000px;}
.y10c{bottom:861.120000px;}
.yc9{bottom:874.500000px;}
.yef{bottom:876.240000px;}
.y35{bottom:876.600000px;}
.y1c{bottom:880.920000px;}
.y141{bottom:889.200000px;}
.y1aa{bottom:889.560000px;}
.y6f{bottom:891.360000px;}
.y5{bottom:892.005000px;}
.y52{bottom:892.440000px;}
.yc5{bottom:895.500000px;}
.yee{bottom:907.200000px;}
.y34{bottom:907.560000px;}
.y15d{bottom:909.000000px;}
.y1b{bottom:911.880000px;}
.y140{bottom:920.160000px;}
.y1a9{bottom:920.520000px;}
.y6e{bottom:922.320000px;}
.y10b{bottom:923.400000px;}
.y4{bottom:927.150000px;}
.y51{bottom:938.160000px;}
.y33{bottom:938.520000px;}
.y1a{bottom:942.840000px;}
.y13f{bottom:951.480000px;}
.y6d{bottom:953.280000px;}
.yc4{bottom:953.640000px;}
.y10a{bottom:954.360000px;}
.y3{bottom:956.310000px;}
.y32{bottom:969.480000px;}
.y19{bottom:974.160000px;}
.y1a8{bottom:982.440000px;}
.yc3{bottom:983.160000px;}
.y6c{bottom:984.240000px;}
.y109{bottom:985.320000px;}
.y31{bottom:1000.440000px;}
.y18{bottom:1005.120000px;}
.y1a7{bottom:1013.760000px;}
.yc2{bottom:1014.480000px;}
.y6b{bottom:1015.560000px;}
.y17{bottom:1030.680000px;}
.y50{bottom:1031.400000px;}
.y30{bottom:1031.760000px;}
.yc1{bottom:1045.440000px;}
.y6a{bottom:1046.520000px;}
.y16{bottom:1047.960000px;}
.y1a6{bottom:1053.360000px;}
.y4f{bottom:1062.360000px;}
.y2f{bottom:1062.720000px;}
.y15{bottom:1065.240000px;}
.y158{bottom:1073.160000px;}
.yc0{bottom:1076.400000px;}
.y69{bottom:1077.480000px;}
.y14{bottom:1082.520000px;}
.y2e{bottom:1093.680000px;}
.y13{bottom:1095.120000px;}
.y157{bottom:1104.480000px;}
.y2{bottom:1107.150000px;}
.y4e{bottom:1108.440000px;}
.y12{bottom:1116.000000px;}
.ybf{bottom:1121.760000px;}
.ybe{bottom:1130.760000px;}
.y2d{bottom:1133.640000px;}
.y11{bottom:1137.240000px;}
.y156{bottom:1138.320000px;}
.y4d{bottom:1139.760000px;}
.y1{bottom:1140.990000px;}
.h16{height:19.500000px;}
.h13{height:21.000000px;}
.h14{height:22.500000px;}
.he{height:24.000000px;}
.h11{height:25.500000px;}
.h9{height:26.995781px;}
.h1f{height:42.000000px;}
.h1b{height:43.500000px;}
.h19{height:44.838281px;}
.hf{height:44.893125px;}
.h20{height:45.000000px;}
.hd{height:45.992813px;}
.ha{height:48.796875px;}
.h17{height:49.992188px;}
.h6{height:50.027344px;}
.h1a{height:50.800781px;}
.hc{height:54.523125px;}
.h15{height:55.580625px;}
.h21{height:56.355469px;}
.h7{height:56.604375px;}
.h8{height:57.474844px;}
.h12{height:60.000000px;}
.h1e{height:65.200781px;}
.h2{height:65.884219px;}
.hb{height:67.649063px;}
.h3{height:75.093750px;}
.h5{height:83.787539px;}
.h1c{height:86.598281px;}
.h4{height:87.859687px;}
.h18{height:92.358281px;}
.h10{height:94.500000px;}
.h1d{height:101.200781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:54.000000px;}
.w12{width:55.500000px;}
.w14{width:61.500000px;}
.wb{width:63.000000px;}
.wc{width:64.500000px;}
.w15{width:70.500000px;}
.wd{width:75.000000px;}
.wf{width:76.500000px;}
.w16{width:84.000000px;}
.we{width:85.500000px;}
.w17{width:90.000000px;}
.w6{width:99.000000px;}
.w7{width:120.000000px;}
.w11{width:126.000000px;}
.w9{width:127.500000px;}
.wa{width:141.000000px;}
.w8{width:142.500000px;}
.w10{width:160.500000px;}
.w5{width:267.000000px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.260144px;}
.x1c{left:8.700072px;}
.x5c{left:10.714956px;}
.x5a{left:12.450084px;}
.x30{left:14.224368px;}
.x36{left:15.371280px;}
.x3c{left:16.387680px;}
.x3b{left:18.127320px;}
.x40{left:19.556520px;}
.x32{left:21.490716px;}
.x3f{left:22.790760px;}
.x38{left:24.127440px;}
.x35{left:26.595000px;}
.x29{left:28.754880px;}
.x5b{left:30.045120px;}
.x16{left:31.498080px;}
.x24{left:32.879760px;}
.x1d{left:34.942560px;}
.x26{left:37.005000px;}
.x3d{left:38.035320px;}
.x22{left:39.067440px;}
.x23{left:41.655000px;}
.x18{left:42.791160px;}
.x1e{left:45.779880px;}
.x27{left:47.842680px;}
.x20{left:49.905120px;}
.x1a{left:53.105760px;}
.x25{left:54.487440px;}
.x1f{left:56.549880px;}
.x28{left:58.612320px;}
.x21{left:60.675120px;}
.x3e{left:79.282320px;}
.x53{left:126.000000px;}
.x1{left:127.655987px;}
.x4f{left:129.823632px;}
.x4{left:134.675987px;}
.x5d{left:138.570192px;}
.xe{left:145.422000px;}
.xa{left:148.131972px;}
.x2f{left:150.000000px;}
.x12{left:153.720000px;}
.x8{left:160.589987px;}
.x51{left:162.744120px;}
.x63{left:165.175416px;}
.x65{left:169.965072px;}
.x5e{left:178.442496px;}
.x11{left:181.439928px;}
.x61{left:185.650632px;}
.x52{left:187.945308px;}
.x46{left:198.535752px;}
.x48{left:204.723252px;}
.x42{left:205.867296px;}
.xd{left:207.559584px;}
.x49{left:211.889628px;}
.x31{left:213.000000px;}
.x4a{left:223.140024px;}
.x6{left:224.669987px;}
.x2{left:229.889987px;}
.x4c{left:234.058968px;}
.x4b{left:247.781988px;}
.xb{left:250.764048px;}
.x5f{left:253.014768px;}
.x33{left:276.000000px;}
.xf{left:277.572492px;}
.x13{left:283.493052px;}
.x1b{left:286.500000px;}
.x54{left:304.500000px;}
.x60{left:310.434444px;}
.x2b{left:313.708752px;}
.x10{left:323.887572px;}
.x5{left:344.954987px;}
.x34{left:351.000000px;}
.x2e{left:357.517476px;}
.x3{left:369.974987px;}
.x64{left:381.864960px;}
.x2c{left:400.994640px;}
.x50{left:415.947240px;}
.x55{left:418.500000px;}
.x15{left:426.000000px;}
.x37{left:435.000000px;}
.x7{left:446.474987px;}
.x4d{left:448.377480px;}
.x2d{left:455.117400px;}
.xc{left:456.952320px;}
.x56{left:471.000000px;}
.x39{left:510.000000px;}
.x17{left:523.500000px;}
.x57{left:541.500000px;}
.x3a{left:574.500000px;}
.x58{left:624.000000px;}
.x19{left:643.500000px;}
.x4e{left:651.600000px;}
.x62{left:691.312320px;}
.x59{left:700.500000px;}
.x43{left:707.692320px;}
.x2a{left:731.812320px;}
.x47{left:746.392320px;}
.x44{left:768.464640px;}
.x9{left:777.464640px;}
.x41{left:779.692320px;}
.x45{left:786.600000px;}
@media print{
.v12{vertical-align:-33.280000pt;}
.ve{vertical-align:-25.600000pt;}
.v2{vertical-align:-19.200000pt;}
.v11{vertical-align:-17.920000pt;}
.va{vertical-align:-12.800000pt;}
.v6{vertical-align:-8.960000pt;}
.v3{vertical-align:-5.120000pt;}
.v10{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.560000pt;}
.v7{vertical-align:8.960000pt;}
.v9{vertical-align:10.240000pt;}
.vd{vertical-align:12.800000pt;}
.v1{vertical-align:21.760000pt;}
.v4{vertical-align:24.320000pt;}
.vc{vertical-align:32.000000pt;}
.v5{vertical-align:42.240000pt;}
.vb{vertical-align:49.920000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.308736pt;}
.ls12{letter-spacing:-0.301056pt;}
.ls5f{letter-spacing:-0.283008pt;}
.ls60{letter-spacing:-0.265856pt;}
.ls1c{letter-spacing:-0.257280pt;}
.ls2f{letter-spacing:-0.211968pt;}
.ls16{letter-spacing:-0.198912pt;}
.ls5d{letter-spacing:-0.182528pt;}
.ls23{letter-spacing:-0.180096pt;}
.ls2d{letter-spacing:-0.176640pt;}
.ls3a{letter-spacing:-0.153088pt;}
.ls29{letter-spacing:-0.141312pt;}
.ls14{letter-spacing:-0.139776pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls1d{letter-spacing:-0.120064pt;}
.ls2c{letter-spacing:-0.111872pt;}
.ls15{letter-spacing:-0.107520pt;}
.ls2b{letter-spacing:-0.105984pt;}
.ls5c{letter-spacing:-0.076544pt;}
.ls2a{letter-spacing:-0.070656pt;}
.ls2e{letter-spacing:-0.052992pt;}
.ls5b{letter-spacing:-0.025600pt;}
.ls38{letter-spacing:-0.019200pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls1e{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000512pt;}
.ls30{letter-spacing:0.001280pt;}
.ls49{letter-spacing:0.001792pt;}
.ls3d{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.009728pt;}
.ls26{letter-spacing:0.010240pt;}
.ls4a{letter-spacing:0.010752pt;}
.ls1a{letter-spacing:0.012800pt;}
.ls13{letter-spacing:0.041472pt;}
.lsb{letter-spacing:0.042112pt;}
.lsc{letter-spacing:0.053248pt;}
.lsd{letter-spacing:0.053376pt;}
.ls3c{letter-spacing:0.061824pt;}
.ls37{letter-spacing:0.062208pt;}
.ls31{letter-spacing:0.069120pt;}
.ls5e{letter-spacing:0.089088pt;}
.ls41{letter-spacing:0.089856pt;}
.ls3b{letter-spacing:0.096768pt;}
.ls24{letter-spacing:0.103680pt;}
.ls10{letter-spacing:0.105600pt;}
.ls27{letter-spacing:0.106624pt;}
.ls43{letter-spacing:0.107520pt;}
.ls20{letter-spacing:0.110592pt;}
.ls3e{letter-spacing:0.113664pt;}
.ls40{letter-spacing:0.124416pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3f{letter-spacing:0.138240pt;}
.ls8{letter-spacing:0.143360pt;}
.ls39{letter-spacing:0.143616pt;}
.ls34{letter-spacing:0.144768pt;}
.ls6{letter-spacing:0.170752pt;}
.ls11{letter-spacing:0.181632pt;}
.ls9{letter-spacing:0.183040pt;}
.ls25{letter-spacing:0.212480pt;}
.ls28{letter-spacing:0.213248pt;}
.ls1b{letter-spacing:0.213376pt;}
.lsa{letter-spacing:0.213760pt;}
.ls7{letter-spacing:0.215296pt;}
.lsf{letter-spacing:0.244992pt;}
.ls5a{letter-spacing:0.250880pt;}
.ls4b{letter-spacing:0.253824pt;}
.ls0{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.267733pt;}
.ls59{letter-spacing:0.295680pt;}
.ls4e{letter-spacing:0.298240pt;}
.ls56{letter-spacing:0.309120pt;}
.ls52{letter-spacing:0.312320pt;}
.ls47{letter-spacing:0.313600pt;}
.ls57{letter-spacing:0.325248pt;}
.ls4{letter-spacing:0.330133pt;}
.ls58{letter-spacing:0.349440pt;}
.ls32{letter-spacing:0.556800pt;}
.ls4f{letter-spacing:1.621760pt;}
.ls33{letter-spacing:1.998080pt;}
.ls42{letter-spacing:2.453760pt;}
.ls50{letter-spacing:4.389120pt;}
.ls45{letter-spacing:4.861440pt;}
.ls46{letter-spacing:5.260800pt;}
.ls48{letter-spacing:5.548800pt;}
.ls4c{letter-spacing:5.619712pt;}
.ls55{letter-spacing:5.807360pt;}
.ls51{letter-spacing:5.849600pt;}
.ls19{letter-spacing:6.609152pt;}
.ls53{letter-spacing:10.691840pt;}
.ls35{letter-spacing:14.216960pt;}
.ls44{letter-spacing:14.229632pt;}
.ls4d{letter-spacing:22.166400pt;}
.ls62{letter-spacing:26.783488pt;}
.ls1f{letter-spacing:47.718272pt;}
.ls21{letter-spacing:48.770432pt;}
.ls61{letter-spacing:58.783488pt;}
.ls54{letter-spacing:63.610880pt;}
.ws5{word-spacing:-18.804992pt;}
.ws0{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.190613pt;}
.ws1{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.922880pt;}
.wsd{word-spacing:-16.012800pt;}
.ws26{word-spacing:-16.006400pt;}
.ws14{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.993600pt;}
.ws9{word-spacing:-15.987200pt;}
.ws15{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.649344pt;}
.ws18{word-spacing:-14.614016pt;}
.ws17{word-spacing:-14.608128pt;}
.ws16{word-spacing:-14.578688pt;}
.ws19{word-spacing:-14.543360pt;}
.ws1b{word-spacing:-14.508032pt;}
.ws8{word-spacing:-13.440000pt;}
.ws29{word-spacing:-10.885248pt;}
.ws7{word-spacing:-10.741632pt;}
.ws23{word-spacing:-10.703616pt;}
.ws6{word-spacing:-10.665600pt;}
.ws2f{word-spacing:-0.394240pt;}
.ws33{word-spacing:-0.353920pt;}
.ws32{word-spacing:-0.295680pt;}
.ws28{word-spacing:-0.193536pt;}
.ws22{word-spacing:-0.181888pt;}
.ws12{word-spacing:-0.179712pt;}
.ws11{word-spacing:-0.172800pt;}
.ws25{word-spacing:-0.165888pt;}
.ws27{word-spacing:-0.158976pt;}
.ws1d{word-spacing:-0.138240pt;}
.ws24{word-spacing:-0.131328pt;}
.ws36{word-spacing:-0.126208pt;}
.ws10{word-spacing:-0.085760pt;}
.ws1e{word-spacing:-0.069120pt;}
.ws13{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.044800pt;}
.ws35{word-spacing:-0.037120pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.034304pt;}
.wsf{word-spacing:0.094336pt;}
.wsa{word-spacing:0.171520pt;}
.ws38{word-spacing:0.180096pt;}
.ws37{word-spacing:0.197248pt;}
.wse{word-spacing:0.222976pt;}
.ws1c{word-spacing:4.239104pt;}
.ws2b{word-spacing:8.828544pt;}
.ws20{word-spacing:8.828928pt;}
.ws2d{word-spacing:14.163200pt;}
.ws2e{word-spacing:17.348480pt;}
.ws2c{word-spacing:17.448960pt;}
.ws31{word-spacing:17.717760pt;}
.ws1f{word-spacing:19.047936pt;}
.ws30{word-spacing:21.003648pt;}
.ws2a{word-spacing:22.522112pt;}
.ws34{word-spacing:36.843520pt;}
._20{margin-left:-8.083968pt;}
._18{margin-left:-6.280448pt;}
._10{margin-left:-4.132736pt;}
._f{margin-left:-3.078400pt;}
._4{margin-left:-2.091520pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.056000pt;}
._5{width:1.964800pt;}
._7{width:3.116800pt;}
._6{width:4.659200pt;}
._9{width:6.067200pt;}
._a{width:7.682560pt;}
._e{width:8.908928pt;}
._11{width:10.284800pt;}
._14{width:11.424000pt;}
._8{width:13.126400pt;}
._16{width:14.137856pt;}
._c{width:15.104000pt;}
._3{width:17.152000pt;}
._17{width:18.188800pt;}
._b{width:19.968000pt;}
._24{width:21.844224pt;}
._1f{width:27.187200pt;}
._12{width:34.174080pt;}
._23{width:35.160064pt;}
._15{width:36.086400pt;}
._13{width:37.792000pt;}
._1c{width:41.145856pt;}
._22{width:50.035200pt;}
._1e{width:83.512064pt;}
._19{width:84.972800pt;}
._1d{width:99.742720pt;}
._21{width:103.268736pt;}
._1b{width:143.358464pt;}
._1a{width:172.798720pt;}
._d{width:752.000000pt;}
._1{width:880.557653pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fsa{font-size:44.800000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:3.573333pt;}
.y87{bottom:3.840000pt;}
.yce{bottom:4.000000pt;}
.y85{bottom:4.106667pt;}
.y93{bottom:4.160000pt;}
.ycc{bottom:4.213333pt;}
.y95{bottom:4.266667pt;}
.y82{bottom:4.320000pt;}
.y84{bottom:4.373333pt;}
.y96{bottom:4.586667pt;}
.y8f{bottom:4.640000pt;}
.yd5{bottom:4.693333pt;}
.yca{bottom:4.746667pt;}
.yd0{bottom:4.800000pt;}
.yd4{bottom:4.906667pt;}
.yc8{bottom:4.960000pt;}
.y8b{bottom:6.080000pt;}
.y89{bottom:6.240000pt;}
.y7a{bottom:6.720000pt;}
.y78{bottom:6.880000pt;}
.y7d{bottom:6.933333pt;}
.y73{bottom:7.040000pt;}
.y7e{bottom:7.146667pt;}
.y7c{bottom:8.213333pt;}
.y15f{bottom:12.640000pt;}
.y164{bottom:13.386667pt;}
.y162{bottom:14.186667pt;}
.yc6{bottom:14.240000pt;}
.y167{bottom:14.293333pt;}
.y166{bottom:14.613333pt;}
.y168{bottom:15.573333pt;}
.y160{bottom:20.960000pt;}
.y80{bottom:21.706667pt;}
.yc7{bottom:23.520000pt;}
.y76{bottom:28.586667pt;}
.y75{bottom:48.106667pt;}
.y10{bottom:50.880000pt;}
.yf{bottom:69.440000pt;}
.y132{bottom:98.240000pt;}
.y191{bottom:100.480000pt;}
.y196{bottom:100.800000pt;}
.y155{bottom:101.120000pt;}
.y178{bottom:102.080000pt;}
.y181{bottom:105.280000pt;}
.yed{bottom:107.840000pt;}
.y68{bottom:109.760000pt;}
.y13e{bottom:110.080000pt;}
.y15c{bottom:111.360000pt;}
.y110{bottom:116.160000pt;}
.y12c{bottom:117.440000pt;}
.yab{bottom:119.040000pt;}
.ya1{bottom:121.920000pt;}
.ye9{bottom:125.440000pt;}
.y131{bottom:125.760000pt;}
.y121{bottom:127.040000pt;}
.y190{bottom:128.000000pt;}
.y195{bottom:128.320000pt;}
.y154{bottom:128.640000pt;}
.y177{bottom:129.600000pt;}
.y4c{bottom:130.880000pt;}
.y1a5{bottom:132.480000pt;}
.y180{bottom:132.800000pt;}
.yec{bottom:135.680000pt;}
.y67{bottom:137.280000pt;}
.y13d{bottom:137.600000pt;}
.y108{bottom:141.440000pt;}
.y10f{bottom:143.680000pt;}
.y12b{bottom:145.280000pt;}
.y15b{bottom:146.560000pt;}
.yaa{bottom:147.520000pt;}
.ybd{bottom:147.840000pt;}
.ya0{bottom:149.440000pt;}
.ye8{bottom:152.960000pt;}
.y120{bottom:154.880000pt;}
.y18f{bottom:155.520000pt;}
.y194{bottom:155.840000pt;}
.y153{bottom:156.160000pt;}
.y176{bottom:157.440000pt;}
.y4b{bottom:158.400000pt;}
.y1a4{bottom:160.320000pt;}
.y17f{bottom:160.640000pt;}
.yeb{bottom:163.200000pt;}
.y66{bottom:164.800000pt;}
.y13c{bottom:165.120000pt;}
.y17a{bottom:168.000000pt;}
.y107{bottom:168.960000pt;}
.y1cc{bottom:171.840000pt;}
.y12a{bottom:172.800000pt;}
.ybc{bottom:175.360000pt;}
.ya9{bottom:176.000000pt;}
.y130{bottom:176.320000pt;}
.y9f{bottom:177.280000pt;}
.ye7{bottom:180.480000pt;}
.y179{bottom:181.760000pt;}
.y1bf{bottom:182.080000pt;}
.y11f{bottom:182.400000pt;}
.y18e{bottom:183.040000pt;}
.y193{bottom:183.680000pt;}
.y175{bottom:184.960000pt;}
.y4a{bottom:186.240000pt;}
.y1a3{bottom:187.840000pt;}
.y17e{bottom:188.160000pt;}
.y12f{bottom:190.080000pt;}
.y65{bottom:192.320000pt;}
.y13b{bottom:192.640000pt;}
.y10e{bottom:194.240000pt;}
.y106{bottom:196.800000pt;}
.y1cb{bottom:199.360000pt;}
.y152{bottom:199.680000pt;}
.y129{bottom:200.320000pt;}
.y9e{bottom:204.800000pt;}
.y10d{bottom:208.000000pt;}
.ye6{bottom:208.320000pt;}
.y1be{bottom:209.600000pt;}
.ybb{bottom:211.200000pt;}
.y11e{bottom:212.480000pt;}
.y1cd{bottom:212.800000pt;}
.y49{bottom:213.760000pt;}
.y1a2{bottom:215.360000pt;}
.y64{bottom:219.840000pt;}
.y13a{bottom:220.480000pt;}
.yfc{bottom:224.000000pt;}
.y105{bottom:224.320000pt;}
.ya8{bottom:226.560000pt;}
.y1ca{bottom:227.200000pt;}
.yea{bottom:227.520000pt;}
.y128{bottom:227.840000pt;}
.y9d{bottom:232.320000pt;}
.ye5{bottom:235.840000pt;}
.y1bd{bottom:237.120000pt;}
.y17d{bottom:238.720000pt;}
.y174{bottom:240.000000pt;}
.ya7{bottom:240.320000pt;}
.y48{bottom:241.280000pt;}
.y1a1{bottom:242.880000pt;}
.y63{bottom:247.680000pt;}
.y139{bottom:248.000000pt;}
.yfb{bottom:251.520000pt;}
.y104{bottom:251.840000pt;}
.y11d{bottom:252.160000pt;}
.y1c9{bottom:254.720000pt;}
.y151{bottom:255.040000pt;}
.y127{bottom:255.680000pt;}
.y9c{bottom:259.840000pt;}
.ye4{bottom:263.360000pt;}
.y17c{bottom:264.000000pt;}
.y1bc{bottom:264.640000pt;}
.yba{bottom:267.840000pt;}
.y47{bottom:268.800000pt;}
.y1a0{bottom:270.720000pt;}
.y62{bottom:275.200000pt;}
.y138{bottom:275.520000pt;}
.y17b{bottom:277.760000pt;}
.yfa{bottom:279.360000pt;}
.y11c{bottom:279.680000pt;}
.y1c8{bottom:282.240000pt;}
.y150{bottom:282.560000pt;}
.y126{bottom:283.200000pt;}
.y9b{bottom:287.680000pt;}
.ye3{bottom:290.880000pt;}
.y1bb{bottom:292.160000pt;}
.yb9{bottom:295.360000pt;}
.y46{bottom:296.640000pt;}
.y19f{bottom:298.240000pt;}
.y137{bottom:303.040000pt;}
.y18d{bottom:306.880000pt;}
.y11b{bottom:307.520000pt;}
.yf9{bottom:309.440000pt;}
.y1c7{bottom:309.760000pt;}
.y14f{bottom:310.080000pt;}
.y125{bottom:310.720000pt;}
.y9a{bottom:315.200000pt;}
.y61{bottom:316.160000pt;}
.ye2{bottom:318.720000pt;}
.y1ba{bottom:320.000000pt;}
.y103{bottom:320.320000pt;}
.y173{bottom:322.880000pt;}
.yb8{bottom:323.200000pt;}
.y45{bottom:324.160000pt;}
.y19e{bottom:325.760000pt;}
.y2c{bottom:328.000000pt;}
.y136{bottom:330.880000pt;}
.y192{bottom:331.200000pt;}
.y18c{bottom:334.400000pt;}
.y11a{bottom:336.000000pt;}
.y1c6{bottom:337.600000pt;}
.y14e{bottom:337.920000pt;}
.y124{bottom:338.240000pt;}
.y99{bottom:342.720000pt;}
.y60{bottom:343.680000pt;}
.ye1{bottom:346.240000pt;}
.y102{bottom:347.840000pt;}
.y172{bottom:350.400000pt;}
.yb7{bottom:350.720000pt;}
.y44{bottom:351.680000pt;}
.y19d{bottom:353.280000pt;}
.y1b9{bottom:355.520000pt;}
.y135{bottom:358.400000pt;}
.y18b{bottom:361.920000pt;}
.y119{bottom:363.840000pt;}
.y1c5{bottom:365.120000pt;}
.y2b{bottom:368.960000pt;}
.y98{bottom:370.240000pt;}
.y5f{bottom:371.200000pt;}
.y101{bottom:375.680000pt;}
.ye0{bottom:376.320000pt;}
.yb6{bottom:378.240000pt;}
.y43{bottom:379.200000pt;}
.y19c{bottom:380.800000pt;}
.y14d{bottom:383.680000pt;}
.y170{bottom:387.520000pt;}
.y123{bottom:388.800000pt;}
.y97{bottom:389.120000pt;}
.y18a{bottom:389.760000pt;}
.y118{bottom:392.320000pt;}
.y1c4{bottom:392.640000pt;}
.y2a{bottom:396.480000pt;}
.y5e{bottom:399.040000pt;}
.y122{bottom:402.560000pt;}
.y100{bottom:403.200000pt;}
.y1b8{bottom:404.160000pt;}
.y94{bottom:405.333333pt;}
.yb5{bottom:405.760000pt;}
.yf8{bottom:406.720000pt;}
.y42{bottom:407.040000pt;}
.y19b{bottom:408.640000pt;}
.y134{bottom:408.960000pt;}
.y14c{bottom:413.440000pt;}
.y16f{bottom:415.040000pt;}
.y189{bottom:417.280000pt;}
.ydf{bottom:418.560000pt;}
.y117{bottom:420.160000pt;}
.y133{bottom:422.720000pt;}
.y92{bottom:424.000000pt;}
.y29{bottom:424.320000pt;}
.y5d{bottom:426.560000pt;}
.yff{bottom:430.720000pt;}
.y1b7{bottom:432.000000pt;}
.yb4{bottom:433.280000pt;}
.yf7{bottom:434.240000pt;}
.y41{bottom:434.560000pt;}
.y19a{bottom:436.160000pt;}
.y91{bottom:441.333333pt;}
.y16e{bottom:442.560000pt;}
.y14a{bottom:444.800000pt;}
.y14b{bottom:445.440000pt;}
.y1c3{bottom:448.000000pt;}
.yde{bottom:450.666667pt;}
.y28{bottom:451.840000pt;}
.y5c{bottom:454.080000pt;}
.y171{bottom:456.320000pt;}
.y188{bottom:458.240000pt;}
.y90{bottom:458.666667pt;}
.y1b6{bottom:459.520000pt;}
.yb3{bottom:461.120000pt;}
.y40{bottom:462.080000pt;}
.ydd{bottom:469.333333pt;}
.y16d{bottom:470.080000pt;}
.y1c2{bottom:475.520000pt;}
.y8e{bottom:476.000000pt;}
.y27{bottom:479.360000pt;}
.yfe{bottom:481.280000pt;}
.y187{bottom:485.760000pt;}
.y1b5{bottom:487.040000pt;}
.y199{bottom:487.680000pt;}
.yb2{bottom:488.640000pt;}
.ydc{bottom:489.333333pt;}
.y3f{bottom:489.600000pt;}
.y149{bottom:489.920000pt;}
.y8c{bottom:494.666667pt;}
.y5b{bottom:495.040000pt;}
.yfd{bottom:495.360000pt;}
.y116{bottom:503.040000pt;}
.y26{bottom:506.880000pt;}
.ydb{bottom:508.000000pt;}
.y16c{bottom:511.040000pt;}
.y8a{bottom:512.000000pt;}
.y186{bottom:513.280000pt;}
.y1b4{bottom:514.560000pt;}
.y198{bottom:515.200000pt;}
.yb1{bottom:516.160000pt;}
.yf6{bottom:517.120000pt;}
.ye{bottom:517.346667pt;}
.y3e{bottom:517.440000pt;}
.y5a{bottom:522.880000pt;}
.yda{bottom:528.000000pt;}
.y115{bottom:530.560000pt;}
.y88{bottom:532.000000pt;}
.y25{bottom:534.720000pt;}
.y15a{bottom:538.560000pt;}
.y197{bottom:539.520000pt;}
.y185{bottom:541.120000pt;}
.y1b3{bottom:542.400000pt;}
.yb0{bottom:543.680000pt;}
.yf5{bottom:544.640000pt;}
.y3d{bottom:544.960000pt;}
.yd9{bottom:548.000000pt;}
.yd{bottom:551.266667pt;}
.y59{bottom:551.360000pt;}
.y86{bottom:552.000000pt;}
.y114{bottom:558.080000pt;}
.y1c1{bottom:558.400000pt;}
.y24{bottom:562.240000pt;}
.y16b{bottom:566.400000pt;}
.yd8{bottom:566.666667pt;}
.ya6{bottom:568.640000pt;}
.y7f{bottom:569.333333pt;}
.y1b2{bottom:569.920000pt;}
.yaf{bottom:571.520000pt;}
.y3c{bottom:572.480000pt;}
.y148{bottom:572.800000pt;}
.y159{bottom:575.360000pt;}
.y58{bottom:579.200000pt;}
.yc{bottom:581.826667pt;}
.yd7{bottom:585.333333pt;}
.y113{bottom:585.600000pt;}
.y1c0{bottom:585.920000pt;}
.y83{bottom:586.666667pt;}
.y23{bottom:589.760000pt;}
.y16a{bottom:593.920000pt;}
.y184{bottom:596.160000pt;}
.y1b1{bottom:597.440000pt;}
.ya5{bottom:598.720000pt;}
.yae{bottom:599.040000pt;}
.y3b{bottom:600.000000pt;}
.y81{bottom:604.000000pt;}
.y57{bottom:607.680000pt;}
.yb{bottom:609.373333pt;}
.y112{bottom:613.440000pt;}
.y22{bottom:617.280000pt;}
.y146{bottom:617.920000pt;}
.y74{bottom:621.333333pt;}
.y183{bottom:623.680000pt;}
.yd6{bottom:624.000000pt;}
.y1b0{bottom:624.960000pt;}
.y147{bottom:626.240000pt;}
.yad{bottom:626.560000pt;}
.yf4{bottom:627.520000pt;}
.y169{bottom:634.880000pt;}
.y56{bottom:635.520000pt;}
.ya{bottom:637.053333pt;}
.y3a{bottom:640.960000pt;}
.y7b{bottom:642.666667pt;}
.y21{bottom:645.120000pt;}
.y165{bottom:650.666667pt;}
.y1af{bottom:652.800000pt;}
.y182{bottom:653.760000pt;}
.yac{bottom:654.080000pt;}
.yf3{bottom:655.040000pt;}
.yd3{bottom:661.333333pt;}
.y79{bottom:664.000000pt;}
.y145{bottom:665.280000pt;}
.y9{bottom:668.413333pt;}
.y111{bottom:668.480000pt;}
.y39{bottom:668.800000pt;}
.y20{bottom:672.640000pt;}
.y55{bottom:677.440000pt;}
.y1ae{bottom:680.320000pt;}
.yd2{bottom:681.333333pt;}
.ya4{bottom:681.920000pt;}
.yf2{bottom:682.880000pt;}
.y77{bottom:684.000000pt;}
.y163{bottom:689.333333pt;}
.y144{bottom:694.080000pt;}
.y12e{bottom:696.000000pt;}
.y38{bottom:696.320000pt;}
.y1f{bottom:700.160000pt;}
.yd1{bottom:701.333333pt;}
.y8{bottom:701.373333pt;}
.y72{bottom:704.000000pt;}
.y54{bottom:707.520000pt;}
.y1ad{bottom:707.840000pt;}
.ya3{bottom:709.440000pt;}
.yf1{bottom:710.400000pt;}
.ycf{bottom:720.000000pt;}
.y12d{bottom:723.520000pt;}
.y37{bottom:723.840000pt;}
.y161{bottom:725.333333pt;}
.y1e{bottom:727.680000pt;}
.y7{bottom:731.933333pt;}
.y143{bottom:734.400000pt;}
.y1ac{bottom:735.360000pt;}
.ya2{bottom:736.960000pt;}
.yf0{bottom:737.920000pt;}
.y71{bottom:738.240000pt;}
.ycd{bottom:740.000000pt;}
.y142{bottom:742.400000pt;}
.y53{bottom:744.320000pt;}
.y36{bottom:751.360000pt;}
.y1d{bottom:755.520000pt;}
.ycb{bottom:758.666667pt;}
.y6{bottom:762.493333pt;}
.y1ab{bottom:763.200000pt;}
.y15e{bottom:764.000000pt;}
.y70{bottom:764.480000pt;}
.y10c{bottom:765.440000pt;}
.yc9{bottom:777.333333pt;}
.yef{bottom:778.880000pt;}
.y35{bottom:779.200000pt;}
.y1c{bottom:783.040000pt;}
.y141{bottom:790.400000pt;}
.y1aa{bottom:790.720000pt;}
.y6f{bottom:792.320000pt;}
.y5{bottom:792.893333pt;}
.y52{bottom:793.280000pt;}
.yc5{bottom:796.000000pt;}
.yee{bottom:806.400000pt;}
.y34{bottom:806.720000pt;}
.y15d{bottom:808.000000pt;}
.y1b{bottom:810.560000pt;}
.y140{bottom:817.920000pt;}
.y1a9{bottom:818.240000pt;}
.y6e{bottom:819.840000pt;}
.y10b{bottom:820.800000pt;}
.y4{bottom:824.133333pt;}
.y51{bottom:833.920000pt;}
.y33{bottom:834.240000pt;}
.y1a{bottom:838.080000pt;}
.y13f{bottom:845.760000pt;}
.y6d{bottom:847.360000pt;}
.yc4{bottom:847.680000pt;}
.y10a{bottom:848.320000pt;}
.y3{bottom:850.053333pt;}
.y32{bottom:861.760000pt;}
.y19{bottom:865.920000pt;}
.y1a8{bottom:873.280000pt;}
.yc3{bottom:873.920000pt;}
.y6c{bottom:874.880000pt;}
.y109{bottom:875.840000pt;}
.y31{bottom:889.280000pt;}
.y18{bottom:893.440000pt;}
.y1a7{bottom:901.120000pt;}
.yc2{bottom:901.760000pt;}
.y6b{bottom:902.720000pt;}
.y17{bottom:916.160000pt;}
.y50{bottom:916.800000pt;}
.y30{bottom:917.120000pt;}
.yc1{bottom:929.280000pt;}
.y6a{bottom:930.240000pt;}
.y16{bottom:931.520000pt;}
.y1a6{bottom:936.320000pt;}
.y4f{bottom:944.320000pt;}
.y2f{bottom:944.640000pt;}
.y15{bottom:946.880000pt;}
.y158{bottom:953.920000pt;}
.yc0{bottom:956.800000pt;}
.y69{bottom:957.760000pt;}
.y14{bottom:962.240000pt;}
.y2e{bottom:972.160000pt;}
.y13{bottom:973.440000pt;}
.y157{bottom:981.760000pt;}
.y2{bottom:984.133333pt;}
.y4e{bottom:985.280000pt;}
.y12{bottom:992.000000pt;}
.ybf{bottom:997.120000pt;}
.ybe{bottom:1005.120000pt;}
.y2d{bottom:1007.680000pt;}
.y11{bottom:1010.880000pt;}
.y156{bottom:1011.840000pt;}
.y4d{bottom:1013.120000pt;}
.y1{bottom:1014.213333pt;}
.h16{height:17.333333pt;}
.h13{height:18.666667pt;}
.h14{height:20.000000pt;}
.he{height:21.333333pt;}
.h11{height:22.666667pt;}
.h9{height:23.996250pt;}
.h1f{height:37.333333pt;}
.h1b{height:38.666667pt;}
.h19{height:39.856250pt;}
.hf{height:39.905000pt;}
.h20{height:40.000000pt;}
.hd{height:40.882500pt;}
.ha{height:43.375000pt;}
.h17{height:44.437500pt;}
.h6{height:44.468750pt;}
.h1a{height:45.156250pt;}
.hc{height:48.465000pt;}
.h15{height:49.405000pt;}
.h21{height:50.093750pt;}
.h7{height:50.315000pt;}
.h8{height:51.088750pt;}
.h12{height:53.333333pt;}
.h1e{height:57.956250pt;}
.h2{height:58.563750pt;}
.hb{height:60.132500pt;}
.h3{height:66.750000pt;}
.h5{height:74.477812pt;}
.h1c{height:76.976250pt;}
.h4{height:78.097500pt;}
.h18{height:82.096250pt;}
.h10{height:84.000000pt;}
.h1d{height:89.956250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:48.000000pt;}
.w12{width:49.333333pt;}
.w14{width:54.666667pt;}
.wb{width:56.000000pt;}
.wc{width:57.333333pt;}
.w15{width:62.666667pt;}
.wd{width:66.666667pt;}
.wf{width:68.000000pt;}
.w16{width:74.666667pt;}
.we{width:76.000000pt;}
.w17{width:80.000000pt;}
.w6{width:88.000000pt;}
.w7{width:106.666667pt;}
.w11{width:112.000000pt;}
.w9{width:113.333333pt;}
.wa{width:125.333333pt;}
.w8{width:126.666667pt;}
.w10{width:142.666667pt;}
.w5{width:237.333333pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.453461pt;}
.x1c{left:7.733397pt;}
.x5c{left:9.524405pt;}
.x5a{left:11.066741pt;}
.x30{left:12.643883pt;}
.x36{left:13.663360pt;}
.x3c{left:14.566827pt;}
.x3b{left:16.113173pt;}
.x40{left:17.383573pt;}
.x32{left:19.102859pt;}
.x3f{left:20.258453pt;}
.x38{left:21.446613pt;}
.x35{left:23.640000pt;}
.x29{left:25.559893pt;}
.x5b{left:26.706773pt;}
.x16{left:27.998293pt;}
.x24{left:29.226453pt;}
.x1d{left:31.060053pt;}
.x26{left:32.893333pt;}
.x3d{left:33.809173pt;}
.x22{left:34.726613pt;}
.x23{left:37.026667pt;}
.x18{left:38.036587pt;}
.x1e{left:40.693227pt;}
.x27{left:42.526827pt;}
.x20{left:44.360107pt;}
.x1a{left:47.205120pt;}
.x25{left:48.433280pt;}
.x1f{left:50.266560pt;}
.x28{left:52.099840pt;}
.x21{left:53.933440pt;}
.x3e{left:70.473173pt;}
.x53{left:112.000000pt;}
.x1{left:113.471988pt;}
.x4f{left:115.398784pt;}
.x4{left:119.711988pt;}
.x5d{left:123.173504pt;}
.xe{left:129.264000pt;}
.xa{left:131.672864pt;}
.x2f{left:133.333333pt;}
.x12{left:136.640000pt;}
.x8{left:142.746655pt;}
.x51{left:144.661440pt;}
.x63{left:146.822592pt;}
.x65{left:151.080064pt;}
.x5e{left:158.615552pt;}
.x11{left:161.279936pt;}
.x61{left:165.022784pt;}
.x52{left:167.062496pt;}
.x46{left:176.476224pt;}
.x48{left:181.976224pt;}
.x42{left:182.993152pt;}
.xd{left:184.497408pt;}
.x49{left:188.346336pt;}
.x31{left:189.333333pt;}
.x4a{left:198.346688pt;}
.x6{left:199.706655pt;}
.x2{left:204.346655pt;}
.x4c{left:208.052416pt;}
.x4b{left:220.250656pt;}
.xb{left:222.901376pt;}
.x5f{left:224.902016pt;}
.x33{left:245.333333pt;}
.xf{left:246.731104pt;}
.x13{left:251.993824pt;}
.x1b{left:254.666667pt;}
.x54{left:270.666667pt;}
.x60{left:275.941728pt;}
.x2b{left:278.852224pt;}
.x10{left:287.900064pt;}
.x5{left:306.626655pt;}
.x34{left:312.000000pt;}
.x2e{left:317.793312pt;}
.x3{left:328.866655pt;}
.x64{left:339.435520pt;}
.x2c{left:356.439680pt;}
.x50{left:369.730880pt;}
.x55{left:372.000000pt;}
.x15{left:378.666667pt;}
.x37{left:386.666667pt;}
.x7{left:396.866655pt;}
.x4d{left:398.557760pt;}
.x2d{left:404.548800pt;}
.xc{left:406.179840pt;}
.x56{left:418.666667pt;}
.x39{left:453.333333pt;}
.x17{left:465.333333pt;}
.x57{left:481.333333pt;}
.x3a{left:510.666667pt;}
.x58{left:554.666667pt;}
.x19{left:572.000000pt;}
.x4e{left:579.200000pt;}
.x62{left:614.499840pt;}
.x59{left:622.666667pt;}
.x43{left:629.059840pt;}
.x2a{left:650.499840pt;}
.x47{left:663.459840pt;}
.x44{left:683.079680pt;}
.x9{left:691.079680pt;}
.x41{left:693.059840pt;}
.x45{left:699.200000pt;}
}

