
    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_38298618cb8f16fe5655abe9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_cadebf7eca5c106e8425083a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_5cefec9b4eb1fd2c872523e1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.128418;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_d6aa6d6f8f7bfd87356fad3f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_fe020f3d0935ff08e90e5531.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3fca02d02f130b0505fe953b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e86d5135c400d82ee1c0ff40.woff')format("woff");}.ff8{font-family:ff8;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a544f08f2504411ecceeaf9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.000000,-0.237155,0.237173,0.079050,0,0);-ms-transform:matrix(0.000000,-0.237155,0.237173,0.079050,0,0);-webkit-transform:matrix(0.000000,-0.237155,0.237173,0.079050,0,0);}
.m3{transform:matrix(0.000000,-0.249141,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249141,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249141,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249981,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250057,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250057,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250057,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,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);}
.m9{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,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);}
.v9{vertical-align:-28.233814px;}
.v3{vertical-align:-27.000000px;}
.v7{vertical-align:-21.183590px;}
.v6{vertical-align:-7.912798px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.484552px;}
.v5{vertical-align:20.880000px;}
.v4{vertical-align:24.120000px;}
.v1{vertical-align:27.000000px;}
.ls3d{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls49{letter-spacing:-0.180360px;}
.ls4{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.095760px;}
.ls19{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.062812px;}
.ls61{letter-spacing:0.063041px;}
.ls50{letter-spacing:0.070967px;}
.ls1{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.120240px;}
.ls2{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.151200px;}
.ls55{letter-spacing:0.156993px;}
.ls53{letter-spacing:0.157029px;}
.ls5c{letter-spacing:0.157602px;}
.ls5f{letter-spacing:0.157614px;}
.ls39{letter-spacing:0.158400px;}
.ls5e{letter-spacing:0.166138px;}
.ls4c{letter-spacing:0.177417px;}
.ls4e{letter-spacing:0.178029px;}
.ls23{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.180360px;}
.ls5a{letter-spacing:0.188435px;}
.ls62{letter-spacing:0.189122px;}
.ls2e{letter-spacing:0.191520px;}
.ls51{letter-spacing:0.212900px;}
.ls54{letter-spacing:0.282652px;}
.ls5d{letter-spacing:0.283684px;}
.ls4d{letter-spacing:0.319351px;}
.ls5b{letter-spacing:0.345464px;}
.ls63{letter-spacing:0.346724px;}
.ls20{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.390317px;}
.ls1a{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.526680px;}
.lse{letter-spacing:0.720000px;}
.ls29{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.350000px;}
.ls1f{letter-spacing:1.440000px;}
.ls27{letter-spacing:2.430000px;}
.ls43{letter-spacing:2.520000px;}
.ls3f{letter-spacing:3.240000px;}
.ls2d{letter-spacing:3.247200px;}
.ls2b{letter-spacing:3.600000px;}
.ls32{letter-spacing:4.320000px;}
.ls41{letter-spacing:4.334400px;}
.ls38{letter-spacing:4.680000px;}
.ls25{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.068800px;}
.ls17{letter-spacing:5.400000px;}
.ls16{letter-spacing:5.414400px;}
.ls40{letter-spacing:5.752800px;}
.ls30{letter-spacing:5.760000px;}
.ls26{letter-spacing:6.030000px;}
.ls34{letter-spacing:6.120000px;}
.ls14{letter-spacing:6.480000px;}
.ls4b{letter-spacing:7.200000px;}
.ls35{letter-spacing:7.560000px;}
.ls7{letter-spacing:7.920000px;}
.ls31{letter-spacing:8.280000px;}
.lsa{letter-spacing:8.640000px;}
.lsc{letter-spacing:8.661600px;}
.ls22{letter-spacing:9.360000px;}
.ls1e{letter-spacing:9.720000px;}
.ls10{letter-spacing:10.440000px;}
.ls12{letter-spacing:10.800000px;}
.ls46{letter-spacing:11.520000px;}
.ls8{letter-spacing:12.240000px;}
.ls9{letter-spacing:12.600000px;}
.ls3a{letter-spacing:12.960000px;}
.ls45{letter-spacing:13.320000px;}
.ls24{letter-spacing:13.680000px;}
.ls47{letter-spacing:14.040000px;}
.ls36{letter-spacing:14.400000px;}
.ls3b{letter-spacing:14.760000px;}
.ls33{letter-spacing:14.788800px;}
.ls3e{letter-spacing:15.120000px;}
.ls1d{letter-spacing:15.127200px;}
.ls21{letter-spacing:15.840000px;}
.lsd{letter-spacing:16.200000px;}
.ls1c{letter-spacing:16.560000px;}
.ls60{letter-spacing:16.957975px;}
.ls1b{letter-spacing:17.640000px;}
.ls2c{letter-spacing:18.720000px;}
.ls18{letter-spacing:20.520000px;}
.ls37{letter-spacing:20.880000px;}
.ls3c{letter-spacing:22.320000px;}
.ls42{letter-spacing:24.480000px;}
.lsb{letter-spacing:25.200000px;}
.ls11{letter-spacing:29.520000px;}
.ls44{letter-spacing:33.984000px;}
.ls57{letter-spacing:121.477634px;}
.ls56{letter-spacing:123.236359px;}
.ls0{letter-spacing:194.400000px;}
.ls58{letter-spacing:401.428936px;}
.ls4f{letter-spacing:452.732701px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc5{word-spacing:-47.880000px;}
.ws2{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws35{word-spacing:-17.928000px;}
.ws55{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.ws36{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.640000px;}
.wsa6{word-spacing:-17.496000px;}
.wsd6{word-spacing:-15.030000px;}
.wsd8{word-spacing:-14.849640px;}
.wsc4{word-spacing:-12.161520px;}
.ws6d{word-spacing:-11.970000px;}
.wsd7{word-spacing:-9.720000px;}
.wse5{word-spacing:-9.649172px;}
.wse6{word-spacing:-9.616001px;}
.wsfd{word-spacing:-9.004688px;}
.wsfe{word-spacing:-8.542028px;}
.wsf1{word-spacing:-8.510972px;}
.ws70{word-spacing:-0.526680px;}
.ws44{word-spacing:-0.504000px;}
.wsc1{word-spacing:-0.432000px;}
.wsda{word-spacing:-0.420840px;}
.wsec{word-spacing:-0.390317px;}
.wsac{word-spacing:-0.360000px;}
.ws104{word-spacing:-0.346724px;}
.wsf8{word-spacing:-0.345464px;}
.ws81{word-spacing:-0.191520px;}
.wseb{word-spacing:-0.177417px;}
.ws103{word-spacing:-0.157602px;}
.wsf7{word-spacing:-0.157029px;}
.ws7{word-spacing:-0.144000px;}
.ws6{word-spacing:-0.072000px;}
.wsea{word-spacing:-0.035483px;}
.ws101{word-spacing:-0.031520px;}
.wsf5{word-spacing:-0.031406px;}
.ws4{word-spacing:0.000000px;}
.wsf4{word-spacing:0.062812px;}
.ws100{word-spacing:0.063041px;}
.wse9{word-spacing:0.070967px;}
.ws8e{word-spacing:0.072000px;}
.wsf6{word-spacing:0.094196px;}
.wsf3{word-spacing:0.094217px;}
.wsff{word-spacing:0.094561px;}
.ws102{word-spacing:0.094568px;}
.ws82{word-spacing:0.095760px;}
.wse8{word-spacing:0.106450px;}
.ws5{word-spacing:0.144000px;}
.wsd9{word-spacing:0.180360px;}
.wsf{word-spacing:0.216000px;}
.ws87{word-spacing:0.288000px;}
.ws27{word-spacing:0.360000px;}
.wsa5{word-spacing:0.432000px;}
.wsa8{word-spacing:0.576000px;}
.ws33{word-spacing:0.648000px;}
.ws16{word-spacing:0.720000px;}
.ws40{word-spacing:0.936000px;}
.ws19{word-spacing:1.080000px;}
.ws54{word-spacing:1.296000px;}
.ws7e{word-spacing:1.368000px;}
.ws3f{word-spacing:1.440000px;}
.ws80{word-spacing:1.800000px;}
.ws66{word-spacing:2.016000px;}
.ws65{word-spacing:2.160000px;}
.ws7d{word-spacing:2.376000px;}
.ws64{word-spacing:2.448000px;}
.wsb5{word-spacing:2.520000px;}
.wsa7{word-spacing:2.736000px;}
.wsb2{word-spacing:2.808000px;}
.ws8a{word-spacing:2.880000px;}
.ws90{word-spacing:3.096000px;}
.ws8f{word-spacing:3.168000px;}
.ws6a{word-spacing:3.240000px;}
.ws28{word-spacing:3.456000px;}
.ws26{word-spacing:3.528000px;}
.ws29{word-spacing:3.600000px;}
.ws7a{word-spacing:3.816000px;}
.ws79{word-spacing:3.888000px;}
.ws13{word-spacing:3.960000px;}
.ws12{word-spacing:4.176000px;}
.ws84{word-spacing:4.248000px;}
.wsc{word-spacing:4.320000px;}
.ws17{word-spacing:4.536000px;}
.ws18{word-spacing:4.608000px;}
.ws6c{word-spacing:4.680000px;}
.wsb9{word-spacing:4.824000px;}
.ws4f{word-spacing:4.896000px;}
.ws4d{word-spacing:4.968000px;}
.ws7b{word-spacing:5.040000px;}
.wsb6{word-spacing:5.256000px;}
.ws50{word-spacing:5.328000px;}
.ws4e{word-spacing:5.400000px;}
.wsab{word-spacing:5.616000px;}
.ws47{word-spacing:5.688000px;}
.ws4c{word-spacing:5.760000px;}
.ws7c{word-spacing:5.976000px;}
.ws48{word-spacing:6.048000px;}
.ws78{word-spacing:6.120000px;}
.wsba{word-spacing:6.336000px;}
.ws43{word-spacing:6.408000px;}
.ws42{word-spacing:6.480000px;}
.ws60{word-spacing:6.696000px;}
.wsb0{word-spacing:6.768000px;}
.wsdc{word-spacing:6.840000px;}
.ws39{word-spacing:7.056000px;}
.wsc9{word-spacing:7.128000px;}
.ws38{word-spacing:7.200000px;}
.wsdb{word-spacing:7.272000px;}
.ws46{word-spacing:7.416000px;}
.ws59{word-spacing:7.488000px;}
.ws5b{word-spacing:7.560000px;}
.ws9f{word-spacing:7.632000px;}
.ws45{word-spacing:7.776000px;}
.ws62{word-spacing:7.848000px;}
.ws5a{word-spacing:7.920000px;}
.ws1b{word-spacing:8.136000px;}
.ws1a{word-spacing:8.208000px;}
.ws1c{word-spacing:8.280000px;}
.ws2c{word-spacing:8.496000px;}
.ws25{word-spacing:8.568000px;}
.ws24{word-spacing:8.640000px;}
.ws99{word-spacing:8.784000px;}
.wsaa{word-spacing:8.856000px;}
.wsd2{word-spacing:8.928000px;}
.ws91{word-spacing:9.000000px;}
.ws72{word-spacing:9.216000px;}
.ws69{word-spacing:9.288000px;}
.ws71{word-spacing:9.360000px;}
.ws68{word-spacing:9.576000px;}
.wsaf{word-spacing:9.720000px;}
.wsde{word-spacing:9.792000px;}
.ws2e{word-spacing:9.936000px;}
.ws2f{word-spacing:10.008000px;}
.wsb{word-spacing:10.080000px;}
.wsa{word-spacing:10.296000px;}
.ws3d{word-spacing:10.368000px;}
.ws3a{word-spacing:10.440000px;}
.ws10{word-spacing:10.656000px;}
.ws11{word-spacing:10.728000px;}
.ws41{word-spacing:10.800000px;}
.ws9b{word-spacing:11.160000px;}
.wsa9{word-spacing:11.376000px;}
.ws94{word-spacing:11.448000px;}
.ws88{word-spacing:11.520000px;}
.ws63{word-spacing:11.736000px;}
.ws83{word-spacing:11.808000px;}
.wsa4{word-spacing:11.880000px;}
.wsb3{word-spacing:12.096000px;}
.ws7f{word-spacing:12.168000px;}
.wsb4{word-spacing:12.240000px;}
.wscf{word-spacing:12.456000px;}
.ws21{word-spacing:12.528000px;}
.ws22{word-spacing:12.600000px;}
.wsa3{word-spacing:12.816000px;}
.ws23{word-spacing:12.888000px;}
.ws1f{word-spacing:12.960000px;}
.ws1e{word-spacing:13.176000px;}
.ws20{word-spacing:13.248000px;}
.ws37{word-spacing:13.320000px;}
.ws74{word-spacing:13.536000px;}
.ws73{word-spacing:13.680000px;}
.ws8b{word-spacing:13.968000px;}
.wsc3{word-spacing:14.040000px;}
.ws15{word-spacing:14.256000px;}
.wsa0{word-spacing:14.400000px;}
.ws9d{word-spacing:14.616000px;}
.ws9c{word-spacing:14.688000px;}
.wsdd{word-spacing:14.760000px;}
.ws5c{word-spacing:14.976000px;}
.ws5d{word-spacing:15.120000px;}
.ws8c{word-spacing:15.336000px;}
.ws95{word-spacing:15.408000px;}
.ws8d{word-spacing:15.480000px;}
.wsae{word-spacing:15.696000px;}
.ws6f{word-spacing:15.768000px;}
.ws6e{word-spacing:15.840000px;}
.ws58{word-spacing:16.056000px;}
.ws2d{word-spacing:16.128000px;}
.wscc{word-spacing:16.200000px;}
.ws57{word-spacing:16.416000px;}
.ws1d{word-spacing:16.560000px;}
.ws97{word-spacing:16.920000px;}
.wsad{word-spacing:17.208000px;}
.ws3b{word-spacing:17.496000px;}
.ws56{word-spacing:17.640000px;}
.wsb8{word-spacing:17.928000px;}
.wsb7{word-spacing:18.000000px;}
.ws4b{word-spacing:18.216000px;}
.ws49{word-spacing:18.288000px;}
.ws4a{word-spacing:18.360000px;}
.ws86{word-spacing:18.648000px;}
.ws85{word-spacing:18.720000px;}
.wsed{word-spacing:18.991087px;}
.wsf9{word-spacing:19.060386px;}
.wsbc{word-spacing:19.368000px;}
.wsd3{word-spacing:19.800000px;}
.ws53{word-spacing:20.016000px;}
.ws76{word-spacing:20.088000px;}
.ws98{word-spacing:20.160000px;}
.ws52{word-spacing:20.376000px;}
.ws75{word-spacing:20.448000px;}
.ws6b{word-spacing:20.520000px;}
.ws51{word-spacing:20.736000px;}
.wsa1{word-spacing:20.808000px;}
.wsa2{word-spacing:20.880000px;}
.wse1{word-spacing:21.456812px;}
.ws9e{word-spacing:21.528000px;}
.wsc2{word-spacing:21.600000px;}
.ws67{word-spacing:21.816000px;}
.ws96{word-spacing:21.960000px;}
.ws92{word-spacing:22.176000px;}
.ws93{word-spacing:22.320000px;}
.ws9{word-spacing:22.608000px;}
.ws8{word-spacing:22.680000px;}
.ws61{word-spacing:23.400000px;}
.wsbe{word-spacing:23.616000px;}
.wsbb{word-spacing:24.480000px;}
.wscd{word-spacing:24.840000px;}
.ws2b{word-spacing:25.056000px;}
.ws2a{word-spacing:25.128000px;}
.ws77{word-spacing:25.200000px;}
.ws9a{word-spacing:25.344000px;}
.wsce{word-spacing:26.136000px;}
.wse0{word-spacing:26.280000px;}
.wsc7{word-spacing:26.856000px;}
.wsc6{word-spacing:27.000000px;}
.wsc0{word-spacing:27.216000px;}
.wsbf{word-spacing:27.360000px;}
.wsc8{word-spacing:28.296000px;}
.wsbd{word-spacing:28.440000px;}
.wsee{word-spacing:28.770853px;}
.wsfa{word-spacing:28.875838px;}
.wsb1{word-spacing:29.160000px;}
.ws3c{word-spacing:29.520000px;}
.wsdf{word-spacing:29.592000px;}
.wsca{word-spacing:29.736000px;}
.wsd0{word-spacing:30.168000px;}
.wsd1{word-spacing:30.240000px;}
.ws5f{word-spacing:30.456000px;}
.ws5e{word-spacing:30.600000px;}
.ws3e{word-spacing:31.176000px;}
.wse2{word-spacing:32.506343px;}
.ws34{word-spacing:34.200000px;}
.wsd4{word-spacing:36.288000px;}
.wsd5{word-spacing:36.360000px;}
.wse{word-spacing:37.440000px;}
.wsd{word-spacing:37.800000px;}
.wsf0{word-spacing:44.731281px;}
.wsfc{word-spacing:44.894506px;}
.wscb{word-spacing:45.360000px;}
.ws30{word-spacing:46.296000px;}
.ws31{word-spacing:46.728000px;}
.ws32{word-spacing:46.800000px;}
.ws89{word-spacing:47.808000px;}
.wse4{word-spacing:50.539007px;}
.wsef{word-spacing:70.757267px;}
.wsfb{word-spacing:71.015461px;}
.wse3{word-spacing:79.944100px;}
.wse7{word-spacing:127.562823px;}
.wsf2{word-spacing:390.593935px;}
._7d{margin-left:-2830.680000px;}
._65{margin-left:-2823.192000px;}
._96{margin-left:-2822.184000px;}
._79{margin-left:-2815.729200px;}
._5f{margin-left:-2814.408000px;}
._6f{margin-left:-2813.256000px;}
._53{margin-left:-2811.168000px;}
._6c{margin-left:-2809.296000px;}
._46{margin-left:-2808.000000px;}
._4d{margin-left:-2806.466400px;}
._56{margin-left:-2804.976000px;}
._3f{margin-left:-2803.968000px;}
._5c{margin-left:-2802.096000px;}
._4a{margin-left:-2801.088000px;}
._43{margin-left:-2799.936000px;}
._3d{margin-left:-2798.352000px;}
._40{margin-left:-2797.200000px;}
._3e{margin-left:-2795.688000px;}
._41{margin-left:-2794.032000px;}
._3b{margin-left:-2792.357640px;}
._3a{margin-left:-2790.755280px;}
._38{margin-left:-2789.136000px;}
._42{margin-left:-2788.056000px;}
._3c{margin-left:-2786.904000px;}
._39{margin-left:-2785.032000px;}
._21{margin-left:-2783.952000px;}
._37{margin-left:-2774.952000px;}
._32{margin-left:-2771.208000px;}
._34{margin-left:-2770.200000px;}
._4e{margin-left:-2767.824000px;}
._1a{margin-left:-2766.528000px;}
._1d{margin-left:-2765.304000px;}
._17{margin-left:-2763.792000px;}
._2d{margin-left:-2762.064000px;}
._10{margin-left:-2759.904000px;}
._19{margin-left:-2758.320000px;}
._25{margin-left:-2756.520000px;}
._28{margin-left:-2755.080000px;}
._11{margin-left:-2753.856000px;}
._2f{margin-left:-2752.128000px;}
._18{margin-left:-2750.832000px;}
._e{margin-left:-2749.824000px;}
._2b{margin-left:-2748.744000px;}
._7{margin-left:-2736.432000px;}
._70{margin-left:-2729.880000px;}
._9{margin-left:-2722.896000px;}
._c{margin-left:-2717.280000px;}
._47{margin-left:-2703.456000px;}
._76{margin-left:-2689.992000px;}
._8b{margin-left:-2675.520000px;}
._9a{margin-left:-2669.688000px;}
._55{margin-left:-2664.072000px;}
._6a{margin-left:-2662.776000px;}
._6b{margin-left:-2636.856000px;}
._48{margin-left:-2620.080000px;}
._2{margin-left:-2597.112000px;}
._8c{margin-left:-2581.848000px;}
._97{margin-left:-2573.928000px;}
._5e{margin-left:-2567.304000px;}
._36{margin-left:-2543.904000px;}
._9c{margin-left:-2542.320000px;}
._27{margin-left:-2487.312000px;}
._60{margin-left:-2459.880000px;}
._86{margin-left:-2360.016000px;}
._78{margin-left:-2337.768000px;}
._83{margin-left:-2311.776000px;}
._50{margin-left:-2281.968000px;}
._9b{margin-left:-2244.168000px;}
._7b{margin-left:-2234.016000px;}
._93{margin-left:-2225.808000px;}
._5{margin-left:-2222.712000px;}
._8d{margin-left:-2181.456000px;}
._7f{margin-left:-2105.640000px;}
._73{margin-left:-2069.784000px;}
._7e{margin-left:-2021.904000px;}
._94{margin-left:-1974.168000px;}
._89{margin-left:-1934.784000px;}
._82{margin-left:-1923.912000px;}
._9f{margin-left:-1897.992000px;}
._8a{margin-left:-1883.736000px;}
._44{margin-left:-1873.944000px;}
._88{margin-left:-1823.976000px;}
._6d{margin-left:-1777.824000px;}
._81{margin-left:-1775.808000px;}
._75{margin-left:-1758.312000px;}
._a2{margin-left:-1742.040000px;}
._a5{margin-left:-1731.960000px;}
._80{margin-left:-1711.944000px;}
._5d{margin-left:-1688.040000px;}
._59{margin-left:-1682.568000px;}
._15{margin-left:-1612.296000px;}
._8e{margin-left:-1602.000000px;}
._66{margin-left:-1573.704000px;}
._90{margin-left:-1542.024000px;}
._8f{margin-left:-1489.752000px;}
._0{margin-left:-1437.480000px;}
._4b{margin-left:-1393.632000px;}
._68{margin-left:-1349.856000px;}
._77{margin-left:-1346.040000px;}
._1f{margin-left:-1317.168000px;}
._95{margin-left:-1292.472000px;}
._63{margin-left:-1278.072000px;}
._74{margin-left:-1275.984000px;}
._a{margin-left:-1196.856000px;}
._7a{margin-left:-1167.984000px;}
._22{margin-left:-1161.720000px;}
._72{margin-left:-1145.736000px;}
._2e{margin-left:-1132.200000px;}
._85{margin-left:-1102.032000px;}
._54{margin-left:-1052.064000px;}
._84{margin-left:-942.048000px;}
._31{margin-left:-906.696000px;}
._92{margin-left:-889.992000px;}
._6e{margin-left:-831.024000px;}
._12{margin-left:-796.824000px;}
._87{margin-left:-764.208000px;}
._58{margin-left:-721.800000px;}
._71{margin-left:-720.576000px;}
._99{margin-left:-715.248000px;}
._f{margin-left:-696.456000px;}
._30{margin-left:-676.080000px;}
._9d{margin-left:-611.064000px;}
._23{margin-left:-590.400000px;}
._5a{margin-left:-558.792000px;}
._98{margin-left:-546.696000px;}
._5b{margin-left:-510.480000px;}
._4f{margin-left:-500.616000px;}
._57{margin-left:-484.272000px;}
._16{margin-left:-466.488000px;}
._52{margin-left:-458.496000px;}
._a3{margin-left:-402.048000px;}
._a0{margin-left:-235.152000px;}
._51{margin-left:-234.000000px;}
._13{margin-left:-198.000000px;}
._3{margin-left:-162.000000px;}
._49{margin-left:-16.416000px;}
._91{margin-left:-13.464000px;}
._7c{margin-left:-2.016000px;}
._4{margin-left:-1.008000px;}
._1{width:1.224000px;}
._67{width:2.232000px;}
._33{width:3.240000px;}
._b{width:4.392000px;}
._29{width:5.457600px;}
._24{width:6.912000px;}
._2c{width:8.640000px;}
._8{width:10.728000px;}
._1b{width:12.600000px;}
._35{width:14.328000px;}
._1c{width:15.552000px;}
._45{width:16.920000px;}
._2a{width:19.944000px;}
._4c{width:21.016800px;}
._6{width:22.248000px;}
._69{width:24.552000px;}
._62{width:28.512000px;}
._61{width:29.664000px;}
._26{width:30.744000px;}
._20{width:34.344000px;}
._d{width:37.584000px;}
._64{width:38.592000px;}
._a1{width:41.549873px;}
._a4{width:42.706299px;}
._1e{width:46.368000px;}
._9e{width:47.411432px;}
._14{width:194.400000px;}
.fc4{color:rgb(255,102,0);}
.fc2{color:transparent;}
.fc3{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.398600px;}
.fs7{font-size:31.405800px;}
.fsb{font-size:31.520400px;}
.fsd{font-size:31.522800px;}
.fsc{font-size:33.227633px;}
.fs4{font-size:35.483400px;}
.fs5{font-size:35.605800px;}
.fsa{font-size:37.732200px;}
.fs3{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs9{font-size:56.485200px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:63.819600px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.870000px;}
.y105{bottom:5.896050px;}
.yd5{bottom:8.021100px;}
.y106{bottom:21.997050px;}
.yd6{bottom:22.933200px;}
.ya4{bottom:24.570000px;}
.y10a{bottom:33.280050px;}
.yd8{bottom:34.173750px;}
.y2{bottom:53.100000px;}
.yb3{bottom:54.821100px;}
.y1{bottom:57.060000px;}
.y10b{bottom:62.018775px;}
.y9f{bottom:65.970000px;}
.yfe{bottom:68.631396px;}
.yb4{bottom:72.945900px;}
.yd9{bottom:75.071953px;}
.yfd{bottom:75.689850px;}
.yfc{bottom:80.999400px;}
.y119{bottom:81.086842px;}
.y11f{bottom:83.419351px;}
.yb6{bottom:85.645950px;}
.y107{bottom:86.625300px;}
.y11d{bottom:90.503561px;}
.y10c{bottom:90.702339px;}
.y45{bottom:112.320000px;}
.yd7{bottom:112.349100px;}
.yce{bottom:113.929372px;}
.y118{bottom:114.135981px;}
.yda{bottom:115.907344px;}
.y103{bottom:117.540000px;}
.y109{bottom:118.202400px;}
.y10d{bottom:119.385903px;}
.y108{bottom:119.903100px;}
.y11b{bottom:120.038176px;}
.yb7{bottom:126.806694px;}
.y80{bottom:127.620000px;}
.y34{bottom:130.320000px;}
.y5e{bottom:133.020000px;}
.y2b{bottom:135.720000px;}
.yfb{bottom:138.048391px;}
.y93{bottom:138.420000px;}
.y9c{bottom:141.120000px;}
.y117{bottom:141.290806px;}
.ycf{bottom:143.859620px;}
.y10e{bottom:148.069467px;}
.y4a{bottom:148.320000px;}
.y11a{bottom:148.382896px;}
.y44{bottom:153.720000px;}
.y115{bottom:156.081753px;}
.ydb{bottom:156.742736px;}
.y11c{bottom:159.612038px;}
.yb8{bottom:167.905342px;}
.y7f{bottom:169.020000px;}
.y33{bottom:171.720000px;}
.y116{bottom:172.582683px;}
.y5d{bottom:174.420000px;}
.y10f{bottom:176.753031px;}
.y102{bottom:176.940000px;}
.y6b{bottom:177.120000px;}
.ycd{bottom:179.085765px;}
.y92{bottom:181.260000px;}
.y9b{bottom:182.520000px;}
.y114{bottom:182.614050px;}
.yf9{bottom:186.287700px;}
.yb5{bottom:187.182600px;}
.y49{bottom:189.720000px;}
.ycc{bottom:195.044424px;}
.y2a{bottom:195.120000px;}
.ydc{bottom:197.578127px;}
.yfa{bottom:204.534470px;}
.y110{bottom:205.436595px;}
.y8a{bottom:205.920000px;}
.y113{bottom:206.310450px;}
.yb9{bottom:209.003990px;}
.y7e{bottom:210.420000px;}
.y32{bottom:213.120000px;}
.y112{bottom:216.344250px;}
.y6a{bottom:218.520000px;}
.yed{bottom:219.331264px;}
.y91{bottom:223.920000px;}
.y11e{bottom:227.530620px;}
.y48{bottom:231.120000px;}
.y5c{bottom:233.820000px;}
.y111{bottom:234.120159px;}
.ye6{bottom:234.187500px;}
.y101{bottom:236.340000px;}
.y43{bottom:236.520000px;}
.y9a{bottom:241.920000px;}
.y89{bottom:247.320000px;}
.y55{bottom:249.120000px;}
.yba{bottom:250.102638px;}
.y120{bottom:250.887236px;}
.y7d{bottom:251.820000px;}
.y29{bottom:254.520000px;}
.yf1{bottom:255.082813px;}
.y14{bottom:258.120000px;}
.y69{bottom:259.920000px;}
.y90{bottom:265.320000px;}
.ye7{bottom:267.854518px;}
.y47{bottom:272.520000px;}
.y5b{bottom:275.220000px;}
.y42{bottom:277.920000px;}
.y99{bottom:283.320000px;}
.y88{bottom:288.720000px;}
.y54{bottom:290.520000px;}
.ybb{bottom:291.201286px;}
.y7c{bottom:293.220000px;}
.yc4{bottom:295.738720px;}
.y100{bottom:295.740000px;}
.y28{bottom:295.920000px;}
.ycb{bottom:297.405162px;}
.y68{bottom:301.320000px;}
.ye8{bottom:301.466575px;}
.y9d{bottom:306.720000px;}
.ye5{bottom:308.409000px;}
.ybd{bottom:311.630400px;}
.y46{bottom:313.920000px;}
.y13{bottom:317.520000px;}
.y5a{bottom:318.060000px;}
.y41{bottom:319.320000px;}
.yca{bottom:320.637918px;}
.y8f{bottom:324.720000px;}
.y87{bottom:330.120000px;}
.y53{bottom:331.920000px;}
.y83{bottom:333.360000px;}
.y7b{bottom:334.620000px;}
.ye9{bottom:335.133593px;}
.y31{bottom:337.320000px;}
.yc9{bottom:337.936076px;}
.yf0{bottom:338.056936px;}
.y97{bottom:348.120000px;}
.yc8{bottom:350.568166px;}
.yd4{bottom:351.210000px;}
.yff{bottom:351.270000px;}
.yd1{bottom:355.050000px;}
.y27{bottom:355.320000px;}
.ybe{bottom:356.880606px;}
.y40{bottom:360.720000px;}
.y8e{bottom:366.120000px;}
.yea{bottom:368.745650px;}
.y52{bottom:373.320000px;}
.y7a{bottom:376.020000px;}
.y12{bottom:376.920000px;}
.y30{bottom:378.720000px;}
.yb0{bottom:381.870000px;}
.y86{bottom:389.520000px;}
.yee{bottom:393.362550px;}
.y26{bottom:396.720000px;}
.y3f{bottom:402.120000px;}
.ybf{bottom:402.130812px;}
.yeb{bottom:402.412668px;}
.y8d{bottom:407.520000px;}
.ybc{bottom:409.912500px;}
.yd0{bottom:413.820000px;}
.y51{bottom:414.720000px;}
.y79{bottom:417.420000px;}
.yf8{bottom:419.345400px;}
.y2f{bottom:420.120000px;}
.y98{bottom:425.520000px;}
.yef{bottom:426.911796px;}
.yde{bottom:434.257950px;}
.y82{bottom:435.420000px;}
.y11{bottom:436.320000px;}
.y25{bottom:438.120000px;}
.yaf{bottom:441.270000px;}
.y59{bottom:443.520000px;}
.yc0{bottom:447.318922px;}
.yc7{bottom:448.271708px;}
.y85{bottom:448.920000px;}
.y50{bottom:456.120000px;}
.y78{bottom:458.820000px;}
.y2e{bottom:461.520000px;}
.yf5{bottom:462.832180px;}
.y8c{bottom:466.920000px;}
.ydf{bottom:467.642315px;}
.yf6{bottom:472.206811px;}
.yb2{bottom:473.010000px;}
.yb1{bottom:473.040000px;}
.y10{bottom:477.720000px;}
.y81{bottom:478.260000px;}
.y24{bottom:479.520000px;}
.y58{bottom:484.920000px;}
.yae{bottom:489.420000px;}
.y96{bottom:490.320000px;}
.yc1{bottom:492.569127px;}
.y4f{bottom:497.520000px;}
.y77{bottom:500.220000px;}
.ye0{bottom:500.971721px;}
.y2d{bottom:502.920000px;}
.yc6{bottom:507.431407px;}
.y84{bottom:508.320000px;}
.yf4{bottom:509.885919px;}
.ydd{bottom:516.613500px;}
.yf3{bottom:517.509677px;}
.yc3{bottom:519.043500px;}
.yf{bottom:519.120000px;}
.yc5{bottom:519.362700px;}
.y23{bottom:520.920000px;}
.y67{bottom:526.320000px;}
.ye1{bottom:534.356086px;}
.yc2{bottom:537.757237px;}
.y4e{bottom:538.920000px;}
.y76{bottom:541.620000px;}
.yad{bottom:542.070000px;}
.y2c{bottom:544.320000px;}
.y8b{bottom:549.720000px;}
.y22{bottom:562.320000px;}
.ye2{bottom:567.685491px;}
.y66{bottom:567.720000px;}
.yf2{bottom:569.870997px;}
.ye{bottom:578.520000px;}
.y4d{bottom:580.320000px;}
.yac{bottom:583.470000px;}
.y57{bottom:585.720000px;}
.y95{bottom:591.120000px;}
.y75{bottom:601.020000px;}
.ye3{bottom:601.069857px;}
.y21{bottom:603.720000px;}
.y65{bottom:609.120000px;}
.yf7{bottom:612.857686px;}
.yec{bottom:619.359450px;}
.yd{bottom:619.920000px;}
.y4c{bottom:621.720000px;}
.y56{bottom:627.120000px;}
.yab{bottom:631.620000px;}
.y94{bottom:632.520000px;}
.ye4{bottom:634.399262px;}
.y74{bottom:643.860000px;}
.y20{bottom:645.120000px;}
.y64{bottom:650.520000px;}
.yaa{bottom:660.420000px;}
.yc{bottom:661.320000px;}
.y4b{bottom:663.120000px;}
.y73{bottom:668.520000px;}
.y1f{bottom:686.520000px;}
.y63{bottom:691.920000px;}
.ya9{bottom:701.820000px;}
.y3e{bottom:704.520000px;}
.y72{bottom:709.920000px;}
.yb{bottom:720.720000px;}
.y1e{bottom:727.920000px;}
.y62{bottom:733.320000px;}
.ya8{bottom:743.220000px;}
.y3d{bottom:745.920000px;}
.y71{bottom:751.320000px;}
.ya{bottom:762.120000px;}
.y1d{bottom:769.320000px;}
.y61{bottom:774.720000px;}
.ya7{bottom:784.620000px;}
.y3c{bottom:787.320000px;}
.y70{bottom:792.720000px;}
.y9{bottom:803.520000px;}
.y1c{bottom:810.720000px;}
.y122{bottom:812.250000px;}
.y60{bottom:816.120000px;}
.ya6{bottom:826.020000px;}
.y3b{bottom:828.720000px;}
.y6f{bottom:834.120000px;}
.y1b{bottom:852.120000px;}
.y8{bottom:862.920000px;}
.ya5{bottom:867.420000px;}
.y104{bottom:867.660000px;}
.y121{bottom:867.690000px;}
.y3a{bottom:870.120000px;}
.y5f{bottom:875.520000px;}
.y1a{bottom:893.520000px;}
.ya3{bottom:908.820000px;}
.y39{bottom:911.520000px;}
.y6e{bottom:916.920000px;}
.y7{bottom:922.320000px;}
.y19{bottom:934.920000px;}
.y9e{bottom:950.940000px;}
.y38{bottom:952.920000px;}
.y6d{bottom:958.320000px;}
.ya2{bottom:974.880000px;}
.ya0{bottom:975.510000px;}
.y18{bottom:976.320000px;}
.y6{bottom:981.720000px;}
.y37{bottom:994.320000px;}
.y6c{bottom:999.720000px;}
.ya1{bottom:1013.490000px;}
.y17{bottom:1017.720000px;}
.y36{bottom:1035.720000px;}
.y5{bottom:1041.120000px;}
.y16{bottom:1059.120000px;}
.yd3{bottom:1059.930000px;}
.y35{bottom:1077.120000px;}
.y4{bottom:1100.430000px;}
.y15{bottom:1118.430000px;}
.yd2{bottom:1118.610000px;}
.h3{height:20.701500px;}
.h12{height:23.548950px;}
.h11{height:23.554350px;}
.h17{height:23.640300px;}
.h19{height:23.642100px;}
.h18{height:24.920724px;}
.hd{height:26.612550px;}
.he{height:26.704350px;}
.h15{height:39.353505px;}
.ha{height:41.398500px;}
.h9{height:41.400000px;}
.h13{height:42.363900px;}
.hb{height:46.991602px;}
.h14{height:47.045888px;}
.hf{height:47.864700px;}
.h8{height:59.038594px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h5{height:73.991602px;}
.h6{height:75.093750px;}
.h7{height:82.800000px;}
.h16{height:267.525000px;}
.hc{height:602.775000px;}
.h10{height:666.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.998500px;}
.w3{width:18.000000px;}
.w5{width:183.600000px;}
.w4{width:216.000000px;}
.w6{width:248.760000px;}
.w9{width:374.475000px;}
.w8{width:376.950000px;}
.w7{width:378.150000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x16{left:15.753600px;}
.x17{left:25.551600px;}
.x3f{left:28.284713px;}
.x31{left:34.811550px;}
.x33{left:43.487277px;}
.x32{left:47.908350px;}
.x23{left:57.375300px;}
.x24{left:59.634300px;}
.x15{left:66.856650px;}
.x25{left:68.275696px;}
.xa{left:73.620000px;}
.xe{left:75.510000px;}
.x30{left:77.786550px;}
.x7{left:82.620000px;}
.x35{left:85.955675px;}
.x34{left:93.663000px;}
.x22{left:102.439950px;}
.x36{left:112.939192px;}
.x29{left:115.209665px;}
.xb{left:119.520000px;}
.x1a{left:121.287605px;}
.x37{left:125.863540px;}
.x5{left:127.620000px;}
.x2e{left:146.996250px;}
.x2b{left:150.211254px;}
.x1{left:154.620000px;}
.x4{left:156.510000px;}
.x14{left:160.993800px;}
.x13{left:165.195000px;}
.x9{left:181.620000px;}
.x2d{left:184.663050px;}
.x21{left:190.140750px;}
.x1b{left:200.047634px;}
.x38{left:201.100583px;}
.x28{left:219.680657px;}
.x39{left:225.877504px;}
.x3a{left:233.017418px;}
.x1d{left:239.053788px;}
.x6{left:250.380000px;}
.x27{left:254.069974px;}
.x3b{left:257.226929px;}
.x3c{left:270.773852px;}
.x1f{left:275.478522px;}
.x1c{left:278.754255px;}
.x26{left:289.362000px;}
.x3d{left:294.983362px;}
.x3e{left:305.582904px;}
.x1e{left:314.805128px;}
.x2a{left:323.468729px;}
.xd{left:335.520000px;}
.x18{left:339.470400px;}
.x19{left:342.480242px;}
.x2c{left:343.518450px;}
.xf{left:427.230000px;}
.x3{left:446.490000px;}
.x40{left:502.110000px;}
.x2f{left:504.630000px;}
.x12{left:519.120000px;}
.x11{left:529.200000px;}
.x20{left:543.330000px;}
.x10{left:573.390000px;}
.x8{left:747.360000px;}
.x2{left:756.360000px;}
@media print{
.v9{vertical-align:-25.096724pt;}
.v3{vertical-align:-24.000000pt;}
.v7{vertical-align:-18.829858pt;}
.v6{vertical-align:-7.033598pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.430713pt;}
.v5{vertical-align:18.560000pt;}
.v4{vertical-align:21.440000pt;}
.v1{vertical-align:24.000000pt;}
.ls3d{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls49{letter-spacing:-0.160320pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.085120pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.055833pt;}
.ls61{letter-spacing:0.056036pt;}
.ls50{letter-spacing:0.063082pt;}
.ls1{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.106880pt;}
.ls2{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.134400pt;}
.ls55{letter-spacing:0.139549pt;}
.ls53{letter-spacing:0.139581pt;}
.ls5c{letter-spacing:0.140091pt;}
.ls5f{letter-spacing:0.140101pt;}
.ls39{letter-spacing:0.140800pt;}
.ls5e{letter-spacing:0.147678pt;}
.ls4c{letter-spacing:0.157704pt;}
.ls4e{letter-spacing:0.158248pt;}
.ls23{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.160320pt;}
.ls5a{letter-spacing:0.167498pt;}
.ls62{letter-spacing:0.168109pt;}
.ls2e{letter-spacing:0.170240pt;}
.ls51{letter-spacing:0.189245pt;}
.ls54{letter-spacing:0.251246pt;}
.ls5d{letter-spacing:0.252163pt;}
.ls4d{letter-spacing:0.283867pt;}
.ls5b{letter-spacing:0.307079pt;}
.ls63{letter-spacing:0.308199pt;}
.ls20{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.346949pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.468160pt;}
.lse{letter-spacing:0.640000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.200000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls27{letter-spacing:2.160000pt;}
.ls43{letter-spacing:2.240000pt;}
.ls3f{letter-spacing:2.880000pt;}
.ls2d{letter-spacing:2.886400pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.840000pt;}
.ls41{letter-spacing:3.852800pt;}
.ls38{letter-spacing:4.160000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls15{letter-spacing:4.505600pt;}
.ls17{letter-spacing:4.800000pt;}
.ls16{letter-spacing:4.812800pt;}
.ls40{letter-spacing:5.113600pt;}
.ls30{letter-spacing:5.120000pt;}
.ls26{letter-spacing:5.360000pt;}
.ls34{letter-spacing:5.440000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls4b{letter-spacing:6.400000pt;}
.ls35{letter-spacing:6.720000pt;}
.ls7{letter-spacing:7.040000pt;}
.ls31{letter-spacing:7.360000pt;}
.lsa{letter-spacing:7.680000pt;}
.lsc{letter-spacing:7.699200pt;}
.ls22{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:8.640000pt;}
.ls10{letter-spacing:9.280000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls46{letter-spacing:10.240000pt;}
.ls8{letter-spacing:10.880000pt;}
.ls9{letter-spacing:11.200000pt;}
.ls3a{letter-spacing:11.520000pt;}
.ls45{letter-spacing:11.840000pt;}
.ls24{letter-spacing:12.160000pt;}
.ls47{letter-spacing:12.480000pt;}
.ls36{letter-spacing:12.800000pt;}
.ls3b{letter-spacing:13.120000pt;}
.ls33{letter-spacing:13.145600pt;}
.ls3e{letter-spacing:13.440000pt;}
.ls1d{letter-spacing:13.446400pt;}
.ls21{letter-spacing:14.080000pt;}
.lsd{letter-spacing:14.400000pt;}
.ls1c{letter-spacing:14.720000pt;}
.ls60{letter-spacing:15.073756pt;}
.ls1b{letter-spacing:15.680000pt;}
.ls2c{letter-spacing:16.640000pt;}
.ls18{letter-spacing:18.240000pt;}
.ls37{letter-spacing:18.560000pt;}
.ls3c{letter-spacing:19.840000pt;}
.ls42{letter-spacing:21.760000pt;}
.lsb{letter-spacing:22.400000pt;}
.ls11{letter-spacing:26.240000pt;}
.ls44{letter-spacing:30.208000pt;}
.ls57{letter-spacing:107.980119pt;}
.ls56{letter-spacing:109.543430pt;}
.ls0{letter-spacing:172.800000pt;}
.ls58{letter-spacing:356.825721pt;}
.ls4f{letter-spacing:402.429067pt;}
.wsc5{word-spacing:-42.560000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws35{word-spacing:-15.936000pt;}
.ws55{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws36{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.680000pt;}
.wsa6{word-spacing:-15.552000pt;}
.wsd6{word-spacing:-13.360000pt;}
.wsd8{word-spacing:-13.199680pt;}
.wsc4{word-spacing:-10.810240pt;}
.ws6d{word-spacing:-10.640000pt;}
.wsd7{word-spacing:-8.640000pt;}
.wse5{word-spacing:-8.577042pt;}
.wse6{word-spacing:-8.547557pt;}
.wsfd{word-spacing:-8.004167pt;}
.wsfe{word-spacing:-7.592914pt;}
.wsf1{word-spacing:-7.565308pt;}
.ws70{word-spacing:-0.468160pt;}
.ws44{word-spacing:-0.448000pt;}
.wsc1{word-spacing:-0.384000pt;}
.wsda{word-spacing:-0.374080pt;}
.wsec{word-spacing:-0.346949pt;}
.wsac{word-spacing:-0.320000pt;}
.ws104{word-spacing:-0.308199pt;}
.wsf8{word-spacing:-0.307079pt;}
.ws81{word-spacing:-0.170240pt;}
.wseb{word-spacing:-0.157704pt;}
.ws103{word-spacing:-0.140091pt;}
.wsf7{word-spacing:-0.139581pt;}
.ws7{word-spacing:-0.128000pt;}
.ws6{word-spacing:-0.064000pt;}
.wsea{word-spacing:-0.031541pt;}
.ws101{word-spacing:-0.028018pt;}
.wsf5{word-spacing:-0.027916pt;}
.ws4{word-spacing:0.000000pt;}
.wsf4{word-spacing:0.055833pt;}
.ws100{word-spacing:0.056036pt;}
.wse9{word-spacing:0.063082pt;}
.ws8e{word-spacing:0.064000pt;}
.wsf6{word-spacing:0.083730pt;}
.wsf3{word-spacing:0.083749pt;}
.wsff{word-spacing:0.084054pt;}
.ws102{word-spacing:0.084061pt;}
.ws82{word-spacing:0.085120pt;}
.wse8{word-spacing:0.094622pt;}
.ws5{word-spacing:0.128000pt;}
.wsd9{word-spacing:0.160320pt;}
.wsf{word-spacing:0.192000pt;}
.ws87{word-spacing:0.256000pt;}
.ws27{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.512000pt;}
.ws33{word-spacing:0.576000pt;}
.ws16{word-spacing:0.640000pt;}
.ws40{word-spacing:0.832000pt;}
.ws19{word-spacing:0.960000pt;}
.ws54{word-spacing:1.152000pt;}
.ws7e{word-spacing:1.216000pt;}
.ws3f{word-spacing:1.280000pt;}
.ws80{word-spacing:1.600000pt;}
.ws66{word-spacing:1.792000pt;}
.ws65{word-spacing:1.920000pt;}
.ws7d{word-spacing:2.112000pt;}
.ws64{word-spacing:2.176000pt;}
.wsb5{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.432000pt;}
.wsb2{word-spacing:2.496000pt;}
.ws8a{word-spacing:2.560000pt;}
.ws90{word-spacing:2.752000pt;}
.ws8f{word-spacing:2.816000pt;}
.ws6a{word-spacing:2.880000pt;}
.ws28{word-spacing:3.072000pt;}
.ws26{word-spacing:3.136000pt;}
.ws29{word-spacing:3.200000pt;}
.ws7a{word-spacing:3.392000pt;}
.ws79{word-spacing:3.456000pt;}
.ws13{word-spacing:3.520000pt;}
.ws12{word-spacing:3.712000pt;}
.ws84{word-spacing:3.776000pt;}
.wsc{word-spacing:3.840000pt;}
.ws17{word-spacing:4.032000pt;}
.ws18{word-spacing:4.096000pt;}
.ws6c{word-spacing:4.160000pt;}
.wsb9{word-spacing:4.288000pt;}
.ws4f{word-spacing:4.352000pt;}
.ws4d{word-spacing:4.416000pt;}
.ws7b{word-spacing:4.480000pt;}
.wsb6{word-spacing:4.672000pt;}
.ws50{word-spacing:4.736000pt;}
.ws4e{word-spacing:4.800000pt;}
.wsab{word-spacing:4.992000pt;}
.ws47{word-spacing:5.056000pt;}
.ws4c{word-spacing:5.120000pt;}
.ws7c{word-spacing:5.312000pt;}
.ws48{word-spacing:5.376000pt;}
.ws78{word-spacing:5.440000pt;}
.wsba{word-spacing:5.632000pt;}
.ws43{word-spacing:5.696000pt;}
.ws42{word-spacing:5.760000pt;}
.ws60{word-spacing:5.952000pt;}
.wsb0{word-spacing:6.016000pt;}
.wsdc{word-spacing:6.080000pt;}
.ws39{word-spacing:6.272000pt;}
.wsc9{word-spacing:6.336000pt;}
.ws38{word-spacing:6.400000pt;}
.wsdb{word-spacing:6.464000pt;}
.ws46{word-spacing:6.592000pt;}
.ws59{word-spacing:6.656000pt;}
.ws5b{word-spacing:6.720000pt;}
.ws9f{word-spacing:6.784000pt;}
.ws45{word-spacing:6.912000pt;}
.ws62{word-spacing:6.976000pt;}
.ws5a{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.232000pt;}
.ws1a{word-spacing:7.296000pt;}
.ws1c{word-spacing:7.360000pt;}
.ws2c{word-spacing:7.552000pt;}
.ws25{word-spacing:7.616000pt;}
.ws24{word-spacing:7.680000pt;}
.ws99{word-spacing:7.808000pt;}
.wsaa{word-spacing:7.872000pt;}
.wsd2{word-spacing:7.936000pt;}
.ws91{word-spacing:8.000000pt;}
.ws72{word-spacing:8.192000pt;}
.ws69{word-spacing:8.256000pt;}
.ws71{word-spacing:8.320000pt;}
.ws68{word-spacing:8.512000pt;}
.wsaf{word-spacing:8.640000pt;}
.wsde{word-spacing:8.704000pt;}
.ws2e{word-spacing:8.832000pt;}
.ws2f{word-spacing:8.896000pt;}
.wsb{word-spacing:8.960000pt;}
.wsa{word-spacing:9.152000pt;}
.ws3d{word-spacing:9.216000pt;}
.ws3a{word-spacing:9.280000pt;}
.ws10{word-spacing:9.472000pt;}
.ws11{word-spacing:9.536000pt;}
.ws41{word-spacing:9.600000pt;}
.ws9b{word-spacing:9.920000pt;}
.wsa9{word-spacing:10.112000pt;}
.ws94{word-spacing:10.176000pt;}
.ws88{word-spacing:10.240000pt;}
.ws63{word-spacing:10.432000pt;}
.ws83{word-spacing:10.496000pt;}
.wsa4{word-spacing:10.560000pt;}
.wsb3{word-spacing:10.752000pt;}
.ws7f{word-spacing:10.816000pt;}
.wsb4{word-spacing:10.880000pt;}
.wscf{word-spacing:11.072000pt;}
.ws21{word-spacing:11.136000pt;}
.ws22{word-spacing:11.200000pt;}
.wsa3{word-spacing:11.392000pt;}
.ws23{word-spacing:11.456000pt;}
.ws1f{word-spacing:11.520000pt;}
.ws1e{word-spacing:11.712000pt;}
.ws20{word-spacing:11.776000pt;}
.ws37{word-spacing:11.840000pt;}
.ws74{word-spacing:12.032000pt;}
.ws73{word-spacing:12.160000pt;}
.ws8b{word-spacing:12.416000pt;}
.wsc3{word-spacing:12.480000pt;}
.ws15{word-spacing:12.672000pt;}
.wsa0{word-spacing:12.800000pt;}
.ws9d{word-spacing:12.992000pt;}
.ws9c{word-spacing:13.056000pt;}
.wsdd{word-spacing:13.120000pt;}
.ws5c{word-spacing:13.312000pt;}
.ws5d{word-spacing:13.440000pt;}
.ws8c{word-spacing:13.632000pt;}
.ws95{word-spacing:13.696000pt;}
.ws8d{word-spacing:13.760000pt;}
.wsae{word-spacing:13.952000pt;}
.ws6f{word-spacing:14.016000pt;}
.ws6e{word-spacing:14.080000pt;}
.ws58{word-spacing:14.272000pt;}
.ws2d{word-spacing:14.336000pt;}
.wscc{word-spacing:14.400000pt;}
.ws57{word-spacing:14.592000pt;}
.ws1d{word-spacing:14.720000pt;}
.ws97{word-spacing:15.040000pt;}
.wsad{word-spacing:15.296000pt;}
.ws3b{word-spacing:15.552000pt;}
.ws56{word-spacing:15.680000pt;}
.wsb8{word-spacing:15.936000pt;}
.wsb7{word-spacing:16.000000pt;}
.ws4b{word-spacing:16.192000pt;}
.ws49{word-spacing:16.256000pt;}
.ws4a{word-spacing:16.320000pt;}
.ws86{word-spacing:16.576000pt;}
.ws85{word-spacing:16.640000pt;}
.wsed{word-spacing:16.880966pt;}
.wsf9{word-spacing:16.942565pt;}
.wsbc{word-spacing:17.216000pt;}
.wsd3{word-spacing:17.600000pt;}
.ws53{word-spacing:17.792000pt;}
.ws76{word-spacing:17.856000pt;}
.ws98{word-spacing:17.920000pt;}
.ws52{word-spacing:18.112000pt;}
.ws75{word-spacing:18.176000pt;}
.ws6b{word-spacing:18.240000pt;}
.ws51{word-spacing:18.432000pt;}
.wsa1{word-spacing:18.496000pt;}
.wsa2{word-spacing:18.560000pt;}
.wse1{word-spacing:19.072722pt;}
.ws9e{word-spacing:19.136000pt;}
.wsc2{word-spacing:19.200000pt;}
.ws67{word-spacing:19.392000pt;}
.ws96{word-spacing:19.520000pt;}
.ws92{word-spacing:19.712000pt;}
.ws93{word-spacing:19.840000pt;}
.ws9{word-spacing:20.096000pt;}
.ws8{word-spacing:20.160000pt;}
.ws61{word-spacing:20.800000pt;}
.wsbe{word-spacing:20.992000pt;}
.wsbb{word-spacing:21.760000pt;}
.wscd{word-spacing:22.080000pt;}
.ws2b{word-spacing:22.272000pt;}
.ws2a{word-spacing:22.336000pt;}
.ws77{word-spacing:22.400000pt;}
.ws9a{word-spacing:22.528000pt;}
.wsce{word-spacing:23.232000pt;}
.wse0{word-spacing:23.360000pt;}
.wsc7{word-spacing:23.872000pt;}
.wsc6{word-spacing:24.000000pt;}
.wsc0{word-spacing:24.192000pt;}
.wsbf{word-spacing:24.320000pt;}
.wsc8{word-spacing:25.152000pt;}
.wsbd{word-spacing:25.280000pt;}
.wsee{word-spacing:25.574092pt;}
.wsfa{word-spacing:25.667412pt;}
.wsb1{word-spacing:25.920000pt;}
.ws3c{word-spacing:26.240000pt;}
.wsdf{word-spacing:26.304000pt;}
.wsca{word-spacing:26.432000pt;}
.wsd0{word-spacing:26.816000pt;}
.wsd1{word-spacing:26.880000pt;}
.ws5f{word-spacing:27.072000pt;}
.ws5e{word-spacing:27.200000pt;}
.ws3e{word-spacing:27.712000pt;}
.wse2{word-spacing:28.894527pt;}
.ws34{word-spacing:30.400000pt;}
.wsd4{word-spacing:32.256000pt;}
.wsd5{word-spacing:32.320000pt;}
.wse{word-spacing:33.280000pt;}
.wsd{word-spacing:33.600000pt;}
.wsf0{word-spacing:39.761139pt;}
.wsfc{word-spacing:39.906227pt;}
.wscb{word-spacing:40.320000pt;}
.ws30{word-spacing:41.152000pt;}
.ws31{word-spacing:41.536000pt;}
.ws32{word-spacing:41.600000pt;}
.ws89{word-spacing:42.496000pt;}
.wse4{word-spacing:44.923561pt;}
.wsef{word-spacing:62.895349pt;}
.wsfb{word-spacing:63.124854pt;}
.wse3{word-spacing:71.061422pt;}
.wse7{word-spacing:113.389176pt;}
.wsf2{word-spacing:347.194609pt;}
._7d{margin-left:-2516.160000pt;}
._65{margin-left:-2509.504000pt;}
._96{margin-left:-2508.608000pt;}
._79{margin-left:-2502.870400pt;}
._5f{margin-left:-2501.696000pt;}
._6f{margin-left:-2500.672000pt;}
._53{margin-left:-2498.816000pt;}
._6c{margin-left:-2497.152000pt;}
._46{margin-left:-2496.000000pt;}
._4d{margin-left:-2494.636800pt;}
._56{margin-left:-2493.312000pt;}
._3f{margin-left:-2492.416000pt;}
._5c{margin-left:-2490.752000pt;}
._4a{margin-left:-2489.856000pt;}
._43{margin-left:-2488.832000pt;}
._3d{margin-left:-2487.424000pt;}
._40{margin-left:-2486.400000pt;}
._3e{margin-left:-2485.056000pt;}
._41{margin-left:-2483.584000pt;}
._3b{margin-left:-2482.095680pt;}
._3a{margin-left:-2480.671360pt;}
._38{margin-left:-2479.232000pt;}
._42{margin-left:-2478.272000pt;}
._3c{margin-left:-2477.248000pt;}
._39{margin-left:-2475.584000pt;}
._21{margin-left:-2474.624000pt;}
._37{margin-left:-2466.624000pt;}
._32{margin-left:-2463.296000pt;}
._34{margin-left:-2462.400000pt;}
._4e{margin-left:-2460.288000pt;}
._1a{margin-left:-2459.136000pt;}
._1d{margin-left:-2458.048000pt;}
._17{margin-left:-2456.704000pt;}
._2d{margin-left:-2455.168000pt;}
._10{margin-left:-2453.248000pt;}
._19{margin-left:-2451.840000pt;}
._25{margin-left:-2450.240000pt;}
._28{margin-left:-2448.960000pt;}
._11{margin-left:-2447.872000pt;}
._2f{margin-left:-2446.336000pt;}
._18{margin-left:-2445.184000pt;}
._e{margin-left:-2444.288000pt;}
._2b{margin-left:-2443.328000pt;}
._7{margin-left:-2432.384000pt;}
._70{margin-left:-2426.560000pt;}
._9{margin-left:-2420.352000pt;}
._c{margin-left:-2415.360000pt;}
._47{margin-left:-2403.072000pt;}
._76{margin-left:-2391.104000pt;}
._8b{margin-left:-2378.240000pt;}
._9a{margin-left:-2373.056000pt;}
._55{margin-left:-2368.064000pt;}
._6a{margin-left:-2366.912000pt;}
._6b{margin-left:-2343.872000pt;}
._48{margin-left:-2328.960000pt;}
._2{margin-left:-2308.544000pt;}
._8c{margin-left:-2294.976000pt;}
._97{margin-left:-2287.936000pt;}
._5e{margin-left:-2282.048000pt;}
._36{margin-left:-2261.248000pt;}
._9c{margin-left:-2259.840000pt;}
._27{margin-left:-2210.944000pt;}
._60{margin-left:-2186.560000pt;}
._86{margin-left:-2097.792000pt;}
._78{margin-left:-2078.016000pt;}
._83{margin-left:-2054.912000pt;}
._50{margin-left:-2028.416000pt;}
._9b{margin-left:-1994.816000pt;}
._7b{margin-left:-1985.792000pt;}
._93{margin-left:-1978.496000pt;}
._5{margin-left:-1975.744000pt;}
._8d{margin-left:-1939.072000pt;}
._7f{margin-left:-1871.680000pt;}
._73{margin-left:-1839.808000pt;}
._7e{margin-left:-1797.248000pt;}
._94{margin-left:-1754.816000pt;}
._89{margin-left:-1719.808000pt;}
._82{margin-left:-1710.144000pt;}
._9f{margin-left:-1687.104000pt;}
._8a{margin-left:-1674.432000pt;}
._44{margin-left:-1665.728000pt;}
._88{margin-left:-1621.312000pt;}
._6d{margin-left:-1580.288000pt;}
._81{margin-left:-1578.496000pt;}
._75{margin-left:-1562.944000pt;}
._a2{margin-left:-1548.480000pt;}
._a5{margin-left:-1539.520000pt;}
._80{margin-left:-1521.728000pt;}
._5d{margin-left:-1500.480000pt;}
._59{margin-left:-1495.616000pt;}
._15{margin-left:-1433.152000pt;}
._8e{margin-left:-1424.000000pt;}
._66{margin-left:-1398.848000pt;}
._90{margin-left:-1370.688000pt;}
._8f{margin-left:-1324.224000pt;}
._0{margin-left:-1277.760000pt;}
._4b{margin-left:-1238.784000pt;}
._68{margin-left:-1199.872000pt;}
._77{margin-left:-1196.480000pt;}
._1f{margin-left:-1170.816000pt;}
._95{margin-left:-1148.864000pt;}
._63{margin-left:-1136.064000pt;}
._74{margin-left:-1134.208000pt;}
._a{margin-left:-1063.872000pt;}
._7a{margin-left:-1038.208000pt;}
._22{margin-left:-1032.640000pt;}
._72{margin-left:-1018.432000pt;}
._2e{margin-left:-1006.400000pt;}
._85{margin-left:-979.584000pt;}
._54{margin-left:-935.168000pt;}
._84{margin-left:-837.376000pt;}
._31{margin-left:-805.952000pt;}
._92{margin-left:-791.104000pt;}
._6e{margin-left:-738.688000pt;}
._12{margin-left:-708.288000pt;}
._87{margin-left:-679.296000pt;}
._58{margin-left:-641.600000pt;}
._71{margin-left:-640.512000pt;}
._99{margin-left:-635.776000pt;}
._f{margin-left:-619.072000pt;}
._30{margin-left:-600.960000pt;}
._9d{margin-left:-543.168000pt;}
._23{margin-left:-524.800000pt;}
._5a{margin-left:-496.704000pt;}
._98{margin-left:-485.952000pt;}
._5b{margin-left:-453.760000pt;}
._4f{margin-left:-444.992000pt;}
._57{margin-left:-430.464000pt;}
._16{margin-left:-414.656000pt;}
._52{margin-left:-407.552000pt;}
._a3{margin-left:-357.376000pt;}
._a0{margin-left:-209.024000pt;}
._51{margin-left:-208.000000pt;}
._13{margin-left:-176.000000pt;}
._3{margin-left:-144.000000pt;}
._49{margin-left:-14.592000pt;}
._91{margin-left:-11.968000pt;}
._7c{margin-left:-1.792000pt;}
._4{margin-left:-0.896000pt;}
._1{width:1.088000pt;}
._67{width:1.984000pt;}
._33{width:2.880000pt;}
._b{width:3.904000pt;}
._29{width:4.851200pt;}
._24{width:6.144000pt;}
._2c{width:7.680000pt;}
._8{width:9.536000pt;}
._1b{width:11.200000pt;}
._35{width:12.736000pt;}
._1c{width:13.824000pt;}
._45{width:15.040000pt;}
._2a{width:17.728000pt;}
._4c{width:18.681600pt;}
._6{width:19.776000pt;}
._69{width:21.824000pt;}
._62{width:25.344000pt;}
._61{width:26.368000pt;}
._26{width:27.328000pt;}
._20{width:30.528000pt;}
._d{width:33.408000pt;}
._64{width:34.304000pt;}
._a1{width:36.933221pt;}
._a4{width:37.961155pt;}
._1e{width:41.216000pt;}
._9e{width:42.143496pt;}
._14{width:172.800000pt;}
.fs8{font-size:27.909867pt;}
.fs7{font-size:27.916267pt;}
.fsb{font-size:28.018133pt;}
.fsd{font-size:28.020267pt;}
.fsc{font-size:29.535673pt;}
.fs4{font-size:31.540800pt;}
.fs5{font-size:31.649600pt;}
.fsa{font-size:33.539733pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs9{font-size:50.209067pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:56.728533pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.440000pt;}
.y105{bottom:5.240933pt;}
.yd5{bottom:7.129867pt;}
.y106{bottom:19.552933pt;}
.yd6{bottom:20.385067pt;}
.ya4{bottom:21.840000pt;}
.y10a{bottom:29.582267pt;}
.yd8{bottom:30.376667pt;}
.y2{bottom:47.200000pt;}
.yb3{bottom:48.729867pt;}
.y1{bottom:50.720000pt;}
.y10b{bottom:55.127800pt;}
.y9f{bottom:58.640000pt;}
.yfe{bottom:61.005686pt;}
.yb4{bottom:64.840800pt;}
.yd9{bottom:66.730625pt;}
.yfd{bottom:67.279867pt;}
.yfc{bottom:71.999467pt;}
.y119{bottom:72.077193pt;}
.y11f{bottom:74.150534pt;}
.yb6{bottom:76.129733pt;}
.y107{bottom:77.000267pt;}
.y11d{bottom:80.447610pt;}
.y10c{bottom:80.624301pt;}
.y45{bottom:99.840000pt;}
.yd7{bottom:99.865867pt;}
.yce{bottom:101.270553pt;}
.y118{bottom:101.454205pt;}
.yda{bottom:103.028751pt;}
.y103{bottom:104.480000pt;}
.y109{bottom:105.068800pt;}
.y10d{bottom:106.120802pt;}
.y108{bottom:106.580533pt;}
.y11b{bottom:106.700601pt;}
.yb7{bottom:112.717061pt;}
.y80{bottom:113.440000pt;}
.y34{bottom:115.840000pt;}
.y5e{bottom:118.240000pt;}
.y2b{bottom:120.640000pt;}
.yfb{bottom:122.709681pt;}
.y93{bottom:123.040000pt;}
.y9c{bottom:125.440000pt;}
.y117{bottom:125.591827pt;}
.ycf{bottom:127.875217pt;}
.y10e{bottom:131.617304pt;}
.y4a{bottom:131.840000pt;}
.y11a{bottom:131.895907pt;}
.y44{bottom:136.640000pt;}
.y115{bottom:138.739336pt;}
.ydb{bottom:139.326876pt;}
.y11c{bottom:141.877367pt;}
.yb8{bottom:149.249193pt;}
.y7f{bottom:150.240000pt;}
.y33{bottom:152.640000pt;}
.y116{bottom:153.406829pt;}
.y5d{bottom:155.040000pt;}
.y10f{bottom:157.113805pt;}
.y102{bottom:157.280000pt;}
.y6b{bottom:157.440000pt;}
.ycd{bottom:159.187347pt;}
.y92{bottom:161.120000pt;}
.y9b{bottom:162.240000pt;}
.y114{bottom:162.323600pt;}
.yf9{bottom:165.589067pt;}
.yb5{bottom:166.384533pt;}
.y49{bottom:168.640000pt;}
.ycc{bottom:173.372821pt;}
.y2a{bottom:173.440000pt;}
.ydc{bottom:175.625002pt;}
.yfa{bottom:181.808418pt;}
.y110{bottom:182.610306pt;}
.y8a{bottom:183.040000pt;}
.y113{bottom:183.387067pt;}
.yb9{bottom:185.781325pt;}
.y7e{bottom:187.040000pt;}
.y32{bottom:189.440000pt;}
.y112{bottom:192.306000pt;}
.y6a{bottom:194.240000pt;}
.yed{bottom:194.961123pt;}
.y91{bottom:199.040000pt;}
.y11e{bottom:202.249440pt;}
.y48{bottom:205.440000pt;}
.y5c{bottom:207.840000pt;}
.y111{bottom:208.106808pt;}
.ye6{bottom:208.166667pt;}
.y101{bottom:210.080000pt;}
.y43{bottom:210.240000pt;}
.y9a{bottom:215.040000pt;}
.y89{bottom:219.840000pt;}
.y55{bottom:221.440000pt;}
.yba{bottom:222.313456pt;}
.y120{bottom:223.010877pt;}
.y7d{bottom:223.840000pt;}
.y29{bottom:226.240000pt;}
.yf1{bottom:226.740278pt;}
.y14{bottom:229.440000pt;}
.y69{bottom:231.040000pt;}
.y90{bottom:235.840000pt;}
.ye7{bottom:238.092905pt;}
.y47{bottom:242.240000pt;}
.y5b{bottom:244.640000pt;}
.y42{bottom:247.040000pt;}
.y99{bottom:251.840000pt;}
.y88{bottom:256.640000pt;}
.y54{bottom:258.240000pt;}
.ybb{bottom:258.845588pt;}
.y7c{bottom:260.640000pt;}
.yc4{bottom:262.878862pt;}
.y100{bottom:262.880000pt;}
.y28{bottom:263.040000pt;}
.ycb{bottom:264.360144pt;}
.y68{bottom:267.840000pt;}
.ye8{bottom:267.970289pt;}
.y9d{bottom:272.640000pt;}
.ye5{bottom:274.141333pt;}
.ybd{bottom:277.004800pt;}
.y46{bottom:279.040000pt;}
.y13{bottom:282.240000pt;}
.y5a{bottom:282.720000pt;}
.y41{bottom:283.840000pt;}
.yca{bottom:285.011483pt;}
.y8f{bottom:288.640000pt;}
.y87{bottom:293.440000pt;}
.y53{bottom:295.040000pt;}
.y83{bottom:296.320000pt;}
.y7b{bottom:297.440000pt;}
.ye9{bottom:297.896527pt;}
.y31{bottom:299.840000pt;}
.yc9{bottom:300.387623pt;}
.yf0{bottom:300.495054pt;}
.y97{bottom:309.440000pt;}
.yc8{bottom:311.616148pt;}
.yd4{bottom:312.186667pt;}
.yff{bottom:312.240000pt;}
.yd1{bottom:315.600000pt;}
.y27{bottom:315.840000pt;}
.ybe{bottom:317.227205pt;}
.y40{bottom:320.640000pt;}
.y8e{bottom:325.440000pt;}
.yea{bottom:327.773911pt;}
.y52{bottom:331.840000pt;}
.y7a{bottom:334.240000pt;}
.y12{bottom:335.040000pt;}
.y30{bottom:336.640000pt;}
.yb0{bottom:339.440000pt;}
.y86{bottom:346.240000pt;}
.yee{bottom:349.655600pt;}
.y26{bottom:352.640000pt;}
.y3f{bottom:357.440000pt;}
.ybf{bottom:357.449610pt;}
.yeb{bottom:357.700149pt;}
.y8d{bottom:362.240000pt;}
.ybc{bottom:364.366667pt;}
.yd0{bottom:367.840000pt;}
.y51{bottom:368.640000pt;}
.y79{bottom:371.040000pt;}
.yf8{bottom:372.751467pt;}
.y2f{bottom:373.440000pt;}
.y98{bottom:378.240000pt;}
.yef{bottom:379.477152pt;}
.yde{bottom:386.007067pt;}
.y82{bottom:387.040000pt;}
.y11{bottom:387.840000pt;}
.y25{bottom:389.440000pt;}
.yaf{bottom:392.240000pt;}
.y59{bottom:394.240000pt;}
.yc0{bottom:397.616819pt;}
.yc7{bottom:398.463741pt;}
.y85{bottom:399.040000pt;}
.y50{bottom:405.440000pt;}
.y78{bottom:407.840000pt;}
.y2e{bottom:410.240000pt;}
.yf5{bottom:411.406382pt;}
.y8c{bottom:415.040000pt;}
.ydf{bottom:415.682058pt;}
.yf6{bottom:419.739387pt;}
.yb2{bottom:420.453333pt;}
.yb1{bottom:420.480000pt;}
.y10{bottom:424.640000pt;}
.y81{bottom:425.120000pt;}
.y24{bottom:426.240000pt;}
.y58{bottom:431.040000pt;}
.yae{bottom:435.040000pt;}
.y96{bottom:435.840000pt;}
.yc1{bottom:437.839224pt;}
.y4f{bottom:442.240000pt;}
.y77{bottom:444.640000pt;}
.ye0{bottom:445.308196pt;}
.y2d{bottom:447.040000pt;}
.yc6{bottom:451.050139pt;}
.y84{bottom:451.840000pt;}
.yf4{bottom:453.231928pt;}
.ydd{bottom:459.212000pt;}
.yf3{bottom:460.008602pt;}
.yc3{bottom:461.372000pt;}
.yf{bottom:461.440000pt;}
.yc5{bottom:461.655733pt;}
.y23{bottom:463.040000pt;}
.y67{bottom:467.840000pt;}
.ye1{bottom:474.983188pt;}
.yc2{bottom:478.006433pt;}
.y4e{bottom:479.040000pt;}
.y76{bottom:481.440000pt;}
.yad{bottom:481.840000pt;}
.y2c{bottom:483.840000pt;}
.y8b{bottom:488.640000pt;}
.y22{bottom:499.840000pt;}
.ye2{bottom:504.609326pt;}
.y66{bottom:504.640000pt;}
.yf2{bottom:506.551998pt;}
.ye{bottom:514.240000pt;}
.y4d{bottom:515.840000pt;}
.yac{bottom:518.640000pt;}
.y57{bottom:520.640000pt;}
.y95{bottom:525.440000pt;}
.y75{bottom:534.240000pt;}
.ye3{bottom:534.284317pt;}
.y21{bottom:536.640000pt;}
.y65{bottom:541.440000pt;}
.yf7{bottom:544.762388pt;}
.yec{bottom:550.541733pt;}
.yd{bottom:551.040000pt;}
.y4c{bottom:552.640000pt;}
.y56{bottom:557.440000pt;}
.yab{bottom:561.440000pt;}
.y94{bottom:562.240000pt;}
.ye4{bottom:563.910455pt;}
.y74{bottom:572.320000pt;}
.y20{bottom:573.440000pt;}
.y64{bottom:578.240000pt;}
.yaa{bottom:587.040000pt;}
.yc{bottom:587.840000pt;}
.y4b{bottom:589.440000pt;}
.y73{bottom:594.240000pt;}
.y1f{bottom:610.240000pt;}
.y63{bottom:615.040000pt;}
.ya9{bottom:623.840000pt;}
.y3e{bottom:626.240000pt;}
.y72{bottom:631.040000pt;}
.yb{bottom:640.640000pt;}
.y1e{bottom:647.040000pt;}
.y62{bottom:651.840000pt;}
.ya8{bottom:660.640000pt;}
.y3d{bottom:663.040000pt;}
.y71{bottom:667.840000pt;}
.ya{bottom:677.440000pt;}
.y1d{bottom:683.840000pt;}
.y61{bottom:688.640000pt;}
.ya7{bottom:697.440000pt;}
.y3c{bottom:699.840000pt;}
.y70{bottom:704.640000pt;}
.y9{bottom:714.240000pt;}
.y1c{bottom:720.640000pt;}
.y122{bottom:722.000000pt;}
.y60{bottom:725.440000pt;}
.ya6{bottom:734.240000pt;}
.y3b{bottom:736.640000pt;}
.y6f{bottom:741.440000pt;}
.y1b{bottom:757.440000pt;}
.y8{bottom:767.040000pt;}
.ya5{bottom:771.040000pt;}
.y104{bottom:771.253333pt;}
.y121{bottom:771.280000pt;}
.y3a{bottom:773.440000pt;}
.y5f{bottom:778.240000pt;}
.y1a{bottom:794.240000pt;}
.ya3{bottom:807.840000pt;}
.y39{bottom:810.240000pt;}
.y6e{bottom:815.040000pt;}
.y7{bottom:819.840000pt;}
.y19{bottom:831.040000pt;}
.y9e{bottom:845.280000pt;}
.y38{bottom:847.040000pt;}
.y6d{bottom:851.840000pt;}
.ya2{bottom:866.560000pt;}
.ya0{bottom:867.120000pt;}
.y18{bottom:867.840000pt;}
.y6{bottom:872.640000pt;}
.y37{bottom:883.840000pt;}
.y6c{bottom:888.640000pt;}
.ya1{bottom:900.880000pt;}
.y17{bottom:904.640000pt;}
.y36{bottom:920.640000pt;}
.y5{bottom:925.440000pt;}
.y16{bottom:941.440000pt;}
.yd3{bottom:942.160000pt;}
.y35{bottom:957.440000pt;}
.y4{bottom:978.160000pt;}
.y15{bottom:994.160000pt;}
.yd2{bottom:994.320000pt;}
.h3{height:18.401333pt;}
.h12{height:20.932400pt;}
.h11{height:20.937200pt;}
.h17{height:21.013600pt;}
.h19{height:21.015200pt;}
.h18{height:22.151755pt;}
.hd{height:23.655600pt;}
.he{height:23.737200pt;}
.h15{height:34.980894pt;}
.ha{height:36.798667pt;}
.h9{height:36.800000pt;}
.h13{height:37.656800pt;}
.hb{height:41.770312pt;}
.h14{height:41.818567pt;}
.hf{height:42.546400pt;}
.h8{height:52.478750pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h5{height:65.770312pt;}
.h6{height:66.750000pt;}
.h7{height:73.600000pt;}
.h16{height:237.800000pt;}
.hc{height:535.800000pt;}
.h10{height:592.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.998667pt;}
.w3{width:16.000000pt;}
.w5{width:163.200000pt;}
.w4{width:192.000000pt;}
.w6{width:221.120000pt;}
.w9{width:332.866667pt;}
.w8{width:335.066667pt;}
.w7{width:336.133333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x16{left:14.003200pt;}
.x17{left:22.712533pt;}
.x3f{left:25.141967pt;}
.x31{left:30.943600pt;}
.x33{left:38.655358pt;}
.x32{left:42.585200pt;}
.x23{left:51.000267pt;}
.x24{left:53.008267pt;}
.x15{left:59.428133pt;}
.x25{left:60.689508pt;}
.xa{left:65.440000pt;}
.xe{left:67.120000pt;}
.x30{left:69.143600pt;}
.x7{left:73.440000pt;}
.x35{left:76.405045pt;}
.x34{left:83.256000pt;}
.x22{left:91.057733pt;}
.x36{left:100.390393pt;}
.x29{left:102.408591pt;}
.xb{left:106.240000pt;}
.x1a{left:107.811204pt;}
.x37{left:111.878702pt;}
.x5{left:113.440000pt;}
.x2e{left:130.663333pt;}
.x2b{left:133.521115pt;}
.x1{left:137.440000pt;}
.x4{left:139.120000pt;}
.x14{left:143.105600pt;}
.x13{left:146.840000pt;}
.x9{left:161.440000pt;}
.x2d{left:164.144933pt;}
.x21{left:169.014000pt;}
.x1b{left:177.820119pt;}
.x38{left:178.756074pt;}
.x28{left:195.271695pt;}
.x39{left:200.780003pt;}
.x3a{left:207.126594pt;}
.x1d{left:212.492256pt;}
.x6{left:222.560000pt;}
.x27{left:225.839977pt;}
.x3b{left:228.646159pt;}
.x3c{left:240.687868pt;}
.x1f{left:244.869797pt;}
.x1c{left:247.781560pt;}
.x26{left:257.210667pt;}
.x3d{left:262.207433pt;}
.x3e{left:271.629248pt;}
.x1e{left:279.826780pt;}
.x2a{left:287.527759pt;}
.xd{left:298.240000pt;}
.x18{left:301.751467pt;}
.x19{left:304.426882pt;}
.x2c{left:305.349733pt;}
.xf{left:379.760000pt;}
.x3{left:396.880000pt;}
.x40{left:446.320000pt;}
.x2f{left:448.560000pt;}
.x12{left:461.440000pt;}
.x11{left:470.400000pt;}
.x20{left:482.960000pt;}
.x10{left:509.680000pt;}
.x8{left:664.320000pt;}
.x2{left:672.320000pt;}
}

