
    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_398517158479505e4d3284cc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_1dd0d027e224ba2dab3ee639.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070000;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_c3f0536fdda46062c4c5cfbd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.036000;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_5902d327aa1fadc50d580756.woff')format("woff");}.ff4{font-family:ff4;line-height:1.004000;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_ed3e673e404056c442a7e17a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248117,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248417,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248419,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,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);}
.ma{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250156,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.834000px;}
.v1{vertical-align:20.652000px;}
.ls1{letter-spacing:-2.850000px;}
.ls14{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000060px;}
.ls13{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.210000px;}
.lsd{letter-spacing:0.218781px;}
.lse{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.300045px;}
.ls10{letter-spacing:0.300253px;}
.ls2{letter-spacing:0.315000px;}
.ls18{letter-spacing:0.328515px;}
.ls19{letter-spacing:0.330000px;}
.lsb{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.479406px;}
.ls7{letter-spacing:0.480000px;}
.ls11{letter-spacing:5.377851px;}
.ls3{letter-spacing:6.621300px;}
.ls4{letter-spacing:9.150300px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.202000px;}
.ws51{word-spacing:-16.317000px;}
.ws2{word-spacing:-16.161600px;}
.ws8e{word-spacing:-16.065000px;}
.ws1b{word-spacing:-15.750000px;}
.ws102{word-spacing:-15.540000px;}
.ws4{word-spacing:-14.250000px;}
.ws53{word-spacing:-13.500000px;}
.ws103{word-spacing:-12.912000px;}
.ws101{word-spacing:-12.432000px;}
.ws5{word-spacing:-11.655000px;}
.ws3{word-spacing:-11.400000px;}
.ws52{word-spacing:-9.463860px;}
.ws6{word-spacing:-9.324000px;}
.ws130{word-spacing:-3.300000px;}
.ws126{word-spacing:-3.240000px;}
.wsce{word-spacing:-3.213000px;}
.ws68{word-spacing:-3.150000px;}
.ws10e{word-spacing:-3.120000px;}
.wsa1{word-spacing:-3.087000px;}
.ws128{word-spacing:-3.060000px;}
.ws61{word-spacing:-3.024000px;}
.ws120{word-spacing:-3.000000px;}
.wsc6{word-spacing:-2.961000px;}
.ws129{word-spacing:-2.940000px;}
.wsc{word-spacing:-2.907000px;}
.ws45{word-spacing:-2.898000px;}
.ws7a{word-spacing:-2.835000px;}
.wse7{word-spacing:-2.772000px;}
.wsfd{word-spacing:-2.754000px;}
.wse0{word-spacing:-2.709000px;}
.wsbe{word-spacing:-2.583000px;}
.ws6f{word-spacing:-2.538000px;}
.ws54{word-spacing:-2.520000px;}
.ws114{word-spacing:-2.460000px;}
.ws91{word-spacing:-2.457000px;}
.ws115{word-spacing:-2.400000px;}
.wsda{word-spacing:-2.394000px;}
.ws74{word-spacing:-2.331000px;}
.ws38{word-spacing:-2.268000px;}
.wsee{word-spacing:-2.214000px;}
.ws137{word-spacing:-2.160000px;}
.wsc2{word-spacing:-2.142000px;}
.wsef{word-spacing:-2.106000px;}
.ws138{word-spacing:-2.100000px;}
.ws2f{word-spacing:-2.079000px;}
.wsf6{word-spacing:-2.052000px;}
.ws2e{word-spacing:-2.016000px;}
.wsc7{word-spacing:-1.953000px;}
.wsa5{word-spacing:-1.890000px;}
.ws18{word-spacing:-1.881000px;}
.ws48{word-spacing:-1.827000px;}
.ws85{word-spacing:-1.764000px;}
.ws8b{word-spacing:-1.701000px;}
.ws132{word-spacing:-1.680000px;}
.wsb6{word-spacing:-1.638000px;}
.ws133{word-spacing:-1.620000px;}
.ws82{word-spacing:-1.575000px;}
.wsd5{word-spacing:-1.566000px;}
.wsab{word-spacing:-1.512000px;}
.ws43{word-spacing:-1.449000px;}
.wse6{word-spacing:-1.386000px;}
.wsea{word-spacing:-1.350000px;}
.wsa6{word-spacing:-1.323000px;}
.ws17{word-spacing:-1.311000px;}
.ws77{word-spacing:-1.260000px;}
.wsf5{word-spacing:-1.242000px;}
.wsbc{word-spacing:-1.197000px;}
.ws70{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.134000px;}
.ws41{word-spacing:-1.071000px;}
.ws10d{word-spacing:-1.026000px;}
.wse5{word-spacing:-1.008000px;}
.ws108{word-spacing:-0.969000px;}
.ws10f{word-spacing:-0.960000px;}
.ws78{word-spacing:-0.945000px;}
.ws75{word-spacing:-0.882000px;}
.wse8{word-spacing:-0.864000px;}
.ws76{word-spacing:-0.819000px;}
.ws9c{word-spacing:-0.756000px;}
.ws71{word-spacing:-0.702000px;}
.wsa9{word-spacing:-0.693000px;}
.ws10a{word-spacing:-0.684000px;}
.ws127{word-spacing:-0.660000px;}
.ws95{word-spacing:-0.630000px;}
.ws20{word-spacing:-0.567000px;}
.ws2b{word-spacing:-0.504000px;}
.ws11f{word-spacing:-0.480000px;}
.wsd7{word-spacing:-0.441000px;}
.wsfc{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.399000px;}
.ws60{word-spacing:-0.378000px;}
.ws64{word-spacing:-0.315000px;}
.ws12b{word-spacing:-0.300000px;}
.ws72{word-spacing:-0.270000px;}
.ws69{word-spacing:-0.252000px;}
.wsb5{word-spacing:-0.189000px;}
.wsa2{word-spacing:-0.126000px;}
.ws12{word-spacing:-0.114000px;}
.ws6e{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.084000px;}
.ws65{word-spacing:-0.063000px;}
.ws7{word-spacing:0.000000px;}
.wscf{word-spacing:0.054000px;}
.ws10b{word-spacing:0.057000px;}
.ws46{word-spacing:0.063000px;}
.ws134{word-spacing:0.120000px;}
.ws23{word-spacing:0.126000px;}
.ws12c{word-spacing:0.180000px;}
.ws1d{word-spacing:0.189000px;}
.wsf8{word-spacing:0.216000px;}
.ws81{word-spacing:0.252000px;}
.ws131{word-spacing:0.300000px;}
.ws42{word-spacing:0.315000px;}
.ws9e{word-spacing:0.378000px;}
.ws9d{word-spacing:0.432000px;}
.ws8c{word-spacing:0.441000px;}
.wsa{word-spacing:0.456000px;}
.ws123{word-spacing:0.480000px;}
.wsc1{word-spacing:0.504000px;}
.ws62{word-spacing:0.567000px;}
.ws16{word-spacing:0.570000px;}
.ws11c{word-spacing:0.600000px;}
.wsd8{word-spacing:0.630000px;}
.wsf0{word-spacing:0.648000px;}
.ws110{word-spacing:0.660000px;}
.ws4a{word-spacing:0.693000px;}
.wse1{word-spacing:0.702000px;}
.ws135{word-spacing:0.720000px;}
.ws7b{word-spacing:0.756000px;}
.ws7c{word-spacing:0.819000px;}
.ws26{word-spacing:0.882000px;}
.ws94{word-spacing:0.945000px;}
.wsb4{word-spacing:1.008000px;}
.wsf7{word-spacing:1.026000px;}
.ws2d{word-spacing:1.071000px;}
.ws6c{word-spacing:1.134000px;}
.ws6b{word-spacing:1.188000px;}
.ws13{word-spacing:1.197000px;}
.ws1a{word-spacing:1.215000px;}
.wsd0{word-spacing:1.242000px;}
.ws14{word-spacing:1.254000px;}
.wsc9{word-spacing:1.260000px;}
.wsd1{word-spacing:1.296000px;}
.ws4e{word-spacing:1.323000px;}
.wseb{word-spacing:1.350000px;}
.ws22{word-spacing:1.386000px;}
.ws8{word-spacing:1.404000px;}
.wsff{word-spacing:1.458000px;}
.ws11{word-spacing:1.482000px;}
.ws28{word-spacing:1.512000px;}
.ws109{word-spacing:1.539000px;}
.wsf2{word-spacing:1.566000px;}
.ws39{word-spacing:1.575000px;}
.ws10{word-spacing:1.596000px;}
.ws11b{word-spacing:1.620000px;}
.ws31{word-spacing:1.638000px;}
.ws105{word-spacing:1.653000px;}
.wsec{word-spacing:1.674000px;}
.ws11a{word-spacing:1.680000px;}
.wsbf{word-spacing:1.701000px;}
.ws5d{word-spacing:1.764000px;}
.wsd2{word-spacing:1.836000px;}
.ws44{word-spacing:1.890000px;}
.ws5b{word-spacing:1.953000px;}
.wsae{word-spacing:1.998000px;}
.ws34{word-spacing:2.016000px;}
.wsa3{word-spacing:2.079000px;}
.ws136{word-spacing:2.100000px;}
.ws73{word-spacing:2.106000px;}
.wsa4{word-spacing:2.142000px;}
.ws117{word-spacing:2.160000px;}
.ws5c{word-spacing:2.205000px;}
.ws116{word-spacing:2.220000px;}
.ws9{word-spacing:2.268000px;}
.ws4d{word-spacing:2.331000px;}
.wsc8{word-spacing:2.394000px;}
.ws113{word-spacing:2.400000px;}
.wsca{word-spacing:2.457000px;}
.wse9{word-spacing:2.484000px;}
.wsba{word-spacing:2.520000px;}
.ws58{word-spacing:2.583000px;}
.ws8d{word-spacing:2.592000px;}
.ws79{word-spacing:2.646000px;}
.ws25{word-spacing:2.709000px;}
.ws15{word-spacing:2.736000px;}
.ws3e{word-spacing:2.772000px;}
.ws99{word-spacing:2.835000px;}
.ws1e{word-spacing:2.898000px;}
.ws6a{word-spacing:2.961000px;}
.ws37{word-spacing:3.024000px;}
.ws59{word-spacing:3.087000px;}
.ws30{word-spacing:3.150000px;}
.wsfe{word-spacing:3.240000px;}
.ws80{word-spacing:3.276000px;}
.ws57{word-spacing:3.339000px;}
.ws2a{word-spacing:3.402000px;}
.ws12d{word-spacing:3.420000px;}
.ws4f{word-spacing:3.465000px;}
.ws47{word-spacing:3.528000px;}
.wsd{word-spacing:3.534000px;}
.ws12e{word-spacing:3.540000px;}
.ws5e{word-spacing:3.591000px;}
.ws19{word-spacing:3.648000px;}
.ws3d{word-spacing:3.654000px;}
.wsf1{word-spacing:3.726000px;}
.ws3c{word-spacing:3.780000px;}
.ws83{word-spacing:3.843000px;}
.ws106{word-spacing:3.876000px;}
.wsdc{word-spacing:3.906000px;}
.wsaa{word-spacing:3.969000px;}
.wsb1{word-spacing:4.032000px;}
.ws10c{word-spacing:4.047000px;}
.ws5a{word-spacing:4.095000px;}
.ws7f{word-spacing:4.158000px;}
.ws86{word-spacing:4.221000px;}
.wsdf{word-spacing:4.284000px;}
.ws1f{word-spacing:4.347000px;}
.wsf3{word-spacing:4.374000px;}
.ws125{word-spacing:4.380000px;}
.ws92{word-spacing:4.410000px;}
.wse2{word-spacing:4.428000px;}
.wsad{word-spacing:4.473000px;}
.wse{word-spacing:4.503000px;}
.wsb3{word-spacing:4.536000px;}
.ws56{word-spacing:4.599000px;}
.wsac{word-spacing:4.662000px;}
.wscd{word-spacing:4.725000px;}
.ws6d{word-spacing:4.752000px;}
.ws7d{word-spacing:4.788000px;}
.wsed{word-spacing:4.806000px;}
.ws67{word-spacing:4.851000px;}
.ws12a{word-spacing:4.860000px;}
.ws1c{word-spacing:4.914000px;}
.ws124{word-spacing:4.920000px;}
.wsd3{word-spacing:4.968000px;}
.wsb0{word-spacing:4.977000px;}
.ws119{word-spacing:4.980000px;}
.wsbd{word-spacing:5.040000px;}
.ws118{word-spacing:5.100000px;}
.ws63{word-spacing:5.103000px;}
.wsd4{word-spacing:5.130000px;}
.ws12f{word-spacing:5.160000px;}
.ws87{word-spacing:5.166000px;}
.wsd6{word-spacing:5.184000px;}
.ws97{word-spacing:5.229000px;}
.wsb8{word-spacing:5.292000px;}
.ws49{word-spacing:5.355000px;}
.wse3{word-spacing:5.400000px;}
.ws4c{word-spacing:5.418000px;}
.ws93{word-spacing:5.481000px;}
.ws9f{word-spacing:5.508000px;}
.wsc5{word-spacing:5.544000px;}
.ws121{word-spacing:5.640000px;}
.ws3a{word-spacing:5.670000px;}
.wsc4{word-spacing:5.733000px;}
.ws98{word-spacing:5.796000px;}
.wsb9{word-spacing:5.859000px;}
.ws122{word-spacing:5.880000px;}
.wsa0{word-spacing:5.886000px;}
.ws66{word-spacing:5.922000px;}
.ws84{word-spacing:6.048000px;}
.wsc0{word-spacing:6.111000px;}
.ws29{word-spacing:6.237000px;}
.ws3f{word-spacing:6.300000px;}
.ws8f{word-spacing:6.363000px;}
.wsdd{word-spacing:6.426000px;}
.ws5f{word-spacing:6.489000px;}
.wse4{word-spacing:6.588000px;}
.ws35{word-spacing:6.615000px;}
.wsa7{word-spacing:6.741000px;}
.ws89{word-spacing:6.804000px;}
.ws11d{word-spacing:6.840000px;}
.ws36{word-spacing:6.867000px;}
.ws104{word-spacing:6.897000px;}
.ws50{word-spacing:6.993000px;}
.wsfa{word-spacing:7.056000px;}
.ws11e{word-spacing:7.080000px;}
.wsb7{word-spacing:7.119000px;}
.ws3b{word-spacing:7.182000px;}
.wsf4{word-spacing:7.290000px;}
.wsaf{word-spacing:7.308000px;}
.ws21{word-spacing:7.371000px;}
.ws9a{word-spacing:7.434000px;}
.ws112{word-spacing:7.620000px;}
.wsb2{word-spacing:7.623000px;}
.ws7e{word-spacing:7.686000px;}
.ws100{word-spacing:7.749000px;}
.wsc3{word-spacing:7.812000px;}
.ws9b{word-spacing:7.875000px;}
.ws111{word-spacing:7.920000px;}
.ws40{word-spacing:7.938000px;}
.ws8a{word-spacing:8.001000px;}
.wsbb{word-spacing:8.190000px;}
.wsa8{word-spacing:8.316000px;}
.ws88{word-spacing:8.379000px;}
.ws107{word-spacing:8.493000px;}
.wsde{word-spacing:8.505000px;}
.ws27{word-spacing:8.568000px;}
.wsfb{word-spacing:8.631000px;}
.ws96{word-spacing:8.694000px;}
.wscc{word-spacing:8.757000px;}
.ws90{word-spacing:8.820000px;}
.wsf9{word-spacing:8.883000px;}
.ws4b{word-spacing:8.946000px;}
.ws2c{word-spacing:9.072000px;}
.ws55{word-spacing:9.135000px;}
.wsd9{word-spacing:9.198000px;}
.ws32{word-spacing:9.387000px;}
.ws33{word-spacing:9.513000px;}
.wscb{word-spacing:9.702000px;}
.wsdb{word-spacing:9.765000px;}
._c{margin-left:-16.320000px;}
._b{margin-left:-15.222000px;}
._d{margin-left:-13.770000px;}
._e{margin-left:-12.744000px;}
._12{margin-left:-10.767491px;}
._8{margin-left:-9.135000px;}
._6{margin-left:-7.980000px;}
._13{margin-left:-6.911576px;}
._1{margin-left:-5.880000px;}
._5{margin-left:-3.990000px;}
._3{margin-left:-2.850000px;}
._2{margin-left:-1.140000px;}
._0{width:1.458000px;}
._4{width:2.821500px;}
._a{width:5.550000px;}
._10{width:10.860000px;}
._14{width:14.818500px;}
._f{width:26.520000px;}
._11{width:31.380000px;}
._9{width:227.616000px;}
._7{width:1381.914000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.060000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:36.540000px;}
.fs6{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:62.400000px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:65.415000px;}
.y1{bottom:86.607300px;}
.y6a{bottom:127.560600px;}
.y93{bottom:127.562100px;}
.yc2{bottom:127.566600px;}
.y72{bottom:127.569600px;}
.y59{bottom:127.571100px;}
.ye2{bottom:127.590600px;}
.y132{bottom:131.738400px;}
.yb1{bottom:140.223150px;}
.y94{bottom:140.236650px;}
.y69{bottom:142.559100px;}
.y92{bottom:142.560600px;}
.yc1{bottom:142.565100px;}
.y71{bottom:142.568100px;}
.y58{bottom:142.569600px;}
.ye1{bottom:142.589100px;}
.y109{bottom:145.589250px;}
.y131{bottom:150.488400px;}
.y91{bottom:157.559100px;}
.yc0{bottom:157.563600px;}
.y70{bottom:157.566600px;}
.y57{bottom:157.568100px;}
.ye0{bottom:157.587600px;}
.yb0{bottom:159.721650px;}
.y48{bottom:159.735150px;}
.y108{bottom:164.339250px;}
.y130{bottom:169.238400px;}
.ybf{bottom:172.562100px;}
.y6f{bottom:172.565100px;}
.y56{bottom:172.566600px;}
.ydf{bottom:172.586100px;}
.yaf{bottom:179.220150px;}
.y47{bottom:179.233650px;}
.y107{bottom:183.089250px;}
.ybe{bottom:187.560600px;}
.y6e{bottom:187.563600px;}
.y55{bottom:187.565100px;}
.yde{bottom:187.584600px;}
.y12f{bottom:187.988400px;}
.yae{bottom:198.718650px;}
.y46{bottom:198.732150px;}
.y106{bottom:201.839250px;}
.ybd{bottom:202.559100px;}
.y6d{bottom:202.562100px;}
.y54{bottom:202.563600px;}
.ydd{bottom:202.583100px;}
.y12e{bottom:206.738400px;}
.y90{bottom:210.210750px;}
.y19{bottom:217.248000px;}
.y6c{bottom:217.560600px;}
.y53{bottom:217.562100px;}
.ydc{bottom:217.581600px;}
.y68{bottom:218.202150px;}
.yad{bottom:218.217150px;}
.y45{bottom:218.230650px;}
.y105{bottom:220.589250px;}
.y12d{bottom:225.488400px;}
.y8f{bottom:229.709250px;}
.y6b{bottom:232.559100px;}
.y52{bottom:232.560600px;}
.ydb{bottom:232.580100px;}
.y18{bottom:233.749500px;}
.y67{bottom:237.700650px;}
.yac{bottom:237.715650px;}
.y44{bottom:237.729150px;}
.y1a{bottom:239.132400px;}
.y104{bottom:239.339250px;}
.y12c{bottom:244.238400px;}
.y51{bottom:247.559100px;}
.yda{bottom:247.578600px;}
.y8e{bottom:249.207750px;}
.ybc{bottom:252.493950px;}
.y66{bottom:257.199150px;}
.yab{bottom:257.214150px;}
.y43{bottom:257.227650px;}
.y103{bottom:258.089250px;}
.y17{bottom:258.758250px;}
.yd9{bottom:262.577100px;}
.y12b{bottom:262.988400px;}
.y8d{bottom:268.706250px;}
.ybb{bottom:271.992450px;}
.y16{bottom:275.259750px;}
.y65{bottom:276.697650px;}
.yaa{bottom:276.712650px;}
.y42{bottom:276.726150px;}
.y102{bottom:276.839250px;}
.yd8{bottom:277.575600px;}
.y12a{bottom:281.738400px;}
.y8c{bottom:288.204750px;}
.yba{bottom:291.490950px;}
.y15{bottom:291.761250px;}
.yd7{bottom:292.574100px;}
.y101{bottom:295.589250px;}
.y50{bottom:296.190150px;}
.y64{bottom:296.196150px;}
.ya9{bottom:296.211150px;}
.y41{bottom:296.224650px;}
.y129{bottom:300.488400px;}
.yd6{bottom:307.572600px;}
.y8b{bottom:307.703250px;}
.y14{bottom:308.262750px;}
.yb9{bottom:310.989450px;}
.y100{bottom:314.339250px;}
.y4f{bottom:315.688650px;}
.y63{bottom:315.694650px;}
.ya8{bottom:315.709650px;}
.y40{bottom:315.723150px;}
.y128{bottom:319.238400px;}
.yd5{bottom:322.571100px;}
.y13{bottom:324.764250px;}
.y8a{bottom:327.201750px;}
.yb8{bottom:330.487950px;}
.y4e{bottom:335.187150px;}
.y62{bottom:335.193150px;}
.ya7{bottom:335.208150px;}
.y3f{bottom:335.221650px;}
.yd4{bottom:337.569600px;}
.y127{bottom:337.988400px;}
.y12{bottom:341.265750px;}
.yff{bottom:341.617950px;}
.y89{bottom:346.700250px;}
.yb7{bottom:349.986450px;}
.yd3{bottom:352.568100px;}
.y4d{bottom:354.685650px;}
.y61{bottom:354.691650px;}
.ya6{bottom:354.706650px;}
.y3e{bottom:354.720150px;}
.y126{bottom:356.738400px;}
.y11{bottom:357.767250px;}
.y88{bottom:366.198750px;}
.yd2{bottom:367.566600px;}
.yb6{bottom:369.484950px;}
.y4c{bottom:374.184150px;}
.y60{bottom:374.190150px;}
.ya5{bottom:374.205150px;}
.y3d{bottom:374.218650px;}
.y125{bottom:375.488400px;}
.yfe{bottom:380.315700px;}
.yd1{bottom:382.565100px;}
.y10{bottom:382.776000px;}
.y87{bottom:385.697250px;}
.yb5{bottom:388.983450px;}
.y4b{bottom:393.682650px;}
.y5f{bottom:393.688650px;}
.ya4{bottom:393.703650px;}
.y3c{bottom:393.717150px;}
.y124{bottom:394.238400px;}
.yd0{bottom:397.563600px;}
.yfd{bottom:399.814200px;}
.y86{bottom:405.195750px;}
.yb4{bottom:408.481950px;}
.ycf{bottom:412.562100px;}
.y123{bottom:412.988400px;}
.y4a{bottom:413.181150px;}
.y5e{bottom:413.187150px;}
.ya3{bottom:413.202150px;}
.y3b{bottom:413.215650px;}
.yfc{bottom:419.312700px;}
.y85{bottom:424.694250px;}
.yf{bottom:424.785000px;}
.yce{bottom:427.560600px;}
.yb3{bottom:427.980450px;}
.y122{bottom:431.738400px;}
.y5d{bottom:432.685650px;}
.ya2{bottom:432.700650px;}
.y3a{bottom:432.714150px;}
.yfb{bottom:438.811200px;}
.ye{bottom:441.286500px;}
.ycd{bottom:442.559100px;}
.y84{bottom:444.192750px;}
.yb2{bottom:447.478950px;}
.y121{bottom:450.488400px;}
.y5c{bottom:452.184150px;}
.ya1{bottom:452.199150px;}
.y39{bottom:452.212650px;}
.yfa{bottom:458.309700px;}
.y83{bottom:463.691250px;}
.yd{bottom:466.295250px;}
.y120{bottom:469.238400px;}
.y5b{bottom:471.682650px;}
.ya0{bottom:471.697650px;}
.y38{bottom:471.711150px;}
.yf9{bottom:477.808200px;}
.yc{bottom:482.796750px;}
.y82{bottom:483.189750px;}
.y11f{bottom:487.988400px;}
.ycc{bottom:489.174900px;}
.y5a{bottom:491.181150px;}
.y9f{bottom:491.196150px;}
.y37{bottom:491.209650px;}
.yc4{bottom:495.567750px;}
.yf8{bottom:497.306700px;}
.yb{bottom:499.298250px;}
.y81{bottom:502.688250px;}
.y11e{bottom:506.738400px;}
.ycb{bottom:508.673400px;}
.yc3{bottom:510.566250px;}
.y9e{bottom:510.694650px;}
.y36{bottom:510.708150px;}
.ya{bottom:515.799750px;}
.yf7{bottom:516.805200px;}
.y133{bottom:521.888400px;}
.y80{bottom:522.186750px;}
.y11d{bottom:525.488400px;}
.yca{bottom:528.171900px;}
.y9d{bottom:530.193150px;}
.y35{bottom:530.206650px;}
.y9{bottom:532.301250px;}
.yf6{bottom:536.303700px;}
.y7f{bottom:541.685250px;}
.y11c{bottom:544.238400px;}
.y8{bottom:548.802750px;}
.y9c{bottom:549.691650px;}
.y34{bottom:549.705150px;}
.yf5{bottom:555.802200px;}
.yc9{bottom:556.169700px;}
.y7e{bottom:561.183750px;}
.y11b{bottom:562.988400px;}
.y7{bottom:565.304250px;}
.y9b{bottom:569.190150px;}
.y33{bottom:569.203650px;}
.yc8{bottom:572.671200px;}
.yf4{bottom:575.300700px;}
.y7d{bottom:580.682250px;}
.y11a{bottom:581.738400px;}
.y9a{bottom:588.688650px;}
.y32{bottom:588.702150px;}
.yc7{bottom:589.172700px;}
.y6{bottom:590.313000px;}
.yf3{bottom:594.799200px;}
.y7c{bottom:600.180750px;}
.y119{bottom:600.488400px;}
.yc6{bottom:605.674200px;}
.y99{bottom:608.187150px;}
.y31{bottom:608.200650px;}
.yf2{bottom:614.297700px;}
.y118{bottom:619.238400px;}
.y7b{bottom:619.679250px;}
.yc5{bottom:622.175700px;}
.y98{bottom:627.685650px;}
.y30{bottom:627.699150px;}
.yf1{bottom:633.796200px;}
.y117{bottom:637.988400px;}
.y7a{bottom:639.177750px;}
.y5{bottom:640.828650px;}
.y97{bottom:647.184150px;}
.y2f{bottom:647.197650px;}
.yf0{bottom:653.294700px;}
.y116{bottom:656.738400px;}
.y79{bottom:658.676250px;}
.y4{bottom:660.080700px;}
.y96{bottom:666.682650px;}
.y2e{bottom:666.696150px;}
.yef{bottom:672.793200px;}
.y115{bottom:675.488400px;}
.y78{bottom:678.174750px;}
.y95{bottom:686.181150px;}
.y2d{bottom:686.194650px;}
.y114{bottom:694.238400px;}
.y77{bottom:697.673250px;}
.yee{bottom:700.780650px;}
.y2c{bottom:705.693150px;}
.y113{bottom:712.988400px;}
.y76{bottom:717.171750px;}
.yed{bottom:717.282150px;}
.y2b{bottom:725.191650px;}
.y3{bottom:726.000150px;}
.y112{bottom:731.738400px;}
.yec{bottom:733.783650px;}
.y2a{bottom:744.690150px;}
.y75{bottom:745.172700px;}
.yeb{bottom:750.285150px;}
.y111{bottom:750.488400px;}
.y2{bottom:751.305150px;}
.y74{bottom:761.674200px;}
.y29{bottom:764.188650px;}
.yea{bottom:766.786650px;}
.y110{bottom:769.238400px;}
.y73{bottom:778.175700px;}
.ye9{bottom:783.288150px;}
.y28{bottom:783.687150px;}
.y10f{bottom:787.988400px;}
.ye8{bottom:799.789650px;}
.y27{bottom:803.185650px;}
.y10e{bottom:806.738400px;}
.ye7{bottom:816.291150px;}
.y26{bottom:822.684150px;}
.y10d{bottom:825.488400px;}
.ye6{bottom:832.792650px;}
.y25{bottom:842.182650px;}
.y21{bottom:844.115400px;}
.y10c{bottom:844.238400px;}
.ye5{bottom:849.294150px;}
.y20{bottom:856.861650px;}
.y24{bottom:861.681150px;}
.y10b{bottom:862.988400px;}
.ye4{bottom:865.795650px;}
.y1f{bottom:869.620800px;}
.y23{bottom:881.179650px;}
.y10a{bottom:881.738400px;}
.ye3{bottom:882.297150px;}
.y1e{bottom:890.872050px;}
.y1d{bottom:912.123300px;}
.y22{bottom:923.076300px;}
.y49{bottom:923.249700px;}
.y1c{bottom:924.869550px;}
.ha{height:36.180000px;}
.h9{height:36.675000px;}
.he{height:39.120000px;}
.h2{height:44.010000px;}
.h7{height:45.201000px;}
.h5{height:45.828000px;}
.h6{height:46.455000px;}
.hb{height:46.479000px;}
.hd{height:48.900000px;}
.hc{height:50.652000px;}
.h8{height:51.345000px;}
.h4{height:63.570000px;}
.h3{height:67.536000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:89.291400px;}
.x10{left:98.900700px;}
.xc{left:103.290900px;}
.x3{left:108.788700px;}
.xa{left:114.806400px;}
.x7{left:131.811000px;}
.x2{left:136.634700px;}
.x11{left:144.321300px;}
.xb{left:145.810500px;}
.x9{left:157.326000px;}
.x12{left:177.534750px;}
.xd{left:213.822300px;}
.x4{left:375.624750px;}
.xf{left:447.928800px;}
.xe{left:456.366300px;}
.x8{left:462.089100px;}
.x5{left:466.853100px;}
.x13{left:720.708600px;}
.x6{left:736.653600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.741333pt;}
.v1{vertical-align:18.357333pt;}
.ls1{letter-spacing:-2.533333pt;}
.ls14{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000053pt;}
.ls13{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.186667pt;}
.lsd{letter-spacing:0.194472pt;}
.lse{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.266706pt;}
.ls10{letter-spacing:0.266891pt;}
.ls2{letter-spacing:0.280000pt;}
.ls18{letter-spacing:0.292013pt;}
.ls19{letter-spacing:0.293333pt;}
.lsb{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426139pt;}
.ls7{letter-spacing:0.426667pt;}
.ls11{letter-spacing:4.780312pt;}
.ls3{letter-spacing:5.885600pt;}
.ls4{letter-spacing:8.133600pt;}
.ws1{word-spacing:-17.957333pt;}
.ws51{word-spacing:-14.504000pt;}
.ws2{word-spacing:-14.365867pt;}
.ws8e{word-spacing:-14.280000pt;}
.ws1b{word-spacing:-14.000000pt;}
.ws102{word-spacing:-13.813333pt;}
.ws4{word-spacing:-12.666667pt;}
.ws53{word-spacing:-12.000000pt;}
.ws103{word-spacing:-11.477333pt;}
.ws101{word-spacing:-11.050667pt;}
.ws5{word-spacing:-10.360000pt;}
.ws3{word-spacing:-10.133333pt;}
.ws52{word-spacing:-8.412320pt;}
.ws6{word-spacing:-8.288000pt;}
.ws130{word-spacing:-2.933333pt;}
.ws126{word-spacing:-2.880000pt;}
.wsce{word-spacing:-2.856000pt;}
.ws68{word-spacing:-2.800000pt;}
.ws10e{word-spacing:-2.773333pt;}
.wsa1{word-spacing:-2.744000pt;}
.ws128{word-spacing:-2.720000pt;}
.ws61{word-spacing:-2.688000pt;}
.ws120{word-spacing:-2.666667pt;}
.wsc6{word-spacing:-2.632000pt;}
.ws129{word-spacing:-2.613333pt;}
.wsc{word-spacing:-2.584000pt;}
.ws45{word-spacing:-2.576000pt;}
.ws7a{word-spacing:-2.520000pt;}
.wse7{word-spacing:-2.464000pt;}
.wsfd{word-spacing:-2.448000pt;}
.wse0{word-spacing:-2.408000pt;}
.wsbe{word-spacing:-2.296000pt;}
.ws6f{word-spacing:-2.256000pt;}
.ws54{word-spacing:-2.240000pt;}
.ws114{word-spacing:-2.186667pt;}
.ws91{word-spacing:-2.184000pt;}
.ws115{word-spacing:-2.133333pt;}
.wsda{word-spacing:-2.128000pt;}
.ws74{word-spacing:-2.072000pt;}
.ws38{word-spacing:-2.016000pt;}
.wsee{word-spacing:-1.968000pt;}
.ws137{word-spacing:-1.920000pt;}
.wsc2{word-spacing:-1.904000pt;}
.wsef{word-spacing:-1.872000pt;}
.ws138{word-spacing:-1.866667pt;}
.ws2f{word-spacing:-1.848000pt;}
.wsf6{word-spacing:-1.824000pt;}
.ws2e{word-spacing:-1.792000pt;}
.wsc7{word-spacing:-1.736000pt;}
.wsa5{word-spacing:-1.680000pt;}
.ws18{word-spacing:-1.672000pt;}
.ws48{word-spacing:-1.624000pt;}
.ws85{word-spacing:-1.568000pt;}
.ws8b{word-spacing:-1.512000pt;}
.ws132{word-spacing:-1.493333pt;}
.wsb6{word-spacing:-1.456000pt;}
.ws133{word-spacing:-1.440000pt;}
.ws82{word-spacing:-1.400000pt;}
.wsd5{word-spacing:-1.392000pt;}
.wsab{word-spacing:-1.344000pt;}
.ws43{word-spacing:-1.288000pt;}
.wse6{word-spacing:-1.232000pt;}
.wsea{word-spacing:-1.200000pt;}
.wsa6{word-spacing:-1.176000pt;}
.ws17{word-spacing:-1.165333pt;}
.ws77{word-spacing:-1.120000pt;}
.wsf5{word-spacing:-1.104000pt;}
.wsbc{word-spacing:-1.064000pt;}
.ws70{word-spacing:-1.056000pt;}
.wsf{word-spacing:-1.013333pt;}
.ws24{word-spacing:-1.008000pt;}
.ws41{word-spacing:-0.952000pt;}
.ws10d{word-spacing:-0.912000pt;}
.wse5{word-spacing:-0.896000pt;}
.ws108{word-spacing:-0.861333pt;}
.ws10f{word-spacing:-0.853333pt;}
.ws78{word-spacing:-0.840000pt;}
.ws75{word-spacing:-0.784000pt;}
.wse8{word-spacing:-0.768000pt;}
.ws76{word-spacing:-0.728000pt;}
.ws9c{word-spacing:-0.672000pt;}
.ws71{word-spacing:-0.624000pt;}
.wsa9{word-spacing:-0.616000pt;}
.ws10a{word-spacing:-0.608000pt;}
.ws127{word-spacing:-0.586667pt;}
.ws95{word-spacing:-0.560000pt;}
.ws20{word-spacing:-0.504000pt;}
.ws2b{word-spacing:-0.448000pt;}
.ws11f{word-spacing:-0.426667pt;}
.wsd7{word-spacing:-0.392000pt;}
.wsfc{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.354667pt;}
.ws60{word-spacing:-0.336000pt;}
.ws64{word-spacing:-0.280000pt;}
.ws12b{word-spacing:-0.266667pt;}
.ws72{word-spacing:-0.240000pt;}
.ws69{word-spacing:-0.224000pt;}
.wsb5{word-spacing:-0.168000pt;}
.wsa2{word-spacing:-0.112000pt;}
.ws12{word-spacing:-0.101333pt;}
.ws6e{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.074667pt;}
.ws65{word-spacing:-0.056000pt;}
.ws7{word-spacing:0.000000pt;}
.wscf{word-spacing:0.048000pt;}
.ws10b{word-spacing:0.050667pt;}
.ws46{word-spacing:0.056000pt;}
.ws134{word-spacing:0.106667pt;}
.ws23{word-spacing:0.112000pt;}
.ws12c{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.168000pt;}
.wsf8{word-spacing:0.192000pt;}
.ws81{word-spacing:0.224000pt;}
.ws131{word-spacing:0.266667pt;}
.ws42{word-spacing:0.280000pt;}
.ws9e{word-spacing:0.336000pt;}
.ws9d{word-spacing:0.384000pt;}
.ws8c{word-spacing:0.392000pt;}
.wsa{word-spacing:0.405333pt;}
.ws123{word-spacing:0.426667pt;}
.wsc1{word-spacing:0.448000pt;}
.ws62{word-spacing:0.504000pt;}
.ws16{word-spacing:0.506667pt;}
.ws11c{word-spacing:0.533333pt;}
.wsd8{word-spacing:0.560000pt;}
.wsf0{word-spacing:0.576000pt;}
.ws110{word-spacing:0.586667pt;}
.ws4a{word-spacing:0.616000pt;}
.wse1{word-spacing:0.624000pt;}
.ws135{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.672000pt;}
.ws7c{word-spacing:0.728000pt;}
.ws26{word-spacing:0.784000pt;}
.ws94{word-spacing:0.840000pt;}
.wsb4{word-spacing:0.896000pt;}
.wsf7{word-spacing:0.912000pt;}
.ws2d{word-spacing:0.952000pt;}
.ws6c{word-spacing:1.008000pt;}
.ws6b{word-spacing:1.056000pt;}
.ws13{word-spacing:1.064000pt;}
.ws1a{word-spacing:1.080000pt;}
.wsd0{word-spacing:1.104000pt;}
.ws14{word-spacing:1.114667pt;}
.wsc9{word-spacing:1.120000pt;}
.wsd1{word-spacing:1.152000pt;}
.ws4e{word-spacing:1.176000pt;}
.wseb{word-spacing:1.200000pt;}
.ws22{word-spacing:1.232000pt;}
.ws8{word-spacing:1.248000pt;}
.wsff{word-spacing:1.296000pt;}
.ws11{word-spacing:1.317333pt;}
.ws28{word-spacing:1.344000pt;}
.ws109{word-spacing:1.368000pt;}
.wsf2{word-spacing:1.392000pt;}
.ws39{word-spacing:1.400000pt;}
.ws10{word-spacing:1.418667pt;}
.ws11b{word-spacing:1.440000pt;}
.ws31{word-spacing:1.456000pt;}
.ws105{word-spacing:1.469333pt;}
.wsec{word-spacing:1.488000pt;}
.ws11a{word-spacing:1.493333pt;}
.wsbf{word-spacing:1.512000pt;}
.ws5d{word-spacing:1.568000pt;}
.wsd2{word-spacing:1.632000pt;}
.ws44{word-spacing:1.680000pt;}
.ws5b{word-spacing:1.736000pt;}
.wsae{word-spacing:1.776000pt;}
.ws34{word-spacing:1.792000pt;}
.wsa3{word-spacing:1.848000pt;}
.ws136{word-spacing:1.866667pt;}
.ws73{word-spacing:1.872000pt;}
.wsa4{word-spacing:1.904000pt;}
.ws117{word-spacing:1.920000pt;}
.ws5c{word-spacing:1.960000pt;}
.ws116{word-spacing:1.973333pt;}
.ws9{word-spacing:2.016000pt;}
.ws4d{word-spacing:2.072000pt;}
.wsc8{word-spacing:2.128000pt;}
.ws113{word-spacing:2.133333pt;}
.wsca{word-spacing:2.184000pt;}
.wse9{word-spacing:2.208000pt;}
.wsba{word-spacing:2.240000pt;}
.ws58{word-spacing:2.296000pt;}
.ws8d{word-spacing:2.304000pt;}
.ws79{word-spacing:2.352000pt;}
.ws25{word-spacing:2.408000pt;}
.ws15{word-spacing:2.432000pt;}
.ws3e{word-spacing:2.464000pt;}
.ws99{word-spacing:2.520000pt;}
.ws1e{word-spacing:2.576000pt;}
.ws6a{word-spacing:2.632000pt;}
.ws37{word-spacing:2.688000pt;}
.ws59{word-spacing:2.744000pt;}
.ws30{word-spacing:2.800000pt;}
.wsfe{word-spacing:2.880000pt;}
.ws80{word-spacing:2.912000pt;}
.ws57{word-spacing:2.968000pt;}
.ws2a{word-spacing:3.024000pt;}
.ws12d{word-spacing:3.040000pt;}
.ws4f{word-spacing:3.080000pt;}
.ws47{word-spacing:3.136000pt;}
.wsd{word-spacing:3.141333pt;}
.ws12e{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.192000pt;}
.ws19{word-spacing:3.242667pt;}
.ws3d{word-spacing:3.248000pt;}
.wsf1{word-spacing:3.312000pt;}
.ws3c{word-spacing:3.360000pt;}
.ws83{word-spacing:3.416000pt;}
.ws106{word-spacing:3.445333pt;}
.wsdc{word-spacing:3.472000pt;}
.wsaa{word-spacing:3.528000pt;}
.wsb1{word-spacing:3.584000pt;}
.ws10c{word-spacing:3.597333pt;}
.ws5a{word-spacing:3.640000pt;}
.ws7f{word-spacing:3.696000pt;}
.ws86{word-spacing:3.752000pt;}
.wsdf{word-spacing:3.808000pt;}
.ws1f{word-spacing:3.864000pt;}
.wsf3{word-spacing:3.888000pt;}
.ws125{word-spacing:3.893333pt;}
.ws92{word-spacing:3.920000pt;}
.wse2{word-spacing:3.936000pt;}
.wsad{word-spacing:3.976000pt;}
.wse{word-spacing:4.002667pt;}
.wsb3{word-spacing:4.032000pt;}
.ws56{word-spacing:4.088000pt;}
.wsac{word-spacing:4.144000pt;}
.wscd{word-spacing:4.200000pt;}
.ws6d{word-spacing:4.224000pt;}
.ws7d{word-spacing:4.256000pt;}
.wsed{word-spacing:4.272000pt;}
.ws67{word-spacing:4.312000pt;}
.ws12a{word-spacing:4.320000pt;}
.ws1c{word-spacing:4.368000pt;}
.ws124{word-spacing:4.373333pt;}
.wsd3{word-spacing:4.416000pt;}
.wsb0{word-spacing:4.424000pt;}
.ws119{word-spacing:4.426667pt;}
.wsbd{word-spacing:4.480000pt;}
.ws118{word-spacing:4.533333pt;}
.ws63{word-spacing:4.536000pt;}
.wsd4{word-spacing:4.560000pt;}
.ws12f{word-spacing:4.586667pt;}
.ws87{word-spacing:4.592000pt;}
.wsd6{word-spacing:4.608000pt;}
.ws97{word-spacing:4.648000pt;}
.wsb8{word-spacing:4.704000pt;}
.ws49{word-spacing:4.760000pt;}
.wse3{word-spacing:4.800000pt;}
.ws4c{word-spacing:4.816000pt;}
.ws93{word-spacing:4.872000pt;}
.ws9f{word-spacing:4.896000pt;}
.wsc5{word-spacing:4.928000pt;}
.ws121{word-spacing:5.013333pt;}
.ws3a{word-spacing:5.040000pt;}
.wsc4{word-spacing:5.096000pt;}
.ws98{word-spacing:5.152000pt;}
.wsb9{word-spacing:5.208000pt;}
.ws122{word-spacing:5.226667pt;}
.wsa0{word-spacing:5.232000pt;}
.ws66{word-spacing:5.264000pt;}
.ws84{word-spacing:5.376000pt;}
.wsc0{word-spacing:5.432000pt;}
.ws29{word-spacing:5.544000pt;}
.ws3f{word-spacing:5.600000pt;}
.ws8f{word-spacing:5.656000pt;}
.wsdd{word-spacing:5.712000pt;}
.ws5f{word-spacing:5.768000pt;}
.wse4{word-spacing:5.856000pt;}
.ws35{word-spacing:5.880000pt;}
.wsa7{word-spacing:5.992000pt;}
.ws89{word-spacing:6.048000pt;}
.ws11d{word-spacing:6.080000pt;}
.ws36{word-spacing:6.104000pt;}
.ws104{word-spacing:6.130667pt;}
.ws50{word-spacing:6.216000pt;}
.wsfa{word-spacing:6.272000pt;}
.ws11e{word-spacing:6.293333pt;}
.wsb7{word-spacing:6.328000pt;}
.ws3b{word-spacing:6.384000pt;}
.wsf4{word-spacing:6.480000pt;}
.wsaf{word-spacing:6.496000pt;}
.ws21{word-spacing:6.552000pt;}
.ws9a{word-spacing:6.608000pt;}
.ws112{word-spacing:6.773333pt;}
.wsb2{word-spacing:6.776000pt;}
.ws7e{word-spacing:6.832000pt;}
.ws100{word-spacing:6.888000pt;}
.wsc3{word-spacing:6.944000pt;}
.ws9b{word-spacing:7.000000pt;}
.ws111{word-spacing:7.040000pt;}
.ws40{word-spacing:7.056000pt;}
.ws8a{word-spacing:7.112000pt;}
.wsbb{word-spacing:7.280000pt;}
.wsa8{word-spacing:7.392000pt;}
.ws88{word-spacing:7.448000pt;}
.ws107{word-spacing:7.549333pt;}
.wsde{word-spacing:7.560000pt;}
.ws27{word-spacing:7.616000pt;}
.wsfb{word-spacing:7.672000pt;}
.ws96{word-spacing:7.728000pt;}
.wscc{word-spacing:7.784000pt;}
.ws90{word-spacing:7.840000pt;}
.wsf9{word-spacing:7.896000pt;}
.ws4b{word-spacing:7.952000pt;}
.ws2c{word-spacing:8.064000pt;}
.ws55{word-spacing:8.120000pt;}
.wsd9{word-spacing:8.176000pt;}
.ws32{word-spacing:8.344000pt;}
.ws33{word-spacing:8.456000pt;}
.wscb{word-spacing:8.624000pt;}
.wsdb{word-spacing:8.680000pt;}
._c{margin-left:-14.506667pt;}
._b{margin-left:-13.530667pt;}
._d{margin-left:-12.240000pt;}
._e{margin-left:-11.328000pt;}
._12{margin-left:-9.571103pt;}
._8{margin-left:-8.120000pt;}
._6{margin-left:-7.093333pt;}
._13{margin-left:-6.143623pt;}
._1{margin-left:-5.226667pt;}
._5{margin-left:-3.546667pt;}
._3{margin-left:-2.533333pt;}
._2{margin-left:-1.013333pt;}
._0{width:1.296000pt;}
._4{width:2.508000pt;}
._a{width:4.933333pt;}
._10{width:9.653333pt;}
._14{width:13.172000pt;}
._f{width:23.573333pt;}
._11{width:27.893333pt;}
._9{width:202.325333pt;}
._7{width:1228.368000pt;}
.fs9{font-size:29.386667pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:32.480000pt;}
.fs6{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:55.466667pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:58.146667pt;}
.y1{bottom:76.984267pt;}
.y6a{bottom:113.387200pt;}
.y93{bottom:113.388533pt;}
.yc2{bottom:113.392533pt;}
.y72{bottom:113.395200pt;}
.y59{bottom:113.396533pt;}
.ye2{bottom:113.413867pt;}
.y132{bottom:117.100800pt;}
.yb1{bottom:124.642800pt;}
.y94{bottom:124.654800pt;}
.y69{bottom:126.719200pt;}
.y92{bottom:126.720533pt;}
.yc1{bottom:126.724533pt;}
.y71{bottom:126.727200pt;}
.y58{bottom:126.728533pt;}
.ye1{bottom:126.745867pt;}
.y109{bottom:129.412667pt;}
.y131{bottom:133.767467pt;}
.y91{bottom:140.052533pt;}
.yc0{bottom:140.056533pt;}
.y70{bottom:140.059200pt;}
.y57{bottom:140.060533pt;}
.ye0{bottom:140.077867pt;}
.yb0{bottom:141.974800pt;}
.y48{bottom:141.986800pt;}
.y108{bottom:146.079333pt;}
.y130{bottom:150.434133pt;}
.ybf{bottom:153.388533pt;}
.y6f{bottom:153.391200pt;}
.y56{bottom:153.392533pt;}
.ydf{bottom:153.409867pt;}
.yaf{bottom:159.306800pt;}
.y47{bottom:159.318800pt;}
.y107{bottom:162.746000pt;}
.ybe{bottom:166.720533pt;}
.y6e{bottom:166.723200pt;}
.y55{bottom:166.724533pt;}
.yde{bottom:166.741867pt;}
.y12f{bottom:167.100800pt;}
.yae{bottom:176.638800pt;}
.y46{bottom:176.650800pt;}
.y106{bottom:179.412667pt;}
.ybd{bottom:180.052533pt;}
.y6d{bottom:180.055200pt;}
.y54{bottom:180.056533pt;}
.ydd{bottom:180.073867pt;}
.y12e{bottom:183.767467pt;}
.y90{bottom:186.854000pt;}
.y19{bottom:193.109333pt;}
.y6c{bottom:193.387200pt;}
.y53{bottom:193.388533pt;}
.ydc{bottom:193.405867pt;}
.y68{bottom:193.957467pt;}
.yad{bottom:193.970800pt;}
.y45{bottom:193.982800pt;}
.y105{bottom:196.079333pt;}
.y12d{bottom:200.434133pt;}
.y8f{bottom:204.186000pt;}
.y6b{bottom:206.719200pt;}
.y52{bottom:206.720533pt;}
.ydb{bottom:206.737867pt;}
.y18{bottom:207.777333pt;}
.y67{bottom:211.289467pt;}
.yac{bottom:211.302800pt;}
.y44{bottom:211.314800pt;}
.y1a{bottom:212.562133pt;}
.y104{bottom:212.746000pt;}
.y12c{bottom:217.100800pt;}
.y51{bottom:220.052533pt;}
.yda{bottom:220.069867pt;}
.y8e{bottom:221.518000pt;}
.ybc{bottom:224.439067pt;}
.y66{bottom:228.621467pt;}
.yab{bottom:228.634800pt;}
.y43{bottom:228.646800pt;}
.y103{bottom:229.412667pt;}
.y17{bottom:230.007333pt;}
.yd9{bottom:233.401867pt;}
.y12b{bottom:233.767467pt;}
.y8d{bottom:238.850000pt;}
.ybb{bottom:241.771067pt;}
.y16{bottom:244.675333pt;}
.y65{bottom:245.953467pt;}
.yaa{bottom:245.966800pt;}
.y42{bottom:245.978800pt;}
.y102{bottom:246.079333pt;}
.yd8{bottom:246.733867pt;}
.y12a{bottom:250.434133pt;}
.y8c{bottom:256.182000pt;}
.yba{bottom:259.103067pt;}
.y15{bottom:259.343333pt;}
.yd7{bottom:260.065867pt;}
.y101{bottom:262.746000pt;}
.y50{bottom:263.280133pt;}
.y64{bottom:263.285467pt;}
.ya9{bottom:263.298800pt;}
.y41{bottom:263.310800pt;}
.y129{bottom:267.100800pt;}
.yd6{bottom:273.397867pt;}
.y8b{bottom:273.514000pt;}
.y14{bottom:274.011333pt;}
.yb9{bottom:276.435067pt;}
.y100{bottom:279.412667pt;}
.y4f{bottom:280.612133pt;}
.y63{bottom:280.617467pt;}
.ya8{bottom:280.630800pt;}
.y40{bottom:280.642800pt;}
.y128{bottom:283.767467pt;}
.yd5{bottom:286.729867pt;}
.y13{bottom:288.679333pt;}
.y8a{bottom:290.846000pt;}
.yb8{bottom:293.767067pt;}
.y4e{bottom:297.944133pt;}
.y62{bottom:297.949467pt;}
.ya7{bottom:297.962800pt;}
.y3f{bottom:297.974800pt;}
.yd4{bottom:300.061867pt;}
.y127{bottom:300.434133pt;}
.y12{bottom:303.347333pt;}
.yff{bottom:303.660400pt;}
.y89{bottom:308.178000pt;}
.yb7{bottom:311.099067pt;}
.yd3{bottom:313.393867pt;}
.y4d{bottom:315.276133pt;}
.y61{bottom:315.281467pt;}
.ya6{bottom:315.294800pt;}
.y3e{bottom:315.306800pt;}
.y126{bottom:317.100800pt;}
.y11{bottom:318.015333pt;}
.y88{bottom:325.510000pt;}
.yd2{bottom:326.725867pt;}
.yb6{bottom:328.431067pt;}
.y4c{bottom:332.608133pt;}
.y60{bottom:332.613467pt;}
.ya5{bottom:332.626800pt;}
.y3d{bottom:332.638800pt;}
.y125{bottom:333.767467pt;}
.yfe{bottom:338.058400pt;}
.yd1{bottom:340.057867pt;}
.y10{bottom:340.245333pt;}
.y87{bottom:342.842000pt;}
.yb5{bottom:345.763067pt;}
.y4b{bottom:349.940133pt;}
.y5f{bottom:349.945467pt;}
.ya4{bottom:349.958800pt;}
.y3c{bottom:349.970800pt;}
.y124{bottom:350.434133pt;}
.yd0{bottom:353.389867pt;}
.yfd{bottom:355.390400pt;}
.y86{bottom:360.174000pt;}
.yb4{bottom:363.095067pt;}
.ycf{bottom:366.721867pt;}
.y123{bottom:367.100800pt;}
.y4a{bottom:367.272133pt;}
.y5e{bottom:367.277467pt;}
.ya3{bottom:367.290800pt;}
.y3b{bottom:367.302800pt;}
.yfc{bottom:372.722400pt;}
.y85{bottom:377.506000pt;}
.yf{bottom:377.586667pt;}
.yce{bottom:380.053867pt;}
.yb3{bottom:380.427067pt;}
.y122{bottom:383.767467pt;}
.y5d{bottom:384.609467pt;}
.ya2{bottom:384.622800pt;}
.y3a{bottom:384.634800pt;}
.yfb{bottom:390.054400pt;}
.ye{bottom:392.254667pt;}
.ycd{bottom:393.385867pt;}
.y84{bottom:394.838000pt;}
.yb2{bottom:397.759067pt;}
.y121{bottom:400.434133pt;}
.y5c{bottom:401.941467pt;}
.ya1{bottom:401.954800pt;}
.y39{bottom:401.966800pt;}
.yfa{bottom:407.386400pt;}
.y83{bottom:412.170000pt;}
.yd{bottom:414.484667pt;}
.y120{bottom:417.100800pt;}
.y5b{bottom:419.273467pt;}
.ya0{bottom:419.286800pt;}
.y38{bottom:419.298800pt;}
.yf9{bottom:424.718400pt;}
.yc{bottom:429.152667pt;}
.y82{bottom:429.502000pt;}
.y11f{bottom:433.767467pt;}
.ycc{bottom:434.822133pt;}
.y5a{bottom:436.605467pt;}
.y9f{bottom:436.618800pt;}
.y37{bottom:436.630800pt;}
.yc4{bottom:440.504667pt;}
.yf8{bottom:442.050400pt;}
.yb{bottom:443.820667pt;}
.y81{bottom:446.834000pt;}
.y11e{bottom:450.434133pt;}
.ycb{bottom:452.154133pt;}
.yc3{bottom:453.836667pt;}
.y9e{bottom:453.950800pt;}
.y36{bottom:453.962800pt;}
.ya{bottom:458.488667pt;}
.yf7{bottom:459.382400pt;}
.y133{bottom:463.900800pt;}
.y80{bottom:464.166000pt;}
.y11d{bottom:467.100800pt;}
.yca{bottom:469.486133pt;}
.y9d{bottom:471.282800pt;}
.y35{bottom:471.294800pt;}
.y9{bottom:473.156667pt;}
.yf6{bottom:476.714400pt;}
.y7f{bottom:481.498000pt;}
.y11c{bottom:483.767467pt;}
.y8{bottom:487.824667pt;}
.y9c{bottom:488.614800pt;}
.y34{bottom:488.626800pt;}
.yf5{bottom:494.046400pt;}
.yc9{bottom:494.373067pt;}
.y7e{bottom:498.830000pt;}
.y11b{bottom:500.434133pt;}
.y7{bottom:502.492667pt;}
.y9b{bottom:505.946800pt;}
.y33{bottom:505.958800pt;}
.yc8{bottom:509.041067pt;}
.yf4{bottom:511.378400pt;}
.y7d{bottom:516.162000pt;}
.y11a{bottom:517.100800pt;}
.y9a{bottom:523.278800pt;}
.y32{bottom:523.290800pt;}
.yc7{bottom:523.709067pt;}
.y6{bottom:524.722667pt;}
.yf3{bottom:528.710400pt;}
.y7c{bottom:533.494000pt;}
.y119{bottom:533.767467pt;}
.yc6{bottom:538.377067pt;}
.y99{bottom:540.610800pt;}
.y31{bottom:540.622800pt;}
.yf2{bottom:546.042400pt;}
.y118{bottom:550.434133pt;}
.y7b{bottom:550.826000pt;}
.yc5{bottom:553.045067pt;}
.y98{bottom:557.942800pt;}
.y30{bottom:557.954800pt;}
.yf1{bottom:563.374400pt;}
.y117{bottom:567.100800pt;}
.y7a{bottom:568.158000pt;}
.y5{bottom:569.625467pt;}
.y97{bottom:575.274800pt;}
.y2f{bottom:575.286800pt;}
.yf0{bottom:580.706400pt;}
.y116{bottom:583.767467pt;}
.y79{bottom:585.490000pt;}
.y4{bottom:586.738400pt;}
.y96{bottom:592.606800pt;}
.y2e{bottom:592.618800pt;}
.yef{bottom:598.038400pt;}
.y115{bottom:600.434133pt;}
.y78{bottom:602.822000pt;}
.y95{bottom:609.938800pt;}
.y2d{bottom:609.950800pt;}
.y114{bottom:617.100800pt;}
.y77{bottom:620.154000pt;}
.yee{bottom:622.916133pt;}
.y2c{bottom:627.282800pt;}
.y113{bottom:633.767467pt;}
.y76{bottom:637.486000pt;}
.yed{bottom:637.584133pt;}
.y2b{bottom:644.614800pt;}
.y3{bottom:645.333467pt;}
.y112{bottom:650.434133pt;}
.yec{bottom:652.252133pt;}
.y2a{bottom:661.946800pt;}
.y75{bottom:662.375733pt;}
.yeb{bottom:666.920133pt;}
.y111{bottom:667.100800pt;}
.y2{bottom:667.826800pt;}
.y74{bottom:677.043733pt;}
.y29{bottom:679.278800pt;}
.yea{bottom:681.588133pt;}
.y110{bottom:683.767467pt;}
.y73{bottom:691.711733pt;}
.ye9{bottom:696.256133pt;}
.y28{bottom:696.610800pt;}
.y10f{bottom:700.434133pt;}
.ye8{bottom:710.924133pt;}
.y27{bottom:713.942800pt;}
.y10e{bottom:717.100800pt;}
.ye7{bottom:725.592133pt;}
.y26{bottom:731.274800pt;}
.y10d{bottom:733.767467pt;}
.ye6{bottom:740.260133pt;}
.y25{bottom:748.606800pt;}
.y21{bottom:750.324800pt;}
.y10c{bottom:750.434133pt;}
.ye5{bottom:754.928133pt;}
.y20{bottom:761.654800pt;}
.y24{bottom:765.938800pt;}
.y10b{bottom:767.100800pt;}
.ye4{bottom:769.596133pt;}
.y1f{bottom:772.996267pt;}
.y23{bottom:783.270800pt;}
.y10a{bottom:783.767467pt;}
.ye3{bottom:784.264133pt;}
.y1e{bottom:791.886267pt;}
.y1d{bottom:810.776267pt;}
.y22{bottom:820.512267pt;}
.y49{bottom:820.666400pt;}
.y1c{bottom:822.106267pt;}
.ha{height:32.160000pt;}
.h9{height:32.600000pt;}
.he{height:34.773333pt;}
.h2{height:39.120000pt;}
.h7{height:40.178667pt;}
.h5{height:40.736000pt;}
.h6{height:41.293333pt;}
.hb{height:41.314667pt;}
.hd{height:43.466667pt;}
.hc{height:45.024000pt;}
.h8{height:45.640000pt;}
.h4{height:56.506667pt;}
.h3{height:60.032000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:79.370133pt;}
.x10{left:87.911733pt;}
.xc{left:91.814133pt;}
.x3{left:96.701067pt;}
.xa{left:102.050133pt;}
.x7{left:117.165333pt;}
.x2{left:121.453067pt;}
.x11{left:128.285600pt;}
.xb{left:129.609333pt;}
.x9{left:139.845333pt;}
.x12{left:157.808667pt;}
.xd{left:190.064267pt;}
.x4{left:333.888667pt;}
.xf{left:398.158933pt;}
.xe{left:405.658933pt;}
.x8{left:410.745867pt;}
.x5{left:414.980533pt;}
.x13{left:640.629867pt;}
.x6{left:654.803200pt;}
}

