
    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_499c27cfda70618c77343e3b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.740000;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_d350067e92baed4822057f9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e2ee7c3ab190632f67fa605.woff')format("woff");}.ff3{font-family:ff3;line-height:1.392578;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_af9ef85598aeffd0e9fa27a0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.392578;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_476acfe429afd93cf2430ce2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_11d6009ec5445bb366e4d404.woff')format("woff");}.ff6{font-family:ff6;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34e46a24a9b3eac038509b8b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e81639e7fec3c363aacc68af.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e3083c9377220d5866a052f3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a2a4fc8c3b2bf0804ceb14f1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.392578;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:ffb;src:url('chunks/assets/font_5c2c28646099d0fec60fcaa5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.392578;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:ffc;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f49405982d9e9f3e094e7903.woff')format("woff");}.ffd{font-family:ffd;line-height:1.592000;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);}
.m3{transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256410,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.168480px;}
.ls4{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.063360px;}
.ls9{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls1a{letter-spacing:2.304000px;}
.ls19{letter-spacing:3.024000px;}
.ls11{letter-spacing:3.744000px;}
.ls10{letter-spacing:4.464000px;}
.ls12{letter-spacing:5.184000px;}
.ls1b{letter-spacing:5.904000px;}
.lsd{letter-spacing:6.624000px;}
.ls24{letter-spacing:7.344000px;}
.lsa{letter-spacing:7.416000px;}
.ls18{letter-spacing:8.064000px;}
.lsb{letter-spacing:8.136000px;}
.lse{letter-spacing:10.224000px;}
.ls23{letter-spacing:11.664000px;}
.ls22{letter-spacing:12.384000px;}
.ls25{letter-spacing:14.544000px;}
.ls1f{letter-spacing:15.984000px;}
.ls8{letter-spacing:42.408000px;}
.ls1e{letter-spacing:145.584000px;}
.lsf{letter-spacing:199.584000px;}
.ls21{letter-spacing:665.424000px;}
.ls17{letter-spacing:815.184000px;}
.ls26{letter-spacing:2075.184000px;}
.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;}
}
.ws47{word-spacing:-19.038240px;}
.wsc{word-spacing:-17.208000px;}
.wsa{word-spacing:-16.848000px;}
.ws2{word-spacing:-16.704000px;}
.ws34{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.416000px;}
.ws49{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws4d{word-spacing:-16.200000px;}
.wsd{word-spacing:-15.984000px;}
.ws4f{word-spacing:-15.912000px;}
.ws48{word-spacing:-15.840000px;}
.ws4e{word-spacing:-15.696000px;}
.ws40{word-spacing:-1.080000px;}
.ws46{word-spacing:-1.077120px;}
.ws7{word-spacing:-0.864000px;}
.ws4b{word-spacing:-0.792000px;}
.ws4c{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.288000px;}
.ws4a{word-spacing:-0.216000px;}
.ws5{word-spacing:-0.144000px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.072000px;}
.ws1a{word-spacing:0.144000px;}
.ws42{word-spacing:0.216000px;}
.ws14{word-spacing:0.288000px;}
.ws18{word-spacing:0.360000px;}
.ws25{word-spacing:0.432000px;}
.ws9{word-spacing:0.576000px;}
.ws32{word-spacing:0.720000px;}
.ws44{word-spacing:0.864000px;}
.ws33{word-spacing:1.008000px;}
.ws35{word-spacing:1.296000px;}
.ws3d{word-spacing:2.016000px;}
.ws3c{word-spacing:2.736000px;}
.ws43{word-spacing:3.168000px;}
.ws2a{word-spacing:3.456000px;}
.ws2c{word-spacing:3.744000px;}
.ws2b{word-spacing:3.888000px;}
.ws28{word-spacing:4.176000px;}
.ws3b{word-spacing:4.464000px;}
.ws2e{word-spacing:4.896000px;}
.ws45{word-spacing:5.256000px;}
.ws20{word-spacing:5.616000px;}
.wse{word-spacing:5.904000px;}
.ws3f{word-spacing:6.048000px;}
.ws3e{word-spacing:6.120000px;}
.ws1f{word-spacing:6.336000px;}
.ws16{word-spacing:7.344000px;}
.ws17{word-spacing:7.704000px;}
.ws1c{word-spacing:7.776000px;}
.ws24{word-spacing:9.936000px;}
.ws39{word-spacing:10.368000px;}
.ws38{word-spacing:11.376000px;}
.ws1e{word-spacing:12.096000px;}
.ws30{word-spacing:12.240000px;}
.ws2f{word-spacing:12.312000px;}
.ws1d{word-spacing:12.528000px;}
.ws31{word-spacing:12.960000px;}
.ws41{word-spacing:13.536000px;}
.ws21{word-spacing:14.256000px;}
.ws2d{word-spacing:15.696000px;}
.ws29{word-spacing:16.416000px;}
.ws1b{word-spacing:17.136000px;}
.ws27{word-spacing:17.856000px;}
.ws26{word-spacing:18.144000px;}
.ws13{word-spacing:19.656000px;}
.ws3a{word-spacing:20.016000px;}
.ws15{word-spacing:20.664000px;}
.ws37{word-spacing:20.736000px;}
.ws36{word-spacing:21.456000px;}
.ws22{word-spacing:22.896000px;}
.ws23{word-spacing:23.616000px;}
.ws11{word-spacing:41.688000px;}
.ws10{word-spacing:42.120000px;}
._2{margin-left:-16.416000px;}
._0{margin-left:-5.218830px;}
._1{margin-left:-2.597460px;}
._3{margin-left:-1.008000px;}
._4{width:1.080000px;}
._e{width:2.520000px;}
._9{width:4.104000px;}
._d{width:5.184000px;}
._10{width:6.336000px;}
._c{width:7.421460px;}
._6{width:8.568000px;}
._8{width:10.080000px;}
._b{width:11.093460px;}
._7{width:12.456000px;}
._f{width:14.914920px;}
._a{width:20.309460px;}
._5{width:41.688000px;}
._11{width:195.984000px;}
._12{width:1088.064000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(40,40,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(160,41,57);}
.fs4{font-size:60.000000px;}
.fs2{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:70.710000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:3.156000px;}
.ycc{bottom:37.500091px;}
.ye8{bottom:114.840000px;}
.ycb{bottom:121.140000px;}
.yd5{bottom:128.160000px;}
.ye7{bottom:135.360000px;}
.yca{bottom:141.840000px;}
.y6f{bottom:143.640000px;}
.y4b{bottom:148.680000px;}
.y99{bottom:154.440000px;}
.ye6{bottom:156.060000px;}
.yc9{bottom:162.540000px;}
.y6e{bottom:164.160000px;}
.y4a{bottom:169.200000px;}
.yd4{bottom:169.380000px;}
.y1b{bottom:172.260000px;}
.y98{bottom:175.140000px;}
.ye5{bottom:176.760000px;}
.yc8{bottom:183.240000px;}
.y6d{bottom:184.860000px;}
.y49{bottom:189.900000px;}
.yd3{bottom:190.080000px;}
.y1a{bottom:192.960000px;}
.y97{bottom:195.840000px;}
.ye4{bottom:197.460000px;}
.yc7{bottom:203.760000px;}
.y6c{bottom:205.560000px;}
.y48{bottom:210.600000px;}
.yd2{bottom:210.780000px;}
.y19{bottom:213.660000px;}
.y96{bottom:216.360000px;}
.ye3{bottom:217.980000px;}
.yc6{bottom:224.460000px;}
.y6b{bottom:226.080000px;}
.y47{bottom:231.300000px;}
.y18{bottom:234.360000px;}
.y95{bottom:237.060000px;}
.ye2{bottom:238.680000px;}
.yc5{bottom:245.160000px;}
.y6a{bottom:246.780000px;}
.y46{bottom:251.820000px;}
.yd1{bottom:252.000000px;}
.y17{bottom:254.880000px;}
.y94{bottom:257.760000px;}
.ye1{bottom:259.380000px;}
.yc4{bottom:265.860000px;}
.y69{bottom:267.480000px;}
.y16{bottom:271.440000px;}
.y45{bottom:272.520000px;}
.yd0{bottom:272.700000px;}
.y93{bottom:277.920000px;}
.ye0{bottom:280.080000px;}
.yc3{bottom:286.380000px;}
.y68{bottom:288.180000px;}
.y44{bottom:293.220000px;}
.ycf{bottom:293.400000px;}
.ydf{bottom:300.600000px;}
.yc2{bottom:307.080000px;}
.y67{bottom:308.700000px;}
.y43{bottom:313.920000px;}
.y92{bottom:317.160000px;}
.yde{bottom:321.300000px;}
.yc1{bottom:327.780000px;}
.y66{bottom:329.400000px;}
.y42{bottom:334.440000px;}
.y77{bottom:334.620000px;}
.y91{bottom:337.860000px;}
.yc0{bottom:348.480000px;}
.y65{bottom:350.100000px;}
.y41{bottom:355.140000px;}
.y15{bottom:355.320000px;}
.ydd{bottom:356.760000px;}
.y90{bottom:358.560000px;}
.ybf{bottom:369.000000px;}
.y64{bottom:370.800000px;}
.y40{bottom:375.840000px;}
.y14{bottom:376.020000px;}
.ydc{bottom:377.640000px;}
.y8f{bottom:379.080000px;}
.ybe{bottom:389.700000px;}
.y63{bottom:391.320000px;}
.y3f{bottom:396.540000px;}
.y13{bottom:396.720000px;}
.ydb{bottom:398.340000px;}
.y8e{bottom:399.780000px;}
.ybd{bottom:410.400000px;}
.y62{bottom:412.020000px;}
.y3e{bottom:417.060000px;}
.y12{bottom:417.240000px;}
.yda{bottom:418.860000px;}
.y8d{bottom:420.480000px;}
.ybc{bottom:431.100000px;}
.y61{bottom:432.720000px;}
.y3d{bottom:437.760000px;}
.y11{bottom:437.940000px;}
.yd9{bottom:439.560000px;}
.y8c{bottom:441.180000px;}
.ybb{bottom:451.620000px;}
.y60{bottom:453.420000px;}
.y3c{bottom:458.460000px;}
.y10{bottom:458.640000px;}
.yd8{bottom:460.260000px;}
.y8b{bottom:461.700000px;}
.yba{bottom:472.320000px;}
.y5f{bottom:473.940000px;}
.y3b{bottom:479.160000px;}
.yf{bottom:479.340000px;}
.yd7{bottom:480.960000px;}
.y8a{bottom:482.400000px;}
.yb9{bottom:493.020000px;}
.y3a{bottom:499.680000px;}
.y76{bottom:499.860000px;}
.yd6{bottom:500.940000px;}
.y89{bottom:503.100000px;}
.yb8{bottom:513.720000px;}
.y5e{bottom:515.340000px;}
.y75{bottom:520.560000px;}
.y88{bottom:523.620000px;}
.yb7{bottom:534.240000px;}
.y5d{bottom:536.040000px;}
.y39{bottom:541.080000px;}
.ye{bottom:541.260000px;}
.y87{bottom:544.320000px;}
.yb6{bottom:554.940000px;}
.y5c{bottom:556.560000px;}
.y38{bottom:561.780000px;}
.yd{bottom:561.960000px;}
.y86{bottom:565.020000px;}
.yb5{bottom:575.640000px;}
.y5b{bottom:577.260000px;}
.y37{bottom:582.300000px;}
.yc{bottom:582.480000px;}
.y85{bottom:585.720000px;}
.yb4{bottom:596.340000px;}
.y5a{bottom:597.960000px;}
.y36{bottom:603.000000px;}
.yb{bottom:603.180000px;}
.y84{bottom:606.240000px;}
.yb3{bottom:616.860000px;}
.y59{bottom:618.660000px;}
.y35{bottom:623.700000px;}
.ya{bottom:623.880000px;}
.y83{bottom:626.940000px;}
.yb2{bottom:637.560000px;}
.y58{bottom:639.180000px;}
.y34{bottom:644.400000px;}
.y9{bottom:644.580000px;}
.y82{bottom:647.640000px;}
.yb1{bottom:658.260000px;}
.y57{bottom:659.880000px;}
.y33{bottom:664.920000px;}
.y8{bottom:665.100000px;}
.y81{bottom:668.340000px;}
.yb0{bottom:678.960000px;}
.y56{bottom:680.580000px;}
.y32{bottom:685.620000px;}
.y7{bottom:685.800000px;}
.yaf{bottom:699.480000px;}
.y55{bottom:701.280000px;}
.y31{bottom:706.320000px;}
.y6{bottom:706.500000px;}
.y80{bottom:709.920000px;}
.yae{bottom:720.180000px;}
.y54{bottom:721.800000px;}
.y30{bottom:727.020000px;}
.y5{bottom:727.200000px;}
.y7f{bottom:730.620000px;}
.yad{bottom:740.880000px;}
.y53{bottom:742.500000px;}
.y2f{bottom:747.540000px;}
.y4{bottom:747.720000px;}
.y7e{bottom:751.140000px;}
.yac{bottom:761.400000px;}
.y52{bottom:763.200000px;}
.y2e{bottom:768.240000px;}
.y3{bottom:768.420000px;}
.yab{bottom:782.100000px;}
.y51{bottom:783.900000px;}
.y2d{bottom:788.940000px;}
.y7d{bottom:792.900000px;}
.yaa{bottom:802.800000px;}
.y50{bottom:804.420000px;}
.y2c{bottom:809.460000px;}
.y74{bottom:809.640000px;}
.y7c{bottom:813.600000px;}
.ya9{bottom:823.500000px;}
.y4f{bottom:825.120000px;}
.y2b{bottom:830.160000px;}
.y73{bottom:830.340000px;}
.y7b{bottom:834.300000px;}
.y1{bottom:842.844750px;}
.ya8{bottom:844.020000px;}
.y4e{bottom:845.820000px;}
.y2a{bottom:850.860000px;}
.y72{bottom:851.040000px;}
.y7a{bottom:854.820000px;}
.ya7{bottom:864.720000px;}
.y29{bottom:871.560000px;}
.ya6{bottom:885.420000px;}
.y4d{bottom:887.040000px;}
.y28{bottom:892.080000px;}
.y71{bottom:892.260000px;}
.y79{bottom:896.220000px;}
.y4c{bottom:903.420000px;}
.ya5{bottom:906.120000px;}
.y78{bottom:912.600000px;}
.y27{bottom:912.780000px;}
.y70{bottom:912.960000px;}
.ya4{bottom:926.640000px;}
.y26{bottom:933.480000px;}
.yce{bottom:933.660000px;}
.ya3{bottom:947.340000px;}
.y25{bottom:954.180000px;}
.ya2{bottom:968.040000px;}
.y24{bottom:974.880000px;}
.ya1{bottom:988.740000px;}
.y23{bottom:995.580000px;}
.ya0{bottom:1009.260000px;}
.y22{bottom:1016.280000px;}
.y9f{bottom:1029.960000px;}
.y21{bottom:1036.800000px;}
.y9e{bottom:1050.660000px;}
.y20{bottom:1057.500000px;}
.y9d{bottom:1071.360000px;}
.y1f{bottom:1078.200000px;}
.y9c{bottom:1091.880000px;}
.y1e{bottom:1098.900000px;}
.y9b{bottom:1113.126300px;}
.y1d{bottom:1119.420000px;}
.y9a{bottom:1137.240000px;}
.y1c{bottom:1140.120000px;}
.y2{bottom:1140.300000px;}
.h9{height:16.500090px;}
.h2{height:51.476880px;}
.ha{height:65.156250px;}
.h7{height:66.082500px;}
.hb{height:69.086250px;}
.h4{height:76.824000px;}
.h6{height:78.048000px;}
.h5{height:78.187500px;}
.h8{height:89.884080px;}
.h0{height:1262.835000px;}
.h3{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.871500px;}
.w4{width:28.711500px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.xd{left:161.280000px;}
.x14{left:168.120000px;}
.x3{left:174.780000px;}
.xe{left:181.620000px;}
.xf{left:228.240000px;}
.x11{left:294.660000px;}
.x13{left:308.160000px;}
.x1{left:324.375900px;}
.x16{left:350.280000px;}
.x15{left:363.060000px;}
.x17{left:369.900000px;}
.x5{left:392.580000px;}
.x6{left:407.520000px;}
.x1b{left:417.420000px;}
.x1e{left:432.134262px;}
.x1d{left:435.554260px;}
.x19{left:446.400000px;}
.x10{left:458.460000px;}
.x9{left:507.420000px;}
.xa{left:556.740000px;}
.x1a{left:581.580000px;}
.x7{left:597.420000px;}
.x18{left:608.400000px;}
.xb{left:629.280000px;}
.x12{left:633.240000px;}
.x8{left:670.320000px;}
.xc{left:693.900000px;}
.x1c{left:744.300000px;}
.x4{left:761.040000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.149760pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.056320pt;}
.ls9{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:2.048000pt;}
.ls19{letter-spacing:2.688000pt;}
.ls11{letter-spacing:3.328000pt;}
.ls10{letter-spacing:3.968000pt;}
.ls12{letter-spacing:4.608000pt;}
.ls1b{letter-spacing:5.248000pt;}
.lsd{letter-spacing:5.888000pt;}
.ls24{letter-spacing:6.528000pt;}
.lsa{letter-spacing:6.592000pt;}
.ls18{letter-spacing:7.168000pt;}
.lsb{letter-spacing:7.232000pt;}
.lse{letter-spacing:9.088000pt;}
.ls23{letter-spacing:10.368000pt;}
.ls22{letter-spacing:11.008000pt;}
.ls25{letter-spacing:12.928000pt;}
.ls1f{letter-spacing:14.208000pt;}
.ls8{letter-spacing:37.696000pt;}
.ls1e{letter-spacing:129.408000pt;}
.lsf{letter-spacing:177.408000pt;}
.ls21{letter-spacing:591.488000pt;}
.ls17{letter-spacing:724.608000pt;}
.ls26{letter-spacing:1844.608000pt;}
.ws47{word-spacing:-16.922880pt;}
.wsc{word-spacing:-15.296000pt;}
.wsa{word-spacing:-14.976000pt;}
.ws2{word-spacing:-14.848000pt;}
.ws34{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.592000pt;}
.ws49{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws4d{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.208000pt;}
.ws4f{word-spacing:-14.144000pt;}
.ws48{word-spacing:-14.080000pt;}
.ws4e{word-spacing:-13.952000pt;}
.ws40{word-spacing:-0.960000pt;}
.ws46{word-spacing:-0.957440pt;}
.ws7{word-spacing:-0.768000pt;}
.ws4b{word-spacing:-0.704000pt;}
.ws4c{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.256000pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws5{word-spacing:-0.128000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws42{word-spacing:0.192000pt;}
.ws14{word-spacing:0.256000pt;}
.ws18{word-spacing:0.320000pt;}
.ws25{word-spacing:0.384000pt;}
.ws9{word-spacing:0.512000pt;}
.ws32{word-spacing:0.640000pt;}
.ws44{word-spacing:0.768000pt;}
.ws33{word-spacing:0.896000pt;}
.ws35{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.792000pt;}
.ws3c{word-spacing:2.432000pt;}
.ws43{word-spacing:2.816000pt;}
.ws2a{word-spacing:3.072000pt;}
.ws2c{word-spacing:3.328000pt;}
.ws2b{word-spacing:3.456000pt;}
.ws28{word-spacing:3.712000pt;}
.ws3b{word-spacing:3.968000pt;}
.ws2e{word-spacing:4.352000pt;}
.ws45{word-spacing:4.672000pt;}
.ws20{word-spacing:4.992000pt;}
.wse{word-spacing:5.248000pt;}
.ws3f{word-spacing:5.376000pt;}
.ws3e{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.632000pt;}
.ws16{word-spacing:6.528000pt;}
.ws17{word-spacing:6.848000pt;}
.ws1c{word-spacing:6.912000pt;}
.ws24{word-spacing:8.832000pt;}
.ws39{word-spacing:9.216000pt;}
.ws38{word-spacing:10.112000pt;}
.ws1e{word-spacing:10.752000pt;}
.ws30{word-spacing:10.880000pt;}
.ws2f{word-spacing:10.944000pt;}
.ws1d{word-spacing:11.136000pt;}
.ws31{word-spacing:11.520000pt;}
.ws41{word-spacing:12.032000pt;}
.ws21{word-spacing:12.672000pt;}
.ws2d{word-spacing:13.952000pt;}
.ws29{word-spacing:14.592000pt;}
.ws1b{word-spacing:15.232000pt;}
.ws27{word-spacing:15.872000pt;}
.ws26{word-spacing:16.128000pt;}
.ws13{word-spacing:17.472000pt;}
.ws3a{word-spacing:17.792000pt;}
.ws15{word-spacing:18.368000pt;}
.ws37{word-spacing:18.432000pt;}
.ws36{word-spacing:19.072000pt;}
.ws22{word-spacing:20.352000pt;}
.ws23{word-spacing:20.992000pt;}
.ws11{word-spacing:37.056000pt;}
.ws10{word-spacing:37.440000pt;}
._2{margin-left:-14.592000pt;}
._0{margin-left:-4.638960pt;}
._1{margin-left:-2.308853pt;}
._3{margin-left:-0.896000pt;}
._4{width:0.960000pt;}
._e{width:2.240000pt;}
._9{width:3.648000pt;}
._d{width:4.608000pt;}
._10{width:5.632000pt;}
._c{width:6.596853pt;}
._6{width:7.616000pt;}
._8{width:8.960000pt;}
._b{width:9.860853pt;}
._7{width:11.072000pt;}
._f{width:13.257707pt;}
._a{width:18.052853pt;}
._5{width:37.056000pt;}
._11{width:174.208000pt;}
._12{width:967.168000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:62.853333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:2.805333pt;}
.ycc{bottom:33.333415pt;}
.ye8{bottom:102.080000pt;}
.ycb{bottom:107.680000pt;}
.yd5{bottom:113.920000pt;}
.ye7{bottom:120.320000pt;}
.yca{bottom:126.080000pt;}
.y6f{bottom:127.680000pt;}
.y4b{bottom:132.160000pt;}
.y99{bottom:137.280000pt;}
.ye6{bottom:138.720000pt;}
.yc9{bottom:144.480000pt;}
.y6e{bottom:145.920000pt;}
.y4a{bottom:150.400000pt;}
.yd4{bottom:150.560000pt;}
.y1b{bottom:153.120000pt;}
.y98{bottom:155.680000pt;}
.ye5{bottom:157.120000pt;}
.yc8{bottom:162.880000pt;}
.y6d{bottom:164.320000pt;}
.y49{bottom:168.800000pt;}
.yd3{bottom:168.960000pt;}
.y1a{bottom:171.520000pt;}
.y97{bottom:174.080000pt;}
.ye4{bottom:175.520000pt;}
.yc7{bottom:181.120000pt;}
.y6c{bottom:182.720000pt;}
.y48{bottom:187.200000pt;}
.yd2{bottom:187.360000pt;}
.y19{bottom:189.920000pt;}
.y96{bottom:192.320000pt;}
.ye3{bottom:193.760000pt;}
.yc6{bottom:199.520000pt;}
.y6b{bottom:200.960000pt;}
.y47{bottom:205.600000pt;}
.y18{bottom:208.320000pt;}
.y95{bottom:210.720000pt;}
.ye2{bottom:212.160000pt;}
.yc5{bottom:217.920000pt;}
.y6a{bottom:219.360000pt;}
.y46{bottom:223.840000pt;}
.yd1{bottom:224.000000pt;}
.y17{bottom:226.560000pt;}
.y94{bottom:229.120000pt;}
.ye1{bottom:230.560000pt;}
.yc4{bottom:236.320000pt;}
.y69{bottom:237.760000pt;}
.y16{bottom:241.280000pt;}
.y45{bottom:242.240000pt;}
.yd0{bottom:242.400000pt;}
.y93{bottom:247.040000pt;}
.ye0{bottom:248.960000pt;}
.yc3{bottom:254.560000pt;}
.y68{bottom:256.160000pt;}
.y44{bottom:260.640000pt;}
.ycf{bottom:260.800000pt;}
.ydf{bottom:267.200000pt;}
.yc2{bottom:272.960000pt;}
.y67{bottom:274.400000pt;}
.y43{bottom:279.040000pt;}
.y92{bottom:281.920000pt;}
.yde{bottom:285.600000pt;}
.yc1{bottom:291.360000pt;}
.y66{bottom:292.800000pt;}
.y42{bottom:297.280000pt;}
.y77{bottom:297.440000pt;}
.y91{bottom:300.320000pt;}
.yc0{bottom:309.760000pt;}
.y65{bottom:311.200000pt;}
.y41{bottom:315.680000pt;}
.y15{bottom:315.840000pt;}
.ydd{bottom:317.120000pt;}
.y90{bottom:318.720000pt;}
.ybf{bottom:328.000000pt;}
.y64{bottom:329.600000pt;}
.y40{bottom:334.080000pt;}
.y14{bottom:334.240000pt;}
.ydc{bottom:335.680000pt;}
.y8f{bottom:336.960000pt;}
.ybe{bottom:346.400000pt;}
.y63{bottom:347.840000pt;}
.y3f{bottom:352.480000pt;}
.y13{bottom:352.640000pt;}
.ydb{bottom:354.080000pt;}
.y8e{bottom:355.360000pt;}
.ybd{bottom:364.800000pt;}
.y62{bottom:366.240000pt;}
.y3e{bottom:370.720000pt;}
.y12{bottom:370.880000pt;}
.yda{bottom:372.320000pt;}
.y8d{bottom:373.760000pt;}
.ybc{bottom:383.200000pt;}
.y61{bottom:384.640000pt;}
.y3d{bottom:389.120000pt;}
.y11{bottom:389.280000pt;}
.yd9{bottom:390.720000pt;}
.y8c{bottom:392.160000pt;}
.ybb{bottom:401.440000pt;}
.y60{bottom:403.040000pt;}
.y3c{bottom:407.520000pt;}
.y10{bottom:407.680000pt;}
.yd8{bottom:409.120000pt;}
.y8b{bottom:410.400000pt;}
.yba{bottom:419.840000pt;}
.y5f{bottom:421.280000pt;}
.y3b{bottom:425.920000pt;}
.yf{bottom:426.080000pt;}
.yd7{bottom:427.520000pt;}
.y8a{bottom:428.800000pt;}
.yb9{bottom:438.240000pt;}
.y3a{bottom:444.160000pt;}
.y76{bottom:444.320000pt;}
.yd6{bottom:445.280000pt;}
.y89{bottom:447.200000pt;}
.yb8{bottom:456.640000pt;}
.y5e{bottom:458.080000pt;}
.y75{bottom:462.720000pt;}
.y88{bottom:465.440000pt;}
.yb7{bottom:474.880000pt;}
.y5d{bottom:476.480000pt;}
.y39{bottom:480.960000pt;}
.ye{bottom:481.120000pt;}
.y87{bottom:483.840000pt;}
.yb6{bottom:493.280000pt;}
.y5c{bottom:494.720000pt;}
.y38{bottom:499.360000pt;}
.yd{bottom:499.520000pt;}
.y86{bottom:502.240000pt;}
.yb5{bottom:511.680000pt;}
.y5b{bottom:513.120000pt;}
.y37{bottom:517.600000pt;}
.yc{bottom:517.760000pt;}
.y85{bottom:520.640000pt;}
.yb4{bottom:530.080000pt;}
.y5a{bottom:531.520000pt;}
.y36{bottom:536.000000pt;}
.yb{bottom:536.160000pt;}
.y84{bottom:538.880000pt;}
.yb3{bottom:548.320000pt;}
.y59{bottom:549.920000pt;}
.y35{bottom:554.400000pt;}
.ya{bottom:554.560000pt;}
.y83{bottom:557.280000pt;}
.yb2{bottom:566.720000pt;}
.y58{bottom:568.160000pt;}
.y34{bottom:572.800000pt;}
.y9{bottom:572.960000pt;}
.y82{bottom:575.680000pt;}
.yb1{bottom:585.120000pt;}
.y57{bottom:586.560000pt;}
.y33{bottom:591.040000pt;}
.y8{bottom:591.200000pt;}
.y81{bottom:594.080000pt;}
.yb0{bottom:603.520000pt;}
.y56{bottom:604.960000pt;}
.y32{bottom:609.440000pt;}
.y7{bottom:609.600000pt;}
.yaf{bottom:621.760000pt;}
.y55{bottom:623.360000pt;}
.y31{bottom:627.840000pt;}
.y6{bottom:628.000000pt;}
.y80{bottom:631.040000pt;}
.yae{bottom:640.160000pt;}
.y54{bottom:641.600000pt;}
.y30{bottom:646.240000pt;}
.y5{bottom:646.400000pt;}
.y7f{bottom:649.440000pt;}
.yad{bottom:658.560000pt;}
.y53{bottom:660.000000pt;}
.y2f{bottom:664.480000pt;}
.y4{bottom:664.640000pt;}
.y7e{bottom:667.680000pt;}
.yac{bottom:676.800000pt;}
.y52{bottom:678.400000pt;}
.y2e{bottom:682.880000pt;}
.y3{bottom:683.040000pt;}
.yab{bottom:695.200000pt;}
.y51{bottom:696.800000pt;}
.y2d{bottom:701.280000pt;}
.y7d{bottom:704.800000pt;}
.yaa{bottom:713.600000pt;}
.y50{bottom:715.040000pt;}
.y2c{bottom:719.520000pt;}
.y74{bottom:719.680000pt;}
.y7c{bottom:723.200000pt;}
.ya9{bottom:732.000000pt;}
.y4f{bottom:733.440000pt;}
.y2b{bottom:737.920000pt;}
.y73{bottom:738.080000pt;}
.y7b{bottom:741.600000pt;}
.y1{bottom:749.195333pt;}
.ya8{bottom:750.240000pt;}
.y4e{bottom:751.840000pt;}
.y2a{bottom:756.320000pt;}
.y72{bottom:756.480000pt;}
.y7a{bottom:759.840000pt;}
.ya7{bottom:768.640000pt;}
.y29{bottom:774.720000pt;}
.ya6{bottom:787.040000pt;}
.y4d{bottom:788.480000pt;}
.y28{bottom:792.960000pt;}
.y71{bottom:793.120000pt;}
.y79{bottom:796.640000pt;}
.y4c{bottom:803.040000pt;}
.ya5{bottom:805.440000pt;}
.y78{bottom:811.200000pt;}
.y27{bottom:811.360000pt;}
.y70{bottom:811.520000pt;}
.ya4{bottom:823.680000pt;}
.y26{bottom:829.760000pt;}
.yce{bottom:829.920000pt;}
.ya3{bottom:842.080000pt;}
.y25{bottom:848.160000pt;}
.ya2{bottom:860.480000pt;}
.y24{bottom:866.560000pt;}
.ya1{bottom:878.880000pt;}
.y23{bottom:884.960000pt;}
.ya0{bottom:897.120000pt;}
.y22{bottom:903.360000pt;}
.y9f{bottom:915.520000pt;}
.y21{bottom:921.600000pt;}
.y9e{bottom:933.920000pt;}
.y20{bottom:940.000000pt;}
.y9d{bottom:952.320000pt;}
.y1f{bottom:958.400000pt;}
.y9c{bottom:970.560000pt;}
.y1e{bottom:976.800000pt;}
.y9b{bottom:989.445600pt;}
.y1d{bottom:995.040000pt;}
.y9a{bottom:1010.880000pt;}
.y1c{bottom:1013.440000pt;}
.y2{bottom:1013.600000pt;}
.h9{height:14.666747pt;}
.h2{height:45.757227pt;}
.ha{height:57.916667pt;}
.h7{height:58.740000pt;}
.hb{height:61.410000pt;}
.h4{height:68.288000pt;}
.h6{height:69.376000pt;}
.h5{height:69.500000pt;}
.h8{height:79.896960pt;}
.h0{height:1122.520000pt;}
.h3{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:19.441333pt;}
.w4{width:25.521333pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.xd{left:143.360000pt;}
.x14{left:149.440000pt;}
.x3{left:155.360000pt;}
.xe{left:161.440000pt;}
.xf{left:202.880000pt;}
.x11{left:261.920000pt;}
.x13{left:273.920000pt;}
.x1{left:288.334133pt;}
.x16{left:311.360000pt;}
.x15{left:322.720000pt;}
.x17{left:328.800000pt;}
.x5{left:348.960000pt;}
.x6{left:362.240000pt;}
.x1b{left:371.040000pt;}
.x1e{left:384.119344pt;}
.x1d{left:387.159342pt;}
.x19{left:396.800000pt;}
.x10{left:407.520000pt;}
.x9{left:451.040000pt;}
.xa{left:494.880000pt;}
.x1a{left:516.960000pt;}
.x7{left:531.040000pt;}
.x18{left:540.800000pt;}
.xb{left:559.360000pt;}
.x12{left:562.880000pt;}
.x8{left:595.840000pt;}
.xc{left:616.800000pt;}
.x1c{left:661.600000pt;}
.x4{left:676.480000pt;}
}

