
    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_a943e12c4bb1cd0e5894eab6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_9b086f72913acf5d2dc5cbc0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_11b70c86627694c069761482.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_c95a437f5b6638e172b58b13.woff')format("woff");}.ff5{font-family:ff5;line-height:0.699219;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_fe2e9b90197c4f9b95d7fdd3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_3113cdc1c31949aa0a701cb0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_a943e12c4bb1cd0e5894eab6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_9b086f72913acf5d2dc5cbc0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_da3f2ae7ef565b94513654ae.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_5aeff3cef211a5bc1c706ceb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_01d85f24bb1cbb411e894e91.woff')format("woff");}.ffc{font-family:ffc;line-height:1.106934;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_61787cfa4f981f258a68d361.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_9b086f72913acf5d2dc5cbc0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_4897b3de3a9d128279c4dfc3.woff')format("woff");}.fff{font-family:fff;line-height:0.893066;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_4c6a8a7c59cd15f0f652f3b3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.908203;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_e5d32a8981255149174e185a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v7{vertical-align:-3.996000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.984000px;}
.v4{vertical-align:20.579400px;}
.v6{vertical-align:24.000000px;}
.v1{vertical-align:27.971400px;}
.ls15{letter-spacing:-3.840000px;}
.ls7{letter-spacing:-2.520000px;}
.ls13{letter-spacing:-1.333088px;}
.lse{letter-spacing:-1.236000px;}
.ls8{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-1.035408px;}
.ls24{letter-spacing:-0.864000px;}
.ls6{letter-spacing:-0.420000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000300px;}
.ls12{letter-spacing:0.000600px;}
.ls1e{letter-spacing:0.004800px;}
.ls10{letter-spacing:0.007800px;}
.ls21{letter-spacing:0.008400px;}
.ls1a{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.165000px;}
.lsb{letter-spacing:0.198000px;}
.lsa{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.279840px;}
.ls18{letter-spacing:0.360294px;}
.ls4{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.480600px;}
.ls3{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.618000px;}
.ls1b{letter-spacing:0.618600px;}
.ls23{letter-spacing:1.666200px;}
.ls2{letter-spacing:1.755000px;}
.lsd{letter-spacing:1.950000px;}
.ls1f{letter-spacing:2.647800px;}
.ls0{letter-spacing:2.730000px;}
.ls22{letter-spacing:3.440400px;}
.ls26{letter-spacing:4.585200px;}
.ls25{letter-spacing:5.247000px;}
.ls19{letter-spacing:7.447800px;}
.ls11{letter-spacing:8.848800px;}
.ls27{letter-spacing:10.312800px;}
.ls1c{letter-spacing:10.473600px;}
.ls1d{letter-spacing:12.212400px;}
.ls17{letter-spacing:14.308800px;}
.ls20{letter-spacing:17.447400px;}
.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;}
}
.ws0{word-spacing:-16.665000px;}
.ws61{word-spacing:-16.500000px;}
.wsa5{word-spacing:-16.068000px;}
.ws18{word-spacing:-15.450000px;}
.ws63{word-spacing:-12.000000px;}
.wsa6{word-spacing:-9.367644px;}
.ws62{word-spacing:-9.007350px;}
.ws46{word-spacing:-8.400000px;}
.ws8d{word-spacing:-7.674262px;}
.wsbd{word-spacing:-6.996000px;}
.ws2a{word-spacing:-5.994600px;}
.ws9b{word-spacing:-5.040000px;}
.wsf4{word-spacing:-4.635000px;}
.ws157{word-spacing:-4.387800px;}
.wsea{word-spacing:-4.326000px;}
.wsc5{word-spacing:-4.264200px;}
.ws129{word-spacing:-4.080000px;}
.wsc4{word-spacing:-4.078800px;}
.wsc0{word-spacing:-3.955200px;}
.wsd9{word-spacing:-3.893400px;}
.ws55{word-spacing:-3.831600px;}
.wsd8{word-spacing:-3.584400px;}
.ws14{word-spacing:-3.504000px;}
.ws82{word-spacing:-3.460800px;}
.ws14a{word-spacing:-3.399000px;}
.ws11a{word-spacing:-3.337200px;}
.ws106{word-spacing:-3.300000px;}
.ws109{word-spacing:-3.275400px;}
.ws51{word-spacing:-3.213600px;}
.ws87{word-spacing:-3.151800px;}
.ws130{word-spacing:-3.072000px;}
.ws22{word-spacing:-3.028200px;}
.ws142{word-spacing:-2.842800px;}
.ws21{word-spacing:-2.719200px;}
.ws13{word-spacing:-2.688000px;}
.ws15d{word-spacing:-2.657400px;}
.ws9e{word-spacing:-2.640000px;}
.wsdd{word-spacing:-2.595600px;}
.ws59{word-spacing:-2.533800px;}
.ws50{word-spacing:-2.472000px;}
.ws7a{word-spacing:-2.448000px;}
.ws147{word-spacing:-2.410200px;}
.ws9a{word-spacing:-2.400000px;}
.ws110{word-spacing:-2.348400px;}
.wsb7{word-spacing:-2.304000px;}
.ws42{word-spacing:-2.286600px;}
.wsc3{word-spacing:-2.224800px;}
.ws12{word-spacing:-2.208000px;}
.ws8a{word-spacing:-2.163000px;}
.ws5d{word-spacing:-2.101200px;}
.ws79{word-spacing:-2.039400px;}
.ws3a{word-spacing:-1.977600px;}
.ws84{word-spacing:-1.915800px;}
.ws4f{word-spacing:-1.854000px;}
.ws10{word-spacing:-1.824000px;}
.ws114{word-spacing:-1.776000px;}
.wsf5{word-spacing:-1.730400px;}
.ws7d{word-spacing:-1.668600px;}
.wsbc{word-spacing:-1.632000px;}
.ws12c{word-spacing:-1.606800px;}
.wsf{word-spacing:-1.584000px;}
.ws85{word-spacing:-1.545000px;}
.ws113{word-spacing:-1.536000px;}
.ws128{word-spacing:-1.488000px;}
.ws93{word-spacing:-1.483200px;}
.ws23{word-spacing:-1.421400px;}
.ws11f{word-spacing:-1.392000px;}
.wse8{word-spacing:-1.359600px;}
.wsa4{word-spacing:-1.344000px;}
.ws6b{word-spacing:-1.297800px;}
.ws6c{word-spacing:-1.236000px;}
.ws52{word-spacing:-1.112400px;}
.ws13c{word-spacing:-1.104000px;}
.wsd4{word-spacing:-1.056000px;}
.wse1{word-spacing:-0.927000px;}
.wsa1{word-spacing:-0.912000px;}
.ws14e{word-spacing:-0.865200px;}
.wsaa{word-spacing:-0.803400px;}
.ws131{word-spacing:-0.768000px;}
.ws91{word-spacing:-0.741600px;}
.ws4b{word-spacing:-0.679800px;}
.wsa3{word-spacing:-0.672000px;}
.ws64{word-spacing:-0.660000px;}
.wsd2{word-spacing:-0.624000px;}
.wsb0{word-spacing:-0.618000px;}
.ws11c{word-spacing:-0.576000px;}
.ws2b{word-spacing:-0.556200px;}
.wsf0{word-spacing:-0.528000px;}
.ws34{word-spacing:-0.494400px;}
.wsb{word-spacing:-0.480000px;}
.wsed{word-spacing:-0.432600px;}
.ws141{word-spacing:-0.432000px;}
.wsa2{word-spacing:-0.336000px;}
.ws25{word-spacing:-0.309000px;}
.wsce{word-spacing:-0.288000px;}
.ws30{word-spacing:-0.185400px;}
.ws7f{word-spacing:-0.123600px;}
.ws1{word-spacing:-0.061800px;}
.ws98{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws11b{word-spacing:0.096000px;}
.ws4a{word-spacing:0.123600px;}
.ws8b{word-spacing:0.144000px;}
.wsef{word-spacing:0.185400px;}
.ws9f{word-spacing:0.192000px;}
.ws2c{word-spacing:0.309000px;}
.ws117{word-spacing:0.336000px;}
.ws60{word-spacing:0.432000px;}
.ws20{word-spacing:0.432600px;}
.ws11d{word-spacing:0.480000px;}
.wsf8{word-spacing:0.494400px;}
.wsbb{word-spacing:0.528000px;}
.ws10f{word-spacing:0.556200px;}
.ws116{word-spacing:0.576000px;}
.wsc7{word-spacing:0.618000px;}
.ws11e{word-spacing:0.624000px;}
.ws136{word-spacing:0.672000px;}
.ws7b{word-spacing:0.679800px;}
.ws15{word-spacing:0.720000px;}
.wsf9{word-spacing:0.741600px;}
.ws121{word-spacing:0.768000px;}
.wseb{word-spacing:0.803400px;}
.ws133{word-spacing:0.816000px;}
.wscc{word-spacing:0.864000px;}
.ws27{word-spacing:0.865200px;}
.ws83{word-spacing:0.927000px;}
.wsb2{word-spacing:0.988800px;}
.ws127{word-spacing:1.008000px;}
.ws99{word-spacing:1.035408px;}
.ws118{word-spacing:1.104000px;}
.ws143{word-spacing:1.112400px;}
.wsd6{word-spacing:1.174200px;}
.ws14b{word-spacing:1.236000px;}
.ws5b{word-spacing:1.297800px;}
.ws2f{word-spacing:1.359600px;}
.ws9c{word-spacing:1.392000px;}
.ws5a{word-spacing:1.421400px;}
.ws115{word-spacing:1.440000px;}
.ws69{word-spacing:1.483200px;}
.ws126{word-spacing:1.488000px;}
.ws13d{word-spacing:1.536000px;}
.ws72{word-spacing:1.545000px;}
.wse{word-spacing:1.584000px;}
.wscb{word-spacing:1.606800px;}
.ws16{word-spacing:1.680000px;}
.wsfc{word-spacing:1.730400px;}
.wsf1{word-spacing:1.776000px;}
.wsf6{word-spacing:1.915800px;}
.ws11{word-spacing:2.064000px;}
.wsa0{word-spacing:2.112000px;}
.ws29{word-spacing:2.163000px;}
.ws134{word-spacing:2.208000px;}
.ws8{word-spacing:2.220000px;}
.ws36{word-spacing:2.348400px;}
.ws1f{word-spacing:2.410200px;}
.ws8c{word-spacing:2.496000px;}
.ws1d{word-spacing:2.533800px;}
.ws120{word-spacing:2.544000px;}
.wsba{word-spacing:2.592000px;}
.ws108{word-spacing:2.657400px;}
.ws125{word-spacing:2.688000px;}
.wsee{word-spacing:2.719200px;}
.ws73{word-spacing:2.842800px;}
.ws1b{word-spacing:2.904600px;}
.ws103{word-spacing:2.928000px;}
.wsfd{word-spacing:2.966400px;}
.ws24{word-spacing:3.028200px;}
.ws13b{word-spacing:3.072000px;}
.wsca{word-spacing:3.090000px;}
.wsda{word-spacing:3.151800px;}
.ws88{word-spacing:3.213600px;}
.wsd0{word-spacing:3.216000px;}
.ws122{word-spacing:3.264000px;}
.ws86{word-spacing:3.275400px;}
.wsbf{word-spacing:3.337200px;}
.ws15e{word-spacing:3.399000px;}
.ws135{word-spacing:3.408000px;}
.wsb8{word-spacing:3.456000px;}
.wsc2{word-spacing:3.460800px;}
.wscd{word-spacing:3.504000px;}
.ws119{word-spacing:3.584400px;}
.wse2{word-spacing:3.600000px;}
.ws139{word-spacing:3.646200px;}
.ws5e{word-spacing:3.696000px;}
.ws38{word-spacing:3.708000px;}
.ws89{word-spacing:3.769800px;}
.wsc1{word-spacing:3.831600px;}
.ws10d{word-spacing:3.955200px;}
.ws145{word-spacing:3.984000px;}
.wsa7{word-spacing:4.017000px;}
.wsd{word-spacing:4.032000px;}
.wsf3{word-spacing:4.078800px;}
.wse0{word-spacing:4.140600px;}
.ws81{word-spacing:4.202400px;}
.wsb5{word-spacing:4.224000px;}
.ws28{word-spacing:4.264200px;}
.ws3{word-spacing:4.320000px;}
.ws49{word-spacing:4.326000px;}
.ws132{word-spacing:4.368000px;}
.ws3e{word-spacing:4.449600px;}
.ws5c{word-spacing:4.511400px;}
.wsd1{word-spacing:4.512000px;}
.wsdf{word-spacing:4.573200px;}
.wsd3{word-spacing:4.608000px;}
.ws74{word-spacing:4.635000px;}
.ws13f{word-spacing:4.656000px;}
.ws12d{word-spacing:4.696800px;}
.ws104{word-spacing:4.752000px;}
.wsa8{word-spacing:4.944000px;}
.ws44{word-spacing:5.005800px;}
.ws90{word-spacing:5.129400px;}
.ws101{word-spacing:5.184000px;}
.wse4{word-spacing:5.191200px;}
.ws9d{word-spacing:5.232000px;}
.ws4e{word-spacing:5.314800px;}
.ws151{word-spacing:5.438400px;}
.ws100{word-spacing:5.472000px;}
.ws53{word-spacing:5.500200px;}
.wsa{word-spacing:5.596800px;}
.ws12a{word-spacing:5.616000px;}
.ws97{word-spacing:5.623800px;}
.ws67{word-spacing:5.747400px;}
.wsac{word-spacing:5.809200px;}
.wsd5{word-spacing:5.871000px;}
.ws1e{word-spacing:5.932800px;}
.ws47{word-spacing:5.994600px;}
.ws102{word-spacing:6.048000px;}
.ws4c{word-spacing:6.118200px;}
.ws71{word-spacing:6.180000px;}
.ws56{word-spacing:6.241800px;}
.ws43{word-spacing:6.365400px;}
.ws144{word-spacing:6.384000px;}
.ws32{word-spacing:6.427200px;}
.ws6a{word-spacing:6.489000px;}
.wsec{word-spacing:6.612600px;}
.ws140{word-spacing:6.624000px;}
.wsd7{word-spacing:6.674400px;}
.ws148{word-spacing:6.736200px;}
.ws2e{word-spacing:6.798000px;}
.ws75{word-spacing:6.859800px;}
.wsbe{word-spacing:6.921600px;}
.ws6d{word-spacing:6.983400px;}
.ws54{word-spacing:7.045200px;}
.ws6e{word-spacing:7.168800px;}
.ws123{word-spacing:7.200000px;}
.ws105{word-spacing:7.260000px;}
.ws158{word-spacing:7.292400px;}
.ws92{word-spacing:7.416000px;}
.ws6f{word-spacing:7.477800px;}
.wsb6{word-spacing:7.680000px;}
.wsf7{word-spacing:7.725000px;}
.ws107{word-spacing:7.786800px;}
.ws2d{word-spacing:7.848600px;}
.ws10a{word-spacing:7.910400px;}
.wsc8{word-spacing:7.972200px;}
.wsae{word-spacing:8.034000px;}
.ws13e{word-spacing:8.064000px;}
.wsde{word-spacing:8.095800px;}
.ws39{word-spacing:8.219400px;}
.wsfb{word-spacing:8.281200px;}
.wsb9{word-spacing:8.304000px;}
.ws3d{word-spacing:8.404800px;}
.ws138{word-spacing:8.466600px;}
.ws7{word-spacing:8.520000px;}
.ws58{word-spacing:8.590200px;}
.ws3c{word-spacing:8.652000px;}
.wscf{word-spacing:8.736000px;}
.ws31{word-spacing:8.775600px;}
.ws5f{word-spacing:8.784000px;}
.ws66{word-spacing:8.837400px;}
.ws4{word-spacing:8.880000px;}
.ws48{word-spacing:8.961000px;}
.ws10e{word-spacing:9.084600px;}
.ws10c{word-spacing:9.146400px;}
.ws5{word-spacing:9.180000px;}
.ws78{word-spacing:9.208200px;}
.wsff{word-spacing:9.270000px;}
.ws68{word-spacing:9.393600px;}
.ws1a{word-spacing:9.455400px;}
.ws94{word-spacing:9.517200px;}
.ws159{word-spacing:9.579000px;}
.wsc{word-spacing:9.600000px;}
.ws124{word-spacing:9.744000px;}
.ws33{word-spacing:9.764400px;}
.ws152{word-spacing:9.826200px;}
.ws45{word-spacing:9.888000px;}
.ws7c{word-spacing:9.949800px;}
.wsb3{word-spacing:10.011600px;}
.wse5{word-spacing:10.135200px;}
.ws14f{word-spacing:10.197000px;}
.ws15f{word-spacing:10.320600px;}
.ws41{word-spacing:10.506000px;}
.wsdb{word-spacing:10.560000px;}
.ws95{word-spacing:10.567800px;}
.ws153{word-spacing:10.753200px;}
.ws12b{word-spacing:10.876800px;}
.ws80{word-spacing:10.938600px;}
.ws14d{word-spacing:11.371200px;}
.ws76{word-spacing:11.433000px;}
.ws7e{word-spacing:11.680200px;}
.wsb1{word-spacing:11.742000px;}
.ws77{word-spacing:11.803800px;}
.ws4d{word-spacing:11.865600px;}
.ws154{word-spacing:11.927400px;}
.ws10b{word-spacing:12.051000px;}
.wsb4{word-spacing:12.174600px;}
.wsfa{word-spacing:12.236400px;}
.ws35{word-spacing:12.298200px;}
.ws155{word-spacing:12.360000px;}
.ws6{word-spacing:12.420000px;}
.ws19{word-spacing:12.421800px;}
.ws156{word-spacing:12.483600px;}
.ws15a{word-spacing:12.545400px;}
.ws15b{word-spacing:12.669000px;}
.ws8f{word-spacing:12.730800px;}
.ws3b{word-spacing:12.854400px;}
.wse3{word-spacing:12.912000px;}
.ws13a{word-spacing:13.039800px;}
.ws150{word-spacing:13.596000px;}
.wsad{word-spacing:13.719600px;}
.ws12e{word-spacing:13.781400px;}
.wse7{word-spacing:13.905000px;}
.ws146{word-spacing:13.968000px;}
.wse9{word-spacing:14.214000px;}
.ws8e{word-spacing:14.388000px;}
.ws96{word-spacing:14.399400px;}
.wsfe{word-spacing:14.461200px;}
.wsc9{word-spacing:14.893800px;}
.ws149{word-spacing:15.079200px;}
.ws57{word-spacing:15.759000px;}
.ws9{word-spacing:15.944400px;}
.ws15c{word-spacing:16.068000px;}
.ws1c{word-spacing:16.191600px;}
.ws37{word-spacing:16.698000px;}
.ws40{word-spacing:16.809600px;}
.ws70{word-spacing:16.995000px;}
.ws112{word-spacing:17.427600px;}
.wsf2{word-spacing:18.663600px;}
.wsa9{word-spacing:18.787200px;}
.ws111{word-spacing:20.270400px;}
.ws12f{word-spacing:21.259200px;}
.ws3f{word-spacing:21.506400px;}
.wsc6{word-spacing:22.062600px;}
.ws26{word-spacing:22.309800px;}
.ws137{word-spacing:22.804200px;}
.wsab{word-spacing:23.298600px;}
.ws14c{word-spacing:24.040200px;}
.wse6{word-spacing:24.102000px;}
.wsaf{word-spacing:25.152600px;}
.wsdc{word-spacing:25.956000px;}
.ws65{word-spacing:36.462000px;}
.ws17{word-spacing:590.424000px;}
._11{margin-left:-15.434340px;}
._6{margin-left:-7.168020px;}
._8{margin-left:-5.959860px;}
._c{margin-left:-4.525140px;}
._2{margin-left:-3.270000px;}
._0{margin-left:-1.549800px;}
._1{width:1.058400px;}
._4{width:2.292780px;}
._a{width:3.442260px;}
._e{width:4.913100px;}
._f{width:6.206100px;}
._7{width:7.310940px;}
._5{width:9.035160px;}
._3{width:10.415640px;}
._d{width:12.013920px;}
._14{width:13.266480px;}
._10{width:14.398200px;}
._15{width:16.840500px;}
._12{width:18.663600px;}
._9{width:20.251860px;}
._b{width:21.502200px;}
._13{width:46.200000px;}
.fc3{color:rgb(32,33,34);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(53,53,53);}
.fc4{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:20.988000px;}
.fs8{font-size:27.984000px;}
.fsb{font-size:33.600000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y21{bottom:76.500000px;}
.y6e{bottom:76.500150px;}
.yb5{bottom:80.496000px;}
.ybc{bottom:80.496150px;}
.y47{bottom:82.588650px;}
.y20{bottom:90.000000px;}
.y8d{bottom:90.000150px;}
.ybb{bottom:90.000300px;}
.y13c{bottom:92.636100px;}
.y139{bottom:92.713800px;}
.y6d{bottom:93.996150px;}
.y46{bottom:101.128650px;}
.y1f{bottom:103.500000px;}
.y8c{bottom:103.500150px;}
.yba{bottom:103.500300px;}
.yb4{bottom:107.496000px;}
.y111{bottom:107.496150px;}
.y13b{bottom:111.176100px;}
.y138{bottom:111.253950px;}
.y1e{bottom:117.000000px;}
.y8b{bottom:117.000150px;}
.yb9{bottom:117.000300px;}
.y45{bottom:119.668650px;}
.yb3{bottom:120.996000px;}
.yea{bottom:120.996150px;}
.yde{bottom:124.676100px;}
.y6c{bottom:127.196100px;}
.y13a{bottom:129.716100px;}
.y137{bottom:129.793800px;}
.y1d{bottom:130.500000px;}
.y8a{bottom:130.500150px;}
.yb8{bottom:130.500300px;}
.y112{bottom:134.496150px;}
.y44{bottom:138.208650px;}
.ydd{bottom:143.216100px;}
.y1c{bottom:144.000000px;}
.yc6{bottom:144.000150px;}
.ye9{bottom:144.000300px;}
.y6b{bottom:145.736100px;}
.yb2{bottom:146.533950px;}
.y89{bottom:147.996150px;}
.yb7{bottom:147.996300px;}
.ye0{bottom:148.256100px;}
.y136{bottom:148.333950px;}
.y43{bottom:156.748650px;}
.y1b{bottom:157.500000px;}
.yc5{bottom:157.500150px;}
.ye8{bottom:157.500300px;}
.yb6{bottom:161.496450px;}
.ydc{bottom:161.756100px;}
.y6a{bottom:164.276100px;}
.yb1{bottom:165.073950px;}
.ydf{bottom:166.796100px;}
.y135{bottom:166.873800px;}
.y1a{bottom:171.000000px;}
.yc4{bottom:171.000150px;}
.y110{bottom:171.000300px;}
.ye1{bottom:174.996150px;}
.ye7{bottom:174.996300px;}
.y42{bottom:175.288650px;}
.ydb{bottom:180.296100px;}
.y69{bottom:182.816100px;}
.yb0{bottom:183.613950px;}
.y19{bottom:184.500000px;}
.yc3{bottom:184.500150px;}
.y10f{bottom:184.500300px;}
.ye6{bottom:184.500450px;}
.y88{bottom:185.336100px;}
.y134{bottom:185.413950px;}
.yca{bottom:188.496150px;}
.y41{bottom:193.828650px;}
.y18{bottom:198.000000px;}
.yc2{bottom:198.000150px;}
.yc9{bottom:198.000300px;}
.ye5{bottom:198.000450px;}
.yda{bottom:198.836100px;}
.y68{bottom:201.356100px;}
.yaf{bottom:202.153950px;}
.y87{bottom:203.876100px;}
.y133{bottom:203.953800px;}
.y17{bottom:211.500000px;}
.yc1{bottom:211.500150px;}
.yc8{bottom:211.500300px;}
.ye4{bottom:211.500450px;}
.y40{bottom:212.368650px;}
.y10d{bottom:215.496150px;}
.ycb{bottom:215.496300px;}
.yd9{bottom:217.376100px;}
.y67{bottom:219.896100px;}
.yae{bottom:220.693950px;}
.y86{bottom:222.416100px;}
.y132{bottom:222.493950px;}
.y104{bottom:225.000150px;}
.y10c{bottom:225.000300px;}
.ye3{bottom:225.000450px;}
.y16{bottom:228.996000px;}
.yc0{bottom:228.996150px;}
.yc7{bottom:228.996300px;}
.y3f{bottom:230.908650px;}
.yd8{bottom:235.916100px;}
.y66{bottom:238.436100px;}
.y103{bottom:238.500150px;}
.ybf{bottom:238.500300px;}
.yad{bottom:239.233950px;}
.y85{bottom:240.956100px;}
.y131{bottom:241.033800px;}
.y10b{bottom:242.496300px;}
.ye2{bottom:242.496450px;}
.y3e{bottom:249.448650px;}
.ybe{bottom:252.000300px;}
.y10a{bottom:252.000450px;}
.yd7{bottom:254.456100px;}
.y102{bottom:255.996150px;}
.y65{bottom:256.976100px;}
.yac{bottom:257.773950px;}
.y84{bottom:259.496100px;}
.y130{bottom:259.573950px;}
.y10e{bottom:265.500300px;}
.y109{bottom:265.500450px;}
.y3d{bottom:267.988650px;}
.y101{bottom:269.496150px;}
.ybd{bottom:269.496300px;}
.yd6{bottom:272.996100px;}
.y64{bottom:275.516100px;}
.yab{bottom:276.313950px;}
.y83{bottom:278.036100px;}
.y12f{bottom:278.113800px;}
.y100{bottom:279.000150px;}
.y108{bottom:282.996450px;}
.y3c{bottom:286.528650px;}
.yd5{bottom:291.536100px;}
.y107{bottom:292.500600px;}
.y63{bottom:294.056100px;}
.yaa{bottom:294.853950px;}
.y15{bottom:295.123800px;}
.yff{bottom:296.496150px;}
.y82{bottom:296.576100px;}
.y12e{bottom:296.653950px;}
.y3b{bottom:305.068650px;}
.yfe{bottom:306.000150px;}
.y106{bottom:306.000600px;}
.yd4{bottom:310.076100px;}
.y62{bottom:312.596100px;}
.ya9{bottom:313.393950px;}
.y14{bottom:313.663800px;}
.y81{bottom:315.116100px;}
.y12d{bottom:315.193800px;}
.yfd{bottom:323.496150px;}
.y105{bottom:323.496600px;}
.y3a{bottom:323.608650px;}
.yd3{bottom:328.616100px;}
.y61{bottom:331.136100px;}
.ya8{bottom:331.933950px;}
.yfc{bottom:333.000150px;}
.y80{bottom:333.656100px;}
.y12c{bottom:333.733950px;}
.y39{bottom:342.148650px;}
.yfb{bottom:346.500150px;}
.yd2{bottom:347.156100px;}
.y60{bottom:349.676100px;}
.y13{bottom:350.203800px;}
.ya7{bottom:350.473950px;}
.y7f{bottom:352.196100px;}
.y12b{bottom:352.273800px;}
.yfa{bottom:360.000150px;}
.y38{bottom:360.688650px;}
.yd1{bottom:365.696100px;}
.y12{bottom:368.203800px;}
.y5f{bottom:368.216100px;}
.ya6{bottom:369.013950px;}
.y7e{bottom:370.736100px;}
.y12a{bottom:370.813800px;}
.yf9{bottom:373.500150px;}
.y37{bottom:379.228650px;}
.yd0{bottom:384.236100px;}
.y11{bottom:386.203800px;}
.y5e{bottom:386.756100px;}
.yf8{bottom:387.000150px;}
.ya5{bottom:387.553950px;}
.y7d{bottom:389.276100px;}
.y129{bottom:389.353800px;}
.y36{bottom:397.768650px;}
.yf7{bottom:400.500150px;}
.ycf{bottom:402.776100px;}
.y10{bottom:404.203800px;}
.y5d{bottom:405.296100px;}
.ya4{bottom:406.093950px;}
.y7c{bottom:407.816100px;}
.y128{bottom:407.893800px;}
.yf6{bottom:414.000150px;}
.y35{bottom:416.308650px;}
.yce{bottom:421.316100px;}
.yf{bottom:422.203800px;}
.y5c{bottom:423.836100px;}
.ya3{bottom:424.633950px;}
.y7b{bottom:426.356100px;}
.y127{bottom:426.433800px;}
.yf5{bottom:431.496150px;}
.y34{bottom:434.848650px;}
.ye{bottom:440.203800px;}
.yf4{bottom:441.000300px;}
.y5b{bottom:442.376100px;}
.ya2{bottom:443.173950px;}
.y7a{bottom:444.896100px;}
.y126{bottom:444.973800px;}
.y33{bottom:453.388650px;}
.yf3{bottom:454.500300px;}
.yd{bottom:458.203800px;}
.ycd{bottom:458.396100px;}
.y5a{bottom:460.916100px;}
.ya1{bottom:461.713950px;}
.y79{bottom:463.436100px;}
.y125{bottom:463.513800px;}
.yf2{bottom:468.000300px;}
.y32{bottom:471.928650px;}
.ycc{bottom:478.196100px;}
.y59{bottom:479.456100px;}
.ya0{bottom:480.253950px;}
.yf1{bottom:481.500300px;}
.y78{bottom:481.976100px;}
.y124{bottom:482.053950px;}
.yc{bottom:483.703800px;}
.y31{bottom:490.468650px;}
.yf0{bottom:495.000300px;}
.y58{bottom:497.996100px;}
.y9f{bottom:498.793950px;}
.y77{bottom:500.516100px;}
.y123{bottom:500.593800px;}
.yef{bottom:508.500300px;}
.y30{bottom:509.008650px;}
.y57{bottom:516.536100px;}
.y9e{bottom:517.333950px;}
.y76{bottom:519.056100px;}
.y122{bottom:519.133800px;}
.yee{bottom:522.000300px;}
.y2f{bottom:527.548650px;}
.y56{bottom:535.076100px;}
.yed{bottom:535.500300px;}
.y9d{bottom:535.873950px;}
.y75{bottom:537.596100px;}
.y121{bottom:537.673800px;}
.yb{bottom:542.503800px;}
.y2e{bottom:546.088650px;}
.yec{bottom:549.000300px;}
.y55{bottom:553.616100px;}
.y9c{bottom:554.413950px;}
.y74{bottom:556.136100px;}
.y120{bottom:556.213950px;}
.ya{bottom:564.103800px;}
.y2d{bottom:564.628650px;}
.yeb{bottom:566.496300px;}
.y9b{bottom:572.953950px;}
.y73{bottom:574.676100px;}
.y11f{bottom:574.753950px;}
.y54{bottom:590.696100px;}
.y9a{bottom:591.493950px;}
.y72{bottom:593.216100px;}
.y11e{bottom:593.293800px;}
.y9{bottom:599.803800px;}
.y2c{bottom:601.708650px;}
.y99{bottom:610.033950px;}
.y53{bottom:610.496100px;}
.y71{bottom:611.756100px;}
.y11d{bottom:611.833800px;}
.y8{bottom:625.355700px;}
.y98{bottom:628.573950px;}
.y70{bottom:630.296100px;}
.y11c{bottom:630.373800px;}
.y97{bottom:647.113950px;}
.y6f{bottom:648.836100px;}
.y11b{bottom:648.913950px;}
.y7{bottom:652.055850px;}
.y2b{bottom:658.588650px;}
.y96{bottom:665.653950px;}
.y52{bottom:667.376100px;}
.y11a{bottom:667.453800px;}
.y2a{bottom:677.128650px;}
.y95{bottom:684.193950px;}
.y51{bottom:685.916100px;}
.y119{bottom:685.993950px;}
.y6{bottom:695.255700px;}
.y94{bottom:702.733950px;}
.y50{bottom:704.456100px;}
.y118{bottom:704.533800px;}
.y29{bottom:714.208650px;}
.y93{bottom:721.273950px;}
.y5{bottom:722.255700px;}
.y4f{bottom:722.996100px;}
.y117{bottom:723.073950px;}
.y28{bottom:732.748650px;}
.y92{bottom:739.813950px;}
.y4e{bottom:741.536100px;}
.y116{bottom:741.613800px;}
.y27{bottom:751.288650px;}
.y91{bottom:758.353950px;}
.y4d{bottom:760.076100px;}
.y115{bottom:760.153800px;}
.y26{bottom:769.828650px;}
.y4{bottom:776.255700px;}
.y90{bottom:776.893950px;}
.y4c{bottom:778.616100px;}
.y114{bottom:778.693950px;}
.y25{bottom:788.368650px;}
.y4b{bottom:797.156100px;}
.y113{bottom:797.233950px;}
.y3{bottom:803.255700px;}
.y24{bottom:806.908650px;}
.y8f{bottom:813.973950px;}
.y4a{bottom:815.696100px;}
.y23{bottom:832.948650px;}
.y8e{bottom:833.773950px;}
.y49{bottom:834.236100px;}
.y48{bottom:905.470500px;}
.y22{bottom:906.525150px;}
.hc{height:19.443961px;}
.h17{height:26.789438px;}
.h2{height:29.182617px;}
.he{height:33.328125px;}
.hd{height:33.351562px;}
.h18{height:35.427961px;}
.h7{height:37.098633px;}
.hf{height:37.520508px;}
.h9{height:41.220703px;}
.h13{height:41.660156px;}
.hb{height:42.457324px;}
.ha{height:42.608203px;}
.h16{height:42.773438px;}
.h11{height:42.940137px;}
.h14{height:44.698242px;}
.h10{height:45.181641px;}
.h6{height:45.342773px;}
.h8{height:45.503906px;}
.h15{height:45.613500px;}
.h12{height:55.070801px;}
.h5{height:57.708984px;}
.h4{height:61.615738px;}
.h19{height:66.940137px;}
.h3{height:74.197266px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x9{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x3{left:106.662900px;}
.xa{left:112.063050px;}
.xb{left:133.663050px;}
.x8{left:541.222350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v7{vertical-align:-3.552000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.208000pt;}
.v4{vertical-align:18.292800pt;}
.v6{vertical-align:21.333333pt;}
.v1{vertical-align:24.863467pt;}
.ls15{letter-spacing:-3.413333pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls13{letter-spacing:-1.184967pt;}
.lse{letter-spacing:-1.098667pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.920363pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000267pt;}
.ls12{letter-spacing:0.000533pt;}
.ls1e{letter-spacing:0.004267pt;}
.ls10{letter-spacing:0.006933pt;}
.ls21{letter-spacing:0.007467pt;}
.ls1a{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.146667pt;}
.lsb{letter-spacing:0.176000pt;}
.lsa{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.248747pt;}
.ls18{letter-spacing:0.320261pt;}
.ls4{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.427200pt;}
.ls3{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.549333pt;}
.ls1b{letter-spacing:0.549867pt;}
.ls23{letter-spacing:1.481067pt;}
.ls2{letter-spacing:1.560000pt;}
.lsd{letter-spacing:1.733333pt;}
.ls1f{letter-spacing:2.353600pt;}
.ls0{letter-spacing:2.426667pt;}
.ls22{letter-spacing:3.058133pt;}
.ls26{letter-spacing:4.075733pt;}
.ls25{letter-spacing:4.664000pt;}
.ls19{letter-spacing:6.620267pt;}
.ls11{letter-spacing:7.865600pt;}
.ls27{letter-spacing:9.166933pt;}
.ls1c{letter-spacing:9.309867pt;}
.ls1d{letter-spacing:10.855467pt;}
.ls17{letter-spacing:12.718933pt;}
.ls20{letter-spacing:15.508800pt;}
.ws0{word-spacing:-14.813333pt;}
.ws61{word-spacing:-14.666667pt;}
.wsa5{word-spacing:-14.282667pt;}
.ws18{word-spacing:-13.733333pt;}
.ws63{word-spacing:-10.666667pt;}
.wsa6{word-spacing:-8.326795pt;}
.ws62{word-spacing:-8.006533pt;}
.ws46{word-spacing:-7.466667pt;}
.ws8d{word-spacing:-6.821566pt;}
.wsbd{word-spacing:-6.218667pt;}
.ws2a{word-spacing:-5.328533pt;}
.ws9b{word-spacing:-4.480000pt;}
.wsf4{word-spacing:-4.120000pt;}
.ws157{word-spacing:-3.900267pt;}
.wsea{word-spacing:-3.845333pt;}
.wsc5{word-spacing:-3.790400pt;}
.ws129{word-spacing:-3.626667pt;}
.wsc4{word-spacing:-3.625600pt;}
.wsc0{word-spacing:-3.515733pt;}
.wsd9{word-spacing:-3.460800pt;}
.ws55{word-spacing:-3.405867pt;}
.wsd8{word-spacing:-3.186133pt;}
.ws14{word-spacing:-3.114667pt;}
.ws82{word-spacing:-3.076267pt;}
.ws14a{word-spacing:-3.021333pt;}
.ws11a{word-spacing:-2.966400pt;}
.ws106{word-spacing:-2.933333pt;}
.ws109{word-spacing:-2.911467pt;}
.ws51{word-spacing:-2.856533pt;}
.ws87{word-spacing:-2.801600pt;}
.ws130{word-spacing:-2.730667pt;}
.ws22{word-spacing:-2.691733pt;}
.ws142{word-spacing:-2.526933pt;}
.ws21{word-spacing:-2.417067pt;}
.ws13{word-spacing:-2.389333pt;}
.ws15d{word-spacing:-2.362133pt;}
.ws9e{word-spacing:-2.346667pt;}
.wsdd{word-spacing:-2.307200pt;}
.ws59{word-spacing:-2.252267pt;}
.ws50{word-spacing:-2.197333pt;}
.ws7a{word-spacing:-2.176000pt;}
.ws147{word-spacing:-2.142400pt;}
.ws9a{word-spacing:-2.133333pt;}
.ws110{word-spacing:-2.087467pt;}
.wsb7{word-spacing:-2.048000pt;}
.ws42{word-spacing:-2.032533pt;}
.wsc3{word-spacing:-1.977600pt;}
.ws12{word-spacing:-1.962667pt;}
.ws8a{word-spacing:-1.922667pt;}
.ws5d{word-spacing:-1.867733pt;}
.ws79{word-spacing:-1.812800pt;}
.ws3a{word-spacing:-1.757867pt;}
.ws84{word-spacing:-1.702933pt;}
.ws4f{word-spacing:-1.648000pt;}
.ws10{word-spacing:-1.621333pt;}
.ws114{word-spacing:-1.578667pt;}
.wsf5{word-spacing:-1.538133pt;}
.ws7d{word-spacing:-1.483200pt;}
.wsbc{word-spacing:-1.450667pt;}
.ws12c{word-spacing:-1.428267pt;}
.wsf{word-spacing:-1.408000pt;}
.ws85{word-spacing:-1.373333pt;}
.ws113{word-spacing:-1.365333pt;}
.ws128{word-spacing:-1.322667pt;}
.ws93{word-spacing:-1.318400pt;}
.ws23{word-spacing:-1.263467pt;}
.ws11f{word-spacing:-1.237333pt;}
.wse8{word-spacing:-1.208533pt;}
.wsa4{word-spacing:-1.194667pt;}
.ws6b{word-spacing:-1.153600pt;}
.ws6c{word-spacing:-1.098667pt;}
.ws52{word-spacing:-0.988800pt;}
.ws13c{word-spacing:-0.981333pt;}
.wsd4{word-spacing:-0.938667pt;}
.wse1{word-spacing:-0.824000pt;}
.wsa1{word-spacing:-0.810667pt;}
.ws14e{word-spacing:-0.769067pt;}
.wsaa{word-spacing:-0.714133pt;}
.ws131{word-spacing:-0.682667pt;}
.ws91{word-spacing:-0.659200pt;}
.ws4b{word-spacing:-0.604267pt;}
.wsa3{word-spacing:-0.597333pt;}
.ws64{word-spacing:-0.586667pt;}
.wsd2{word-spacing:-0.554667pt;}
.wsb0{word-spacing:-0.549333pt;}
.ws11c{word-spacing:-0.512000pt;}
.ws2b{word-spacing:-0.494400pt;}
.wsf0{word-spacing:-0.469333pt;}
.ws34{word-spacing:-0.439467pt;}
.wsb{word-spacing:-0.426667pt;}
.wsed{word-spacing:-0.384533pt;}
.ws141{word-spacing:-0.384000pt;}
.wsa2{word-spacing:-0.298667pt;}
.ws25{word-spacing:-0.274667pt;}
.wsce{word-spacing:-0.256000pt;}
.ws30{word-spacing:-0.164800pt;}
.ws7f{word-spacing:-0.109867pt;}
.ws1{word-spacing:-0.054933pt;}
.ws98{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws11b{word-spacing:0.085333pt;}
.ws4a{word-spacing:0.109867pt;}
.ws8b{word-spacing:0.128000pt;}
.wsef{word-spacing:0.164800pt;}
.ws9f{word-spacing:0.170667pt;}
.ws2c{word-spacing:0.274667pt;}
.ws117{word-spacing:0.298667pt;}
.ws60{word-spacing:0.384000pt;}
.ws20{word-spacing:0.384533pt;}
.ws11d{word-spacing:0.426667pt;}
.wsf8{word-spacing:0.439467pt;}
.wsbb{word-spacing:0.469333pt;}
.ws10f{word-spacing:0.494400pt;}
.ws116{word-spacing:0.512000pt;}
.wsc7{word-spacing:0.549333pt;}
.ws11e{word-spacing:0.554667pt;}
.ws136{word-spacing:0.597333pt;}
.ws7b{word-spacing:0.604267pt;}
.ws15{word-spacing:0.640000pt;}
.wsf9{word-spacing:0.659200pt;}
.ws121{word-spacing:0.682667pt;}
.wseb{word-spacing:0.714133pt;}
.ws133{word-spacing:0.725333pt;}
.wscc{word-spacing:0.768000pt;}
.ws27{word-spacing:0.769067pt;}
.ws83{word-spacing:0.824000pt;}
.wsb2{word-spacing:0.878933pt;}
.ws127{word-spacing:0.896000pt;}
.ws99{word-spacing:0.920363pt;}
.ws118{word-spacing:0.981333pt;}
.ws143{word-spacing:0.988800pt;}
.wsd6{word-spacing:1.043733pt;}
.ws14b{word-spacing:1.098667pt;}
.ws5b{word-spacing:1.153600pt;}
.ws2f{word-spacing:1.208533pt;}
.ws9c{word-spacing:1.237333pt;}
.ws5a{word-spacing:1.263467pt;}
.ws115{word-spacing:1.280000pt;}
.ws69{word-spacing:1.318400pt;}
.ws126{word-spacing:1.322667pt;}
.ws13d{word-spacing:1.365333pt;}
.ws72{word-spacing:1.373333pt;}
.wse{word-spacing:1.408000pt;}
.wscb{word-spacing:1.428267pt;}
.ws16{word-spacing:1.493333pt;}
.wsfc{word-spacing:1.538133pt;}
.wsf1{word-spacing:1.578667pt;}
.wsf6{word-spacing:1.702933pt;}
.ws11{word-spacing:1.834667pt;}
.wsa0{word-spacing:1.877333pt;}
.ws29{word-spacing:1.922667pt;}
.ws134{word-spacing:1.962667pt;}
.ws8{word-spacing:1.973333pt;}
.ws36{word-spacing:2.087467pt;}
.ws1f{word-spacing:2.142400pt;}
.ws8c{word-spacing:2.218667pt;}
.ws1d{word-spacing:2.252267pt;}
.ws120{word-spacing:2.261333pt;}
.wsba{word-spacing:2.304000pt;}
.ws108{word-spacing:2.362133pt;}
.ws125{word-spacing:2.389333pt;}
.wsee{word-spacing:2.417067pt;}
.ws73{word-spacing:2.526933pt;}
.ws1b{word-spacing:2.581867pt;}
.ws103{word-spacing:2.602667pt;}
.wsfd{word-spacing:2.636800pt;}
.ws24{word-spacing:2.691733pt;}
.ws13b{word-spacing:2.730667pt;}
.wsca{word-spacing:2.746667pt;}
.wsda{word-spacing:2.801600pt;}
.ws88{word-spacing:2.856533pt;}
.wsd0{word-spacing:2.858667pt;}
.ws122{word-spacing:2.901333pt;}
.ws86{word-spacing:2.911467pt;}
.wsbf{word-spacing:2.966400pt;}
.ws15e{word-spacing:3.021333pt;}
.ws135{word-spacing:3.029333pt;}
.wsb8{word-spacing:3.072000pt;}
.wsc2{word-spacing:3.076267pt;}
.wscd{word-spacing:3.114667pt;}
.ws119{word-spacing:3.186133pt;}
.wse2{word-spacing:3.200000pt;}
.ws139{word-spacing:3.241067pt;}
.ws5e{word-spacing:3.285333pt;}
.ws38{word-spacing:3.296000pt;}
.ws89{word-spacing:3.350933pt;}
.wsc1{word-spacing:3.405867pt;}
.ws10d{word-spacing:3.515733pt;}
.ws145{word-spacing:3.541333pt;}
.wsa7{word-spacing:3.570667pt;}
.wsd{word-spacing:3.584000pt;}
.wsf3{word-spacing:3.625600pt;}
.wse0{word-spacing:3.680533pt;}
.ws81{word-spacing:3.735467pt;}
.wsb5{word-spacing:3.754667pt;}
.ws28{word-spacing:3.790400pt;}
.ws3{word-spacing:3.840000pt;}
.ws49{word-spacing:3.845333pt;}
.ws132{word-spacing:3.882667pt;}
.ws3e{word-spacing:3.955200pt;}
.ws5c{word-spacing:4.010133pt;}
.wsd1{word-spacing:4.010667pt;}
.wsdf{word-spacing:4.065067pt;}
.wsd3{word-spacing:4.096000pt;}
.ws74{word-spacing:4.120000pt;}
.ws13f{word-spacing:4.138667pt;}
.ws12d{word-spacing:4.174933pt;}
.ws104{word-spacing:4.224000pt;}
.wsa8{word-spacing:4.394667pt;}
.ws44{word-spacing:4.449600pt;}
.ws90{word-spacing:4.559467pt;}
.ws101{word-spacing:4.608000pt;}
.wse4{word-spacing:4.614400pt;}
.ws9d{word-spacing:4.650667pt;}
.ws4e{word-spacing:4.724267pt;}
.ws151{word-spacing:4.834133pt;}
.ws100{word-spacing:4.864000pt;}
.ws53{word-spacing:4.889067pt;}
.wsa{word-spacing:4.974933pt;}
.ws12a{word-spacing:4.992000pt;}
.ws97{word-spacing:4.998933pt;}
.ws67{word-spacing:5.108800pt;}
.wsac{word-spacing:5.163733pt;}
.wsd5{word-spacing:5.218667pt;}
.ws1e{word-spacing:5.273600pt;}
.ws47{word-spacing:5.328533pt;}
.ws102{word-spacing:5.376000pt;}
.ws4c{word-spacing:5.438400pt;}
.ws71{word-spacing:5.493333pt;}
.ws56{word-spacing:5.548267pt;}
.ws43{word-spacing:5.658133pt;}
.ws144{word-spacing:5.674667pt;}
.ws32{word-spacing:5.713067pt;}
.ws6a{word-spacing:5.768000pt;}
.wsec{word-spacing:5.877867pt;}
.ws140{word-spacing:5.888000pt;}
.wsd7{word-spacing:5.932800pt;}
.ws148{word-spacing:5.987733pt;}
.ws2e{word-spacing:6.042667pt;}
.ws75{word-spacing:6.097600pt;}
.wsbe{word-spacing:6.152533pt;}
.ws6d{word-spacing:6.207467pt;}
.ws54{word-spacing:6.262400pt;}
.ws6e{word-spacing:6.372267pt;}
.ws123{word-spacing:6.400000pt;}
.ws105{word-spacing:6.453333pt;}
.ws158{word-spacing:6.482133pt;}
.ws92{word-spacing:6.592000pt;}
.ws6f{word-spacing:6.646933pt;}
.wsb6{word-spacing:6.826667pt;}
.wsf7{word-spacing:6.866667pt;}
.ws107{word-spacing:6.921600pt;}
.ws2d{word-spacing:6.976533pt;}
.ws10a{word-spacing:7.031467pt;}
.wsc8{word-spacing:7.086400pt;}
.wsae{word-spacing:7.141333pt;}
.ws13e{word-spacing:7.168000pt;}
.wsde{word-spacing:7.196267pt;}
.ws39{word-spacing:7.306133pt;}
.wsfb{word-spacing:7.361067pt;}
.wsb9{word-spacing:7.381333pt;}
.ws3d{word-spacing:7.470933pt;}
.ws138{word-spacing:7.525867pt;}
.ws7{word-spacing:7.573333pt;}
.ws58{word-spacing:7.635733pt;}
.ws3c{word-spacing:7.690667pt;}
.wscf{word-spacing:7.765333pt;}
.ws31{word-spacing:7.800533pt;}
.ws5f{word-spacing:7.808000pt;}
.ws66{word-spacing:7.855467pt;}
.ws4{word-spacing:7.893333pt;}
.ws48{word-spacing:7.965333pt;}
.ws10e{word-spacing:8.075200pt;}
.ws10c{word-spacing:8.130133pt;}
.ws5{word-spacing:8.160000pt;}
.ws78{word-spacing:8.185067pt;}
.wsff{word-spacing:8.240000pt;}
.ws68{word-spacing:8.349867pt;}
.ws1a{word-spacing:8.404800pt;}
.ws94{word-spacing:8.459733pt;}
.ws159{word-spacing:8.514667pt;}
.wsc{word-spacing:8.533333pt;}
.ws124{word-spacing:8.661333pt;}
.ws33{word-spacing:8.679467pt;}
.ws152{word-spacing:8.734400pt;}
.ws45{word-spacing:8.789333pt;}
.ws7c{word-spacing:8.844267pt;}
.wsb3{word-spacing:8.899200pt;}
.wse5{word-spacing:9.009067pt;}
.ws14f{word-spacing:9.064000pt;}
.ws15f{word-spacing:9.173867pt;}
.ws41{word-spacing:9.338667pt;}
.wsdb{word-spacing:9.386667pt;}
.ws95{word-spacing:9.393600pt;}
.ws153{word-spacing:9.558400pt;}
.ws12b{word-spacing:9.668267pt;}
.ws80{word-spacing:9.723200pt;}
.ws14d{word-spacing:10.107733pt;}
.ws76{word-spacing:10.162667pt;}
.ws7e{word-spacing:10.382400pt;}
.wsb1{word-spacing:10.437333pt;}
.ws77{word-spacing:10.492267pt;}
.ws4d{word-spacing:10.547200pt;}
.ws154{word-spacing:10.602133pt;}
.ws10b{word-spacing:10.712000pt;}
.wsb4{word-spacing:10.821867pt;}
.wsfa{word-spacing:10.876800pt;}
.ws35{word-spacing:10.931733pt;}
.ws155{word-spacing:10.986667pt;}
.ws6{word-spacing:11.040000pt;}
.ws19{word-spacing:11.041600pt;}
.ws156{word-spacing:11.096533pt;}
.ws15a{word-spacing:11.151467pt;}
.ws15b{word-spacing:11.261333pt;}
.ws8f{word-spacing:11.316267pt;}
.ws3b{word-spacing:11.426133pt;}
.wse3{word-spacing:11.477333pt;}
.ws13a{word-spacing:11.590933pt;}
.ws150{word-spacing:12.085333pt;}
.wsad{word-spacing:12.195200pt;}
.ws12e{word-spacing:12.250133pt;}
.wse7{word-spacing:12.360000pt;}
.ws146{word-spacing:12.416000pt;}
.wse9{word-spacing:12.634667pt;}
.ws8e{word-spacing:12.789333pt;}
.ws96{word-spacing:12.799467pt;}
.wsfe{word-spacing:12.854400pt;}
.wsc9{word-spacing:13.238933pt;}
.ws149{word-spacing:13.403733pt;}
.ws57{word-spacing:14.008000pt;}
.ws9{word-spacing:14.172800pt;}
.ws15c{word-spacing:14.282667pt;}
.ws1c{word-spacing:14.392533pt;}
.ws37{word-spacing:14.842667pt;}
.ws40{word-spacing:14.941867pt;}
.ws70{word-spacing:15.106667pt;}
.ws112{word-spacing:15.491200pt;}
.wsf2{word-spacing:16.589867pt;}
.wsa9{word-spacing:16.699733pt;}
.ws111{word-spacing:18.018133pt;}
.ws12f{word-spacing:18.897067pt;}
.ws3f{word-spacing:19.116800pt;}
.wsc6{word-spacing:19.611200pt;}
.ws26{word-spacing:19.830933pt;}
.ws137{word-spacing:20.270400pt;}
.wsab{word-spacing:20.709867pt;}
.ws14c{word-spacing:21.369067pt;}
.wse6{word-spacing:21.424000pt;}
.wsaf{word-spacing:22.357867pt;}
.wsdc{word-spacing:23.072000pt;}
.ws65{word-spacing:32.410667pt;}
.ws17{word-spacing:524.821333pt;}
._11{margin-left:-13.719413pt;}
._6{margin-left:-6.371573pt;}
._8{margin-left:-5.297653pt;}
._c{margin-left:-4.022347pt;}
._2{margin-left:-2.906667pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.940800pt;}
._4{width:2.038027pt;}
._a{width:3.059787pt;}
._e{width:4.367200pt;}
._f{width:5.516533pt;}
._7{width:6.498613pt;}
._5{width:8.031253pt;}
._3{width:9.258347pt;}
._d{width:10.679040pt;}
._14{width:11.792427pt;}
._10{width:12.798400pt;}
._15{width:14.969333pt;}
._12{width:16.589867pt;}
._9{width:18.001653pt;}
._b{width:19.113067pt;}
._13{width:41.066667pt;}
.fsc{font-size:18.656000pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:29.866667pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y21{bottom:68.000000pt;}
.y6e{bottom:68.000133pt;}
.yb5{bottom:71.552000pt;}
.ybc{bottom:71.552133pt;}
.y47{bottom:73.412133pt;}
.y20{bottom:80.000000pt;}
.y8d{bottom:80.000133pt;}
.ybb{bottom:80.000267pt;}
.y13c{bottom:82.343200pt;}
.y139{bottom:82.412267pt;}
.y6d{bottom:83.552133pt;}
.y46{bottom:89.892133pt;}
.y1f{bottom:92.000000pt;}
.y8c{bottom:92.000133pt;}
.yba{bottom:92.000267pt;}
.yb4{bottom:95.552000pt;}
.y111{bottom:95.552133pt;}
.y13b{bottom:98.823200pt;}
.y138{bottom:98.892400pt;}
.y1e{bottom:104.000000pt;}
.y8b{bottom:104.000133pt;}
.yb9{bottom:104.000267pt;}
.y45{bottom:106.372133pt;}
.yb3{bottom:107.552000pt;}
.yea{bottom:107.552133pt;}
.yde{bottom:110.823200pt;}
.y6c{bottom:113.063200pt;}
.y13a{bottom:115.303200pt;}
.y137{bottom:115.372267pt;}
.y1d{bottom:116.000000pt;}
.y8a{bottom:116.000133pt;}
.yb8{bottom:116.000267pt;}
.y112{bottom:119.552133pt;}
.y44{bottom:122.852133pt;}
.ydd{bottom:127.303200pt;}
.y1c{bottom:128.000000pt;}
.yc6{bottom:128.000133pt;}
.ye9{bottom:128.000267pt;}
.y6b{bottom:129.543200pt;}
.yb2{bottom:130.252400pt;}
.y89{bottom:131.552133pt;}
.yb7{bottom:131.552267pt;}
.ye0{bottom:131.783200pt;}
.y136{bottom:131.852400pt;}
.y43{bottom:139.332133pt;}
.y1b{bottom:140.000000pt;}
.yc5{bottom:140.000133pt;}
.ye8{bottom:140.000267pt;}
.yb6{bottom:143.552400pt;}
.ydc{bottom:143.783200pt;}
.y6a{bottom:146.023200pt;}
.yb1{bottom:146.732400pt;}
.ydf{bottom:148.263200pt;}
.y135{bottom:148.332267pt;}
.y1a{bottom:152.000000pt;}
.yc4{bottom:152.000133pt;}
.y110{bottom:152.000267pt;}
.ye1{bottom:155.552133pt;}
.ye7{bottom:155.552267pt;}
.y42{bottom:155.812133pt;}
.ydb{bottom:160.263200pt;}
.y69{bottom:162.503200pt;}
.yb0{bottom:163.212400pt;}
.y19{bottom:164.000000pt;}
.yc3{bottom:164.000133pt;}
.y10f{bottom:164.000267pt;}
.ye6{bottom:164.000400pt;}
.y88{bottom:164.743200pt;}
.y134{bottom:164.812400pt;}
.yca{bottom:167.552133pt;}
.y41{bottom:172.292133pt;}
.y18{bottom:176.000000pt;}
.yc2{bottom:176.000133pt;}
.yc9{bottom:176.000267pt;}
.ye5{bottom:176.000400pt;}
.yda{bottom:176.743200pt;}
.y68{bottom:178.983200pt;}
.yaf{bottom:179.692400pt;}
.y87{bottom:181.223200pt;}
.y133{bottom:181.292267pt;}
.y17{bottom:188.000000pt;}
.yc1{bottom:188.000133pt;}
.yc8{bottom:188.000267pt;}
.ye4{bottom:188.000400pt;}
.y40{bottom:188.772133pt;}
.y10d{bottom:191.552133pt;}
.ycb{bottom:191.552267pt;}
.yd9{bottom:193.223200pt;}
.y67{bottom:195.463200pt;}
.yae{bottom:196.172400pt;}
.y86{bottom:197.703200pt;}
.y132{bottom:197.772400pt;}
.y104{bottom:200.000133pt;}
.y10c{bottom:200.000267pt;}
.ye3{bottom:200.000400pt;}
.y16{bottom:203.552000pt;}
.yc0{bottom:203.552133pt;}
.yc7{bottom:203.552267pt;}
.y3f{bottom:205.252133pt;}
.yd8{bottom:209.703200pt;}
.y66{bottom:211.943200pt;}
.y103{bottom:212.000133pt;}
.ybf{bottom:212.000267pt;}
.yad{bottom:212.652400pt;}
.y85{bottom:214.183200pt;}
.y131{bottom:214.252267pt;}
.y10b{bottom:215.552267pt;}
.ye2{bottom:215.552400pt;}
.y3e{bottom:221.732133pt;}
.ybe{bottom:224.000267pt;}
.y10a{bottom:224.000400pt;}
.yd7{bottom:226.183200pt;}
.y102{bottom:227.552133pt;}
.y65{bottom:228.423200pt;}
.yac{bottom:229.132400pt;}
.y84{bottom:230.663200pt;}
.y130{bottom:230.732400pt;}
.y10e{bottom:236.000267pt;}
.y109{bottom:236.000400pt;}
.y3d{bottom:238.212133pt;}
.y101{bottom:239.552133pt;}
.ybd{bottom:239.552267pt;}
.yd6{bottom:242.663200pt;}
.y64{bottom:244.903200pt;}
.yab{bottom:245.612400pt;}
.y83{bottom:247.143200pt;}
.y12f{bottom:247.212267pt;}
.y100{bottom:248.000133pt;}
.y108{bottom:251.552400pt;}
.y3c{bottom:254.692133pt;}
.yd5{bottom:259.143200pt;}
.y107{bottom:260.000533pt;}
.y63{bottom:261.383200pt;}
.yaa{bottom:262.092400pt;}
.y15{bottom:262.332267pt;}
.yff{bottom:263.552133pt;}
.y82{bottom:263.623200pt;}
.y12e{bottom:263.692400pt;}
.y3b{bottom:271.172133pt;}
.yfe{bottom:272.000133pt;}
.y106{bottom:272.000533pt;}
.yd4{bottom:275.623200pt;}
.y62{bottom:277.863200pt;}
.ya9{bottom:278.572400pt;}
.y14{bottom:278.812267pt;}
.y81{bottom:280.103200pt;}
.y12d{bottom:280.172267pt;}
.yfd{bottom:287.552133pt;}
.y105{bottom:287.552533pt;}
.y3a{bottom:287.652133pt;}
.yd3{bottom:292.103200pt;}
.y61{bottom:294.343200pt;}
.ya8{bottom:295.052400pt;}
.yfc{bottom:296.000133pt;}
.y80{bottom:296.583200pt;}
.y12c{bottom:296.652400pt;}
.y39{bottom:304.132133pt;}
.yfb{bottom:308.000133pt;}
.yd2{bottom:308.583200pt;}
.y60{bottom:310.823200pt;}
.y13{bottom:311.292267pt;}
.ya7{bottom:311.532400pt;}
.y7f{bottom:313.063200pt;}
.y12b{bottom:313.132267pt;}
.yfa{bottom:320.000133pt;}
.y38{bottom:320.612133pt;}
.yd1{bottom:325.063200pt;}
.y12{bottom:327.292267pt;}
.y5f{bottom:327.303200pt;}
.ya6{bottom:328.012400pt;}
.y7e{bottom:329.543200pt;}
.y12a{bottom:329.612267pt;}
.yf9{bottom:332.000133pt;}
.y37{bottom:337.092133pt;}
.yd0{bottom:341.543200pt;}
.y11{bottom:343.292267pt;}
.y5e{bottom:343.783200pt;}
.yf8{bottom:344.000133pt;}
.ya5{bottom:344.492400pt;}
.y7d{bottom:346.023200pt;}
.y129{bottom:346.092267pt;}
.y36{bottom:353.572133pt;}
.yf7{bottom:356.000133pt;}
.ycf{bottom:358.023200pt;}
.y10{bottom:359.292267pt;}
.y5d{bottom:360.263200pt;}
.ya4{bottom:360.972400pt;}
.y7c{bottom:362.503200pt;}
.y128{bottom:362.572267pt;}
.yf6{bottom:368.000133pt;}
.y35{bottom:370.052133pt;}
.yce{bottom:374.503200pt;}
.yf{bottom:375.292267pt;}
.y5c{bottom:376.743200pt;}
.ya3{bottom:377.452400pt;}
.y7b{bottom:378.983200pt;}
.y127{bottom:379.052267pt;}
.yf5{bottom:383.552133pt;}
.y34{bottom:386.532133pt;}
.ye{bottom:391.292267pt;}
.yf4{bottom:392.000267pt;}
.y5b{bottom:393.223200pt;}
.ya2{bottom:393.932400pt;}
.y7a{bottom:395.463200pt;}
.y126{bottom:395.532267pt;}
.y33{bottom:403.012133pt;}
.yf3{bottom:404.000267pt;}
.yd{bottom:407.292267pt;}
.ycd{bottom:407.463200pt;}
.y5a{bottom:409.703200pt;}
.ya1{bottom:410.412400pt;}
.y79{bottom:411.943200pt;}
.y125{bottom:412.012267pt;}
.yf2{bottom:416.000267pt;}
.y32{bottom:419.492133pt;}
.ycc{bottom:425.063200pt;}
.y59{bottom:426.183200pt;}
.ya0{bottom:426.892400pt;}
.yf1{bottom:428.000267pt;}
.y78{bottom:428.423200pt;}
.y124{bottom:428.492400pt;}
.yc{bottom:429.958933pt;}
.y31{bottom:435.972133pt;}
.yf0{bottom:440.000267pt;}
.y58{bottom:442.663200pt;}
.y9f{bottom:443.372400pt;}
.y77{bottom:444.903200pt;}
.y123{bottom:444.972267pt;}
.yef{bottom:452.000267pt;}
.y30{bottom:452.452133pt;}
.y57{bottom:459.143200pt;}
.y9e{bottom:459.852400pt;}
.y76{bottom:461.383200pt;}
.y122{bottom:461.452267pt;}
.yee{bottom:464.000267pt;}
.y2f{bottom:468.932133pt;}
.y56{bottom:475.623200pt;}
.yed{bottom:476.000267pt;}
.y9d{bottom:476.332400pt;}
.y75{bottom:477.863200pt;}
.y121{bottom:477.932267pt;}
.yb{bottom:482.225600pt;}
.y2e{bottom:485.412133pt;}
.yec{bottom:488.000267pt;}
.y55{bottom:492.103200pt;}
.y9c{bottom:492.812400pt;}
.y74{bottom:494.343200pt;}
.y120{bottom:494.412400pt;}
.ya{bottom:501.425600pt;}
.y2d{bottom:501.892133pt;}
.yeb{bottom:503.552267pt;}
.y9b{bottom:509.292400pt;}
.y73{bottom:510.823200pt;}
.y11f{bottom:510.892400pt;}
.y54{bottom:525.063200pt;}
.y9a{bottom:525.772400pt;}
.y72{bottom:527.303200pt;}
.y11e{bottom:527.372267pt;}
.y9{bottom:533.158933pt;}
.y2c{bottom:534.852133pt;}
.y99{bottom:542.252400pt;}
.y53{bottom:542.663200pt;}
.y71{bottom:543.783200pt;}
.y11d{bottom:543.852267pt;}
.y8{bottom:555.871733pt;}
.y98{bottom:558.732400pt;}
.y70{bottom:560.263200pt;}
.y11c{bottom:560.332267pt;}
.y97{bottom:575.212400pt;}
.y6f{bottom:576.743200pt;}
.y11b{bottom:576.812400pt;}
.y7{bottom:579.605200pt;}
.y2b{bottom:585.412133pt;}
.y96{bottom:591.692400pt;}
.y52{bottom:593.223200pt;}
.y11a{bottom:593.292267pt;}
.y2a{bottom:601.892133pt;}
.y95{bottom:608.172400pt;}
.y51{bottom:609.703200pt;}
.y119{bottom:609.772400pt;}
.y6{bottom:618.005067pt;}
.y94{bottom:624.652400pt;}
.y50{bottom:626.183200pt;}
.y118{bottom:626.252267pt;}
.y29{bottom:634.852133pt;}
.y93{bottom:641.132400pt;}
.y5{bottom:642.005067pt;}
.y4f{bottom:642.663200pt;}
.y117{bottom:642.732400pt;}
.y28{bottom:651.332133pt;}
.y92{bottom:657.612400pt;}
.y4e{bottom:659.143200pt;}
.y116{bottom:659.212267pt;}
.y27{bottom:667.812133pt;}
.y91{bottom:674.092400pt;}
.y4d{bottom:675.623200pt;}
.y115{bottom:675.692267pt;}
.y26{bottom:684.292133pt;}
.y4{bottom:690.005067pt;}
.y90{bottom:690.572400pt;}
.y4c{bottom:692.103200pt;}
.y114{bottom:692.172400pt;}
.y25{bottom:700.772133pt;}
.y4b{bottom:708.583200pt;}
.y113{bottom:708.652400pt;}
.y3{bottom:714.005067pt;}
.y24{bottom:717.252133pt;}
.y8f{bottom:723.532400pt;}
.y4a{bottom:725.063200pt;}
.y23{bottom:740.398800pt;}
.y8e{bottom:741.132400pt;}
.y49{bottom:741.543200pt;}
.y48{bottom:804.862667pt;}
.y22{bottom:805.800133pt;}
.hc{height:17.283521pt;}
.h17{height:23.812833pt;}
.h2{height:25.940104pt;}
.he{height:29.625000pt;}
.hd{height:29.645833pt;}
.h18{height:31.491521pt;}
.h7{height:32.976562pt;}
.hf{height:33.351562pt;}
.h9{height:36.640625pt;}
.h13{height:37.031250pt;}
.hb{height:37.739844pt;}
.ha{height:37.873958pt;}
.h16{height:38.020833pt;}
.h11{height:38.169010pt;}
.h14{height:39.731771pt;}
.h10{height:40.161458pt;}
.h6{height:40.304688pt;}
.h8{height:40.447917pt;}
.h15{height:40.545333pt;}
.h12{height:48.951823pt;}
.h5{height:51.296875pt;}
.h4{height:54.769545pt;}
.h19{height:59.502344pt;}
.h3{height:65.953125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x9{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x3{left:94.811467pt;}
.xa{left:99.611600pt;}
.xb{left:118.811600pt;}
.x8{left:481.086533pt;}
}

