
    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_fba0a2771fb862fc914631c7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_7faae4b55b7a1ebc0a563445.woff')format("woff");}.ff2{font-family:ff2;line-height:1.133301;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_756210acfafbe7564c8be12c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.027832;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_353674c009fd1301be21054d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133789;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_5bfbc9494c8aae9228fddac2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_422e2a8acddce81fd30ccae4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.113281;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_0846d16867069b7b84123658.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_84aa47dc75c49c333736f8f2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_25cd764c9553e98159ea2ec4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.133301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d510065404bcfaf96eae5df3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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;}
.m1{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.952000px;}
.ls0{letter-spacing:-15.876000px;}
.ls2{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.007896px;}
.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;}
}
.wsaf{word-spacing:-20.016000px;}
.ws2e{word-spacing:-19.944000px;}
.ws4f{word-spacing:-9.864000px;}
.ws65{word-spacing:-9.648000px;}
.ws26{word-spacing:-9.576000px;}
.ws4c{word-spacing:-9.360000px;}
.wsc3{word-spacing:-8.928000px;}
.ws66{word-spacing:-8.856000px;}
.wsd6{word-spacing:-8.496000px;}
.wse1{word-spacing:-8.352000px;}
.ws67{word-spacing:-8.064000px;}
.ws21{word-spacing:-7.992000px;}
.wsb8{word-spacing:-7.560000px;}
.ws53{word-spacing:-7.272000px;}
.wsbc{word-spacing:-7.128000px;}
.ws36{word-spacing:-6.912000px;}
.ws4e{word-spacing:-6.768000px;}
.ws56{word-spacing:-6.480000px;}
.ws17{word-spacing:-6.336000px;}
.wsd{word-spacing:-6.192000px;}
.wscd{word-spacing:-6.048000px;}
.ws93{word-spacing:-5.904000px;}
.wsba{word-spacing:-5.688000px;}
.ws3e{word-spacing:-5.616000px;}
.wsd5{word-spacing:-5.400000px;}
.ws64{word-spacing:-5.112000px;}
.ws83{word-spacing:-5.040000px;}
.ws40{word-spacing:-4.860000px;}
.ws2c{word-spacing:-4.392000px;}
.ws62{word-spacing:-4.320000px;}
.ws9b{word-spacing:-4.176000px;}
.ws82{word-spacing:-4.032000px;}
.ws33{word-spacing:-3.888000px;}
.ws8a{word-spacing:-3.816000px;}
.ws92{word-spacing:-3.672000px;}
.wsda{word-spacing:-3.456000px;}
.wsb7{word-spacing:-3.384000px;}
.ws27{word-spacing:-3.312000px;}
.ws55{word-spacing:-3.168000px;}
.ws28{word-spacing:-3.024000px;}
.ws8c{word-spacing:-2.952000px;}
.ws51{word-spacing:-2.880000px;}
.ws9f{word-spacing:-2.808000px;}
.ws6b{word-spacing:-2.736000px;}
.ws22{word-spacing:-2.592000px;}
.ws2f{word-spacing:-2.520000px;}
.ws5c{word-spacing:-2.448000px;}
.ws8f{word-spacing:-2.304000px;}
.ws7c{word-spacing:-2.232000px;}
.wsce{word-spacing:-2.160000px;}
.wsbb{word-spacing:-2.088000px;}
.ws24{word-spacing:-2.016000px;}
.ws50{word-spacing:-1.944000px;}
.ws63{word-spacing:-1.872000px;}
.ws74{word-spacing:-1.800000px;}
.ws16{word-spacing:-1.656000px;}
.ws1a{word-spacing:-1.440000px;}
.ws6a{word-spacing:-1.296000px;}
.ws1d{word-spacing:-1.224000px;}
.ws99{word-spacing:-1.152000px;}
.wsb2{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.936000px;}
.ws23{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.576000px;}
.wsc4{word-spacing:-0.504000px;}
.wse4{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.216000px;}
.wsb9{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:0.072000px;}
.wsc0{word-spacing:0.144000px;}
.ws97{word-spacing:0.288000px;}
.ws95{word-spacing:0.360000px;}
.wscc{word-spacing:0.432000px;}
.wscf{word-spacing:0.504000px;}
.ws44{word-spacing:0.540000px;}
.ws57{word-spacing:0.576000px;}
.ws69{word-spacing:0.648000px;}
.wsac{word-spacing:0.720000px;}
.ws35{word-spacing:0.792000px;}
.ws5e{word-spacing:0.864000px;}
.wsa5{word-spacing:0.936000px;}
.ws8e{word-spacing:1.008000px;}
.ws1e{word-spacing:1.224000px;}
.ws52{word-spacing:1.368000px;}
.ws29{word-spacing:1.440000px;}
.wsd3{word-spacing:1.512000px;}
.ws91{word-spacing:1.584000px;}
.ws7a{word-spacing:1.656000px;}
.wsbe{word-spacing:1.728000px;}
.ws76{word-spacing:1.800000px;}
.ws6d{word-spacing:1.944000px;}
.ws73{word-spacing:2.016000px;}
.ws60{word-spacing:2.088000px;}
.ws88{word-spacing:2.304000px;}
.wsb4{word-spacing:2.376000px;}
.wse7{word-spacing:2.448000px;}
.ws7d{word-spacing:2.520000px;}
.wsa9{word-spacing:2.592000px;}
.ws3d{word-spacing:2.664000px;}
.wsaa{word-spacing:2.808000px;}
.ws9c{word-spacing:2.880000px;}
.wsd9{word-spacing:2.952000px;}
.ws98{word-spacing:3.024000px;}
.wsa2{word-spacing:3.096000px;}
.ws1b{word-spacing:3.168000px;}
.ws2b{word-spacing:3.240000px;}
.ws94{word-spacing:3.456000px;}
.wsde{word-spacing:3.528000px;}
.ws6e{word-spacing:3.600000px;}
.ws89{word-spacing:3.744000px;}
.ws77{word-spacing:3.816000px;}
.ws7b{word-spacing:3.888000px;}
.ws19{word-spacing:3.960000px;}
.wsd8{word-spacing:4.104000px;}
.ws47{word-spacing:4.176000px;}
.ws6c{word-spacing:4.248000px;}
.ws3a{word-spacing:4.320000px;}
.ws45{word-spacing:4.392000px;}
.ws5f{word-spacing:4.464000px;}
.ws5b{word-spacing:4.536000px;}
.wsa7{word-spacing:4.608000px;}
.wsca{word-spacing:4.680000px;}
.ws13{word-spacing:4.752000px;}
.wsb5{word-spacing:4.968000px;}
.wscb{word-spacing:5.256000px;}
.ws7e{word-spacing:5.328000px;}
.ws1c{word-spacing:5.400000px;}
.wsd4{word-spacing:5.472000px;}
.ws3f{word-spacing:5.544000px;}
.wsb0{word-spacing:5.688000px;}
.wsb6{word-spacing:5.760000px;}
.ws6f{word-spacing:5.832000px;}
.ws8b{word-spacing:5.904000px;}
.ws3c{word-spacing:5.976000px;}
.ws3b{word-spacing:6.048000px;}
.ws42{word-spacing:6.060000px;}
.ws85{word-spacing:6.120000px;}
.wsc9{word-spacing:6.264000px;}
.ws20{word-spacing:6.336000px;}
.ws37{word-spacing:6.480000px;}
.ws84{word-spacing:6.552000px;}
.wse6{word-spacing:6.840000px;}
.ws30{word-spacing:6.912000px;}
.wsdb{word-spacing:6.984000px;}
.ws54{word-spacing:7.056000px;}
.ws46{word-spacing:7.272000px;}
.ws25{word-spacing:7.344000px;}
.wse2{word-spacing:7.416000px;}
.ws58{word-spacing:7.488000px;}
.wsc7{word-spacing:7.632000px;}
.wse8{word-spacing:7.704000px;}
.ws96{word-spacing:7.920000px;}
.ws2d{word-spacing:8.208000px;}
.ws5d{word-spacing:8.280000px;}
.ws90{word-spacing:8.352000px;}
.ws81{word-spacing:8.496000px;}
.wsd2{word-spacing:8.712000px;}
.ws39{word-spacing:8.856000px;}
.ws72{word-spacing:9.000000px;}
.ws43{word-spacing:9.300000px;}
.ws7f{word-spacing:9.360000px;}
.wsdc{word-spacing:9.432000px;}
.wsbd{word-spacing:9.504000px;}
.ws9e{word-spacing:9.576000px;}
.wsa3{word-spacing:9.648000px;}
.wsc5{word-spacing:9.720000px;}
.wsb1{word-spacing:9.792000px;}
.ws9d{word-spacing:10.080000px;}
.ws70{word-spacing:10.152000px;}
.ws32{word-spacing:10.296000px;}
.wsc1{word-spacing:10.368000px;}
.ws6{word-spacing:10.512000px;}
.ws78{word-spacing:10.656000px;}
.ws4b{word-spacing:10.728000px;}
.ws75{word-spacing:10.944000px;}
.ws59{word-spacing:11.232000px;}
.wsa8{word-spacing:11.304000px;}
.wsa1{word-spacing:11.736000px;}
.ws4a{word-spacing:11.880000px;}
.ws5a{word-spacing:11.952000px;}
.wsab{word-spacing:12.096000px;}
.ws12{word-spacing:12.168000px;}
.ws9a{word-spacing:12.240000px;}
.ws38{word-spacing:12.384000px;}
.wsbf{word-spacing:12.528000px;}
.ws79{word-spacing:12.744000px;}
.ws41{word-spacing:12.780000px;}
.wsdd{word-spacing:13.104000px;}
.wsd0{word-spacing:13.464000px;}
.wsa0{word-spacing:13.824000px;}
.wsa6{word-spacing:13.968000px;}
.ws34{word-spacing:14.112000px;}
.ws4d{word-spacing:14.328000px;}
.wsd7{word-spacing:14.400000px;}
.ws31{word-spacing:14.832000px;}
.ws49{word-spacing:14.904000px;}
.wsad{word-spacing:15.120000px;}
.ws48{word-spacing:15.192000px;}
.ws71{word-spacing:15.480000px;}
.wsd1{word-spacing:15.696000px;}
.ws0{word-spacing:15.876000px;}
.ws8d{word-spacing:16.056000px;}
.wsb3{word-spacing:16.200000px;}
.ws5{word-spacing:18.288000px;}
.wse0{word-spacing:18.648000px;}
.ws2{word-spacing:19.296000px;}
.ws4{word-spacing:19.512000px;}
.wsc2{word-spacing:19.800000px;}
.ws86{word-spacing:20.160000px;}
.ws68{word-spacing:20.232000px;}
.wsc6{word-spacing:21.168000px;}
.ws7{word-spacing:21.744000px;}
.wse3{word-spacing:22.032000px;}
.wsb{word-spacing:22.608000px;}
.ws9{word-spacing:22.752000px;}
.wse{word-spacing:24.408000px;}
.wse5{word-spacing:26.280000px;}
.ws10{word-spacing:28.008000px;}
.ws3{word-spacing:31.608000px;}
.ws87{word-spacing:31.680000px;}
.ws80{word-spacing:31.752000px;}
.wsa{word-spacing:31.896000px;}
.wsae{word-spacing:32.184000px;}
.wsdf{word-spacing:33.192000px;}
.wsc{word-spacing:37.224000px;}
.wsc8{word-spacing:39.096000px;}
.ws11{word-spacing:43.128000px;}
.wsf{word-spacing:58.032000px;}
.ws14{word-spacing:63.432000px;}
.ws8{word-spacing:90.720000px;}
._14{margin-left:-17.409600px;}
._13{margin-left:-16.315200px;}
._19{margin-left:-9.216000px;}
._16{margin-left:-7.221600px;}
._c{margin-left:-5.767200px;}
._4{margin-left:-4.096800px;}
._3{margin-left:-2.959200px;}
._5{margin-left:-1.080000px;}
._6{width:1.058400px;}
._b{width:2.390400px;}
._2{width:3.470400px;}
._8{width:4.838400px;}
._a{width:5.904000px;}
._7{width:7.660800px;}
._10{width:9.655200px;}
._e{width:10.656000px;}
._f{width:12.016800px;}
._1{width:14.032800px;}
._9{width:15.249600px;}
._0{width:17.049600px;}
._d{width:18.849600px;}
._18{width:24.660000px;}
._11{width:25.732800px;}
._17{width:28.555200px;}
._15{width:32.522400px;}
._12{width:36.986400px;}
.fc3{color:rgb(79,92,214);}
.fc1{color:rgb(0,0,10);}
.fc2{color:rgb(99,99,99);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.976000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:67.018160px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:85.295859px;}
.fs1{font-size:97.480922px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:48.621300px;}
.y7b{bottom:144.555600px;}
.yd5{bottom:151.417500px;}
.y188{bottom:154.609350px;}
.y13e{bottom:157.537350px;}
.ybe{bottom:158.947350px;}
.y180{bottom:162.541350px;}
.y55{bottom:164.276700px;}
.y103{bottom:165.085350px;}
.y9f{bottom:169.621350px;}
.y1aa{bottom:174.205350px;}
.y15f{bottom:175.471350px;}
.y187{bottom:178.603350px;}
.y7a{bottom:180.555600px;}
.y190{bottom:181.441350px;}
.y13d{bottom:181.531350px;}
.ybd{bottom:182.941350px;}
.y17f{bottom:186.535350px;}
.y54{bottom:188.270700px;}
.y102{bottom:189.079350px;}
.yae{bottom:190.465350px;}
.y9e{bottom:193.615350px;}
.ye3{bottom:197.923350px;}
.yd4{bottom:197.983350px;}
.y1a9{bottom:198.199350px;}
.y79{bottom:198.555600px;}
.y15e{bottom:199.465350px;}
.y186{bottom:202.597350px;}
.y18f{bottom:205.435350px;}
.y13c{bottom:205.525350px;}
.y1c9{bottom:206.433450px;}
.ybc{bottom:206.935350px;}
.y120{bottom:207.931350px;}
.y17e{bottom:210.529350px;}
.y53{bottom:212.264700px;}
.yad{bottom:214.459350px;}
.y78{bottom:216.555600px;}
.y9d{bottom:217.609350px;}
.y185{bottom:226.591350px;}
.y147{bottom:228.067350px;}
.y101{bottom:228.085350px;}
.ye2{bottom:229.423350px;}
.y18e{bottom:229.429350px;}
.yd3{bottom:229.483350px;}
.y13b{bottom:229.519350px;}
.y1c8{bottom:230.427450px;}
.ybb{bottom:230.929350px;}
.y15d{bottom:230.965350px;}
.y11f{bottom:231.925350px;}
.y17d{bottom:234.523350px;}
.y77{bottom:234.555600px;}
.y52{bottom:236.258700px;}
.y1a8{bottom:237.205350px;}
.yac{bottom:238.453350px;}
.y9c{bottom:241.603350px;}
.y184{bottom:250.585350px;}
.y100{bottom:252.079350px;}
.ye1{bottom:253.417350px;}
.yd2{bottom:253.477350px;}
.y13a{bottom:253.513350px;}
.yba{bottom:254.923350px;}
.y15c{bottom:254.959350px;}
.y17c{bottom:258.517350px;}
.y146{bottom:259.567350px;}
.y51{bottom:260.252700px;}
.y1a7{bottom:261.199350px;}
.yab{bottom:262.447350px;}
.y9b{bottom:265.597350px;}
.y18d{bottom:268.435350px;}
.y1c7{bottom:269.433450px;}
.y76{bottom:270.555600px;}
.y11e{bottom:270.931350px;}
.y183{bottom:274.579350px;}
.yff{bottom:276.073350px;}
.y145{bottom:283.561350px;}
.y50{bottom:284.246700px;}
.ye0{bottom:284.917350px;}
.yd1{bottom:284.977350px;}
.yaa{bottom:286.441350px;}
.y15b{bottom:286.459350px;}
.y75{bottom:288.555600px;}
.y9a{bottom:289.591350px;}
.y18c{bottom:292.429350px;}
.y139{bottom:292.519350px;}
.y1c6{bottom:293.427450px;}
.yb9{bottom:293.929350px;}
.y11d{bottom:294.925350px;}
.y17b{bottom:297.517350px;}
.yfe{bottom:300.067350px;}
.y1a6{bottom:300.205350px;}
.y74{bottom:306.555600px;}
.y4f{bottom:308.240700px;}
.ya9{bottom:310.435350px;}
.y99{bottom:313.585350px;}
.ydf{bottom:316.417350px;}
.y18b{bottom:316.423350px;}
.yd0{bottom:316.477350px;}
.y138{bottom:316.513350px;}
.yb8{bottom:317.923350px;}
.y15a{bottom:317.959350px;}
.y11c{bottom:318.919350px;}
.y144{bottom:322.567350px;}
.y1a5{bottom:324.199350px;}
.y73{bottom:324.555600px;}
.y4e{bottom:332.234700px;}
.y1c5{bottom:332.433450px;}
.ya8{bottom:334.429350px;}
.y98{bottom:337.579350px;}
.yfd{bottom:339.073350px;}
.yde{bottom:340.417350px;}
.y137{bottom:340.507350px;}
.y159{bottom:341.953350px;}
.y11b{bottom:342.913350px;}
.y143{bottom:346.561350px;}
.ycf{bottom:347.977350px;}
.yb7{bottom:349.423350px;}
.y4d{bottom:356.228700px;}
.y1c4{bottom:356.427450px;}
.ya7{bottom:358.423350px;}
.y97{bottom:361.573350px;}
.yfc{bottom:363.067350px;}
.y1d{bottom:363.163950px;}
.y1a4{bottom:363.205350px;}
.y136{bottom:364.501350px;}
.y11a{bottom:366.907350px;}
.y72{bottom:369.265350px;}
.y142{bottom:370.555350px;}
.yce{bottom:371.971350px;}
.yb6{bottom:373.417350px;}
.y158{bottom:373.453350px;}
.y17a{bottom:378.061350px;}
.ydd{bottom:379.537350px;}
.y1c3{bottom:380.421450px;}
.ya6{bottom:382.417350px;}
.y96{bottom:385.567350px;}
.yfb{bottom:387.061350px;}
.y1c{bottom:387.157950px;}
.y1a3{bottom:387.199350px;}
.y135{bottom:388.495350px;}
.y2e{bottom:390.235950px;}
.y119{bottom:390.901350px;}
.y71{bottom:393.259350px;}
.y141{bottom:394.549350px;}
.y4c{bottom:395.234700px;}
.y179{bottom:402.055350px;}
.ycd{bottom:403.471350px;}
.ydc{bottom:403.531350px;}
.y1c2{bottom:404.415450px;}
.yb5{bottom:404.917350px;}
.ya5{bottom:406.411350px;}
.y95{bottom:409.561350px;}
.yfa{bottom:411.055350px;}
.y1b{bottom:411.151950px;}
.y157{bottom:412.459350px;}
.y134{bottom:412.489350px;}
.y2d{bottom:414.229950px;}
.y118{bottom:414.895350px;}
.y70{bottom:417.253350px;}
.y140{bottom:418.543350px;}
.y4b{bottom:419.228700px;}
.y178{bottom:426.049350px;}
.y1a2{bottom:426.205350px;}
.ydb{bottom:427.525350px;}
.y94{bottom:433.555350px;}
.yf9{bottom:435.049350px;}
.yb4{bottom:436.417350px;}
.y156{bottom:436.453350px;}
.y133{bottom:436.483350px;}
.y117{bottom:438.889350px;}
.y6f{bottom:441.247350px;}
.ycc{bottom:442.477350px;}
.y13f{bottom:442.537350px;}
.y4a{bottom:443.222700px;}
.y1c1{bottom:443.421450px;}
.ya4{bottom:445.417350px;}
.y177{bottom:450.043350px;}
.y93{bottom:457.549350px;}
.yf8{bottom:459.043350px;}
.y1a{bottom:459.157950px;}
.yb3{bottom:460.411350px;}
.y155{bottom:460.447350px;}
.y132{bottom:460.477350px;}
.y116{bottom:462.883350px;}
.y1a1{bottom:465.211350px;}
.y6e{bottom:465.241350px;}
.ycb{bottom:466.471350px;}
.yda{bottom:466.531350px;}
.y49{bottom:467.216700px;}
.y1c0{bottom:467.415450px;}
.y176{bottom:474.037350px;}
.y2c{bottom:477.229950px;}
.y92{bottom:481.543350px;}
.yf7{bottom:483.037350px;}
.y154{bottom:484.441350px;}
.y131{bottom:484.471350px;}
.y115{bottom:486.877350px;}
.y6d{bottom:489.235350px;}
.yca{bottom:490.465350px;}
.yd9{bottom:490.525350px;}
.y48{bottom:491.210700px;}
.y1bf{bottom:491.409450px;}
.y175{bottom:498.031350px;}
.yb2{bottom:499.417350px;}
.y1a0{bottom:504.217350px;}
.y91{bottom:505.537350px;}
.yf6{bottom:507.031350px;}
.y130{bottom:508.465350px;}
.y114{bottom:510.871350px;}
.y6c{bottom:513.229350px;}
.yc9{bottom:514.459350px;}
.yd8{bottom:514.519350px;}
.y47{bottom:515.204700px;}
.y174{bottom:522.025350px;}
.ya3{bottom:523.417350px;}
.y153{bottom:523.447350px;}
.y19f{bottom:528.211350px;}
.y90{bottom:529.531350px;}
.y1be{bottom:530.415450px;}
.yf5{bottom:531.025350px;}
.y12f{bottom:532.459350px;}
.y113{bottom:534.865350px;}
.y6b{bottom:537.223350px;}
.yc8{bottom:538.453350px;}
.yd7{bottom:538.513350px;}
.y46{bottom:539.198700px;}
.y173{bottom:546.019350px;}
.y19{bottom:546.151950px;}
.y152{bottom:547.441350px;}
.y19e{bottom:552.205350px;}
.y8f{bottom:553.525350px;}
.y1bd{bottom:554.409450px;}
.yf4{bottom:555.019350px;}
.y12e{bottom:556.453350px;}
.y112{bottom:558.859350px;}
.y6a{bottom:561.265350px;}
.yc7{bottom:562.447350px;}
.y45{bottom:563.192700px;}
.y172{bottom:570.013350px;}
.y18{bottom:570.145950px;}
.y151{bottom:571.435350px;}
.y8e{bottom:577.519350px;}
.yf3{bottom:579.013350px;}
.y12d{bottom:580.447350px;}
.y111{bottom:582.853350px;}
.y69{bottom:585.259350px;}
.yc6{bottom:586.441350px;}
.y44{bottom:587.186700px;}
.y19d{bottom:591.211350px;}
.y1bc{bottom:593.415450px;}
.y171{bottom:594.007350px;}
.y17{bottom:594.139950px;}
.y150{bottom:595.429350px;}
.y8d{bottom:601.513350px;}
.yf2{bottom:603.007350px;}
.y12c{bottom:604.441350px;}
.y110{bottom:606.847350px;}
.y68{bottom:609.253350px;}
.yc5{bottom:610.435350px;}
.y43{bottom:611.180700px;}
.y19c{bottom:615.205350px;}
.y182{bottom:616.525350px;}
.y1bb{bottom:617.409450px;}
.y170{bottom:618.001350px;}
.y16{bottom:618.133950px;}
.y2b{bottom:618.223950px;}
.y14f{bottom:619.423350px;}
.y8c{bottom:625.507350px;}
.yf1{bottom:627.001350px;}
.y12b{bottom:628.435350px;}
.y10f{bottom:630.841350px;}
.y67{bottom:633.247350px;}
.yc4{bottom:634.429350px;}
.y42{bottom:635.174700px;}
.y181{bottom:640.519350px;}
.y16f{bottom:641.995350px;}
.y15{bottom:642.127950px;}
.y2a{bottom:642.217950px;}
.y14e{bottom:643.417350px;}
.ya2{bottom:649.501350px;}
.yf0{bottom:650.995350px;}
.y12a{bottom:652.429350px;}
.y19b{bottom:654.211350px;}
.y10e{bottom:654.835350px;}
.y1ba{bottom:656.415450px;}
.y66{bottom:657.241350px;}
.yc3{bottom:658.423350px;}
.y41{bottom:659.168700px;}
.y8b{bottom:664.513350px;}
.y16e{bottom:665.989350px;}
.y14{bottom:666.121950px;}
.y29{bottom:666.211950px;}
.y14d{bottom:667.411350px;}
.ya1{bottom:673.495350px;}
.yef{bottom:674.989350px;}
.y129{bottom:676.423350px;}
.y19a{bottom:678.205350px;}
.y10d{bottom:678.829350px;}
.y1b9{bottom:680.409450px;}
.y65{bottom:681.235350px;}
.yc2{bottom:682.417350px;}
.y40{bottom:683.162700px;}
.y8a{bottom:688.507350px;}
.y16d{bottom:689.983350px;}
.y13{bottom:690.115950px;}
.y28{bottom:690.205950px;}
.ya0{bottom:697.489350px;}
.yee{bottom:698.983350px;}
.y128{bottom:700.417350px;}
.y199{bottom:702.199350px;}
.y10c{bottom:702.823350px;}
.y64{bottom:705.229350px;}
.yc1{bottom:706.411350px;}
.y14c{bottom:706.417350px;}
.y3f{bottom:707.156700px;}
.y89{bottom:712.501350px;}
.y16c{bottom:713.977350px;}
.y12{bottom:714.109950px;}
.y27{bottom:714.199950px;}
.y14b{bottom:715.471350px;}
.y1b8{bottom:719.415450px;}
.yd6{bottom:721.483350px;}
.y18a{bottom:721.501350px;}
.yed{bottom:722.977350px;}
.y10b{bottom:726.817350px;}
.y63{bottom:729.223350px;}
.y3e{bottom:731.150700px;}
.y88{bottom:736.495350px;}
.y16b{bottom:737.971350px;}
.y11{bottom:738.103950px;}
.y26{bottom:738.193950px;}
.y127{bottom:739.423350px;}
.y14a{bottom:739.465350px;}
.y198{bottom:741.205350px;}
.yc0{bottom:745.417350px;}
.yec{bottom:746.971350px;}
.y10a{bottom:750.811350px;}
.y62{bottom:753.223350px;}
.y1b7{bottom:758.421450px;}
.y87{bottom:760.489350px;}
.y16a{bottom:761.965350px;}
.y10{bottom:762.097950px;}
.y25{bottom:762.187950px;}
.y126{bottom:763.417350px;}
.yb1{bottom:769.489350px;}
.y3d{bottom:770.156700px;}
.yeb{bottom:770.965350px;}
.y61{bottom:777.217350px;}
.y197{bottom:780.211350px;}
.y1b6{bottom:782.415450px;}
.y86{bottom:784.483350px;}
.yf{bottom:786.091950px;}
.y24{bottom:786.181950px;}
.y109{bottom:789.817350px;}
.y3c{bottom:794.150700px;}
.y125{bottom:794.917350px;}
.yea{bottom:794.959350px;}
.y189{bottom:799.495350px;}
.y169{bottom:800.971350px;}
.y196{bottom:804.205350px;}
.y85{bottom:808.477350px;}
.ye{bottom:810.085950px;}
.y23{bottom:810.175950px;}
.y60{bottom:816.217350px;}
.y149{bottom:817.459350px;}
.y3b{bottom:818.144700px;}
.ye9{bottom:818.953350px;}
.y1b5{bottom:821.421450px;}
.ybf{bottom:823.489350px;}
.y168{bottom:824.965350px;}
.y124{bottom:826.441350px;}
.y84{bottom:832.471350px;}
.yd{bottom:834.079950px;}
.y22{bottom:834.169950px;}
.y148{bottom:841.453350px;}
.y3a{bottom:842.138700px;}
.ye8{bottom:842.947350px;}
.y195{bottom:843.211350px;}
.y1b4{bottom:845.415450px;}
.yb0{bottom:847.483350px;}
.y167{bottom:848.959350px;}
.y83{bottom:856.465350px;}
.y123{bottom:857.941350px;}
.yc{bottom:858.073950px;}
.y21{bottom:858.163950px;}
.y108{bottom:865.447350px;}
.y39{bottom:866.132700px;}
.ye7{bottom:866.941350px;}
.y1b3{bottom:869.409450px;}
.yaf{bottom:871.477350px;}
.y166{bottom:872.953350px;}
.y82{bottom:880.459350px;}
.y122{bottom:881.935350px;}
.yb{bottom:882.067950px;}
.y20{bottom:882.157950px;}
.y194{bottom:882.217350px;}
.y107{bottom:889.441350px;}
.y38{bottom:890.126700px;}
.y5f{bottom:895.471350px;}
.y165{bottom:896.947350px;}
.y81{bottom:904.453350px;}
.ya{bottom:906.061950px;}
.y1f{bottom:906.151950px;}
.y193{bottom:906.211350px;}
.y1b2{bottom:908.415450px;}
.y106{bottom:913.435350px;}
.y37{bottom:914.120700px;}
.y5e{bottom:919.465350px;}
.y164{bottom:920.941350px;}
.y80{bottom:928.447350px;}
.y1b1{bottom:932.409450px;}
.y105{bottom:937.429350px;}
.y36{bottom:938.114700px;}
.y5d{bottom:943.459350px;}
.ye6{bottom:944.935350px;}
.y192{bottom:945.217350px;}
.y7f{bottom:952.441350px;}
.y9{bottom:954.067950px;}
.y1e{bottom:954.157950px;}
.y104{bottom:961.423350px;}
.y35{bottom:962.108700px;}
.y5c{bottom:967.453350px;}
.ye5{bottom:968.929350px;}
.y1b0{bottom:971.415450px;}
.y7e{bottom:976.435350px;}
.y191{bottom:984.217350px;}
.y34{bottom:986.102700px;}
.y5b{bottom:991.447350px;}
.y163{bottom:992.923350px;}
.y8{bottom:995.264550px;}
.y7d{bottom:1000.429350px;}
.y33{bottom:1010.096700px;}
.y1af{bottom:1010.421450px;}
.y5a{bottom:1015.441350px;}
.y162{bottom:1016.917350px;}
.y7{bottom:1018.664550px;}
.y7c{bottom:1024.423350px;}
.y121{bottom:1031.929350px;}
.y32{bottom:1034.090700px;}
.y1ae{bottom:1034.415450px;}
.y59{bottom:1039.435350px;}
.y161{bottom:1040.911350px;}
.y6{bottom:1042.064550px;}
.ye4{bottom:1055.923350px;}
.y31{bottom:1058.084700px;}
.y1ad{bottom:1058.409450px;}
.y58{bottom:1063.429350px;}
.y160{bottom:1079.917350px;}
.y5{bottom:1080.324900px;}
.y57{bottom:1087.423350px;}
.y30{bottom:1097.084700px;}
.y1ac{bottom:1097.415450px;}
.y56{bottom:1111.417350px;}
.y4{bottom:1111.824900px;}
.y1ab{bottom:1121.409450px;}
.y3{bottom:1154.834700px;}
.y2{bottom:1190.834700px;}
.y2f{bottom:1196.459700px;}
.ha{height:55.517578px;}
.h6{height:59.027344px;}
.h8{height:62.011432px;}
.hc{height:64.546875px;}
.hb{height:65.003906px;}
.h7{height:66.621094px;}
.h5{height:72.172852px;}
.h2{height:75.600000px;}
.h9{height:77.724609px;}
.h4{height:78.923658px;}
.h3{height:90.198411px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.437100px;}
.x7{left:63.469800px;}
.x3{left:77.539350px;}
.x9{left:99.000000px;}
.xa{left:185.364000px;}
.x8{left:236.844000px;}
.x5{left:461.466000px;}
.x6{left:754.326000px;}
.x4{left:765.846000px;}
.x1{left:816.519600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.290667pt;}
.ls0{letter-spacing:-14.112000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007019pt;}
.wsaf{word-spacing:-17.792000pt;}
.ws2e{word-spacing:-17.728000pt;}
.ws4f{word-spacing:-8.768000pt;}
.ws65{word-spacing:-8.576000pt;}
.ws26{word-spacing:-8.512000pt;}
.ws4c{word-spacing:-8.320000pt;}
.wsc3{word-spacing:-7.936000pt;}
.ws66{word-spacing:-7.872000pt;}
.wsd6{word-spacing:-7.552000pt;}
.wse1{word-spacing:-7.424000pt;}
.ws67{word-spacing:-7.168000pt;}
.ws21{word-spacing:-7.104000pt;}
.wsb8{word-spacing:-6.720000pt;}
.ws53{word-spacing:-6.464000pt;}
.wsbc{word-spacing:-6.336000pt;}
.ws36{word-spacing:-6.144000pt;}
.ws4e{word-spacing:-6.016000pt;}
.ws56{word-spacing:-5.760000pt;}
.ws17{word-spacing:-5.632000pt;}
.wsd{word-spacing:-5.504000pt;}
.wscd{word-spacing:-5.376000pt;}
.ws93{word-spacing:-5.248000pt;}
.wsba{word-spacing:-5.056000pt;}
.ws3e{word-spacing:-4.992000pt;}
.wsd5{word-spacing:-4.800000pt;}
.ws64{word-spacing:-4.544000pt;}
.ws83{word-spacing:-4.480000pt;}
.ws40{word-spacing:-4.320000pt;}
.ws2c{word-spacing:-3.904000pt;}
.ws62{word-spacing:-3.840000pt;}
.ws9b{word-spacing:-3.712000pt;}
.ws82{word-spacing:-3.584000pt;}
.ws33{word-spacing:-3.456000pt;}
.ws8a{word-spacing:-3.392000pt;}
.ws92{word-spacing:-3.264000pt;}
.wsda{word-spacing:-3.072000pt;}
.wsb7{word-spacing:-3.008000pt;}
.ws27{word-spacing:-2.944000pt;}
.ws55{word-spacing:-2.816000pt;}
.ws28{word-spacing:-2.688000pt;}
.ws8c{word-spacing:-2.624000pt;}
.ws51{word-spacing:-2.560000pt;}
.ws9f{word-spacing:-2.496000pt;}
.ws6b{word-spacing:-2.432000pt;}
.ws22{word-spacing:-2.304000pt;}
.ws2f{word-spacing:-2.240000pt;}
.ws5c{word-spacing:-2.176000pt;}
.ws8f{word-spacing:-2.048000pt;}
.ws7c{word-spacing:-1.984000pt;}
.wsce{word-spacing:-1.920000pt;}
.wsbb{word-spacing:-1.856000pt;}
.ws24{word-spacing:-1.792000pt;}
.ws50{word-spacing:-1.728000pt;}
.ws63{word-spacing:-1.664000pt;}
.ws74{word-spacing:-1.600000pt;}
.ws16{word-spacing:-1.472000pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws6a{word-spacing:-1.152000pt;}
.ws1d{word-spacing:-1.088000pt;}
.ws99{word-spacing:-1.024000pt;}
.wsb2{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.832000pt;}
.ws23{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.512000pt;}
.wsc4{word-spacing:-0.448000pt;}
.wse4{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.192000pt;}
.wsb9{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.064000pt;}
.wsc0{word-spacing:0.128000pt;}
.ws97{word-spacing:0.256000pt;}
.ws95{word-spacing:0.320000pt;}
.wscc{word-spacing:0.384000pt;}
.wscf{word-spacing:0.448000pt;}
.ws44{word-spacing:0.480000pt;}
.ws57{word-spacing:0.512000pt;}
.ws69{word-spacing:0.576000pt;}
.wsac{word-spacing:0.640000pt;}
.ws35{word-spacing:0.704000pt;}
.ws5e{word-spacing:0.768000pt;}
.wsa5{word-spacing:0.832000pt;}
.ws8e{word-spacing:0.896000pt;}
.ws1e{word-spacing:1.088000pt;}
.ws52{word-spacing:1.216000pt;}
.ws29{word-spacing:1.280000pt;}
.wsd3{word-spacing:1.344000pt;}
.ws91{word-spacing:1.408000pt;}
.ws7a{word-spacing:1.472000pt;}
.wsbe{word-spacing:1.536000pt;}
.ws76{word-spacing:1.600000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws73{word-spacing:1.792000pt;}
.ws60{word-spacing:1.856000pt;}
.ws88{word-spacing:2.048000pt;}
.wsb4{word-spacing:2.112000pt;}
.wse7{word-spacing:2.176000pt;}
.ws7d{word-spacing:2.240000pt;}
.wsa9{word-spacing:2.304000pt;}
.ws3d{word-spacing:2.368000pt;}
.wsaa{word-spacing:2.496000pt;}
.ws9c{word-spacing:2.560000pt;}
.wsd9{word-spacing:2.624000pt;}
.ws98{word-spacing:2.688000pt;}
.wsa2{word-spacing:2.752000pt;}
.ws1b{word-spacing:2.816000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws94{word-spacing:3.072000pt;}
.wsde{word-spacing:3.136000pt;}
.ws6e{word-spacing:3.200000pt;}
.ws89{word-spacing:3.328000pt;}
.ws77{word-spacing:3.392000pt;}
.ws7b{word-spacing:3.456000pt;}
.ws19{word-spacing:3.520000pt;}
.wsd8{word-spacing:3.648000pt;}
.ws47{word-spacing:3.712000pt;}
.ws6c{word-spacing:3.776000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws45{word-spacing:3.904000pt;}
.ws5f{word-spacing:3.968000pt;}
.ws5b{word-spacing:4.032000pt;}
.wsa7{word-spacing:4.096000pt;}
.wsca{word-spacing:4.160000pt;}
.ws13{word-spacing:4.224000pt;}
.wsb5{word-spacing:4.416000pt;}
.wscb{word-spacing:4.672000pt;}
.ws7e{word-spacing:4.736000pt;}
.ws1c{word-spacing:4.800000pt;}
.wsd4{word-spacing:4.864000pt;}
.ws3f{word-spacing:4.928000pt;}
.wsb0{word-spacing:5.056000pt;}
.wsb6{word-spacing:5.120000pt;}
.ws6f{word-spacing:5.184000pt;}
.ws8b{word-spacing:5.248000pt;}
.ws3c{word-spacing:5.312000pt;}
.ws3b{word-spacing:5.376000pt;}
.ws42{word-spacing:5.386667pt;}
.ws85{word-spacing:5.440000pt;}
.wsc9{word-spacing:5.568000pt;}
.ws20{word-spacing:5.632000pt;}
.ws37{word-spacing:5.760000pt;}
.ws84{word-spacing:5.824000pt;}
.wse6{word-spacing:6.080000pt;}
.ws30{word-spacing:6.144000pt;}
.wsdb{word-spacing:6.208000pt;}
.ws54{word-spacing:6.272000pt;}
.ws46{word-spacing:6.464000pt;}
.ws25{word-spacing:6.528000pt;}
.wse2{word-spacing:6.592000pt;}
.ws58{word-spacing:6.656000pt;}
.wsc7{word-spacing:6.784000pt;}
.wse8{word-spacing:6.848000pt;}
.ws96{word-spacing:7.040000pt;}
.ws2d{word-spacing:7.296000pt;}
.ws5d{word-spacing:7.360000pt;}
.ws90{word-spacing:7.424000pt;}
.ws81{word-spacing:7.552000pt;}
.wsd2{word-spacing:7.744000pt;}
.ws39{word-spacing:7.872000pt;}
.ws72{word-spacing:8.000000pt;}
.ws43{word-spacing:8.266667pt;}
.ws7f{word-spacing:8.320000pt;}
.wsdc{word-spacing:8.384000pt;}
.wsbd{word-spacing:8.448000pt;}
.ws9e{word-spacing:8.512000pt;}
.wsa3{word-spacing:8.576000pt;}
.wsc5{word-spacing:8.640000pt;}
.wsb1{word-spacing:8.704000pt;}
.ws9d{word-spacing:8.960000pt;}
.ws70{word-spacing:9.024000pt;}
.ws32{word-spacing:9.152000pt;}
.wsc1{word-spacing:9.216000pt;}
.ws6{word-spacing:9.344000pt;}
.ws78{word-spacing:9.472000pt;}
.ws4b{word-spacing:9.536000pt;}
.ws75{word-spacing:9.728000pt;}
.ws59{word-spacing:9.984000pt;}
.wsa8{word-spacing:10.048000pt;}
.wsa1{word-spacing:10.432000pt;}
.ws4a{word-spacing:10.560000pt;}
.ws5a{word-spacing:10.624000pt;}
.wsab{word-spacing:10.752000pt;}
.ws12{word-spacing:10.816000pt;}
.ws9a{word-spacing:10.880000pt;}
.ws38{word-spacing:11.008000pt;}
.wsbf{word-spacing:11.136000pt;}
.ws79{word-spacing:11.328000pt;}
.ws41{word-spacing:11.360000pt;}
.wsdd{word-spacing:11.648000pt;}
.wsd0{word-spacing:11.968000pt;}
.wsa0{word-spacing:12.288000pt;}
.wsa6{word-spacing:12.416000pt;}
.ws34{word-spacing:12.544000pt;}
.ws4d{word-spacing:12.736000pt;}
.wsd7{word-spacing:12.800000pt;}
.ws31{word-spacing:13.184000pt;}
.ws49{word-spacing:13.248000pt;}
.wsad{word-spacing:13.440000pt;}
.ws48{word-spacing:13.504000pt;}
.ws71{word-spacing:13.760000pt;}
.wsd1{word-spacing:13.952000pt;}
.ws0{word-spacing:14.112000pt;}
.ws8d{word-spacing:14.272000pt;}
.wsb3{word-spacing:14.400000pt;}
.ws5{word-spacing:16.256000pt;}
.wse0{word-spacing:16.576000pt;}
.ws2{word-spacing:17.152000pt;}
.ws4{word-spacing:17.344000pt;}
.wsc2{word-spacing:17.600000pt;}
.ws86{word-spacing:17.920000pt;}
.ws68{word-spacing:17.984000pt;}
.wsc6{word-spacing:18.816000pt;}
.ws7{word-spacing:19.328000pt;}
.wse3{word-spacing:19.584000pt;}
.wsb{word-spacing:20.096000pt;}
.ws9{word-spacing:20.224000pt;}
.wse{word-spacing:21.696000pt;}
.wse5{word-spacing:23.360000pt;}
.ws10{word-spacing:24.896000pt;}
.ws3{word-spacing:28.096000pt;}
.ws87{word-spacing:28.160000pt;}
.ws80{word-spacing:28.224000pt;}
.wsa{word-spacing:28.352000pt;}
.wsae{word-spacing:28.608000pt;}
.wsdf{word-spacing:29.504000pt;}
.wsc{word-spacing:33.088000pt;}
.wsc8{word-spacing:34.752000pt;}
.ws11{word-spacing:38.336000pt;}
.wsf{word-spacing:51.584000pt;}
.ws14{word-spacing:56.384000pt;}
.ws8{word-spacing:80.640000pt;}
._14{margin-left:-15.475200pt;}
._13{margin-left:-14.502400pt;}
._19{margin-left:-8.192000pt;}
._16{margin-left:-6.419200pt;}
._c{margin-left:-5.126400pt;}
._4{margin-left:-3.641600pt;}
._3{margin-left:-2.630400pt;}
._5{margin-left:-0.960000pt;}
._6{width:0.940800pt;}
._b{width:2.124800pt;}
._2{width:3.084800pt;}
._8{width:4.300800pt;}
._a{width:5.248000pt;}
._7{width:6.809600pt;}
._10{width:8.582400pt;}
._e{width:9.472000pt;}
._f{width:10.681600pt;}
._1{width:12.473600pt;}
._9{width:13.555200pt;}
._0{width:15.155200pt;}
._d{width:16.755200pt;}
._18{width:21.920000pt;}
._11{width:22.873600pt;}
._17{width:25.382400pt;}
._15{width:28.908800pt;}
._12{width:32.876800pt;}
.fs7{font-size:37.312000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:59.571698pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:75.818541pt;}
.fs1{font-size:86.649708pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:43.218933pt;}
.y7b{bottom:128.493867pt;}
.yd5{bottom:134.593333pt;}
.y188{bottom:137.430533pt;}
.y13e{bottom:140.033200pt;}
.ybe{bottom:141.286533pt;}
.y180{bottom:144.481200pt;}
.y55{bottom:146.023733pt;}
.y103{bottom:146.742533pt;}
.y9f{bottom:150.774533pt;}
.y1aa{bottom:154.849200pt;}
.y15f{bottom:155.974533pt;}
.y187{bottom:158.758533pt;}
.y7a{bottom:160.493867pt;}
.y190{bottom:161.281200pt;}
.y13d{bottom:161.361200pt;}
.ybd{bottom:162.614533pt;}
.y17f{bottom:165.809200pt;}
.y54{bottom:167.351733pt;}
.y102{bottom:168.070533pt;}
.yae{bottom:169.302533pt;}
.y9e{bottom:172.102533pt;}
.ye3{bottom:175.931867pt;}
.yd4{bottom:175.985200pt;}
.y1a9{bottom:176.177200pt;}
.y79{bottom:176.493867pt;}
.y15e{bottom:177.302533pt;}
.y186{bottom:180.086533pt;}
.y18f{bottom:182.609200pt;}
.y13c{bottom:182.689200pt;}
.y1c9{bottom:183.496400pt;}
.ybc{bottom:183.942533pt;}
.y120{bottom:184.827867pt;}
.y17e{bottom:187.137200pt;}
.y53{bottom:188.679733pt;}
.yad{bottom:190.630533pt;}
.y78{bottom:192.493867pt;}
.y9d{bottom:193.430533pt;}
.y185{bottom:201.414533pt;}
.y147{bottom:202.726533pt;}
.y101{bottom:202.742533pt;}
.ye2{bottom:203.931867pt;}
.y18e{bottom:203.937200pt;}
.yd3{bottom:203.985200pt;}
.y13b{bottom:204.017200pt;}
.y1c8{bottom:204.824400pt;}
.ybb{bottom:205.270533pt;}
.y15d{bottom:205.302533pt;}
.y11f{bottom:206.155867pt;}
.y17d{bottom:208.465200pt;}
.y77{bottom:208.493867pt;}
.y52{bottom:210.007733pt;}
.y1a8{bottom:210.849200pt;}
.yac{bottom:211.958533pt;}
.y9c{bottom:214.758533pt;}
.y184{bottom:222.742533pt;}
.y100{bottom:224.070533pt;}
.ye1{bottom:225.259867pt;}
.yd2{bottom:225.313200pt;}
.y13a{bottom:225.345200pt;}
.yba{bottom:226.598533pt;}
.y15c{bottom:226.630533pt;}
.y17c{bottom:229.793200pt;}
.y146{bottom:230.726533pt;}
.y51{bottom:231.335733pt;}
.y1a7{bottom:232.177200pt;}
.yab{bottom:233.286533pt;}
.y9b{bottom:236.086533pt;}
.y18d{bottom:238.609200pt;}
.y1c7{bottom:239.496400pt;}
.y76{bottom:240.493867pt;}
.y11e{bottom:240.827867pt;}
.y183{bottom:244.070533pt;}
.yff{bottom:245.398533pt;}
.y145{bottom:252.054533pt;}
.y50{bottom:252.663733pt;}
.ye0{bottom:253.259867pt;}
.yd1{bottom:253.313200pt;}
.yaa{bottom:254.614533pt;}
.y15b{bottom:254.630533pt;}
.y75{bottom:256.493867pt;}
.y9a{bottom:257.414533pt;}
.y18c{bottom:259.937200pt;}
.y139{bottom:260.017200pt;}
.y1c6{bottom:260.824400pt;}
.yb9{bottom:261.270533pt;}
.y11d{bottom:262.155867pt;}
.y17b{bottom:264.459867pt;}
.yfe{bottom:266.726533pt;}
.y1a6{bottom:266.849200pt;}
.y74{bottom:272.493867pt;}
.y4f{bottom:273.991733pt;}
.ya9{bottom:275.942533pt;}
.y99{bottom:278.742533pt;}
.ydf{bottom:281.259867pt;}
.y18b{bottom:281.265200pt;}
.yd0{bottom:281.313200pt;}
.y138{bottom:281.345200pt;}
.yb8{bottom:282.598533pt;}
.y15a{bottom:282.630533pt;}
.y11c{bottom:283.483867pt;}
.y144{bottom:286.726533pt;}
.y1a5{bottom:288.177200pt;}
.y73{bottom:288.493867pt;}
.y4e{bottom:295.319733pt;}
.y1c5{bottom:295.496400pt;}
.ya8{bottom:297.270533pt;}
.y98{bottom:300.070533pt;}
.yfd{bottom:301.398533pt;}
.yde{bottom:302.593200pt;}
.y137{bottom:302.673200pt;}
.y159{bottom:303.958533pt;}
.y11b{bottom:304.811867pt;}
.y143{bottom:308.054533pt;}
.ycf{bottom:309.313200pt;}
.yb7{bottom:310.598533pt;}
.y4d{bottom:316.647733pt;}
.y1c4{bottom:316.824400pt;}
.ya7{bottom:318.598533pt;}
.y97{bottom:321.398533pt;}
.yfc{bottom:322.726533pt;}
.y1d{bottom:322.812400pt;}
.y1a4{bottom:322.849200pt;}
.y136{bottom:324.001200pt;}
.y11a{bottom:326.139867pt;}
.y72{bottom:328.235867pt;}
.y142{bottom:329.382533pt;}
.yce{bottom:330.641200pt;}
.yb6{bottom:331.926533pt;}
.y158{bottom:331.958533pt;}
.y17a{bottom:336.054533pt;}
.ydd{bottom:337.366533pt;}
.y1c3{bottom:338.152400pt;}
.ya6{bottom:339.926533pt;}
.y96{bottom:342.726533pt;}
.yfb{bottom:344.054533pt;}
.y1c{bottom:344.140400pt;}
.y1a3{bottom:344.177200pt;}
.y135{bottom:345.329200pt;}
.y2e{bottom:346.876400pt;}
.y119{bottom:347.467867pt;}
.y71{bottom:349.563867pt;}
.y141{bottom:350.710533pt;}
.y4c{bottom:351.319733pt;}
.y179{bottom:357.382533pt;}
.ycd{bottom:358.641200pt;}
.ydc{bottom:358.694533pt;}
.y1c2{bottom:359.480400pt;}
.yb5{bottom:359.926533pt;}
.ya5{bottom:361.254533pt;}
.y95{bottom:364.054533pt;}
.yfa{bottom:365.382533pt;}
.y1b{bottom:365.468400pt;}
.y157{bottom:366.630533pt;}
.y134{bottom:366.657200pt;}
.y2d{bottom:368.204400pt;}
.y118{bottom:368.795867pt;}
.y70{bottom:370.891867pt;}
.y140{bottom:372.038533pt;}
.y4b{bottom:372.647733pt;}
.y178{bottom:378.710533pt;}
.y1a2{bottom:378.849200pt;}
.ydb{bottom:380.022533pt;}
.y94{bottom:385.382533pt;}
.yf9{bottom:386.710533pt;}
.yb4{bottom:387.926533pt;}
.y156{bottom:387.958533pt;}
.y133{bottom:387.985200pt;}
.y117{bottom:390.123867pt;}
.y6f{bottom:392.219867pt;}
.ycc{bottom:393.313200pt;}
.y13f{bottom:393.366533pt;}
.y4a{bottom:393.975733pt;}
.y1c1{bottom:394.152400pt;}
.ya4{bottom:395.926533pt;}
.y177{bottom:400.038533pt;}
.y93{bottom:406.710533pt;}
.yf8{bottom:408.038533pt;}
.y1a{bottom:408.140400pt;}
.yb3{bottom:409.254533pt;}
.y155{bottom:409.286533pt;}
.y132{bottom:409.313200pt;}
.y116{bottom:411.451867pt;}
.y1a1{bottom:413.521200pt;}
.y6e{bottom:413.547867pt;}
.ycb{bottom:414.641200pt;}
.yda{bottom:414.694533pt;}
.y49{bottom:415.303733pt;}
.y1c0{bottom:415.480400pt;}
.y176{bottom:421.366533pt;}
.y2c{bottom:424.204400pt;}
.y92{bottom:428.038533pt;}
.yf7{bottom:429.366533pt;}
.y154{bottom:430.614533pt;}
.y131{bottom:430.641200pt;}
.y115{bottom:432.779867pt;}
.y6d{bottom:434.875867pt;}
.yca{bottom:435.969200pt;}
.yd9{bottom:436.022533pt;}
.y48{bottom:436.631733pt;}
.y1bf{bottom:436.808400pt;}
.y175{bottom:442.694533pt;}
.yb2{bottom:443.926533pt;}
.y1a0{bottom:448.193200pt;}
.y91{bottom:449.366533pt;}
.yf6{bottom:450.694533pt;}
.y130{bottom:451.969200pt;}
.y114{bottom:454.107867pt;}
.y6c{bottom:456.203867pt;}
.yc9{bottom:457.297200pt;}
.yd8{bottom:457.350533pt;}
.y47{bottom:457.959733pt;}
.y174{bottom:464.022533pt;}
.ya3{bottom:465.259867pt;}
.y153{bottom:465.286533pt;}
.y19f{bottom:469.521200pt;}
.y90{bottom:470.694533pt;}
.y1be{bottom:471.480400pt;}
.yf5{bottom:472.022533pt;}
.y12f{bottom:473.297200pt;}
.y113{bottom:475.435867pt;}
.y6b{bottom:477.531867pt;}
.yc8{bottom:478.625200pt;}
.yd7{bottom:478.678533pt;}
.y46{bottom:479.287733pt;}
.y173{bottom:485.350533pt;}
.y19{bottom:485.468400pt;}
.y152{bottom:486.614533pt;}
.y19e{bottom:490.849200pt;}
.y8f{bottom:492.022533pt;}
.y1bd{bottom:492.808400pt;}
.yf4{bottom:493.350533pt;}
.y12e{bottom:494.625200pt;}
.y112{bottom:496.763867pt;}
.y6a{bottom:498.902533pt;}
.yc7{bottom:499.953200pt;}
.y45{bottom:500.615733pt;}
.y172{bottom:506.678533pt;}
.y18{bottom:506.796400pt;}
.y151{bottom:507.942533pt;}
.y8e{bottom:513.350533pt;}
.yf3{bottom:514.678533pt;}
.y12d{bottom:515.953200pt;}
.y111{bottom:518.091867pt;}
.y69{bottom:520.230533pt;}
.yc6{bottom:521.281200pt;}
.y44{bottom:521.943733pt;}
.y19d{bottom:525.521200pt;}
.y1bc{bottom:527.480400pt;}
.y171{bottom:528.006533pt;}
.y17{bottom:528.124400pt;}
.y150{bottom:529.270533pt;}
.y8d{bottom:534.678533pt;}
.yf2{bottom:536.006533pt;}
.y12c{bottom:537.281200pt;}
.y110{bottom:539.419867pt;}
.y68{bottom:541.558533pt;}
.yc5{bottom:542.609200pt;}
.y43{bottom:543.271733pt;}
.y19c{bottom:546.849200pt;}
.y182{bottom:548.022533pt;}
.y1bb{bottom:548.808400pt;}
.y170{bottom:549.334533pt;}
.y16{bottom:549.452400pt;}
.y2b{bottom:549.532400pt;}
.y14f{bottom:550.598533pt;}
.y8c{bottom:556.006533pt;}
.yf1{bottom:557.334533pt;}
.y12b{bottom:558.609200pt;}
.y10f{bottom:560.747867pt;}
.y67{bottom:562.886533pt;}
.yc4{bottom:563.937200pt;}
.y42{bottom:564.599733pt;}
.y181{bottom:569.350533pt;}
.y16f{bottom:570.662533pt;}
.y15{bottom:570.780400pt;}
.y2a{bottom:570.860400pt;}
.y14e{bottom:571.926533pt;}
.ya2{bottom:577.334533pt;}
.yf0{bottom:578.662533pt;}
.y12a{bottom:579.937200pt;}
.y19b{bottom:581.521200pt;}
.y10e{bottom:582.075867pt;}
.y1ba{bottom:583.480400pt;}
.y66{bottom:584.214533pt;}
.yc3{bottom:585.265200pt;}
.y41{bottom:585.927733pt;}
.y8b{bottom:590.678533pt;}
.y16e{bottom:591.990533pt;}
.y14{bottom:592.108400pt;}
.y29{bottom:592.188400pt;}
.y14d{bottom:593.254533pt;}
.ya1{bottom:598.662533pt;}
.yef{bottom:599.990533pt;}
.y129{bottom:601.265200pt;}
.y19a{bottom:602.849200pt;}
.y10d{bottom:603.403867pt;}
.y1b9{bottom:604.808400pt;}
.y65{bottom:605.542533pt;}
.yc2{bottom:606.593200pt;}
.y40{bottom:607.255733pt;}
.y8a{bottom:612.006533pt;}
.y16d{bottom:613.318533pt;}
.y13{bottom:613.436400pt;}
.y28{bottom:613.516400pt;}
.ya0{bottom:619.990533pt;}
.yee{bottom:621.318533pt;}
.y128{bottom:622.593200pt;}
.y199{bottom:624.177200pt;}
.y10c{bottom:624.731867pt;}
.y64{bottom:626.870533pt;}
.yc1{bottom:627.921200pt;}
.y14c{bottom:627.926533pt;}
.y3f{bottom:628.583733pt;}
.y89{bottom:633.334533pt;}
.y16c{bottom:634.646533pt;}
.y12{bottom:634.764400pt;}
.y27{bottom:634.844400pt;}
.y14b{bottom:635.974533pt;}
.y1b8{bottom:639.480400pt;}
.yd6{bottom:641.318533pt;}
.y18a{bottom:641.334533pt;}
.yed{bottom:642.646533pt;}
.y10b{bottom:646.059867pt;}
.y63{bottom:648.198533pt;}
.y3e{bottom:649.911733pt;}
.y88{bottom:654.662533pt;}
.y16b{bottom:655.974533pt;}
.y11{bottom:656.092400pt;}
.y26{bottom:656.172400pt;}
.y127{bottom:657.265200pt;}
.y14a{bottom:657.302533pt;}
.y198{bottom:658.849200pt;}
.yc0{bottom:662.593200pt;}
.yec{bottom:663.974533pt;}
.y10a{bottom:667.387867pt;}
.y62{bottom:669.531867pt;}
.y1b7{bottom:674.152400pt;}
.y87{bottom:675.990533pt;}
.y16a{bottom:677.302533pt;}
.y10{bottom:677.420400pt;}
.y25{bottom:677.500400pt;}
.y126{bottom:678.593200pt;}
.yb1{bottom:683.990533pt;}
.y3d{bottom:684.583733pt;}
.yeb{bottom:685.302533pt;}
.y61{bottom:690.859867pt;}
.y197{bottom:693.521200pt;}
.y1b6{bottom:695.480400pt;}
.y86{bottom:697.318533pt;}
.yf{bottom:698.748400pt;}
.y24{bottom:698.828400pt;}
.y109{bottom:702.059867pt;}
.y3c{bottom:705.911733pt;}
.y125{bottom:706.593200pt;}
.yea{bottom:706.630533pt;}
.y189{bottom:710.662533pt;}
.y169{bottom:711.974533pt;}
.y196{bottom:714.849200pt;}
.y85{bottom:718.646533pt;}
.ye{bottom:720.076400pt;}
.y23{bottom:720.156400pt;}
.y60{bottom:725.526533pt;}
.y149{bottom:726.630533pt;}
.y3b{bottom:727.239733pt;}
.ye9{bottom:727.958533pt;}
.y1b5{bottom:730.152400pt;}
.ybf{bottom:731.990533pt;}
.y168{bottom:733.302533pt;}
.y124{bottom:734.614533pt;}
.y84{bottom:739.974533pt;}
.yd{bottom:741.404400pt;}
.y22{bottom:741.484400pt;}
.y148{bottom:747.958533pt;}
.y3a{bottom:748.567733pt;}
.ye8{bottom:749.286533pt;}
.y195{bottom:749.521200pt;}
.y1b4{bottom:751.480400pt;}
.yb0{bottom:753.318533pt;}
.y167{bottom:754.630533pt;}
.y83{bottom:761.302533pt;}
.y123{bottom:762.614533pt;}
.yc{bottom:762.732400pt;}
.y21{bottom:762.812400pt;}
.y108{bottom:769.286533pt;}
.y39{bottom:769.895733pt;}
.ye7{bottom:770.614533pt;}
.y1b3{bottom:772.808400pt;}
.yaf{bottom:774.646533pt;}
.y166{bottom:775.958533pt;}
.y82{bottom:782.630533pt;}
.y122{bottom:783.942533pt;}
.yb{bottom:784.060400pt;}
.y20{bottom:784.140400pt;}
.y194{bottom:784.193200pt;}
.y107{bottom:790.614533pt;}
.y38{bottom:791.223733pt;}
.y5f{bottom:795.974533pt;}
.y165{bottom:797.286533pt;}
.y81{bottom:803.958533pt;}
.ya{bottom:805.388400pt;}
.y1f{bottom:805.468400pt;}
.y193{bottom:805.521200pt;}
.y1b2{bottom:807.480400pt;}
.y106{bottom:811.942533pt;}
.y37{bottom:812.551733pt;}
.y5e{bottom:817.302533pt;}
.y164{bottom:818.614533pt;}
.y80{bottom:825.286533pt;}
.y1b1{bottom:828.808400pt;}
.y105{bottom:833.270533pt;}
.y36{bottom:833.879733pt;}
.y5d{bottom:838.630533pt;}
.ye6{bottom:839.942533pt;}
.y192{bottom:840.193200pt;}
.y7f{bottom:846.614533pt;}
.y9{bottom:848.060400pt;}
.y1e{bottom:848.140400pt;}
.y104{bottom:854.598533pt;}
.y35{bottom:855.207733pt;}
.y5c{bottom:859.958533pt;}
.ye5{bottom:861.270533pt;}
.y1b0{bottom:863.480400pt;}
.y7e{bottom:867.942533pt;}
.y191{bottom:874.859867pt;}
.y34{bottom:876.535733pt;}
.y5b{bottom:881.286533pt;}
.y163{bottom:882.598533pt;}
.y8{bottom:884.679600pt;}
.y7d{bottom:889.270533pt;}
.y33{bottom:897.863733pt;}
.y1af{bottom:898.152400pt;}
.y5a{bottom:902.614533pt;}
.y162{bottom:903.926533pt;}
.y7{bottom:905.479600pt;}
.y7c{bottom:910.598533pt;}
.y121{bottom:917.270533pt;}
.y32{bottom:919.191733pt;}
.y1ae{bottom:919.480400pt;}
.y59{bottom:923.942533pt;}
.y161{bottom:925.254533pt;}
.y6{bottom:926.279600pt;}
.ye4{bottom:938.598533pt;}
.y31{bottom:940.519733pt;}
.y1ad{bottom:940.808400pt;}
.y58{bottom:945.270533pt;}
.y160{bottom:959.926533pt;}
.y5{bottom:960.288800pt;}
.y57{bottom:966.598533pt;}
.y30{bottom:975.186400pt;}
.y1ac{bottom:975.480400pt;}
.y56{bottom:987.926533pt;}
.y4{bottom:988.288800pt;}
.y1ab{bottom:996.808400pt;}
.y3{bottom:1026.519733pt;}
.y2{bottom:1058.519733pt;}
.y2f{bottom:1063.519733pt;}
.ha{height:49.348958pt;}
.h6{height:52.468750pt;}
.h8{height:55.121273pt;}
.hc{height:57.375000pt;}
.hb{height:57.781250pt;}
.h7{height:59.218750pt;}
.h5{height:64.153646pt;}
.h2{height:67.200000pt;}
.h9{height:69.088542pt;}
.h4{height:70.154363pt;}
.h3{height:80.176366pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.388533pt;}
.x7{left:56.417600pt;}
.x3{left:68.923867pt;}
.x9{left:88.000000pt;}
.xa{left:164.768000pt;}
.x8{left:210.528000pt;}
.x5{left:410.192000pt;}
.x6{left:670.512000pt;}
.x4{left:680.752000pt;}
.x1{left:725.795200pt;}
}

