
    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_7f85daf270c7f6c8c15c3552.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_b51806125a25e1c4e4b8eb70.woff')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_9eb4dc93a4472f271a3d31a4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.842285;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_be7ba8c05e9789161d403d97.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_779d4462d97eb8ab442ea7f6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_eb0cfb4c73d4da1556ffc2c8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_747c41f768c01d564ba0f454.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-4.302720px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.302720px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:34.541280px;}
.v3{vertical-align:39.600000px;}
.ls4b{letter-spacing:-3.884400px;}
.ls4a{letter-spacing:-2.390400px;}
.ls29{letter-spacing:-2.304000px;}
.lsa{letter-spacing:-1.584000px;}
.ls7b{letter-spacing:-1.440000px;}
.ls47{letter-spacing:-1.296000px;}
.ls20{letter-spacing:-1.152000px;}
.ls72{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.916560px;}
.lsf{letter-spacing:-0.864000px;}
.ls4d{letter-spacing:-0.836640px;}
.ls39{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.682560px;}
.ls37{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.576000px;}
.ls3d{letter-spacing:-0.504000px;}
.ls7f{letter-spacing:-0.434160px;}
.lsc{letter-spacing:-0.432000px;}
.ls6e{letter-spacing:-0.358560px;}
.ls2b{letter-spacing:-0.337680px;}
.ls4e{letter-spacing:-0.298800px;}
.ls4f{letter-spacing:-0.239040px;}
.ls6a{letter-spacing:-0.227520px;}
.ls16{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.192960px;}
.ls33{letter-spacing:-0.167040px;}
.lsd{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.072000px;}
.ls4c{letter-spacing:-0.059760px;}
.ls9{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.056880px;}
.ls3c{letter-spacing:0.072000px;}
.ls6c{letter-spacing:0.119520px;}
.ls36{letter-spacing:0.136800px;}
.ls8{letter-spacing:0.144000px;}
.ls51{letter-spacing:0.170640px;}
.ls0{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.239040px;}
.ls46{letter-spacing:0.259920px;}
.ls3a{letter-spacing:0.266400px;}
.ls19{letter-spacing:0.280800px;}
.ls2{letter-spacing:0.288000px;}
.ls6b{letter-spacing:0.298800px;}
.ls54{letter-spacing:0.328680px;}
.ls2a{letter-spacing:0.385920px;}
.ls6d{letter-spacing:0.478080px;}
.ls78{letter-spacing:0.504000px;}
.ls59{letter-spacing:0.513360px;}
.ls22{letter-spacing:0.576000px;}
.ls32{letter-spacing:0.648000px;}
.ls61{letter-spacing:0.657360px;}
.ls58{letter-spacing:0.666720px;}
.ls66{letter-spacing:0.693216px;}
.ls1d{letter-spacing:0.864000px;}
.ls1b{letter-spacing:1.584000px;}
.ls28{letter-spacing:2.304000px;}
.ls2e{letter-spacing:3.009600px;}
.ls11{letter-spacing:3.024000px;}
.ls4{letter-spacing:3.744000px;}
.ls12{letter-spacing:4.456800px;}
.ls13{letter-spacing:4.464000px;}
.ls34{letter-spacing:5.184000px;}
.ls27{letter-spacing:5.904000px;}
.ls1a{letter-spacing:6.624000px;}
.ls3{letter-spacing:7.344000px;}
.ls3f{letter-spacing:8.064000px;}
.ls1e{letter-spacing:8.784000px;}
.ls71{letter-spacing:9.504000px;}
.ls3b{letter-spacing:10.216800px;}
.ls38{letter-spacing:10.224000px;}
.ls2d{letter-spacing:10.944000px;}
.ls14{letter-spacing:11.664000px;}
.ls79{letter-spacing:12.384000px;}
.ls23{letter-spacing:13.104000px;}
.ls1c{letter-spacing:13.824000px;}
.ls7a{letter-spacing:14.544000px;}
.ls70{letter-spacing:15.264000px;}
.ls24{letter-spacing:15.984000px;}
.ls2f{letter-spacing:18.864000px;}
.ls73{letter-spacing:19.584000px;}
.ls74{letter-spacing:21.744000px;}
.ls5{letter-spacing:22.456800px;}
.ls6{letter-spacing:22.464000px;}
.ls75{letter-spacing:23.184000px;}
.ls3e{letter-spacing:23.896800px;}
.ls7{letter-spacing:23.904000px;}
.ls1{letter-spacing:24.624000px;}
.ls35{letter-spacing:26.056800px;}
.ls2c{letter-spacing:26.064000px;}
.ls18{letter-spacing:28.224000px;}
.ls77{letter-spacing:28.944000px;}
.ls25{letter-spacing:31.096800px;}
.ls7c{letter-spacing:31.104000px;}
.ls26{letter-spacing:32.544000px;}
.ls76{letter-spacing:38.304000px;}
.ls6f{letter-spacing:39.744000px;}
.ls10{letter-spacing:54.864000px;}
.ls5a{letter-spacing:58.266000px;}
.ls31{letter-spacing:64.224000px;}
.ls42{letter-spacing:68.365440px;}
.ls7e{letter-spacing:72.144000px;}
.ls57{letter-spacing:79.235784px;}
.ls5f{letter-spacing:82.050480px;}
.ls62{letter-spacing:98.604000px;}
.ls64{letter-spacing:102.189600px;}
.ls5e{letter-spacing:104.340960px;}
.ls7d{letter-spacing:112.464000px;}
.ls5c{letter-spacing:115.874640px;}
.ls67{letter-spacing:119.460240px;}
.ls5d{letter-spacing:120.894480px;}
.ls60{letter-spacing:132.428160px;}
.ls63{letter-spacing:136.013760px;}
.ls41{letter-spacing:145.396080px;}
.ls69{letter-spacing:148.981680px;}
.ls5b{letter-spacing:157.646880px;}
.ls68{letter-spacing:162.666720px;}
.ls55{letter-spacing:189.319680px;}
.ls30{letter-spacing:192.384000px;}
.ls56{letter-spacing:208.741680px;}
.ls65{letter-spacing:225.295200px;}
.ls40{letter-spacing:282.183840px;}
.ls53{letter-spacing:323.958960px;}
.ls45{letter-spacing:355.631760px;}
.ls43{letter-spacing:502.521840px;}
.ls44{letter-spacing:588.157920px;}
.ls15{letter-spacing:843.984000px;}
.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;}
}
.ws5a{word-spacing:-20.664000px;}
.ws6{word-spacing:-20.304000px;}
.ws62{word-spacing:-20.232000px;}
.ws2e{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.ws24{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.584000px;}
.ws6d{word-spacing:-19.440000px;}
.ws67{word-spacing:-19.368000px;}
.ws5{word-spacing:-19.296000px;}
.ws7{word-spacing:-19.152000px;}
.ws0{word-spacing:-18.432000px;}
.ws5b{word-spacing:-18.000000px;}
.ws98{word-spacing:-17.091360px;}
.ws7b{word-spacing:-16.852320px;}
.ws97{word-spacing:-16.732800px;}
.ws7a{word-spacing:-16.613280px;}
.ws7e{word-spacing:-16.553520px;}
.ws79{word-spacing:-16.493760px;}
.ws96{word-spacing:-16.374240px;}
.ws99{word-spacing:-16.254720px;}
.ws8b{word-spacing:-15.869520px;}
.ws89{word-spacing:-15.812640px;}
.ws7d{word-spacing:-15.776640px;}
.ws8a{word-spacing:-15.130080px;}
.ws4e{word-spacing:-13.796640px;}
.ws30{word-spacing:-13.410720px;}
.ws2f{word-spacing:-13.217760px;}
.ws4f{word-spacing:-13.073040px;}
.ws31{word-spacing:-12.494160px;}
.ws5c{word-spacing:-11.442240px;}
.ws7c{word-spacing:-10.808640px;}
.ws2a{word-spacing:-5.184000px;}
.ws78{word-spacing:-4.680000px;}
.ws12{word-spacing:-4.464000px;}
.ws55{word-spacing:-4.320000px;}
.ws54{word-spacing:-4.032000px;}
.wsd{word-spacing:-3.744000px;}
.wsc5{word-spacing:-3.600000px;}
.wsa{word-spacing:-3.024000px;}
.ws90{word-spacing:-2.900880px;}
.wsa7{word-spacing:-2.736000px;}
.ws1a{word-spacing:-2.304000px;}
.wsa0{word-spacing:-2.160000px;}
.ws6f{word-spacing:-2.016000px;}
.ws1b{word-spacing:-1.872000px;}
.ws43{word-spacing:-1.584000px;}
.ws95{word-spacing:-1.478880px;}
.wsbc{word-spacing:-1.152000px;}
.wsb{word-spacing:-0.864000px;}
.ws9e{word-spacing:-0.657360px;}
.ws3e{word-spacing:-0.576000px;}
.ws71{word-spacing:-0.504000px;}
.wsb9{word-spacing:-0.432000px;}
.ws83{word-spacing:-0.298800px;}
.ws27{word-spacing:-0.288000px;}
.ws9b{word-spacing:-0.239040px;}
.wsaf{word-spacing:-0.216000px;}
.ws94{word-spacing:-0.170640px;}
.ws8{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.072000px;}
.ws91{word-spacing:-0.056880px;}
.ws9{word-spacing:0.000000px;}
.ws82{word-spacing:0.059760px;}
.ws25{word-spacing:0.072000px;}
.ws88{word-spacing:0.119520px;}
.ws16{word-spacing:0.144000px;}
.ws87{word-spacing:0.179280px;}
.ws41{word-spacing:0.192960px;}
.ws28{word-spacing:0.216000px;}
.ws9a{word-spacing:0.227520px;}
.ws9d{word-spacing:0.239040px;}
.ws64{word-spacing:0.288000px;}
.ws86{word-spacing:0.298800px;}
.wsb4{word-spacing:0.360000px;}
.ws1c{word-spacing:0.432000px;}
.wsba{word-spacing:0.434160px;}
.ws74{word-spacing:0.504000px;}
.ws2c{word-spacing:0.576000px;}
.ws76{word-spacing:0.648000px;}
.ws5f{word-spacing:0.720000px;}
.ws9c{word-spacing:0.776880px;}
.ws70{word-spacing:0.792000px;}
.ws6b{word-spacing:0.864000px;}
.ws8c{word-spacing:0.896400px;}
.ws9f{word-spacing:0.936000px;}
.ws75{word-spacing:1.008000px;}
.ws39{word-spacing:1.152000px;}
.ws3a{word-spacing:1.296000px;}
.ws92{word-spacing:1.422000px;}
.wsa6{word-spacing:1.440000px;}
.ws11{word-spacing:2.016000px;}
.ws50{word-spacing:2.304000px;}
.ws63{word-spacing:2.376000px;}
.ws84{word-spacing:2.390400px;}
.wsa9{word-spacing:2.448000px;}
.ws2b{word-spacing:2.736000px;}
.ws80{word-spacing:2.808000px;}
.ws56{word-spacing:3.024000px;}
.ws58{word-spacing:3.096000px;}
.ws51{word-spacing:3.168000px;}
.ws57{word-spacing:3.240000px;}
.ws1e{word-spacing:3.456000px;}
.ws68{word-spacing:3.528000px;}
.ws8f{word-spacing:3.583440px;}
.ws85{word-spacing:3.824640px;}
.ws1f{word-spacing:3.888000px;}
.ws20{word-spacing:4.176000px;}
.ws69{word-spacing:4.320000px;}
.ws93{word-spacing:4.322880px;}
.ws32{word-spacing:4.896000px;}
.ws8d{word-spacing:5.005440px;}
.ws6a{word-spacing:5.040000px;}
.ws38{word-spacing:5.616000px;}
.ws59{word-spacing:5.976000px;}
.ws65{word-spacing:6.048000px;}
.ws14{word-spacing:6.336000px;}
.ws77{word-spacing:6.480000px;}
.ws37{word-spacing:6.768000px;}
.ws13{word-spacing:7.056000px;}
.ws8e{word-spacing:7.166880px;}
.wse{word-spacing:7.776000px;}
.ws66{word-spacing:8.136000px;}
.ws7f{word-spacing:8.208000px;}
.ws40{word-spacing:8.496000px;}
.ws19{word-spacing:9.216000px;}
.wsb2{word-spacing:9.360000px;}
.ws29{word-spacing:9.936000px;}
.ws18{word-spacing:10.224000px;}
.wsbb{word-spacing:10.368000px;}
.ws17{word-spacing:10.656000px;}
.ws5e{word-spacing:10.944000px;}
.ws34{word-spacing:11.088000px;}
.ws5d{word-spacing:11.160000px;}
.ws1d{word-spacing:11.376000px;}
.wsc0{word-spacing:11.808000px;}
.ws15{word-spacing:12.096000px;}
.ws73{word-spacing:12.240000px;}
.wsb1{word-spacing:12.528000px;}
.ws3c{word-spacing:12.816000px;}
.ws52{word-spacing:12.888000px;}
.ws53{word-spacing:13.248000px;}
.ws3b{word-spacing:13.536000px;}
.ws3d{word-spacing:13.680000px;}
.ws48{word-spacing:14.256000px;}
.ws47{word-spacing:14.976000px;}
.ws44{word-spacing:15.696000px;}
.ws6e{word-spacing:16.416000px;}
.wsb3{word-spacing:17.136000px;}
.ws3f{word-spacing:17.856000px;}
.ws2d{word-spacing:18.576000px;}
.ws81{word-spacing:18.720000px;}
.ws4a{word-spacing:19.296000px;}
.wsaa{word-spacing:19.728000px;}
.wsa2{word-spacing:20.016000px;}
.wsb8{word-spacing:20.736000px;}
.ws61{word-spacing:21.168000px;}
.ws23{word-spacing:21.456000px;}
.ws60{word-spacing:21.888000px;}
.ws22{word-spacing:22.176000px;}
.wsab{word-spacing:22.608000px;}
.ws6c{word-spacing:22.680000px;}
.wsac{word-spacing:22.896000px;}
.wsb0{word-spacing:23.328000px;}
.ws10{word-spacing:23.616000px;}
.wsa8{word-spacing:24.048000px;}
.wsf{word-spacing:24.336000px;}
.wsad{word-spacing:25.056000px;}
.ws4d{word-spacing:25.776000px;}
.ws26{word-spacing:26.496000px;}
.ws33{word-spacing:27.216000px;}
.ws35{word-spacing:28.656000px;}
.ws36{word-spacing:29.376000px;}
.ws4b{word-spacing:30.096000px;}
.ws4c{word-spacing:30.816000px;}
.ws45{word-spacing:31.536000px;}
.ws46{word-spacing:32.256000px;}
.wsbf{word-spacing:32.976000px;}
.wsbe{word-spacing:33.408000px;}
.wsc{word-spacing:33.696000px;}
.ws72{word-spacing:34.416000px;}
.ws49{word-spacing:35.856000px;}
.wsbd{word-spacing:36.000000px;}
.wsae{word-spacing:38.736000px;}
.wsa1{word-spacing:39.456000px;}
.wsc2{word-spacing:39.528000px;}
.wsb6{word-spacing:41.616000px;}
.wsb7{word-spacing:42.336000px;}
.wsb5{word-spacing:47.376000px;}
.wsc1{word-spacing:49.536000px;}
.wsc3{word-spacing:52.416000px;}
.wsc4{word-spacing:52.848000px;}
.wsa3{word-spacing:57.456000px;}
.wsa5{word-spacing:58.176000px;}
.wsa4{word-spacing:58.896000px;}
.ws42{word-spacing:69.696000px;}
._96{margin-left:-4411.136880px;}
._97{margin-left:-4395.576240px;}
._99{margin-left:-4305.049920px;}
._98{margin-left:-4187.998080px;}
._9b{margin-left:-3657.240000px;}
._84{margin-left:-3385.080000px;}
._95{margin-left:-3306.384000px;}
._b3{margin-left:-3116.880000px;}
._a0{margin-left:-2845.656000px;}
._de{margin-left:-2837.088000px;}
._b9{margin-left:-2829.600000px;}
._9e{margin-left:-2826.360000px;}
._88{margin-left:-2822.472000px;}
._3a{margin-left:-2820.096000px;}
._a8{margin-left:-2815.704000px;}
._56{margin-left:-2813.832000px;}
._8f{margin-left:-2811.672000px;}
._79{margin-left:-2809.584000px;}
._5c{margin-left:-2807.928000px;}
._5a{margin-left:-2806.632000px;}
._ec{margin-left:-2805.336000px;}
._7b{margin-left:-2803.392000px;}
._c0{margin-left:-2802.024000px;}
._80{margin-left:-2800.656000px;}
._82{margin-left:-2799.432000px;}
._57{margin-left:-2798.280000px;}
._52{margin-left:-2797.272000px;}
._7d{margin-left:-2796.120000px;}
._55{margin-left:-2794.680000px;}
._50{margin-left:-2793.375360px;}
._60{margin-left:-2791.584000px;}
._4e{margin-left:-2789.640000px;}
._58{margin-left:-2788.272000px;}
._4f{margin-left:-2786.974560px;}
._54{margin-left:-2785.680000px;}
._61{margin-left:-2784.667680px;}
._9d{margin-left:-2783.520000px;}
._41{margin-left:-2782.272960px;}
._33{margin-left:-2781.000000px;}
._31{margin-left:-2777.904000px;}
._4b{margin-left:-2775.960000px;}
._1d{margin-left:-2774.304000px;}
._1b{margin-left:-2773.152000px;}
._44{margin-left:-2771.280000px;}
._28{margin-left:-2769.552000px;}
._81{margin-left:-2768.544000px;}
._40{margin-left:-2767.248000px;}
._42{margin-left:-2765.952000px;}
._3e{margin-left:-2763.864000px;}
._14{margin-left:-2762.064000px;}
._17{margin-left:-2760.120000px;}
._34{margin-left:-2758.896000px;}
._12{margin-left:-2757.168000px;}
._2a{margin-left:-2755.584000px;}
._18{margin-left:-2753.928000px;}
._3b{margin-left:-2751.763680px;}
._13{margin-left:-2750.616000px;}
._8{margin-left:-2748.744000px;}
._15{margin-left:-2747.736000px;}
._f{margin-left:-2746.656000px;}
._b1{margin-left:-2741.760000px;}
._b{margin-left:-2739.600000px;}
._d9{margin-left:-2735.064000px;}
._c{margin-left:-2730.024000px;}
._9{margin-left:-2722.608000px;}
._a9{margin-left:-2720.952000px;}
._d{margin-left:-2717.856000px;}
._3{margin-left:-2712.744000px;}
._e4{margin-left:-2702.232000px;}
._cb{margin-left:-2663.280000px;}
._ac{margin-left:-2592.000000px;}
._c1{margin-left:-2586.240000px;}
._d1{margin-left:-2578.176000px;}
._6d{margin-left:-2576.136960px;}
._bf{margin-left:-2565.144000px;}
._10{margin-left:-2554.488000px;}
._6b{margin-left:-2541.936960px;}
._19{margin-left:-2539.512000px;}
._c3{margin-left:-2522.952000px;}
._da{margin-left:-2497.392000px;}
._70{margin-left:-2482.752960px;}
._71{margin-left:-2463.024960px;}
._48{margin-left:-2404.656000px;}
._2b{margin-left:-2386.368000px;}
._af{margin-left:-2380.698720px;}
._ed{margin-left:-2369.520000px;}
._94{margin-left:-2355.318720px;}
._a4{margin-left:-2325.960000px;}
._2d{margin-left:-2289.744000px;}
._24{margin-left:-2264.832000px;}
._91{margin-left:-2229.840000px;}
._66{margin-left:-2164.271040px;}
._8a{margin-left:-2120.688000px;}
._6a{margin-left:-2090.640960px;}
._74{margin-left:-2076.552000px;}
._c7{margin-left:-2056.608000px;}
._2c{margin-left:-2052.720000px;}
._7c{margin-left:-2006.688960px;}
._bc{margin-left:-1997.136000px;}
._36{margin-left:-1980.465120px;}
._87{margin-left:-1925.064000px;}
._df{margin-left:-1904.904000px;}
._8b{margin-left:-1887.696000px;}
._8c{margin-left:-1883.808000px;}
._8e{margin-left:-1880.424000px;}
._35{margin-left:-1876.141440px;}
._e3{margin-left:-1838.016000px;}
._86{margin-left:-1802.016000px;}
._dc{margin-left:-1717.272000px;}
._68{margin-left:-1680.696000px;}
._b2{margin-left:-1665.072000px;}
._92{margin-left:-1663.475040px;}
._d5{margin-left:-1652.976000px;}
._eb{margin-left:-1620.936000px;}
._53{margin-left:-1616.472000px;}
._e1{margin-left:-1593.864000px;}
._e8{margin-left:-1580.760000px;}
._dd{margin-left:-1557.360000px;}
._aa{margin-left:-1550.016000px;}
._cf{margin-left:-1520.064000px;}
._5f{margin-left:-1509.480000px;}
._e9{margin-left:-1488.744000px;}
._e5{margin-left:-1485.072000px;}
._e2{margin-left:-1453.176000px;}
._21{margin-left:-1448.784000px;}
._c6{margin-left:-1433.664000px;}
._23{margin-left:-1424.880000px;}
._51{margin-left:-1416.744000px;}
._b6{margin-left:-1401.552000px;}
._c4{margin-left:-1381.536000px;}
._d8{margin-left:-1376.280000px;}
._c5{margin-left:-1368.432000px;}
._bb{margin-left:-1348.128000px;}
._9f{margin-left:-1345.392000px;}
._d0{margin-left:-1332.432000px;}
._bd{margin-left:-1329.552000px;}
._7e{margin-left:-1325.232000px;}
._b8{margin-left:-1321.560000px;}
._d2{margin-left:-1320.336000px;}
._27{margin-left:-1317.456000px;}
._cc{margin-left:-1313.856000px;}
._c2{margin-left:-1312.848000px;}
._e7{margin-left:-1297.512000px;}
._b7{margin-left:-1264.824000px;}
._49{margin-left:-1256.544000px;}
._59{margin-left:-1248.480000px;}
._e0{margin-left:-1189.080000px;}
._a3{margin-left:-1179.120960px;}
._d6{margin-left:-1164.744000px;}
._69{margin-left:-1160.712000px;}
._ca{margin-left:-1148.760000px;}
._d4{margin-left:-1137.312000px;}
._a5{margin-left:-1130.376960px;}
._ea{margin-left:-1100.016000px;}
._78{margin-left:-1096.920000px;}
._ce{margin-left:-1093.680000px;}
._c8{margin-left:-1084.464000px;}
._b5{margin-left:-1082.232000px;}
._67{margin-left:-1076.251680px;}
._2e{margin-left:-1060.613280px;}
._ab{margin-left:-1047.456000px;}
._90{margin-left:-1040.328000px;}
._db{margin-left:-1036.512000px;}
._7f{margin-left:-1033.272000px;}
._a1{margin-left:-1025.280000px;}
._e6{margin-left:-1004.976000px;}
._5d{margin-left:-988.200000px;}
._63{margin-left:-980.496000px;}
._ad{margin-left:-976.608000px;}
._2f{margin-left:-968.256000px;}
._be{margin-left:-951.984000px;}
._25{margin-left:-923.760000px;}
._83{margin-left:-920.664000px;}
._1e{margin-left:-909.144000px;}
._6f{margin-left:-896.040000px;}
._65{margin-left:-892.512000px;}
._d7{margin-left:-888.912000px;}
._4c{margin-left:-849.384000px;}
._b0{margin-left:-808.632000px;}
._5e{margin-left:-801.432000px;}
._77{margin-left:-776.160000px;}
._9c{margin-left:-765.288000px;}
._8d{margin-left:-743.112000px;}
._cd{margin-left:-740.952000px;}
._4d{margin-left:-732.384000px;}
._b4{margin-left:-728.496000px;}
._43{margin-left:-726.812640px;}
._22{margin-left:-724.752000px;}
._d3{margin-left:-664.920000px;}
._ba{margin-left:-656.496000px;}
._73{margin-left:-631.872000px;}
._4{margin-left:-628.488000px;}
._76{margin-left:-608.112000px;}
._6{margin-left:-583.920000px;}
._75{margin-left:-567.576000px;}
._4a{margin-left:-560.016000px;}
._ae{margin-left:-553.032000px;}
._a6{margin-left:-537.312960px;}
._62{margin-left:-534.072960px;}
._3c{margin-left:-513.427680px;}
._89{margin-left:-508.680000px;}
._9a{margin-left:-393.408720px;}
._6e{margin-left:-236.016000px;}
._93{margin-left:-231.812640px;}
._1f{margin-left:-200.016000px;}
._a{margin-left:-24.696000px;}
._64{margin-left:-5.832000px;}
._e{margin-left:-4.464000px;}
._0{margin-left:-2.808000px;}
._1{margin-left:-1.440000px;}
._2{width:1.872000px;}
._5{width:3.024000px;}
._72{width:4.199040px;}
._29{width:5.479200px;}
._11{width:6.624000px;}
._6c{width:7.983360px;}
._38{width:9.008640px;}
._16{width:10.152000px;}
._26{width:11.592000px;}
._3d{width:13.464000px;}
._a2{width:14.616000px;}
._3f{width:15.912000px;}
._37{width:17.640000px;}
._7a{width:18.936000px;}
._5b{width:21.024000px;}
._1a{width:22.471200px;}
._1c{width:23.832000px;}
._46{width:25.848000px;}
._20{width:26.856000px;}
._30{width:27.864000px;}
._32{width:29.266560px;}
._45{width:32.112000px;}
._7{width:34.632000px;}
._a7{width:39.960000px;}
._39{width:69.776640px;}
._c9{width:92.304000px;}
._47{width:843.984000px;}
._85{width:1130.040000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:3.960000px;}
.yc4{bottom:4.140000px;}
.yd8{bottom:5.040000px;}
.yd5{bottom:5.220000px;}
.ye9{bottom:5.400000px;}
.y6b{bottom:5.760000px;}
.y6a{bottom:5.940000px;}
.y73{bottom:6.120000px;}
.y66{bottom:17.640000px;}
.yce{bottom:21.060000px;}
.yc3{bottom:21.240000px;}
.yc6{bottom:21.420000px;}
.yd7{bottom:22.320000px;}
.yd4{bottom:22.500000px;}
.y72{bottom:25.920000px;}
.y67{bottom:27.540000px;}
.y100{bottom:112.140000px;}
.y9f{bottom:120.240000px;}
.y19{bottom:125.460000px;}
.y114{bottom:125.820000px;}
.yc0{bottom:134.280000px;}
.y56{bottom:137.520000px;}
.y7f{bottom:138.600000px;}
.y63{bottom:146.520000px;}
.ybf{bottom:150.660000px;}
.y9e{bottom:152.820000px;}
.yff{bottom:153.540000px;}
.y18{bottom:166.860000px;}
.ybe{bottom:167.040000px;}
.y61{bottom:167.220000px;}
.y113{bottom:167.400000px;}
.y7e{bottom:171.180000px;}
.y55{bottom:178.920000px;}
.ybd{bottom:183.420000px;}
.y9d{bottom:185.400000px;}
.y3e{bottom:187.920000px;}
.yfe{bottom:194.940000px;}
.ybc{bottom:199.800000px;}
.y7d{bottom:203.760000px;}
.y17{bottom:208.260000px;}
.y60{bottom:208.620000px;}
.ybb{bottom:216.180000px;}
.y9c{bottom:217.980000px;}
.y54{bottom:220.320000px;}
.y3d{bottom:229.320000px;}
.y120{bottom:229.500000px;}
.yba{bottom:232.920000px;}
.y7c{bottom:236.340000px;}
.ye8{bottom:239.220000px;}
.y16{bottom:249.660000px;}
.y5f{bottom:250.020000px;}
.yb9{bottom:250.200000px;}
.y9b{bottom:250.560000px;}
.ye7{bottom:253.080000px;}
.y53{bottom:261.720000px;}
.y7b{bottom:268.920000px;}
.y3c{bottom:270.720000px;}
.yfd{bottom:277.740000px;}
.ye6{bottom:279.360000px;}
.yb8{bottom:281.700000px;}
.y9a{bottom:283.140000px;}
.y15{bottom:291.060000px;}
.y2b{bottom:291.420000px;}
.ye5{bottom:293.220000px;}
.y7a{bottom:301.500000px;}
.y52{bottom:303.120000px;}
.y3b{bottom:312.120000px;}
.y11f{bottom:312.300000px;}
.y99{bottom:315.720000px;}
.yb7{bottom:316.080000px;}
.yfc{bottom:319.140000px;}
.ye2{bottom:319.500000px;}
.y2a{bottom:330.120000px;}
.y14{bottom:332.460000px;}
.y5e{bottom:332.820000px;}
.y112{bottom:333.000000px;}
.ye3{bottom:333.180000px;}
.ye1{bottom:333.360000px;}
.y79{bottom:334.080000px;}
.ye4{bottom:341.820000px;}
.y51{bottom:344.520000px;}
.y98{bottom:348.300000px;}
.yb6{bottom:350.460000px;}
.y3a{bottom:353.520000px;}
.yfb{bottom:360.540000px;}
.ydf{bottom:364.849740px;}
.y78{bottom:366.660000px;}
.yde{bottom:373.500000px;}
.y13{bottom:373.860000px;}
.y5d{bottom:374.220000px;}
.y97{bottom:380.880000px;}
.ye0{bottom:381.956040px;}
.y29{bottom:383.400000px;}
.yb5{bottom:384.840000px;}
.y50{bottom:385.920000px;}
.y11e{bottom:394.740000px;}
.y39{bottom:394.920000px;}
.y77{bottom:399.240000px;}
.ydd{bottom:399.780000px;}
.yfa{bottom:401.940000px;}
.y96{bottom:413.460000px;}
.ydc{bottom:413.640000px;}
.y12{bottom:415.260000px;}
.y5c{bottom:415.620000px;}
.y111{bottom:415.800000px;}
.yb4{bottom:419.040000px;}
.y28{bottom:424.800000px;}
.y4f{bottom:427.320000px;}
.y76{bottom:431.820000px;}
.y38{bottom:436.320000px;}
.yda{bottom:439.920000px;}
.yf9{bottom:443.340000px;}
.y95{bottom:446.040000px;}
.ydb{bottom:449.280000px;}
.yb3{bottom:453.420000px;}
.y11{bottom:456.660000px;}
.y5b{bottom:457.020000px;}
.y75{bottom:464.400000px;}
.y4e{bottom:468.720000px;}
.y37{bottom:477.720000px;}
.y94{bottom:478.620000px;}
.y27{bottom:479.520000px;}
.yf8{bottom:484.740000px;}
.yb2{bottom:487.800000px;}
.yd6{bottom:488.160000px;}
.yd9{bottom:491.400000px;}
.y71{bottom:496.980000px;}
.y10{bottom:498.060000px;}
.y5a{bottom:498.420000px;}
.y110{bottom:498.600000px;}
.y4d{bottom:510.120000px;}
.y93{bottom:511.200000px;}
.y74{bottom:512.820000px;}
.yd3{bottom:517.860000px;}
.y36{bottom:519.120000px;}
.y11d{bottom:519.300000px;}
.yb1{bottom:522.180000px;}
.yf7{bottom:526.140000px;}
.yd2{bottom:530.460000px;}
.y26{bottom:532.800000px;}
.yf{bottom:539.460000px;}
.y59{bottom:539.820000px;}
.y92{bottom:543.780000px;}
.y70{bottom:549.540000px;}
.y4c{bottom:551.520000px;}
.yd1{bottom:555.660000px;}
.yb0{bottom:556.380000px;}
.y35{bottom:560.520000px;}
.yf6{bottom:567.540000px;}
.yd0{bottom:568.260000px;}
.y58{bottom:570.780000px;}
.y25{bottom:574.200000px;}
.y91{bottom:576.360000px;}
.ye{bottom:580.860000px;}
.y11c{bottom:581.220000px;}
.y10f{bottom:581.400000px;}
.y6f{bottom:582.120000px;}
.yaf{bottom:590.760000px;}
.y4b{bottom:592.920000px;}
.ycd{bottom:593.460000px;}
.y57{bottom:601.740000px;}
.y34{bottom:601.920000px;}
.y11b{bottom:602.100000px;}
.ycf{bottom:605.880000px;}
.ycc{bottom:606.060000px;}
.y90{bottom:608.940000px;}
.y6e{bottom:614.700000px;}
.y24{bottom:615.600000px;}
.yd{bottom:622.260000px;}
.y10e{bottom:622.620000px;}
.y127{bottom:622.800000px;}
.yae{bottom:625.140000px;}
.yca{bottom:629.640000px;}
.y4a{bottom:634.320000px;}
.y8f{bottom:641.520000px;}
.ycb{bottom:642.240000px;}
.yc9{bottom:642.420000px;}
.y33{bottom:643.320000px;}
.y126{bottom:643.500000px;}
.y6c{bottom:647.280000px;}
.yf5{bottom:650.340000px;}
.y6d{bottom:652.320000px;}
.y23{bottom:658.260000px;}
.yad{bottom:659.520000px;}
.yc{bottom:663.660000px;}
.y10d{bottom:664.020000px;}
.yc5{bottom:666.000000px;}
.y8e{bottom:674.280000px;}
.y49{bottom:675.720000px;}
.yc7{bottom:678.600000px;}
.y69{bottom:679.860000px;}
.y32{bottom:684.720000px;}
.yf4{bottom:691.740000px;}
.yac{bottom:693.720000px;}
.y22{bottom:699.660000px;}
.yc2{bottom:702.360000px;}
.yb{bottom:705.060000px;}
.y10c{bottom:705.420000px;}
.y11a{bottom:705.600000px;}
.y8d{bottom:706.860000px;}
.y65{bottom:713.160000px;}
.yc1{bottom:714.960000px;}
.y48{bottom:717.120000px;}
.y68{bottom:720.900000px;}
.y31{bottom:726.120000px;}
.y125{bottom:726.300000px;}
.yab{bottom:728.100000px;}
.yf3{bottom:733.140000px;}
.y8c{bottom:739.440000px;}
.y21{bottom:741.060000px;}
.ya{bottom:746.460000px;}
.y10b{bottom:746.820000px;}
.yaa{bottom:748.800000px;}
.y47{bottom:758.520000px;}
.y30{bottom:767.520000px;}
.y8b{bottom:772.020000px;}
.yf2{bottom:774.540000px;}
.y9{bottom:787.860000px;}
.y10a{bottom:788.220000px;}
.y124{bottom:788.400000px;}
.y20{bottom:795.600000px;}
.y46{bottom:799.920000px;}
.y8a{bottom:804.600000px;}
.y2f{bottom:808.920000px;}
.y119{bottom:809.100000px;}
.yf1{bottom:815.940000px;}
.y8{bottom:829.260000px;}
.y109{bottom:829.620000px;}
.ya9{bottom:831.600000px;}
.y89{bottom:837.180000px;}
.y45{bottom:841.320000px;}
.ya8{bottom:848.520000px;}
.y1f{bottom:849.060000px;}
.y2e{bottom:850.320000px;}
.y62{bottom:850.500000px;}
.yf0{bottom:857.340000px;}
.ya7{bottom:864.900000px;}
.y88{bottom:869.760000px;}
.y7{bottom:870.660000px;}
.y108{bottom:871.020000px;}
.ya6{bottom:881.280000px;}
.y44{bottom:882.720000px;}
.y1e{bottom:890.460000px;}
.y2d{bottom:891.720000px;}
.y123{bottom:891.900000px;}
.ya5{bottom:897.660000px;}
.yef{bottom:898.740000px;}
.y87{bottom:902.340000px;}
.y6{bottom:912.060000px;}
.y107{bottom:912.420000px;}
.y118{bottom:912.600000px;}
.ya4{bottom:914.040000px;}
.y43{bottom:924.120000px;}
.ya3{bottom:930.420000px;}
.y1d{bottom:931.860000px;}
.y2c{bottom:933.120000px;}
.y86{bottom:934.920000px;}
.yee{bottom:940.140000px;}
.ya2{bottom:946.800000px;}
.y5{bottom:953.460000px;}
.y106{bottom:953.820000px;}
.y122{bottom:954.000000px;}
.ya1{bottom:963.180000px;}
.y42{bottom:965.520000px;}
.y85{bottom:967.500000px;}
.y1c{bottom:974.520000px;}
.y105{bottom:974.700000px;}
.ya0{bottom:979.560000px;}
.yed{bottom:981.540000px;}
.y4{bottom:994.860000px;}
.y117{bottom:995.220000px;}
.y104{bottom:995.400000px;}
.y84{bottom:1000.080000px;}
.y41{bottom:1006.920000px;}
.y1b{bottom:1015.920000px;}
.yec{bottom:1022.940000px;}
.y83{bottom:1032.660000px;}
.y3{bottom:1036.260000px;}
.y103{bottom:1036.620000px;}
.y121{bottom:1036.800000px;}
.y40{bottom:1048.320000px;}
.y1a{bottom:1057.320000px;}
.y102{bottom:1057.500000px;}
.yeb{bottom:1064.340000px;}
.y82{bottom:1065.240000px;}
.y116{bottom:1078.020000px;}
.y101{bottom:1078.200000px;}
.y3f{bottom:1089.720000px;}
.y81{bottom:1097.820000px;}
.y2{bottom:1098.720000px;}
.yea{bottom:1105.740000px;}
.y115{bottom:1119.420000px;}
.y80{bottom:1130.400000px;}
.y1{bottom:1140.120000px;}
.y64{bottom:1140.300000px;}
.ha{height:19.798500px;}
.h8{height:19.800000px;}
.he{height:19.980000px;}
.h17{height:28.305703px;}
.hb{height:34.855313px;}
.h12{height:35.458500px;}
.h15{height:35.460000px;}
.h13{height:35.640000px;}
.h16{height:37.800000px;}
.h19{height:37.980000px;}
.h1a{height:37.981500px;}
.hd{height:39.780000px;}
.h5{height:43.018500px;}
.h6{height:43.506914px;}
.hc{height:49.185703px;}
.hf{height:50.992031px;}
.h3{height:52.417969px;}
.h14{height:52.856786px;}
.h9{height:53.573906px;}
.h2{height:64.546875px;}
.h4{height:67.006406px;}
.h1b{height:75.519844px;}
.h7{height:83.106914px;}
.h18{height:87.398066px;}
.h10{height:892.980000px;}
.h11{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:85.138500px;}
.wd{width:105.658500px;}
.we{width:108.898500px;}
.wc{width:118.078500px;}
.wf{width:118.980000px;}
.w3{width:138.598500px;}
.wa{width:180.000000px;}
.wb{width:180.001500px;}
.w5{width:180.541500px;}
.w9{width:187.920000px;}
.w2{width:191.341500px;}
.w4{width:212.760000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:1262.880000px;}
.w8{width:1263.000000px;}
.x5{left:-42.480000px;}
.x0{left:0.000000px;}
.x43{left:9.540000px;}
.x9{left:10.620000px;}
.x36{left:14.040000px;}
.x2b{left:15.120000px;}
.x42{left:16.920000px;}
.x10{left:18.720000px;}
.x22{left:20.700000px;}
.x44{left:22.860000px;}
.x3e{left:24.660000px;}
.x7{left:26.280000px;}
.x14{left:27.900000px;}
.x26{left:29.700000px;}
.x2d{left:32.040000px;}
.x28{left:34.020000px;}
.x2e{left:36.180000px;}
.x16{left:38.160000px;}
.x11{left:40.140000px;}
.x4{left:42.300000px;}
.xa{left:44.280000px;}
.x21{left:46.620000px;}
.x1a{left:48.600000px;}
.x27{left:50.760000px;}
.x2c{left:52.200000px;}
.x29{left:55.080000px;}
.x2a{left:56.340000px;}
.x18{left:59.220000px;}
.x13{left:61.200000px;}
.x20{left:62.640000px;}
.x3c{left:63.720000px;}
.xe{left:65.340000px;}
.x24{left:66.780000px;}
.x1c{left:69.660000px;}
.x17{left:71.460000px;}
.x19{left:75.060000px;}
.x12{left:77.220000px;}
.xc{left:81.360000px;}
.x1b{left:85.500000px;}
.x1e{left:92.520000px;}
.x30{left:106.200000px;}
.x1d{left:108.360000px;}
.x3a{left:115.200000px;}
.x39{left:116.820000px;}
.x3d{left:123.120000px;}
.x46{left:126.000000px;}
.x1{left:127.620000px;}
.x1f{left:129.960000px;}
.x25{left:131.580000px;}
.x23{left:136.080000px;}
.x4f{left:137.700000px;}
.x2f{left:148.860000px;}
.x2{left:154.620000px;}
.x32{left:165.600000px;}
.x3f{left:173.700000px;}
.x3{left:181.620000px;}
.x40{left:225.540000px;}
.x6{left:233.640000px;}
.x8{left:282.780000px;}
.x37{left:335.160000px;}
.xb{left:372.240000px;}
.x45{left:441.540000px;}
.x3b{left:450.900000px;}
.x38{left:455.760000px;}
.x41{left:457.200000px;}
.x33{left:561.240000px;}
.xd{left:585.000000px;}
.x47{left:622.072980px;}
.x4c{left:715.500000px;}
.x34{left:749.880000px;}
.xf{left:765.540000px;}
.x48{left:782.812440px;}
.x49{left:820.774980px;}
.x15{left:822.600000px;}
.x4d{left:899.460000px;}
.x35{left:930.600000px;}
.x4a{left:968.546520px;}
.x4b{left:990.329040px;}
.x4e{left:1072.620000px;}
.x31{left:1121.940000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-3.824640pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.824640pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:30.703360pt;}
.v3{vertical-align:35.200000pt;}
.ls4b{letter-spacing:-3.452800pt;}
.ls4a{letter-spacing:-2.124800pt;}
.ls29{letter-spacing:-2.048000pt;}
.lsa{letter-spacing:-1.408000pt;}
.ls7b{letter-spacing:-1.280000pt;}
.ls47{letter-spacing:-1.152000pt;}
.ls20{letter-spacing:-1.024000pt;}
.ls72{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.814720pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls4d{letter-spacing:-0.743680pt;}
.ls39{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.606720pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls3d{letter-spacing:-0.448000pt;}
.ls7f{letter-spacing:-0.385920pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls6e{letter-spacing:-0.318720pt;}
.ls2b{letter-spacing:-0.300160pt;}
.ls4e{letter-spacing:-0.265600pt;}
.ls4f{letter-spacing:-0.212480pt;}
.ls6a{letter-spacing:-0.202240pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.171520pt;}
.ls33{letter-spacing:-0.148480pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls4c{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.050560pt;}
.ls3c{letter-spacing:0.064000pt;}
.ls6c{letter-spacing:0.106240pt;}
.ls36{letter-spacing:0.121600pt;}
.ls8{letter-spacing:0.128000pt;}
.ls51{letter-spacing:0.151680pt;}
.ls0{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.212480pt;}
.ls46{letter-spacing:0.231040pt;}
.ls3a{letter-spacing:0.236800pt;}
.ls19{letter-spacing:0.249600pt;}
.ls2{letter-spacing:0.256000pt;}
.ls6b{letter-spacing:0.265600pt;}
.ls54{letter-spacing:0.292160pt;}
.ls2a{letter-spacing:0.343040pt;}
.ls6d{letter-spacing:0.424960pt;}
.ls78{letter-spacing:0.448000pt;}
.ls59{letter-spacing:0.456320pt;}
.ls22{letter-spacing:0.512000pt;}
.ls32{letter-spacing:0.576000pt;}
.ls61{letter-spacing:0.584320pt;}
.ls58{letter-spacing:0.592640pt;}
.ls66{letter-spacing:0.616192pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls28{letter-spacing:2.048000pt;}
.ls2e{letter-spacing:2.675200pt;}
.ls11{letter-spacing:2.688000pt;}
.ls4{letter-spacing:3.328000pt;}
.ls12{letter-spacing:3.961600pt;}
.ls13{letter-spacing:3.968000pt;}
.ls34{letter-spacing:4.608000pt;}
.ls27{letter-spacing:5.248000pt;}
.ls1a{letter-spacing:5.888000pt;}
.ls3{letter-spacing:6.528000pt;}
.ls3f{letter-spacing:7.168000pt;}
.ls1e{letter-spacing:7.808000pt;}
.ls71{letter-spacing:8.448000pt;}
.ls3b{letter-spacing:9.081600pt;}
.ls38{letter-spacing:9.088000pt;}
.ls2d{letter-spacing:9.728000pt;}
.ls14{letter-spacing:10.368000pt;}
.ls79{letter-spacing:11.008000pt;}
.ls23{letter-spacing:11.648000pt;}
.ls1c{letter-spacing:12.288000pt;}
.ls7a{letter-spacing:12.928000pt;}
.ls70{letter-spacing:13.568000pt;}
.ls24{letter-spacing:14.208000pt;}
.ls2f{letter-spacing:16.768000pt;}
.ls73{letter-spacing:17.408000pt;}
.ls74{letter-spacing:19.328000pt;}
.ls5{letter-spacing:19.961600pt;}
.ls6{letter-spacing:19.968000pt;}
.ls75{letter-spacing:20.608000pt;}
.ls3e{letter-spacing:21.241600pt;}
.ls7{letter-spacing:21.248000pt;}
.ls1{letter-spacing:21.888000pt;}
.ls35{letter-spacing:23.161600pt;}
.ls2c{letter-spacing:23.168000pt;}
.ls18{letter-spacing:25.088000pt;}
.ls77{letter-spacing:25.728000pt;}
.ls25{letter-spacing:27.641600pt;}
.ls7c{letter-spacing:27.648000pt;}
.ls26{letter-spacing:28.928000pt;}
.ls76{letter-spacing:34.048000pt;}
.ls6f{letter-spacing:35.328000pt;}
.ls10{letter-spacing:48.768000pt;}
.ls5a{letter-spacing:51.792000pt;}
.ls31{letter-spacing:57.088000pt;}
.ls42{letter-spacing:60.769280pt;}
.ls7e{letter-spacing:64.128000pt;}
.ls57{letter-spacing:70.431808pt;}
.ls5f{letter-spacing:72.933760pt;}
.ls62{letter-spacing:87.648000pt;}
.ls64{letter-spacing:90.835200pt;}
.ls5e{letter-spacing:92.747520pt;}
.ls7d{letter-spacing:99.968000pt;}
.ls5c{letter-spacing:102.999680pt;}
.ls67{letter-spacing:106.186880pt;}
.ls5d{letter-spacing:107.461760pt;}
.ls60{letter-spacing:117.713920pt;}
.ls63{letter-spacing:120.901120pt;}
.ls41{letter-spacing:129.240960pt;}
.ls69{letter-spacing:132.428160pt;}
.ls5b{letter-spacing:140.130560pt;}
.ls68{letter-spacing:144.592640pt;}
.ls55{letter-spacing:168.284160pt;}
.ls30{letter-spacing:171.008000pt;}
.ls56{letter-spacing:185.548160pt;}
.ls65{letter-spacing:200.262400pt;}
.ls40{letter-spacing:250.830080pt;}
.ls53{letter-spacing:287.963520pt;}
.ls45{letter-spacing:316.117120pt;}
.ls43{letter-spacing:446.686080pt;}
.ls44{letter-spacing:522.807040pt;}
.ls15{letter-spacing:750.208000pt;}
.ws5a{word-spacing:-18.368000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws62{word-spacing:-17.984000pt;}
.ws2e{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws24{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws6d{word-spacing:-17.280000pt;}
.ws67{word-spacing:-17.216000pt;}
.ws5{word-spacing:-17.152000pt;}
.ws7{word-spacing:-17.024000pt;}
.ws0{word-spacing:-16.384000pt;}
.ws5b{word-spacing:-16.000000pt;}
.ws98{word-spacing:-15.192320pt;}
.ws7b{word-spacing:-14.979840pt;}
.ws97{word-spacing:-14.873600pt;}
.ws7a{word-spacing:-14.767360pt;}
.ws7e{word-spacing:-14.714240pt;}
.ws79{word-spacing:-14.661120pt;}
.ws96{word-spacing:-14.554880pt;}
.ws99{word-spacing:-14.448640pt;}
.ws8b{word-spacing:-14.106240pt;}
.ws89{word-spacing:-14.055680pt;}
.ws7d{word-spacing:-14.023680pt;}
.ws8a{word-spacing:-13.448960pt;}
.ws4e{word-spacing:-12.263680pt;}
.ws30{word-spacing:-11.920640pt;}
.ws2f{word-spacing:-11.749120pt;}
.ws4f{word-spacing:-11.620480pt;}
.ws31{word-spacing:-11.105920pt;}
.ws5c{word-spacing:-10.170880pt;}
.ws7c{word-spacing:-9.607680pt;}
.ws2a{word-spacing:-4.608000pt;}
.ws78{word-spacing:-4.160000pt;}
.ws12{word-spacing:-3.968000pt;}
.ws55{word-spacing:-3.840000pt;}
.ws54{word-spacing:-3.584000pt;}
.wsd{word-spacing:-3.328000pt;}
.wsc5{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.688000pt;}
.ws90{word-spacing:-2.578560pt;}
.wsa7{word-spacing:-2.432000pt;}
.ws1a{word-spacing:-2.048000pt;}
.wsa0{word-spacing:-1.920000pt;}
.ws6f{word-spacing:-1.792000pt;}
.ws1b{word-spacing:-1.664000pt;}
.ws43{word-spacing:-1.408000pt;}
.ws95{word-spacing:-1.314560pt;}
.wsbc{word-spacing:-1.024000pt;}
.wsb{word-spacing:-0.768000pt;}
.ws9e{word-spacing:-0.584320pt;}
.ws3e{word-spacing:-0.512000pt;}
.ws71{word-spacing:-0.448000pt;}
.wsb9{word-spacing:-0.384000pt;}
.ws83{word-spacing:-0.265600pt;}
.ws27{word-spacing:-0.256000pt;}
.ws9b{word-spacing:-0.212480pt;}
.wsaf{word-spacing:-0.192000pt;}
.ws94{word-spacing:-0.151680pt;}
.ws8{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.064000pt;}
.ws91{word-spacing:-0.050560pt;}
.ws9{word-spacing:0.000000pt;}
.ws82{word-spacing:0.053120pt;}
.ws25{word-spacing:0.064000pt;}
.ws88{word-spacing:0.106240pt;}
.ws16{word-spacing:0.128000pt;}
.ws87{word-spacing:0.159360pt;}
.ws41{word-spacing:0.171520pt;}
.ws28{word-spacing:0.192000pt;}
.ws9a{word-spacing:0.202240pt;}
.ws9d{word-spacing:0.212480pt;}
.ws64{word-spacing:0.256000pt;}
.ws86{word-spacing:0.265600pt;}
.wsb4{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.384000pt;}
.wsba{word-spacing:0.385920pt;}
.ws74{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws76{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.640000pt;}
.ws9c{word-spacing:0.690560pt;}
.ws70{word-spacing:0.704000pt;}
.ws6b{word-spacing:0.768000pt;}
.ws8c{word-spacing:0.796800pt;}
.ws9f{word-spacing:0.832000pt;}
.ws75{word-spacing:0.896000pt;}
.ws39{word-spacing:1.024000pt;}
.ws3a{word-spacing:1.152000pt;}
.ws92{word-spacing:1.264000pt;}
.wsa6{word-spacing:1.280000pt;}
.ws11{word-spacing:1.792000pt;}
.ws50{word-spacing:2.048000pt;}
.ws63{word-spacing:2.112000pt;}
.ws84{word-spacing:2.124800pt;}
.wsa9{word-spacing:2.176000pt;}
.ws2b{word-spacing:2.432000pt;}
.ws80{word-spacing:2.496000pt;}
.ws56{word-spacing:2.688000pt;}
.ws58{word-spacing:2.752000pt;}
.ws51{word-spacing:2.816000pt;}
.ws57{word-spacing:2.880000pt;}
.ws1e{word-spacing:3.072000pt;}
.ws68{word-spacing:3.136000pt;}
.ws8f{word-spacing:3.185280pt;}
.ws85{word-spacing:3.399680pt;}
.ws1f{word-spacing:3.456000pt;}
.ws20{word-spacing:3.712000pt;}
.ws69{word-spacing:3.840000pt;}
.ws93{word-spacing:3.842560pt;}
.ws32{word-spacing:4.352000pt;}
.ws8d{word-spacing:4.449280pt;}
.ws6a{word-spacing:4.480000pt;}
.ws38{word-spacing:4.992000pt;}
.ws59{word-spacing:5.312000pt;}
.ws65{word-spacing:5.376000pt;}
.ws14{word-spacing:5.632000pt;}
.ws77{word-spacing:5.760000pt;}
.ws37{word-spacing:6.016000pt;}
.ws13{word-spacing:6.272000pt;}
.ws8e{word-spacing:6.370560pt;}
.wse{word-spacing:6.912000pt;}
.ws66{word-spacing:7.232000pt;}
.ws7f{word-spacing:7.296000pt;}
.ws40{word-spacing:7.552000pt;}
.ws19{word-spacing:8.192000pt;}
.wsb2{word-spacing:8.320000pt;}
.ws29{word-spacing:8.832000pt;}
.ws18{word-spacing:9.088000pt;}
.wsbb{word-spacing:9.216000pt;}
.ws17{word-spacing:9.472000pt;}
.ws5e{word-spacing:9.728000pt;}
.ws34{word-spacing:9.856000pt;}
.ws5d{word-spacing:9.920000pt;}
.ws1d{word-spacing:10.112000pt;}
.wsc0{word-spacing:10.496000pt;}
.ws15{word-spacing:10.752000pt;}
.ws73{word-spacing:10.880000pt;}
.wsb1{word-spacing:11.136000pt;}
.ws3c{word-spacing:11.392000pt;}
.ws52{word-spacing:11.456000pt;}
.ws53{word-spacing:11.776000pt;}
.ws3b{word-spacing:12.032000pt;}
.ws3d{word-spacing:12.160000pt;}
.ws48{word-spacing:12.672000pt;}
.ws47{word-spacing:13.312000pt;}
.ws44{word-spacing:13.952000pt;}
.ws6e{word-spacing:14.592000pt;}
.wsb3{word-spacing:15.232000pt;}
.ws3f{word-spacing:15.872000pt;}
.ws2d{word-spacing:16.512000pt;}
.ws81{word-spacing:16.640000pt;}
.ws4a{word-spacing:17.152000pt;}
.wsaa{word-spacing:17.536000pt;}
.wsa2{word-spacing:17.792000pt;}
.wsb8{word-spacing:18.432000pt;}
.ws61{word-spacing:18.816000pt;}
.ws23{word-spacing:19.072000pt;}
.ws60{word-spacing:19.456000pt;}
.ws22{word-spacing:19.712000pt;}
.wsab{word-spacing:20.096000pt;}
.ws6c{word-spacing:20.160000pt;}
.wsac{word-spacing:20.352000pt;}
.wsb0{word-spacing:20.736000pt;}
.ws10{word-spacing:20.992000pt;}
.wsa8{word-spacing:21.376000pt;}
.wsf{word-spacing:21.632000pt;}
.wsad{word-spacing:22.272000pt;}
.ws4d{word-spacing:22.912000pt;}
.ws26{word-spacing:23.552000pt;}
.ws33{word-spacing:24.192000pt;}
.ws35{word-spacing:25.472000pt;}
.ws36{word-spacing:26.112000pt;}
.ws4b{word-spacing:26.752000pt;}
.ws4c{word-spacing:27.392000pt;}
.ws45{word-spacing:28.032000pt;}
.ws46{word-spacing:28.672000pt;}
.wsbf{word-spacing:29.312000pt;}
.wsbe{word-spacing:29.696000pt;}
.wsc{word-spacing:29.952000pt;}
.ws72{word-spacing:30.592000pt;}
.ws49{word-spacing:31.872000pt;}
.wsbd{word-spacing:32.000000pt;}
.wsae{word-spacing:34.432000pt;}
.wsa1{word-spacing:35.072000pt;}
.wsc2{word-spacing:35.136000pt;}
.wsb6{word-spacing:36.992000pt;}
.wsb7{word-spacing:37.632000pt;}
.wsb5{word-spacing:42.112000pt;}
.wsc1{word-spacing:44.032000pt;}
.wsc3{word-spacing:46.592000pt;}
.wsc4{word-spacing:46.976000pt;}
.wsa3{word-spacing:51.072000pt;}
.wsa5{word-spacing:51.712000pt;}
.wsa4{word-spacing:52.352000pt;}
.ws42{word-spacing:61.952000pt;}
._96{margin-left:-3921.010560pt;}
._97{margin-left:-3907.178880pt;}
._99{margin-left:-3826.711040pt;}
._98{margin-left:-3722.664960pt;}
._9b{margin-left:-3250.880000pt;}
._84{margin-left:-3008.960000pt;}
._95{margin-left:-2939.008000pt;}
._b3{margin-left:-2770.560000pt;}
._a0{margin-left:-2529.472000pt;}
._de{margin-left:-2521.856000pt;}
._b9{margin-left:-2515.200000pt;}
._9e{margin-left:-2512.320000pt;}
._88{margin-left:-2508.864000pt;}
._3a{margin-left:-2506.752000pt;}
._a8{margin-left:-2502.848000pt;}
._56{margin-left:-2501.184000pt;}
._8f{margin-left:-2499.264000pt;}
._79{margin-left:-2497.408000pt;}
._5c{margin-left:-2495.936000pt;}
._5a{margin-left:-2494.784000pt;}
._ec{margin-left:-2493.632000pt;}
._7b{margin-left:-2491.904000pt;}
._c0{margin-left:-2490.688000pt;}
._80{margin-left:-2489.472000pt;}
._82{margin-left:-2488.384000pt;}
._57{margin-left:-2487.360000pt;}
._52{margin-left:-2486.464000pt;}
._7d{margin-left:-2485.440000pt;}
._55{margin-left:-2484.160000pt;}
._50{margin-left:-2483.000320pt;}
._60{margin-left:-2481.408000pt;}
._4e{margin-left:-2479.680000pt;}
._58{margin-left:-2478.464000pt;}
._4f{margin-left:-2477.310720pt;}
._54{margin-left:-2476.160000pt;}
._61{margin-left:-2475.260160pt;}
._9d{margin-left:-2474.240000pt;}
._41{margin-left:-2473.131520pt;}
._33{margin-left:-2472.000000pt;}
._31{margin-left:-2469.248000pt;}
._4b{margin-left:-2467.520000pt;}
._1d{margin-left:-2466.048000pt;}
._1b{margin-left:-2465.024000pt;}
._44{margin-left:-2463.360000pt;}
._28{margin-left:-2461.824000pt;}
._81{margin-left:-2460.928000pt;}
._40{margin-left:-2459.776000pt;}
._42{margin-left:-2458.624000pt;}
._3e{margin-left:-2456.768000pt;}
._14{margin-left:-2455.168000pt;}
._17{margin-left:-2453.440000pt;}
._34{margin-left:-2452.352000pt;}
._12{margin-left:-2450.816000pt;}
._2a{margin-left:-2449.408000pt;}
._18{margin-left:-2447.936000pt;}
._3b{margin-left:-2446.012160pt;}
._13{margin-left:-2444.992000pt;}
._8{margin-left:-2443.328000pt;}
._15{margin-left:-2442.432000pt;}
._f{margin-left:-2441.472000pt;}
._b1{margin-left:-2437.120000pt;}
._b{margin-left:-2435.200000pt;}
._d9{margin-left:-2431.168000pt;}
._c{margin-left:-2426.688000pt;}
._9{margin-left:-2420.096000pt;}
._a9{margin-left:-2418.624000pt;}
._d{margin-left:-2415.872000pt;}
._3{margin-left:-2411.328000pt;}
._e4{margin-left:-2401.984000pt;}
._cb{margin-left:-2367.360000pt;}
._ac{margin-left:-2304.000000pt;}
._c1{margin-left:-2298.880000pt;}
._d1{margin-left:-2291.712000pt;}
._6d{margin-left:-2289.899520pt;}
._bf{margin-left:-2280.128000pt;}
._10{margin-left:-2270.656000pt;}
._6b{margin-left:-2259.499520pt;}
._19{margin-left:-2257.344000pt;}
._c3{margin-left:-2242.624000pt;}
._da{margin-left:-2219.904000pt;}
._70{margin-left:-2206.891520pt;}
._71{margin-left:-2189.355520pt;}
._48{margin-left:-2137.472000pt;}
._2b{margin-left:-2121.216000pt;}
._af{margin-left:-2116.176640pt;}
._ed{margin-left:-2106.240000pt;}
._94{margin-left:-2093.616640pt;}
._a4{margin-left:-2067.520000pt;}
._2d{margin-left:-2035.328000pt;}
._24{margin-left:-2013.184000pt;}
._91{margin-left:-1982.080000pt;}
._66{margin-left:-1923.796480pt;}
._8a{margin-left:-1885.056000pt;}
._6a{margin-left:-1858.347520pt;}
._74{margin-left:-1845.824000pt;}
._c7{margin-left:-1828.096000pt;}
._2c{margin-left:-1824.640000pt;}
._7c{margin-left:-1783.723520pt;}
._bc{margin-left:-1775.232000pt;}
._36{margin-left:-1760.413440pt;}
._87{margin-left:-1711.168000pt;}
._df{margin-left:-1693.248000pt;}
._8b{margin-left:-1677.952000pt;}
._8c{margin-left:-1674.496000pt;}
._8e{margin-left:-1671.488000pt;}
._35{margin-left:-1667.681280pt;}
._e3{margin-left:-1633.792000pt;}
._86{margin-left:-1601.792000pt;}
._dc{margin-left:-1526.464000pt;}
._68{margin-left:-1493.952000pt;}
._b2{margin-left:-1480.064000pt;}
._92{margin-left:-1478.644480pt;}
._d5{margin-left:-1469.312000pt;}
._eb{margin-left:-1440.832000pt;}
._53{margin-left:-1436.864000pt;}
._e1{margin-left:-1416.768000pt;}
._e8{margin-left:-1405.120000pt;}
._dd{margin-left:-1384.320000pt;}
._aa{margin-left:-1377.792000pt;}
._cf{margin-left:-1351.168000pt;}
._5f{margin-left:-1341.760000pt;}
._e9{margin-left:-1323.328000pt;}
._e5{margin-left:-1320.064000pt;}
._e2{margin-left:-1291.712000pt;}
._21{margin-left:-1287.808000pt;}
._c6{margin-left:-1274.368000pt;}
._23{margin-left:-1266.560000pt;}
._51{margin-left:-1259.328000pt;}
._b6{margin-left:-1245.824000pt;}
._c4{margin-left:-1228.032000pt;}
._d8{margin-left:-1223.360000pt;}
._c5{margin-left:-1216.384000pt;}
._bb{margin-left:-1198.336000pt;}
._9f{margin-left:-1195.904000pt;}
._d0{margin-left:-1184.384000pt;}
._bd{margin-left:-1181.824000pt;}
._7e{margin-left:-1177.984000pt;}
._b8{margin-left:-1174.720000pt;}
._d2{margin-left:-1173.632000pt;}
._27{margin-left:-1171.072000pt;}
._cc{margin-left:-1167.872000pt;}
._c2{margin-left:-1166.976000pt;}
._e7{margin-left:-1153.344000pt;}
._b7{margin-left:-1124.288000pt;}
._49{margin-left:-1116.928000pt;}
._59{margin-left:-1109.760000pt;}
._e0{margin-left:-1056.960000pt;}
._a3{margin-left:-1048.107520pt;}
._d6{margin-left:-1035.328000pt;}
._69{margin-left:-1031.744000pt;}
._ca{margin-left:-1021.120000pt;}
._d4{margin-left:-1010.944000pt;}
._a5{margin-left:-1004.779520pt;}
._ea{margin-left:-977.792000pt;}
._78{margin-left:-975.040000pt;}
._ce{margin-left:-972.160000pt;}
._c8{margin-left:-963.968000pt;}
._b5{margin-left:-961.984000pt;}
._67{margin-left:-956.668160pt;}
._2e{margin-left:-942.767360pt;}
._ab{margin-left:-931.072000pt;}
._90{margin-left:-924.736000pt;}
._db{margin-left:-921.344000pt;}
._7f{margin-left:-918.464000pt;}
._a1{margin-left:-911.360000pt;}
._e6{margin-left:-893.312000pt;}
._5d{margin-left:-878.400000pt;}
._63{margin-left:-871.552000pt;}
._ad{margin-left:-868.096000pt;}
._2f{margin-left:-860.672000pt;}
._be{margin-left:-846.208000pt;}
._25{margin-left:-821.120000pt;}
._83{margin-left:-818.368000pt;}
._1e{margin-left:-808.128000pt;}
._6f{margin-left:-796.480000pt;}
._65{margin-left:-793.344000pt;}
._d7{margin-left:-790.144000pt;}
._4c{margin-left:-755.008000pt;}
._b0{margin-left:-718.784000pt;}
._5e{margin-left:-712.384000pt;}
._77{margin-left:-689.920000pt;}
._9c{margin-left:-680.256000pt;}
._8d{margin-left:-660.544000pt;}
._cd{margin-left:-658.624000pt;}
._4d{margin-left:-651.008000pt;}
._b4{margin-left:-647.552000pt;}
._43{margin-left:-646.055680pt;}
._22{margin-left:-644.224000pt;}
._d3{margin-left:-591.040000pt;}
._ba{margin-left:-583.552000pt;}
._73{margin-left:-561.664000pt;}
._4{margin-left:-558.656000pt;}
._76{margin-left:-540.544000pt;}
._6{margin-left:-519.040000pt;}
._75{margin-left:-504.512000pt;}
._4a{margin-left:-497.792000pt;}
._ae{margin-left:-491.584000pt;}
._a6{margin-left:-477.611520pt;}
._62{margin-left:-474.731520pt;}
._3c{margin-left:-456.380160pt;}
._89{margin-left:-452.160000pt;}
._9a{margin-left:-349.696640pt;}
._6e{margin-left:-209.792000pt;}
._93{margin-left:-206.055680pt;}
._1f{margin-left:-177.792000pt;}
._a{margin-left:-21.952000pt;}
._64{margin-left:-5.184000pt;}
._e{margin-left:-3.968000pt;}
._0{margin-left:-2.496000pt;}
._1{margin-left:-1.280000pt;}
._2{width:1.664000pt;}
._5{width:2.688000pt;}
._72{width:3.732480pt;}
._29{width:4.870400pt;}
._11{width:5.888000pt;}
._6c{width:7.096320pt;}
._38{width:8.007680pt;}
._16{width:9.024000pt;}
._26{width:10.304000pt;}
._3d{width:11.968000pt;}
._a2{width:12.992000pt;}
._3f{width:14.144000pt;}
._37{width:15.680000pt;}
._7a{width:16.832000pt;}
._5b{width:18.688000pt;}
._1a{width:19.974400pt;}
._1c{width:21.184000pt;}
._46{width:22.976000pt;}
._20{width:23.872000pt;}
._30{width:24.768000pt;}
._32{width:26.014720pt;}
._45{width:28.544000pt;}
._7{width:30.784000pt;}
._a7{width:35.520000pt;}
._39{width:62.023680pt;}
._c9{width:82.048000pt;}
._47{width:750.208000pt;}
._85{width:1004.480000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:3.520000pt;}
.yc4{bottom:3.680000pt;}
.yd8{bottom:4.480000pt;}
.yd5{bottom:4.640000pt;}
.ye9{bottom:4.800000pt;}
.y6b{bottom:5.120000pt;}
.y6a{bottom:5.280000pt;}
.y73{bottom:5.440000pt;}
.y66{bottom:15.680000pt;}
.yce{bottom:18.720000pt;}
.yc3{bottom:18.880000pt;}
.yc6{bottom:19.040000pt;}
.yd7{bottom:19.840000pt;}
.yd4{bottom:20.000000pt;}
.y72{bottom:23.040000pt;}
.y67{bottom:24.480000pt;}
.y100{bottom:99.680000pt;}
.y9f{bottom:106.880000pt;}
.y19{bottom:111.520000pt;}
.y114{bottom:111.840000pt;}
.yc0{bottom:119.360000pt;}
.y56{bottom:122.240000pt;}
.y7f{bottom:123.200000pt;}
.y63{bottom:130.240000pt;}
.ybf{bottom:133.920000pt;}
.y9e{bottom:135.840000pt;}
.yff{bottom:136.480000pt;}
.y18{bottom:148.320000pt;}
.ybe{bottom:148.480000pt;}
.y61{bottom:148.640000pt;}
.y113{bottom:148.800000pt;}
.y7e{bottom:152.160000pt;}
.y55{bottom:159.040000pt;}
.ybd{bottom:163.040000pt;}
.y9d{bottom:164.800000pt;}
.y3e{bottom:167.040000pt;}
.yfe{bottom:173.280000pt;}
.ybc{bottom:177.600000pt;}
.y7d{bottom:181.120000pt;}
.y17{bottom:185.120000pt;}
.y60{bottom:185.440000pt;}
.ybb{bottom:192.160000pt;}
.y9c{bottom:193.760000pt;}
.y54{bottom:195.840000pt;}
.y3d{bottom:203.840000pt;}
.y120{bottom:204.000000pt;}
.yba{bottom:207.040000pt;}
.y7c{bottom:210.080000pt;}
.ye8{bottom:212.640000pt;}
.y16{bottom:221.920000pt;}
.y5f{bottom:222.240000pt;}
.yb9{bottom:222.400000pt;}
.y9b{bottom:222.720000pt;}
.ye7{bottom:224.960000pt;}
.y53{bottom:232.640000pt;}
.y7b{bottom:239.040000pt;}
.y3c{bottom:240.640000pt;}
.yfd{bottom:246.880000pt;}
.ye6{bottom:248.320000pt;}
.yb8{bottom:250.400000pt;}
.y9a{bottom:251.680000pt;}
.y15{bottom:258.720000pt;}
.y2b{bottom:259.040000pt;}
.ye5{bottom:260.640000pt;}
.y7a{bottom:268.000000pt;}
.y52{bottom:269.440000pt;}
.y3b{bottom:277.440000pt;}
.y11f{bottom:277.600000pt;}
.y99{bottom:280.640000pt;}
.yb7{bottom:280.960000pt;}
.yfc{bottom:283.680000pt;}
.ye2{bottom:284.000000pt;}
.y2a{bottom:293.440000pt;}
.y14{bottom:295.520000pt;}
.y5e{bottom:295.840000pt;}
.y112{bottom:296.000000pt;}
.ye3{bottom:296.160000pt;}
.ye1{bottom:296.320000pt;}
.y79{bottom:296.960000pt;}
.ye4{bottom:303.840000pt;}
.y51{bottom:306.240000pt;}
.y98{bottom:309.600000pt;}
.yb6{bottom:311.520000pt;}
.y3a{bottom:314.240000pt;}
.yfb{bottom:320.480000pt;}
.ydf{bottom:324.310880pt;}
.y78{bottom:325.920000pt;}
.yde{bottom:332.000000pt;}
.y13{bottom:332.320000pt;}
.y5d{bottom:332.640000pt;}
.y97{bottom:338.560000pt;}
.ye0{bottom:339.516480pt;}
.y29{bottom:340.800000pt;}
.yb5{bottom:342.080000pt;}
.y50{bottom:343.040000pt;}
.y11e{bottom:350.880000pt;}
.y39{bottom:351.040000pt;}
.y77{bottom:354.880000pt;}
.ydd{bottom:355.360000pt;}
.yfa{bottom:357.280000pt;}
.y96{bottom:367.520000pt;}
.ydc{bottom:367.680000pt;}
.y12{bottom:369.120000pt;}
.y5c{bottom:369.440000pt;}
.y111{bottom:369.600000pt;}
.yb4{bottom:372.480000pt;}
.y28{bottom:377.600000pt;}
.y4f{bottom:379.840000pt;}
.y76{bottom:383.840000pt;}
.y38{bottom:387.840000pt;}
.yda{bottom:391.040000pt;}
.yf9{bottom:394.080000pt;}
.y95{bottom:396.480000pt;}
.ydb{bottom:399.360000pt;}
.yb3{bottom:403.040000pt;}
.y11{bottom:405.920000pt;}
.y5b{bottom:406.240000pt;}
.y75{bottom:412.800000pt;}
.y4e{bottom:416.640000pt;}
.y37{bottom:424.640000pt;}
.y94{bottom:425.440000pt;}
.y27{bottom:426.240000pt;}
.yf8{bottom:430.880000pt;}
.yb2{bottom:433.600000pt;}
.yd6{bottom:433.920000pt;}
.yd9{bottom:436.800000pt;}
.y71{bottom:441.760000pt;}
.y10{bottom:442.720000pt;}
.y5a{bottom:443.040000pt;}
.y110{bottom:443.200000pt;}
.y4d{bottom:453.440000pt;}
.y93{bottom:454.400000pt;}
.y74{bottom:455.840000pt;}
.yd3{bottom:460.320000pt;}
.y36{bottom:461.440000pt;}
.y11d{bottom:461.600000pt;}
.yb1{bottom:464.160000pt;}
.yf7{bottom:467.680000pt;}
.yd2{bottom:471.520000pt;}
.y26{bottom:473.600000pt;}
.yf{bottom:479.520000pt;}
.y59{bottom:479.840000pt;}
.y92{bottom:483.360000pt;}
.y70{bottom:488.480000pt;}
.y4c{bottom:490.240000pt;}
.yd1{bottom:493.920000pt;}
.yb0{bottom:494.560000pt;}
.y35{bottom:498.240000pt;}
.yf6{bottom:504.480000pt;}
.yd0{bottom:505.120000pt;}
.y58{bottom:507.360000pt;}
.y25{bottom:510.400000pt;}
.y91{bottom:512.320000pt;}
.ye{bottom:516.320000pt;}
.y11c{bottom:516.640000pt;}
.y10f{bottom:516.800000pt;}
.y6f{bottom:517.440000pt;}
.yaf{bottom:525.120000pt;}
.y4b{bottom:527.040000pt;}
.ycd{bottom:527.520000pt;}
.y57{bottom:534.880000pt;}
.y34{bottom:535.040000pt;}
.y11b{bottom:535.200000pt;}
.ycf{bottom:538.560000pt;}
.ycc{bottom:538.720000pt;}
.y90{bottom:541.280000pt;}
.y6e{bottom:546.400000pt;}
.y24{bottom:547.200000pt;}
.yd{bottom:553.120000pt;}
.y10e{bottom:553.440000pt;}
.y127{bottom:553.600000pt;}
.yae{bottom:555.680000pt;}
.yca{bottom:559.680000pt;}
.y4a{bottom:563.840000pt;}
.y8f{bottom:570.240000pt;}
.ycb{bottom:570.880000pt;}
.yc9{bottom:571.040000pt;}
.y33{bottom:571.840000pt;}
.y126{bottom:572.000000pt;}
.y6c{bottom:575.360000pt;}
.yf5{bottom:578.080000pt;}
.y6d{bottom:579.840000pt;}
.y23{bottom:585.120000pt;}
.yad{bottom:586.240000pt;}
.yc{bottom:589.920000pt;}
.y10d{bottom:590.240000pt;}
.yc5{bottom:592.000000pt;}
.y8e{bottom:599.360000pt;}
.y49{bottom:600.640000pt;}
.yc7{bottom:603.200000pt;}
.y69{bottom:604.320000pt;}
.y32{bottom:608.640000pt;}
.yf4{bottom:614.880000pt;}
.yac{bottom:616.640000pt;}
.y22{bottom:621.920000pt;}
.yc2{bottom:624.320000pt;}
.yb{bottom:626.720000pt;}
.y10c{bottom:627.040000pt;}
.y11a{bottom:627.200000pt;}
.y8d{bottom:628.320000pt;}
.y65{bottom:633.920000pt;}
.yc1{bottom:635.520000pt;}
.y48{bottom:637.440000pt;}
.y68{bottom:640.800000pt;}
.y31{bottom:645.440000pt;}
.y125{bottom:645.600000pt;}
.yab{bottom:647.200000pt;}
.yf3{bottom:651.680000pt;}
.y8c{bottom:657.280000pt;}
.y21{bottom:658.720000pt;}
.ya{bottom:663.520000pt;}
.y10b{bottom:663.840000pt;}
.yaa{bottom:665.600000pt;}
.y47{bottom:674.240000pt;}
.y30{bottom:682.240000pt;}
.y8b{bottom:686.240000pt;}
.yf2{bottom:688.480000pt;}
.y9{bottom:700.320000pt;}
.y10a{bottom:700.640000pt;}
.y124{bottom:700.800000pt;}
.y20{bottom:707.200000pt;}
.y46{bottom:711.040000pt;}
.y8a{bottom:715.200000pt;}
.y2f{bottom:719.040000pt;}
.y119{bottom:719.200000pt;}
.yf1{bottom:725.280000pt;}
.y8{bottom:737.120000pt;}
.y109{bottom:737.440000pt;}
.ya9{bottom:739.200000pt;}
.y89{bottom:744.160000pt;}
.y45{bottom:747.840000pt;}
.ya8{bottom:754.240000pt;}
.y1f{bottom:754.720000pt;}
.y2e{bottom:755.840000pt;}
.y62{bottom:756.000000pt;}
.yf0{bottom:762.080000pt;}
.ya7{bottom:768.800000pt;}
.y88{bottom:773.120000pt;}
.y7{bottom:773.920000pt;}
.y108{bottom:774.240000pt;}
.ya6{bottom:783.360000pt;}
.y44{bottom:784.640000pt;}
.y1e{bottom:791.520000pt;}
.y2d{bottom:792.640000pt;}
.y123{bottom:792.800000pt;}
.ya5{bottom:797.920000pt;}
.yef{bottom:798.880000pt;}
.y87{bottom:802.080000pt;}
.y6{bottom:810.720000pt;}
.y107{bottom:811.040000pt;}
.y118{bottom:811.200000pt;}
.ya4{bottom:812.480000pt;}
.y43{bottom:821.440000pt;}
.ya3{bottom:827.040000pt;}
.y1d{bottom:828.320000pt;}
.y2c{bottom:829.440000pt;}
.y86{bottom:831.040000pt;}
.yee{bottom:835.680000pt;}
.ya2{bottom:841.600000pt;}
.y5{bottom:847.520000pt;}
.y106{bottom:847.840000pt;}
.y122{bottom:848.000000pt;}
.ya1{bottom:856.160000pt;}
.y42{bottom:858.240000pt;}
.y85{bottom:860.000000pt;}
.y1c{bottom:866.240000pt;}
.y105{bottom:866.400000pt;}
.ya0{bottom:870.720000pt;}
.yed{bottom:872.480000pt;}
.y4{bottom:884.320000pt;}
.y117{bottom:884.640000pt;}
.y104{bottom:884.800000pt;}
.y84{bottom:888.960000pt;}
.y41{bottom:895.040000pt;}
.y1b{bottom:903.040000pt;}
.yec{bottom:909.280000pt;}
.y83{bottom:917.920000pt;}
.y3{bottom:921.120000pt;}
.y103{bottom:921.440000pt;}
.y121{bottom:921.600000pt;}
.y40{bottom:931.840000pt;}
.y1a{bottom:939.840000pt;}
.y102{bottom:940.000000pt;}
.yeb{bottom:946.080000pt;}
.y82{bottom:946.880000pt;}
.y116{bottom:958.240000pt;}
.y101{bottom:958.400000pt;}
.y3f{bottom:968.640000pt;}
.y81{bottom:975.840000pt;}
.y2{bottom:976.640000pt;}
.yea{bottom:982.880000pt;}
.y115{bottom:995.040000pt;}
.y80{bottom:1004.800000pt;}
.y1{bottom:1013.440000pt;}
.y64{bottom:1013.600000pt;}
.ha{height:17.598667pt;}
.h8{height:17.600000pt;}
.he{height:17.760000pt;}
.h17{height:25.160625pt;}
.hb{height:30.982500pt;}
.h12{height:31.518667pt;}
.h15{height:31.520000pt;}
.h13{height:31.680000pt;}
.h16{height:33.600000pt;}
.h19{height:33.760000pt;}
.h1a{height:33.761333pt;}
.hd{height:35.360000pt;}
.h5{height:38.238667pt;}
.h6{height:38.672812pt;}
.hc{height:43.720625pt;}
.hf{height:45.326250pt;}
.h3{height:46.593750pt;}
.h14{height:46.983810pt;}
.h9{height:47.621250pt;}
.h2{height:57.375000pt;}
.h4{height:59.561250pt;}
.h1b{height:67.128750pt;}
.h7{height:73.872812pt;}
.h18{height:77.687170pt;}
.h10{height:793.760000pt;}
.h11{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:75.678667pt;}
.wd{width:93.918667pt;}
.we{width:96.798667pt;}
.wc{width:104.958667pt;}
.wf{width:105.760000pt;}
.w3{width:123.198667pt;}
.wa{width:160.000000pt;}
.wb{width:160.001333pt;}
.w5{width:160.481333pt;}
.w9{width:167.040000pt;}
.w2{width:170.081333pt;}
.w4{width:189.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:1122.560000pt;}
.w8{width:1122.666667pt;}
.x5{left:-37.760000pt;}
.x0{left:0.000000pt;}
.x43{left:8.480000pt;}
.x9{left:9.440000pt;}
.x36{left:12.480000pt;}
.x2b{left:13.440000pt;}
.x42{left:15.040000pt;}
.x10{left:16.640000pt;}
.x22{left:18.400000pt;}
.x44{left:20.320000pt;}
.x3e{left:21.920000pt;}
.x7{left:23.360000pt;}
.x14{left:24.800000pt;}
.x26{left:26.400000pt;}
.x2d{left:28.480000pt;}
.x28{left:30.240000pt;}
.x2e{left:32.160000pt;}
.x16{left:33.920000pt;}
.x11{left:35.680000pt;}
.x4{left:37.600000pt;}
.xa{left:39.360000pt;}
.x21{left:41.440000pt;}
.x1a{left:43.200000pt;}
.x27{left:45.120000pt;}
.x2c{left:46.400000pt;}
.x29{left:48.960000pt;}
.x2a{left:50.080000pt;}
.x18{left:52.640000pt;}
.x13{left:54.400000pt;}
.x20{left:55.680000pt;}
.x3c{left:56.640000pt;}
.xe{left:58.080000pt;}
.x24{left:59.360000pt;}
.x1c{left:61.920000pt;}
.x17{left:63.520000pt;}
.x19{left:66.720000pt;}
.x12{left:68.640000pt;}
.xc{left:72.320000pt;}
.x1b{left:76.000000pt;}
.x1e{left:82.240000pt;}
.x30{left:94.400000pt;}
.x1d{left:96.320000pt;}
.x3a{left:102.400000pt;}
.x39{left:103.840000pt;}
.x3d{left:109.440000pt;}
.x46{left:112.000000pt;}
.x1{left:113.440000pt;}
.x1f{left:115.520000pt;}
.x25{left:116.960000pt;}
.x23{left:120.960000pt;}
.x4f{left:122.400000pt;}
.x2f{left:132.320000pt;}
.x2{left:137.440000pt;}
.x32{left:147.200000pt;}
.x3f{left:154.400000pt;}
.x3{left:161.440000pt;}
.x40{left:200.480000pt;}
.x6{left:207.680000pt;}
.x8{left:251.360000pt;}
.x37{left:297.920000pt;}
.xb{left:330.880000pt;}
.x45{left:392.480000pt;}
.x3b{left:400.800000pt;}
.x38{left:405.120000pt;}
.x41{left:406.400000pt;}
.x33{left:498.880000pt;}
.xd{left:520.000000pt;}
.x47{left:552.953760pt;}
.x4c{left:636.000000pt;}
.x34{left:666.560000pt;}
.xf{left:680.480000pt;}
.x48{left:695.833280pt;}
.x49{left:729.577760pt;}
.x15{left:731.200000pt;}
.x4d{left:799.520000pt;}
.x35{left:827.200000pt;}
.x4a{left:860.930240pt;}
.x4b{left:880.292480pt;}
.x4e{left:953.440000pt;}
.x31{left:997.280000pt;}
}

