
    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_c3b11a5ff3a2af7593935bd4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_450830b2e0f848f499ded4fa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.865000;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_5f13371db8b6b62b5a31d27a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_b24781c9df412ecc168adde6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.809082;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_e155099a00d121f9ccd660d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_601f37a637cbcb2ba22b817e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_d39e7336db6af124172755b1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_90c35fe36244ea2f56a84761.woff')format("woff");}.ff8{font-family:ff8;line-height:0.891602;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_54ca634c482392d5089622ea.woff')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_67b37e6ab58d1329b44feb57.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_34dd66ff434711d0c81c5ce0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_278ee82564f5126506c1852d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_67b37e6ab58d1329b44feb57.woff')format("woff");}.ffd{font-family:ffd;line-height:0.895996;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:ffe;src:url('chunks/assets/font_d3743e4bc49a47dee79dc8bf.woff')format("woff");}.ffe{font-family:ffe;line-height:0.848145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-19.980000px;}
.v3{vertical-align:-17.982000px;}
.v7{vertical-align:-15.984000px;}
.v5{vertical-align:-9.165600px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.960000px;}
.v4{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.ls30{letter-spacing:-4.428000px;}
.ls1c{letter-spacing:-3.726000px;}
.ls25{letter-spacing:-3.024000px;}
.ls4{letter-spacing:-3.000000px;}
.ls19{letter-spacing:-2.916000px;}
.ls21{letter-spacing:-2.646000px;}
.ls4a{letter-spacing:-2.592000px;}
.ls34{letter-spacing:-2.268000px;}
.ls5{letter-spacing:-1.998000px;}
.ls29{letter-spacing:-1.944000px;}
.ls26{letter-spacing:-1.890000px;}
.ls1b{letter-spacing:-1.782000px;}
.ls24{letter-spacing:-1.728000px;}
.ls3b{letter-spacing:-1.458000px;}
.ls4e{letter-spacing:-1.404000px;}
.ls20{letter-spacing:-1.242000px;}
.ls2e{letter-spacing:-1.188000px;}
.ls2f{letter-spacing:-1.134000px;}
.ls4b{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-1.026000px;}
.ls4c{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.918000px;}
.lsa{letter-spacing:-0.900000px;}
.ls38{letter-spacing:-0.864000px;}
.ls31{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.702000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.486000px;}
.lsb{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.472230px;}
.ls6{letter-spacing:-0.432000px;}
.ls49{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.300000px;}
.ls1d{letter-spacing:-0.270000px;}
.ls50{letter-spacing:-0.251856px;}
.ls1e{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000768px;}
.ls43{letter-spacing:0.001164px;}
.ls1{letter-spacing:0.003600px;}
.ls27{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.378000px;}
.ls15{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.486000px;}
.ls14{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.566676px;}
.ls37{letter-spacing:0.594000px;}
.lse{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.756000px;}
.ls51{letter-spacing:0.810000px;}
.ls1f{letter-spacing:1.296000px;}
.ls4d{letter-spacing:1.674000px;}
.ls0{letter-spacing:2.340000px;}
.ls3{letter-spacing:12.300000px;}
.ls3e{letter-spacing:380.862000px;}
.ls3f{letter-spacing:382.050000px;}
.ls46{letter-spacing:595.238364px;}
.ls11{letter-spacing:605.934000px;}
.ls12{letter-spacing:614.574000px;}
.ls13{letter-spacing:630.504000px;}
.ls40{letter-spacing:631.260000px;}
.ls41{letter-spacing:631.962000px;}
.ls45{letter-spacing:632.340000px;}
.ls47{letter-spacing:633.366000px;}
.ls10{letter-spacing:689.472000px;}
.ls44{letter-spacing:827.704164px;}
.ls42{letter-spacing:949.900764px;}
.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:-15.900000px;}
.ws2{word-spacing:-14.916000px;}
.wsf{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.560000px;}
.ws68{word-spacing:-12.798000px;}
.ws5{word-spacing:-12.780000px;}
.ws4e{word-spacing:-12.690000px;}
.ws42{word-spacing:-12.636000px;}
.ws66{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.312000px;}
.ws8{word-spacing:-12.300000px;}
.ws20{word-spacing:-12.258000px;}
.ws6{word-spacing:-12.204000px;}
.ws1a{word-spacing:-12.096000px;}
.ws21{word-spacing:-12.042000px;}
.ws75{word-spacing:-11.988000px;}
.ws1d{word-spacing:-11.934000px;}
.ws22{word-spacing:-11.880000px;}
.ws5f{word-spacing:-11.718000px;}
.ws8a{word-spacing:-11.664000px;}
.ws58{word-spacing:-11.448000px;}
.ws6b{word-spacing:-11.340000px;}
.ws5c{word-spacing:-11.178000px;}
.ws54{word-spacing:-10.962000px;}
.ws24{word-spacing:-10.848000px;}
.ws8f{word-spacing:-10.800000px;}
.ws1f{word-spacing:-10.314000px;}
.ws90{word-spacing:-10.206000px;}
.ws4a{word-spacing:-9.936000px;}
.ws82{word-spacing:-9.612000px;}
.ws1c{word-spacing:-9.288000px;}
.ws0{word-spacing:-7.905480px;}
.ws1b{word-spacing:-7.681608px;}
.ws1{word-spacing:-7.114932px;}
.ws94{word-spacing:-6.863076px;}
.ws93{word-spacing:-6.642702px;}
.ws23{word-spacing:-6.324384px;}
.ws2e{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.140000px;}
.wsd{word-spacing:-1.020000px;}
.ws97{word-spacing:-0.810000px;}
.ws39{word-spacing:-0.756000px;}
.ws17{word-spacing:-0.600000px;}
.ws7e{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.486000px;}
.ws16{word-spacing:-0.480000px;}
.ws7c{word-spacing:-0.270000px;}
.ws26{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.120000px;}
.ws36{word-spacing:-0.108000px;}
.ws7{word-spacing:0.000000px;}
.ws3a{word-spacing:0.054000px;}
.ws2b{word-spacing:0.108000px;}
.ws2a{word-spacing:0.216000px;}
.ws31{word-spacing:0.270000px;}
.ws11{word-spacing:0.300000px;}
.ws92{word-spacing:0.378000px;}
.wsb{word-spacing:0.432000px;}
.ws13{word-spacing:0.480000px;}
.ws30{word-spacing:0.540000px;}
.wsa{word-spacing:0.600000px;}
.ws14{word-spacing:0.720000px;}
.wse{word-spacing:0.780000px;}
.ws41{word-spacing:0.810000px;}
.ws12{word-spacing:0.900000px;}
.ws3c{word-spacing:1.026000px;}
.ws3e{word-spacing:1.134000px;}
.ws3d{word-spacing:1.188000px;}
.ws2d{word-spacing:1.242000px;}
.ws32{word-spacing:1.728000px;}
.ws91{word-spacing:1.800000px;}
.ws3f{word-spacing:1.890000px;}
.ws10{word-spacing:1.998000px;}
.ws2f{word-spacing:2.646000px;}
.ws33{word-spacing:3.024000px;}
.ws40{word-spacing:4.428000px;}
.ws96{word-spacing:5.400000px;}
.ws95{word-spacing:9.120000px;}
.wsc{word-spacing:13.200000px;}
.ws2c{word-spacing:40.500000px;}
.ws37{word-spacing:41.418000px;}
.ws7b{word-spacing:41.634000px;}
.ws34{word-spacing:41.742000px;}
.ws28{word-spacing:41.796000px;}
.ws35{word-spacing:41.850000px;}
.ws7d{word-spacing:42.714000px;}
.ws27{word-spacing:43.578000px;}
.ws38{word-spacing:43.740000px;}
.ws29{word-spacing:45.522000px;}
.ws86{word-spacing:258.390000px;}
.ws84{word-spacing:261.792000px;}
.ws19{word-spacing:271.350000px;}
.ws81{word-spacing:273.402000px;}
.ws85{word-spacing:275.076000px;}
.ws80{word-spacing:276.048000px;}
.ws83{word-spacing:278.046000px;}
.ws7f{word-spacing:314.604000px;}
.ws88{word-spacing:329.994000px;}
.ws43{word-spacing:459.540000px;}
.ws4c{word-spacing:465.858000px;}
.ws67{word-spacing:466.614000px;}
.ws4b{word-spacing:467.154000px;}
.ws63{word-spacing:467.208000px;}
.ws4d{word-spacing:467.262000px;}
.ws61{word-spacing:467.532000px;}
.ws62{word-spacing:467.694000px;}
.ws5e{word-spacing:467.964000px;}
.ws47{word-spacing:468.126000px;}
.ws46{word-spacing:468.234000px;}
.ws45{word-spacing:468.288000px;}
.ws60{word-spacing:468.558000px;}
.ws6f{word-spacing:468.720000px;}
.ws64{word-spacing:468.774000px;}
.ws48{word-spacing:468.828000px;}
.ws5b{word-spacing:468.882000px;}
.ws6c{word-spacing:469.044000px;}
.ws72{word-spacing:469.152000px;}
.ws59{word-spacing:469.368000px;}
.ws70{word-spacing:469.476000px;}
.ws7a{word-spacing:469.530000px;}
.ws49{word-spacing:469.584000px;}
.ws6d{word-spacing:469.638000px;}
.ws5d{word-spacing:469.692000px;}
.ws78{word-spacing:469.746000px;}
.ws6a{word-spacing:469.800000px;}
.ws5a{word-spacing:470.286000px;}
.ws56{word-spacing:470.340000px;}
.ws57{word-spacing:470.880000px;}
.ws69{word-spacing:471.204000px;}
.ws51{word-spacing:471.474000px;}
.ws53{word-spacing:471.906000px;}
.ws71{word-spacing:472.338000px;}
.ws6e{word-spacing:472.716000px;}
.ws4f{word-spacing:472.770000px;}
.ws55{word-spacing:472.824000px;}
.ws73{word-spacing:472.932000px;}
.ws52{word-spacing:473.202000px;}
.ws50{word-spacing:473.256000px;}
.ws74{word-spacing:473.526000px;}
.ws65{word-spacing:473.688000px;}
.ws77{word-spacing:474.228000px;}
.ws8e{word-spacing:614.574000px;}
.ws8c{word-spacing:621.810000px;}
.ws8d{word-spacing:622.026000px;}
.ws18{word-spacing:884.196000px;}
.ws89{word-spacing:977.076000px;}
.ws44{word-spacing:1069.200000px;}
.ws76{word-spacing:1083.618000px;}
.ws79{word-spacing:1084.968000px;}
.ws8b{word-spacing:1101.492000px;}
.ws87{word-spacing:1230.174000px;}
._94{margin-left:-22.104000px;}
._12{margin-left:-14.088000px;}
._9{margin-left:-12.927306px;}
._f{margin-left:-7.188000px;}
._13{margin-left:-6.144000px;}
._a{margin-left:-5.100000px;}
._0{margin-left:-3.792000px;}
._7{margin-left:-2.268000px;}
._2{margin-left:-1.200000px;}
._8{width:1.248000px;}
._1{width:2.940000px;}
._5{width:3.960000px;}
._4{width:5.220000px;}
._3{width:6.480000px;}
._6{width:7.980000px;}
._d{width:9.060000px;}
._c{width:10.068000px;}
._b{width:11.340000px;}
._e{width:12.420000px;}
._97{width:13.662000px;}
._11{width:15.552000px;}
._10{width:17.208000px;}
._96{width:18.900000px;}
._15{width:20.340000px;}
._16{width:21.456000px;}
._9a{width:36.072000px;}
._99{width:38.502000px;}
._98{width:39.798000px;}
._19{width:41.796000px;}
._95{width:65.880000px;}
._8e{width:81.156000px;}
._17{width:117.210000px;}
._18{width:158.424000px;}
._5a{width:183.888000px;}
._5d{width:192.126000px;}
._5b{width:198.387060px;}
._58{width:200.412000px;}
._5c{width:204.990000px;}
._5e{width:216.394260px;}
._56{width:225.618000px;}
._67{width:228.222000px;}
._64{width:233.064000px;}
._60{width:237.552000px;}
._65{width:249.316260px;}
._5f{width:257.940000px;}
._57{width:261.048000px;}
._62{width:262.518000px;}
._91{width:267.354000px;}
._66{width:268.818000px;}
._1d{width:270.870000px;}
._53{width:273.156000px;}
._63{width:274.260000px;}
._50{width:277.692000px;}
._86{width:279.978000px;}
._88{width:281.058000px;}
._54{width:292.134000px;}
._1b{width:305.580000px;}
._39{width:307.308000px;}
._3f{width:312.192000px;}
._87{width:321.726000px;}
._4f{width:333.882000px;}
._8d{width:345.396000px;}
._1c{width:348.954000px;}
._30{width:353.820000px;}
._51{width:362.391060px;}
._45{width:382.110000px;}
._52{width:383.310000px;}
._4a{width:388.314000px;}
._43{width:393.456000px;}
._27{width:394.908000px;}
._2a{width:396.480000px;}
._32{width:402.240000px;}
._93{width:406.368000px;}
._41{width:411.396000px;}
._22{width:414.072000px;}
._1a{width:416.256660px;}
._28{width:420.174000px;}
._47{width:421.356000px;}
._23{width:422.382000px;}
._35{width:428.058000px;}
._38{width:430.068000px;}
._25{width:433.488000px;}
._33{width:440.004000px;}
._1f{width:441.666000px;}
._3b{width:442.908000px;}
._4b{width:446.250000px;}
._20{width:447.618000px;}
._2e{width:449.010000px;}
._3c{width:451.182000px;}
._36{width:453.450000px;}
._4e{width:457.301460px;}
._48{width:460.782000px;}
._2c{width:468.863340px;}
._69{width:473.790000px;}
._2f{width:475.158000px;}
._7c{width:479.886000px;}
._4d{width:487.524000px;}
._74{width:504.942000px;}
._7e{width:560.988000px;}
._92{width:579.790200px;}
._68{width:583.212000px;}
._55{width:603.921060px;}
._59{width:617.457060px;}
._61{width:645.431460px;}
._7a{width:686.178000px;}
._7f{width:689.268000px;}
._7b{width:702.588000px;}
._6a{width:706.050000px;}
._6b{width:707.346000px;}
._80{width:708.372000px;}
._85{width:717.186000px;}
._81{width:721.872000px;}
._7d{width:732.660000px;}
._90{width:756.894000px;}
._78{width:773.592000px;}
._6d{width:777.858000px;}
._79{width:780.504000px;}
._75{width:798.120000px;}
._3d{width:806.910000px;}
._6c{width:816.966000px;}
._6e{width:821.802000px;}
._77{width:828.282000px;}
._76{width:833.652000px;}
._70{width:842.670000px;}
._6f{width:843.966000px;}
._71{width:846.288000px;}
._73{width:851.364000px;}
._44{width:867.888000px;}
._72{width:871.344000px;}
._46{width:910.218000px;}
._4c{width:939.000000px;}
._49{width:948.282000px;}
._34{width:967.464000px;}
._3e{width:992.952000px;}
._31{width:998.460000px;}
._37{width:1017.930000px;}
._42{width:1021.386000px;}
._3a{width:1023.138000px;}
._40{width:1028.970000px;}
._29{width:1035.396000px;}
._2b{width:1037.394000px;}
._26{width:1039.392000px;}
._1e{width:1060.074000px;}
._24{width:1065.312000px;}
._2d{width:1071.306000px;}
._21{width:1083.402000px;}
._8f{width:1181.190000px;}
._8a{width:1276.452000px;}
._8c{width:1397.388000px;}
._89{width:1673.244000px;}
._84{width:1720.158000px;}
._8b{width:1800.846000px;}
._83{width:1885.302000px;}
._82{width:1886.544000px;}
._14{width:2571.550200px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fsa{font-size:49.693267px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:246.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:31.889850px;}
.y14{bottom:80.551050px;}
.ybb{bottom:80.551200px;}
.y7e{bottom:80.555400px;}
.y16e{bottom:80.835000px;}
.y1af{bottom:81.033150px;}
.y45{bottom:81.148950px;}
.y13a{bottom:81.684750px;}
.yfd{bottom:86.303400px;}
.y139{bottom:94.428750px;}
.y44{bottom:95.404950px;}
.y16d{bottom:95.833500px;}
.y1ae{bottom:96.304650px;}
.y13{bottom:97.051050px;}
.yba{bottom:97.051200px;}
.y7d{bottom:97.055400px;}
.yfc{bottom:99.047400px;}
.y43{bottom:109.660950px;}
.y16c{bottom:110.832000px;}
.y1ad{bottom:111.451650px;}
.yfb{bottom:111.791400px;}
.y12{bottom:113.551050px;}
.yb9{bottom:113.551200px;}
.y7c{bottom:113.555400px;}
.y138{bottom:120.303000px;}
.y42{bottom:123.916950px;}
.yfa{bottom:124.535400px;}
.yf9{bottom:124.541400px;}
.y16b{bottom:125.830500px;}
.y1ac{bottom:126.598650px;}
.y11{bottom:130.051050px;}
.yb8{bottom:130.051200px;}
.y7b{bottom:130.055400px;}
.y137{bottom:134.680500px;}
.yf8{bottom:137.285400px;}
.y41{bottom:138.172950px;}
.y16a{bottom:140.829000px;}
.y1ab{bottom:141.745650px;}
.y9d{bottom:146.045400px;}
.y10{bottom:146.551050px;}
.yc3{bottom:146.551200px;}
.y7a{bottom:146.555400px;}
.y136{bottom:149.058000px;}
.y40{bottom:152.428950px;}
.y169{bottom:155.827500px;}
.y1aa{bottom:156.892650px;}
.yb7{bottom:162.541200px;}
.yf{bottom:163.051050px;}
.yc2{bottom:163.051200px;}
.y79{bottom:163.055400px;}
.yf7{bottom:166.751250px;}
.y135{bottom:167.688000px;}
.y168{bottom:170.826000px;}
.y1a9{bottom:172.039650px;}
.ye{bottom:179.551050px;}
.yc1{bottom:179.551200px;}
.y78{bottom:179.555400px;}
.y134{bottom:182.065500px;}
.yf6{bottom:182.829750px;}
.y3f{bottom:183.681450px;}
.y167{bottom:185.824500px;}
.y1a8{bottom:187.186650px;}
.yd{bottom:196.051050px;}
.yb6{bottom:196.051200px;}
.y77{bottom:196.055400px;}
.y133{bottom:196.443000px;}
.y166{bottom:200.823000px;}
.y3e{bottom:202.189950px;}
.yf5{bottom:202.308300px;}
.y1a7{bottom:202.482150px;}
.yc{bottom:212.551050px;}
.yb5{bottom:212.551200px;}
.y76{bottom:212.555400px;}
.y132{bottom:215.073000px;}
.y165{bottom:215.821500px;}
.y1a6{bottom:217.777650px;}
.yf4{bottom:218.386800px;}
.yb{bottom:229.051050px;}
.yb4{bottom:229.051200px;}
.y75{bottom:229.055400px;}
.y131{bottom:229.450500px;}
.y164{bottom:230.820000px;}
.y1a5{bottom:233.073150px;}
.yf3{bottom:237.866700px;}
.y130{bottom:243.828000px;}
.ya{bottom:245.551050px;}
.y2b{bottom:245.551200px;}
.y74{bottom:245.555400px;}
.y163{bottom:245.818500px;}
.y1a4{bottom:248.368650px;}
.yf2{bottom:253.944000px;}
.y162{bottom:260.817000px;}
.y9{bottom:262.051050px;}
.y2a{bottom:262.051200px;}
.y9c{bottom:262.055400px;}
.y12f{bottom:262.458000px;}
.y1a3{bottom:263.664150px;}
.yf1{bottom:273.423750px;}
.y12e{bottom:276.835500px;}
.y73{bottom:278.045400px;}
.y8{bottom:278.551050px;}
.y29{bottom:278.551200px;}
.y9b{bottom:278.555400px;}
.y1a2{bottom:278.959650px;}
.y161{bottom:284.320800px;}
.yf0{bottom:289.502550px;}
.y12d{bottom:291.213000px;}
.y1a1{bottom:294.255150px;}
.y7{bottom:295.051050px;}
.yb3{bottom:295.051200px;}
.y9a{bottom:295.055400px;}
.yee{bottom:308.983050px;}
.y1a0{bottom:309.550650px;}
.y12c{bottom:309.843000px;}
.y6{bottom:311.551050px;}
.yb2{bottom:311.551200px;}
.y72{bottom:311.555400px;}
.y28{bottom:312.487200px;}
.yed{bottom:323.980800px;}
.yef{bottom:323.981550px;}
.y12b{bottom:324.220500px;}
.y19f{bottom:324.846150px;}
.yb1{bottom:328.051200px;}
.y71{bottom:328.055400px;}
.y160{bottom:331.322700px;}
.y12a{bottom:338.567100px;}
.yec{bottom:340.058100px;}
.y19e{bottom:340.141650px;}
.yb0{bottom:344.551200px;}
.y70{bottom:344.555400px;}
.y15f{bottom:345.578700px;}
.y19d{bottom:355.437150px;}
.y129{bottom:357.197100px;}
.yeb{bottom:359.537850px;}
.y15e{bottom:359.834700px;}
.yaf{bottom:361.051200px;}
.y6f{bottom:361.055400px;}
.y3d{bottom:364.876200px;}
.y15c{bottom:365.796600px;}
.y19c{bottom:370.584150px;}
.y128{bottom:371.574600px;}
.yea{bottom:375.612600px;}
.yae{bottom:377.551200px;}
.y6e{bottom:377.555400px;}
.y15b{bottom:378.546600px;}
.y15d{bottom:382.588650px;}
.y3c{bottom:385.621200px;}
.y19b{bottom:385.731150px;}
.y127{bottom:385.952100px;}
.y15a{bottom:387.318600px;}
.yad{bottom:394.051200px;}
.y6d{bottom:394.055400px;}
.ye9{bottom:395.093100px;}
.y159{bottom:400.062600px;}
.y19a{bottom:400.878150px;}
.y3b{bottom:402.121200px;}
.y126{bottom:404.582100px;}
.yac{bottom:410.551200px;}
.y6c{bottom:410.555400px;}
.ye8{bottom:411.171600px;}
.y158{bottom:412.806600px;}
.y199{bottom:416.025150px;}
.y3a{bottom:418.621200px;}
.y125{bottom:418.959600px;}
.y157{bottom:425.550600px;}
.yab{bottom:427.051200px;}
.y6b{bottom:427.055400px;}
.ye7{bottom:427.250100px;}
.y198{bottom:431.172150px;}
.y124{bottom:433.337100px;}
.y39{bottom:435.121200px;}
.yaa{bottom:443.551200px;}
.y6a{bottom:443.555400px;}
.y197{bottom:446.319150px;}
.ye6{bottom:446.728650px;}
.y38{bottom:451.621200px;}
.y123{bottom:451.967100px;}
.y156{bottom:453.557250px;}
.ya9{bottom:460.051200px;}
.y69{bottom:460.055400px;}
.y196{bottom:461.466150px;}
.ye5{bottom:462.807150px;}
.y122{bottom:466.344600px;}
.y37{bottom:468.121200px;}
.y155{bottom:472.187250px;}
.ya8{bottom:476.551200px;}
.y68{bottom:476.555400px;}
.y195{bottom:476.613150px;}
.y121{bottom:480.722100px;}
.ye4{bottom:482.262600px;}
.y36{bottom:484.621200px;}
.y154{bottom:490.817250px;}
.y194{bottom:491.760150px;}
.ya7{bottom:493.051200px;}
.y67{bottom:493.055400px;}
.ye3{bottom:498.341100px;}
.y120{bottom:499.352100px;}
.y35{bottom:501.121200px;}
.y193{bottom:506.907150px;}
.y153{bottom:509.446200px;}
.yc0{bottom:509.551200px;}
.y66{bottom:509.555400px;}
.y11f{bottom:513.729600px;}
.y34{bottom:517.621200px;}
.ye2{bottom:517.821600px;}
.y192{bottom:522.054150px;}
.ya6{bottom:524.793300px;}
.ybf{bottom:526.051200px;}
.y65{bottom:526.055400px;}
.y152{bottom:528.075000px;}
.y11e{bottom:528.107100px;}
.ye1{bottom:533.900100px;}
.y33{bottom:534.121200px;}
.y191{bottom:537.201150px;}
.y99{bottom:542.045400px;}
.y11d{bottom:542.484600px;}
.ybe{bottom:542.551200px;}
.y64{bottom:542.555400px;}
.y151{bottom:546.699150px;}
.ye0{bottom:549.978600px;}
.y32{bottom:550.621200px;}
.y190{bottom:552.348150px;}
.ya5{bottom:559.051200px;}
.y63{bottom:559.055400px;}
.y11c{bottom:561.114600px;}
.y150{bottom:565.329150px;}
.y31{bottom:567.121200px;}
.y18f{bottom:567.495150px;}
.ydf{bottom:569.459100px;}
.ybd{bottom:574.293300px;}
.y11b{bottom:575.492100px;}
.ya4{bottom:575.551200px;}
.y62{bottom:575.555400px;}
.y18e{bottom:582.642150px;}
.y30{bottom:583.621200px;}
.yde{bottom:585.537600px;}
.y11a{bottom:589.869600px;}
.ya3{bottom:592.051200px;}
.y61{bottom:592.055400px;}
.y14f{bottom:592.464150px;}
.y18d{bottom:597.789150px;}
.y2f{bottom:600.121200px;}
.ydd{bottom:601.616100px;}
.y119{bottom:608.499600px;}
.ya2{bottom:608.551200px;}
.y98{bottom:608.555400px;}
.y14e{bottom:611.094150px;}
.y18c{bottom:612.936150px;}
.y2e{bottom:616.621200px;}
.ydc{bottom:617.694600px;}
.y118{bottom:622.877100px;}
.y60{bottom:623.285400px;}
.ya1{bottom:625.051200px;}
.y97{bottom:625.055400px;}
.y18b{bottom:628.083150px;}
.y14d{bottom:629.724150px;}
.y2d{bottom:633.121200px;}
.ydb{bottom:637.175100px;}
.y117{bottom:637.254600px;}
.ya0{bottom:641.551200px;}
.y96{bottom:641.555400px;}
.y18a{bottom:643.339500px;}
.yda{bottom:653.253600px;}
.y2c{bottom:653.866200px;}
.y116{bottom:655.884600px;}
.y5f{bottom:656.793300px;}
.y14c{bottom:656.859150px;}
.y9f{bottom:658.051200px;}
.y95{bottom:658.055400px;}
.y189{bottom:658.486500px;}
.yd9{bottom:669.332100px;}
.y115{bottom:670.262100px;}
.y14b{bottom:671.857650px;}
.y188{bottom:673.633500px;}
.y9e{bottom:674.551200px;}
.y94{bottom:674.555400px;}
.y114{bottom:684.639600px;}
.y187{bottom:688.780500px;}
.yd8{bottom:688.812600px;}
.y5e{bottom:691.051200px;}
.y93{bottom:691.055400px;}
.y113{bottom:703.269600px;}
.y186{bottom:703.927500px;}
.yd7{bottom:704.891100px;}
.y14a{bottom:705.217050px;}
.y5d{bottom:707.551200px;}
.y92{bottom:707.555400px;}
.y27{bottom:713.529000px;}
.y112{bottom:717.647100px;}
.y185{bottom:719.074500px;}
.y149{bottom:720.215550px;}
.yd6{bottom:720.969600px;}
.y26{bottom:724.035000px;}
.y5c{bottom:724.051200px;}
.y111{bottom:732.024600px;}
.y184{bottom:734.370000px;}
.yd5{bottom:737.048100px;}
.y25{bottom:739.033500px;}
.y91{bottom:740.045400px;}
.y5b{bottom:740.551200px;}
.y24{bottom:743.529000px;}
.y183{bottom:749.665500px;}
.y110{bottom:750.654600px;}
.yd4{bottom:756.528600px;}
.y5a{bottom:757.051200px;}
.y23{bottom:758.529000px;}
.y182{bottom:764.961000px;}
.y10f{bottom:765.032100px;}
.y148{bottom:771.194400px;}
.yd3{bottom:772.607100px;}
.y22{bottom:773.529000px;}
.y59{bottom:773.551200px;}
.y90{bottom:773.555400px;}
.y10e{bottom:779.409600px;}
.y181{bottom:780.256500px;}
.y21{bottom:788.529000px;}
.yd2{bottom:788.685600px;}
.y58{bottom:790.051200px;}
.y8f{bottom:790.055400px;}
.y10d{bottom:793.787100px;}
.y147{bottom:794.937900px;}
.y180{bottom:795.552000px;}
.y20{bottom:803.529000px;}
.yd1{bottom:804.764100px;}
.y57{bottom:806.551200px;}
.y8e{bottom:806.555400px;}
.y17f{bottom:810.847500px;}
.y10c{bottom:812.417100px;}
.y146{bottom:817.820400px;}
.y1f{bottom:818.529000px;}
.y56{bottom:823.051200px;}
.y8d{bottom:823.055400px;}
.yd0{bottom:824.244600px;}
.y17e{bottom:826.143000px;}
.y10b{bottom:826.794600px;}
.y1e{bottom:833.529000px;}
.y145{bottom:836.450400px;}
.y55{bottom:839.551200px;}
.y8c{bottom:839.555400px;}
.ycf{bottom:840.323100px;}
.y10a{bottom:841.172100px;}
.y17d{bottom:841.438500px;}
.y1be{bottom:842.888100px;}
.y1cd{bottom:842.915100px;}
.y1d{bottom:848.529000px;}
.y109{bottom:855.549600px;}
.y54{bottom:856.051200px;}
.y8b{bottom:856.055400px;}
.yce{bottom:856.401600px;}
.y17c{bottom:856.734000px;}
.y1bd{bottom:857.886600px;}
.y1cc{bottom:857.913600px;}
.y1c{bottom:863.529000px;}
.y144{bottom:863.585400px;}
.y17b{bottom:872.029500px;}
.ycd{bottom:872.480100px;}
.y53{bottom:872.551200px;}
.y8a{bottom:872.555400px;}
.y1bc{bottom:872.885100px;}
.y1cb{bottom:872.912100px;}
.y108{bottom:874.179600px;}
.y1b{bottom:878.529000px;}
.y143{bottom:882.215400px;}
.y17a{bottom:887.325000px;}
.y1bb{bottom:887.883600px;}
.y1ca{bottom:887.910600px;}
.y107{bottom:888.557100px;}
.ycc{bottom:888.558600px;}
.y52{bottom:889.051200px;}
.y89{bottom:889.055400px;}
.y142{bottom:900.845400px;}
.y179{bottom:902.620500px;}
.y1ba{bottom:902.882100px;}
.y1c9{bottom:902.909100px;}
.y106{bottom:902.934600px;}
.y51{bottom:905.551200px;}
.y88{bottom:905.555400px;}
.y1a{bottom:906.041400px;}
.ycb{bottom:908.039100px;}
.y105{bottom:917.312100px;}
.y178{bottom:917.767500px;}
.y1b9{bottom:917.880600px;}
.y1c8{bottom:917.907600px;}
.y50{bottom:922.051200px;}
.y87{bottom:922.055400px;}
.y19{bottom:922.541400px;}
.yca{bottom:924.117600px;}
.y141{bottom:927.980400px;}
.y1b8{bottom:932.879100px;}
.y1c7{bottom:932.906100px;}
.y177{bottom:932.914500px;}
.y104{bottom:935.942100px;}
.y4f{bottom:938.551200px;}
.y86{bottom:938.555400px;}
.y18{bottom:939.041400px;}
.yc9{bottom:940.196100px;}
.y140{bottom:946.610400px;}
.y1b7{bottom:947.877600px;}
.y1c6{bottom:947.904600px;}
.y176{bottom:948.061500px;}
.y103{bottom:950.319600px;}
.y4e{bottom:955.051200px;}
.y85{bottom:955.055400px;}
.yc8{bottom:956.274600px;}
.y1b6{bottom:962.876100px;}
.y1c5{bottom:962.903100px;}
.y175{bottom:963.208500px;}
.y102{bottom:964.697100px;}
.y13f{bottom:965.240400px;}
.y4d{bottom:971.551200px;}
.y84{bottom:971.555400px;}
.yc7{bottom:975.752250px;}
.y17{bottom:976.798200px;}
.y1b5{bottom:977.874600px;}
.y1c4{bottom:977.901600px;}
.y174{bottom:978.355500px;}
.y4c{bottom:988.051200px;}
.y83{bottom:988.055400px;}
.yc6{bottom:991.830750px;}
.y101{bottom:991.832100px;}
.y13e{bottom:992.375400px;}
.y1b4{bottom:992.873100px;}
.y1c3{bottom:992.900100px;}
.y173{bottom:993.502500px;}
.y4b{bottom:1004.551200px;}
.y82{bottom:1004.555400px;}
.yff{bottom:1005.399600px;}
.y13c{bottom:1005.942900px;}
.y1b3{bottom:1007.871600px;}
.y1c2{bottom:1007.898600px;}
.y172{bottom:1008.649500px;}
.y16{bottom:1012.801200px;}
.yc5{bottom:1018.965750px;}
.y100{bottom:1018.967100px;}
.y13d{bottom:1019.510400px;}
.y4a{bottom:1021.051200px;}
.y81{bottom:1021.055400px;}
.y1b2{bottom:1022.870100px;}
.y1c1{bottom:1022.897100px;}
.y171{bottom:1023.796500px;}
.y49{bottom:1037.551200px;}
.y80{bottom:1037.555400px;}
.y1b1{bottom:1037.868600px;}
.y1c0{bottom:1037.895600px;}
.y170{bottom:1038.943500px;}
.yc4{bottom:1052.323650px;}
.yfe{bottom:1052.323950px;}
.y1b0{bottom:1052.867100px;}
.y13b{bottom:1052.867250px;}
.y1bf{bottom:1052.894100px;}
.y16f{bottom:1053.942000px;}
.y48{bottom:1054.051200px;}
.y7f{bottom:1054.055400px;}
.ybc{bottom:1054.291200px;}
.y3{bottom:1071.194850px;}
.y5{bottom:1071.496050px;}
.y2{bottom:1096.438350px;}
.y47{bottom:1101.259800px;}
.y46{bottom:1103.551350px;}
.y15{bottom:1109.078700px;}
.y4{bottom:1128.020850px;}
.h21{height:19.348312px;}
.h9{height:22.596943px;}
.h19{height:34.242188px;}
.h2{height:34.453125px;}
.h1a{height:35.308313px;}
.h1b{height:35.450128px;}
.hc{height:37.335938px;}
.hb{height:37.546875px;}
.hd{height:38.522461px;}
.h5{height:38.759766px;}
.h18{height:39.751252px;}
.h14{height:39.751852px;}
.h1f{height:39.753052px;}
.h1e{height:39.753652px;}
.h12{height:39.756652px;}
.h10{height:39.760252px;}
.h20{height:39.761452px;}
.h1d{height:39.772252px;}
.h11{height:39.849052px;}
.h6{height:39.990234px;}
.h23{height:40.080943px;}
.h22{height:40.141543px;}
.h16{height:40.439395px;}
.h17{height:40.444795px;}
.h15{height:40.445395px;}
.h13{height:40.455595px;}
.h1c{height:40.564195px;}
.he{height:41.015625px;}
.hf{height:42.514087px;}
.h4{height:43.066406px;}
.h8{height:43.294307px;}
.ha{height:45.890625px;}
.h7{height:91.781250px;}
.h3{height:172.200000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.759800px;}
.x1{left:62.822850px;}
.x5{left:73.536900px;}
.x6{left:85.039350px;}
.x1a{left:93.547050px;}
.x16{left:123.395550px;}
.x7{left:149.119350px;}
.x3{left:196.781100px;}
.x15{left:219.232050px;}
.xb{left:234.044550px;}
.x14{left:261.190050px;}
.x13{left:305.227050px;}
.x12{left:311.558550px;}
.x4{left:459.211650px;}
.xa{left:480.464550px;}
.x1b{left:488.975550px;}
.xc{left:500.680200px;}
.x10{left:531.266100px;}
.x11{left:538.894950px;}
.x17{left:548.807550px;}
.x9{left:576.542100px;}
.x8{left:580.168350px;}
.xd{left:626.311200px;}
.xe{left:653.554200px;}
.x18{left:666.541050px;}
.x19{left:727.655550px;}
.xf{left:770.869200px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-15.984000pt;}
.v7{vertical-align:-14.208000pt;}
.v5{vertical-align:-8.147200pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.186667pt;}
.v4{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.ls30{letter-spacing:-3.936000pt;}
.ls1c{letter-spacing:-3.312000pt;}
.ls25{letter-spacing:-2.688000pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls19{letter-spacing:-2.592000pt;}
.ls21{letter-spacing:-2.352000pt;}
.ls4a{letter-spacing:-2.304000pt;}
.ls34{letter-spacing:-2.016000pt;}
.ls5{letter-spacing:-1.776000pt;}
.ls29{letter-spacing:-1.728000pt;}
.ls26{letter-spacing:-1.680000pt;}
.ls1b{letter-spacing:-1.584000pt;}
.ls24{letter-spacing:-1.536000pt;}
.ls3b{letter-spacing:-1.296000pt;}
.ls4e{letter-spacing:-1.248000pt;}
.ls20{letter-spacing:-1.104000pt;}
.ls2e{letter-spacing:-1.056000pt;}
.ls2f{letter-spacing:-1.008000pt;}
.ls4b{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.912000pt;}
.ls4c{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.816000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.624000pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.432000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.419760pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls49{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls50{letter-spacing:-0.223872pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000683pt;}
.ls43{letter-spacing:0.001035pt;}
.ls1{letter-spacing:0.003200pt;}
.ls27{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.336000pt;}
.ls15{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.432000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.503712pt;}
.ls37{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.672000pt;}
.ls51{letter-spacing:0.720000pt;}
.ls1f{letter-spacing:1.152000pt;}
.ls4d{letter-spacing:1.488000pt;}
.ls0{letter-spacing:2.080000pt;}
.ls3{letter-spacing:10.933333pt;}
.ls3e{letter-spacing:338.544000pt;}
.ls3f{letter-spacing:339.600000pt;}
.ls46{letter-spacing:529.100768pt;}
.ls11{letter-spacing:538.608000pt;}
.ls12{letter-spacing:546.288000pt;}
.ls13{letter-spacing:560.448000pt;}
.ls40{letter-spacing:561.120000pt;}
.ls41{letter-spacing:561.744000pt;}
.ls45{letter-spacing:562.080000pt;}
.ls47{letter-spacing:562.992000pt;}
.ls10{letter-spacing:612.864000pt;}
.ls44{letter-spacing:735.737035pt;}
.ls42{letter-spacing:844.356235pt;}
.ws3{word-spacing:-14.133333pt;}
.ws2{word-spacing:-13.258667pt;}
.wsf{word-spacing:-12.160000pt;}
.ws4{word-spacing:-12.053333pt;}
.ws68{word-spacing:-11.376000pt;}
.ws5{word-spacing:-11.360000pt;}
.ws4e{word-spacing:-11.280000pt;}
.ws42{word-spacing:-11.232000pt;}
.ws66{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.944000pt;}
.ws8{word-spacing:-10.933333pt;}
.ws20{word-spacing:-10.896000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws1a{word-spacing:-10.752000pt;}
.ws21{word-spacing:-10.704000pt;}
.ws75{word-spacing:-10.656000pt;}
.ws1d{word-spacing:-10.608000pt;}
.ws22{word-spacing:-10.560000pt;}
.ws5f{word-spacing:-10.416000pt;}
.ws8a{word-spacing:-10.368000pt;}
.ws58{word-spacing:-10.176000pt;}
.ws6b{word-spacing:-10.080000pt;}
.ws5c{word-spacing:-9.936000pt;}
.ws54{word-spacing:-9.744000pt;}
.ws24{word-spacing:-9.642667pt;}
.ws8f{word-spacing:-9.600000pt;}
.ws1f{word-spacing:-9.168000pt;}
.ws90{word-spacing:-9.072000pt;}
.ws4a{word-spacing:-8.832000pt;}
.ws82{word-spacing:-8.544000pt;}
.ws1c{word-spacing:-8.256000pt;}
.ws0{word-spacing:-7.027093pt;}
.ws1b{word-spacing:-6.828096pt;}
.ws1{word-spacing:-6.324384pt;}
.ws94{word-spacing:-6.100512pt;}
.ws93{word-spacing:-5.904624pt;}
.ws23{word-spacing:-5.621675pt;}
.ws2e{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.013333pt;}
.wsd{word-spacing:-0.906667pt;}
.ws97{word-spacing:-0.720000pt;}
.ws39{word-spacing:-0.672000pt;}
.ws17{word-spacing:-0.533333pt;}
.ws7e{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.432000pt;}
.ws16{word-spacing:-0.426667pt;}
.ws7c{word-spacing:-0.240000pt;}
.ws26{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws36{word-spacing:-0.096000pt;}
.ws7{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.048000pt;}
.ws2b{word-spacing:0.096000pt;}
.ws2a{word-spacing:0.192000pt;}
.ws31{word-spacing:0.240000pt;}
.ws11{word-spacing:0.266667pt;}
.ws92{word-spacing:0.336000pt;}
.wsb{word-spacing:0.384000pt;}
.ws13{word-spacing:0.426667pt;}
.ws30{word-spacing:0.480000pt;}
.wsa{word-spacing:0.533333pt;}
.ws14{word-spacing:0.640000pt;}
.wse{word-spacing:0.693333pt;}
.ws41{word-spacing:0.720000pt;}
.ws12{word-spacing:0.800000pt;}
.ws3c{word-spacing:0.912000pt;}
.ws3e{word-spacing:1.008000pt;}
.ws3d{word-spacing:1.056000pt;}
.ws2d{word-spacing:1.104000pt;}
.ws32{word-spacing:1.536000pt;}
.ws91{word-spacing:1.600000pt;}
.ws3f{word-spacing:1.680000pt;}
.ws10{word-spacing:1.776000pt;}
.ws2f{word-spacing:2.352000pt;}
.ws33{word-spacing:2.688000pt;}
.ws40{word-spacing:3.936000pt;}
.ws96{word-spacing:4.800000pt;}
.ws95{word-spacing:8.106667pt;}
.wsc{word-spacing:11.733333pt;}
.ws2c{word-spacing:36.000000pt;}
.ws37{word-spacing:36.816000pt;}
.ws7b{word-spacing:37.008000pt;}
.ws34{word-spacing:37.104000pt;}
.ws28{word-spacing:37.152000pt;}
.ws35{word-spacing:37.200000pt;}
.ws7d{word-spacing:37.968000pt;}
.ws27{word-spacing:38.736000pt;}
.ws38{word-spacing:38.880000pt;}
.ws29{word-spacing:40.464000pt;}
.ws86{word-spacing:229.680000pt;}
.ws84{word-spacing:232.704000pt;}
.ws19{word-spacing:241.200000pt;}
.ws81{word-spacing:243.024000pt;}
.ws85{word-spacing:244.512000pt;}
.ws80{word-spacing:245.376000pt;}
.ws83{word-spacing:247.152000pt;}
.ws7f{word-spacing:279.648000pt;}
.ws88{word-spacing:293.328000pt;}
.ws43{word-spacing:408.480000pt;}
.ws4c{word-spacing:414.096000pt;}
.ws67{word-spacing:414.768000pt;}
.ws4b{word-spacing:415.248000pt;}
.ws63{word-spacing:415.296000pt;}
.ws4d{word-spacing:415.344000pt;}
.ws61{word-spacing:415.584000pt;}
.ws62{word-spacing:415.728000pt;}
.ws5e{word-spacing:415.968000pt;}
.ws47{word-spacing:416.112000pt;}
.ws46{word-spacing:416.208000pt;}
.ws45{word-spacing:416.256000pt;}
.ws60{word-spacing:416.496000pt;}
.ws6f{word-spacing:416.640000pt;}
.ws64{word-spacing:416.688000pt;}
.ws48{word-spacing:416.736000pt;}
.ws5b{word-spacing:416.784000pt;}
.ws6c{word-spacing:416.928000pt;}
.ws72{word-spacing:417.024000pt;}
.ws59{word-spacing:417.216000pt;}
.ws70{word-spacing:417.312000pt;}
.ws7a{word-spacing:417.360000pt;}
.ws49{word-spacing:417.408000pt;}
.ws6d{word-spacing:417.456000pt;}
.ws5d{word-spacing:417.504000pt;}
.ws78{word-spacing:417.552000pt;}
.ws6a{word-spacing:417.600000pt;}
.ws5a{word-spacing:418.032000pt;}
.ws56{word-spacing:418.080000pt;}
.ws57{word-spacing:418.560000pt;}
.ws69{word-spacing:418.848000pt;}
.ws51{word-spacing:419.088000pt;}
.ws53{word-spacing:419.472000pt;}
.ws71{word-spacing:419.856000pt;}
.ws6e{word-spacing:420.192000pt;}
.ws4f{word-spacing:420.240000pt;}
.ws55{word-spacing:420.288000pt;}
.ws73{word-spacing:420.384000pt;}
.ws52{word-spacing:420.624000pt;}
.ws50{word-spacing:420.672000pt;}
.ws74{word-spacing:420.912000pt;}
.ws65{word-spacing:421.056000pt;}
.ws77{word-spacing:421.536000pt;}
.ws8e{word-spacing:546.288000pt;}
.ws8c{word-spacing:552.720000pt;}
.ws8d{word-spacing:552.912000pt;}
.ws18{word-spacing:785.952000pt;}
.ws89{word-spacing:868.512000pt;}
.ws44{word-spacing:950.400000pt;}
.ws76{word-spacing:963.216000pt;}
.ws79{word-spacing:964.416000pt;}
.ws8b{word-spacing:979.104000pt;}
.ws87{word-spacing:1093.488000pt;}
._94{margin-left:-19.648000pt;}
._12{margin-left:-12.522667pt;}
._9{margin-left:-11.490939pt;}
._f{margin-left:-6.389333pt;}
._13{margin-left:-5.461333pt;}
._a{margin-left:-4.533333pt;}
._0{margin-left:-3.370667pt;}
._7{margin-left:-2.016000pt;}
._2{margin-left:-1.066667pt;}
._8{width:1.109333pt;}
._1{width:2.613333pt;}
._5{width:3.520000pt;}
._4{width:4.640000pt;}
._3{width:5.760000pt;}
._6{width:7.093333pt;}
._d{width:8.053333pt;}
._c{width:8.949333pt;}
._b{width:10.080000pt;}
._e{width:11.040000pt;}
._97{width:12.144000pt;}
._11{width:13.824000pt;}
._10{width:15.296000pt;}
._96{width:16.800000pt;}
._15{width:18.080000pt;}
._16{width:19.072000pt;}
._9a{width:32.064000pt;}
._99{width:34.224000pt;}
._98{width:35.376000pt;}
._19{width:37.152000pt;}
._95{width:58.560000pt;}
._8e{width:72.138667pt;}
._17{width:104.186667pt;}
._18{width:140.821333pt;}
._5a{width:163.456000pt;}
._5d{width:170.778667pt;}
._5b{width:176.344053pt;}
._58{width:178.144000pt;}
._5c{width:182.213333pt;}
._5e{width:192.350453pt;}
._56{width:200.549333pt;}
._67{width:202.864000pt;}
._64{width:207.168000pt;}
._60{width:211.157333pt;}
._65{width:221.614453pt;}
._5f{width:229.280000pt;}
._57{width:232.042667pt;}
._62{width:233.349333pt;}
._91{width:237.648000pt;}
._66{width:238.949333pt;}
._1d{width:240.773333pt;}
._53{width:242.805333pt;}
._63{width:243.786667pt;}
._50{width:246.837333pt;}
._86{width:248.869333pt;}
._88{width:249.829333pt;}
._54{width:259.674667pt;}
._1b{width:271.626667pt;}
._39{width:273.162667pt;}
._3f{width:277.504000pt;}
._87{width:285.978667pt;}
._4f{width:296.784000pt;}
._8d{width:307.018667pt;}
._1c{width:310.181333pt;}
._30{width:314.506667pt;}
._51{width:322.125387pt;}
._45{width:339.653333pt;}
._52{width:340.720000pt;}
._4a{width:345.168000pt;}
._43{width:349.738667pt;}
._27{width:351.029333pt;}
._2a{width:352.426667pt;}
._32{width:357.546667pt;}
._93{width:361.216000pt;}
._41{width:365.685333pt;}
._22{width:368.064000pt;}
._1a{width:370.005920pt;}
._28{width:373.488000pt;}
._47{width:374.538667pt;}
._23{width:375.450667pt;}
._35{width:380.496000pt;}
._38{width:382.282667pt;}
._25{width:385.322667pt;}
._33{width:391.114667pt;}
._1f{width:392.592000pt;}
._3b{width:393.696000pt;}
._4b{width:396.666667pt;}
._20{width:397.882667pt;}
._2e{width:399.120000pt;}
._3c{width:401.050667pt;}
._36{width:403.066667pt;}
._4e{width:406.490187pt;}
._48{width:409.584000pt;}
._2c{width:416.767413pt;}
._69{width:421.146667pt;}
._2f{width:422.362667pt;}
._7c{width:426.565333pt;}
._4d{width:433.354667pt;}
._74{width:448.837333pt;}
._7e{width:498.656000pt;}
._92{width:515.369067pt;}
._68{width:518.410667pt;}
._55{width:536.818720pt;}
._59{width:548.850720pt;}
._61{width:573.716853pt;}
._7a{width:609.936000pt;}
._7f{width:612.682667pt;}
._7b{width:624.522667pt;}
._6a{width:627.600000pt;}
._6b{width:628.752000pt;}
._80{width:629.664000pt;}
._85{width:637.498667pt;}
._81{width:641.664000pt;}
._7d{width:651.253333pt;}
._90{width:672.794667pt;}
._78{width:687.637333pt;}
._6d{width:691.429333pt;}
._79{width:693.781333pt;}
._75{width:709.440000pt;}
._3d{width:717.253333pt;}
._6c{width:726.192000pt;}
._6e{width:730.490667pt;}
._77{width:736.250667pt;}
._76{width:741.024000pt;}
._70{width:749.040000pt;}
._6f{width:750.192000pt;}
._71{width:752.256000pt;}
._73{width:756.768000pt;}
._44{width:771.456000pt;}
._72{width:774.528000pt;}
._46{width:809.082667pt;}
._4c{width:834.666667pt;}
._49{width:842.917333pt;}
._34{width:859.968000pt;}
._3e{width:882.624000pt;}
._31{width:887.520000pt;}
._37{width:904.826667pt;}
._42{width:907.898667pt;}
._3a{width:909.456000pt;}
._40{width:914.640000pt;}
._29{width:920.352000pt;}
._2b{width:922.128000pt;}
._26{width:923.904000pt;}
._1e{width:942.288000pt;}
._24{width:946.944000pt;}
._2d{width:952.272000pt;}
._21{width:963.024000pt;}
._8f{width:1049.946667pt;}
._8a{width:1134.624000pt;}
._8c{width:1242.122667pt;}
._89{width:1487.328000pt;}
._84{width:1529.029333pt;}
._8b{width:1600.752000pt;}
._83{width:1675.824000pt;}
._82{width:1676.928000pt;}
._14{width:2285.822400pt;}
.fs9{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:44.171793pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:218.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:28.346533pt;}
.y14{bottom:71.600933pt;}
.ybb{bottom:71.601067pt;}
.y7e{bottom:71.604800pt;}
.y16e{bottom:71.853333pt;}
.y1af{bottom:72.029467pt;}
.y45{bottom:72.132400pt;}
.y13a{bottom:72.608667pt;}
.yfd{bottom:76.714133pt;}
.y139{bottom:83.936667pt;}
.y44{bottom:84.804400pt;}
.y16d{bottom:85.185333pt;}
.y1ae{bottom:85.604133pt;}
.y13{bottom:86.267600pt;}
.yba{bottom:86.267733pt;}
.y7d{bottom:86.271467pt;}
.yfc{bottom:88.042133pt;}
.y43{bottom:97.476400pt;}
.y16c{bottom:98.517333pt;}
.y1ad{bottom:99.068133pt;}
.yfb{bottom:99.370133pt;}
.y12{bottom:100.934267pt;}
.yb9{bottom:100.934400pt;}
.y7c{bottom:100.938133pt;}
.y138{bottom:106.936000pt;}
.y42{bottom:110.148400pt;}
.yfa{bottom:110.698133pt;}
.yf9{bottom:110.703467pt;}
.y16b{bottom:111.849333pt;}
.y1ac{bottom:112.532133pt;}
.y11{bottom:115.600933pt;}
.yb8{bottom:115.601067pt;}
.y7b{bottom:115.604800pt;}
.y137{bottom:119.716000pt;}
.yf8{bottom:122.031467pt;}
.y41{bottom:122.820400pt;}
.y16a{bottom:125.181333pt;}
.y1ab{bottom:125.996133pt;}
.y9d{bottom:129.818133pt;}
.y10{bottom:130.267600pt;}
.yc3{bottom:130.267733pt;}
.y7a{bottom:130.271467pt;}
.y136{bottom:132.496000pt;}
.y40{bottom:135.492400pt;}
.y169{bottom:138.513333pt;}
.y1aa{bottom:139.460133pt;}
.yb7{bottom:144.481067pt;}
.yf{bottom:144.934267pt;}
.yc2{bottom:144.934400pt;}
.y79{bottom:144.938133pt;}
.yf7{bottom:148.223333pt;}
.y135{bottom:149.056000pt;}
.y168{bottom:151.845333pt;}
.y1a9{bottom:152.924133pt;}
.ye{bottom:159.600933pt;}
.yc1{bottom:159.601067pt;}
.y78{bottom:159.604800pt;}
.y134{bottom:161.836000pt;}
.yf6{bottom:162.515333pt;}
.y3f{bottom:163.272400pt;}
.y167{bottom:165.177333pt;}
.y1a8{bottom:166.388133pt;}
.yd{bottom:174.267600pt;}
.yb6{bottom:174.267733pt;}
.y77{bottom:174.271467pt;}
.y133{bottom:174.616000pt;}
.y166{bottom:178.509333pt;}
.y3e{bottom:179.724400pt;}
.yf5{bottom:179.829600pt;}
.y1a7{bottom:179.984133pt;}
.yc{bottom:188.934267pt;}
.yb5{bottom:188.934400pt;}
.y76{bottom:188.938133pt;}
.y132{bottom:191.176000pt;}
.y165{bottom:191.841333pt;}
.y1a6{bottom:193.580133pt;}
.yf4{bottom:194.121600pt;}
.yb{bottom:203.600933pt;}
.yb4{bottom:203.601067pt;}
.y75{bottom:203.604800pt;}
.y131{bottom:203.956000pt;}
.y164{bottom:205.173333pt;}
.y1a5{bottom:207.176133pt;}
.yf3{bottom:211.437067pt;}
.y130{bottom:216.736000pt;}
.ya{bottom:218.267600pt;}
.y2b{bottom:218.267733pt;}
.y74{bottom:218.271467pt;}
.y163{bottom:218.505333pt;}
.y1a4{bottom:220.772133pt;}
.yf2{bottom:225.728000pt;}
.y162{bottom:231.837333pt;}
.y9{bottom:232.934267pt;}
.y2a{bottom:232.934400pt;}
.y9c{bottom:232.938133pt;}
.y12f{bottom:233.296000pt;}
.y1a3{bottom:234.368133pt;}
.yf1{bottom:243.043333pt;}
.y12e{bottom:246.076000pt;}
.y73{bottom:247.151467pt;}
.y8{bottom:247.600933pt;}
.y29{bottom:247.601067pt;}
.y9b{bottom:247.604800pt;}
.y1a2{bottom:247.964133pt;}
.y161{bottom:252.729600pt;}
.yf0{bottom:257.335600pt;}
.y12d{bottom:258.856000pt;}
.y1a1{bottom:261.560133pt;}
.y7{bottom:262.267600pt;}
.yb3{bottom:262.267733pt;}
.y9a{bottom:262.271467pt;}
.yee{bottom:274.651600pt;}
.y1a0{bottom:275.156133pt;}
.y12c{bottom:275.416000pt;}
.y6{bottom:276.934267pt;}
.yb2{bottom:276.934400pt;}
.y72{bottom:276.938133pt;}
.y28{bottom:277.766400pt;}
.yed{bottom:287.982933pt;}
.yef{bottom:287.983600pt;}
.y12b{bottom:288.196000pt;}
.y19f{bottom:288.752133pt;}
.yb1{bottom:291.601067pt;}
.y71{bottom:291.604800pt;}
.y160{bottom:294.509067pt;}
.y12a{bottom:300.948533pt;}
.yec{bottom:302.273867pt;}
.y19e{bottom:302.348133pt;}
.yb0{bottom:306.267733pt;}
.y70{bottom:306.271467pt;}
.y15f{bottom:307.181067pt;}
.y19d{bottom:315.944133pt;}
.y129{bottom:317.508533pt;}
.yeb{bottom:319.589200pt;}
.y15e{bottom:319.853067pt;}
.yaf{bottom:320.934400pt;}
.y6f{bottom:320.938133pt;}
.y3d{bottom:324.334400pt;}
.y15c{bottom:325.152533pt;}
.y19c{bottom:329.408133pt;}
.y128{bottom:330.288533pt;}
.yea{bottom:333.877867pt;}
.yae{bottom:335.601067pt;}
.y6e{bottom:335.604800pt;}
.y15b{bottom:336.485867pt;}
.y15d{bottom:340.078800pt;}
.y3c{bottom:342.774400pt;}
.y19b{bottom:342.872133pt;}
.y127{bottom:343.068533pt;}
.y15a{bottom:344.283200pt;}
.yad{bottom:350.267733pt;}
.y6d{bottom:350.271467pt;}
.ye9{bottom:351.193867pt;}
.y159{bottom:355.611200pt;}
.y19a{bottom:356.336133pt;}
.y3b{bottom:357.441067pt;}
.y126{bottom:359.628533pt;}
.yac{bottom:364.934400pt;}
.y6c{bottom:364.938133pt;}
.ye8{bottom:365.485867pt;}
.y158{bottom:366.939200pt;}
.y199{bottom:369.800133pt;}
.y3a{bottom:372.107733pt;}
.y125{bottom:372.408533pt;}
.y157{bottom:378.267200pt;}
.yab{bottom:379.601067pt;}
.y6b{bottom:379.604800pt;}
.ye7{bottom:379.777867pt;}
.y198{bottom:383.264133pt;}
.y124{bottom:385.188533pt;}
.y39{bottom:386.774400pt;}
.yaa{bottom:394.267733pt;}
.y6a{bottom:394.271467pt;}
.y197{bottom:396.728133pt;}
.ye6{bottom:397.092133pt;}
.y38{bottom:401.441067pt;}
.y123{bottom:401.748533pt;}
.y156{bottom:403.162000pt;}
.ya9{bottom:408.934400pt;}
.y69{bottom:408.938133pt;}
.y196{bottom:410.192133pt;}
.ye5{bottom:411.384133pt;}
.y122{bottom:414.528533pt;}
.y37{bottom:416.107733pt;}
.y155{bottom:419.722000pt;}
.ya8{bottom:423.601067pt;}
.y68{bottom:423.604800pt;}
.y195{bottom:423.656133pt;}
.y121{bottom:427.308533pt;}
.ye4{bottom:428.677867pt;}
.y36{bottom:430.774400pt;}
.y154{bottom:436.282000pt;}
.y194{bottom:437.120133pt;}
.ya7{bottom:438.267733pt;}
.y67{bottom:438.271467pt;}
.ye3{bottom:442.969867pt;}
.y120{bottom:443.868533pt;}
.y35{bottom:445.441067pt;}
.y193{bottom:450.584133pt;}
.y153{bottom:452.841067pt;}
.yc0{bottom:452.934400pt;}
.y66{bottom:452.938133pt;}
.y11f{bottom:456.648533pt;}
.y34{bottom:460.107733pt;}
.ye2{bottom:460.285867pt;}
.y192{bottom:464.048133pt;}
.ya6{bottom:466.482933pt;}
.ybf{bottom:467.601067pt;}
.y65{bottom:467.604800pt;}
.y152{bottom:469.400000pt;}
.y11e{bottom:469.428533pt;}
.ye1{bottom:474.577867pt;}
.y33{bottom:474.774400pt;}
.y191{bottom:477.512133pt;}
.y99{bottom:481.818133pt;}
.y11d{bottom:482.208533pt;}
.ybe{bottom:482.267733pt;}
.y64{bottom:482.271467pt;}
.y151{bottom:485.954800pt;}
.ye0{bottom:488.869867pt;}
.y32{bottom:489.441067pt;}
.y190{bottom:490.976133pt;}
.ya5{bottom:496.934400pt;}
.y63{bottom:496.938133pt;}
.y11c{bottom:498.768533pt;}
.y150{bottom:502.514800pt;}
.y31{bottom:504.107733pt;}
.y18f{bottom:504.440133pt;}
.ydf{bottom:506.185867pt;}
.ybd{bottom:510.482933pt;}
.y11b{bottom:511.548533pt;}
.ya4{bottom:511.601067pt;}
.y62{bottom:511.604800pt;}
.y18e{bottom:517.904133pt;}
.y30{bottom:518.774400pt;}
.yde{bottom:520.477867pt;}
.y11a{bottom:524.328533pt;}
.ya3{bottom:526.267733pt;}
.y61{bottom:526.271467pt;}
.y14f{bottom:526.634800pt;}
.y18d{bottom:531.368133pt;}
.y2f{bottom:533.441067pt;}
.ydd{bottom:534.769867pt;}
.y119{bottom:540.888533pt;}
.ya2{bottom:540.934400pt;}
.y98{bottom:540.938133pt;}
.y14e{bottom:543.194800pt;}
.y18c{bottom:544.832133pt;}
.y2e{bottom:548.107733pt;}
.ydc{bottom:549.061867pt;}
.y118{bottom:553.668533pt;}
.y60{bottom:554.031467pt;}
.ya1{bottom:555.601067pt;}
.y97{bottom:555.604800pt;}
.y18b{bottom:558.296133pt;}
.y14d{bottom:559.754800pt;}
.y2d{bottom:562.774400pt;}
.ydb{bottom:566.377867pt;}
.y117{bottom:566.448533pt;}
.ya0{bottom:570.267733pt;}
.y96{bottom:570.271467pt;}
.y18a{bottom:571.857333pt;}
.yda{bottom:580.669867pt;}
.y2c{bottom:581.214400pt;}
.y116{bottom:583.008533pt;}
.y5f{bottom:583.816267pt;}
.y14c{bottom:583.874800pt;}
.y9f{bottom:584.934400pt;}
.y95{bottom:584.938133pt;}
.y189{bottom:585.321333pt;}
.yd9{bottom:594.961867pt;}
.y115{bottom:595.788533pt;}
.y14b{bottom:597.206800pt;}
.y188{bottom:598.785333pt;}
.y9e{bottom:599.601067pt;}
.y94{bottom:599.604800pt;}
.y114{bottom:608.568533pt;}
.y187{bottom:612.249333pt;}
.yd8{bottom:612.277867pt;}
.y5e{bottom:614.267733pt;}
.y93{bottom:614.271467pt;}
.y113{bottom:625.128533pt;}
.y186{bottom:625.713333pt;}
.yd7{bottom:626.569867pt;}
.y14a{bottom:626.859600pt;}
.y5d{bottom:628.934400pt;}
.y92{bottom:628.938133pt;}
.y27{bottom:634.248000pt;}
.y112{bottom:637.908533pt;}
.y185{bottom:639.177333pt;}
.y149{bottom:640.191600pt;}
.yd6{bottom:640.861867pt;}
.y26{bottom:643.586667pt;}
.y5c{bottom:643.601067pt;}
.y111{bottom:650.688533pt;}
.y184{bottom:652.773333pt;}
.yd5{bottom:655.153867pt;}
.y25{bottom:656.918667pt;}
.y91{bottom:657.818133pt;}
.y5b{bottom:658.267733pt;}
.y24{bottom:660.914667pt;}
.y183{bottom:666.369333pt;}
.y110{bottom:667.248533pt;}
.yd4{bottom:672.469867pt;}
.y5a{bottom:672.934400pt;}
.y23{bottom:674.248000pt;}
.y182{bottom:679.965333pt;}
.y10f{bottom:680.028533pt;}
.y148{bottom:685.506133pt;}
.yd3{bottom:686.761867pt;}
.y22{bottom:687.581333pt;}
.y59{bottom:687.601067pt;}
.y90{bottom:687.604800pt;}
.y10e{bottom:692.808533pt;}
.y181{bottom:693.561333pt;}
.y21{bottom:700.914667pt;}
.yd2{bottom:701.053867pt;}
.y58{bottom:702.267733pt;}
.y8f{bottom:702.271467pt;}
.y10d{bottom:705.588533pt;}
.y147{bottom:706.611467pt;}
.y180{bottom:707.157333pt;}
.y20{bottom:714.248000pt;}
.yd1{bottom:715.345867pt;}
.y57{bottom:716.934400pt;}
.y8e{bottom:716.938133pt;}
.y17f{bottom:720.753333pt;}
.y10c{bottom:722.148533pt;}
.y146{bottom:726.951467pt;}
.y1f{bottom:727.581333pt;}
.y56{bottom:731.601067pt;}
.y8d{bottom:731.604800pt;}
.yd0{bottom:732.661867pt;}
.y17e{bottom:734.349333pt;}
.y10b{bottom:734.928533pt;}
.y1e{bottom:740.914667pt;}
.y145{bottom:743.511467pt;}
.y55{bottom:746.267733pt;}
.y8c{bottom:746.271467pt;}
.ycf{bottom:746.953867pt;}
.y10a{bottom:747.708533pt;}
.y17d{bottom:747.945333pt;}
.y1be{bottom:749.233867pt;}
.y1cd{bottom:749.257867pt;}
.y1d{bottom:754.248000pt;}
.y109{bottom:760.488533pt;}
.y54{bottom:760.934400pt;}
.y8b{bottom:760.938133pt;}
.yce{bottom:761.245867pt;}
.y17c{bottom:761.541333pt;}
.y1bd{bottom:762.565867pt;}
.y1cc{bottom:762.589867pt;}
.y1c{bottom:767.581333pt;}
.y144{bottom:767.631467pt;}
.y17b{bottom:775.137333pt;}
.ycd{bottom:775.537867pt;}
.y53{bottom:775.601067pt;}
.y8a{bottom:775.604800pt;}
.y1bc{bottom:775.897867pt;}
.y1cb{bottom:775.921867pt;}
.y108{bottom:777.048533pt;}
.y1b{bottom:780.914667pt;}
.y143{bottom:784.191467pt;}
.y17a{bottom:788.733333pt;}
.y1bb{bottom:789.229867pt;}
.y1ca{bottom:789.253867pt;}
.y107{bottom:789.828533pt;}
.ycc{bottom:789.829867pt;}
.y52{bottom:790.267733pt;}
.y89{bottom:790.271467pt;}
.y142{bottom:800.751467pt;}
.y179{bottom:802.329333pt;}
.y1ba{bottom:802.561867pt;}
.y1c9{bottom:802.585867pt;}
.y106{bottom:802.608533pt;}
.y51{bottom:804.934400pt;}
.y88{bottom:804.938133pt;}
.y1a{bottom:805.370133pt;}
.ycb{bottom:807.145867pt;}
.y105{bottom:815.388533pt;}
.y178{bottom:815.793333pt;}
.y1b9{bottom:815.893867pt;}
.y1c8{bottom:815.917867pt;}
.y50{bottom:819.601067pt;}
.y87{bottom:819.604800pt;}
.y19{bottom:820.036800pt;}
.yca{bottom:821.437867pt;}
.y141{bottom:824.871467pt;}
.y1b8{bottom:829.225867pt;}
.y1c7{bottom:829.249867pt;}
.y177{bottom:829.257333pt;}
.y104{bottom:831.948533pt;}
.y4f{bottom:834.267733pt;}
.y86{bottom:834.271467pt;}
.y18{bottom:834.703467pt;}
.yc9{bottom:835.729867pt;}
.y140{bottom:841.431467pt;}
.y1b7{bottom:842.557867pt;}
.y1c6{bottom:842.581867pt;}
.y176{bottom:842.721333pt;}
.y103{bottom:844.728533pt;}
.y4e{bottom:848.934400pt;}
.y85{bottom:848.938133pt;}
.yc8{bottom:850.021867pt;}
.y1b6{bottom:855.889867pt;}
.y1c5{bottom:855.913867pt;}
.y175{bottom:856.185333pt;}
.y102{bottom:857.508533pt;}
.y13f{bottom:857.991467pt;}
.y4d{bottom:863.601067pt;}
.y84{bottom:863.604800pt;}
.yc7{bottom:867.335333pt;}
.y17{bottom:868.265067pt;}
.y1b5{bottom:869.221867pt;}
.y1c4{bottom:869.245867pt;}
.y174{bottom:869.649333pt;}
.y4c{bottom:878.267733pt;}
.y83{bottom:878.271467pt;}
.yc6{bottom:881.627333pt;}
.y101{bottom:881.628533pt;}
.y13e{bottom:882.111467pt;}
.y1b4{bottom:882.553867pt;}
.y1c3{bottom:882.577867pt;}
.y173{bottom:883.113333pt;}
.y4b{bottom:892.934400pt;}
.y82{bottom:892.938133pt;}
.yff{bottom:893.688533pt;}
.y13c{bottom:894.171467pt;}
.y1b3{bottom:895.885867pt;}
.y1c2{bottom:895.909867pt;}
.y172{bottom:896.577333pt;}
.y16{bottom:900.267733pt;}
.yc5{bottom:905.747333pt;}
.y100{bottom:905.748533pt;}
.y13d{bottom:906.231467pt;}
.y4a{bottom:907.601067pt;}
.y81{bottom:907.604800pt;}
.y1b2{bottom:909.217867pt;}
.y1c1{bottom:909.241867pt;}
.y171{bottom:910.041333pt;}
.y49{bottom:922.267733pt;}
.y80{bottom:922.271467pt;}
.y1b1{bottom:922.549867pt;}
.y1c0{bottom:922.573867pt;}
.y170{bottom:923.505333pt;}
.yc4{bottom:935.398800pt;}
.yfe{bottom:935.399067pt;}
.y1b0{bottom:935.881867pt;}
.y13b{bottom:935.882000pt;}
.y1bf{bottom:935.905867pt;}
.y16f{bottom:936.837333pt;}
.y48{bottom:936.934400pt;}
.y7f{bottom:936.938133pt;}
.ybc{bottom:937.147733pt;}
.y3{bottom:952.173200pt;}
.y5{bottom:952.440933pt;}
.y2{bottom:974.611867pt;}
.y47{bottom:978.897600pt;}
.y46{bottom:980.934533pt;}
.y15{bottom:985.847733pt;}
.y4{bottom:1002.685200pt;}
.h21{height:17.198500pt;}
.h9{height:20.086172pt;}
.h19{height:30.437500pt;}
.h2{height:30.625000pt;}
.h1a{height:31.385167pt;}
.h1b{height:31.511225pt;}
.hc{height:33.187500pt;}
.hb{height:33.375000pt;}
.hd{height:34.242188pt;}
.h5{height:34.453125pt;}
.h18{height:35.334446pt;}
.h14{height:35.334979pt;}
.h1f{height:35.336046pt;}
.h1e{height:35.336579pt;}
.h12{height:35.339246pt;}
.h10{height:35.342446pt;}
.h20{height:35.343513pt;}
.h1d{height:35.353113pt;}
.h11{height:35.421379pt;}
.h6{height:35.546875pt;}
.h23{height:35.627505pt;}
.h22{height:35.681372pt;}
.h16{height:35.946129pt;}
.h17{height:35.950929pt;}
.h15{height:35.951462pt;}
.h13{height:35.960529pt;}
.h1c{height:36.057062pt;}
.he{height:36.458333pt;}
.hf{height:37.790300pt;}
.h4{height:38.281250pt;}
.h8{height:38.483828pt;}
.ha{height:40.791667pt;}
.h7{height:81.583333pt;}
.h3{height:153.066667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.897600pt;}
.x1{left:55.842533pt;}
.x5{left:65.366133pt;}
.x6{left:75.590533pt;}
.x1a{left:83.152933pt;}
.x16{left:109.684933pt;}
.x7{left:132.550533pt;}
.x3{left:174.916533pt;}
.x15{left:194.872933pt;}
.xb{left:208.039600pt;}
.x14{left:232.168933pt;}
.x13{left:271.312933pt;}
.x12{left:276.940933pt;}
.x4{left:408.188133pt;}
.xa{left:427.079600pt;}
.x1b{left:434.644933pt;}
.xc{left:445.049067pt;}
.x10{left:472.236533pt;}
.x11{left:479.017733pt;}
.x17{left:487.828933pt;}
.x9{left:512.481867pt;}
.x8{left:515.705200pt;}
.xd{left:556.721067pt;}
.xe{left:580.937067pt;}
.x18{left:592.480933pt;}
.x19{left:646.804933pt;}
.xf{left:685.217067pt;}
}

