
    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_01d74b38f43d0836fb6701bf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.021000;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_62c1afb0fbacb583218471a8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.102000;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_0984f1642da29a12d29cfc6f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.263000;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_35c8da4bb21e05f26331eab1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_5c209af9ce629c1ad427a6a8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.246922,0.000000,-0.039110,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039110,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039110,0.246922,0,0);}
.m4{transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);}
.m5{transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039109,0.246922,0,0);}
.m1{transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);-ms-transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);-webkit-transform:matrix(0.246922,0.000000,-0.039108,0.246922,0,0);}
.m3{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.740200px;}
.ls1b{letter-spacing:-1.063089px;}
.ls1a{letter-spacing:-1.050000px;}
.ls18{letter-spacing:-0.798000px;}
.ls15{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.510283px;}
.ls23{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.462000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.336000px;}
.ls11{letter-spacing:-0.328039px;}
.ls10{letter-spacing:-0.324000px;}
.ls19{letter-spacing:-0.255141px;}
.ls1e{letter-spacing:-0.252000px;}
.ls20{letter-spacing:-0.168000px;}
.lsf{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.972000px;}
.ls13{letter-spacing:1.134000px;}
.lsb{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.761688px;}
.ls7{letter-spacing:1.860000px;}
.ls8{letter-spacing:2.521036px;}
.ls0{letter-spacing:2.739000px;}
.ls21{letter-spacing:2.891601px;}
.ls5{letter-spacing:5.166000px;}
.lsa{letter-spacing:5.754000px;}
.lsd{letter-spacing:15.436200px;}
.ls4{letter-spacing:16.019520px;}
.ls1c{letter-spacing:16.414088px;}
.ls2{letter-spacing:17.511600px;}
.ls9{letter-spacing:17.777760px;}
.lsc{letter-spacing:21.121200px;}
.lse{letter-spacing:25.752600px;}
.ls12{letter-spacing:26.695200px;}
.ls3{letter-spacing:132.063360px;}
.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;}
}
.ws1d{word-spacing:-17.777760px;}
.ws21{word-spacing:-16.632000px;}
.ws1e{word-spacing:-16.019520px;}
.ws7e{word-spacing:-15.984000px;}
.wsc5{word-spacing:-12.289304px;}
.ws1f{word-spacing:-5.166000px;}
.wsc7{word-spacing:-3.912166px;}
.wscc{word-spacing:-2.891601px;}
.ws6{word-spacing:-2.521036px;}
.ws90{word-spacing:-2.430000px;}
.ws65{word-spacing:-2.322000px;}
.wsac{word-spacing:-2.268000px;}
.ws85{word-spacing:-2.214000px;}
.ws79{word-spacing:-2.160000px;}
.ws73{word-spacing:-2.106000px;}
.ws86{word-spacing:-1.944000px;}
.wsa{word-spacing:-1.890000px;}
.ws4{word-spacing:-1.860000px;}
.ws2b{word-spacing:-1.858887px;}
.ws2a{word-spacing:-1.836000px;}
.ws5{word-spacing:-1.761688px;}
.ws46{word-spacing:-1.728000px;}
.wsb5{word-spacing:-1.620000px;}
.ws95{word-spacing:-1.566000px;}
.ws1c{word-spacing:-1.512000px;}
.wsb9{word-spacing:-1.458000px;}
.wsb6{word-spacing:-1.350000px;}
.wsaf{word-spacing:-1.296000px;}
.ws97{word-spacing:-1.242000px;}
.ws48{word-spacing:-1.202809px;}
.ws47{word-spacing:-1.188000px;}
.wse{word-spacing:-1.134000px;}
.wsf{word-spacing:-0.810000px;}
.ws87{word-spacing:-0.756000px;}
.ws35{word-spacing:-0.702000px;}
.ws22{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.486000px;}
.ws3a{word-spacing:-0.437385px;}
.wsbf{word-spacing:-0.432000px;}
.wsb8{word-spacing:-0.378000px;}
.ws9{word-spacing:-0.324000px;}
.ws24{word-spacing:-0.270000px;}
.ws0{word-spacing:-0.230400px;}
.ws8b{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.108000px;}
.ws50{word-spacing:0.162000px;}
.wscb{word-spacing:0.252000px;}
.wscd{word-spacing:0.255141px;}
.ws9c{word-spacing:0.378000px;}
.ws94{word-spacing:0.432000px;}
.ws18{word-spacing:0.486000px;}
.ws32{word-spacing:0.540000px;}
.ws5b{word-spacing:0.648000px;}
.ws7{word-spacing:0.702000px;}
.ws76{word-spacing:0.756000px;}
.ws25{word-spacing:0.810000px;}
.ws31{word-spacing:0.820097px;}
.ws14{word-spacing:0.864000px;}
.wsa8{word-spacing:0.972000px;}
.ws74{word-spacing:1.026000px;}
.ws93{word-spacing:1.080000px;}
.wsc6{word-spacing:1.134000px;}
.wsce{word-spacing:1.176000px;}
.wsad{word-spacing:1.188000px;}
.wsc8{word-spacing:1.218000px;}
.wsc9{word-spacing:1.233183px;}
.ws23{word-spacing:1.242000px;}
.wsc2{word-spacing:1.302000px;}
.wsc4{word-spacing:1.318230px;}
.wsca{word-spacing:1.344000px;}
.wsb1{word-spacing:1.350000px;}
.ws20{word-spacing:1.428000px;}
.wsc0{word-spacing:1.506549px;}
.ws66{word-spacing:1.512000px;}
.ws27{word-spacing:1.566000px;}
.wsc1{word-spacing:1.652344px;}
.ws17{word-spacing:1.674000px;}
.wsc3{word-spacing:1.764000px;}
.wsbb{word-spacing:1.836000px;}
.ws75{word-spacing:1.944000px;}
.ws9a{word-spacing:1.998000px;}
.ws6f{word-spacing:2.106000px;}
.ws8a{word-spacing:2.214000px;}
.ws59{word-spacing:2.430000px;}
.ws34{word-spacing:2.646000px;}
.ws51{word-spacing:2.700000px;}
.ws15{word-spacing:2.862000px;}
.wsba{word-spacing:3.186000px;}
.ws67{word-spacing:3.240000px;}
.ws62{word-spacing:3.294000px;}
.ws78{word-spacing:3.402000px;}
.ws8{word-spacing:3.510000px;}
.ws61{word-spacing:3.564000px;}
.ws4b{word-spacing:3.726000px;}
.ws49{word-spacing:3.780000px;}
.ws3c{word-spacing:3.834000px;}
.ws3b{word-spacing:3.888000px;}
.ws84{word-spacing:3.942000px;}
.ws7d{word-spacing:4.050000px;}
.ws2d{word-spacing:4.158000px;}
.ws53{word-spacing:4.212000px;}
.wsb7{word-spacing:4.266000px;}
.ws82{word-spacing:4.374000px;}
.wsaa{word-spacing:4.428000px;}
.ws43{word-spacing:4.482000px;}
.ws4a{word-spacing:4.590000px;}
.ws91{word-spacing:4.644000px;}
.wsbd{word-spacing:4.698000px;}
.ws30{word-spacing:4.914000px;}
.wsb4{word-spacing:4.968000px;}
.ws28{word-spacing:5.022000px;}
.ws71{word-spacing:5.076000px;}
.ws37{word-spacing:5.130000px;}
.ws10{word-spacing:5.292000px;}
.ws83{word-spacing:5.346000px;}
.ws5d{word-spacing:5.562000px;}
.ws3d{word-spacing:5.724000px;}
.ws3e{word-spacing:5.795354px;}
.wsa9{word-spacing:5.832000px;}
.ws19{word-spacing:5.886000px;}
.ws6c{word-spacing:5.994000px;}
.ws55{word-spacing:6.048000px;}
.wsbc{word-spacing:6.102000px;}
.ws7c{word-spacing:6.156000px;}
.ws80{word-spacing:6.360000px;}
.ws63{word-spacing:6.426000px;}
.wsc{word-spacing:6.480000px;}
.ws2f{word-spacing:6.534000px;}
.wsd{word-spacing:6.560779px;}
.ws5a{word-spacing:6.588000px;}
.ws40{word-spacing:6.750000px;}
.ws4d{word-spacing:6.804000px;}
.ws41{word-spacing:6.834144px;}
.ws6b{word-spacing:6.858000px;}
.wsab{word-spacing:6.966000px;}
.ws3f{word-spacing:7.128000px;}
.ws6e{word-spacing:7.182000px;}
.ws60{word-spacing:7.344000px;}
.ws42{word-spacing:7.398000px;}
.ws12{word-spacing:7.776000px;}
.wsa6{word-spacing:7.857600px;}
.ws26{word-spacing:7.884000px;}
.wsb0{word-spacing:7.938000px;}
.ws69{word-spacing:8.208000px;}
.wsbe{word-spacing:8.262000px;}
.ws7a{word-spacing:8.370000px;}
.ws4e{word-spacing:8.748000px;}
.wsb3{word-spacing:8.856000px;}
.ws16{word-spacing:9.018000px;}
.ws4f{word-spacing:9.126000px;}
.ws52{word-spacing:9.234000px;}
.ws5c{word-spacing:9.288000px;}
.wsb{word-spacing:9.450000px;}
.ws13{word-spacing:9.558000px;}
.wsa2{word-spacing:9.666000px;}
.ws5f{word-spacing:9.774000px;}
.ws89{word-spacing:9.882000px;}
.ws92{word-spacing:9.936000px;}
.ws64{word-spacing:10.044000px;}
.ws77{word-spacing:10.206000px;}
.ws98{word-spacing:10.260000px;}
.ws6d{word-spacing:10.692000px;}
.ws8e{word-spacing:10.800000px;}
.ws5e{word-spacing:10.854000px;}
.ws72{word-spacing:11.124000px;}
.ws9f{word-spacing:11.448000px;}
.ws4c{word-spacing:11.556000px;}
.ws38{word-spacing:11.826000px;}
.ws70{word-spacing:11.880000px;}
.ws8f{word-spacing:12.366000px;}
.ws9b{word-spacing:12.960000px;}
.ws81{word-spacing:13.176000px;}
.ws54{word-spacing:13.230000px;}
.ws11{word-spacing:13.608000px;}
.ws8d{word-spacing:13.932000px;}
.ws36{word-spacing:14.472000px;}
.wsa7{word-spacing:14.580000px;}
.ws6a{word-spacing:14.688000px;}
.ws96{word-spacing:15.012000px;}
.wsa4{word-spacing:15.228000px;}
.wsa5{word-spacing:15.261000px;}
.ws58{word-spacing:15.282000px;}
.ws29{word-spacing:15.714000px;}
.wsa3{word-spacing:15.930000px;}
.ws2c{word-spacing:16.308000px;}
.ws44{word-spacing:16.470000px;}
.wsb2{word-spacing:16.632000px;}
.ws45{word-spacing:16.675312px;}
.ws9d{word-spacing:16.740000px;}
.ws56{word-spacing:16.848000px;}
.ws9e{word-spacing:17.172000px;}
.wsae{word-spacing:17.280000px;}
.ws88{word-spacing:17.334000px;}
.ws7b{word-spacing:17.982000px;}
.ws99{word-spacing:18.630000px;}
.ws2e{word-spacing:19.008000px;}
.ws8c{word-spacing:20.088000px;}
.ws7f{word-spacing:20.335200px;}
.ws68{word-spacing:23.814000px;}
.ws57{word-spacing:23.976000px;}
.wsa0{word-spacing:24.840000px;}
.wsa1{word-spacing:25.149651px;}
.ws33{word-spacing:25.812000px;}
.ws1{word-spacing:28.131840px;}
.ws2{word-spacing:39.853440px;}
._9{margin-left:-7.560000px;}
._7{margin-left:-6.480000px;}
._5{margin-left:-5.400000px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-2.700000px;}
._6{margin-left:-1.080000px;}
._3{width:1.080000px;}
._0{width:2.521036px;}
._4{width:6.468000px;}
._8{width:16.632000px;}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.000000px;}
.fs2{font-size:30.000000px;}
.fs3{font-size:30.373933px;}
.fs1{font-size:33.000000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fsa{font-size:42.523544px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:48.598349px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:54.673154px;}
.fs7{font-size:195.360000px;}
.y0{bottom:0.000000px;}
.y22{bottom:46.340550px;}
.y3{bottom:46.340700px;}
.y2{bottom:56.562300px;}
.y155{bottom:84.286050px;}
.y1ba{bottom:84.779250px;}
.y1bb{bottom:84.780450px;}
.yef{bottom:85.516500px;}
.yd8{bottom:85.629300px;}
.yab{bottom:91.836900px;}
.y1a{bottom:91.847550px;}
.y57{bottom:91.854900px;}
.y7a{bottom:91.861050px;}
.y153{bottom:98.596350px;}
.y154{bottom:98.597550px;}
.y1b8{bottom:99.087150px;}
.y1b9{bottom:99.090750px;}
.yee{bottom:99.303000px;}
.yd7{bottom:111.307050px;}
.yaa{bottom:111.330900px;}
.y19{bottom:111.341550px;}
.y56{bottom:111.348900px;}
.y79{bottom:111.355050px;}
.y151{bottom:112.906650px;}
.y152{bottom:112.907850px;}
.yed{bottom:113.079000px;}
.yec{bottom:113.084250px;}
.y1b7{bottom:113.398650px;}
.yeb{bottom:126.860250px;}
.yea{bottom:126.870750px;}
.y150{bottom:127.218150px;}
.y1b6{bottom:127.710150px;}
.ya9{bottom:130.824900px;}
.y18{bottom:130.835550px;}
.y55{bottom:130.842900px;}
.y78{bottom:130.849050px;}
.ye9{bottom:140.646750px;}
.y14f{bottom:141.527400px;}
.y1b5{bottom:142.021650px;}
.yd6{bottom:150.313050px;}
.ya8{bottom:150.318900px;}
.y17{bottom:150.329550px;}
.y54{bottom:150.336900px;}
.y77{bottom:150.343050px;}
.ye8{bottom:154.422750px;}
.ye7{bottom:154.427850px;}
.y14d{bottom:155.835300px;}
.y14e{bottom:155.838900px;}
.y1b3{bottom:156.330750px;}
.y1b4{bottom:156.331950px;}
.ye6{bottom:168.203850px;}
.ya7{bottom:169.812900px;}
.y16{bottom:169.823550px;}
.y53{bottom:169.830900px;}
.y76{bottom:169.837050px;}
.yd5{bottom:169.855050px;}
.y14c{bottom:170.146800px;}
.y1b2{bottom:170.642250px;}
.ye5{bottom:181.985100px;}
.y14b{bottom:184.458300px;}
.y1b1{bottom:184.951500px;}
.ya6{bottom:189.306900px;}
.y52{bottom:189.324900px;}
.y75{bottom:189.331050px;}
.yd4{bottom:189.349050px;}
.ye4{bottom:195.818250px;}
.y14a{bottom:198.769800px;}
.y1af{bottom:199.261650px;}
.y1b0{bottom:199.263000px;}
.ya5{bottom:208.807050px;}
.y51{bottom:208.818900px;}
.y15{bottom:208.825050px;}
.yd3{bottom:208.843050px;}
.ya4{bottom:208.895550px;}
.ye3{bottom:209.594250px;}
.y148{bottom:213.078750px;}
.y149{bottom:213.080100px;}
.y1ad{bottom:213.570900px;}
.y1ae{bottom:213.573150px;}
.ye2{bottom:223.370250px;}
.y146{bottom:227.389200px;}
.y147{bottom:227.390250px;}
.y1ac{bottom:227.882400px;}
.y50{bottom:228.312900px;}
.y14{bottom:228.319050px;}
.yd2{bottom:228.337050px;}
.ya3{bottom:228.389550px;}
.ye1{bottom:237.146250px;}
.y145{bottom:241.700700px;}
.y1aa{bottom:242.192700px;}
.y1ab{bottom:242.193900px;}
.y13{bottom:247.813050px;}
.y4f{bottom:247.831050px;}
.ya2{bottom:247.883550px;}
.ye0{bottom:250.922250px;}
.y144{bottom:256.009800px;}
.y1a8{bottom:256.503000px;}
.y1a9{bottom:256.504200px;}
.ydf{bottom:264.698250px;}
.y74{bottom:267.307050px;}
.y4e{bottom:267.325050px;}
.y12{bottom:267.331050px;}
.ya1{bottom:267.377550px;}
.y143{bottom:270.321300px;}
.y1a7{bottom:270.814500px;}
.yde{bottom:278.474250px;}
.y142{bottom:284.630250px;}
.y1a6{bottom:285.123600px;}
.y4d{bottom:286.819050px;}
.y11{bottom:286.825050px;}
.ya0{bottom:286.871550px;}
.ydd{bottom:292.250250px;}
.y141{bottom:298.941750px;}
.y1a4{bottom:299.433900px;}
.y1a5{bottom:299.435100px;}
.ydc{bottom:306.026250px;}
.y4c{bottom:306.313050px;}
.y10{bottom:306.319050px;}
.y9f{bottom:306.365550px;}
.y73{bottom:306.377550px;}
.y140{bottom:313.248600px;}
.y1a2{bottom:313.743000px;}
.y1a3{bottom:313.745400px;}
.ydb{bottom:319.802250px;}
.y4b{bottom:325.807050px;}
.yf{bottom:325.813050px;}
.y9e{bottom:325.859550px;}
.y72{bottom:325.871550px;}
.y13f{bottom:327.560100px;}
.y1a1{bottom:328.054500px;}
.yd9{bottom:333.576300px;}
.yda{bottom:333.578250px;}
.y13e{bottom:341.871600px;}
.y1a0{bottom:342.366000px;}
.ye{bottom:345.307050px;}
.y9d{bottom:345.353550px;}
.y71{bottom:345.365550px;}
.y13d{bottom:356.183100px;}
.y19e{bottom:356.675100px;}
.y19f{bottom:356.676300px;}
.yd{bottom:364.825050px;}
.yd1{bottom:364.843050px;}
.y9c{bottom:364.847550px;}
.y70{bottom:364.859550px;}
.y13b{bottom:370.492350px;}
.y13c{bottom:370.493250px;}
.y19c{bottom:370.985550px;}
.y19d{bottom:370.986600px;}
.yc{bottom:384.319050px;}
.yd0{bottom:384.337050px;}
.y9b{bottom:384.341550px;}
.y6f{bottom:384.353550px;}
.y139{bottom:384.801300px;}
.y13a{bottom:384.803850px;}
.y19a{bottom:385.293450px;}
.y19b{bottom:385.297050px;}
.y138{bottom:399.112800px;}
.y199{bottom:399.604950px;}
.yb{bottom:403.813050px;}
.ycf{bottom:403.831050px;}
.y9a{bottom:403.835550px;}
.y6e{bottom:403.847550px;}
.y137{bottom:413.424300px;}
.y198{bottom:413.916450px;}
.ya{bottom:423.307050px;}
.y4a{bottom:423.319050px;}
.yce{bottom:423.325050px;}
.y9{bottom:423.337050px;}
.y6d{bottom:423.341550px;}
.y136{bottom:427.731150px;}
.y196{bottom:428.226600px;}
.y197{bottom:428.227950px;}
.y135{bottom:442.042650px;}
.y194{bottom:442.534650px;}
.y195{bottom:442.538100px;}
.y49{bottom:442.813050px;}
.ycd{bottom:442.819050px;}
.y8{bottom:442.831050px;}
.y6c{bottom:442.835550px;}
.y99{bottom:442.837050px;}
.y134{bottom:456.354150px;}
.y193{bottom:456.846150px;}
.y48{bottom:462.307050px;}
.y47{bottom:462.313050px;}
.y7{bottom:462.325050px;}
.y6b{bottom:462.329550px;}
.y98{bottom:462.331050px;}
.y133{bottom:470.665650px;}
.y192{bottom:471.157650px;}
.ycc{bottom:481.807050px;}
.y6{bottom:481.819050px;}
.y6a{bottom:481.823550px;}
.y97{bottom:481.825050px;}
.y132{bottom:484.974750px;}
.y191{bottom:485.469150px;}
.y130{bottom:499.284900px;}
.y131{bottom:499.286250px;}
.y190{bottom:499.778250px;}
.y5{bottom:501.313050px;}
.y69{bottom:501.317550px;}
.y96{bottom:501.319050px;}
.ycb{bottom:501.367050px;}
.y12e{bottom:513.594150px;}
.y12f{bottom:513.596400px;}
.y18e{bottom:514.088550px;}
.y18f{bottom:514.089750px;}
.y4{bottom:520.807050px;}
.y68{bottom:520.811550px;}
.y95{bottom:520.813050px;}
.y46{bottom:520.817550px;}
.yca{bottom:520.861050px;}
.y12d{bottom:527.905650px;}
.y18c{bottom:528.398850px;}
.y18d{bottom:528.400050px;}
.y45{bottom:540.311550px;}
.y94{bottom:540.353550px;}
.yc9{bottom:540.355050px;}
.y12b{bottom:542.215950px;}
.y12c{bottom:542.217150px;}
.y18a{bottom:542.709150px;}
.y18b{bottom:542.710350px;}
.y129{bottom:556.522800px;}
.y12a{bottom:556.527450px;}
.y189{bottom:557.020650px;}
.y67{bottom:559.813050px;}
.y93{bottom:559.847550px;}
.yc8{bottom:559.849050px;}
.y128{bottom:570.834300px;}
.y188{bottom:571.329750px;}
.y66{bottom:579.307050px;}
.y44{bottom:579.313050px;}
.y92{bottom:579.341550px;}
.yc7{bottom:579.343050px;}
.y127{bottom:585.145800px;}
.y186{bottom:585.640050px;}
.y187{bottom:585.641250px;}
.y43{bottom:598.807050px;}
.y42{bottom:598.819050px;}
.y91{bottom:598.835550px;}
.yc6{bottom:598.837050px;}
.y126{bottom:599.457300px;}
.y185{bottom:599.951550px;}
.y125{bottom:613.768800px;}
.y184{bottom:614.257200px;}
.y41{bottom:618.313050px;}
.y90{bottom:618.329550px;}
.yc5{bottom:618.331050px;}
.y23{bottom:620.187900px;}
.y1{bottom:620.188050px;}
.y124{bottom:628.079100px;}
.y183{bottom:628.568700px;}
.y20{bottom:630.013620px;}
.y21{bottom:631.127400px;}
.y40{bottom:637.807050px;}
.y8f{bottom:637.823550px;}
.yc4{bottom:637.825050px;}
.y3f{bottom:637.853550px;}
.y65{bottom:637.867050px;}
.y122{bottom:642.387000px;}
.y123{bottom:642.389400px;}
.y182{bottom:642.880200px;}
.y121{bottom:656.698500px;}
.y181{bottom:657.191700px;}
.y8e{bottom:657.317550px;}
.yc3{bottom:657.319050px;}
.y3e{bottom:657.347550px;}
.y64{bottom:657.361050px;}
.y120{bottom:671.010000px;}
.y17f{bottom:671.502000px;}
.y180{bottom:671.503200px;}
.y8d{bottom:676.811550px;}
.yc2{bottom:676.813050px;}
.y3d{bottom:676.841550px;}
.y63{bottom:676.855050px;}
.y11f{bottom:685.320300px;}
.y17d{bottom:685.811100px;}
.y17e{bottom:685.813500px;}
.yc1{bottom:696.307050px;}
.y3c{bottom:696.335550px;}
.y62{bottom:696.349050px;}
.y11d{bottom:699.628200px;}
.y11e{bottom:699.630600px;}
.y17c{bottom:700.122600px;}
.y11c{bottom:713.939700px;}
.y17a{bottom:714.431700px;}
.y17b{bottom:714.434100px;}
.y1f{bottom:715.483620px;}
.y8c{bottom:715.813050px;}
.y3b{bottom:715.829550px;}
.y61{bottom:715.843050px;}
.yc0{bottom:715.903200px;}
.y11a{bottom:728.250000px;}
.y11b{bottom:728.251200px;}
.y179{bottom:728.743200px;}
.y60{bottom:735.337050px;}
.ybf{bottom:735.397200px;}
.y8b{bottom:735.403200px;}
.y118{bottom:742.560300px;}
.y119{bottom:742.561500px;}
.y177{bottom:743.053500px;}
.y178{bottom:743.054700px;}
.y3a{bottom:754.831050px;}
.ybe{bottom:754.891200px;}
.y8a{bottom:754.897200px;}
.y116{bottom:756.869550px;}
.y117{bottom:756.871800px;}
.y176{bottom:757.365000px;}
.y115{bottom:771.181050px;}
.y174{bottom:771.672900px;}
.y175{bottom:771.675300px;}
.y39{bottom:774.325050px;}
.ybd{bottom:774.385200px;}
.y89{bottom:774.391200px;}
.y113{bottom:785.491200px;}
.y114{bottom:785.492550px;}
.y173{bottom:785.984400px;}
.y38{bottom:793.819050px;}
.ybc{bottom:793.879200px;}
.y88{bottom:793.885200px;}
.y111{bottom:799.796850px;}
.y112{bottom:799.802700px;}
.y172{bottom:800.295900px;}
.y1e{bottom:800.953620px;}
.y37{bottom:813.313050px;}
.ybb{bottom:813.373200px;}
.y87{bottom:813.379200px;}
.y110{bottom:814.108350px;}
.y171{bottom:814.595550px;}
.y10f{bottom:828.419850px;}
.y170{bottom:828.907050px;}
.y36{bottom:832.807050px;}
.y5f{bottom:832.819050px;}
.y35{bottom:832.829700px;}
.yba{bottom:832.867200px;}
.y86{bottom:832.873200px;}
.y10e{bottom:842.731350px;}
.y16f{bottom:843.218550px;}
.y5e{bottom:852.313050px;}
.y34{bottom:852.323700px;}
.yb9{bottom:852.361200px;}
.y85{bottom:852.367200px;}
.y10d{bottom:857.042850px;}
.y16e{bottom:857.530050px;}
.y10b{bottom:871.350750px;}
.y10c{bottom:871.354350px;}
.y5d{bottom:871.807050px;}
.y5c{bottom:871.825050px;}
.y33{bottom:871.831200px;}
.y16d{bottom:871.841550px;}
.yb8{bottom:871.855200px;}
.y84{bottom:871.861200px;}
.y10a{bottom:885.662250px;}
.y16c{bottom:886.153050px;}
.y1d{bottom:886.423620px;}
.y5b{bottom:891.319050px;}
.y32{bottom:891.325200px;}
.yb7{bottom:891.349200px;}
.y83{bottom:891.355200px;}
.y109{bottom:899.973750px;}
.y16b{bottom:900.464550px;}
.y5a{bottom:910.813050px;}
.y31{bottom:910.819200px;}
.yb6{bottom:910.843200px;}
.y82{bottom:910.849200px;}
.y108{bottom:914.285250px;}
.y16a{bottom:914.776050px;}
.y107{bottom:928.594350px;}
.y169{bottom:929.087550px;}
.y59{bottom:930.307050px;}
.y30{bottom:930.313200px;}
.yb5{bottom:930.337200px;}
.y81{bottom:930.343200px;}
.y105{bottom:942.904500px;}
.y106{bottom:942.905850px;}
.y167{bottom:943.397850px;}
.y168{bottom:943.399050px;}
.y2f{bottom:949.807200px;}
.yb4{bottom:949.831200px;}
.y80{bottom:949.837200px;}
.y2e{bottom:949.859700px;}
.y103{bottom:957.209100px;}
.y104{bottom:957.216000px;}
.y165{bottom:957.708150px;}
.y166{bottom:957.709350px;}
.yb3{bottom:969.325200px;}
.y7f{bottom:969.331200px;}
.y58{bottom:969.367200px;}
.y1c{bottom:971.258700px;}
.y102{bottom:971.520600px;}
.y164{bottom:972.019650px;}
.y101{bottom:985.832100px;}
.y163{bottom:986.328750px;}
.yb2{bottom:988.819200px;}
.y7e{bottom:988.825200px;}
.y2d{bottom:988.861200px;}
.y100{bottom:1000.143600px;}
.y161{bottom:1000.635600px;}
.y162{bottom:1000.640250px;}
.yb1{bottom:1008.313200px;}
.y7d{bottom:1008.319200px;}
.y2c{bottom:1008.355200px;}
.yff{bottom:1014.455100px;}
.y160{bottom:1014.947100px;}
.y7c{bottom:1027.813200px;}
.yb0{bottom:1027.831200px;}
.y2b{bottom:1027.849200px;}
.yfe{bottom:1028.766600px;}
.y15f{bottom:1029.258600px;}
.yfd{bottom:1043.078100px;}
.y15e{bottom:1043.570100px;}
.y7b{bottom:1047.307200px;}
.yaf{bottom:1047.325200px;}
.y2a{bottom:1047.343200px;}
.y1b{bottom:1056.728700px;}
.yfc{bottom:1057.387200px;}
.y15d{bottom:1057.881600px;}
.yae{bottom:1066.819200px;}
.y29{bottom:1066.837200px;}
.yfb{bottom:1071.698700px;}
.y15c{bottom:1072.188300px;}
.yf9{bottom:1086.007800px;}
.yfa{bottom:1086.009000px;}
.yad{bottom:1086.313200px;}
.y28{bottom:1086.331200px;}
.y15b{bottom:1086.499800px;}
.yf7{bottom:1100.318100px;}
.yf8{bottom:1100.319300px;}
.y15a{bottom:1100.811300px;}
.yac{bottom:1105.807200px;}
.y27{bottom:1105.825200px;}
.yf5{bottom:1114.627050px;}
.yf6{bottom:1114.629600px;}
.y159{bottom:1115.122800px;}
.y26{bottom:1125.319200px;}
.yf4{bottom:1128.938550px;}
.y158{bottom:1129.430700px;}
.yf2{bottom:1143.249000px;}
.yf3{bottom:1143.250050px;}
.y157{bottom:1143.742200px;}
.y25{bottom:1144.813200px;}
.yf1{bottom:1157.560500px;}
.y156{bottom:1158.053700px;}
.y24{bottom:1164.307200px;}
.yf0{bottom:1170.498000px;}
.h4{height:30.647298px;}
.h3{height:33.297000px;}
.hc{height:34.650000px;}
.hf{height:35.196000px;}
.he{height:35.634730px;}
.h10{height:36.324000px;}
.h12{height:41.790000px;}
.h13{height:42.310926px;}
.hd{height:42.378000px;}
.h9{height:43.302000px;}
.h11{height:43.841774px;}
.h5{height:45.252000px;}
.h6{height:45.816103px;}
.h2{height:48.432000px;}
.hb{height:50.104898px;}
.ha{height:54.399789px;}
.h8{height:163.711680px;}
.h7{height:201.416160px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:36.979200px;}
.x1e{left:63.783450px;}
.x22{left:84.992550px;}
.x21{left:96.471750px;}
.x23{left:104.668800px;}
.x24{left:115.925250px;}
.x6{left:119.040300px;}
.x39{left:122.251650px;}
.x44{left:123.846150px;}
.x34{left:131.059650px;}
.x40{left:147.199800px;}
.x4a{left:155.842350px;}
.x42{left:161.796450px;}
.x2e{left:165.131400px;}
.x4b{left:174.832500px;}
.x20{left:176.556450px;}
.x2f{left:185.427750px;}
.x2a{left:189.050250px;}
.x41{left:195.553800px;}
.x3a{left:197.934900px;}
.x3e{left:199.693200px;}
.x3f{left:200.766450px;}
.x25{left:206.873850px;}
.x45{left:216.115500px;}
.x1f{left:220.327500px;}
.x46{left:221.753250px;}
.x26{left:227.543550px;}
.x2b{left:232.071150px;}
.x3d{left:242.684100px;}
.xa{left:250.865550px;}
.x29{left:253.281450px;}
.x48{left:256.864350px;}
.x37{left:260.109000px;}
.x31{left:267.825750px;}
.x35{left:278.170050px;}
.x33{left:283.370700px;}
.x3{left:284.881950px;}
.x36{left:287.520300px;}
.x2d{left:301.890000px;}
.x47{left:317.851350px;}
.x15{left:327.352650px;}
.x38{left:329.677350px;}
.x3c{left:339.299850px;}
.x30{left:340.732200px;}
.x3b{left:353.072250px;}
.x2c{left:354.293850px;}
.x49{left:364.391700px;}
.x27{left:366.883350px;}
.xf{left:381.311100px;}
.x43{left:391.717950px;}
.x13{left:393.671700px;}
.x28{left:400.650300px;}
.x11{left:401.809200px;}
.x32{left:421.316400px;}
.x8{left:427.345650px;}
.x4c{left:450.708000px;}
.x19{left:455.824800px;}
.x60{left:462.761550px;}
.x68{left:467.176500px;}
.x50{left:469.885650px;}
.xd{left:473.183400px;}
.x64{left:481.065450px;}
.x2{left:487.346400px;}
.x10{left:489.957750px;}
.x1a{left:494.427750px;}
.x6b{left:501.645300px;}
.x1b{left:505.185900px;}
.x1d{left:517.328550px;}
.x4{left:519.154200px;}
.x17{left:520.441800px;}
.x5f{left:522.568800px;}
.x57{left:528.396450px;}
.x72{left:529.623450px;}
.x5e{left:531.715800px;}
.x16{left:540.716250px;}
.x4e{left:554.224350px;}
.x1c{left:561.994500px;}
.x67{left:565.944600px;}
.x73{left:574.875750px;}
.x70{left:590.147100px;}
.xe{left:596.506950px;}
.x6c{left:597.742950px;}
.x51{left:606.460950px;}
.x53{left:607.534500px;}
.xb{left:608.609250px;}
.x12{left:609.791850px;}
.x4f{left:615.126300px;}
.x55{left:616.839750px;}
.x61{left:621.495900px;}
.x62{left:623.650800px;}
.x59{left:628.635600px;}
.x18{left:632.281500px;}
.x5d{left:638.170200px;}
.x7{left:643.426950px;}
.x58{left:647.432100px;}
.x14{left:653.430300px;}
.x69{left:661.098900px;}
.x66{left:664.875750px;}
.x5b{left:667.008150px;}
.x5{left:669.762300px;}
.x4d{left:677.712900px;}
.x5c{left:694.186200px;}
.x54{left:695.771250px;}
.x65{left:697.571850px;}
.x5a{left:702.084600px;}
.x71{left:710.526150px;}
.x6f{left:714.474300px;}
.x52{left:717.477300px;}
.x6a{left:725.315700px;}
.x56{left:730.027350px;}
.x63{left:733.597200px;}
.x6d{left:739.839600px;}
.x6e{left:763.577100px;}
.xc{left:769.701150px;}
.x9{left:835.970550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.435733pt;}
.ls1b{letter-spacing:-0.944968pt;}
.ls1a{letter-spacing:-0.933333pt;}
.ls18{letter-spacing:-0.709333pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.453584pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.410667pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.298667pt;}
.ls11{letter-spacing:-0.291590pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls19{letter-spacing:-0.226792pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls20{letter-spacing:-0.149333pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.864000pt;}
.ls13{letter-spacing:1.008000pt;}
.lsb{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.565945pt;}
.ls7{letter-spacing:1.653333pt;}
.ls8{letter-spacing:2.240921pt;}
.ls0{letter-spacing:2.434667pt;}
.ls21{letter-spacing:2.570312pt;}
.ls5{letter-spacing:4.592000pt;}
.lsa{letter-spacing:5.114667pt;}
.lsd{letter-spacing:13.721067pt;}
.ls4{letter-spacing:14.239573pt;}
.ls1c{letter-spacing:14.590300pt;}
.ls2{letter-spacing:15.565867pt;}
.ls9{letter-spacing:15.802453pt;}
.lsc{letter-spacing:18.774400pt;}
.lse{letter-spacing:22.891200pt;}
.ls12{letter-spacing:23.729067pt;}
.ls3{letter-spacing:117.389653pt;}
.ws1d{word-spacing:-15.802453pt;}
.ws21{word-spacing:-14.784000pt;}
.ws1e{word-spacing:-14.239573pt;}
.ws7e{word-spacing:-14.208000pt;}
.wsc5{word-spacing:-10.923826pt;}
.ws1f{word-spacing:-4.592000pt;}
.wsc7{word-spacing:-3.477481pt;}
.wscc{word-spacing:-2.570312pt;}
.ws6{word-spacing:-2.240921pt;}
.ws90{word-spacing:-2.160000pt;}
.ws65{word-spacing:-2.064000pt;}
.wsac{word-spacing:-2.016000pt;}
.ws85{word-spacing:-1.968000pt;}
.ws79{word-spacing:-1.920000pt;}
.ws73{word-spacing:-1.872000pt;}
.ws86{word-spacing:-1.728000pt;}
.wsa{word-spacing:-1.680000pt;}
.ws4{word-spacing:-1.653333pt;}
.ws2b{word-spacing:-1.652344pt;}
.ws2a{word-spacing:-1.632000pt;}
.ws5{word-spacing:-1.565945pt;}
.ws46{word-spacing:-1.536000pt;}
.wsb5{word-spacing:-1.440000pt;}
.ws95{word-spacing:-1.392000pt;}
.ws1c{word-spacing:-1.344000pt;}
.wsb9{word-spacing:-1.296000pt;}
.wsb6{word-spacing:-1.200000pt;}
.wsaf{word-spacing:-1.152000pt;}
.ws97{word-spacing:-1.104000pt;}
.ws48{word-spacing:-1.069164pt;}
.ws47{word-spacing:-1.056000pt;}
.wse{word-spacing:-1.008000pt;}
.wsf{word-spacing:-0.720000pt;}
.ws87{word-spacing:-0.672000pt;}
.ws35{word-spacing:-0.624000pt;}
.ws22{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.432000pt;}
.ws3a{word-spacing:-0.388787pt;}
.wsbf{word-spacing:-0.384000pt;}
.wsb8{word-spacing:-0.336000pt;}
.ws9{word-spacing:-0.288000pt;}
.ws24{word-spacing:-0.240000pt;}
.ws0{word-spacing:-0.204800pt;}
.ws8b{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.096000pt;}
.ws50{word-spacing:0.144000pt;}
.wscb{word-spacing:0.224000pt;}
.wscd{word-spacing:0.226792pt;}
.ws9c{word-spacing:0.336000pt;}
.ws94{word-spacing:0.384000pt;}
.ws18{word-spacing:0.432000pt;}
.ws32{word-spacing:0.480000pt;}
.ws5b{word-spacing:0.576000pt;}
.ws7{word-spacing:0.624000pt;}
.ws76{word-spacing:0.672000pt;}
.ws25{word-spacing:0.720000pt;}
.ws31{word-spacing:0.728975pt;}
.ws14{word-spacing:0.768000pt;}
.wsa8{word-spacing:0.864000pt;}
.ws74{word-spacing:0.912000pt;}
.ws93{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.008000pt;}
.wsce{word-spacing:1.045333pt;}
.wsad{word-spacing:1.056000pt;}
.wsc8{word-spacing:1.082667pt;}
.wsc9{word-spacing:1.096162pt;}
.ws23{word-spacing:1.104000pt;}
.wsc2{word-spacing:1.157333pt;}
.wsc4{word-spacing:1.171760pt;}
.wsca{word-spacing:1.194667pt;}
.wsb1{word-spacing:1.200000pt;}
.ws20{word-spacing:1.269333pt;}
.wsc0{word-spacing:1.339155pt;}
.ws66{word-spacing:1.344000pt;}
.ws27{word-spacing:1.392000pt;}
.wsc1{word-spacing:1.468750pt;}
.ws17{word-spacing:1.488000pt;}
.wsc3{word-spacing:1.568000pt;}
.wsbb{word-spacing:1.632000pt;}
.ws75{word-spacing:1.728000pt;}
.ws9a{word-spacing:1.776000pt;}
.ws6f{word-spacing:1.872000pt;}
.ws8a{word-spacing:1.968000pt;}
.ws59{word-spacing:2.160000pt;}
.ws34{word-spacing:2.352000pt;}
.ws51{word-spacing:2.400000pt;}
.ws15{word-spacing:2.544000pt;}
.wsba{word-spacing:2.832000pt;}
.ws67{word-spacing:2.880000pt;}
.ws62{word-spacing:2.928000pt;}
.ws78{word-spacing:3.024000pt;}
.ws8{word-spacing:3.120000pt;}
.ws61{word-spacing:3.168000pt;}
.ws4b{word-spacing:3.312000pt;}
.ws49{word-spacing:3.360000pt;}
.ws3c{word-spacing:3.408000pt;}
.ws3b{word-spacing:3.456000pt;}
.ws84{word-spacing:3.504000pt;}
.ws7d{word-spacing:3.600000pt;}
.ws2d{word-spacing:3.696000pt;}
.ws53{word-spacing:3.744000pt;}
.wsb7{word-spacing:3.792000pt;}
.ws82{word-spacing:3.888000pt;}
.wsaa{word-spacing:3.936000pt;}
.ws43{word-spacing:3.984000pt;}
.ws4a{word-spacing:4.080000pt;}
.ws91{word-spacing:4.128000pt;}
.wsbd{word-spacing:4.176000pt;}
.ws30{word-spacing:4.368000pt;}
.wsb4{word-spacing:4.416000pt;}
.ws28{word-spacing:4.464000pt;}
.ws71{word-spacing:4.512000pt;}
.ws37{word-spacing:4.560000pt;}
.ws10{word-spacing:4.704000pt;}
.ws83{word-spacing:4.752000pt;}
.ws5d{word-spacing:4.944000pt;}
.ws3d{word-spacing:5.088000pt;}
.ws3e{word-spacing:5.151426pt;}
.wsa9{word-spacing:5.184000pt;}
.ws19{word-spacing:5.232000pt;}
.ws6c{word-spacing:5.328000pt;}
.ws55{word-spacing:5.376000pt;}
.wsbc{word-spacing:5.424000pt;}
.ws7c{word-spacing:5.472000pt;}
.ws80{word-spacing:5.653333pt;}
.ws63{word-spacing:5.712000pt;}
.wsc{word-spacing:5.760000pt;}
.ws2f{word-spacing:5.808000pt;}
.wsd{word-spacing:5.831803pt;}
.ws5a{word-spacing:5.856000pt;}
.ws40{word-spacing:6.000000pt;}
.ws4d{word-spacing:6.048000pt;}
.ws41{word-spacing:6.074795pt;}
.ws6b{word-spacing:6.096000pt;}
.wsab{word-spacing:6.192000pt;}
.ws3f{word-spacing:6.336000pt;}
.ws6e{word-spacing:6.384000pt;}
.ws60{word-spacing:6.528000pt;}
.ws42{word-spacing:6.576000pt;}
.ws12{word-spacing:6.912000pt;}
.wsa6{word-spacing:6.984533pt;}
.ws26{word-spacing:7.008000pt;}
.wsb0{word-spacing:7.056000pt;}
.ws69{word-spacing:7.296000pt;}
.wsbe{word-spacing:7.344000pt;}
.ws7a{word-spacing:7.440000pt;}
.ws4e{word-spacing:7.776000pt;}
.wsb3{word-spacing:7.872000pt;}
.ws16{word-spacing:8.016000pt;}
.ws4f{word-spacing:8.112000pt;}
.ws52{word-spacing:8.208000pt;}
.ws5c{word-spacing:8.256000pt;}
.wsb{word-spacing:8.400000pt;}
.ws13{word-spacing:8.496000pt;}
.wsa2{word-spacing:8.592000pt;}
.ws5f{word-spacing:8.688000pt;}
.ws89{word-spacing:8.784000pt;}
.ws92{word-spacing:8.832000pt;}
.ws64{word-spacing:8.928000pt;}
.ws77{word-spacing:9.072000pt;}
.ws98{word-spacing:9.120000pt;}
.ws6d{word-spacing:9.504000pt;}
.ws8e{word-spacing:9.600000pt;}
.ws5e{word-spacing:9.648000pt;}
.ws72{word-spacing:9.888000pt;}
.ws9f{word-spacing:10.176000pt;}
.ws4c{word-spacing:10.272000pt;}
.ws38{word-spacing:10.512000pt;}
.ws70{word-spacing:10.560000pt;}
.ws8f{word-spacing:10.992000pt;}
.ws9b{word-spacing:11.520000pt;}
.ws81{word-spacing:11.712000pt;}
.ws54{word-spacing:11.760000pt;}
.ws11{word-spacing:12.096000pt;}
.ws8d{word-spacing:12.384000pt;}
.ws36{word-spacing:12.864000pt;}
.wsa7{word-spacing:12.960000pt;}
.ws6a{word-spacing:13.056000pt;}
.ws96{word-spacing:13.344000pt;}
.wsa4{word-spacing:13.536000pt;}
.wsa5{word-spacing:13.565333pt;}
.ws58{word-spacing:13.584000pt;}
.ws29{word-spacing:13.968000pt;}
.wsa3{word-spacing:14.160000pt;}
.ws2c{word-spacing:14.496000pt;}
.ws44{word-spacing:14.640000pt;}
.wsb2{word-spacing:14.784000pt;}
.ws45{word-spacing:14.822500pt;}
.ws9d{word-spacing:14.880000pt;}
.ws56{word-spacing:14.976000pt;}
.ws9e{word-spacing:15.264000pt;}
.wsae{word-spacing:15.360000pt;}
.ws88{word-spacing:15.408000pt;}
.ws7b{word-spacing:15.984000pt;}
.ws99{word-spacing:16.560000pt;}
.ws2e{word-spacing:16.896000pt;}
.ws8c{word-spacing:17.856000pt;}
.ws7f{word-spacing:18.075733pt;}
.ws68{word-spacing:21.168000pt;}
.ws57{word-spacing:21.312000pt;}
.wsa0{word-spacing:22.080000pt;}
.wsa1{word-spacing:22.355245pt;}
.ws33{word-spacing:22.944000pt;}
.ws1{word-spacing:25.006080pt;}
.ws2{word-spacing:35.425280pt;}
._9{margin-left:-6.720000pt;}
._7{margin-left:-5.760000pt;}
._5{margin-left:-4.800000pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.400000pt;}
._6{margin-left:-0.960000pt;}
._3{width:0.960000pt;}
._0{width:2.240921pt;}
._4{width:5.749333pt;}
._8{width:14.784000pt;}
.fs6{font-size:24.000000pt;}
.fs2{font-size:26.666667pt;}
.fs3{font-size:26.999051pt;}
.fs1{font-size:29.333333pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fsa{font-size:37.798705pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:43.198532pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:48.598359pt;}
.fs7{font-size:173.653333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:41.191600pt;}
.y3{bottom:41.191733pt;}
.y2{bottom:50.277600pt;}
.y155{bottom:74.920933pt;}
.y1ba{bottom:75.359333pt;}
.y1bb{bottom:75.360400pt;}
.yef{bottom:76.014667pt;}
.yd8{bottom:76.114933pt;}
.yab{bottom:81.632800pt;}
.y1a{bottom:81.642267pt;}
.y57{bottom:81.648800pt;}
.y7a{bottom:81.654267pt;}
.y153{bottom:87.641200pt;}
.y154{bottom:87.642267pt;}
.y1b8{bottom:88.077467pt;}
.y1b9{bottom:88.080667pt;}
.yee{bottom:88.269333pt;}
.yd7{bottom:98.939600pt;}
.yaa{bottom:98.960800pt;}
.y19{bottom:98.970267pt;}
.y56{bottom:98.976800pt;}
.y79{bottom:98.982267pt;}
.y151{bottom:100.361467pt;}
.y152{bottom:100.362533pt;}
.yed{bottom:100.514667pt;}
.yec{bottom:100.519333pt;}
.y1b7{bottom:100.798800pt;}
.yeb{bottom:112.764667pt;}
.yea{bottom:112.774000pt;}
.y150{bottom:113.082800pt;}
.y1b6{bottom:113.520133pt;}
.ya9{bottom:116.288800pt;}
.y18{bottom:116.298267pt;}
.y55{bottom:116.304800pt;}
.y78{bottom:116.310267pt;}
.ye9{bottom:125.019333pt;}
.y14f{bottom:125.802133pt;}
.y1b5{bottom:126.241467pt;}
.yd6{bottom:133.611600pt;}
.ya8{bottom:133.616800pt;}
.y17{bottom:133.626267pt;}
.y54{bottom:133.632800pt;}
.y77{bottom:133.638267pt;}
.ye8{bottom:137.264667pt;}
.ye7{bottom:137.269200pt;}
.y14d{bottom:138.520267pt;}
.y14e{bottom:138.523467pt;}
.y1b3{bottom:138.960667pt;}
.y1b4{bottom:138.961733pt;}
.ye6{bottom:149.514533pt;}
.ya7{bottom:150.944800pt;}
.y16{bottom:150.954267pt;}
.y53{bottom:150.960800pt;}
.y76{bottom:150.966267pt;}
.yd5{bottom:150.982267pt;}
.y14c{bottom:151.241600pt;}
.y1b2{bottom:151.682000pt;}
.ye5{bottom:161.764533pt;}
.y14b{bottom:163.962933pt;}
.y1b1{bottom:164.401333pt;}
.ya6{bottom:168.272800pt;}
.y52{bottom:168.288800pt;}
.y75{bottom:168.294267pt;}
.yd4{bottom:168.310267pt;}
.ye4{bottom:174.060667pt;}
.y14a{bottom:176.684267pt;}
.y1af{bottom:177.121467pt;}
.y1b0{bottom:177.122667pt;}
.ya5{bottom:185.606267pt;}
.y51{bottom:185.616800pt;}
.y15{bottom:185.622267pt;}
.yd3{bottom:185.638267pt;}
.ya4{bottom:185.684933pt;}
.ye3{bottom:186.306000pt;}
.y148{bottom:189.403333pt;}
.y149{bottom:189.404533pt;}
.y1ad{bottom:189.840800pt;}
.y1ae{bottom:189.842800pt;}
.ye2{bottom:198.551333pt;}
.y146{bottom:202.123733pt;}
.y147{bottom:202.124667pt;}
.y1ac{bottom:202.562133pt;}
.y50{bottom:202.944800pt;}
.y14{bottom:202.950267pt;}
.yd2{bottom:202.966267pt;}
.ya3{bottom:203.012933pt;}
.ye1{bottom:210.796667pt;}
.y145{bottom:214.845067pt;}
.y1aa{bottom:215.282400pt;}
.y1ab{bottom:215.283467pt;}
.y13{bottom:220.278267pt;}
.y4f{bottom:220.294267pt;}
.ya2{bottom:220.340933pt;}
.ye0{bottom:223.042000pt;}
.y144{bottom:227.564267pt;}
.y1a8{bottom:228.002667pt;}
.y1a9{bottom:228.003733pt;}
.ydf{bottom:235.287333pt;}
.y74{bottom:237.606267pt;}
.y4e{bottom:237.622267pt;}
.y12{bottom:237.627600pt;}
.ya1{bottom:237.668933pt;}
.y143{bottom:240.285600pt;}
.y1a7{bottom:240.724000pt;}
.yde{bottom:247.532667pt;}
.y142{bottom:253.004667pt;}
.y1a6{bottom:253.443200pt;}
.y4d{bottom:254.950267pt;}
.y11{bottom:254.955600pt;}
.ya0{bottom:254.996933pt;}
.ydd{bottom:259.778000pt;}
.y141{bottom:265.726000pt;}
.y1a4{bottom:266.163467pt;}
.y1a5{bottom:266.164533pt;}
.ydc{bottom:272.023333pt;}
.y4c{bottom:272.278267pt;}
.y10{bottom:272.283600pt;}
.y9f{bottom:272.324933pt;}
.y73{bottom:272.335600pt;}
.y140{bottom:278.443200pt;}
.y1a2{bottom:278.882667pt;}
.y1a3{bottom:278.884800pt;}
.ydb{bottom:284.268667pt;}
.y4b{bottom:289.606267pt;}
.yf{bottom:289.611600pt;}
.y9e{bottom:289.652933pt;}
.y72{bottom:289.663600pt;}
.y13f{bottom:291.164533pt;}
.y1a1{bottom:291.604000pt;}
.yd9{bottom:296.512267pt;}
.yda{bottom:296.514000pt;}
.y13e{bottom:303.885867pt;}
.y1a0{bottom:304.325333pt;}
.ye{bottom:306.939600pt;}
.y9d{bottom:306.980933pt;}
.y71{bottom:306.991600pt;}
.y13d{bottom:316.607200pt;}
.y19e{bottom:317.044533pt;}
.y19f{bottom:317.045600pt;}
.yd{bottom:324.288933pt;}
.yd1{bottom:324.304933pt;}
.y9c{bottom:324.308933pt;}
.y70{bottom:324.319600pt;}
.y13b{bottom:329.326533pt;}
.y13c{bottom:329.327333pt;}
.y19c{bottom:329.764933pt;}
.y19d{bottom:329.765867pt;}
.yc{bottom:341.616933pt;}
.yd0{bottom:341.632933pt;}
.y9b{bottom:341.636933pt;}
.y6f{bottom:341.647600pt;}
.y139{bottom:342.045600pt;}
.y13a{bottom:342.047867pt;}
.y19a{bottom:342.483067pt;}
.y19b{bottom:342.486267pt;}
.y138{bottom:354.766933pt;}
.y199{bottom:355.204400pt;}
.yb{bottom:358.944933pt;}
.ycf{bottom:358.960933pt;}
.y9a{bottom:358.964933pt;}
.y6e{bottom:358.975600pt;}
.y137{bottom:367.488267pt;}
.y198{bottom:367.925733pt;}
.ya{bottom:376.272933pt;}
.y4a{bottom:376.283600pt;}
.yce{bottom:376.288933pt;}
.y9{bottom:376.299600pt;}
.y6d{bottom:376.303600pt;}
.y136{bottom:380.205467pt;}
.y196{bottom:380.645867pt;}
.y197{bottom:380.647067pt;}
.y135{bottom:392.926800pt;}
.y194{bottom:393.364133pt;}
.y195{bottom:393.367200pt;}
.y49{bottom:393.611600pt;}
.ycd{bottom:393.616933pt;}
.y8{bottom:393.627600pt;}
.y6c{bottom:393.631600pt;}
.y99{bottom:393.632933pt;}
.y134{bottom:405.648133pt;}
.y193{bottom:406.085467pt;}
.y48{bottom:410.939600pt;}
.y47{bottom:410.944933pt;}
.y7{bottom:410.955600pt;}
.y6b{bottom:410.959600pt;}
.y98{bottom:410.960933pt;}
.y133{bottom:418.369467pt;}
.y192{bottom:418.806800pt;}
.ycc{bottom:428.272933pt;}
.y6{bottom:428.283600pt;}
.y6a{bottom:428.287600pt;}
.y97{bottom:428.288933pt;}
.y132{bottom:431.088667pt;}
.y191{bottom:431.528133pt;}
.y130{bottom:443.808800pt;}
.y131{bottom:443.810000pt;}
.y190{bottom:444.247333pt;}
.y5{bottom:445.611600pt;}
.y69{bottom:445.615600pt;}
.y96{bottom:445.616933pt;}
.ycb{bottom:445.659600pt;}
.y12e{bottom:456.528133pt;}
.y12f{bottom:456.530133pt;}
.y18e{bottom:456.967600pt;}
.y18f{bottom:456.968667pt;}
.y4{bottom:462.939600pt;}
.y68{bottom:462.943600pt;}
.y95{bottom:462.944933pt;}
.y46{bottom:462.948933pt;}
.yca{bottom:462.987600pt;}
.y12d{bottom:469.249467pt;}
.y18c{bottom:469.687867pt;}
.y18d{bottom:469.688933pt;}
.y45{bottom:480.276933pt;}
.y94{bottom:480.314267pt;}
.yc9{bottom:480.315600pt;}
.y12b{bottom:481.969733pt;}
.y12c{bottom:481.970800pt;}
.y18a{bottom:482.408133pt;}
.y18b{bottom:482.409200pt;}
.y129{bottom:494.686933pt;}
.y12a{bottom:494.691067pt;}
.y189{bottom:495.129467pt;}
.y67{bottom:497.611600pt;}
.y93{bottom:497.642267pt;}
.yc8{bottom:497.643600pt;}
.y128{bottom:507.408267pt;}
.y188{bottom:507.848667pt;}
.y66{bottom:514.939600pt;}
.y44{bottom:514.944933pt;}
.y92{bottom:514.970267pt;}
.yc7{bottom:514.971600pt;}
.y127{bottom:520.129600pt;}
.y186{bottom:520.568933pt;}
.y187{bottom:520.570000pt;}
.y43{bottom:532.272933pt;}
.y42{bottom:532.283600pt;}
.y91{bottom:532.298267pt;}
.yc6{bottom:532.299600pt;}
.y126{bottom:532.850933pt;}
.y185{bottom:533.290267pt;}
.y125{bottom:545.572267pt;}
.y184{bottom:546.006400pt;}
.y41{bottom:549.611600pt;}
.y90{bottom:549.626267pt;}
.yc5{bottom:549.627600pt;}
.y23{bottom:551.278133pt;}
.y1{bottom:551.278267pt;}
.y124{bottom:558.292533pt;}
.y183{bottom:558.727733pt;}
.y20{bottom:560.012107pt;}
.y21{bottom:561.002133pt;}
.y40{bottom:566.939600pt;}
.y8f{bottom:566.954267pt;}
.yc4{bottom:566.955600pt;}
.y3f{bottom:566.980933pt;}
.y65{bottom:566.992933pt;}
.y122{bottom:571.010667pt;}
.y123{bottom:571.012800pt;}
.y182{bottom:571.449067pt;}
.y121{bottom:583.732000pt;}
.y181{bottom:584.170400pt;}
.y8e{bottom:584.282267pt;}
.yc3{bottom:584.283600pt;}
.y3e{bottom:584.308933pt;}
.y64{bottom:584.320933pt;}
.y120{bottom:596.453333pt;}
.y17f{bottom:596.890667pt;}
.y180{bottom:596.891733pt;}
.y8d{bottom:601.610267pt;}
.yc2{bottom:601.611600pt;}
.y3d{bottom:601.636933pt;}
.y63{bottom:601.648933pt;}
.y11f{bottom:609.173600pt;}
.y17d{bottom:609.609867pt;}
.y17e{bottom:609.612000pt;}
.yc1{bottom:618.939600pt;}
.y3c{bottom:618.964933pt;}
.y62{bottom:618.976933pt;}
.y11d{bottom:621.891733pt;}
.y11e{bottom:621.893867pt;}
.y17c{bottom:622.331200pt;}
.y11c{bottom:634.613067pt;}
.y17a{bottom:635.050400pt;}
.y17b{bottom:635.052533pt;}
.y1f{bottom:635.985440pt;}
.y8c{bottom:636.278267pt;}
.y3b{bottom:636.292933pt;}
.y61{bottom:636.304933pt;}
.yc0{bottom:636.358400pt;}
.y11a{bottom:647.333333pt;}
.y11b{bottom:647.334400pt;}
.y179{bottom:647.771733pt;}
.y60{bottom:653.632933pt;}
.ybf{bottom:653.686400pt;}
.y8b{bottom:653.691733pt;}
.y118{bottom:660.053600pt;}
.y119{bottom:660.054667pt;}
.y177{bottom:660.492000pt;}
.y178{bottom:660.493067pt;}
.y3a{bottom:670.960933pt;}
.ybe{bottom:671.014400pt;}
.y8a{bottom:671.019733pt;}
.y116{bottom:672.772933pt;}
.y117{bottom:672.774933pt;}
.y176{bottom:673.213333pt;}
.y115{bottom:685.494267pt;}
.y174{bottom:685.931467pt;}
.y175{bottom:685.933600pt;}
.y39{bottom:688.288933pt;}
.ybd{bottom:688.342400pt;}
.y89{bottom:688.347733pt;}
.y113{bottom:698.214400pt;}
.y114{bottom:698.215600pt;}
.y173{bottom:698.652800pt;}
.y38{bottom:705.616933pt;}
.ybc{bottom:705.670400pt;}
.y88{bottom:705.675733pt;}
.y111{bottom:710.930533pt;}
.y112{bottom:710.935733pt;}
.y172{bottom:711.374133pt;}
.y1e{bottom:711.958773pt;}
.y37{bottom:722.944933pt;}
.ybb{bottom:722.998400pt;}
.y87{bottom:723.003733pt;}
.y110{bottom:723.651867pt;}
.y171{bottom:724.084933pt;}
.y10f{bottom:736.373200pt;}
.y170{bottom:736.806267pt;}
.y36{bottom:740.272933pt;}
.y5f{bottom:740.283600pt;}
.y35{bottom:740.293067pt;}
.yba{bottom:740.326400pt;}
.y86{bottom:740.331733pt;}
.y10e{bottom:749.094533pt;}
.y16f{bottom:749.527600pt;}
.y5e{bottom:757.611600pt;}
.y34{bottom:757.621067pt;}
.yb9{bottom:757.654400pt;}
.y85{bottom:757.659733pt;}
.y10d{bottom:761.815867pt;}
.y16e{bottom:762.248933pt;}
.y10b{bottom:774.534000pt;}
.y10c{bottom:774.537200pt;}
.y5d{bottom:774.939600pt;}
.y5c{bottom:774.955600pt;}
.y33{bottom:774.961067pt;}
.y16d{bottom:774.970267pt;}
.yb8{bottom:774.982400pt;}
.y84{bottom:774.987733pt;}
.y10a{bottom:787.255333pt;}
.y16c{bottom:787.691600pt;}
.y1d{bottom:787.932107pt;}
.y5b{bottom:792.283600pt;}
.y32{bottom:792.289067pt;}
.yb7{bottom:792.310400pt;}
.y83{bottom:792.315733pt;}
.y109{bottom:799.976667pt;}
.y16b{bottom:800.412933pt;}
.y5a{bottom:809.611600pt;}
.y31{bottom:809.617067pt;}
.yb6{bottom:809.638400pt;}
.y82{bottom:809.643733pt;}
.y108{bottom:812.698000pt;}
.y16a{bottom:813.134267pt;}
.y107{bottom:825.417200pt;}
.y169{bottom:825.855600pt;}
.y59{bottom:826.939600pt;}
.y30{bottom:826.945067pt;}
.yb5{bottom:826.966400pt;}
.y81{bottom:826.971733pt;}
.y105{bottom:838.137333pt;}
.y106{bottom:838.138533pt;}
.y167{bottom:838.575867pt;}
.y168{bottom:838.576933pt;}
.y2f{bottom:844.273067pt;}
.yb4{bottom:844.294400pt;}
.y80{bottom:844.299733pt;}
.y2e{bottom:844.319733pt;}
.y103{bottom:850.852533pt;}
.y104{bottom:850.858667pt;}
.y165{bottom:851.296133pt;}
.y166{bottom:851.297200pt;}
.yb3{bottom:861.622400pt;}
.y7f{bottom:861.627733pt;}
.y58{bottom:861.659733pt;}
.y1c{bottom:863.341067pt;}
.y102{bottom:863.573867pt;}
.y164{bottom:864.017467pt;}
.y101{bottom:876.295200pt;}
.y163{bottom:876.736667pt;}
.yb2{bottom:878.950400pt;}
.y7e{bottom:878.955733pt;}
.y2d{bottom:878.987733pt;}
.y100{bottom:889.016533pt;}
.y161{bottom:889.453867pt;}
.y162{bottom:889.458000pt;}
.yb1{bottom:896.278400pt;}
.y7d{bottom:896.283733pt;}
.y2c{bottom:896.315733pt;}
.yff{bottom:901.737867pt;}
.y160{bottom:902.175200pt;}
.y7c{bottom:913.611733pt;}
.yb0{bottom:913.627733pt;}
.y2b{bottom:913.643733pt;}
.yfe{bottom:914.459200pt;}
.y15f{bottom:914.896533pt;}
.yfd{bottom:927.180533pt;}
.y15e{bottom:927.617867pt;}
.y7b{bottom:930.939733pt;}
.yaf{bottom:930.955733pt;}
.y2a{bottom:930.971733pt;}
.y1b{bottom:939.314400pt;}
.yfc{bottom:939.899733pt;}
.y15d{bottom:940.339200pt;}
.yae{bottom:948.283733pt;}
.y29{bottom:948.299733pt;}
.yfb{bottom:952.621067pt;}
.y15c{bottom:953.056267pt;}
.yf9{bottom:965.340267pt;}
.yfa{bottom:965.341333pt;}
.yad{bottom:965.611733pt;}
.y28{bottom:965.627733pt;}
.y15b{bottom:965.777600pt;}
.yf7{bottom:978.060533pt;}
.yf8{bottom:978.061600pt;}
.y15a{bottom:978.498933pt;}
.yac{bottom:982.939733pt;}
.y27{bottom:982.955733pt;}
.yf5{bottom:990.779600pt;}
.yf6{bottom:990.781867pt;}
.y159{bottom:991.220267pt;}
.y26{bottom:1000.283733pt;}
.yf4{bottom:1003.500933pt;}
.y158{bottom:1003.938400pt;}
.yf2{bottom:1016.221333pt;}
.yf3{bottom:1016.222267pt;}
.y157{bottom:1016.659733pt;}
.y25{bottom:1017.611733pt;}
.yf1{bottom:1028.942667pt;}
.y156{bottom:1029.381067pt;}
.y24{bottom:1034.939733pt;}
.yf0{bottom:1040.442667pt;}
.h4{height:27.242043pt;}
.h3{height:29.597333pt;}
.hc{height:30.800000pt;}
.hf{height:31.285333pt;}
.he{height:31.675315pt;}
.h10{height:32.288000pt;}
.h12{height:37.146667pt;}
.h13{height:37.609712pt;}
.hd{height:37.669333pt;}
.h9{height:38.490667pt;}
.h11{height:38.970465pt;}
.h5{height:40.224000pt;}
.h6{height:40.725425pt;}
.h2{height:43.050667pt;}
.hb{height:44.537687pt;}
.ha{height:48.355368pt;}
.h8{height:145.521493pt;}
.h7{height:179.036587pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:32.870400pt;}
.x1e{left:56.696400pt;}
.x22{left:75.548933pt;}
.x21{left:85.752667pt;}
.x23{left:93.038933pt;}
.x24{left:103.044667pt;}
.x6{left:105.813600pt;}
.x39{left:108.668133pt;}
.x44{left:110.085467pt;}
.x34{left:116.497467pt;}
.x40{left:130.844267pt;}
.x4a{left:138.526533pt;}
.x42{left:143.819067pt;}
.x2e{left:146.783467pt;}
.x4b{left:155.406667pt;}
.x20{left:156.939067pt;}
.x2f{left:164.824667pt;}
.x2a{left:168.044667pt;}
.x41{left:173.825600pt;}
.x3a{left:175.942133pt;}
.x3e{left:177.505067pt;}
.x3f{left:178.459067pt;}
.x25{left:183.887867pt;}
.x45{left:192.102667pt;}
.x1f{left:195.846667pt;}
.x46{left:197.114000pt;}
.x26{left:202.260933pt;}
.x2b{left:206.285467pt;}
.x3d{left:215.719200pt;}
.xa{left:222.991600pt;}
.x29{left:225.139067pt;}
.x48{left:228.323867pt;}
.x37{left:231.208000pt;}
.x31{left:238.067333pt;}
.x35{left:247.262267pt;}
.x33{left:251.885067pt;}
.x3{left:253.228400pt;}
.x36{left:255.573600pt;}
.x2d{left:268.346667pt;}
.x47{left:282.534533pt;}
.x15{left:290.980133pt;}
.x38{left:293.046533pt;}
.x3c{left:301.599867pt;}
.x30{left:302.873067pt;}
.x3b{left:313.842000pt;}
.x2c{left:314.927867pt;}
.x49{left:323.903733pt;}
.x27{left:326.118533pt;}
.xf{left:338.943200pt;}
.x43{left:348.193733pt;}
.x13{left:349.930400pt;}
.x28{left:356.133600pt;}
.x11{left:357.163733pt;}
.x32{left:374.503467pt;}
.x8{left:379.862800pt;}
.x4c{left:400.629333pt;}
.x19{left:405.177600pt;}
.x60{left:411.343600pt;}
.x68{left:415.268000pt;}
.x50{left:417.676133pt;}
.xd{left:420.607467pt;}
.x64{left:427.613733pt;}
.x2{left:433.196800pt;}
.x10{left:435.518000pt;}
.x1a{left:439.491333pt;}
.x6b{left:445.906933pt;}
.x1b{left:449.054133pt;}
.x1d{left:459.847600pt;}
.x4{left:461.470400pt;}
.x17{left:462.614933pt;}
.x5f{left:464.505600pt;}
.x57{left:469.685733pt;}
.x72{left:470.776400pt;}
.x5e{left:472.636267pt;}
.x16{left:480.636667pt;}
.x4e{left:492.643867pt;}
.x1c{left:499.550667pt;}
.x67{left:503.061867pt;}
.x73{left:511.000667pt;}
.x70{left:524.575200pt;}
.xe{left:530.228400pt;}
.x6c{left:531.327067pt;}
.x51{left:539.076400pt;}
.x53{left:540.030667pt;}
.xb{left:540.986000pt;}
.x12{left:542.037200pt;}
.x4f{left:546.778933pt;}
.x55{left:548.302000pt;}
.x61{left:552.440800pt;}
.x62{left:554.356267pt;}
.x59{left:558.787200pt;}
.x18{left:562.028000pt;}
.x5d{left:567.262400pt;}
.x7{left:571.935067pt;}
.x58{left:575.495200pt;}
.x14{left:580.826933pt;}
.x69{left:587.643467pt;}
.x66{left:591.000667pt;}
.x5b{left:592.896133pt;}
.x5{left:595.344267pt;}
.x4d{left:602.411467pt;}
.x5c{left:617.054400pt;}
.x54{left:618.463333pt;}
.x65{left:620.063867pt;}
.x5a{left:624.075200pt;}
.x71{left:631.578800pt;}
.x6f{left:635.088267pt;}
.x52{left:637.757600pt;}
.x6a{left:644.725067pt;}
.x56{left:648.913200pt;}
.x63{left:652.086400pt;}
.x6d{left:657.635200pt;}
.x6e{left:678.735200pt;}
.xc{left:684.178800pt;}
.x9{left:743.084933pt;}
}

