
    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_a7436f36eb5bf6ea067cead1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935065;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_33d089393fc5f8ebd26f89cd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.094000;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_0289daf11111014383a036eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_9136f3f1ec9c7f89399b2906.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7bd4f21db0e6f581685e26f3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.475000;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_816abd4b77bf5a56c3217e74.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9b601f6c0a640edc511e342a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c4c3396decbccf090bbcf0be.woff')format("woff");}.ff8{font-family:ff8;line-height:0.743000;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_d418e1972d38d9cd681cddb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944000;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_504edaa23cc5369731af4cf2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_56c1cf8926b6e58f7aa76c82.woff')format("woff");}.ffb{font-family:ffb;line-height:0.723000;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_b1fe92a39977bf20377e4b2f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.893000;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_cd735121be59dda1d6bc6bb4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.878000;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_682eb98d254b3bd28edf7a46.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999000;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_b58f8f48ddd78988d4970625.woff')format("woff");}.fff{font-family:fff;line-height:0.612000;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_fcf36377f5bc8aedf243759d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.041000;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_fce3e97cc40de4ee43f86f61.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f8792c0b075811a6719dd9f9.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722000;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_20b3cc09c8b434d03ab22db9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.651000;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;}
.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);}
.m4{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);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.vf{vertical-align:-28.901400px;}
.v9{vertical-align:-23.987400px;}
.v10{vertical-align:-22.908000px;}
.va{vertical-align:-17.994000px;}
.v2{vertical-align:-16.323900px;}
.v8{vertical-align:-13.986000px;}
.v13{vertical-align:-8.844000px;}
.v1{vertical-align:-7.820100px;}
.vb{vertical-align:-5.994000px;}
.ve{vertical-align:-4.914000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:11.566800px;}
.vc{vertical-align:12.984000px;}
.vd{vertical-align:23.790000px;}
.v5{vertical-align:25.176000px;}
.v7{vertical-align:27.552600px;}
.v4{vertical-align:34.020600px;}
.v6{vertical-align:35.037000px;}
.v11{vertical-align:37.755300px;}
.v3{vertical-align:41.503800px;}
.ls39{letter-spacing:-0.010200px;}
.ls40{letter-spacing:-0.007200px;}
.ls3f{letter-spacing:-0.004800px;}
.ls3b{letter-spacing:-0.002400px;}
.ls38{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000600px;}
.lsf{letter-spacing:0.003900px;}
.ls51{letter-spacing:0.004500px;}
.ls0{letter-spacing:0.005100px;}
.ls4f{letter-spacing:0.008400px;}
.ls1{letter-spacing:0.010200px;}
.ls1b{letter-spacing:0.021420px;}
.ls53{letter-spacing:0.038400px;}
.ls47{letter-spacing:0.051000px;}
.ls26{letter-spacing:0.080400px;}
.ls2{letter-spacing:0.081600px;}
.lsb{letter-spacing:0.082800px;}
.ls19{letter-spacing:0.117300px;}
.ls2f{letter-spacing:0.147900px;}
.ls32{letter-spacing:0.149100px;}
.ls2d{letter-spacing:0.150000px;}
.ls4b{letter-spacing:0.150600px;}
.ls7{letter-spacing:0.151200px;}
.ls13{letter-spacing:0.153598px;}
.ls2b{letter-spacing:0.153900px;}
.ls5{letter-spacing:0.154200px;}
.ls49{letter-spacing:0.155100px;}
.ls2c{letter-spacing:0.156000px;}
.ls17{letter-spacing:0.156900px;}
.ls16{letter-spacing:0.163200px;}
.ls15{letter-spacing:0.178500px;}
.ls55{letter-spacing:0.191998px;}
.ls3{letter-spacing:0.244800px;}
.ls1f{letter-spacing:0.245400px;}
.ls9{letter-spacing:0.246000px;}
.ls24{letter-spacing:0.285600px;}
.ls1d{letter-spacing:0.906765px;}
.ls41{letter-spacing:1.074600px;}
.ls42{letter-spacing:1.614600px;}
.ls11{letter-spacing:1.617000px;}
.ls43{letter-spacing:2.165400px;}
.ls33{letter-spacing:4.668600px;}
.ls36{letter-spacing:4.671900px;}
.ls48{letter-spacing:5.008800px;}
.ls1c{letter-spacing:6.043908px;}
.ls1a{letter-spacing:8.409900px;}
.ls29{letter-spacing:10.118400px;}
.ls28{letter-spacing:10.123500px;}
.ls4e{letter-spacing:10.322400px;}
.ls23{letter-spacing:11.179200px;}
.ls2e{letter-spacing:11.194500px;}
.ls21{letter-spacing:11.520900px;}
.ls4a{letter-spacing:11.531100px;}
.ls2a{letter-spacing:13.045800px;}
.ls54{letter-spacing:13.171035px;}
.ls1e{letter-spacing:13.651110px;}
.ls6{letter-spacing:13.912800px;}
.ls46{letter-spacing:14.254200px;}
.ls31{letter-spacing:14.254500px;}
.ls22{letter-spacing:16.105800px;}
.ls4c{letter-spacing:16.151700px;}
.ls4d{letter-spacing:16.447500px;}
.ls52{letter-spacing:16.574193px;}
.ls4{letter-spacing:17.253300px;}
.ls20{letter-spacing:17.605200px;}
.ls45{letter-spacing:19.435162px;}
.ls8{letter-spacing:19.696200px;}
.ls18{letter-spacing:19.696800px;}
.ls14{letter-spacing:20.527500px;}
.ls50{letter-spacing:22.400701px;}
.ls56{letter-spacing:23.716504px;}
.ls44{letter-spacing:26.992800px;}
.ls3e{letter-spacing:26.995200px;}
.ls3a{letter-spacing:26.997600px;}
.ls3d{letter-spacing:27.000000px;}
.ls3c{letter-spacing:27.004800px;}
.lsa{letter-spacing:28.621200px;}
.ls34{letter-spacing:30.324600px;}
.lsd{letter-spacing:30.732600px;}
.ls25{letter-spacing:34.404600px;}
.ls37{letter-spacing:34.777500px;}
.ls57{letter-spacing:37.660329px;}
.ls30{letter-spacing:111.924600px;}
.ls10{letter-spacing:281.179200px;}
.ls27{letter-spacing:321.835162px;}
.ls35{letter-spacing:386.804962px;}
.ls12{letter-spacing:395.421600px;}
.lsc{letter-spacing:460.279762px;}
.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;}
}
.ws59{word-spacing:-11.676000px;}
.ws58{word-spacing:-11.408953px;}
.ws5c{word-spacing:-10.842000px;}
.ws5a{word-spacing:-8.757000px;}
.ws5e{word-spacing:-8.580600px;}
.ws5d{word-spacing:-7.506000px;}
.ws8a{word-spacing:-3.240000px;}
.ws87{word-spacing:-2.880000px;}
.ws86{word-spacing:-2.877600px;}
.ws88{word-spacing:-2.875200px;}
.ws89{word-spacing:-2.872800px;}
.ws84{word-spacing:-0.054000px;}
.ws31{word-spacing:-0.051000px;}
.ws60{word-spacing:-0.047999px;}
.ws10{word-spacing:-0.044999px;}
.ws5b{word-spacing:-0.039000px;}
.ws45{word-spacing:-0.035699px;}
.ws85{word-spacing:0.000000px;}
.ws46{word-spacing:6.273900px;}
.ws7a{word-spacing:6.614100px;}
.wsb4{word-spacing:8.328481px;}
.ws12{word-spacing:9.629872px;}
.wsa9{word-spacing:10.067400px;}
.wsd8{word-spacing:10.251000px;}
.wsba{word-spacing:10.340252px;}
.wsc3{word-spacing:10.353000px;}
.wsc4{word-spacing:10.449900px;}
.wsb9{word-spacing:10.592249px;}
.wsb3{word-spacing:10.726647px;}
.wsd0{word-spacing:10.781856px;}
.wsb2{word-spacing:10.823245px;}
.wsc5{word-spacing:10.939500px;}
.ws3f{word-spacing:11.021100px;}
.wseb{word-spacing:11.049462px;}
.wsa8{word-spacing:11.092500px;}
.ws67{word-spacing:11.128200px;}
.wscb{word-spacing:11.337300px;}
.wsec{word-spacing:11.337458px;}
.ws2e{word-spacing:11.362800px;}
.wsed{word-spacing:11.447857px;}
.wsf{word-spacing:11.681844px;}
.wsc6{word-spacing:11.689200px;}
.wsc2{word-spacing:11.704500px;}
.wse7{word-spacing:11.822252px;}
.wse{word-spacing:11.942841px;}
.ws69{word-spacing:12.020700px;}
.ws11{word-spacing:12.109339px;}
.ws17{word-spacing:12.326700px;}
.wsd4{word-spacing:12.342000px;}
.ws72{word-spacing:12.362400px;}
.wsc7{word-spacing:12.546000px;}
.ws41{word-spacing:12.561300px;}
.wsb8{word-spacing:12.637619px;}
.ws1a{word-spacing:12.642900px;}
.ws73{word-spacing:12.709200px;}
.wsf0{word-spacing:12.710241px;}
.wsee{word-spacing:12.734241px;}
.wsb6{word-spacing:12.776217px;}
.wsb5{word-spacing:12.826617px;}
.ws6c{word-spacing:12.862200px;}
.wsaa{word-spacing:12.877500px;}
.ws2f{word-spacing:12.887700px;}
.ws70{word-spacing:12.897900px;}
.wsd{word-spacing:12.991327px;}
.ws40{word-spacing:13.040700px;}
.ws7{word-spacing:13.171324px;}
.ws6a{word-spacing:13.229400px;}
.wsef{word-spacing:13.425432px;}
.wsf1{word-spacing:13.463832px;}
.wsd1{word-spacing:13.481820px;}
.ws15{word-spacing:13.486320px;}
.wsd3{word-spacing:13.499700px;}
.wsa4{word-spacing:13.566000px;}
.ws23{word-spacing:13.637400px;}
.wsc8{word-spacing:13.688400px;}
.wsc{word-spacing:13.702317px;}
.ws3e{word-spacing:13.719000px;}
.ws92{word-spacing:13.734300px;}
.ws3d{word-spacing:13.933200px;}
.wsce{word-spacing:14.030813px;}
.wsad{word-spacing:14.183823px;}
.wscf{word-spacing:14.242310px;}
.ws6f{word-spacing:14.303400px;}
.ws4a{word-spacing:14.304000px;}
.wsae{word-spacing:14.356621px;}
.wse9{word-spacing:14.409420px;}
.wsff{word-spacing:14.414220px;}
.wse2{word-spacing:14.422800px;}
.wsf2{word-spacing:14.447819px;}
.wsea{word-spacing:14.491019px;}
.ws101{word-spacing:14.510219px;}
.wscc{word-spacing:14.524618px;}
.ws19{word-spacing:14.565600px;}
.wsc1{word-spacing:14.586000px;}
.wse8{word-spacing:14.596618px;}
.wsfc{word-spacing:14.663817px;}
.wsfd{word-spacing:14.678217px;}
.wse5{word-spacing:14.769415px;}
.ws62{word-spacing:14.779015px;}
.wscd{word-spacing:14.812615px;}
.ws8f{word-spacing:14.861400px;}
.wsaf{word-spacing:14.889414px;}
.ws2d{word-spacing:14.927700px;}
.ws90{word-spacing:15.198000px;}
.ws3c{word-spacing:15.269400px;}
.ws8c{word-spacing:15.279600px;}
.wse0{word-spacing:15.325500px;}
.ws76{word-spacing:15.340800px;}
.wsa1{word-spacing:15.376500px;}
.ws93{word-spacing:15.417300px;}
.ws80{word-spacing:15.514200px;}
.ws74{word-spacing:15.595800px;}
.ws30{word-spacing:15.611100px;}
.wsbe{word-spacing:15.621300px;}
.wse1{word-spacing:15.636600px;}
.wsa5{word-spacing:15.743700px;}
.ws9{word-spacing:15.763290px;}
.ws55{word-spacing:15.764100px;}
.ws6e{word-spacing:15.774300px;}
.ws8b{word-spacing:15.784500px;}
.ws6d{word-spacing:15.855900px;}
.ws1e{word-spacing:15.937500px;}
.ws48{word-spacing:15.947700px;}
.ws9e{word-spacing:15.963000px;}
.ws1d{word-spacing:16.131300px;}
.wsfe{word-spacing:16.142198px;}
.wsb1{word-spacing:16.162200px;}
.ws37{word-spacing:16.289400px;}
.wsa{word-spacing:16.307783px;}
.ws3b{word-spacing:16.422000px;}
.ws2a{word-spacing:16.442400px;}
.wsd9{word-spacing:16.462800px;}
.wsa6{word-spacing:16.478100px;}
.ws1b{word-spacing:16.631100px;}
.wsda{word-spacing:16.641300px;}
.wsb0{word-spacing:16.659000px;}
.wse6{word-spacing:16.742191px;}
.ws44{word-spacing:16.819800px;}
.wsf8{word-spacing:17.068587px;}
.wsf9{word-spacing:17.082986px;}
.wsbd{word-spacing:17.090100px;}
.ws26{word-spacing:17.120700px;}
.wsa0{word-spacing:17.146200px;}
.ws25{word-spacing:17.217600px;}
.ws43{word-spacing:17.309400px;}
.ws100{word-spacing:17.380583px;}
.wsf3{word-spacing:17.457382px;}
.ws47{word-spacing:17.472600px;}
.ws7f{word-spacing:17.569500px;}
.ws2b{word-spacing:17.651100px;}
.ws7e{word-spacing:17.661300px;}
.ws68{word-spacing:17.676600px;}
.ws1c{word-spacing:17.702100px;}
.ws71{word-spacing:17.870400px;}
.ws24{word-spacing:17.895900px;}
.ws7d{word-spacing:17.987700px;}
.wsdc{word-spacing:18.003000px;}
.ws96{word-spacing:18.013200px;}
.ws5{word-spacing:18.058259px;}
.ws7c{word-spacing:18.110100px;}
.ws1f{word-spacing:18.354900px;}
.ws42{word-spacing:18.436500px;}
.ws3{word-spacing:18.450184px;}
.ws4e{word-spacing:18.518100px;}
.ws4{word-spacing:18.732187px;}
.ws13{word-spacing:18.769250px;}
.ws6{word-spacing:18.782750px;}
.ws4f{word-spacing:18.834300px;}
.ws35{word-spacing:18.997500px;}
.ws77{word-spacing:19.012800px;}
.ws8e{word-spacing:19.036238px;}
.ws9b{word-spacing:19.130100px;}
.ws6b{word-spacing:19.200300px;}
.ws39{word-spacing:19.441200px;}
.ws51{word-spacing:19.446300px;}
.ws50{word-spacing:19.502400px;}
.ws38{word-spacing:19.527900px;}
.ws18{word-spacing:19.553400px;}
.ws3a{word-spacing:19.584000px;}
.ws54{word-spacing:19.619700px;}
.ws9a{word-spacing:19.854300px;}
.ws22{word-spacing:20.017500px;}
.ws99{word-spacing:20.032800px;}
.ws8d{word-spacing:20.046000px;}
.ws64{word-spacing:20.180700px;}
.ws53{word-spacing:20.231700px;}
.wsdf{word-spacing:20.338800px;}
.ws63{word-spacing:20.343900px;}
.wsbf{word-spacing:20.435700px;}
.ws65{word-spacing:20.522400px;}
.ws91{word-spacing:20.560500px;}
.ws79{word-spacing:20.711100px;}
.ws78{word-spacing:20.884500px;}
.ws49{word-spacing:20.900700px;}
.wsbb{word-spacing:21.185400px;}
.wsa3{word-spacing:21.200700px;}
.ws4d{word-spacing:21.379200px;}
.ws4b{word-spacing:21.404700px;}
.wsa2{word-spacing:21.445500px;}
.wsa7{word-spacing:21.567900px;}
.wsbc{word-spacing:21.756600px;}
.ws14{word-spacing:21.950707px;}
.ws66{word-spacing:22.236000px;}
.wsd6{word-spacing:22.414500px;}
.wsac{word-spacing:22.424700px;}
.ws75{word-spacing:22.941900px;}
.ws98{word-spacing:23.281500px;}
.ws8{word-spacing:23.422188px;}
.wsf4{word-spacing:23.505306px;}
.wsf6{word-spacing:23.591705px;}
.wsf5{word-spacing:23.630105px;}
.wsf7{word-spacing:23.668504px;}
.ws9f{word-spacing:23.771100px;}
.ws61{word-spacing:23.841302px;}
.ws5f{word-spacing:23.913301px;}
.ws0{word-spacing:23.928992px;}
.ws1{word-spacing:23.942792px;}
.ws20{word-spacing:23.949600px;}
.ws2{word-spacing:24.018691px;}
.ws27{word-spacing:24.327000px;}
.wsca{word-spacing:24.454500px;}
.ws81{word-spacing:24.464700px;}
.ws7b{word-spacing:24.791100px;}
.wse3{word-spacing:24.903300px;}
.wse4{word-spacing:24.969600px;}
.ws32{word-spacing:25.122600px;}
.ws21{word-spacing:25.474500px;}
.wsdb{word-spacing:25.678500px;}
.ws16{word-spacing:25.739700px;}
.ws9c{word-spacing:25.760100px;}
.ws52{word-spacing:25.816200px;}
.wsd2{word-spacing:25.846800px;}
.ws9d{word-spacing:25.979400px;}
.ws34{word-spacing:26.249700px;}
.wsd5{word-spacing:26.540400px;}
.wsdd{word-spacing:26.968800px;}
.ws82{word-spacing:27.172800px;}
.ws95{word-spacing:27.514500px;}
.ws28{word-spacing:27.596100px;}
.wsc0{word-spacing:28.101000px;}
.ws94{word-spacing:28.233600px;}
.ws4c{word-spacing:28.383900px;}
.ws2c{word-spacing:28.616100px;}
.ws56{word-spacing:30.248100px;}
.ws57{word-spacing:30.763200px;}
.ws36{word-spacing:31.069200px;}
.wsc9{word-spacing:31.910700px;}
.ws97{word-spacing:31.936200px;}
.wsd7{word-spacing:34.389300px;}
.ws33{word-spacing:34.425000px;}
.wsab{word-spacing:35.001300px;}
.wsb{word-spacing:36.098519px;}
.wsfb{word-spacing:36.988338px;}
.wsfa{word-spacing:37.223535px;}
.ws29{word-spacing:38.464200px;}
.wsde{word-spacing:82.222200px;}
.wsb7{word-spacing:530.843016px;}
.ws83{word-spacing:1706.815800px;}
._13{margin-left:-373.289260px;}
._26{margin-left:-4.820944px;}
._16{margin-left:-3.439800px;}
._4{margin-left:-1.592979px;}
._5{width:1.160985px;}
._17{width:2.376062px;}
._14{width:3.787200px;}
._19{width:5.459398px;}
._18{width:6.598800px;}
._1b{width:10.123500px;}
._7{width:11.146351px;}
._8{width:13.000327px;}
._2{width:14.341309px;}
._c{width:15.391582px;}
._a{width:16.432200px;}
._1{width:17.689264px;}
._15{width:18.972000px;}
._0{width:20.004200px;}
._b{width:21.414900px;}
._9{width:23.192691px;}
._3{width:24.547173px;}
._d{width:26.040600px;}
._1a{width:27.534900px;}
._e{width:28.789500px;}
._f{width:29.835000px;}
._12{width:32.191200px;}
._11{width:33.714321px;}
._10{width:34.895979px;}
._1c{width:36.057496px;}
._6{width:37.178504px;}
._25{width:47.773803px;}
._1d{width:185.193356px;}
._24{width:308.349372px;}
._23{width:317.589551px;}
._22{width:318.671938px;}
._21{width:346.058256px;}
._1e{width:366.032834px;}
._1f{width:429.438153px;}
._20{width:504.622791px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:13.500000px;}
.fs8{font-size:24.000000px;}
.fs6{font-size:25.500000px;}
.fsb{font-size:27.000000px;}
.fsf{font-size:29.250000px;}
.fs10{font-size:30.000000px;}
.fsa{font-size:31.500000px;}
.fsd{font-size:33.000000px;}
.fs4{font-size:33.995400px;}
.fs12{font-size:34.320600px;}
.fs5{font-size:35.699400px;}
.fse{font-size:39.000000px;}
.fs7{font-size:41.039400px;}
.fs15{font-size:41.999400px;}
.fs9{font-size:42.000000px;}
.fs2{font-size:44.999400px;}
.fs13{font-size:47.999400px;}
.fs11{font-size:48.048600px;}
.fs3{font-size:51.000000px;}
.fs14{font-size:54.000000px;}
.fs1{font-size:60.000600px;}
.fs0{font-size:68.999400px;}
.y0{bottom:0.000000px;}
.y8e{bottom:14.796450px;}
.y8d{bottom:29.083500px;}
.y8c{bottom:86.655525px;}
.y4c{bottom:86.655975px;}
.yd1{bottom:90.138075px;}
.y106{bottom:90.224550px;}
.y4b{bottom:101.707350px;}
.y105{bottom:103.745981px;}
.yd0{bottom:105.105300px;}
.y89{bottom:112.762200px;}
.y4a{bottom:116.674575px;}
.y104{bottom:117.182213px;}
.ycf{bottom:120.156675px;}
.y48{bottom:129.600000px;}
.y88{bottom:130.110150px;}
.y8b{bottom:130.620525px;}
.y103{bottom:130.703644px;}
.y47{bottom:131.724600px;}
.y49{bottom:131.725950px;}
.y8a{bottom:133.426800px;}
.yce{bottom:135.123900px;}
.y102{bottom:144.225075px;}
.y46{bottom:146.691825px;}
.ycd{bottom:150.176550px;}
.y101{bottom:157.746506px;}
.y87{bottom:160.469775px;}
.y45{bottom:161.659050px;}
.ycc{bottom:165.143775px;}
.y100{bottom:171.182738px;}
.y85{bottom:173.395350px;}
.y43{bottom:174.585750px;}
.y84{bottom:175.520700px;}
.y86{bottom:175.521150px;}
.y42{bottom:176.711475px;}
.y44{bottom:176.711700px;}
.ycb{bottom:180.111000px;}
.yff{bottom:184.704169px;}
.y83{bottom:190.487925px;}
.y41{bottom:191.678400px;}
.yca{bottom:195.163650px;}
.yfe{bottom:198.225600px;}
.y82{bottom:205.454700px;}
.yc9{bottom:210.130875px;}
.yfd{bottom:211.747031px;}
.y40{bottom:213.363750px;}
.y81{bottom:220.506075px;}
.y3f{bottom:222.121650px;}
.yfc{bottom:225.183263px;}
.yc8{bottom:225.183525px;}
.y80{bottom:235.473300px;}
.yfb{bottom:238.704694px;}
.yc7{bottom:240.150750px;}
.y7f{bottom:250.525725px;}
.yfa{bottom:252.226125px;}
.yc6{bottom:255.117975px;}
.y3e{bottom:255.967800px;}
.y7d{bottom:263.366850px;}
.y7c{bottom:265.492125px;}
.y7e{bottom:265.492950px;}
.yf9{bottom:265.747556px;}
.yc5{bottom:270.169350px;}
.y3d{bottom:271.019475px;}
.yf8{bottom:279.183788px;}
.y7b{bottom:280.459350px;}
.yc4{bottom:285.136575px;}
.y3c{bottom:285.986700px;}
.yf7{bottom:292.705219px;}
.y7a{bottom:295.512000px;}
.y3a{bottom:298.913250px;}
.yc3{bottom:300.103800px;}
.y39{bottom:301.030725px;}
.y3b{bottom:301.039350px;}
.yf6{bottom:306.226650px;}
.y38{bottom:315.997950px;}
.y79{bottom:324.085050px;}
.yf5{bottom:327.226650px;}
.y37{bottom:330.965175px;}
.y78{bottom:332.843700px;}
.yc2{bottom:344.497575px;}
.y36{bottom:346.017825px;}
.yf4{bottom:357.245250px;}
.yc1{bottom:360.229500px;}
.y35{bottom:360.985050px;}
.y77{bottom:372.131550px;}
.y34{bottom:375.952275px;}
.yc0{bottom:375.961426px;}
.yf3{bottom:376.719600px;}
.y76{bottom:387.183150px;}
.y33{bottom:391.003650px;}
.yf2{bottom:391.686825px;}
.ybf{bottom:391.778400px;}
.y75{bottom:402.150375px;}
.y32{bottom:405.970875px;}
.yf1{bottom:406.739475px;}
.ybe{bottom:407.510325px;}
.y74{bottom:417.117600px;}
.y31{bottom:421.023525px;}
.ybd{bottom:423.242250px;}
.yf0{bottom:426.213825px;}
.y73{bottom:432.170250px;}
.y30{bottom:435.990750px;}
.ybc{bottom:438.974175px;}
.yef{bottom:441.181050px;}
.y72{bottom:447.137475px;}
.y2f{bottom:450.957975px;}
.ybb{bottom:454.706101px;}
.yee{bottom:456.232425px;}
.y71{bottom:462.188850px;}
.y2e{bottom:466.009350px;}
.yba{bottom:470.523075px;}
.yed{bottom:471.199650px;}
.y2d{bottom:480.976575px;}
.yb9{bottom:486.255000px;}
.y70{bottom:497.224969px;}
.yb8{bottom:506.579400px;}
.yec{bottom:507.171225px;}
.y6f{bottom:510.746400px;}
.y2c{bottom:511.505175px;}
.yeb{bottom:522.222600px;}
.y2b{bottom:526.557825px;}
.yb7{bottom:536.598169px;}
.yea{bottom:537.189825px;}
.y2a{bottom:541.525050px;}
.yb6{bottom:550.119600px;}
.ye9{bottom:552.241200px;}
.y29{bottom:556.577700px;}
.ye8{bottom:567.208425px;}
.y28{bottom:571.544925px;}
.ye7{bottom:582.175650px;}
.y69{bottom:585.024300px;}
.y27{bottom:586.512150px;}
.y6b{bottom:586.962321px;}
.y67{bottom:588.528300px;}
.y66{bottom:588.825300px;}
.y64{bottom:591.308100px;}
.y68{bottom:592.986300px;}
.y6a{bottom:596.070150px;}
.y26{bottom:601.564800px;}
.y6c{bottom:610.413150px;}
.ye6{bottom:615.171375px;}
.y25{bottom:616.532025px;}
.ye5{bottom:630.222750px;}
.y6d{bottom:631.033500px;}
.y24{bottom:631.499250px;}
.ye4{bottom:645.189975px;}
.y23{bottom:646.551900px;}
.ye3{bottom:660.242625px;}
.y22{bottom:661.519125px;}
.y6e{bottom:664.390350px;}
.ye2{bottom:675.209850px;}
.y21{bottom:676.570500px;}
.y60{bottom:682.201200px;}
.ye1{bottom:690.177075px;}
.y20{bottom:691.537725px;}
.y61{bottom:698.642700px;}
.yb5{bottom:699.527400px;}
.ye0{bottom:705.229725px;}
.y1f{bottom:706.504950px;}
.yb4{bottom:714.578775px;}
.ydf{bottom:720.196950px;}
.y1e{bottom:721.556325px;}
.y62{bottom:726.484050px;}
.yb3{bottom:729.546000px;}
.y5f{bottom:730.981050px;}
.yde{bottom:735.249600px;}
.y1d{bottom:736.523550px;}
.yb2{bottom:744.598650px;}
.ydd{bottom:750.216825px;}
.y65{bottom:750.689400px;}
.y1c{bottom:751.576200px;}
.y63{bottom:751.871400px;}
.yb1{bottom:759.565875px;}
.ydc{bottom:765.184050px;}
.y1b{bottom:766.543425px;}
.yb0{bottom:774.533100px;}
.y1a{bottom:781.510650px;}
.ydb{bottom:784.744530px;}
.yaf{bottom:789.585750px;}
.y5e{bottom:792.062100px;}
.y19{bottom:796.562025px;}
.yda{bottom:796.734620px;}
.yae{bottom:804.552975px;}
.yd9{bottom:808.724710px;}
.y18{bottom:811.529250px;}
.yad{bottom:819.604350px;}
.yd8{bottom:820.714800px;}
.y17{bottom:826.581900px;}
.yac{bottom:834.571575px;}
.yd7{bottom:837.212400px;}
.y16{bottom:841.549125px;}
.y5d{bottom:841.638450px;}
.y15{bottom:856.516350px;}
.yab{bottom:864.675600px;}
.yd6{bottom:865.055250px;}
.yaa{bottom:879.642825px;}
.y14{bottom:892.744694px;}
.ya9{bottom:894.610050px;}
.y13{bottom:906.181515px;}
.ya8{bottom:909.662700px;}
.y12{bottom:919.702710px;}
.y5c{bottom:921.941250px;}
.ya7{bottom:924.629925px;}
.y5b{bottom:925.635450px;}
.y11{bottom:933.223905px;}
.ya6{bottom:939.682575px;}
.y10{bottom:946.745099px;}
.y5a{bottom:949.337250px;}
.y59{bottom:953.032050px;}
.ya5{bottom:954.649800px;}
.yf{bottom:960.180795px;}
.ya4{bottom:969.617025px;}
.ye{bottom:973.701990px;}
.ya3{bottom:984.668400px;}
.yd{bottom:987.223185px;}
.ya2{bottom:999.635625px;}
.yc{bottom:1000.744379px;}
.y58{bottom:1004.684250px;}
.y57{bottom:1008.379050px;}
.yd5{bottom:1009.321050px;}
.yb{bottom:1014.180075px;}
.ya1{bottom:1014.688275px;}
.ya{bottom:1027.701270px;}
.ya0{bottom:1029.655500px;}
.y56{bottom:1032.085050px;}
.y55{bottom:1035.779850px;}
.y9{bottom:1041.222465px;}
.y9f{bottom:1044.622725px;}
.y4e{bottom:1053.380700px;}
.y8{bottom:1054.743659px;}
.y7{bottom:1068.179355px;}
.y9d{bottom:1069.709700px;}
.y9a{bottom:1070.050200px;}
.y9c{bottom:1072.601400px;}
.y9e{bottom:1078.809300px;}
.y98{bottom:1078.809825px;}
.y6{bottom:1081.700550px;}
.y99{bottom:1087.823400px;}
.y9b{bottom:1089.184050px;}
.y54{bottom:1089.446850px;}
.y53{bottom:1093.141050px;}
.y97{bottom:1111.975125px;}
.y5{bottom:1112.058899px;}
.y52{bottom:1116.847050px;}
.y51{bottom:1120.541250px;}
.y96{bottom:1127.026050px;}
.y4{bottom:1127.111550px;}
.y95{bottom:1152.112650px;}
.y92{bottom:1152.368325px;}
.y94{bottom:1155.004350px;}
.y3{bottom:1157.044050px;}
.y91{bottom:1161.127200px;}
.yd4{bottom:1163.850000px;}
.y93{bottom:1170.226500px;}
.y2{bottom:1174.307700px;}
.y50{bottom:1175.733450px;}
.yd3{bottom:1178.817225px;}
.y4d{bottom:1181.359050px;}
.y4f{bottom:1184.617650px;}
.y1{bottom:1191.571350px;}
.y90{bottom:1191.741450px;}
.y8f{bottom:1193.867400px;}
.yd2{bottom:1193.868600px;}
.hd{height:17.688000px;}
.h14{height:22.110000px;}
.hb{height:23.592808px;}
.hf{height:24.321000px;}
.h16{height:25.294282px;}
.h10{height:28.743000px;}
.h6{height:29.847961px;}
.hc{height:30.246038px;}
.h1f{height:30.600000px;}
.he{height:30.954000px;}
.h17{height:33.311584px;}
.h27{height:34.527000px;}
.h12{height:34.541250px;}
.h13{height:34.547250px;}
.h1d{height:35.394000px;}
.h22{height:36.504000px;}
.h24{height:36.822000px;}
.h26{height:36.875473px;}
.h11{height:37.587000px;}
.h4{height:39.509473px;}
.h28{height:42.143473px;}
.h21{height:44.776500px;}
.h5{height:44.778000px;}
.h1b{height:44.778900px;}
.ha{height:44.779200px;}
.h1c{height:44.779800px;}
.h7{height:44.781900px;}
.h18{height:44.782200px;}
.h25{height:47.412000px;}
.h2{height:50.852558px;}
.h3{height:52.680527px;}
.h15{height:59.201818px;}
.h1e{height:70.089300px;}
.h23{height:70.090800px;}
.h8{height:76.897800px;}
.h20{height:79.474200px;}
.h1a{height:79.813800px;}
.h9{height:79.814400px;}
.h19{height:86.278200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x39{left:79.936950px;}
.x4c{left:85.207419px;}
.x4a{left:90.734540px;}
.x4d{left:92.692800px;}
.x2{left:101.962200px;}
.x45{left:103.832053px;}
.x4b{left:110.889002px;}
.x47{left:111.909587px;}
.x48{left:117.776903px;}
.x44{left:121.521150px;}
.x46{left:126.027686px;}
.x49{left:132.064049px;}
.x5{left:182.324025px;}
.x40{left:192.188850px;}
.x9{left:196.525950px;}
.xa{left:200.692800px;}
.x7{left:217.190550px;}
.x3b{left:219.486600px;}
.x8{left:221.357400px;}
.x3c{left:250.015050px;}
.x6{left:260.730600px;}
.x3d{left:262.006200px;}
.x41{left:266.088150px;}
.x3e{left:272.721150px;}
.x42{left:283.606200px;}
.x43{left:312.179400px;}
.x3{left:355.804650px;}
.x4{left:368.390400px;}
.x3a{left:405.382500px;}
.x3f{left:428.343150px;}
.x2a{left:449.943150px;}
.x2b{left:462.699150px;}
.x10{left:474.417150px;}
.x4e{left:475.966725px;}
.x15{left:478.817550px;}
.xc{left:479.971800px;}
.xf{left:483.301350px;}
.x38{left:487.444425px;}
.x50{left:493.908676px;}
.x1a{left:505.452600px;}
.x19{left:513.189900px;}
.x18{left:515.779800px;}
.xd{left:536.520300px;}
.xe{left:540.214500px;}
.x14{left:543.598500px;}
.x11{left:549.199800px;}
.x35{left:562.110150px;}
.x20{left:563.360550px;}
.x21{left:567.054750px;}
.x1c{left:579.900204px;}
.x1b{left:581.259300px;}
.x36{left:586.686450px;}
.x17{left:590.089050px;}
.x16{left:594.396000px;}
.xb{left:603.460500px;}
.x12{left:606.343800px;}
.x1e{left:617.949900px;}
.x2c{left:619.171500px;}
.x22{left:621.001350px;}
.x23{left:624.696150px;}
.x1f{left:630.828900px;}
.x24{left:648.313350px;}
.x25{left:652.008150px;}
.x4f{left:653.766300px;}
.x2f{left:657.013950px;}
.x30{left:668.834400px;}
.x37{left:674.617200px;}
.x13{left:682.161600px;}
.x1d{left:684.462600px;}
.x31{left:686.267550px;}
.x32{left:700.979400px;}
.x26{left:703.701150px;}
.x27{left:707.395950px;}
.x2d{left:711.013950px;}
.x2e{left:718.412400px;}
.x28{left:731.179950px;}
.x29{left:734.874750px;}
.x33{left:765.524250px;}
.x34{left:784.828200px;}
@media print{
.vf{vertical-align:-25.690133pt;}
.v9{vertical-align:-21.322133pt;}
.v10{vertical-align:-20.362667pt;}
.va{vertical-align:-15.994667pt;}
.v2{vertical-align:-14.510133pt;}
.v8{vertical-align:-12.432000pt;}
.v13{vertical-align:-7.861333pt;}
.v1{vertical-align:-6.951200pt;}
.vb{vertical-align:-5.328000pt;}
.ve{vertical-align:-4.368000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:10.281600pt;}
.vc{vertical-align:11.541333pt;}
.vd{vertical-align:21.146667pt;}
.v5{vertical-align:22.378667pt;}
.v7{vertical-align:24.491200pt;}
.v4{vertical-align:30.240533pt;}
.v6{vertical-align:31.144000pt;}
.v11{vertical-align:33.560267pt;}
.v3{vertical-align:36.892267pt;}
.ls39{letter-spacing:-0.009067pt;}
.ls40{letter-spacing:-0.006400pt;}
.ls3f{letter-spacing:-0.004267pt;}
.ls3b{letter-spacing:-0.002133pt;}
.ls38{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000533pt;}
.lsf{letter-spacing:0.003467pt;}
.ls51{letter-spacing:0.004000pt;}
.ls0{letter-spacing:0.004533pt;}
.ls4f{letter-spacing:0.007467pt;}
.ls1{letter-spacing:0.009067pt;}
.ls1b{letter-spacing:0.019040pt;}
.ls53{letter-spacing:0.034133pt;}
.ls47{letter-spacing:0.045333pt;}
.ls26{letter-spacing:0.071467pt;}
.ls2{letter-spacing:0.072533pt;}
.lsb{letter-spacing:0.073600pt;}
.ls19{letter-spacing:0.104267pt;}
.ls2f{letter-spacing:0.131467pt;}
.ls32{letter-spacing:0.132533pt;}
.ls2d{letter-spacing:0.133333pt;}
.ls4b{letter-spacing:0.133867pt;}
.ls7{letter-spacing:0.134400pt;}
.ls13{letter-spacing:0.136532pt;}
.ls2b{letter-spacing:0.136800pt;}
.ls5{letter-spacing:0.137067pt;}
.ls49{letter-spacing:0.137867pt;}
.ls2c{letter-spacing:0.138667pt;}
.ls17{letter-spacing:0.139467pt;}
.ls16{letter-spacing:0.145067pt;}
.ls15{letter-spacing:0.158667pt;}
.ls55{letter-spacing:0.170665pt;}
.ls3{letter-spacing:0.217600pt;}
.ls1f{letter-spacing:0.218133pt;}
.ls9{letter-spacing:0.218667pt;}
.ls24{letter-spacing:0.253867pt;}
.ls1d{letter-spacing:0.806013pt;}
.ls41{letter-spacing:0.955200pt;}
.ls42{letter-spacing:1.435200pt;}
.ls11{letter-spacing:1.437333pt;}
.ls43{letter-spacing:1.924800pt;}
.ls33{letter-spacing:4.149867pt;}
.ls36{letter-spacing:4.152800pt;}
.ls48{letter-spacing:4.452267pt;}
.ls1c{letter-spacing:5.372363pt;}
.ls1a{letter-spacing:7.475467pt;}
.ls29{letter-spacing:8.994133pt;}
.ls28{letter-spacing:8.998667pt;}
.ls4e{letter-spacing:9.175467pt;}
.ls23{letter-spacing:9.937067pt;}
.ls2e{letter-spacing:9.950667pt;}
.ls21{letter-spacing:10.240800pt;}
.ls4a{letter-spacing:10.249867pt;}
.ls2a{letter-spacing:11.596267pt;}
.ls54{letter-spacing:11.707587pt;}
.ls1e{letter-spacing:12.134320pt;}
.ls6{letter-spacing:12.366933pt;}
.ls46{letter-spacing:12.670400pt;}
.ls31{letter-spacing:12.670667pt;}
.ls22{letter-spacing:14.316267pt;}
.ls4c{letter-spacing:14.357067pt;}
.ls4d{letter-spacing:14.620000pt;}
.ls52{letter-spacing:14.732616pt;}
.ls4{letter-spacing:15.336267pt;}
.ls20{letter-spacing:15.649067pt;}
.ls45{letter-spacing:17.275700pt;}
.ls8{letter-spacing:17.507733pt;}
.ls18{letter-spacing:17.508267pt;}
.ls14{letter-spacing:18.246667pt;}
.ls50{letter-spacing:19.911735pt;}
.ls56{letter-spacing:21.081336pt;}
.ls44{letter-spacing:23.993600pt;}
.ls3e{letter-spacing:23.995733pt;}
.ls3a{letter-spacing:23.997867pt;}
.ls3d{letter-spacing:24.000000pt;}
.ls3c{letter-spacing:24.004267pt;}
.lsa{letter-spacing:25.441067pt;}
.ls34{letter-spacing:26.955200pt;}
.lsd{letter-spacing:27.317867pt;}
.ls25{letter-spacing:30.581867pt;}
.ls37{letter-spacing:30.913333pt;}
.ls57{letter-spacing:33.475848pt;}
.ls30{letter-spacing:99.488533pt;}
.ls10{letter-spacing:249.937067pt;}
.ls27{letter-spacing:286.075700pt;}
.ls35{letter-spacing:343.826633pt;}
.ls12{letter-spacing:351.485867pt;}
.lsc{letter-spacing:409.137566pt;}
.ws59{word-spacing:-10.378667pt;}
.ws58{word-spacing:-10.141292pt;}
.ws5c{word-spacing:-9.637333pt;}
.ws5a{word-spacing:-7.784000pt;}
.ws5e{word-spacing:-7.627200pt;}
.ws5d{word-spacing:-6.672000pt;}
.ws8a{word-spacing:-2.880000pt;}
.ws87{word-spacing:-2.560000pt;}
.ws86{word-spacing:-2.557867pt;}
.ws88{word-spacing:-2.555733pt;}
.ws89{word-spacing:-2.553600pt;}
.ws84{word-spacing:-0.048000pt;}
.ws31{word-spacing:-0.045333pt;}
.ws60{word-spacing:-0.042666pt;}
.ws10{word-spacing:-0.039999pt;}
.ws5b{word-spacing:-0.034667pt;}
.ws45{word-spacing:-0.031733pt;}
.ws85{word-spacing:0.000000pt;}
.ws46{word-spacing:5.576800pt;}
.ws7a{word-spacing:5.879200pt;}
.wsb4{word-spacing:7.403094pt;}
.ws12{word-spacing:8.559886pt;}
.wsa9{word-spacing:8.948800pt;}
.wsd8{word-spacing:9.112000pt;}
.wsba{word-spacing:9.191335pt;}
.wsc3{word-spacing:9.202667pt;}
.wsc4{word-spacing:9.288800pt;}
.wsb9{word-spacing:9.415332pt;}
.wsb3{word-spacing:9.534797pt;}
.wsd0{word-spacing:9.583872pt;}
.wsb2{word-spacing:9.620663pt;}
.wsc5{word-spacing:9.724000pt;}
.ws3f{word-spacing:9.796533pt;}
.wseb{word-spacing:9.821744pt;}
.wsa8{word-spacing:9.860000pt;}
.ws67{word-spacing:9.891733pt;}
.wscb{word-spacing:10.077600pt;}
.wsec{word-spacing:10.077741pt;}
.ws2e{word-spacing:10.100267pt;}
.wsed{word-spacing:10.175873pt;}
.wsf{word-spacing:10.383862pt;}
.wsc6{word-spacing:10.390400pt;}
.wsc2{word-spacing:10.404000pt;}
.wse7{word-spacing:10.508669pt;}
.wse{word-spacing:10.615858pt;}
.ws69{word-spacing:10.685067pt;}
.ws11{word-spacing:10.763856pt;}
.ws17{word-spacing:10.957067pt;}
.wsd4{word-spacing:10.970667pt;}
.ws72{word-spacing:10.988800pt;}
.wsc7{word-spacing:11.152000pt;}
.ws41{word-spacing:11.165600pt;}
.wsb8{word-spacing:11.233440pt;}
.ws1a{word-spacing:11.238133pt;}
.ws73{word-spacing:11.297067pt;}
.wsf0{word-spacing:11.297992pt;}
.wsee{word-spacing:11.319325pt;}
.wsb6{word-spacing:11.356638pt;}
.wsb5{word-spacing:11.401437pt;}
.ws6c{word-spacing:11.433067pt;}
.wsaa{word-spacing:11.446667pt;}
.ws2f{word-spacing:11.455733pt;}
.ws70{word-spacing:11.464800pt;}
.wsd{word-spacing:11.547846pt;}
.ws40{word-spacing:11.591733pt;}
.ws7{word-spacing:11.707844pt;}
.ws6a{word-spacing:11.759467pt;}
.wsef{word-spacing:11.933717pt;}
.wsf1{word-spacing:11.967850pt;}
.wsd1{word-spacing:11.983840pt;}
.ws15{word-spacing:11.987840pt;}
.wsd3{word-spacing:11.999733pt;}
.wsa4{word-spacing:12.058667pt;}
.ws23{word-spacing:12.122133pt;}
.wsc8{word-spacing:12.167467pt;}
.wsc{word-spacing:12.179838pt;}
.ws3e{word-spacing:12.194667pt;}
.ws92{word-spacing:12.208267pt;}
.ws3d{word-spacing:12.385067pt;}
.wsce{word-spacing:12.471834pt;}
.wsad{word-spacing:12.607842pt;}
.wscf{word-spacing:12.659831pt;}
.ws6f{word-spacing:12.714133pt;}
.ws4a{word-spacing:12.714667pt;}
.wsae{word-spacing:12.761440pt;}
.wse9{word-spacing:12.808373pt;}
.wsff{word-spacing:12.812640pt;}
.wse2{word-spacing:12.820267pt;}
.wsf2{word-spacing:12.842506pt;}
.wsea{word-spacing:12.880906pt;}
.ws101{word-spacing:12.897972pt;}
.wscc{word-spacing:12.910772pt;}
.ws19{word-spacing:12.947200pt;}
.wsc1{word-spacing:12.965333pt;}
.wse8{word-spacing:12.974771pt;}
.wsfc{word-spacing:13.034504pt;}
.wsfd{word-spacing:13.047304pt;}
.wse5{word-spacing:13.128369pt;}
.ws62{word-spacing:13.136902pt;}
.wscd{word-spacing:13.166769pt;}
.ws8f{word-spacing:13.210133pt;}
.wsaf{word-spacing:13.235035pt;}
.ws2d{word-spacing:13.269067pt;}
.ws90{word-spacing:13.509333pt;}
.ws3c{word-spacing:13.572800pt;}
.ws8c{word-spacing:13.581867pt;}
.wse0{word-spacing:13.622667pt;}
.ws76{word-spacing:13.636267pt;}
.wsa1{word-spacing:13.668000pt;}
.ws93{word-spacing:13.704267pt;}
.ws80{word-spacing:13.790400pt;}
.ws74{word-spacing:13.862933pt;}
.ws30{word-spacing:13.876533pt;}
.wsbe{word-spacing:13.885600pt;}
.wse1{word-spacing:13.899200pt;}
.wsa5{word-spacing:13.994400pt;}
.ws9{word-spacing:14.011813pt;}
.ws55{word-spacing:14.012533pt;}
.ws6e{word-spacing:14.021600pt;}
.ws8b{word-spacing:14.030667pt;}
.ws6d{word-spacing:14.094133pt;}
.ws1e{word-spacing:14.166667pt;}
.ws48{word-spacing:14.175733pt;}
.ws9e{word-spacing:14.189333pt;}
.ws1d{word-spacing:14.338933pt;}
.wsfe{word-spacing:14.348621pt;}
.wsb1{word-spacing:14.366400pt;}
.ws37{word-spacing:14.479467pt;}
.wsa{word-spacing:14.495807pt;}
.ws3b{word-spacing:14.597333pt;}
.ws2a{word-spacing:14.615467pt;}
.wsd9{word-spacing:14.633600pt;}
.wsa6{word-spacing:14.647200pt;}
.ws1b{word-spacing:14.783200pt;}
.wsda{word-spacing:14.792267pt;}
.wsb0{word-spacing:14.808000pt;}
.wse6{word-spacing:14.881947pt;}
.ws44{word-spacing:14.950933pt;}
.wsf8{word-spacing:15.172077pt;}
.wsf9{word-spacing:15.184877pt;}
.wsbd{word-spacing:15.191200pt;}
.ws26{word-spacing:15.218400pt;}
.wsa0{word-spacing:15.241067pt;}
.ws25{word-spacing:15.304533pt;}
.ws43{word-spacing:15.386133pt;}
.ws100{word-spacing:15.449407pt;}
.wsf3{word-spacing:15.517673pt;}
.ws47{word-spacing:15.531200pt;}
.ws7f{word-spacing:15.617333pt;}
.ws2b{word-spacing:15.689867pt;}
.ws7e{word-spacing:15.698933pt;}
.ws68{word-spacing:15.712533pt;}
.ws1c{word-spacing:15.735200pt;}
.ws71{word-spacing:15.884800pt;}
.ws24{word-spacing:15.907467pt;}
.ws7d{word-spacing:15.989067pt;}
.wsdc{word-spacing:16.002667pt;}
.ws96{word-spacing:16.011733pt;}
.ws5{word-spacing:16.051786pt;}
.ws7c{word-spacing:16.097867pt;}
.ws1f{word-spacing:16.315467pt;}
.ws42{word-spacing:16.388000pt;}
.ws3{word-spacing:16.400164pt;}
.ws4e{word-spacing:16.460533pt;}
.ws4{word-spacing:16.650833pt;}
.ws13{word-spacing:16.683778pt;}
.ws6{word-spacing:16.695777pt;}
.ws4f{word-spacing:16.741600pt;}
.ws35{word-spacing:16.886667pt;}
.ws77{word-spacing:16.900267pt;}
.ws8e{word-spacing:16.921100pt;}
.ws9b{word-spacing:17.004533pt;}
.ws6b{word-spacing:17.066933pt;}
.ws39{word-spacing:17.281067pt;}
.ws51{word-spacing:17.285600pt;}
.ws50{word-spacing:17.335467pt;}
.ws38{word-spacing:17.358133pt;}
.ws18{word-spacing:17.380800pt;}
.ws3a{word-spacing:17.408000pt;}
.ws54{word-spacing:17.439733pt;}
.ws9a{word-spacing:17.648267pt;}
.ws22{word-spacing:17.793333pt;}
.ws99{word-spacing:17.806933pt;}
.ws8d{word-spacing:17.818667pt;}
.ws64{word-spacing:17.938400pt;}
.ws53{word-spacing:17.983733pt;}
.wsdf{word-spacing:18.078933pt;}
.ws63{word-spacing:18.083467pt;}
.wsbf{word-spacing:18.165067pt;}
.ws65{word-spacing:18.242133pt;}
.ws91{word-spacing:18.276000pt;}
.ws79{word-spacing:18.409867pt;}
.ws78{word-spacing:18.564000pt;}
.ws49{word-spacing:18.578400pt;}
.wsbb{word-spacing:18.831467pt;}
.wsa3{word-spacing:18.845067pt;}
.ws4d{word-spacing:19.003733pt;}
.ws4b{word-spacing:19.026400pt;}
.wsa2{word-spacing:19.062667pt;}
.wsa7{word-spacing:19.171467pt;}
.wsbc{word-spacing:19.339200pt;}
.ws14{word-spacing:19.511740pt;}
.ws66{word-spacing:19.765333pt;}
.wsd6{word-spacing:19.924000pt;}
.wsac{word-spacing:19.933067pt;}
.ws75{word-spacing:20.392800pt;}
.ws98{word-spacing:20.694667pt;}
.ws8{word-spacing:20.819722pt;}
.wsf4{word-spacing:20.893605pt;}
.wsf6{word-spacing:20.970405pt;}
.wsf5{word-spacing:21.004537pt;}
.wsf7{word-spacing:21.038670pt;}
.ws9f{word-spacing:21.129867pt;}
.ws61{word-spacing:21.192268pt;}
.ws5f{word-spacing:21.256268pt;}
.ws0{word-spacing:21.270215pt;}
.ws1{word-spacing:21.282482pt;}
.ws20{word-spacing:21.288533pt;}
.ws2{word-spacing:21.349948pt;}
.ws27{word-spacing:21.624000pt;}
.wsca{word-spacing:21.737333pt;}
.ws81{word-spacing:21.746400pt;}
.ws7b{word-spacing:22.036533pt;}
.wse3{word-spacing:22.136267pt;}
.wse4{word-spacing:22.195200pt;}
.ws32{word-spacing:22.331200pt;}
.ws21{word-spacing:22.644000pt;}
.wsdb{word-spacing:22.825333pt;}
.ws16{word-spacing:22.879733pt;}
.ws9c{word-spacing:22.897867pt;}
.ws52{word-spacing:22.947733pt;}
.wsd2{word-spacing:22.974933pt;}
.ws9d{word-spacing:23.092800pt;}
.ws34{word-spacing:23.333067pt;}
.wsd5{word-spacing:23.591467pt;}
.wsdd{word-spacing:23.972267pt;}
.ws82{word-spacing:24.153600pt;}
.ws95{word-spacing:24.457333pt;}
.ws28{word-spacing:24.529867pt;}
.wsc0{word-spacing:24.978667pt;}
.ws94{word-spacing:25.096533pt;}
.ws4c{word-spacing:25.230133pt;}
.ws2c{word-spacing:25.436533pt;}
.ws56{word-spacing:26.887200pt;}
.ws57{word-spacing:27.345067pt;}
.ws36{word-spacing:27.617067pt;}
.wsc9{word-spacing:28.365067pt;}
.ws97{word-spacing:28.387733pt;}
.wsd7{word-spacing:30.568267pt;}
.ws33{word-spacing:30.600000pt;}
.wsab{word-spacing:31.112267pt;}
.wsb{word-spacing:32.087572pt;}
.wsfb{word-spacing:32.878522pt;}
.wsfa{word-spacing:33.087586pt;}
.ws29{word-spacing:34.190400pt;}
.wsde{word-spacing:73.086400pt;}
.wsb7{word-spacing:471.860459pt;}
.ws83{word-spacing:1517.169600pt;}
._13{margin-left:-331.812675pt;}
._26{margin-left:-4.285283pt;}
._16{margin-left:-3.057600pt;}
._4{margin-left:-1.415981pt;}
._5{width:1.031986pt;}
._17{width:2.112055pt;}
._14{width:3.366400pt;}
._19{width:4.852798pt;}
._18{width:5.865600pt;}
._1b{width:8.998667pt;}
._7{width:9.907868pt;}
._8{width:11.555846pt;}
._2{width:12.747830pt;}
._c{width:13.681407pt;}
._a{width:14.606400pt;}
._1{width:15.723790pt;}
._15{width:16.864000pt;}
._0{width:17.781511pt;}
._b{width:19.035467pt;}
._9{width:20.615725pt;}
._3{width:21.819709pt;}
._d{width:23.147200pt;}
._1a{width:24.475467pt;}
._e{width:25.590667pt;}
._f{width:26.520000pt;}
._12{width:28.614400pt;}
._11{width:29.968286pt;}
._10{width:31.018648pt;}
._1c{width:32.051107pt;}
._6{width:33.047559pt;}
._25{width:42.465603pt;}
._1d{width:164.616316pt;}
._24{width:274.088330pt;}
._23{width:282.301823pt;}
._22{width:283.263945pt;}
._21{width:307.607339pt;}
._1e{width:325.362519pt;}
._1f{width:381.722802pt;}
._20{width:448.553592pt;}
.fsc{font-size:12.000000pt;}
.fs8{font-size:21.333333pt;}
.fs6{font-size:22.666667pt;}
.fsb{font-size:24.000000pt;}
.fsf{font-size:26.000000pt;}
.fs10{font-size:26.666667pt;}
.fsa{font-size:28.000000pt;}
.fsd{font-size:29.333333pt;}
.fs4{font-size:30.218133pt;}
.fs12{font-size:30.507200pt;}
.fs5{font-size:31.732800pt;}
.fse{font-size:34.666667pt;}
.fs7{font-size:36.479467pt;}
.fs15{font-size:37.332800pt;}
.fs9{font-size:37.333333pt;}
.fs2{font-size:39.999467pt;}
.fs13{font-size:42.666133pt;}
.fs11{font-size:42.709867pt;}
.fs3{font-size:45.333333pt;}
.fs14{font-size:48.000000pt;}
.fs1{font-size:53.333867pt;}
.fs0{font-size:61.332800pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:13.152400pt;}
.y8d{bottom:25.852000pt;}
.y8c{bottom:77.027133pt;}
.y4c{bottom:77.027533pt;}
.yd1{bottom:80.122733pt;}
.y106{bottom:80.199600pt;}
.y4b{bottom:90.406533pt;}
.y105{bottom:92.218650pt;}
.yd0{bottom:93.426933pt;}
.y89{bottom:100.233067pt;}
.y4a{bottom:103.710733pt;}
.y104{bottom:104.161967pt;}
.ycf{bottom:106.805933pt;}
.y48{bottom:115.200000pt;}
.y88{bottom:115.653467pt;}
.y8b{bottom:116.107133pt;}
.y103{bottom:116.181017pt;}
.y47{bottom:117.088533pt;}
.y49{bottom:117.089733pt;}
.y8a{bottom:118.601600pt;}
.yce{bottom:120.110133pt;}
.y102{bottom:128.200067pt;}
.y46{bottom:130.392733pt;}
.ycd{bottom:133.490267pt;}
.y101{bottom:140.219116pt;}
.y87{bottom:142.639800pt;}
.y45{bottom:143.696933pt;}
.ycc{bottom:146.794467pt;}
.y100{bottom:152.162434pt;}
.y85{bottom:154.129200pt;}
.y43{bottom:155.187333pt;}
.y84{bottom:156.018400pt;}
.y86{bottom:156.018800pt;}
.y42{bottom:157.076867pt;}
.y44{bottom:157.077067pt;}
.ycb{bottom:160.098667pt;}
.yff{bottom:164.181484pt;}
.y83{bottom:169.322600pt;}
.y41{bottom:170.380800pt;}
.yca{bottom:173.478800pt;}
.yfe{bottom:176.200533pt;}
.y82{bottom:182.626400pt;}
.yc9{bottom:186.783000pt;}
.yfd{bottom:188.219583pt;}
.y40{bottom:189.656667pt;}
.y81{bottom:196.005400pt;}
.y3f{bottom:197.441467pt;}
.yfc{bottom:200.162900pt;}
.yc8{bottom:200.163133pt;}
.y80{bottom:209.309600pt;}
.yfb{bottom:212.181950pt;}
.yc7{bottom:213.467333pt;}
.y7f{bottom:222.689533pt;}
.yfa{bottom:224.201000pt;}
.yc6{bottom:226.771533pt;}
.y3e{bottom:227.526933pt;}
.y7d{bottom:234.103867pt;}
.y7c{bottom:235.993000pt;}
.y7e{bottom:235.993733pt;}
.yf9{bottom:236.220050pt;}
.yc5{bottom:240.150533pt;}
.y3d{bottom:240.906200pt;}
.yf8{bottom:248.163367pt;}
.y7b{bottom:249.297200pt;}
.yc4{bottom:253.454733pt;}
.y3c{bottom:254.210400pt;}
.yf7{bottom:260.182417pt;}
.y7a{bottom:262.677333pt;}
.y3a{bottom:265.700667pt;}
.yc3{bottom:266.758933pt;}
.y39{bottom:267.582867pt;}
.y3b{bottom:267.590533pt;}
.yf6{bottom:272.201467pt;}
.y38{bottom:280.887067pt;}
.y79{bottom:288.075600pt;}
.yf5{bottom:290.868133pt;}
.y37{bottom:294.191267pt;}
.y78{bottom:295.861067pt;}
.yc2{bottom:306.220067pt;}
.y36{bottom:307.571400pt;}
.yf4{bottom:317.551333pt;}
.yc1{bottom:320.204000pt;}
.y35{bottom:320.875600pt;}
.y77{bottom:330.783600pt;}
.y34{bottom:334.179800pt;}
.yc0{bottom:334.187934pt;}
.yf3{bottom:334.861867pt;}
.y76{bottom:344.162800pt;}
.y33{bottom:347.558800pt;}
.yf2{bottom:348.166067pt;}
.ybf{bottom:348.247466pt;}
.y75{bottom:357.467000pt;}
.y32{bottom:360.863000pt;}
.yf1{bottom:361.546200pt;}
.ybe{bottom:362.231400pt;}
.y74{bottom:370.771200pt;}
.y31{bottom:374.243133pt;}
.ybd{bottom:376.215334pt;}
.yf0{bottom:378.856733pt;}
.y73{bottom:384.151333pt;}
.y30{bottom:387.547333pt;}
.ybc{bottom:390.199267pt;}
.yef{bottom:392.160933pt;}
.y72{bottom:397.455533pt;}
.y2f{bottom:400.851533pt;}
.ybb{bottom:404.183201pt;}
.yee{bottom:405.539933pt;}
.y71{bottom:410.834533pt;}
.y2e{bottom:414.230533pt;}
.yba{bottom:418.242733pt;}
.yed{bottom:418.844133pt;}
.y2d{bottom:427.534733pt;}
.yb9{bottom:432.226667pt;}
.y70{bottom:441.977750pt;}
.yb8{bottom:450.292800pt;}
.yec{bottom:450.818867pt;}
.y6f{bottom:453.996800pt;}
.y2c{bottom:454.671267pt;}
.yeb{bottom:464.197867pt;}
.y2b{bottom:468.051400pt;}
.yb7{bottom:476.976150pt;}
.yea{bottom:477.502067pt;}
.y2a{bottom:481.355600pt;}
.yb6{bottom:488.995200pt;}
.ye9{bottom:490.881067pt;}
.y29{bottom:494.735733pt;}
.ye8{bottom:504.185267pt;}
.y28{bottom:508.039933pt;}
.ye7{bottom:517.489467pt;}
.y69{bottom:520.021600pt;}
.y27{bottom:521.344133pt;}
.y6b{bottom:521.744285pt;}
.y67{bottom:523.136267pt;}
.y66{bottom:523.400267pt;}
.y64{bottom:525.607200pt;}
.y68{bottom:527.098933pt;}
.y6a{bottom:529.840133pt;}
.y26{bottom:534.724267pt;}
.y6c{bottom:542.589467pt;}
.ye6{bottom:546.819000pt;}
.y25{bottom:548.028467pt;}
.ye5{bottom:560.198000pt;}
.y6d{bottom:560.918667pt;}
.y24{bottom:561.332667pt;}
.ye4{bottom:573.502200pt;}
.y23{bottom:574.712800pt;}
.ye3{bottom:586.882333pt;}
.y22{bottom:588.017000pt;}
.y6e{bottom:590.569200pt;}
.ye2{bottom:600.186533pt;}
.y21{bottom:601.396000pt;}
.y60{bottom:606.401067pt;}
.ye1{bottom:613.490733pt;}
.y20{bottom:614.700200pt;}
.y61{bottom:621.015733pt;}
.yb5{bottom:621.802133pt;}
.ye0{bottom:626.870867pt;}
.y1f{bottom:628.004400pt;}
.yb4{bottom:635.181133pt;}
.ydf{bottom:640.175067pt;}
.y1e{bottom:641.383400pt;}
.y62{bottom:645.763600pt;}
.yb3{bottom:648.485333pt;}
.y5f{bottom:649.760933pt;}
.yde{bottom:653.555200pt;}
.y1d{bottom:654.687600pt;}
.yb2{bottom:661.865467pt;}
.ydd{bottom:666.859400pt;}
.y65{bottom:667.279467pt;}
.y1c{bottom:668.067733pt;}
.y63{bottom:668.330133pt;}
.yb1{bottom:675.169667pt;}
.ydc{bottom:680.163600pt;}
.y1b{bottom:681.371933pt;}
.yb0{bottom:688.473867pt;}
.y1a{bottom:694.676133pt;}
.ydb{bottom:697.550693pt;}
.yaf{bottom:701.854000pt;}
.y5e{bottom:704.055200pt;}
.y19{bottom:708.055133pt;}
.yda{bottom:708.208551pt;}
.yae{bottom:715.158200pt;}
.yd9{bottom:718.866409pt;}
.y18{bottom:721.359333pt;}
.yad{bottom:728.537200pt;}
.yd8{bottom:729.524267pt;}
.y17{bottom:734.739467pt;}
.yac{bottom:741.841400pt;}
.yd7{bottom:744.188800pt;}
.y16{bottom:748.043667pt;}
.y5d{bottom:748.123067pt;}
.y15{bottom:761.347867pt;}
.yab{bottom:768.600533pt;}
.yd6{bottom:768.938000pt;}
.yaa{bottom:781.904733pt;}
.y14{bottom:793.550840pt;}
.ya9{bottom:795.208933pt;}
.y13{bottom:805.494680pt;}
.ya8{bottom:808.589067pt;}
.y12{bottom:817.513520pt;}
.y5c{bottom:819.503333pt;}
.ya7{bottom:821.893267pt;}
.y5b{bottom:822.787067pt;}
.y11{bottom:829.532360pt;}
.ya6{bottom:835.273400pt;}
.y10{bottom:841.551199pt;}
.y5a{bottom:843.855333pt;}
.y59{bottom:847.139600pt;}
.ya5{bottom:848.577600pt;}
.yf{bottom:853.494040pt;}
.ya4{bottom:861.881800pt;}
.ye{bottom:865.512880pt;}
.ya3{bottom:875.260800pt;}
.yd{bottom:877.531720pt;}
.ya2{bottom:888.565000pt;}
.yc{bottom:889.550559pt;}
.y58{bottom:893.052667pt;}
.y57{bottom:896.336933pt;}
.yd5{bottom:897.174267pt;}
.yb{bottom:901.493400pt;}
.ya1{bottom:901.945133pt;}
.ya{bottom:913.512240pt;}
.ya0{bottom:915.249333pt;}
.y56{bottom:917.408933pt;}
.y55{bottom:920.693200pt;}
.y9{bottom:925.531080pt;}
.y9f{bottom:928.553533pt;}
.y4e{bottom:936.338400pt;}
.y8{bottom:937.549919pt;}
.y7{bottom:949.492760pt;}
.y9d{bottom:950.853067pt;}
.y9a{bottom:951.155733pt;}
.y9c{bottom:953.423467pt;}
.y9e{bottom:958.941600pt;}
.y98{bottom:958.942067pt;}
.y6{bottom:961.511600pt;}
.y99{bottom:966.954133pt;}
.y9b{bottom:968.163600pt;}
.y54{bottom:968.397200pt;}
.y53{bottom:971.680933pt;}
.y97{bottom:988.422333pt;}
.y5{bottom:988.496800pt;}
.y52{bottom:992.752933pt;}
.y51{bottom:996.036667pt;}
.y96{bottom:1001.800933pt;}
.y4{bottom:1001.876933pt;}
.y95{bottom:1024.100133pt;}
.y92{bottom:1024.327400pt;}
.y94{bottom:1026.670533pt;}
.y3{bottom:1028.483600pt;}
.y91{bottom:1032.113067pt;}
.yd4{bottom:1034.533333pt;}
.y93{bottom:1040.201333pt;}
.y2{bottom:1043.829067pt;}
.y50{bottom:1045.096400pt;}
.yd3{bottom:1047.837533pt;}
.y4d{bottom:1050.096933pt;}
.y4f{bottom:1052.993467pt;}
.y1{bottom:1059.174533pt;}
.y90{bottom:1059.325733pt;}
.y8f{bottom:1061.215467pt;}
.yd2{bottom:1061.216533pt;}
.hd{height:15.722667pt;}
.h14{height:19.653333pt;}
.hb{height:20.971385pt;}
.hf{height:21.618667pt;}
.h16{height:22.483806pt;}
.h10{height:25.549333pt;}
.h6{height:26.531521pt;}
.hc{height:26.885367pt;}
.h1f{height:27.200000pt;}
.he{height:27.514667pt;}
.h17{height:29.610297pt;}
.h27{height:30.690667pt;}
.h12{height:30.703333pt;}
.h13{height:30.708667pt;}
.h1d{height:31.461333pt;}
.h22{height:32.448000pt;}
.h24{height:32.730667pt;}
.h26{height:32.778198pt;}
.h11{height:33.410667pt;}
.h4{height:35.119532pt;}
.h28{height:37.460865pt;}
.h21{height:39.801333pt;}
.h5{height:39.802667pt;}
.h1b{height:39.803467pt;}
.ha{height:39.803733pt;}
.h1c{height:39.804267pt;}
.h7{height:39.806133pt;}
.h18{height:39.806400pt;}
.h25{height:42.144000pt;}
.h2{height:45.202274pt;}
.h3{height:46.827135pt;}
.h15{height:52.623838pt;}
.h1e{height:62.301600pt;}
.h23{height:62.302933pt;}
.h8{height:68.353600pt;}
.h20{height:70.643733pt;}
.h1a{height:70.945600pt;}
.h9{height:70.946133pt;}
.h19{height:76.691733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x39{left:71.055067pt;}
.x4c{left:75.739928pt;}
.x4a{left:80.652924pt;}
.x4d{left:82.393600pt;}
.x2{left:90.633067pt;}
.x45{left:92.295158pt;}
.x4b{left:98.568002pt;}
.x47{left:99.475189pt;}
.x48{left:104.690581pt;}
.x44{left:108.018800pt;}
.x46{left:112.024609pt;}
.x49{left:117.390266pt;}
.x5{left:162.065800pt;}
.x40{left:170.834533pt;}
.x9{left:174.689733pt;}
.xa{left:178.393600pt;}
.x7{left:193.058267pt;}
.x3b{left:195.099200pt;}
.x8{left:196.762133pt;}
.x3c{left:222.235600pt;}
.x6{left:231.760533pt;}
.x3d{left:232.894400pt;}
.x41{left:236.522800pt;}
.x3e{left:242.418800pt;}
.x42{left:252.094400pt;}
.x43{left:277.492800pt;}
.x3{left:316.270800pt;}
.x4{left:327.458133pt;}
.x3a{left:360.340000pt;}
.x3f{left:380.749467pt;}
.x2a{left:399.949467pt;}
.x2b{left:411.288133pt;}
.x10{left:421.704133pt;}
.x4e{left:423.081533pt;}
.x15{left:425.615600pt;}
.xc{left:426.641600pt;}
.xf{left:429.601200pt;}
.x38{left:433.283933pt;}
.x50{left:439.029934pt;}
.x1a{left:449.291200pt;}
.x19{left:456.168800pt;}
.x18{left:458.470933pt;}
.xd{left:476.906933pt;}
.xe{left:480.190667pt;}
.x14{left:483.198667pt;}
.x11{left:488.177600pt;}
.x35{left:499.653467pt;}
.x20{left:500.764933pt;}
.x21{left:504.048667pt;}
.x1c{left:515.466848pt;}
.x1b{left:516.674933pt;}
.x36{left:521.499067pt;}
.x17{left:524.523600pt;}
.x16{left:528.352000pt;}
.xb{left:536.409333pt;}
.x12{left:538.972267pt;}
.x1e{left:549.288800pt;}
.x2c{left:550.374667pt;}
.x22{left:552.001200pt;}
.x23{left:555.285467pt;}
.x1f{left:560.736800pt;}
.x24{left:576.278533pt;}
.x25{left:579.562800pt;}
.x4f{left:581.125600pt;}
.x2f{left:584.012400pt;}
.x30{left:594.519467pt;}
.x37{left:599.659733pt;}
.x13{left:606.365867pt;}
.x1d{left:608.411200pt;}
.x31{left:610.015600pt;}
.x32{left:623.092800pt;}
.x26{left:625.512133pt;}
.x27{left:628.796400pt;}
.x2d{left:632.012400pt;}
.x2e{left:638.588800pt;}
.x28{left:649.937733pt;}
.x29{left:653.222000pt;}
.x33{left:680.466000pt;}
.x34{left:697.625067pt;}
}

