
    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_6c5b198d43101ca8ecb6c22c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.286133;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_65dbf255a633020d4b8a04ca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.700684;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_334e5f9f88296d5a057cf128.woff')format("woff");}.ff3{font-family:ff3;line-height:1.286133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.394000px;}
.ls7{letter-spacing:-2.364000px;}
.ls1{letter-spacing:-2.340000px;}
.ls5{letter-spacing:-2.304000px;}
.ls6{letter-spacing:-2.268000px;}
.ls25{letter-spacing:-1.410000px;}
.ls20{letter-spacing:-1.392000px;}
.ls32{letter-spacing:-1.296000px;}
.ls34{letter-spacing:-1.290000px;}
.ls35{letter-spacing:-1.278000px;}
.ls23{letter-spacing:-1.266000px;}
.ls31{letter-spacing:-1.260000px;}
.ls2e{letter-spacing:-1.254000px;}
.ls17{letter-spacing:-1.248000px;}
.ls26{letter-spacing:-1.242000px;}
.ls11{letter-spacing:-1.236000px;}
.ls18{letter-spacing:-1.230000px;}
.ls2b{letter-spacing:-1.224000px;}
.lsa{letter-spacing:-1.218000px;}
.ls1b{letter-spacing:-1.212000px;}
.ls19{letter-spacing:-1.206000px;}
.ls1f{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.194000px;}
.ls15{letter-spacing:-1.188000px;}
.lsd{letter-spacing:-1.182000px;}
.ls1c{letter-spacing:-1.176000px;}
.lsc{letter-spacing:-1.170000px;}
.ls2a{letter-spacing:-1.164000px;}
.ls12{letter-spacing:-1.158000px;}
.ls1a{letter-spacing:-1.152000px;}
.ls14{letter-spacing:-1.146000px;}
.ls10{letter-spacing:-1.140000px;}
.ls13{letter-spacing:-1.134000px;}
.ls21{letter-spacing:-1.128000px;}
.ls1e{letter-spacing:-1.122000px;}
.ls29{letter-spacing:-1.116000px;}
.lsf{letter-spacing:-1.110000px;}
.ls1d{letter-spacing:-1.104000px;}
.lse{letter-spacing:-1.098000px;}
.ls16{letter-spacing:-1.092000px;}
.ls27{letter-spacing:-1.086000px;}
.ls28{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-1.074000px;}
.ls2c{letter-spacing:-1.068000px;}
.ls24{letter-spacing:-1.050000px;}
.ls2f{letter-spacing:-1.032000px;}
.ls2d{letter-spacing:-0.978000px;}
.ls36{letter-spacing:-0.930000px;}
.ls30{letter-spacing:-0.690000px;}
.ls8{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.024000px;}
.ls3{letter-spacing:1.254000px;}
.ls2{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.302000px;}
.ls4{letter-spacing:1.338000px;}
.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;}
}
.ws3{word-spacing:-50.407200px;}
.ws2{word-spacing:-48.043200px;}
.ws8f{word-spacing:-43.200000px;}
.ws87{word-spacing:-42.510000px;}
.ws30{word-spacing:-42.150000px;}
.ws88{word-spacing:-42.102000px;}
.ws6a{word-spacing:-42.078000px;}
.ws96{word-spacing:-42.066000px;}
.ws9d{word-spacing:-42.060000px;}
.ws46{word-spacing:-42.030000px;}
.ws6d{word-spacing:-41.994000px;}
.ws5b{word-spacing:-41.970000px;}
.ws91{word-spacing:-41.790000px;}
.ws83{word-spacing:-41.779200px;}
.ws77{word-spacing:-0.900000px;}
.ws6b{word-spacing:-0.630000px;}
.ws1{word-spacing:-0.619200px;}
.ws0{word-spacing:-0.612000px;}
.wsa3{word-spacing:-0.480000px;}
.ws6f{word-spacing:-0.426000px;}
.ws5c{word-spacing:-0.360000px;}
.ws6e{word-spacing:-0.336000px;}
.ws36{word-spacing:-0.330000px;}
.ws45{word-spacing:-0.324000px;}
.ws3d{word-spacing:-0.318000px;}
.ws11{word-spacing:-0.312000px;}
.ws34{word-spacing:-0.306000px;}
.ws35{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.294000px;}
.ws42{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.282000px;}
.ws5d{word-spacing:-0.276000px;}
.ws2a{word-spacing:-0.270000px;}
.ws1c{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.258000px;}
.ws6{word-spacing:-0.252000px;}
.ws8c{word-spacing:-0.246000px;}
.ws47{word-spacing:-0.240000px;}
.ws5f{word-spacing:-0.234000px;}
.ws90{word-spacing:-0.222000px;}
.ws9b{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.210000px;}
.ws9c{word-spacing:-0.204000px;}
.wse{word-spacing:-0.198000px;}
.ws17{word-spacing:-0.192000px;}
.ws53{word-spacing:-0.186000px;}
.ws43{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.174000px;}
.ws3c{word-spacing:-0.168000px;}
.ws33{word-spacing:-0.162000px;}
.ws75{word-spacing:-0.156000px;}
.ws31{word-spacing:-0.150000px;}
.ws3f{word-spacing:-0.144000px;}
.ws56{word-spacing:-0.138000px;}
.ws3a{word-spacing:-0.132000px;}
.ws38{word-spacing:-0.126000px;}
.ws5a{word-spacing:-0.120000px;}
.ws4c{word-spacing:-0.114000px;}
.ws7b{word-spacing:-0.108000px;}
.ws41{word-spacing:-0.102000px;}
.ws49{word-spacing:-0.096000px;}
.ws85{word-spacing:-0.090000px;}
.ws68{word-spacing:-0.084000px;}
.ws12{word-spacing:-0.078000px;}
.ws1e{word-spacing:-0.072000px;}
.ws29{word-spacing:-0.066000px;}
.ws18{word-spacing:-0.060000px;}
.ws5e{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.048000px;}
.ws2d{word-spacing:-0.042000px;}
.ws76{word-spacing:-0.036000px;}
.ws52{word-spacing:-0.030000px;}
.ws54{word-spacing:-0.024000px;}
.ws5{word-spacing:-0.018000px;}
.ws23{word-spacing:-0.012000px;}
.ws2c{word-spacing:-0.006000px;}
.ws4{word-spacing:0.000000px;}
.wsa1{word-spacing:0.006000px;}
.ws4f{word-spacing:0.012000px;}
.ws92{word-spacing:0.018000px;}
.ws9{word-spacing:0.024000px;}
.ws70{word-spacing:0.030000px;}
.ws48{word-spacing:0.036000px;}
.ws26{word-spacing:0.042000px;}
.ws51{word-spacing:0.048000px;}
.wsa{word-spacing:0.054000px;}
.ws59{word-spacing:0.060000px;}
.ws4a{word-spacing:0.066000px;}
.ws65{word-spacing:0.072000px;}
.ws67{word-spacing:0.078000px;}
.ws61{word-spacing:0.084000px;}
.ws66{word-spacing:0.090000px;}
.ws84{word-spacing:0.096000px;}
.ws2e{word-spacing:0.102000px;}
.ws50{word-spacing:0.108000px;}
.ws14{word-spacing:0.114000px;}
.ws1b{word-spacing:0.120000px;}
.ws24{word-spacing:0.126000px;}
.ws7{word-spacing:0.132000px;}
.ws3b{word-spacing:0.138000px;}
.ws32{word-spacing:0.144000px;}
.ws6c{word-spacing:0.150000px;}
.ws8a{word-spacing:0.156000px;}
.ws79{word-spacing:0.174000px;}
.ws7e{word-spacing:0.180000px;}
.ws58{word-spacing:0.186000px;}
.ws9f{word-spacing:0.192000px;}
.ws95{word-spacing:0.198000px;}
.ws62{word-spacing:0.204000px;}
.ws78{word-spacing:0.210000px;}
.ws20{word-spacing:0.216000px;}
.ws7d{word-spacing:0.222000px;}
.ws57{word-spacing:0.228000px;}
.ws8{word-spacing:0.234000px;}
.ws2b{word-spacing:0.240000px;}
.ws19{word-spacing:0.246000px;}
.ws44{word-spacing:0.252000px;}
.ws9a{word-spacing:0.258000px;}
.ws1d{word-spacing:0.264000px;}
.ws1a{word-spacing:0.270000px;}
.ws55{word-spacing:0.276000px;}
.ws69{word-spacing:0.282000px;}
.ws10{word-spacing:0.288000px;}
.ws4d{word-spacing:0.300000px;}
.wsf{word-spacing:0.306000px;}
.ws94{word-spacing:0.312000px;}
.ws8e{word-spacing:0.324000px;}
.ws2f{word-spacing:0.330000px;}
.ws4e{word-spacing:0.336000px;}
.ws7f{word-spacing:0.342000px;}
.ws72{word-spacing:0.348000px;}
.ws1f{word-spacing:0.360000px;}
.ws97{word-spacing:0.366000px;}
.ws81{word-spacing:0.372000px;}
.ws4b{word-spacing:0.378000px;}
.ws80{word-spacing:0.384000px;}
.ws15{word-spacing:0.396000px;}
.wsc{word-spacing:0.402000px;}
.wsa0{word-spacing:0.414000px;}
.ws74{word-spacing:0.426000px;}
.ws93{word-spacing:0.432000px;}
.wsa4{word-spacing:0.438000px;}
.ws64{word-spacing:0.444000px;}
.ws98{word-spacing:0.450000px;}
.ws8b{word-spacing:0.462000px;}
.ws16{word-spacing:0.480000px;}
.ws63{word-spacing:0.492000px;}
.ws22{word-spacing:0.498000px;}
.ws9e{word-spacing:0.504000px;}
.ws82{word-spacing:0.510000px;}
.ws7a{word-spacing:0.516000px;}
.ws21{word-spacing:0.522000px;}
.ws37{word-spacing:0.528000px;}
.ws40{word-spacing:0.540000px;}
.ws60{word-spacing:0.546000px;}
.ws73{word-spacing:0.552000px;}
.ws13{word-spacing:0.558000px;}
.ws71{word-spacing:0.564000px;}
.ws7c{word-spacing:0.576000px;}
.wsa2{word-spacing:0.588000px;}
.ws99{word-spacing:0.600000px;}
.ws8d{word-spacing:0.606000px;}
.ws89{word-spacing:0.630000px;}
.ws39{word-spacing:0.720000px;}
.ws86{word-spacing:6.300000px;}
._0{margin-left:-2.359200px;}
._1{margin-left:-1.116000px;}
._5{width:1.303200px;}
._4{width:5.103600px;}
._3{width:6.422400px;}
._2{width:40.800000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:71.952000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.012000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:188.280000px;}
.yc5{bottom:189.720000px;}
.y83{bottom:191.160000px;}
.y186{bottom:192.780000px;}
.y10d{bottom:195.660000px;}
.y194{bottom:197.280000px;}
.y1ad{bottom:198.720000px;}
.y1a2{bottom:201.780000px;}
.y191{bottom:203.220000px;}
.y139{bottom:204.660000px;}
.y5b{bottom:206.280000px;}
.yc4{bottom:207.720000px;}
.y82{bottom:209.160000px;}
.y185{bottom:210.780000px;}
.y1b6{bottom:212.220000px;}
.y10c{bottom:213.660000px;}
.ybd{bottom:215.280000px;}
.y1ac{bottom:216.720000px;}
.y1c5{bottom:218.160000px;}
.y31{bottom:219.780000px;}
.y75{bottom:221.220000px;}
.y138{bottom:222.660000px;}
.y5a{bottom:224.280000px;}
.yc1{bottom:225.720000px;}
.yd3{bottom:227.160000px;}
.y184{bottom:228.780000px;}
.y1b5{bottom:230.220000px;}
.y19f{bottom:231.660000px;}
.ybc{bottom:233.280000px;}
.y1ab{bottom:234.720000px;}
.y1c4{bottom:236.160000px;}
.y30{bottom:237.780000px;}
.y74{bottom:239.220000px;}
.ye3{bottom:240.660000px;}
.y59{bottom:242.280000px;}
.y81{bottom:243.720000px;}
.yd2{bottom:245.160000px;}
.y183{bottom:246.780000px;}
.y10b{bottom:248.220000px;}
.y19e{bottom:249.660000px;}
.y15a{bottom:251.280000px;}
.y11c{bottom:252.720000px;}
.y12f{bottom:254.160000px;}
.y2f{bottom:255.780000px;}
.yfa{bottom:257.220000px;}
.ye0{bottom:258.660000px;}
.y58{bottom:260.280000px;}
.y80{bottom:261.720000px;}
.y182{bottom:264.780000px;}
.y10a{bottom:266.220000px;}
.ybb{bottom:267.660000px;}
.y159{bottom:269.280000px;}
.y7{bottom:270.180000px;}
.y11b{bottom:270.720000px;}
.y12e{bottom:272.160000px;}
.y2e{bottom:273.780000px;}
.yf9{bottom:275.220000px;}
.ye2{bottom:276.660000px;}
.yc3{bottom:278.280000px;}
.y9c{bottom:279.720000px;}
.y181{bottom:282.780000px;}
.y19d{bottom:284.220000px;}
.yba{bottom:285.660000px;}
.y1aa{bottom:287.280000px;}
.y11a{bottom:288.720000px;}
.y198{bottom:290.160000px;}
.y6{bottom:291.240000px;}
.y2d{bottom:291.780000px;}
.ydf{bottom:293.220000px;}
.y57{bottom:294.660000px;}
.y7f{bottom:296.280000px;}
.y9b{bottom:297.720000px;}
.y109{bottom:300.780000px;}
.y19c{bottom:302.220000px;}
.yb9{bottom:303.660000px;}
.y193{bottom:304.740000px;}
.y1a9{bottom:305.280000px;}
.y12d{bottom:306.720000px;}
.y73{bottom:308.160000px;}
.y72{bottom:309.240000px;}
.y2c{bottom:309.780000px;}
.yde{bottom:311.220000px;}
.y5{bottom:312.300000px;}
.y56{bottom:312.660000px;}
.y7e{bottom:314.280000px;}
.y180{bottom:317.160000px;}
.y108{bottom:318.780000px;}
.y19b{bottom:320.220000px;}
.y158{bottom:321.660000px;}
.y119{bottom:323.280000px;}
.y12c{bottom:324.720000px;}
.y190{bottom:326.160000px;}
.yf8{bottom:327.780000px;}
.ydd{bottom:329.220000px;}
.y55{bottom:330.660000px;}
.y9a{bottom:332.280000px;}
.y17f{bottom:335.160000px;}
.y107{bottom:336.780000px;}
.yb8{bottom:338.220000px;}
.y157{bottom:339.660000px;}
.y118{bottom:341.280000px;}
.y1e1{bottom:342.180000px;}
.y1a1{bottom:342.720000px;}
.y2b{bottom:344.160000px;}
.yf7{bottom:345.780000px;}
.ydc{bottom:347.220000px;}
.y7d{bottom:348.660000px;}
.y71{bottom:350.280000px;}
.y17e{bottom:353.160000px;}
.y106{bottom:354.780000px;}
.yb7{bottom:356.220000px;}
.y156{bottom:357.660000px;}
.y117{bottom:359.280000px;}
.y12b{bottom:360.180000px;}
.y1a0{bottom:360.720000px;}
.y2a{bottom:362.160000px;}
.yf6{bottom:363.780000px;}
.y54{bottom:365.220000px;}
.y7c{bottom:366.660000px;}
.y99{bottom:368.280000px;}
.y17d{bottom:371.160000px;}
.y105{bottom:372.780000px;}
.yb6{bottom:374.220000px;}
.y116{bottom:377.280000px;}
.y18f{bottom:378.720000px;}
.y29{bottom:380.160000px;}
.yf5{bottom:381.780000px;}
.y53{bottom:383.220000px;}
.y70{bottom:384.660000px;}
.y98{bottom:386.280000px;}
.y1ef{bottom:387.720000px;}
.y17c{bottom:389.160000px;}
.y104{bottom:390.780000px;}
.y155{bottom:392.220000px;}
.y1a8{bottom:393.660000px;}
.y115{bottom:395.280000px;}
.y18e{bottom:396.720000px;}
.y129{bottom:398.160000px;}
.y197{bottom:399.780000px;}
.y52{bottom:401.220000px;}
.y6f{bottom:402.660000px;}
.y1ee{bottom:405.720000px;}
.y17b{bottom:407.160000px;}
.y1b4{bottom:408.240000px;}
.yb5{bottom:408.780000px;}
.y154{bottom:410.220000px;}
.y1a7{bottom:411.660000px;}
.y28{bottom:414.720000px;}
.yf4{bottom:416.160000px;}
.y196{bottom:417.780000px;}
.y7b{bottom:419.220000px;}
.y6e{bottom:420.660000px;}
.y1ed{bottom:423.720000px;}
.y17a{bottom:425.160000px;}
.yb4{bottom:426.780000px;}
.y153{bottom:428.220000px;}
.y114{bottom:429.660000px;}
.y18d{bottom:431.280000px;}
.y27{bottom:432.720000px;}
.yf3{bottom:434.160000px;}
.y51{bottom:435.780000px;}
.y7a{bottom:437.220000px;}
.y6d{bottom:438.660000px;}
.y1ec{bottom:441.720000px;}
.y1da{bottom:443.160000px;}
.yb3{bottom:444.780000px;}
.y152{bottom:446.220000px;}
.y113{bottom:447.660000px;}
.y18c{bottom:449.280000px;}
.y128{bottom:450.720000px;}
.y137{bottom:452.160000px;}
.y50{bottom:453.780000px;}
.y79{bottom:455.220000px;}
.y97{bottom:456.660000px;}
.y179{bottom:459.720000px;}
.yb2{bottom:462.780000px;}
.y151{bottom:464.220000px;}
.y112{bottom:465.660000px;}
.y26{bottom:467.280000px;}
.yf2{bottom:468.720000px;}
.y4f{bottom:471.780000px;}
.y6c{bottom:473.220000px;}
.y96{bottom:474.660000px;}
.y178{bottom:477.720000px;}
.y1e0{bottom:479.160000px;}
.y1df{bottom:480.240000px;}
.yb1{bottom:480.780000px;}
.y1ae{bottom:481.680000px;}
.y150{bottom:482.220000px;}
.y18b{bottom:483.660000px;}
.y25{bottom:485.280000px;}
.yf1{bottom:486.720000px;}
.y195{bottom:488.160000px;}
.y78{bottom:489.780000px;}
.y6b{bottom:491.220000px;}
.y95{bottom:492.660000px;}
.y177{bottom:495.720000px;}
.yb0{bottom:498.780000px;}
.y111{bottom:500.220000px;}
.y18a{bottom:501.660000px;}
.y24{bottom:503.280000px;}
.yf0{bottom:504.720000px;}
.y4e{bottom:506.160000px;}
.yc0{bottom:507.780000px;}
.y94{bottom:510.660000px;}
.y1d9{bottom:512.280000px;}
.y1eb{bottom:513.720000px;}
.y19a{bottom:515.160000px;}
.y199{bottom:516.240000px;}
.yaf{bottom:516.780000px;}
.y110{bottom:518.220000px;}
.y1b3{bottom:519.660000px;}
.y127{bottom:521.280000px;}
.yef{bottom:522.720000px;}
.y4d{bottom:524.160000px;}
.y6a{bottom:525.780000px;}
.y93{bottom:528.660000px;}
.y176{bottom:530.280000px;}
.y103{bottom:533.160000px;}
.y102{bottom:534.240000px;}
.yae{bottom:534.780000px;}
.y10f{bottom:536.220000px;}
.y23{bottom:537.660000px;}
.y126{bottom:539.280000px;}
.y13a{bottom:540.720000px;}
.y4c{bottom:542.160000px;}
.y69{bottom:543.780000px;}
.y92{bottom:546.660000px;}
.y175{bottom:548.280000px;}
.yad{bottom:552.780000px;}
.y189{bottom:554.220000px;}
.y22{bottom:555.660000px;}
.yee{bottom:557.280000px;}
.y192{bottom:558.720000px;}
.ybf{bottom:560.160000px;}
.yd1{bottom:561.780000px;}
.y91{bottom:564.660000px;}
.y174{bottom:566.280000px;}
.y14f{bottom:569.160000px;}
.yac{bottom:570.780000px;}
.y10e{bottom:571.680000px;}
.y1b2{bottom:572.220000px;}
.y21{bottom:573.660000px;}
.yed{bottom:575.280000px;}
.y4b{bottom:576.720000px;}
.y68{bottom:578.160000px;}
.y173{bottom:584.280000px;}
.y14e{bottom:587.160000px;}
.yab{bottom:588.780000px;}
.y1b1{bottom:590.220000px;}
.y20{bottom:591.660000px;}
.yec{bottom:593.280000px;}
.y4a{bottom:594.720000px;}
.y67{bottom:596.160000px;}
.y90{bottom:599.220000px;}
.y1d8{bottom:600.660000px;}
.y172{bottom:602.280000px;}
.y14d{bottom:605.160000px;}
.yaa{bottom:606.780000px;}
.y1b0{bottom:608.220000px;}
.y1f{bottom:609.660000px;}
.yeb{bottom:611.280000px;}
.y49{bottom:612.720000px;}
.yc2{bottom:614.160000px;}
.y8f{bottom:617.220000px;}
.y1d7{bottom:618.660000px;}
.y171{bottom:620.280000px;}
.y14c{bottom:623.160000px;}
.y1c3{bottom:624.780000px;}
.y1af{bottom:626.220000px;}
.y125{bottom:627.660000px;}
.yea{bottom:629.280000px;}
.y66{bottom:630.720000px;}
.ydb{bottom:632.160000px;}
.y1d6{bottom:636.660000px;}
.y170{bottom:638.280000px;}
.y1a6{bottom:639.720000px;}
.ya9{bottom:641.160000px;}
.y1c2{bottom:642.780000px;}
.y1e{bottom:644.220000px;}
.y124{bottom:645.660000px;}
.y48{bottom:647.280000px;}
.ybe{bottom:648.720000px;}
.y8e{bottom:651.780000px;}
.y1d5{bottom:654.660000px;}
.y16f{bottom:656.280000px;}
.y1a5{bottom:657.720000px;}
.ya8{bottom:659.160000px;}
.y1c1{bottom:660.780000px;}
.y1d{bottom:662.220000px;}
.ye9{bottom:663.660000px;}
.y47{bottom:665.280000px;}
.yd0{bottom:666.720000px;}
.y8d{bottom:669.780000px;}
.y1ea{bottom:672.660000px;}
.y16e{bottom:674.280000px;}
.y14b{bottom:675.720000px;}
.ya7{bottom:677.160000px;}
.y1c0{bottom:678.780000px;}
.y136{bottom:680.220000px;}
.ye8{bottom:681.660000px;}
.y46{bottom:683.280000px;}
.ycf{bottom:684.720000px;}
.y1d4{bottom:689.220000px;}
.y14a{bottom:693.720000px;}
.y1de{bottom:695.160000px;}
.y1c{bottom:696.780000px;}
.y123{bottom:698.220000px;}
.ye7{bottom:699.660000px;}
.y45{bottom:701.280000px;}
.yda{bottom:702.720000px;}
.y8c{bottom:704.160000px;}
.y1d3{bottom:707.220000px;}
.y16d{bottom:708.660000px;}
.ya6{bottom:711.720000px;}
.y1bf{bottom:713.160000px;}
.y1b{bottom:714.780000px;}
.y122{bottom:716.220000px;}
.y65{bottom:717.660000px;}
.y77{bottom:719.280000px;}
.y1e9{bottom:725.220000px;}
.y16c{bottom:726.660000px;}
.y149{bottom:728.280000px;}
.ya5{bottom:729.720000px;}
.y1be{bottom:731.160000px;}
.y135{bottom:732.780000px;}
.y101{bottom:734.220000px;}
.y44{bottom:735.660000px;}
.yce{bottom:737.280000px;}
.y8b{bottom:738.720000px;}
.y1d2{bottom:741.780000px;}
.y1e8{bottom:743.220000px;}
.y16b{bottom:744.660000px;}
.y148{bottom:746.280000px;}
.ya4{bottom:747.720000px;}
.y1a{bottom:749.160000px;}
.y121{bottom:750.780000px;}
.ye6{bottom:752.220000px;}
.y43{bottom:753.660000px;}
.yd9{bottom:755.280000px;}
.y8a{bottom:756.720000px;}
.y1d1{bottom:759.780000px;}
.y1e7{bottom:761.220000px;}
.y16a{bottom:762.660000px;}
.y147{bottom:764.280000px;}
.ya3{bottom:765.720000px;}
.y19{bottom:767.160000px;}
.y120{bottom:768.780000px;}
.ye5{bottom:770.220000px;}
.y42{bottom:771.660000px;}
.yd8{bottom:773.280000px;}
.y1d0{bottom:777.780000px;}
.y1b9{bottom:780.660000px;}
.y146{bottom:782.280000px;}
.ya2{bottom:783.720000px;}
.y18{bottom:785.160000px;}
.y11f{bottom:786.780000px;}
.ye4{bottom:788.220000px;}
.y76{bottom:789.660000px;}
.y89{bottom:791.280000px;}
.y1cf{bottom:795.780000px;}
.y169{bottom:797.220000px;}
.y1b8{bottom:798.660000px;}
.y145{bottom:800.280000px;}
.ya1{bottom:801.720000px;}
.y134{bottom:803.160000px;}
.y100{bottom:804.780000px;}
.y41{bottom:806.220000px;}
.yd7{bottom:807.660000px;}
.y1ce{bottom:813.780000px;}
.y168{bottom:815.220000px;}
.y1a4{bottom:816.660000px;}
.y188{bottom:818.280000px;}
.y17{bottom:819.720000px;}
.y133{bottom:821.160000px;}
.y11e{bottom:822.780000px;}
.y40{bottom:824.220000px;}
.y88{bottom:825.660000px;}
.y1cd{bottom:831.780000px;}
.y167{bottom:833.220000px;}
.y144{bottom:834.660000px;}
.y1dd{bottom:836.280000px;}
.y16{bottom:837.720000px;}
.yff{bottom:839.160000px;}
.y11d{bottom:840.780000px;}
.y3f{bottom:842.220000px;}
.y87{bottom:843.660000px;}
.y1cc{bottom:849.780000px;}
.y166{bottom:851.220000px;}
.y1b7{bottom:852.300000px;}
.y143{bottom:852.660000px;}
.ya0{bottom:854.280000px;}
.y15{bottom:855.720000px;}
.yfe{bottom:857.160000px;}
.ycd{bottom:858.780000px;}
.y3e{bottom:860.220000px;}
.yd6{bottom:861.660000px;}
.y1e6{bottom:866.160000px;}
.y1e5{bottom:867.240000px;}
.y1cb{bottom:867.780000px;}
.y165{bottom:869.220000px;}
.y142{bottom:870.660000px;}
.y1bd{bottom:872.280000px;}
.y14{bottom:873.720000px;}
.yfd{bottom:875.160000px;}
.y64{bottom:876.780000px;}
.y86{bottom:878.220000px;}
.y1ca{bottom:885.780000px;}
.y164{bottom:887.220000px;}
.y9f{bottom:888.660000px;}
.y9e{bottom:889.740000px;}
.y1bc{bottom:890.280000px;}
.y13{bottom:891.720000px;}
.yfc{bottom:893.160000px;}
.y3d{bottom:894.780000px;}
.y85{bottom:896.220000px;}
.y1c9{bottom:903.780000px;}
.y163{bottom:905.220000px;}
.y1e2{bottom:906.300000px;}
.y1dc{bottom:906.660000px;}
.y1bb{bottom:908.280000px;}
.y132{bottom:909.720000px;}
.ycc{bottom:911.160000px;}
.y63{bottom:912.780000px;}
.yd5{bottom:914.220000px;}
.y4{bottom:918.540000px;}
.y1c8{bottom:921.780000px;}
.y141{bottom:923.220000px;}
.y187{bottom:924.300000px;}
.y12{bottom:926.280000px;}
.y131{bottom:927.720000px;}
.y3c{bottom:929.160000px;}
.y62{bottom:930.780000px;}
.y162{bottom:939.780000px;}
.y140{bottom:941.220000px;}
.y1db{bottom:942.300000px;}
.y11{bottom:944.280000px;}
.yfb{bottom:945.720000px;}
.y3b{bottom:947.160000px;}
.y61{bottom:948.780000px;}
.y161{bottom:957.780000px;}
.y13f{bottom:959.220000px;}
.y1f2{bottom:960.660000px;}
.y10{bottom:962.280000px;}
.ycb{bottom:963.720000px;}
.y3a{bottom:965.160000px;}
.yd4{bottom:966.780000px;}
.y3{bottom:969.660000px;}
.y160{bottom:975.780000px;}
.y1a3{bottom:976.680000px;}
.y13e{bottom:977.220000px;}
.y1e4{bottom:978.660000px;}
.yf{bottom:980.280000px;}
.yca{bottom:981.720000px;}
.y60{bottom:983.160000px;}
.y15f{bottom:993.780000px;}
.y2{bottom:995.040000px;}
.y13d{bottom:995.220000px;}
.y1ba{bottom:996.660000px;}
.y130{bottom:998.280000px;}
.y39{bottom:999.720000px;}
.y5f{bottom:1001.160000px;}
.y15e{bottom:1011.780000px;}
.ye{bottom:1014.660000px;}
.yc9{bottom:1016.280000px;}
.y38{bottom:1017.720000px;}
.y5e{bottom:1019.160000px;}
.y13c{bottom:1029.780000px;}
.y13b{bottom:1030.680000px;}
.yd{bottom:1032.660000px;}
.yc8{bottom:1034.280000px;}
.y37{bottom:1035.720000px;}
.y5d{bottom:1037.160000px;}
.y1c7{bottom:1046.160000px;}
.y1c6{bottom:1047.240000px;}
.y15d{bottom:1047.780000px;}
.y1e3{bottom:1049.220000px;}
.y1f1{bottom:1050.660000px;}
.yc7{bottom:1052.280000px;}
.y36{bottom:1053.720000px;}
.y1{bottom:1058.040000px;}
.yc{bottom:1067.220000px;}
.y1f0{bottom:1068.660000px;}
.yc6{bottom:1070.280000px;}
.y35{bottom:1071.720000px;}
.y15c{bottom:1082.160000px;}
.y15b{bottom:1083.240000px;}
.yb{bottom:1085.220000px;}
.y9d{bottom:1088.280000px;}
.y84{bottom:1089.720000px;}
.ya{bottom:1103.220000px;}
.y34{bottom:1106.280000px;}
.y33{bottom:1124.280000px;}
.y9{bottom:1137.780000px;}
.y8{bottom:1138.680000px;}
.y32{bottom:1142.280000px;}
.y12a{bottom:1161.720000px;}
.y5c{bottom:1196.280000px;}
.h7{height:63.133664px;}
.h6{height:63.175781px;}
.h5{height:73.511719px;}
.h4{height:73.715607px;}
.h3{height:94.763672px;}
.h2{height:126.351562px;}
.h0{height:1262.829000px;}
.h1{height:1263.000000px;}
.w0{width:892.909500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:80.820000px;}
.x5{left:107.820000px;}
.x6{left:161.820000px;}
.x3{left:185.940000px;}
.x2{left:211.320000px;}
.x9{left:269.820000px;}
.x4{left:310.320000px;}
.xa{left:313.380000px;}
.xb{left:323.820000px;}
.x8{left:377.820000px;}
.x1{left:416.880000px;}
.xd{left:593.820000px;}
.xe{left:751.140000px;}
.xc{left:761.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.128000pt;}
.ls7{letter-spacing:-2.101333pt;}
.ls1{letter-spacing:-2.080000pt;}
.ls5{letter-spacing:-2.048000pt;}
.ls6{letter-spacing:-2.016000pt;}
.ls25{letter-spacing:-1.253333pt;}
.ls20{letter-spacing:-1.237333pt;}
.ls32{letter-spacing:-1.152000pt;}
.ls34{letter-spacing:-1.146667pt;}
.ls35{letter-spacing:-1.136000pt;}
.ls23{letter-spacing:-1.125333pt;}
.ls31{letter-spacing:-1.120000pt;}
.ls2e{letter-spacing:-1.114667pt;}
.ls17{letter-spacing:-1.109333pt;}
.ls26{letter-spacing:-1.104000pt;}
.ls11{letter-spacing:-1.098667pt;}
.ls18{letter-spacing:-1.093333pt;}
.ls2b{letter-spacing:-1.088000pt;}
.lsa{letter-spacing:-1.082667pt;}
.ls1b{letter-spacing:-1.077333pt;}
.ls19{letter-spacing:-1.072000pt;}
.ls1f{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-1.061333pt;}
.ls15{letter-spacing:-1.056000pt;}
.lsd{letter-spacing:-1.050667pt;}
.ls1c{letter-spacing:-1.045333pt;}
.lsc{letter-spacing:-1.040000pt;}
.ls2a{letter-spacing:-1.034667pt;}
.ls12{letter-spacing:-1.029333pt;}
.ls1a{letter-spacing:-1.024000pt;}
.ls14{letter-spacing:-1.018667pt;}
.ls10{letter-spacing:-1.013333pt;}
.ls13{letter-spacing:-1.008000pt;}
.ls21{letter-spacing:-1.002667pt;}
.ls1e{letter-spacing:-0.997333pt;}
.ls29{letter-spacing:-0.992000pt;}
.lsf{letter-spacing:-0.986667pt;}
.ls1d{letter-spacing:-0.981333pt;}
.lse{letter-spacing:-0.976000pt;}
.ls16{letter-spacing:-0.970667pt;}
.ls27{letter-spacing:-0.965333pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.954667pt;}
.ls2c{letter-spacing:-0.949333pt;}
.ls24{letter-spacing:-0.933333pt;}
.ls2f{letter-spacing:-0.917333pt;}
.ls2d{letter-spacing:-0.869333pt;}
.ls36{letter-spacing:-0.826667pt;}
.ls30{letter-spacing:-0.613333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.021333pt;}
.ls3{letter-spacing:1.114667pt;}
.ls2{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.157333pt;}
.ls4{letter-spacing:1.189333pt;}
.ws3{word-spacing:-44.806400pt;}
.ws2{word-spacing:-42.705067pt;}
.ws8f{word-spacing:-38.400000pt;}
.ws87{word-spacing:-37.786667pt;}
.ws30{word-spacing:-37.466667pt;}
.ws88{word-spacing:-37.424000pt;}
.ws6a{word-spacing:-37.402667pt;}
.ws96{word-spacing:-37.392000pt;}
.ws9d{word-spacing:-37.386667pt;}
.ws46{word-spacing:-37.360000pt;}
.ws6d{word-spacing:-37.328000pt;}
.ws5b{word-spacing:-37.306667pt;}
.ws91{word-spacing:-37.146667pt;}
.ws83{word-spacing:-37.137067pt;}
.ws77{word-spacing:-0.800000pt;}
.ws6b{word-spacing:-0.560000pt;}
.ws1{word-spacing:-0.550400pt;}
.ws0{word-spacing:-0.544000pt;}
.wsa3{word-spacing:-0.426667pt;}
.ws6f{word-spacing:-0.378667pt;}
.ws5c{word-spacing:-0.320000pt;}
.ws6e{word-spacing:-0.298667pt;}
.ws36{word-spacing:-0.293333pt;}
.ws45{word-spacing:-0.288000pt;}
.ws3d{word-spacing:-0.282667pt;}
.ws11{word-spacing:-0.277333pt;}
.ws34{word-spacing:-0.272000pt;}
.ws35{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.261333pt;}
.ws42{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.250667pt;}
.ws5d{word-spacing:-0.245333pt;}
.ws2a{word-spacing:-0.240000pt;}
.ws1c{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.229333pt;}
.ws6{word-spacing:-0.224000pt;}
.ws8c{word-spacing:-0.218667pt;}
.ws47{word-spacing:-0.213333pt;}
.ws5f{word-spacing:-0.208000pt;}
.ws90{word-spacing:-0.197333pt;}
.ws9b{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.186667pt;}
.ws9c{word-spacing:-0.181333pt;}
.wse{word-spacing:-0.176000pt;}
.ws17{word-spacing:-0.170667pt;}
.ws53{word-spacing:-0.165333pt;}
.ws43{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.154667pt;}
.ws3c{word-spacing:-0.149333pt;}
.ws33{word-spacing:-0.144000pt;}
.ws75{word-spacing:-0.138667pt;}
.ws31{word-spacing:-0.133333pt;}
.ws3f{word-spacing:-0.128000pt;}
.ws56{word-spacing:-0.122667pt;}
.ws3a{word-spacing:-0.117333pt;}
.ws38{word-spacing:-0.112000pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws4c{word-spacing:-0.101333pt;}
.ws7b{word-spacing:-0.096000pt;}
.ws41{word-spacing:-0.090667pt;}
.ws49{word-spacing:-0.085333pt;}
.ws85{word-spacing:-0.080000pt;}
.ws68{word-spacing:-0.074667pt;}
.ws12{word-spacing:-0.069333pt;}
.ws1e{word-spacing:-0.064000pt;}
.ws29{word-spacing:-0.058667pt;}
.ws18{word-spacing:-0.053333pt;}
.ws5e{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.042667pt;}
.ws2d{word-spacing:-0.037333pt;}
.ws76{word-spacing:-0.032000pt;}
.ws52{word-spacing:-0.026667pt;}
.ws54{word-spacing:-0.021333pt;}
.ws5{word-spacing:-0.016000pt;}
.ws23{word-spacing:-0.010667pt;}
.ws2c{word-spacing:-0.005333pt;}
.ws4{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.005333pt;}
.ws4f{word-spacing:0.010667pt;}
.ws92{word-spacing:0.016000pt;}
.ws9{word-spacing:0.021333pt;}
.ws70{word-spacing:0.026667pt;}
.ws48{word-spacing:0.032000pt;}
.ws26{word-spacing:0.037333pt;}
.ws51{word-spacing:0.042667pt;}
.wsa{word-spacing:0.048000pt;}
.ws59{word-spacing:0.053333pt;}
.ws4a{word-spacing:0.058667pt;}
.ws65{word-spacing:0.064000pt;}
.ws67{word-spacing:0.069333pt;}
.ws61{word-spacing:0.074667pt;}
.ws66{word-spacing:0.080000pt;}
.ws84{word-spacing:0.085333pt;}
.ws2e{word-spacing:0.090667pt;}
.ws50{word-spacing:0.096000pt;}
.ws14{word-spacing:0.101333pt;}
.ws1b{word-spacing:0.106667pt;}
.ws24{word-spacing:0.112000pt;}
.ws7{word-spacing:0.117333pt;}
.ws3b{word-spacing:0.122667pt;}
.ws32{word-spacing:0.128000pt;}
.ws6c{word-spacing:0.133333pt;}
.ws8a{word-spacing:0.138667pt;}
.ws79{word-spacing:0.154667pt;}
.ws7e{word-spacing:0.160000pt;}
.ws58{word-spacing:0.165333pt;}
.ws9f{word-spacing:0.170667pt;}
.ws95{word-spacing:0.176000pt;}
.ws62{word-spacing:0.181333pt;}
.ws78{word-spacing:0.186667pt;}
.ws20{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.197333pt;}
.ws57{word-spacing:0.202667pt;}
.ws8{word-spacing:0.208000pt;}
.ws2b{word-spacing:0.213333pt;}
.ws19{word-spacing:0.218667pt;}
.ws44{word-spacing:0.224000pt;}
.ws9a{word-spacing:0.229333pt;}
.ws1d{word-spacing:0.234667pt;}
.ws1a{word-spacing:0.240000pt;}
.ws55{word-spacing:0.245333pt;}
.ws69{word-spacing:0.250667pt;}
.ws10{word-spacing:0.256000pt;}
.ws4d{word-spacing:0.266667pt;}
.wsf{word-spacing:0.272000pt;}
.ws94{word-spacing:0.277333pt;}
.ws8e{word-spacing:0.288000pt;}
.ws2f{word-spacing:0.293333pt;}
.ws4e{word-spacing:0.298667pt;}
.ws7f{word-spacing:0.304000pt;}
.ws72{word-spacing:0.309333pt;}
.ws1f{word-spacing:0.320000pt;}
.ws97{word-spacing:0.325333pt;}
.ws81{word-spacing:0.330667pt;}
.ws4b{word-spacing:0.336000pt;}
.ws80{word-spacing:0.341333pt;}
.ws15{word-spacing:0.352000pt;}
.wsc{word-spacing:0.357333pt;}
.wsa0{word-spacing:0.368000pt;}
.ws74{word-spacing:0.378667pt;}
.ws93{word-spacing:0.384000pt;}
.wsa4{word-spacing:0.389333pt;}
.ws64{word-spacing:0.394667pt;}
.ws98{word-spacing:0.400000pt;}
.ws8b{word-spacing:0.410667pt;}
.ws16{word-spacing:0.426667pt;}
.ws63{word-spacing:0.437333pt;}
.ws22{word-spacing:0.442667pt;}
.ws9e{word-spacing:0.448000pt;}
.ws82{word-spacing:0.453333pt;}
.ws7a{word-spacing:0.458667pt;}
.ws21{word-spacing:0.464000pt;}
.ws37{word-spacing:0.469333pt;}
.ws40{word-spacing:0.480000pt;}
.ws60{word-spacing:0.485333pt;}
.ws73{word-spacing:0.490667pt;}
.ws13{word-spacing:0.496000pt;}
.ws71{word-spacing:0.501333pt;}
.ws7c{word-spacing:0.512000pt;}
.wsa2{word-spacing:0.522667pt;}
.ws99{word-spacing:0.533333pt;}
.ws8d{word-spacing:0.538667pt;}
.ws89{word-spacing:0.560000pt;}
.ws39{word-spacing:0.640000pt;}
.ws86{word-spacing:5.600000pt;}
._0{margin-left:-2.097067pt;}
._1{margin-left:-0.992000pt;}
._5{width:1.158400pt;}
._4{width:4.536533pt;}
._3{width:5.708800pt;}
._2{width:36.266667pt;}
.fs4{font-size:63.957333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.677333pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:167.360000pt;}
.yc5{bottom:168.640000pt;}
.y83{bottom:169.920000pt;}
.y186{bottom:171.360000pt;}
.y10d{bottom:173.920000pt;}
.y194{bottom:175.360000pt;}
.y1ad{bottom:176.640000pt;}
.y1a2{bottom:179.360000pt;}
.y191{bottom:180.640000pt;}
.y139{bottom:181.920000pt;}
.y5b{bottom:183.360000pt;}
.yc4{bottom:184.640000pt;}
.y82{bottom:185.920000pt;}
.y185{bottom:187.360000pt;}
.y1b6{bottom:188.640000pt;}
.y10c{bottom:189.920000pt;}
.ybd{bottom:191.360000pt;}
.y1ac{bottom:192.640000pt;}
.y1c5{bottom:193.920000pt;}
.y31{bottom:195.360000pt;}
.y75{bottom:196.640000pt;}
.y138{bottom:197.920000pt;}
.y5a{bottom:199.360000pt;}
.yc1{bottom:200.640000pt;}
.yd3{bottom:201.920000pt;}
.y184{bottom:203.360000pt;}
.y1b5{bottom:204.640000pt;}
.y19f{bottom:205.920000pt;}
.ybc{bottom:207.360000pt;}
.y1ab{bottom:208.640000pt;}
.y1c4{bottom:209.920000pt;}
.y30{bottom:211.360000pt;}
.y74{bottom:212.640000pt;}
.ye3{bottom:213.920000pt;}
.y59{bottom:215.360000pt;}
.y81{bottom:216.640000pt;}
.yd2{bottom:217.920000pt;}
.y183{bottom:219.360000pt;}
.y10b{bottom:220.640000pt;}
.y19e{bottom:221.920000pt;}
.y15a{bottom:223.360000pt;}
.y11c{bottom:224.640000pt;}
.y12f{bottom:225.920000pt;}
.y2f{bottom:227.360000pt;}
.yfa{bottom:228.640000pt;}
.ye0{bottom:229.920000pt;}
.y58{bottom:231.360000pt;}
.y80{bottom:232.640000pt;}
.y182{bottom:235.360000pt;}
.y10a{bottom:236.640000pt;}
.ybb{bottom:237.920000pt;}
.y159{bottom:239.360000pt;}
.y7{bottom:240.160000pt;}
.y11b{bottom:240.640000pt;}
.y12e{bottom:241.920000pt;}
.y2e{bottom:243.360000pt;}
.yf9{bottom:244.640000pt;}
.ye2{bottom:245.920000pt;}
.yc3{bottom:247.360000pt;}
.y9c{bottom:248.640000pt;}
.y181{bottom:251.360000pt;}
.y19d{bottom:252.640000pt;}
.yba{bottom:253.920000pt;}
.y1aa{bottom:255.360000pt;}
.y11a{bottom:256.640000pt;}
.y198{bottom:257.920000pt;}
.y6{bottom:258.880000pt;}
.y2d{bottom:259.360000pt;}
.ydf{bottom:260.640000pt;}
.y57{bottom:261.920000pt;}
.y7f{bottom:263.360000pt;}
.y9b{bottom:264.640000pt;}
.y109{bottom:267.360000pt;}
.y19c{bottom:268.640000pt;}
.yb9{bottom:269.920000pt;}
.y193{bottom:270.880000pt;}
.y1a9{bottom:271.360000pt;}
.y12d{bottom:272.640000pt;}
.y73{bottom:273.920000pt;}
.y72{bottom:274.880000pt;}
.y2c{bottom:275.360000pt;}
.yde{bottom:276.640000pt;}
.y5{bottom:277.600000pt;}
.y56{bottom:277.920000pt;}
.y7e{bottom:279.360000pt;}
.y180{bottom:281.920000pt;}
.y108{bottom:283.360000pt;}
.y19b{bottom:284.640000pt;}
.y158{bottom:285.920000pt;}
.y119{bottom:287.360000pt;}
.y12c{bottom:288.640000pt;}
.y190{bottom:289.920000pt;}
.yf8{bottom:291.360000pt;}
.ydd{bottom:292.640000pt;}
.y55{bottom:293.920000pt;}
.y9a{bottom:295.360000pt;}
.y17f{bottom:297.920000pt;}
.y107{bottom:299.360000pt;}
.yb8{bottom:300.640000pt;}
.y157{bottom:301.920000pt;}
.y118{bottom:303.360000pt;}
.y1e1{bottom:304.160000pt;}
.y1a1{bottom:304.640000pt;}
.y2b{bottom:305.920000pt;}
.yf7{bottom:307.360000pt;}
.ydc{bottom:308.640000pt;}
.y7d{bottom:309.920000pt;}
.y71{bottom:311.360000pt;}
.y17e{bottom:313.920000pt;}
.y106{bottom:315.360000pt;}
.yb7{bottom:316.640000pt;}
.y156{bottom:317.920000pt;}
.y117{bottom:319.360000pt;}
.y12b{bottom:320.160000pt;}
.y1a0{bottom:320.640000pt;}
.y2a{bottom:321.920000pt;}
.yf6{bottom:323.360000pt;}
.y54{bottom:324.640000pt;}
.y7c{bottom:325.920000pt;}
.y99{bottom:327.360000pt;}
.y17d{bottom:329.920000pt;}
.y105{bottom:331.360000pt;}
.yb6{bottom:332.640000pt;}
.y116{bottom:335.360000pt;}
.y18f{bottom:336.640000pt;}
.y29{bottom:337.920000pt;}
.yf5{bottom:339.360000pt;}
.y53{bottom:340.640000pt;}
.y70{bottom:341.920000pt;}
.y98{bottom:343.360000pt;}
.y1ef{bottom:344.640000pt;}
.y17c{bottom:345.920000pt;}
.y104{bottom:347.360000pt;}
.y155{bottom:348.640000pt;}
.y1a8{bottom:349.920000pt;}
.y115{bottom:351.360000pt;}
.y18e{bottom:352.640000pt;}
.y129{bottom:353.920000pt;}
.y197{bottom:355.360000pt;}
.y52{bottom:356.640000pt;}
.y6f{bottom:357.920000pt;}
.y1ee{bottom:360.640000pt;}
.y17b{bottom:361.920000pt;}
.y1b4{bottom:362.880000pt;}
.yb5{bottom:363.360000pt;}
.y154{bottom:364.640000pt;}
.y1a7{bottom:365.920000pt;}
.y28{bottom:368.640000pt;}
.yf4{bottom:369.920000pt;}
.y196{bottom:371.360000pt;}
.y7b{bottom:372.640000pt;}
.y6e{bottom:373.920000pt;}
.y1ed{bottom:376.640000pt;}
.y17a{bottom:377.920000pt;}
.yb4{bottom:379.360000pt;}
.y153{bottom:380.640000pt;}
.y114{bottom:381.920000pt;}
.y18d{bottom:383.360000pt;}
.y27{bottom:384.640000pt;}
.yf3{bottom:385.920000pt;}
.y51{bottom:387.360000pt;}
.y7a{bottom:388.640000pt;}
.y6d{bottom:389.920000pt;}
.y1ec{bottom:392.640000pt;}
.y1da{bottom:393.920000pt;}
.yb3{bottom:395.360000pt;}
.y152{bottom:396.640000pt;}
.y113{bottom:397.920000pt;}
.y18c{bottom:399.360000pt;}
.y128{bottom:400.640000pt;}
.y137{bottom:401.920000pt;}
.y50{bottom:403.360000pt;}
.y79{bottom:404.640000pt;}
.y97{bottom:405.920000pt;}
.y179{bottom:408.640000pt;}
.yb2{bottom:411.360000pt;}
.y151{bottom:412.640000pt;}
.y112{bottom:413.920000pt;}
.y26{bottom:415.360000pt;}
.yf2{bottom:416.640000pt;}
.y4f{bottom:419.360000pt;}
.y6c{bottom:420.640000pt;}
.y96{bottom:421.920000pt;}
.y178{bottom:424.640000pt;}
.y1e0{bottom:425.920000pt;}
.y1df{bottom:426.880000pt;}
.yb1{bottom:427.360000pt;}
.y1ae{bottom:428.160000pt;}
.y150{bottom:428.640000pt;}
.y18b{bottom:429.920000pt;}
.y25{bottom:431.360000pt;}
.yf1{bottom:432.640000pt;}
.y195{bottom:433.920000pt;}
.y78{bottom:435.360000pt;}
.y6b{bottom:436.640000pt;}
.y95{bottom:437.920000pt;}
.y177{bottom:440.640000pt;}
.yb0{bottom:443.360000pt;}
.y111{bottom:444.640000pt;}
.y18a{bottom:445.920000pt;}
.y24{bottom:447.360000pt;}
.yf0{bottom:448.640000pt;}
.y4e{bottom:449.920000pt;}
.yc0{bottom:451.360000pt;}
.y94{bottom:453.920000pt;}
.y1d9{bottom:455.360000pt;}
.y1eb{bottom:456.640000pt;}
.y19a{bottom:457.920000pt;}
.y199{bottom:458.880000pt;}
.yaf{bottom:459.360000pt;}
.y110{bottom:460.640000pt;}
.y1b3{bottom:461.920000pt;}
.y127{bottom:463.360000pt;}
.yef{bottom:464.640000pt;}
.y4d{bottom:465.920000pt;}
.y6a{bottom:467.360000pt;}
.y93{bottom:469.920000pt;}
.y176{bottom:471.360000pt;}
.y103{bottom:473.920000pt;}
.y102{bottom:474.880000pt;}
.yae{bottom:475.360000pt;}
.y10f{bottom:476.640000pt;}
.y23{bottom:477.920000pt;}
.y126{bottom:479.360000pt;}
.y13a{bottom:480.640000pt;}
.y4c{bottom:481.920000pt;}
.y69{bottom:483.360000pt;}
.y92{bottom:485.920000pt;}
.y175{bottom:487.360000pt;}
.yad{bottom:491.360000pt;}
.y189{bottom:492.640000pt;}
.y22{bottom:493.920000pt;}
.yee{bottom:495.360000pt;}
.y192{bottom:496.640000pt;}
.ybf{bottom:497.920000pt;}
.yd1{bottom:499.360000pt;}
.y91{bottom:501.920000pt;}
.y174{bottom:503.360000pt;}
.y14f{bottom:505.920000pt;}
.yac{bottom:507.360000pt;}
.y10e{bottom:508.160000pt;}
.y1b2{bottom:508.640000pt;}
.y21{bottom:509.920000pt;}
.yed{bottom:511.360000pt;}
.y4b{bottom:512.640000pt;}
.y68{bottom:513.920000pt;}
.y173{bottom:519.360000pt;}
.y14e{bottom:521.920000pt;}
.yab{bottom:523.360000pt;}
.y1b1{bottom:524.640000pt;}
.y20{bottom:525.920000pt;}
.yec{bottom:527.360000pt;}
.y4a{bottom:528.640000pt;}
.y67{bottom:529.920000pt;}
.y90{bottom:532.640000pt;}
.y1d8{bottom:533.920000pt;}
.y172{bottom:535.360000pt;}
.y14d{bottom:537.920000pt;}
.yaa{bottom:539.360000pt;}
.y1b0{bottom:540.640000pt;}
.y1f{bottom:541.920000pt;}
.yeb{bottom:543.360000pt;}
.y49{bottom:544.640000pt;}
.yc2{bottom:545.920000pt;}
.y8f{bottom:548.640000pt;}
.y1d7{bottom:549.920000pt;}
.y171{bottom:551.360000pt;}
.y14c{bottom:553.920000pt;}
.y1c3{bottom:555.360000pt;}
.y1af{bottom:556.640000pt;}
.y125{bottom:557.920000pt;}
.yea{bottom:559.360000pt;}
.y66{bottom:560.640000pt;}
.ydb{bottom:561.920000pt;}
.y1d6{bottom:565.920000pt;}
.y170{bottom:567.360000pt;}
.y1a6{bottom:568.640000pt;}
.ya9{bottom:569.920000pt;}
.y1c2{bottom:571.360000pt;}
.y1e{bottom:572.640000pt;}
.y124{bottom:573.920000pt;}
.y48{bottom:575.360000pt;}
.ybe{bottom:576.640000pt;}
.y8e{bottom:579.360000pt;}
.y1d5{bottom:581.920000pt;}
.y16f{bottom:583.360000pt;}
.y1a5{bottom:584.640000pt;}
.ya8{bottom:585.920000pt;}
.y1c1{bottom:587.360000pt;}
.y1d{bottom:588.640000pt;}
.ye9{bottom:589.920000pt;}
.y47{bottom:591.360000pt;}
.yd0{bottom:592.640000pt;}
.y8d{bottom:595.360000pt;}
.y1ea{bottom:597.920000pt;}
.y16e{bottom:599.360000pt;}
.y14b{bottom:600.640000pt;}
.ya7{bottom:601.920000pt;}
.y1c0{bottom:603.360000pt;}
.y136{bottom:604.640000pt;}
.ye8{bottom:605.920000pt;}
.y46{bottom:607.360000pt;}
.ycf{bottom:608.640000pt;}
.y1d4{bottom:612.640000pt;}
.y14a{bottom:616.640000pt;}
.y1de{bottom:617.920000pt;}
.y1c{bottom:619.360000pt;}
.y123{bottom:620.640000pt;}
.ye7{bottom:621.920000pt;}
.y45{bottom:623.360000pt;}
.yda{bottom:624.640000pt;}
.y8c{bottom:625.920000pt;}
.y1d3{bottom:628.640000pt;}
.y16d{bottom:629.920000pt;}
.ya6{bottom:632.640000pt;}
.y1bf{bottom:633.920000pt;}
.y1b{bottom:635.360000pt;}
.y122{bottom:636.640000pt;}
.y65{bottom:637.920000pt;}
.y77{bottom:639.360000pt;}
.y1e9{bottom:644.640000pt;}
.y16c{bottom:645.920000pt;}
.y149{bottom:647.360000pt;}
.ya5{bottom:648.640000pt;}
.y1be{bottom:649.920000pt;}
.y135{bottom:651.360000pt;}
.y101{bottom:652.640000pt;}
.y44{bottom:653.920000pt;}
.yce{bottom:655.360000pt;}
.y8b{bottom:656.640000pt;}
.y1d2{bottom:659.360000pt;}
.y1e8{bottom:660.640000pt;}
.y16b{bottom:661.920000pt;}
.y148{bottom:663.360000pt;}
.ya4{bottom:664.640000pt;}
.y1a{bottom:665.920000pt;}
.y121{bottom:667.360000pt;}
.ye6{bottom:668.640000pt;}
.y43{bottom:669.920000pt;}
.yd9{bottom:671.360000pt;}
.y8a{bottom:672.640000pt;}
.y1d1{bottom:675.360000pt;}
.y1e7{bottom:676.640000pt;}
.y16a{bottom:677.920000pt;}
.y147{bottom:679.360000pt;}
.ya3{bottom:680.640000pt;}
.y19{bottom:681.920000pt;}
.y120{bottom:683.360000pt;}
.ye5{bottom:684.640000pt;}
.y42{bottom:685.920000pt;}
.yd8{bottom:687.360000pt;}
.y1d0{bottom:691.360000pt;}
.y1b9{bottom:693.920000pt;}
.y146{bottom:695.360000pt;}
.ya2{bottom:696.640000pt;}
.y18{bottom:697.920000pt;}
.y11f{bottom:699.360000pt;}
.ye4{bottom:700.640000pt;}
.y76{bottom:701.920000pt;}
.y89{bottom:703.360000pt;}
.y1cf{bottom:707.360000pt;}
.y169{bottom:708.640000pt;}
.y1b8{bottom:709.920000pt;}
.y145{bottom:711.360000pt;}
.ya1{bottom:712.640000pt;}
.y134{bottom:713.920000pt;}
.y100{bottom:715.360000pt;}
.y41{bottom:716.640000pt;}
.yd7{bottom:717.920000pt;}
.y1ce{bottom:723.360000pt;}
.y168{bottom:724.640000pt;}
.y1a4{bottom:725.920000pt;}
.y188{bottom:727.360000pt;}
.y17{bottom:728.640000pt;}
.y133{bottom:729.920000pt;}
.y11e{bottom:731.360000pt;}
.y40{bottom:732.640000pt;}
.y88{bottom:733.920000pt;}
.y1cd{bottom:739.360000pt;}
.y167{bottom:740.640000pt;}
.y144{bottom:741.920000pt;}
.y1dd{bottom:743.360000pt;}
.y16{bottom:744.640000pt;}
.yff{bottom:745.920000pt;}
.y11d{bottom:747.360000pt;}
.y3f{bottom:748.640000pt;}
.y87{bottom:749.920000pt;}
.y1cc{bottom:755.360000pt;}
.y166{bottom:756.640000pt;}
.y1b7{bottom:757.600000pt;}
.y143{bottom:757.920000pt;}
.ya0{bottom:759.360000pt;}
.y15{bottom:760.640000pt;}
.yfe{bottom:761.920000pt;}
.ycd{bottom:763.360000pt;}
.y3e{bottom:764.640000pt;}
.yd6{bottom:765.920000pt;}
.y1e6{bottom:769.920000pt;}
.y1e5{bottom:770.880000pt;}
.y1cb{bottom:771.360000pt;}
.y165{bottom:772.640000pt;}
.y142{bottom:773.920000pt;}
.y1bd{bottom:775.360000pt;}
.y14{bottom:776.640000pt;}
.yfd{bottom:777.920000pt;}
.y64{bottom:779.360000pt;}
.y86{bottom:780.640000pt;}
.y1ca{bottom:787.360000pt;}
.y164{bottom:788.640000pt;}
.y9f{bottom:789.920000pt;}
.y9e{bottom:790.880000pt;}
.y1bc{bottom:791.360000pt;}
.y13{bottom:792.640000pt;}
.yfc{bottom:793.920000pt;}
.y3d{bottom:795.360000pt;}
.y85{bottom:796.640000pt;}
.y1c9{bottom:803.360000pt;}
.y163{bottom:804.640000pt;}
.y1e2{bottom:805.600000pt;}
.y1dc{bottom:805.920000pt;}
.y1bb{bottom:807.360000pt;}
.y132{bottom:808.640000pt;}
.ycc{bottom:809.920000pt;}
.y63{bottom:811.360000pt;}
.yd5{bottom:812.640000pt;}
.y4{bottom:816.480000pt;}
.y1c8{bottom:819.360000pt;}
.y141{bottom:820.640000pt;}
.y187{bottom:821.600000pt;}
.y12{bottom:823.360000pt;}
.y131{bottom:824.640000pt;}
.y3c{bottom:825.920000pt;}
.y62{bottom:827.360000pt;}
.y162{bottom:835.360000pt;}
.y140{bottom:836.640000pt;}
.y1db{bottom:837.600000pt;}
.y11{bottom:839.360000pt;}
.yfb{bottom:840.640000pt;}
.y3b{bottom:841.920000pt;}
.y61{bottom:843.360000pt;}
.y161{bottom:851.360000pt;}
.y13f{bottom:852.640000pt;}
.y1f2{bottom:853.920000pt;}
.y10{bottom:855.360000pt;}
.ycb{bottom:856.640000pt;}
.y3a{bottom:857.920000pt;}
.yd4{bottom:859.360000pt;}
.y3{bottom:861.920000pt;}
.y160{bottom:867.360000pt;}
.y1a3{bottom:868.160000pt;}
.y13e{bottom:868.640000pt;}
.y1e4{bottom:869.920000pt;}
.yf{bottom:871.360000pt;}
.yca{bottom:872.640000pt;}
.y60{bottom:873.920000pt;}
.y15f{bottom:883.360000pt;}
.y2{bottom:884.480000pt;}
.y13d{bottom:884.640000pt;}
.y1ba{bottom:885.920000pt;}
.y130{bottom:887.360000pt;}
.y39{bottom:888.640000pt;}
.y5f{bottom:889.920000pt;}
.y15e{bottom:899.360000pt;}
.ye{bottom:901.920000pt;}
.yc9{bottom:903.360000pt;}
.y38{bottom:904.640000pt;}
.y5e{bottom:905.920000pt;}
.y13c{bottom:915.360000pt;}
.y13b{bottom:916.160000pt;}
.yd{bottom:917.920000pt;}
.yc8{bottom:919.360000pt;}
.y37{bottom:920.640000pt;}
.y5d{bottom:921.920000pt;}
.y1c7{bottom:929.920000pt;}
.y1c6{bottom:930.880000pt;}
.y15d{bottom:931.360000pt;}
.y1e3{bottom:932.640000pt;}
.y1f1{bottom:933.920000pt;}
.yc7{bottom:935.360000pt;}
.y36{bottom:936.640000pt;}
.y1{bottom:940.480000pt;}
.yc{bottom:948.640000pt;}
.y1f0{bottom:949.920000pt;}
.yc6{bottom:951.360000pt;}
.y35{bottom:952.640000pt;}
.y15c{bottom:961.920000pt;}
.y15b{bottom:962.880000pt;}
.yb{bottom:964.640000pt;}
.y9d{bottom:967.360000pt;}
.y84{bottom:968.640000pt;}
.ya{bottom:980.640000pt;}
.y34{bottom:983.360000pt;}
.y33{bottom:999.360000pt;}
.y9{bottom:1011.360000pt;}
.y8{bottom:1012.160000pt;}
.y32{bottom:1015.360000pt;}
.y12a{bottom:1032.640000pt;}
.y5c{bottom:1063.360000pt;}
.h7{height:56.118812pt;}
.h6{height:56.156250pt;}
.h5{height:65.343750pt;}
.h4{height:65.524984pt;}
.h3{height:84.234375pt;}
.h2{height:112.312500pt;}
.h0{height:1122.514667pt;}
.h1{height:1122.666667pt;}
.w0{width:793.697333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:71.840000pt;}
.x5{left:95.840000pt;}
.x6{left:143.840000pt;}
.x3{left:165.280000pt;}
.x2{left:187.840000pt;}
.x9{left:239.840000pt;}
.x4{left:275.840000pt;}
.xa{left:278.560000pt;}
.xb{left:287.840000pt;}
.x8{left:335.840000pt;}
.x1{left:370.560000pt;}
.xd{left:527.840000pt;}
.xe{left:667.680000pt;}
.xc{left:676.960000pt;}
}

