
    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_b694df9c083d0dec8e845e14.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_48751aba1b95f2a6d3ace42d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.718000;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_d4dc4dd98655de9311778507.woff')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_66dfa73f2e8b4bcfcb7aa337.woff')format("woff");}.ff4{font-family:ff4;line-height:0.870000;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_da2180b6a1622d090e0f13bd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_a77aee16b38de554d5be002f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.960357;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_1e4573f5e8ae3ed443ae1abb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105000;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_544ec457277026c41a947d56.woff')format("woff");}.ff8{font-family:ff8;line-height:1.105000;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_bde9173715ab80b0b1521253.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904000;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_f7a2166432e35872231f4189.woff')format("woff");}.ffa{font-family:ffa;line-height:1.105000;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_bbe94db270d640a5b80d79cd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040000;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_079851ace06c3ee8ee1adfb6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.721000;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_a63b6f3c9e3c13446037566b.woff')format("woff");}.ffd{font-family:ffd;line-height:1.105000;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_69df85507e850481a6005eef.woff')format("woff");}.ffe{font-family:ffe;line-height:1.105000;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:fff;src:url('chunks/assets/font_bed5931c9f01e0c183ced077.woff')format("woff");}.fff{font-family:fff;line-height:0.700000;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:ff10;src:url('chunks/assets/font_73840a323e78f13ac17323f3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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:ff11;src:url('chunks/assets/font_b850fc8b0fe2ddafb9f7ea9f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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:ff12;src:url('chunks/assets/font_a6eaf56c1bb69ceed8ab419e.woff')format("woff");}.ff12{font-family:ff12;line-height:0.917000;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:ff13;src:url('chunks/assets/font_3c9333908f6821dfd51179eb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m0{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);}
.v5{vertical-align:-27.972000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.116000px;}
.v2{vertical-align:22.014000px;}
.v3{vertical-align:28.044000px;}
.v1{vertical-align:29.970000px;}
.lsf{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-2.016000px;}
.ls17{letter-spacing:-1.680000px;}
.ls1{letter-spacing:-1.620000px;}
.ls12{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.734580px;}
.lsc{letter-spacing:-0.660000px;}
.ls23{letter-spacing:-0.624000px;}
.ls14{letter-spacing:-0.538692px;}
.ls2{letter-spacing:-0.524700px;}
.ls15{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.489720px;}
.ls21{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.390000px;}
.ls4{letter-spacing:-0.384780px;}
.ls1e{letter-spacing:-0.336000px;}
.ls11{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.293832px;}
.ls3{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.084000px;}
.lse{letter-spacing:-0.048972px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.084000px;}
.lsb{letter-spacing:0.195888px;}
.ls1f{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.624000px;}
.ls1a{letter-spacing:0.731082px;}
.ls19{letter-spacing:1.254000px;}
.ls25{letter-spacing:1.833000px;}
.ls8{letter-spacing:2.100000px;}
.ls24{letter-spacing:2.347800px;}
.ls13{letter-spacing:2.419200px;}
.ls20{letter-spacing:2.990400px;}
.ls1d{letter-spacing:5.258400px;}
.ls5{letter-spacing:5.394000px;}
.ls22{letter-spacing:12.948000px;}
.ls9{letter-spacing:40.980000px;}
.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;}
}
.ws11{word-spacing:-60.000000px;}
.ws6e{word-spacing:-59.700000px;}
.ws66{word-spacing:-57.120000px;}
.ws96{word-spacing:-41.292000px;}
.ws6d{word-spacing:-40.152000px;}
.ws91{word-spacing:-39.492000px;}
.ws78{word-spacing:-39.132000px;}
.ws8f{word-spacing:-38.832000px;}
.ws9a{word-spacing:-38.772000px;}
.ws8e{word-spacing:-38.712000px;}
.ws7a{word-spacing:-38.652000px;}
.ws9b{word-spacing:-38.412000px;}
.ws90{word-spacing:-33.252000px;}
.ws35{word-spacing:-31.932000px;}
.ws51{word-spacing:-29.772000px;}
.ws4f{word-spacing:-29.412000px;}
.ws5e{word-spacing:-29.112000px;}
.ws50{word-spacing:-29.052000px;}
.ws77{word-spacing:-27.732000px;}
.ws98{word-spacing:-27.432000px;}
.wsd{word-spacing:-24.000000px;}
.ws67{word-spacing:-23.532000px;}
.wsf{word-spacing:-16.800000px;}
.ws65{word-spacing:-16.716000px;}
.ws75{word-spacing:-16.296000px;}
.wsab{word-spacing:-15.600000px;}
.wsac{word-spacing:-15.132000px;}
.ws8d{word-spacing:-14.784000px;}
.ws2{word-spacing:-13.200000px;}
.ws70{word-spacing:-12.000000px;}
.ws79{word-spacing:-11.880000px;}
.ws1e{word-spacing:-11.832000px;}
.ws9c{word-spacing:-11.520000px;}
.ws12{word-spacing:-11.472000px;}
.ws40{word-spacing:-11.340000px;}
.ws2b{word-spacing:-11.172000px;}
.ws1d{word-spacing:-11.112000px;}
.ws29{word-spacing:-11.052000px;}
.ws6{word-spacing:-10.800000px;}
.ws2a{word-spacing:-10.740000px;}
.ws6f{word-spacing:-10.440000px;}
.ws97{word-spacing:-10.380000px;}
.ws76{word-spacing:-10.320000px;}
.ws1{word-spacing:-9.969300px;}
.ws5{word-spacing:-7.310820px;}
.ws4{word-spacing:-7.079952px;}
.ws2c{word-spacing:-5.592000px;}
.ws13{word-spacing:-4.788000px;}
.ws92{word-spacing:-3.780000px;}
.ws5f{word-spacing:-3.360000px;}
.wsb7{word-spacing:-3.120000px;}
.wsb8{word-spacing:-3.042000px;}
.ws9f{word-spacing:-2.436000px;}
.ws7c{word-spacing:-1.980000px;}
.wsaa{word-spacing:-1.848000px;}
.ws82{word-spacing:-1.764000px;}
.ws10{word-spacing:-1.752000px;}
.ws63{word-spacing:-1.716000px;}
.ws84{word-spacing:-1.620000px;}
.wsa1{word-spacing:-1.512000px;}
.ws2d{word-spacing:-1.428000px;}
.ws5d{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.254000px;}
.ws89{word-spacing:-1.092000px;}
.wsa6{word-spacing:-0.960000px;}
.wsb1{word-spacing:-0.936000px;}
.wsa8{word-spacing:-0.924000px;}
.ws41{word-spacing:-0.840000px;}
.ws7f{word-spacing:-0.792000px;}
.ws4e{word-spacing:-0.780000px;}
.ws87{word-spacing:-0.769560px;}
.ws94{word-spacing:-0.756000px;}
.ws5a{word-spacing:-0.672000px;}
.ws14{word-spacing:-0.420000px;}
.ws19{word-spacing:-0.336000px;}
.ws3f{word-spacing:-0.244860px;}
.ws0{word-spacing:-0.102000px;}
.ws37{word-spacing:-0.084000px;}
.ws28{word-spacing:-0.060000px;}
.wse{word-spacing:-0.048972px;}
.ws34{word-spacing:-0.038478px;}
.ws7{word-spacing:0.000000px;}
.ws49{word-spacing:0.084000px;}
.wsa{word-spacing:0.132000px;}
.wsaf{word-spacing:0.234000px;}
.ws8c{word-spacing:0.244860px;}
.ws71{word-spacing:0.300000px;}
.ws83{word-spacing:0.336000px;}
.ws73{word-spacing:0.346302px;}
.ws86{word-spacing:0.360000px;}
.wsb9{word-spacing:0.390000px;}
.ws85{word-spacing:0.420000px;}
.ws6c{word-spacing:0.440748px;}
.ws72{word-spacing:0.489720px;}
.ws80{word-spacing:0.504000px;}
.ws95{word-spacing:0.600000px;}
.wsae{word-spacing:0.624000px;}
.ws7d{word-spacing:0.660000px;}
.ws62{word-spacing:0.672000px;}
.ws74{word-spacing:0.685608px;}
.ws4d{word-spacing:0.840000px;}
.ws5c{word-spacing:0.900000px;}
.ws7e{word-spacing:0.924000px;}
.ws1b{word-spacing:0.960000px;}
.wsba{word-spacing:1.014000px;}
.ws31{word-spacing:1.176000px;}
.ws42{word-spacing:1.428000px;}
.wsa5{word-spacing:1.440000px;}
.ws61{word-spacing:1.512000px;}
.ws9d{word-spacing:1.596000px;}
.ws9e{word-spacing:1.680000px;}
.ws1a{word-spacing:1.740000px;}
.ws60{word-spacing:1.764000px;}
.ws93{word-spacing:1.848000px;}
.ws64{word-spacing:1.914000px;}
.ws8a{word-spacing:1.932000px;}
.wsb6{word-spacing:1.950000px;}
.ws38{word-spacing:2.016000px;}
.ws4c{word-spacing:2.100000px;}
.ws45{word-spacing:2.184000px;}
.wsb5{word-spacing:2.262000px;}
.wsa2{word-spacing:2.352000px;}
.ws23{word-spacing:2.436000px;}
.ws24{word-spacing:2.520000px;}
.ws3e{word-spacing:2.640000px;}
.ws48{word-spacing:2.688000px;}
.ws81{word-spacing:2.856000px;}
.ws52{word-spacing:3.024000px;}
.wsad{word-spacing:3.042000px;}
.ws7b{word-spacing:3.108000px;}
.ws4b{word-spacing:3.192000px;}
.ws4a{word-spacing:3.276000px;}
.wsb3{word-spacing:3.354000px;}
.ws1f{word-spacing:3.360000px;}
.ws32{word-spacing:3.612000px;}
.wsa4{word-spacing:3.864000px;}
.ws6b{word-spacing:4.080000px;}
.wsa3{word-spacing:4.116000px;}
.ws16{word-spacing:4.200000px;}
.ws25{word-spacing:4.284000px;}
.ws22{word-spacing:4.368000px;}
.ws6a{word-spacing:4.536000px;}
.ws27{word-spacing:4.788000px;}
.ws8{word-spacing:5.082000px;}
.ws36{word-spacing:5.124000px;}
.wsb{word-spacing:5.280000px;}
.ws3a{word-spacing:5.376000px;}
.wsb2{word-spacing:5.382000px;}
.ws5b{word-spacing:5.544000px;}
.ws99{word-spacing:5.796000px;}
.ws15{word-spacing:5.880000px;}
.wsa9{word-spacing:5.964000px;}
.ws1c{word-spacing:6.120000px;}
.ws33{word-spacing:6.600000px;}
.wsb4{word-spacing:6.630000px;}
.ws2f{word-spacing:6.720000px;}
.ws17{word-spacing:6.972000px;}
.ws20{word-spacing:7.140000px;}
.wsb0{word-spacing:7.176000px;}
.ws21{word-spacing:7.392000px;}
.ws2e{word-spacing:7.476000px;}
.ws18{word-spacing:7.560000px;}
.wsa7{word-spacing:7.644000px;}
.ws44{word-spacing:7.896000px;}
.ws43{word-spacing:8.064000px;}
.ws30{word-spacing:8.148000px;}
.ws39{word-spacing:8.904000px;}
.ws68{word-spacing:9.576000px;}
.ws46{word-spacing:9.660000px;}
.ws3c{word-spacing:9.912000px;}
.ws69{word-spacing:10.332000px;}
.ws3d{word-spacing:11.424000px;}
.ws57{word-spacing:11.844000px;}
.wsa0{word-spacing:12.264000px;}
.ws3b{word-spacing:13.860000px;}
.ws26{word-spacing:14.028000px;}
.ws56{word-spacing:14.532000px;}
.ws53{word-spacing:15.288000px;}
.ws59{word-spacing:15.624000px;}
.ws9{word-spacing:15.708000px;}
.ws8b{word-spacing:20.520000px;}
.ws54{word-spacing:22.092000px;}
.ws55{word-spacing:22.260000px;}
.ws47{word-spacing:24.948000px;}
.ws58{word-spacing:28.056000px;}
.wsc{word-spacing:589.338000px;}
.ws3{word-spacing:1885.536000px;}
._15{margin-left:-24.091200px;}
._17{margin-left:-20.479200px;}
._4{margin-left:-6.247800px;}
._1{margin-left:-4.369200px;}
._2{margin-left:-2.754000px;}
._0{margin-left:-1.060800px;}
._c{width:1.089000px;}
._3{width:2.413800px;}
._8{width:3.958200px;}
._9{width:5.136600px;}
._e{width:6.252300px;}
._d{width:8.071800px;}
._7{width:9.088200px;}
._6{width:10.157400px;}
._f{width:11.670600px;}
._10{width:12.999600px;}
._a{width:14.175000px;}
._b{width:15.439800px;}
._16{width:17.001600px;}
._11{width:18.282000px;}
._12{width:19.677600px;}
._13{width:22.209600px;}
._14{width:31.020000px;}
._5{width:1886.256000px;}
.fc4{color:rgb(0,132,173);}
.fc3{color:rgb(76,76,76);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(113,38,13);}
.fs7{font-size:38.478000px;}
.fsb{font-size:48.972000px;}
.fs5{font-size:52.470000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs9{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.fs3{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:68.971800px;}
.y5b{bottom:69.066450px;}
.y3{bottom:69.230550px;}
.y37{bottom:89.976300px;}
.y5a{bottom:90.070950px;}
.y2{bottom:90.235050px;}
.y35{bottom:209.314200px;}
.y94{bottom:212.598300px;}
.y58{bottom:212.598450px;}
.yd0{bottom:212.598600px;}
.yf1{bottom:212.598900px;}
.y153{bottom:217.847550px;}
.y218{bottom:224.720550px;}
.y34{bottom:227.309700px;}
.y93{bottom:232.398300px;}
.y57{bottom:232.398450px;}
.ycf{bottom:232.398600px;}
.yf0{bottom:232.398900px;}
.y152{bottom:247.856550px;}
.y92{bottom:252.198300px;}
.y56{bottom:252.198450px;}
.yce{bottom:252.198600px;}
.yef{bottom:252.198900px;}
.y217{bottom:252.976050px;}
.y33{bottom:266.567700px;}
.y91{bottom:271.998300px;}
.y55{bottom:271.998450px;}
.ycd{bottom:271.998600px;}
.yee{bottom:271.998900px;}
.y216{bottom:276.980550px;}
.y151{bottom:277.865550px;}
.y32{bottom:284.563200px;}
.y90{bottom:291.798300px;}
.y54{bottom:291.798450px;}
.y12d{bottom:291.798600px;}
.yed{bottom:291.798900px;}
.y1ce{bottom:292.868550px;}
.y215{bottom:300.985050px;}
.y31{bottom:306.811200px;}
.y150{bottom:307.874550px;}
.y8f{bottom:311.598300px;}
.y74{bottom:311.598450px;}
.y1b6{bottom:312.329550px;}
.y1cd{bottom:322.877550px;}
.y18b{bottom:324.329550px;}
.y214{bottom:329.240550px;}
.y8e{bottom:331.398300px;}
.y10e{bottom:333.971550px;}
.y14f{bottom:337.883550px;}
.y1c7{bottom:342.314550px;}
.y1b5{bottom:342.338550px;}
.y8d{bottom:351.198300px;}
.y1cc{bottom:352.886550px;}
.y213{bottom:353.245050px;}
.y12c{bottom:353.770800px;}
.yb1{bottom:354.203550px;}
.y18a{bottom:354.338550px;}
.y123{bottom:354.383550px;}
.y10d{bottom:356.477550px;}
.y14e{bottom:367.892550px;}
.y1ef{bottom:369.830550px;}
.y14c{bottom:370.998300px;}
.ycc{bottom:372.122550px;}
.y1c6{bottom:372.323550px;}
.yec{bottom:372.329550px;}
.y1b4{bottom:372.347550px;}
.y1a5{bottom:372.383550px;}
.y73{bottom:372.590550px;}
.y10c{bottom:378.983550px;}
.y212{bottom:381.500550px;}
.y1cb{bottom:382.895550px;}
.y12b{bottom:383.779800px;}
.yb0{bottom:384.212550px;}
.y189{bottom:384.347550px;}
.y122{bottom:384.392550px;}
.y14b{bottom:390.798300px;}
.y2a{bottom:392.811300px;}
.y14d{bottom:397.901550px;}
.y1ee{bottom:399.839550px;}
.y10b{bottom:401.489550px;}
.ycb{bottom:402.131550px;}
.y1c5{bottom:402.332550px;}
.yeb{bottom:402.338550px;}
.y1b3{bottom:402.356550px;}
.y1a4{bottom:402.392550px;}
.y72{bottom:402.599550px;}
.y211{bottom:405.505050px;}
.y14a{bottom:410.598300px;}
.y1ca{bottom:412.904550px;}
.y12a{bottom:413.788800px;}
.y29{bottom:413.815800px;}
.yaf{bottom:414.221550px;}
.y121{bottom:414.326550px;}
.y188{bottom:414.356550px;}
.y10a{bottom:423.995550px;}
.y1ed{bottom:429.848550px;}
.y149{bottom:430.398300px;}
.yca{bottom:432.140550px;}
.y1a3{bottom:432.329550px;}
.y1c4{bottom:432.341550px;}
.yea{bottom:432.347550px;}
.y1b2{bottom:432.365550px;}
.y53{bottom:432.536550px;}
.y71{bottom:432.608550px;}
.y210{bottom:433.760550px;}
.y28{bottom:434.820300px;}
.yae{bottom:444.230550px;}
.y120{bottom:444.335550px;}
.y187{bottom:444.365550px;}
.y109{bottom:446.501550px;}
.y148{bottom:450.198300px;}
.y27{bottom:455.824800px;}
.y8c{bottom:459.089550px;}
.y1ec{bottom:459.857550px;}
.y20f{bottom:462.016050px;}
.yc9{bottom:462.149550px;}
.y1a2{bottom:462.338550px;}
.y1c3{bottom:462.350550px;}
.ye9{bottom:462.356550px;}
.y1b1{bottom:462.374550px;}
.y52{bottom:462.545550px;}
.y70{bottom:462.617550px;}
.y1c9{bottom:472.892550px;}
.y129{bottom:473.740800px;}
.y11f{bottom:474.344550px;}
.y26{bottom:476.829300px;}
.y16d{bottom:479.004450px;}
.y8b{bottom:481.595550px;}
.y30{bottom:482.842800px;}
.y20e{bottom:486.020550px;}
.y1eb{bottom:489.866550px;}
.yc8{bottom:492.158550px;}
.y108{bottom:492.323550px;}
.y1a1{bottom:492.347550px;}
.y1c2{bottom:492.359550px;}
.ye8{bottom:492.365550px;}
.y1b0{bottom:492.383550px;}
.y51{bottom:492.554550px;}
.y6f{bottom:492.626550px;}
.y16c{bottom:497.004450px;}
.y25{bottom:497.833800px;}
.y2f{bottom:502.642800px;}
.y1c8{bottom:502.901550px;}
.y128{bottom:503.749800px;}
.y8a{bottom:504.101550px;}
.yad{bottom:504.227550px;}
.y186{bottom:504.317550px;}
.y11e{bottom:504.353550px;}
.y20d{bottom:510.025050px;}
.y16b{bottom:515.004450px;}
.y24{bottom:518.838300px;}
.y1ea{bottom:519.875550px;}
.yc7{bottom:522.167550px;}
.y107{bottom:522.332550px;}
.y1a0{bottom:522.356550px;}
.y1c1{bottom:522.368550px;}
.ye7{bottom:522.374550px;}
.y1af{bottom:522.392550px;}
.y2e{bottom:522.418800px;}
.y50{bottom:522.563550px;}
.y6e{bottom:522.635550px;}
.y185{bottom:526.823550px;}
.y16a{bottom:533.004450px;}
.y127{bottom:533.758800px;}
.yac{bottom:534.236550px;}
.y11d{bottom:534.362550px;}
.y147{bottom:536.474550px;}
.y20c{bottom:538.280550px;}
.y23{bottom:539.833800px;}
.y2d{bottom:542.218800px;}
.y184{bottom:549.329550px;}
.y1e9{bottom:549.884550px;}
.y89{bottom:549.968550px;}
.y169{bottom:551.004450px;}
.yc6{bottom:552.176550px;}
.y106{bottom:552.341550px;}
.y1ae{bottom:552.344550px;}
.y19f{bottom:552.365550px;}
.y1c0{bottom:552.377550px;}
.ye6{bottom:552.383550px;}
.y6d{bottom:552.644550px;}
.y22{bottom:560.838300px;}
.y2c{bottom:562.018800px;}
.y20b{bottom:562.285050px;}
.y126{bottom:563.767800px;}
.yab{bottom:564.245550px;}
.y146{bottom:566.483550px;}
.y168{bottom:569.004450px;}
.y183{bottom:571.835550px;}
.y1e8{bottom:579.893550px;}
.y88{bottom:579.977550px;}
.y2b{bottom:581.818800px;}
.y21{bottom:581.842800px;}
.yc5{bottom:582.185550px;}
.y105{bottom:582.350550px;}
.y1ad{bottom:582.353550px;}
.y19e{bottom:582.374550px;}
.y1bf{bottom:582.386550px;}
.ye5{bottom:582.392550px;}
.y4f{bottom:582.560550px;}
.y1d4{bottom:584.778600px;}
.y1da{bottom:584.781600px;}
.y20a{bottom:586.289550px;}
.y167{bottom:587.004450px;}
.y125{bottom:593.776800px;}
.yaa{bottom:594.254550px;}
.y182{bottom:594.341550px;}
.y11c{bottom:594.359550px;}
.y145{bottom:596.492550px;}
.y1d3{bottom:602.778600px;}
.y1d9{bottom:602.781600px;}
.y166{bottom:605.004450px;}
.y1e7{bottom:609.902550px;}
.y209{bottom:610.294050px;}
.yc4{bottom:612.194550px;}
.y104{bottom:612.359550px;}
.y1ac{bottom:612.362550px;}
.ye4{bottom:612.377550px;}
.y19d{bottom:612.383550px;}
.y1be{bottom:612.395550px;}
.y4e{bottom:612.569550px;}
.y6c{bottom:612.641550px;}
.y20{bottom:615.350700px;}
.yf6{bottom:615.646050px;}
.y181{bottom:616.847550px;}
.y1d2{bottom:620.778600px;}
.y1d8{bottom:620.781600px;}
.y165{bottom:623.004450px;}
.y124{bottom:623.785800px;}
.ya9{bottom:624.263550px;}
.y11b{bottom:624.368550px;}
.y144{bottom:626.387550px;}
.yd6{bottom:630.508350px;}
.yf5{bottom:633.646050px;}
.y208{bottom:638.549550px;}
.y1d1{bottom:638.778600px;}
.y1d7{bottom:638.781600px;}
.y180{bottom:639.353550px;}
.y1e6{bottom:639.911550px;}
.y87{bottom:639.974550px;}
.y164{bottom:641.004450px;}
.yc3{bottom:642.203550px;}
.y103{bottom:642.368550px;}
.y1ab{bottom:642.371550px;}
.ye3{bottom:642.386550px;}
.y19c{bottom:642.392550px;}
.y4d{bottom:642.578550px;}
.y6b{bottom:642.650550px;}
.yd5{bottom:648.508350px;}
.yf4{bottom:651.646050px;}
.ya8{bottom:654.272550px;}
.y11a{bottom:654.377550px;}
.y143{bottom:656.396550px;}
.y1d0{bottom:656.778600px;}
.y1d6{bottom:656.781600px;}
.y163{bottom:659.004450px;}
.y17f{bottom:661.859550px;}
.y207{bottom:662.554050px;}
.yd4{bottom:666.508350px;}
.y19{bottom:669.125250px;}
.yf3{bottom:669.646050px;}
.y1e5{bottom:669.920550px;}
.y86{bottom:669.983550px;}
.yc2{bottom:672.212550px;}
.y102{bottom:672.377550px;}
.y1aa{bottom:672.380550px;}
.y1bd{bottom:672.392550px;}
.ye2{bottom:672.395550px;}
.y4c{bottom:672.587550px;}
.y6a{bottom:672.659550px;}
.y1cf{bottom:674.778600px;}
.y1d5{bottom:674.781600px;}
.y162{bottom:677.004450px;}
.ya7{bottom:684.281550px;}
.y17e{bottom:684.365550px;}
.y119{bottom:684.386550px;}
.yd3{bottom:684.508350px;}
.y142{bottom:686.405550px;}
.y206{bottom:686.558550px;}
.yf2{bottom:687.646050px;}
.y18{bottom:690.129750px;}
.y161{bottom:695.004450px;}
.y1e4{bottom:699.929550px;}
.y85{bottom:699.992550px;}
.yc1{bottom:702.221550px;}
.y1bc{bottom:702.326550px;}
.y19b{bottom:702.386550px;}
.y1a9{bottom:702.389550px;}
.ye1{bottom:702.404550px;}
.yd2{bottom:702.508350px;}
.y4b{bottom:702.596550px;}
.y69{bottom:702.668550px;}
.y130{bottom:704.789550px;}
.y205{bottom:710.563050px;}
.y17{bottom:711.134250px;}
.ya6{bottom:714.290550px;}
.y141{bottom:716.414550px;}
.yd1{bottom:720.508350px;}
.y12f{bottom:722.789550px;}
.y1e3{bottom:729.938550px;}
.y84{bottom:729.983550px;}
.y17d{bottom:730.163550px;}
.y16{bottom:732.138750px;}
.yc0{bottom:732.230550px;}
.y1bb{bottom:732.335550px;}
.y101{bottom:732.374550px;}
.y19a{bottom:732.395550px;}
.y4a{bottom:732.605550px;}
.y204{bottom:738.818550px;}
.y12e{bottom:740.789550px;}
.ya5{bottom:744.299550px;}
.y118{bottom:744.383550px;}
.y140{bottom:746.423550px;}
.y15{bottom:753.143250px;}
.y1e2{bottom:759.947550px;}
.y83{bottom:759.992550px;}
.y17c{bottom:760.172550px;}
.ybf{bottom:762.239550px;}
.y1ba{bottom:762.344550px;}
.ye0{bottom:762.356550px;}
.y100{bottom:762.383550px;}
.y1a8{bottom:762.386550px;}
.y199{bottom:762.404550px;}
.y49{bottom:762.614550px;}
.y68{bottom:762.620550px;}
.y203{bottom:762.823050px;}
.y14{bottom:774.147750px;}
.ya4{bottom:774.308550px;}
.y117{bottom:774.392550px;}
.y13f{bottom:776.432550px;}
.y1f{bottom:780.120750px;}
.y1e1{bottom:789.956550px;}
.y82{bottom:789.983550px;}
.y17b{bottom:790.181550px;}
.y202{bottom:791.078550px;}
.ybe{bottom:792.248550px;}
.y1b9{bottom:792.353550px;}
.ydf{bottom:792.365550px;}
.yff{bottom:792.392550px;}
.y1a7{bottom:792.395550px;}
.y48{bottom:792.623550px;}
.y67{bottom:792.629550px;}
.y22c{bottom:794.054550px;}
.y13{bottom:795.152250px;}
.y1e{bottom:799.920750px;}
.y116{bottom:804.296550px;}
.ya3{bottom:804.317550px;}
.y13e{bottom:806.441550px;}
.y201{bottom:815.083050px;}
.y12{bottom:816.156750px;}
.y22b{bottom:818.059050px;}
.y1d{bottom:819.720750px;}
.y1e0{bottom:819.965550px;}
.y81{bottom:819.992550px;}
.ybd{bottom:822.257550px;}
.y198{bottom:822.308550px;}
.yfe{bottom:822.341550px;}
.yde{bottom:822.374550px;}
.y1a6{bottom:822.404550px;}
.y47{bottom:822.632550px;}
.y66{bottom:822.638550px;}
.y115{bottom:834.305550px;}
.ya2{bottom:834.326550px;}
.y13d{bottom:836.450550px;}
.y11{bottom:837.161250px;}
.y200{bottom:839.087550px;}
.y1c{bottom:839.520750px;}
.y22a{bottom:842.063550px;}
.y1df{bottom:849.974550px;}
.y80{bottom:849.983550px;}
.y17a{bottom:850.178550px;}
.ybc{bottom:852.266550px;}
.y197{bottom:852.317550px;}
.yfd{bottom:852.350550px;}
.ydd{bottom:852.383550px;}
.y65{bottom:852.647550px;}
.y10{bottom:858.165750px;}
.y1b{bottom:859.320750px;}
.y1ff{bottom:863.092050px;}
.y114{bottom:864.314550px;}
.y13c{bottom:866.459550px;}
.y229{bottom:870.319050px;}
.y1a{bottom:879.120750px;}
.yf{bottom:879.170250px;}
.y1de{bottom:879.983550px;}
.y7f{bottom:879.992550px;}
.y179{bottom:880.187550px;}
.ybb{bottom:882.275550px;}
.y196{bottom:882.326550px;}
.yfc{bottom:882.359550px;}
.ydc{bottom:882.392550px;}
.y46{bottom:882.629550px;}
.y64{bottom:882.656550px;}
.y1fe{bottom:891.347550px;}
.ya1{bottom:894.323550px;}
.y13b{bottom:896.468550px;}
.y1dd{bottom:909.992550px;}
.y7e{bottom:910.001550px;}
.y178{bottom:910.196550px;}
.yba{bottom:912.284550px;}
.ydb{bottom:912.305550px;}
.y195{bottom:912.335550px;}
.yfb{bottom:912.368550px;}
.y63{bottom:912.587550px;}
.y45{bottom:912.638550px;}
.ye{bottom:912.678150px;}
.y1fd{bottom:915.352050px;}
.y160{bottom:916.284450px;}
.y228{bottom:922.579050px;}
.ya0{bottom:924.332550px;}
.y13a{bottom:926.477550px;}
.y15f{bottom:934.284450px;}
.y1fc{bottom:939.356550px;}
.y1dc{bottom:940.001550px;}
.y177{bottom:940.205550px;}
.yb9{bottom:942.293550px;}
.yda{bottom:942.314550px;}
.y194{bottom:942.344550px;}
.yfa{bottom:942.377550px;}
.y62{bottom:942.596550px;}
.y44{bottom:942.647550px;}
.y227{bottom:946.583550px;}
.y15e{bottom:952.284450px;}
.y9f{bottom:954.341550px;}
.y1fb{bottom:963.361050px;}
.y7d{bottom:970.001550px;}
.y176{bottom:970.214550px;}
.y15d{bottom:970.284450px;}
.y226{bottom:970.588050px;}
.yb8{bottom:972.302550px;}
.yd9{bottom:972.323550px;}
.y193{bottom:972.353550px;}
.yf9{bottom:972.386550px;}
.y43{bottom:972.656550px;}
.y9e{bottom:984.350550px;}
.y139{bottom:986.474550px;}
.y15c{bottom:988.284450px;}
.y1fa{bottom:991.616550px;}
.y225{bottom:994.592550px;}
.y1db{bottom:1000.001550px;}
.y175{bottom:1000.223550px;}
.yd{bottom:1000.513500px;}
.yb7{bottom:1002.311550px;}
.yd8{bottom:1002.332550px;}
.y192{bottom:1002.362550px;}
.yf8{bottom:1002.395550px;}
.y61{bottom:1002.593550px;}
.y42{bottom:1002.611550px;}
.y15b{bottom:1006.284450px;}
.y113{bottom:1014.338550px;}
.y9d{bottom:1014.359550px;}
.y1f9{bottom:1015.621050px;}
.y138{bottom:1016.483550px;}
.y224{bottom:1022.848050px;}
.y15a{bottom:1024.284450px;}
.y174{bottom:1030.232550px;}
.yb6{bottom:1032.320550px;}
.yd7{bottom:1032.341550px;}
.y191{bottom:1032.371550px;}
.y1b8{bottom:1032.383550px;}
.yf7{bottom:1032.404550px;}
.y60{bottom:1032.602550px;}
.y41{bottom:1032.620550px;}
.yc{bottom:1034.517450px;}
.y1f8{bottom:1039.625550px;}
.y159{bottom:1042.284450px;}
.y112{bottom:1044.347550px;}
.y9c{bottom:1044.368550px;}
.y137{bottom:1046.492550px;}
.y223{bottom:1051.103550px;}
.yb{bottom:1060.024950px;}
.y173{bottom:1060.241550px;}
.y158{bottom:1060.284450px;}
.yb5{bottom:1062.329550px;}
.y7c{bottom:1062.350550px;}
.y190{bottom:1062.380550px;}
.y1b7{bottom:1062.392550px;}
.y5f{bottom:1062.611550px;}
.y40{bottom:1062.629550px;}
.y1f7{bottom:1067.881050px;}
.y111{bottom:1074.356550px;}
.y9b{bottom:1074.377550px;}
.y222{bottom:1075.108050px;}
.y136{bottom:1076.501550px;}
.y157{bottom:1078.284450px;}
.ya{bottom:1085.517450px;}
.y1f6{bottom:1091.885550px;}
.yb4{bottom:1092.338550px;}
.y7b{bottom:1092.359550px;}
.y18f{bottom:1092.389550px;}
.y5e{bottom:1092.620550px;}
.y3f{bottom:1092.638550px;}
.y156{bottom:1096.284450px;}
.y221{bottom:1099.112550px;}
.y110{bottom:1104.365550px;}
.y9a{bottom:1104.386550px;}
.y9{bottom:1111.017450px;}
.y155{bottom:1114.284450px;}
.y1f5{bottom:1120.141050px;}
.y172{bottom:1120.238550px;}
.yb3{bottom:1122.347550px;}
.y7a{bottom:1122.368550px;}
.y5d{bottom:1122.629550px;}
.y3e{bottom:1122.647550px;}
.y220{bottom:1123.117050px;}
.y154{bottom:1132.284450px;}
.y10f{bottom:1134.374550px;}
.y135{bottom:1136.477550px;}
.y1f4{bottom:1148.396550px;}
.y171{bottom:1150.247550px;}
.y21f{bottom:1151.372550px;}
.yb2{bottom:1152.356550px;}
.y18e{bottom:1152.386550px;}
.y5c{bottom:1152.638550px;}
.y3d{bottom:1152.656550px;}
.y134{bottom:1158.983550px;}
.y99{bottom:1164.383550px;}
.y1f3{bottom:1172.401050px;}
.y21e{bottom:1175.377050px;}
.y170{bottom:1180.256550px;}
.y133{bottom:1181.489550px;}
.y79{bottom:1182.365550px;}
.y18d{bottom:1182.395550px;}
.y3c{bottom:1182.647550px;}
.y98{bottom:1194.392550px;}
.y1f2{bottom:1196.405550px;}
.y21d{bottom:1199.381550px;}
.y132{bottom:1203.995550px;}
.y8{bottom:1206.700950px;}
.y16f{bottom:1210.265550px;}
.y78{bottom:1212.374550px;}
.y18c{bottom:1212.404550px;}
.y3b{bottom:1212.656550px;}
.y21c{bottom:1223.386050px;}
.y97{bottom:1224.401550px;}
.y1f1{bottom:1224.661050px;}
.y131{bottom:1226.501550px;}
.y7{bottom:1233.700950px;}
.y77{bottom:1242.383550px;}
.y3a{bottom:1242.665550px;}
.y1f0{bottom:1248.665550px;}
.y21b{bottom:1251.641550px;}
.y16e{bottom:1270.265550px;}
.y76{bottom:1272.392550px;}
.y21a{bottom:1275.646050px;}
.y6{bottom:1280.500950px;}
.y96{bottom:1284.390450px;}
.y75{bottom:1302.401550px;}
.y39{bottom:1302.665550px;}
.y219{bottom:1303.901550px;}
.y95{bottom:1306.896450px;}
.y5{bottom:1329.100950px;}
.y4{bottom:1377.700950px;}
.y1{bottom:1382.433150px;}
.y36{bottom:1433.787450px;}
.y59{bottom:1433.952750px;}
.hd{height:41.202000px;}
.h22{height:42.480000px;}
.hc{height:45.360000px;}
.h21{height:45.600000px;}
.h8{height:48.240000px;}
.h3{height:50.358000px;}
.h6{height:52.260000px;}
.h12{height:53.760000px;}
.h7{height:54.720000px;}
.h1{height:54.936000px;}
.h9{height:59.136000px;}
.ha{height:59.172000px;}
.h16{height:59.180400px;}
.hb{height:59.232000px;}
.h23{height:59.328000px;}
.he{height:59.797200px;}
.h27{height:69.888000px;}
.h2{height:71.502000px;}
.hf{height:75.264000px;}
.h1f{height:75.300000px;}
.h10{height:75.336000px;}
.h1a{height:75.360000px;}
.h14{height:75.444000px;}
.h15{height:75.468000px;}
.h11{height:75.480000px;}
.h26{height:75.492000px;}
.h1c{height:75.504000px;}
.h1b{height:75.516000px;}
.h25{height:75.552000px;}
.h1e{height:75.564000px;}
.h13{height:75.576000px;}
.h24{height:75.636000px;}
.h19{height:75.648000px;}
.h1d{height:75.684000px;}
.h20{height:75.720000px;}
.h17{height:76.056000px;}
.h18{height:76.380000px;}
.h5{height:80.640000px;}
.h4{height:108.540000px;}
.h0{height:1536.000000px;}
.w0{width:1152.000000px;}
.x0{left:0.000000px;}
.xa{left:11.946150px;}
.x2{left:191.338650px;}
.x11{left:192.712950px;}
.x15{left:194.452950px;}
.x25{left:197.826000px;}
.x8{left:199.842600px;}
.x1b{left:204.150600px;}
.x1c{left:207.045600px;}
.x13{left:211.447950px;}
.x12{left:213.907950px;}
.xc{left:216.793500px;}
.xf{left:221.102400px;}
.x14{left:223.087950px;}
.x26{left:229.431000px;}
.xe{left:269.689200px;}
.x1d{left:283.920600px;}
.x27{left:310.341000px;}
.xd{left:319.846800px;}
.x1e{left:430.151100px;}
.x17{left:581.091000px;}
.x16{left:584.721000px;}
.x18{left:591.816000px;}
.x19{left:614.196000px;}
.x23{left:618.508650px;}
.x20{left:620.998650px;}
.x21{left:629.353650px;}
.x22{left:631.648650px;}
.x10{left:636.570750px;}
.x7{left:647.107350px;}
.x1f{left:667.679100px;}
.x24{left:704.563650px;}
.x28{left:707.633850px;}
.x9{left:741.257100px;}
.x4{left:744.845400px;}
.x1a{left:746.391000px;}
.x3{left:781.986300px;}
.x6{left:792.974700px;}
.x5{left:802.875900px;}
.xb{left:824.055600px;}
.x29{left:836.439000px;}
.x1{left:1111.596150px;}
@media print{
.v5{vertical-align:-24.864000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:0.992000pt;}
.v2{vertical-align:19.568000pt;}
.v3{vertical-align:24.928000pt;}
.v1{vertical-align:26.640000pt;}
.lsf{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-1.792000pt;}
.ls17{letter-spacing:-1.493333pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.652960pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls23{letter-spacing:-0.554667pt;}
.ls14{letter-spacing:-0.478837pt;}
.ls2{letter-spacing:-0.466400pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.435307pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.346667pt;}
.ls4{letter-spacing:-0.342027pt;}
.ls1e{letter-spacing:-0.298667pt;}
.ls11{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.261184pt;}
.ls3{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.074667pt;}
.lse{letter-spacing:-0.043531pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.074667pt;}
.lsb{letter-spacing:0.174123pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.554667pt;}
.ls1a{letter-spacing:0.649851pt;}
.ls19{letter-spacing:1.114667pt;}
.ls25{letter-spacing:1.629333pt;}
.ls8{letter-spacing:1.866667pt;}
.ls24{letter-spacing:2.086933pt;}
.ls13{letter-spacing:2.150400pt;}
.ls20{letter-spacing:2.658133pt;}
.ls1d{letter-spacing:4.674133pt;}
.ls5{letter-spacing:4.794667pt;}
.ls22{letter-spacing:11.509333pt;}
.ls9{letter-spacing:36.426667pt;}
.ws11{word-spacing:-53.333333pt;}
.ws6e{word-spacing:-53.066667pt;}
.ws66{word-spacing:-50.773333pt;}
.ws96{word-spacing:-36.704000pt;}
.ws6d{word-spacing:-35.690667pt;}
.ws91{word-spacing:-35.104000pt;}
.ws78{word-spacing:-34.784000pt;}
.ws8f{word-spacing:-34.517333pt;}
.ws9a{word-spacing:-34.464000pt;}
.ws8e{word-spacing:-34.410667pt;}
.ws7a{word-spacing:-34.357333pt;}
.ws9b{word-spacing:-34.144000pt;}
.ws90{word-spacing:-29.557333pt;}
.ws35{word-spacing:-28.384000pt;}
.ws51{word-spacing:-26.464000pt;}
.ws4f{word-spacing:-26.144000pt;}
.ws5e{word-spacing:-25.877333pt;}
.ws50{word-spacing:-25.824000pt;}
.ws77{word-spacing:-24.650667pt;}
.ws98{word-spacing:-24.384000pt;}
.wsd{word-spacing:-21.333333pt;}
.ws67{word-spacing:-20.917333pt;}
.wsf{word-spacing:-14.933333pt;}
.ws65{word-spacing:-14.858667pt;}
.ws75{word-spacing:-14.485333pt;}
.wsab{word-spacing:-13.866667pt;}
.wsac{word-spacing:-13.450667pt;}
.ws8d{word-spacing:-13.141333pt;}
.ws2{word-spacing:-11.733333pt;}
.ws70{word-spacing:-10.666667pt;}
.ws79{word-spacing:-10.560000pt;}
.ws1e{word-spacing:-10.517333pt;}
.ws9c{word-spacing:-10.240000pt;}
.ws12{word-spacing:-10.197333pt;}
.ws40{word-spacing:-10.080000pt;}
.ws2b{word-spacing:-9.930667pt;}
.ws1d{word-spacing:-9.877333pt;}
.ws29{word-spacing:-9.824000pt;}
.ws6{word-spacing:-9.600000pt;}
.ws2a{word-spacing:-9.546667pt;}
.ws6f{word-spacing:-9.280000pt;}
.ws97{word-spacing:-9.226667pt;}
.ws76{word-spacing:-9.173333pt;}
.ws1{word-spacing:-8.861600pt;}
.ws5{word-spacing:-6.498507pt;}
.ws4{word-spacing:-6.293291pt;}
.ws2c{word-spacing:-4.970667pt;}
.ws13{word-spacing:-4.256000pt;}
.ws92{word-spacing:-3.360000pt;}
.ws5f{word-spacing:-2.986667pt;}
.wsb7{word-spacing:-2.773333pt;}
.wsb8{word-spacing:-2.704000pt;}
.ws9f{word-spacing:-2.165333pt;}
.ws7c{word-spacing:-1.760000pt;}
.wsaa{word-spacing:-1.642667pt;}
.ws82{word-spacing:-1.568000pt;}
.ws10{word-spacing:-1.557333pt;}
.ws63{word-spacing:-1.525333pt;}
.ws84{word-spacing:-1.440000pt;}
.wsa1{word-spacing:-1.344000pt;}
.ws2d{word-spacing:-1.269333pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws88{word-spacing:-1.114667pt;}
.ws89{word-spacing:-0.970667pt;}
.wsa6{word-spacing:-0.853333pt;}
.wsb1{word-spacing:-0.832000pt;}
.wsa8{word-spacing:-0.821333pt;}
.ws41{word-spacing:-0.746667pt;}
.ws7f{word-spacing:-0.704000pt;}
.ws4e{word-spacing:-0.693333pt;}
.ws87{word-spacing:-0.684053pt;}
.ws94{word-spacing:-0.672000pt;}
.ws5a{word-spacing:-0.597333pt;}
.ws14{word-spacing:-0.373333pt;}
.ws19{word-spacing:-0.298667pt;}
.ws3f{word-spacing:-0.217653pt;}
.ws0{word-spacing:-0.090667pt;}
.ws37{word-spacing:-0.074667pt;}
.ws28{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.043531pt;}
.ws34{word-spacing:-0.034203pt;}
.ws7{word-spacing:0.000000pt;}
.ws49{word-spacing:0.074667pt;}
.wsa{word-spacing:0.117333pt;}
.wsaf{word-spacing:0.208000pt;}
.ws8c{word-spacing:0.217653pt;}
.ws71{word-spacing:0.266667pt;}
.ws83{word-spacing:0.298667pt;}
.ws73{word-spacing:0.307824pt;}
.ws86{word-spacing:0.320000pt;}
.wsb9{word-spacing:0.346667pt;}
.ws85{word-spacing:0.373333pt;}
.ws6c{word-spacing:0.391776pt;}
.ws72{word-spacing:0.435307pt;}
.ws80{word-spacing:0.448000pt;}
.ws95{word-spacing:0.533333pt;}
.wsae{word-spacing:0.554667pt;}
.ws7d{word-spacing:0.586667pt;}
.ws62{word-spacing:0.597333pt;}
.ws74{word-spacing:0.609429pt;}
.ws4d{word-spacing:0.746667pt;}
.ws5c{word-spacing:0.800000pt;}
.ws7e{word-spacing:0.821333pt;}
.ws1b{word-spacing:0.853333pt;}
.wsba{word-spacing:0.901333pt;}
.ws31{word-spacing:1.045333pt;}
.ws42{word-spacing:1.269333pt;}
.wsa5{word-spacing:1.280000pt;}
.ws61{word-spacing:1.344000pt;}
.ws9d{word-spacing:1.418667pt;}
.ws9e{word-spacing:1.493333pt;}
.ws1a{word-spacing:1.546667pt;}
.ws60{word-spacing:1.568000pt;}
.ws93{word-spacing:1.642667pt;}
.ws64{word-spacing:1.701333pt;}
.ws8a{word-spacing:1.717333pt;}
.wsb6{word-spacing:1.733333pt;}
.ws38{word-spacing:1.792000pt;}
.ws4c{word-spacing:1.866667pt;}
.ws45{word-spacing:1.941333pt;}
.wsb5{word-spacing:2.010667pt;}
.wsa2{word-spacing:2.090667pt;}
.ws23{word-spacing:2.165333pt;}
.ws24{word-spacing:2.240000pt;}
.ws3e{word-spacing:2.346667pt;}
.ws48{word-spacing:2.389333pt;}
.ws81{word-spacing:2.538667pt;}
.ws52{word-spacing:2.688000pt;}
.wsad{word-spacing:2.704000pt;}
.ws7b{word-spacing:2.762667pt;}
.ws4b{word-spacing:2.837333pt;}
.ws4a{word-spacing:2.912000pt;}
.wsb3{word-spacing:2.981333pt;}
.ws1f{word-spacing:2.986667pt;}
.ws32{word-spacing:3.210667pt;}
.wsa4{word-spacing:3.434667pt;}
.ws6b{word-spacing:3.626667pt;}
.wsa3{word-spacing:3.658667pt;}
.ws16{word-spacing:3.733333pt;}
.ws25{word-spacing:3.808000pt;}
.ws22{word-spacing:3.882667pt;}
.ws6a{word-spacing:4.032000pt;}
.ws27{word-spacing:4.256000pt;}
.ws8{word-spacing:4.517333pt;}
.ws36{word-spacing:4.554667pt;}
.wsb{word-spacing:4.693333pt;}
.ws3a{word-spacing:4.778667pt;}
.wsb2{word-spacing:4.784000pt;}
.ws5b{word-spacing:4.928000pt;}
.ws99{word-spacing:5.152000pt;}
.ws15{word-spacing:5.226667pt;}
.wsa9{word-spacing:5.301333pt;}
.ws1c{word-spacing:5.440000pt;}
.ws33{word-spacing:5.866667pt;}
.wsb4{word-spacing:5.893333pt;}
.ws2f{word-spacing:5.973333pt;}
.ws17{word-spacing:6.197333pt;}
.ws20{word-spacing:6.346667pt;}
.wsb0{word-spacing:6.378667pt;}
.ws21{word-spacing:6.570667pt;}
.ws2e{word-spacing:6.645333pt;}
.ws18{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.794667pt;}
.ws44{word-spacing:7.018667pt;}
.ws43{word-spacing:7.168000pt;}
.ws30{word-spacing:7.242667pt;}
.ws39{word-spacing:7.914667pt;}
.ws68{word-spacing:8.512000pt;}
.ws46{word-spacing:8.586667pt;}
.ws3c{word-spacing:8.810667pt;}
.ws69{word-spacing:9.184000pt;}
.ws3d{word-spacing:10.154667pt;}
.ws57{word-spacing:10.528000pt;}
.wsa0{word-spacing:10.901333pt;}
.ws3b{word-spacing:12.320000pt;}
.ws26{word-spacing:12.469333pt;}
.ws56{word-spacing:12.917333pt;}
.ws53{word-spacing:13.589333pt;}
.ws59{word-spacing:13.888000pt;}
.ws9{word-spacing:13.962667pt;}
.ws8b{word-spacing:18.240000pt;}
.ws54{word-spacing:19.637333pt;}
.ws55{word-spacing:19.786667pt;}
.ws47{word-spacing:22.176000pt;}
.ws58{word-spacing:24.938667pt;}
.wsc{word-spacing:523.856000pt;}
.ws3{word-spacing:1676.032000pt;}
._15{margin-left:-21.414400pt;}
._17{margin-left:-18.203733pt;}
._4{margin-left:-5.553600pt;}
._1{margin-left:-3.883733pt;}
._2{margin-left:-2.448000pt;}
._0{margin-left:-0.942933pt;}
._c{width:0.968000pt;}
._3{width:2.145600pt;}
._8{width:3.518400pt;}
._9{width:4.565867pt;}
._e{width:5.557600pt;}
._d{width:7.174933pt;}
._7{width:8.078400pt;}
._6{width:9.028800pt;}
._f{width:10.373867pt;}
._10{width:11.555200pt;}
._a{width:12.600000pt;}
._b{width:13.724267pt;}
._16{width:15.112533pt;}
._11{width:16.250667pt;}
._12{width:17.491200pt;}
._13{width:19.741867pt;}
._14{width:27.573333pt;}
._5{width:1676.672000pt;}
.fs7{font-size:34.202667pt;}
.fsb{font-size:43.530667pt;}
.fs5{font-size:46.640000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs9{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.fs3{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:61.308267pt;}
.y5b{bottom:61.392400pt;}
.y3{bottom:61.538267pt;}
.y37{bottom:79.978933pt;}
.y5a{bottom:80.063067pt;}
.y2{bottom:80.208933pt;}
.y35{bottom:186.057067pt;}
.y94{bottom:188.976267pt;}
.y58{bottom:188.976400pt;}
.yd0{bottom:188.976533pt;}
.yf1{bottom:188.976800pt;}
.y153{bottom:193.642267pt;}
.y218{bottom:199.751600pt;}
.y34{bottom:202.053067pt;}
.y93{bottom:206.576267pt;}
.y57{bottom:206.576400pt;}
.ycf{bottom:206.576533pt;}
.yf0{bottom:206.576800pt;}
.y152{bottom:220.316933pt;}
.y92{bottom:224.176267pt;}
.y56{bottom:224.176400pt;}
.yce{bottom:224.176533pt;}
.yef{bottom:224.176800pt;}
.y217{bottom:224.867600pt;}
.y33{bottom:236.949067pt;}
.y91{bottom:241.776267pt;}
.y55{bottom:241.776400pt;}
.ycd{bottom:241.776533pt;}
.yee{bottom:241.776800pt;}
.y216{bottom:246.204933pt;}
.y151{bottom:246.991600pt;}
.y32{bottom:252.945067pt;}
.y90{bottom:259.376267pt;}
.y54{bottom:259.376400pt;}
.y12d{bottom:259.376533pt;}
.yed{bottom:259.376800pt;}
.y1ce{bottom:260.327600pt;}
.y215{bottom:267.542267pt;}
.y31{bottom:272.721067pt;}
.y150{bottom:273.666267pt;}
.y8f{bottom:276.976267pt;}
.y74{bottom:276.976400pt;}
.y1b6{bottom:277.626267pt;}
.y1cd{bottom:287.002267pt;}
.y18b{bottom:288.292933pt;}
.y214{bottom:292.658267pt;}
.y8e{bottom:294.576267pt;}
.y10e{bottom:296.863600pt;}
.y14f{bottom:300.340933pt;}
.y1c7{bottom:304.279600pt;}
.y1b5{bottom:304.300933pt;}
.y8d{bottom:312.176267pt;}
.y1cc{bottom:313.676933pt;}
.y213{bottom:313.995600pt;}
.y12c{bottom:314.462933pt;}
.yb1{bottom:314.847600pt;}
.y18a{bottom:314.967600pt;}
.y123{bottom:315.007600pt;}
.y10d{bottom:316.868933pt;}
.y14e{bottom:327.015600pt;}
.y1ef{bottom:328.738267pt;}
.y14c{bottom:329.776267pt;}
.ycc{bottom:330.775600pt;}
.y1c6{bottom:330.954267pt;}
.yec{bottom:330.959600pt;}
.y1b4{bottom:330.975600pt;}
.y1a5{bottom:331.007600pt;}
.y73{bottom:331.191600pt;}
.y10c{bottom:336.874267pt;}
.y212{bottom:339.111600pt;}
.y1cb{bottom:340.351600pt;}
.y12b{bottom:341.137600pt;}
.yb0{bottom:341.522267pt;}
.y189{bottom:341.642267pt;}
.y122{bottom:341.682267pt;}
.y14b{bottom:347.376267pt;}
.y2a{bottom:349.165600pt;}
.y14d{bottom:353.690267pt;}
.y1ee{bottom:355.412933pt;}
.y10b{bottom:356.879600pt;}
.ycb{bottom:357.450267pt;}
.y1c5{bottom:357.628933pt;}
.yeb{bottom:357.634267pt;}
.y1b3{bottom:357.650267pt;}
.y1a4{bottom:357.682267pt;}
.y72{bottom:357.866267pt;}
.y211{bottom:360.448933pt;}
.y14a{bottom:364.976267pt;}
.y1ca{bottom:367.026267pt;}
.y12a{bottom:367.812267pt;}
.y29{bottom:367.836267pt;}
.yaf{bottom:368.196933pt;}
.y121{bottom:368.290267pt;}
.y188{bottom:368.316933pt;}
.y10a{bottom:376.884933pt;}
.y1ed{bottom:382.087600pt;}
.y149{bottom:382.576267pt;}
.yca{bottom:384.124933pt;}
.y1a3{bottom:384.292933pt;}
.y1c4{bottom:384.303600pt;}
.yea{bottom:384.308933pt;}
.y1b2{bottom:384.324933pt;}
.y53{bottom:384.476933pt;}
.y71{bottom:384.540933pt;}
.y210{bottom:385.564933pt;}
.y28{bottom:386.506933pt;}
.yae{bottom:394.871600pt;}
.y120{bottom:394.964933pt;}
.y187{bottom:394.991600pt;}
.y109{bottom:396.890267pt;}
.y148{bottom:400.176267pt;}
.y27{bottom:405.177600pt;}
.y8c{bottom:408.079600pt;}
.y1ec{bottom:408.762267pt;}
.y20f{bottom:410.680933pt;}
.yc9{bottom:410.799600pt;}
.y1a2{bottom:410.967600pt;}
.y1c3{bottom:410.978267pt;}
.ye9{bottom:410.983600pt;}
.y1b1{bottom:410.999600pt;}
.y52{bottom:411.151600pt;}
.y70{bottom:411.215600pt;}
.y1c9{bottom:420.348933pt;}
.y129{bottom:421.102933pt;}
.y11f{bottom:421.639600pt;}
.y26{bottom:423.848267pt;}
.y16d{bottom:425.781733pt;}
.y8b{bottom:428.084933pt;}
.y30{bottom:429.193600pt;}
.y20e{bottom:432.018267pt;}
.y1eb{bottom:435.436933pt;}
.yc8{bottom:437.474267pt;}
.y108{bottom:437.620933pt;}
.y1a1{bottom:437.642267pt;}
.y1c2{bottom:437.652933pt;}
.ye8{bottom:437.658267pt;}
.y1b0{bottom:437.674267pt;}
.y51{bottom:437.826267pt;}
.y6f{bottom:437.890267pt;}
.y16c{bottom:441.781733pt;}
.y25{bottom:442.518933pt;}
.y2f{bottom:446.793600pt;}
.y1c8{bottom:447.023600pt;}
.y128{bottom:447.777600pt;}
.y8a{bottom:448.090267pt;}
.yad{bottom:448.202267pt;}
.y186{bottom:448.282267pt;}
.y11e{bottom:448.314267pt;}
.y20d{bottom:453.355600pt;}
.y16b{bottom:457.781733pt;}
.y24{bottom:461.189600pt;}
.y1ea{bottom:462.111600pt;}
.yc7{bottom:464.148933pt;}
.y107{bottom:464.295600pt;}
.y1a0{bottom:464.316933pt;}
.y1c1{bottom:464.327600pt;}
.ye7{bottom:464.332933pt;}
.y1af{bottom:464.348933pt;}
.y2e{bottom:464.372267pt;}
.y50{bottom:464.500933pt;}
.y6e{bottom:464.564933pt;}
.y185{bottom:468.287600pt;}
.y16a{bottom:473.781733pt;}
.y127{bottom:474.452267pt;}
.yac{bottom:474.876933pt;}
.y11d{bottom:474.988933pt;}
.y147{bottom:476.866267pt;}
.y20c{bottom:478.471600pt;}
.y23{bottom:479.852267pt;}
.y2d{bottom:481.972267pt;}
.y184{bottom:488.292933pt;}
.y1e9{bottom:488.786267pt;}
.y89{bottom:488.860933pt;}
.y169{bottom:489.781733pt;}
.yc6{bottom:490.823600pt;}
.y106{bottom:490.970267pt;}
.y1ae{bottom:490.972933pt;}
.y19f{bottom:490.991600pt;}
.y1c0{bottom:491.002267pt;}
.ye6{bottom:491.007600pt;}
.y6d{bottom:491.239600pt;}
.y22{bottom:498.522933pt;}
.y2c{bottom:499.572267pt;}
.y20b{bottom:499.808933pt;}
.y126{bottom:501.126933pt;}
.yab{bottom:501.551600pt;}
.y146{bottom:503.540933pt;}
.y168{bottom:505.781733pt;}
.y183{bottom:508.298267pt;}
.y1e8{bottom:515.460933pt;}
.y88{bottom:515.535600pt;}
.y2b{bottom:517.172267pt;}
.y21{bottom:517.193600pt;}
.yc5{bottom:517.498267pt;}
.y105{bottom:517.644933pt;}
.y1ad{bottom:517.647600pt;}
.y19e{bottom:517.666267pt;}
.y1bf{bottom:517.676933pt;}
.ye5{bottom:517.682267pt;}
.y4f{bottom:517.831600pt;}
.y1d4{bottom:519.803200pt;}
.y1da{bottom:519.805867pt;}
.y20a{bottom:521.146267pt;}
.y167{bottom:521.781733pt;}
.y125{bottom:527.801600pt;}
.yaa{bottom:528.226267pt;}
.y182{bottom:528.303600pt;}
.y11c{bottom:528.319600pt;}
.y145{bottom:530.215600pt;}
.y1d3{bottom:535.803200pt;}
.y1d9{bottom:535.805867pt;}
.y166{bottom:537.781733pt;}
.y1e7{bottom:542.135600pt;}
.y209{bottom:542.483600pt;}
.yc4{bottom:544.172933pt;}
.y104{bottom:544.319600pt;}
.y1ac{bottom:544.322267pt;}
.ye4{bottom:544.335600pt;}
.y19d{bottom:544.340933pt;}
.y1be{bottom:544.351600pt;}
.y4e{bottom:544.506267pt;}
.y6c{bottom:544.570267pt;}
.y20{bottom:546.978400pt;}
.yf6{bottom:547.240933pt;}
.y181{bottom:548.308933pt;}
.y1d2{bottom:551.803200pt;}
.y1d8{bottom:551.805867pt;}
.y165{bottom:553.781733pt;}
.y124{bottom:554.476267pt;}
.ya9{bottom:554.900933pt;}
.y11b{bottom:554.994267pt;}
.y144{bottom:556.788933pt;}
.yd6{bottom:560.451867pt;}
.yf5{bottom:563.240933pt;}
.y208{bottom:567.599600pt;}
.y1d1{bottom:567.803200pt;}
.y1d7{bottom:567.805867pt;}
.y180{bottom:568.314267pt;}
.y1e6{bottom:568.810267pt;}
.y87{bottom:568.866267pt;}
.y164{bottom:569.781733pt;}
.yc3{bottom:570.847600pt;}
.y103{bottom:570.994267pt;}
.y1ab{bottom:570.996933pt;}
.ye3{bottom:571.010267pt;}
.y19c{bottom:571.015600pt;}
.y4d{bottom:571.180933pt;}
.y6b{bottom:571.244933pt;}
.yd5{bottom:576.451867pt;}
.yf4{bottom:579.240933pt;}
.ya8{bottom:581.575600pt;}
.y11a{bottom:581.668933pt;}
.y143{bottom:583.463600pt;}
.y1d0{bottom:583.803200pt;}
.y1d6{bottom:583.805867pt;}
.y163{bottom:585.781733pt;}
.y17f{bottom:588.319600pt;}
.y207{bottom:588.936933pt;}
.yd4{bottom:592.451867pt;}
.y19{bottom:594.778000pt;}
.yf3{bottom:595.240933pt;}
.y1e5{bottom:595.484933pt;}
.y86{bottom:595.540933pt;}
.yc2{bottom:597.522267pt;}
.y102{bottom:597.668933pt;}
.y1aa{bottom:597.671600pt;}
.y1bd{bottom:597.682267pt;}
.ye2{bottom:597.684933pt;}
.y4c{bottom:597.855600pt;}
.y6a{bottom:597.919600pt;}
.y1cf{bottom:599.803200pt;}
.y1d5{bottom:599.805867pt;}
.y162{bottom:601.781733pt;}
.ya7{bottom:608.250267pt;}
.y17e{bottom:608.324933pt;}
.y119{bottom:608.343600pt;}
.yd3{bottom:608.451867pt;}
.y142{bottom:610.138267pt;}
.y206{bottom:610.274267pt;}
.yf2{bottom:611.240933pt;}
.y18{bottom:613.448667pt;}
.y161{bottom:617.781733pt;}
.y1e4{bottom:622.159600pt;}
.y85{bottom:622.215600pt;}
.yc1{bottom:624.196933pt;}
.y1bc{bottom:624.290267pt;}
.y19b{bottom:624.343600pt;}
.y1a9{bottom:624.346267pt;}
.ye1{bottom:624.359600pt;}
.yd2{bottom:624.451867pt;}
.y4b{bottom:624.530267pt;}
.y69{bottom:624.594267pt;}
.y130{bottom:626.479600pt;}
.y205{bottom:631.611600pt;}
.y17{bottom:632.119333pt;}
.ya6{bottom:634.924933pt;}
.y141{bottom:636.812933pt;}
.yd1{bottom:640.451867pt;}
.y12f{bottom:642.479600pt;}
.y1e3{bottom:648.834267pt;}
.y84{bottom:648.874267pt;}
.y17d{bottom:649.034267pt;}
.y16{bottom:650.790000pt;}
.yc0{bottom:650.871600pt;}
.y1bb{bottom:650.964933pt;}
.y101{bottom:650.999600pt;}
.y19a{bottom:651.018267pt;}
.y4a{bottom:651.204933pt;}
.y204{bottom:656.727600pt;}
.y12e{bottom:658.479600pt;}
.ya5{bottom:661.599600pt;}
.y118{bottom:661.674267pt;}
.y140{bottom:663.487600pt;}
.y15{bottom:669.460667pt;}
.y1e2{bottom:675.508933pt;}
.y83{bottom:675.548933pt;}
.y17c{bottom:675.708933pt;}
.ybf{bottom:677.546267pt;}
.y1ba{bottom:677.639600pt;}
.ye0{bottom:677.650267pt;}
.y100{bottom:677.674267pt;}
.y1a8{bottom:677.676933pt;}
.y199{bottom:677.692933pt;}
.y49{bottom:677.879600pt;}
.y68{bottom:677.884933pt;}
.y203{bottom:678.064933pt;}
.y14{bottom:688.131333pt;}
.ya4{bottom:688.274267pt;}
.y117{bottom:688.348933pt;}
.y13f{bottom:690.162267pt;}
.y1f{bottom:693.440667pt;}
.y1e1{bottom:702.183600pt;}
.y82{bottom:702.207600pt;}
.y17b{bottom:702.383600pt;}
.y202{bottom:703.180933pt;}
.ybe{bottom:704.220933pt;}
.y1b9{bottom:704.314267pt;}
.ydf{bottom:704.324933pt;}
.yff{bottom:704.348933pt;}
.y1a7{bottom:704.351600pt;}
.y48{bottom:704.554267pt;}
.y67{bottom:704.559600pt;}
.y22c{bottom:705.826267pt;}
.y13{bottom:706.802000pt;}
.y1e{bottom:711.040667pt;}
.y116{bottom:714.930267pt;}
.ya3{bottom:714.948933pt;}
.y13e{bottom:716.836933pt;}
.y201{bottom:724.518267pt;}
.y12{bottom:725.472667pt;}
.y22b{bottom:727.163600pt;}
.y1d{bottom:728.640667pt;}
.y1e0{bottom:728.858267pt;}
.y81{bottom:728.882267pt;}
.ybd{bottom:730.895600pt;}
.y198{bottom:730.940933pt;}
.yfe{bottom:730.970267pt;}
.yde{bottom:730.999600pt;}
.y1a6{bottom:731.026267pt;}
.y47{bottom:731.228933pt;}
.y66{bottom:731.234267pt;}
.y115{bottom:741.604933pt;}
.ya2{bottom:741.623600pt;}
.y13d{bottom:743.511600pt;}
.y11{bottom:744.143333pt;}
.y200{bottom:745.855600pt;}
.y1c{bottom:746.240667pt;}
.y22a{bottom:748.500933pt;}
.y1df{bottom:755.532933pt;}
.y80{bottom:755.540933pt;}
.y17a{bottom:755.714267pt;}
.ybc{bottom:757.570267pt;}
.y197{bottom:757.615600pt;}
.yfd{bottom:757.644933pt;}
.ydd{bottom:757.674267pt;}
.y65{bottom:757.908933pt;}
.y10{bottom:762.814000pt;}
.y1b{bottom:763.840667pt;}
.y1ff{bottom:767.192933pt;}
.y114{bottom:768.279600pt;}
.y13c{bottom:770.186267pt;}
.y229{bottom:773.616933pt;}
.y1a{bottom:781.440667pt;}
.yf{bottom:781.484667pt;}
.y1de{bottom:782.207600pt;}
.y7f{bottom:782.215600pt;}
.y179{bottom:782.388933pt;}
.ybb{bottom:784.244933pt;}
.y196{bottom:784.290267pt;}
.yfc{bottom:784.319600pt;}
.ydc{bottom:784.348933pt;}
.y46{bottom:784.559600pt;}
.y64{bottom:784.583600pt;}
.y1fe{bottom:792.308933pt;}
.ya1{bottom:794.954267pt;}
.y13b{bottom:796.860933pt;}
.y1dd{bottom:808.882267pt;}
.y7e{bottom:808.890267pt;}
.y178{bottom:809.063600pt;}
.yba{bottom:810.919600pt;}
.ydb{bottom:810.938267pt;}
.y195{bottom:810.964933pt;}
.yfb{bottom:810.994267pt;}
.y63{bottom:811.188933pt;}
.y45{bottom:811.234267pt;}
.ye{bottom:811.269467pt;}
.y1fd{bottom:813.646267pt;}
.y160{bottom:814.475067pt;}
.y228{bottom:820.070267pt;}
.ya0{bottom:821.628933pt;}
.y13a{bottom:823.535600pt;}
.y15f{bottom:830.475067pt;}
.y1fc{bottom:834.983600pt;}
.y1dc{bottom:835.556933pt;}
.y177{bottom:835.738267pt;}
.yb9{bottom:837.594267pt;}
.yda{bottom:837.612933pt;}
.y194{bottom:837.639600pt;}
.yfa{bottom:837.668933pt;}
.y62{bottom:837.863600pt;}
.y44{bottom:837.908933pt;}
.y227{bottom:841.407600pt;}
.y15e{bottom:846.475067pt;}
.y9f{bottom:848.303600pt;}
.y1fb{bottom:856.320933pt;}
.y7d{bottom:862.223600pt;}
.y176{bottom:862.412933pt;}
.y15d{bottom:862.475067pt;}
.y226{bottom:862.744933pt;}
.yb8{bottom:864.268933pt;}
.yd9{bottom:864.287600pt;}
.y193{bottom:864.314267pt;}
.yf9{bottom:864.343600pt;}
.y43{bottom:864.583600pt;}
.y9e{bottom:874.978267pt;}
.y139{bottom:876.866267pt;}
.y15c{bottom:878.475067pt;}
.y1fa{bottom:881.436933pt;}
.y225{bottom:884.082267pt;}
.y1db{bottom:888.890267pt;}
.y175{bottom:889.087600pt;}
.yd{bottom:889.345333pt;}
.yb7{bottom:890.943600pt;}
.yd8{bottom:890.962267pt;}
.y192{bottom:890.988933pt;}
.yf8{bottom:891.018267pt;}
.y61{bottom:891.194267pt;}
.y42{bottom:891.210267pt;}
.y15b{bottom:894.475067pt;}
.y113{bottom:901.634267pt;}
.y9d{bottom:901.652933pt;}
.y1f9{bottom:902.774267pt;}
.y138{bottom:903.540933pt;}
.y224{bottom:909.198267pt;}
.y15a{bottom:910.475067pt;}
.y174{bottom:915.762267pt;}
.yb6{bottom:917.618267pt;}
.yd7{bottom:917.636933pt;}
.y191{bottom:917.663600pt;}
.y1b8{bottom:917.674267pt;}
.yf7{bottom:917.692933pt;}
.y60{bottom:917.868933pt;}
.y41{bottom:917.884933pt;}
.yc{bottom:919.571067pt;}
.y1f8{bottom:924.111600pt;}
.y159{bottom:926.475067pt;}
.y112{bottom:928.308933pt;}
.y9c{bottom:928.327600pt;}
.y137{bottom:930.215600pt;}
.y223{bottom:934.314267pt;}
.yb{bottom:942.244400pt;}
.y173{bottom:942.436933pt;}
.y158{bottom:942.475067pt;}
.yb5{bottom:944.292933pt;}
.y7c{bottom:944.311600pt;}
.y190{bottom:944.338267pt;}
.y1b7{bottom:944.348933pt;}
.y5f{bottom:944.543600pt;}
.y40{bottom:944.559600pt;}
.y1f7{bottom:949.227600pt;}
.y111{bottom:954.983600pt;}
.y9b{bottom:955.002267pt;}
.y222{bottom:955.651600pt;}
.y136{bottom:956.890267pt;}
.y157{bottom:958.475067pt;}
.ya{bottom:964.904400pt;}
.y1f6{bottom:970.564933pt;}
.yb4{bottom:970.967600pt;}
.y7b{bottom:970.986267pt;}
.y18f{bottom:971.012933pt;}
.y5e{bottom:971.218267pt;}
.y3f{bottom:971.234267pt;}
.y156{bottom:974.475067pt;}
.y221{bottom:976.988933pt;}
.y110{bottom:981.658267pt;}
.y9a{bottom:981.676933pt;}
.y9{bottom:987.571067pt;}
.y155{bottom:990.475067pt;}
.y1f5{bottom:995.680933pt;}
.y172{bottom:995.767600pt;}
.yb3{bottom:997.642267pt;}
.y7a{bottom:997.660933pt;}
.y5d{bottom:997.892933pt;}
.y3e{bottom:997.908933pt;}
.y220{bottom:998.326267pt;}
.y154{bottom:1006.475067pt;}
.y10f{bottom:1008.332933pt;}
.y135{bottom:1010.202267pt;}
.y1f4{bottom:1020.796933pt;}
.y171{bottom:1022.442267pt;}
.y21f{bottom:1023.442267pt;}
.yb2{bottom:1024.316933pt;}
.y18e{bottom:1024.343600pt;}
.y5c{bottom:1024.567600pt;}
.y3d{bottom:1024.583600pt;}
.y134{bottom:1030.207600pt;}
.y99{bottom:1035.007600pt;}
.y1f3{bottom:1042.134267pt;}
.y21e{bottom:1044.779600pt;}
.y170{bottom:1049.116933pt;}
.y133{bottom:1050.212933pt;}
.y79{bottom:1050.991600pt;}
.y18d{bottom:1051.018267pt;}
.y3c{bottom:1051.242267pt;}
.y98{bottom:1061.682267pt;}
.y1f2{bottom:1063.471600pt;}
.y21d{bottom:1066.116933pt;}
.y132{bottom:1070.218267pt;}
.y8{bottom:1072.623067pt;}
.y16f{bottom:1075.791600pt;}
.y78{bottom:1077.666267pt;}
.y18c{bottom:1077.692933pt;}
.y3b{bottom:1077.916933pt;}
.y21c{bottom:1087.454267pt;}
.y97{bottom:1088.356933pt;}
.y1f1{bottom:1088.587600pt;}
.y131{bottom:1090.223600pt;}
.y7{bottom:1096.623067pt;}
.y77{bottom:1104.340933pt;}
.y3a{bottom:1104.591600pt;}
.y1f0{bottom:1109.924933pt;}
.y21b{bottom:1112.570267pt;}
.y16e{bottom:1129.124933pt;}
.y76{bottom:1131.015600pt;}
.y21a{bottom:1133.907600pt;}
.y6{bottom:1138.223067pt;}
.y96{bottom:1141.680400pt;}
.y75{bottom:1157.690267pt;}
.y39{bottom:1157.924933pt;}
.y219{bottom:1159.023600pt;}
.y95{bottom:1161.685733pt;}
.y5{bottom:1181.423067pt;}
.y4{bottom:1224.623067pt;}
.y1{bottom:1228.829467pt;}
.y36{bottom:1274.477733pt;}
.y59{bottom:1274.624667pt;}
.hd{height:36.624000pt;}
.h22{height:37.760000pt;}
.hc{height:40.320000pt;}
.h21{height:40.533333pt;}
.h8{height:42.880000pt;}
.h3{height:44.762667pt;}
.h6{height:46.453333pt;}
.h12{height:47.786667pt;}
.h7{height:48.640000pt;}
.h1{height:48.832000pt;}
.h9{height:52.565333pt;}
.ha{height:52.597333pt;}
.h16{height:52.604800pt;}
.hb{height:52.650667pt;}
.h23{height:52.736000pt;}
.he{height:53.153067pt;}
.h27{height:62.122667pt;}
.h2{height:63.557333pt;}
.hf{height:66.901333pt;}
.h1f{height:66.933333pt;}
.h10{height:66.965333pt;}
.h1a{height:66.986667pt;}
.h14{height:67.061333pt;}
.h15{height:67.082667pt;}
.h11{height:67.093333pt;}
.h26{height:67.104000pt;}
.h1c{height:67.114667pt;}
.h1b{height:67.125333pt;}
.h25{height:67.157333pt;}
.h1e{height:67.168000pt;}
.h13{height:67.178667pt;}
.h24{height:67.232000pt;}
.h19{height:67.242667pt;}
.h1d{height:67.274667pt;}
.h20{height:67.306667pt;}
.h17{height:67.605333pt;}
.h18{height:67.893333pt;}
.h5{height:71.680000pt;}
.h4{height:96.480000pt;}
.h0{height:1365.333333pt;}
.w0{width:1024.000000pt;}
.x0{left:0.000000pt;}
.xa{left:10.618800pt;}
.x2{left:170.078800pt;}
.x11{left:171.300400pt;}
.x15{left:172.847067pt;}
.x25{left:175.845333pt;}
.x8{left:177.637867pt;}
.x1b{left:181.467200pt;}
.x1c{left:184.040533pt;}
.x13{left:187.953733pt;}
.x12{left:190.140400pt;}
.xc{left:192.705333pt;}
.xf{left:196.535467pt;}
.x14{left:198.300400pt;}
.x26{left:203.938667pt;}
.xe{left:239.723733pt;}
.x1d{left:252.373867pt;}
.x27{left:275.858667pt;}
.xd{left:284.308267pt;}
.x1e{left:382.356533pt;}
.x17{left:516.525333pt;}
.x16{left:519.752000pt;}
.x18{left:526.058667pt;}
.x19{left:545.952000pt;}
.x23{left:549.785467pt;}
.x20{left:551.998800pt;}
.x21{left:559.425467pt;}
.x22{left:561.465467pt;}
.x10{left:565.840667pt;}
.x7{left:575.206533pt;}
.x1f{left:593.492533pt;}
.x24{left:626.278800pt;}
.x28{left:629.007867pt;}
.x9{left:658.895200pt;}
.x4{left:662.084800pt;}
.x1a{left:663.458667pt;}
.x3{left:695.098933pt;}
.x6{left:704.866400pt;}
.x5{left:713.667467pt;}
.xb{left:732.493867pt;}
.x29{left:743.501333pt;}
.x1{left:988.085467pt;}
}

