
    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_604adce79aa376764b0b140c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_51ec0042010173ea7e7af289.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_a70e3d9f8d294885bcbdc306.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b9c05a4ef8690f1a6a82b150.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e1c146bbf334d60084494747.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5fe51642ffc0cc06721416bb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_d0cbad8e29689ccdbbf02a0c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_82b341ffbf75dfb4586a749d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_1ec9371e50f7f8654916ec53.woff')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_d5340fbe2e54e6a5427fcda7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.239258;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_c2c797fe424e4eaea00af40c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_a94144c21eb6b76e7179a01a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_8adea66789d076450b0b975a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.841000;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_96df185816ba37137b68b4a6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942000;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_fec4954a4f1dc02e792530f0.woff')format("woff");}.fff{font-family:fff;line-height:0.731000;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_62e99194350447121f7695e1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.930000;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_3a4bfdd42298dc94e276c2b8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.207623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207623,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);-ms-transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,0);-webkit-transform:matrix(0.246585,0.000000,-0.041180,0.246585,0,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);}
.m2{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:-46.539840px;}
.v2{vertical-align:-23.760960px;}
.v3{vertical-align:-21.600000px;}
.v4{vertical-align:-19.441380px;}
.v7{vertical-align:-10.080480px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.445314px;}
.v1{vertical-align:23.758620px;}
.ls1a{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.006312px;}
.ls26{letter-spacing:0.008652px;}
.ls2d{letter-spacing:0.008791px;}
.ls2e{letter-spacing:0.009331px;}
.ls28{letter-spacing:0.010992px;}
.lsd{letter-spacing:0.062002px;}
.ls2a{letter-spacing:0.195841px;}
.ls15{letter-spacing:0.196364px;}
.ls22{letter-spacing:0.234567px;}
.ls44{letter-spacing:0.254645px;}
.ls45{letter-spacing:0.297656px;}
.ls2f{letter-spacing:0.329099px;}
.ls43{letter-spacing:0.352076px;}
.ls1d{letter-spacing:0.392700px;}
.ls5{letter-spacing:0.757642px;}
.ls7{letter-spacing:1.602070px;}
.ls30{letter-spacing:2.528587px;}
.ls8{letter-spacing:2.601035px;}
.ls39{letter-spacing:2.728710px;}
.ls32{letter-spacing:2.731050px;}
.ls0{letter-spacing:2.764633px;}
.lsa{letter-spacing:2.827418px;}
.ls18{letter-spacing:2.839410px;}
.lsb{letter-spacing:2.843855px;}
.ls9{letter-spacing:2.926045px;}
.ls2{letter-spacing:2.997027px;}
.ls1{letter-spacing:3.020238px;}
.lsc{letter-spacing:3.041161px;}
.ls13{letter-spacing:3.082980px;}
.ls2b{letter-spacing:3.115047px;}
.ls16{letter-spacing:3.141779px;}
.ls6{letter-spacing:3.207676px;}
.ls14{letter-spacing:3.399126px;}
.ls1f{letter-spacing:3.448290px;}
.ls1c{letter-spacing:4.170150px;}
.ls24{letter-spacing:8.115361px;}
.ls3d{letter-spacing:8.837281px;}
.ls17{letter-spacing:10.995721px;}
.ls35{letter-spacing:11.715121px;}
.ls19{letter-spacing:12.659940px;}
.ls3{letter-spacing:13.844078px;}
.ls1b{letter-spacing:14.250630px;}
.ls4{letter-spacing:14.563598px;}
.ls47{letter-spacing:14.576040px;}
.ls42{letter-spacing:14.576400px;}
.ls46{letter-spacing:14.579640px;}
.ls20{letter-spacing:14.595721px;}
.ls40{letter-spacing:14.751120px;}
.ls23{letter-spacing:14.970150px;}
.ls41{letter-spacing:15.295080px;}
.ls3f{letter-spacing:15.302280px;}
.ls2c{letter-spacing:15.316350px;}
.ls1e{letter-spacing:16.037521px;}
.ls3b{letter-spacing:17.607242px;}
.ls37{letter-spacing:17.672700px;}
.ls38{letter-spacing:18.570150px;}
.ls3c{letter-spacing:19.112700px;}
.ls3e{letter-spacing:19.289670px;}
.ls12{letter-spacing:19.806667px;}
.lsf{letter-spacing:20.006850px;}
.ls21{letter-spacing:20.009190px;}
.ls10{letter-spacing:20.728710px;}
.ls31{letter-spacing:21.207239px;}
.ls11{letter-spacing:21.245767px;}
.lse{letter-spacing:21.450630px;}
.ls29{letter-spacing:22.170150px;}
.ls3a{letter-spacing:23.432700px;}
.ls33{letter-spacing:24.331050px;}
.ls34{letter-spacing:25.050630px;}
.ls36{letter-spacing:26.489670px;}
.ls27{letter-spacing:769.042282px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws67{word-spacing:-35.477460px;}
.ws23{word-spacing:-34.560029px;}
.wsbb{word-spacing:-31.679972px;}
.wsc1{word-spacing:-31.382316px;}
.ws7f{word-spacing:-24.502409px;}
.ws6b{word-spacing:-21.796382px;}
.ws14{word-spacing:-21.320606px;}
.ws81{word-spacing:-18.376838px;}
.wsc{word-spacing:-18.279445px;}
.ws37{word-spacing:-17.932800px;}
.ws54{word-spacing:-17.539862px;}
.ws3f{word-spacing:-16.363650px;}
.ws19{word-spacing:-15.924280px;}
.ws20{word-spacing:-14.943960px;}
.wsf{word-spacing:-14.623556px;}
.ws55{word-spacing:-13.154897px;}
.ws24{word-spacing:-13.090890px;}
.ws4{word-spacing:-11.955165px;}
.ws5{word-spacing:-10.759650px;}
.ws9e{word-spacing:-3.729996px;}
.ws60{word-spacing:-3.010453px;}
.ws4b{word-spacing:-2.945457px;}
.wsb8{word-spacing:-2.526575px;}
.ws8e{word-spacing:-2.422737px;}
.ws4a{word-spacing:-2.291369px;}
.ws28{word-spacing:-2.290911px;}
.ws50{word-spacing:-2.225456px;}
.wsae{word-spacing:-2.042062px;}
.ws82{word-spacing:-2.040568px;}
.wsa7{word-spacing:-1.884852px;}
.wsc2{word-spacing:-1.807819px;}
.ws33{word-spacing:-1.766751px;}
.wsc0{word-spacing:-1.730511px;}
.wsa4{word-spacing:-1.730212px;}
.wsb7{word-spacing:-1.616022px;}
.ws66{word-spacing:-1.571369px;}
.ws86{word-spacing:-1.506372px;}
.ws29{word-spacing:-1.505914px;}
.wsbd{word-spacing:-1.476284px;}
.wsc4{word-spacing:-1.475806px;}
.wsb2{word-spacing:-1.475746px;}
.ws48{word-spacing:-1.440459px;}
.ws43{word-spacing:-1.440394px;}
.wsb4{word-spacing:-1.322540px;}
.ws90{word-spacing:-1.321225px;}
.wsb9{word-spacing:-1.320628px;}
.ws57{word-spacing:-1.164912px;}
.ws9f{word-spacing:-1.164852px;}
.ws1f{word-spacing:-1.088877px;}
.wsb1{word-spacing:-1.088180px;}
.ws1d{word-spacing:-1.087920px;}
.wsb3{word-spacing:-1.087525px;}
.wsbf{word-spacing:-1.087442px;}
.wsbc{word-spacing:-1.086622px;}
.wsab{word-spacing:-1.067290px;}
.ws39{word-spacing:-0.981361px;}
.ws46{word-spacing:-0.981295px;}
.wsa8{word-spacing:-0.912993px;}
.wsa3{word-spacing:-0.912051px;}
.wsad{word-spacing:-0.911880px;}
.wsac{word-spacing:-0.911870px;}
.wsc3{word-spacing:-0.910924px;}
.ws52{word-spacing:-0.851826px;}
.ws42{word-spacing:-0.786372px;}
.ws3a{word-spacing:-0.784997px;}
.ws93{word-spacing:-0.784735px;}
.wsbe{word-spacing:-0.757240px;}
.ws21{word-spacing:-0.602122px;}
.wsa1{word-spacing:-0.601704px;}
.wsaa{word-spacing:-0.601524px;}
.ws1b{word-spacing:-0.558970px;}
.wsa6{word-spacing:-0.502117px;}
.wsb0{word-spacing:-0.502057px;}
.ws56{word-spacing:-0.445390px;}
.wsb6{word-spacing:-0.443477px;}
.wsa2{word-spacing:-0.369140px;}
.wsaf{word-spacing:-0.368936px;}
.wsa5{word-spacing:-0.368863px;}
.ws1e{word-spacing:-0.368817px;}
.wsc5{word-spacing:-0.368757px;}
.ws1c{word-spacing:-0.368399px;}
.wsba{word-spacing:-0.191276px;}
.wsc6{word-spacing:-0.191202px;}
.ws31{word-spacing:-0.130386px;}
.ws3d{word-spacing:-0.129993px;}
.ws83{word-spacing:-0.101284px;}
.ws16{word-spacing:-0.099586px;}
.ws6c{word-spacing:-0.065455px;}
.ws3b{word-spacing:-0.064931px;}
.ws62{word-spacing:-0.064538px;}
.ws36{word-spacing:0.000000px;}
.ws47{word-spacing:0.000851px;}
.ws35{word-spacing:0.134902px;}
.ws1a{word-spacing:0.160175px;}
.ws18{word-spacing:0.160241px;}
.ws17{word-spacing:0.160636px;}
.ws65{word-spacing:0.243886px;}
.wsa0{word-spacing:0.276523px;}
.wsb5{word-spacing:0.351123px;}
.ws6{word-spacing:0.460029px;}
.ws7{word-spacing:0.460890px;}
.ws51{word-spacing:0.589550px;}
.ws9c{word-spacing:0.654546px;}
.ws61{word-spacing:0.654939px;}
.ws5d{word-spacing:0.655004px;}
.ws73{word-spacing:0.720393px;}
.ws8b{word-spacing:0.720459px;}
.ws58{word-spacing:0.837964px;}
.ws53{word-spacing:1.309092px;}
.ws85{word-spacing:1.374416px;}
.ws2b{word-spacing:1.374547px;}
.ws84{word-spacing:1.376635px;}
.ws34{word-spacing:1.412312px;}
.ws87{word-spacing:1.439871px;}
.ws25{word-spacing:1.439936px;}
.ws45{word-spacing:1.440001px;}
.ws32{word-spacing:1.832663px;}
.ws75{word-spacing:2.028176px;}
.ws4e{word-spacing:2.028634px;}
.ws8d{word-spacing:2.093958px;}
.ws44{word-spacing:2.094089px;}
.ws77{word-spacing:2.159020px;}
.ws9b{word-spacing:2.159478px;}
.ws5c{word-spacing:2.617202px;}
.ws49{word-spacing:2.748177px;}
.ws74{word-spacing:2.750075px;}
.ws12{word-spacing:2.761643px;}
.ws76{word-spacing:2.812844px;}
.ws89{word-spacing:2.813631px;}
.ws26{word-spacing:2.815530px;}
.ws4d{word-spacing:2.879086px;}
.ws1{word-spacing:2.940613px;}
.ws69{word-spacing:3.469617px;}
.ws41{word-spacing:3.470010px;}
.ws8c{word-spacing:3.534551px;}
.ws97{word-spacing:3.535072px;}
.ws5e{word-spacing:3.535465px;}
.ws8a{word-spacing:3.600854px;}
.ws4c{word-spacing:3.735668px;}
.ws9d{word-spacing:4.058709px;}
.ws40{word-spacing:4.189553px;}
.ws10{word-spacing:4.200722px;}
.ws6a{word-spacing:4.254549px;}
.ws96{word-spacing:4.254942px;}
.ws2d{word-spacing:4.255007px;}
.ws94{word-spacing:4.320396px;}
.ws22{word-spacing:4.321140px;}
.wsa9{word-spacing:4.380648px;}
.ws15{word-spacing:4.480174px;}
.ws5b{word-spacing:4.712862px;}
.ws6e{word-spacing:4.778186px;}
.ws2c{word-spacing:4.909095px;}
.ws27{word-spacing:4.974550px;}
.ws5a{word-spacing:5.039939px;}
.ws7e{word-spacing:5.431750px;}
.ws6d{word-spacing:5.628179px;}
.ws64{word-spacing:5.628637px;}
.ws95{word-spacing:5.693634px;}
.ws72{word-spacing:5.694092px;}
.ws2{word-spacing:6.078245px;}
.ws0{word-spacing:6.078388px;}
.ws3{word-spacing:6.079346px;}
.ws7d{word-spacing:6.348180px;}
.ws30{word-spacing:6.349947px;}
.ws2f{word-spacing:6.413634px;}
.ws78{word-spacing:6.479089px;}
.ws6f{word-spacing:6.479154px;}
.ws9a{word-spacing:6.754670px;}
.ws79{word-spacing:7.069424px;}
.ws70{word-spacing:7.070013px;}
.ws71{word-spacing:7.135010px;}
.ws91{word-spacing:7.135075px;}
.ws2e{word-spacing:7.135468px;}
.wsa{word-spacing:7.157969px;}
.ws99{word-spacing:7.476523px;}
.ws3e{word-spacing:7.789556px;}
.wsb{word-spacing:7.812406px;}
.ws4f{word-spacing:7.854552px;}
.ws88{word-spacing:7.854945px;}
.wsd{word-spacing:7.877538px;}
.ws92{word-spacing:7.920399px;}
.ws68{word-spacing:7.920465px;}
.ws11{word-spacing:7.955706px;}
.ws63{word-spacing:8.509098px;}
.ws7a{word-spacing:8.574553px;}
.ws13{word-spacing:8.597243px;}
.wse{word-spacing:8.610000px;}
.ws59{word-spacing:8.639942px;}
.ws2a{word-spacing:9.228640px;}
.ws5f{word-spacing:9.294095px;}
.ws9{word-spacing:10.128941px;}
.ws7b{word-spacing:10.670016px;}
.ws7c{word-spacing:11.193326px;}
.ws8{word-spacing:11.655141px;}
.ws38{word-spacing:49.548478px;}
.ws3c{word-spacing:54.202247px;}
.ws8f{word-spacing:162.856184px;}
.ws98{word-spacing:164.798255px;}
.ws80{word-spacing:687.366570px;}
._22{margin-left:-26.247153px;}
._32{margin-left:-23.057233px;}
._27{margin-left:-8.840422px;}
._15{margin-left:-7.351295px;}
._21{margin-left:-6.350720px;}
._a{margin-left:-5.225571px;}
._4{margin-left:-3.526503px;}
._2{margin-left:-1.568200px;}
._3{width:1.632647px;}
._0{width:2.912546px;}
._5{width:3.943064px;}
._9{width:7.850637px;}
._28{width:9.633811px;}
._e{width:11.507108px;}
._11{width:13.473057px;}
._23{width:14.785265px;}
._b{width:15.809907px;}
._d{width:16.887287px;}
._1d{width:17.929916px;}
._1{width:19.075860px;}
._c{width:20.222860px;}
._1f{width:21.330096px;}
._7{width:22.490650px;}
._6{width:23.563505px;}
._f{width:25.526658px;}
._12{width:27.486029px;}
._8{width:29.391610px;}
._20{width:30.432394px;}
._2e{width:31.674718px;}
._10{width:33.096774px;}
._13{width:34.120366px;}
._29{width:36.455960px;}
._24{width:38.604586px;}
._1e{width:39.897811px;}
._30{width:41.322447px;}
._31{width:42.795368px;}
._2a{width:43.970174px;}
._14{width:45.148811px;}
._2b{width:46.601601px;}
._2c{width:51.964047px;}
._18{width:65.912128px;}
._26{width:72.135047px;}
._2d{width:178.769013px;}
._2f{width:180.019509px;}
._25{width:181.067178px;}
._16{width:697.583435px;}
._1b{width:1584.283887px;}
._1a{width:1691.536296px;}
._19{width:2047.155550px;}
._17{width:2085.967876px;}
._1c{width:2127.992439px;}
.fc4{color:transparent;}
.fc3{color:rgb(61,184,67);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(191,191,191);}
.fs15{font-size:40.545720px;}
.fsb{font-size:41.843100px;}
.fs4{font-size:43.038600px;}
.fs8{font-size:44.234040px;}
.fs1c{font-size:45.719940px;}
.fs1f{font-size:46.265340px;}
.fse{font-size:46.538520px;}
.fs14{font-size:47.303280px;}
.fs2{font-size:47.820660px;}
.fsa{font-size:52.363560px;}
.fs6{font-size:52.602720px;}
.fs3{font-size:53.798280px;}
.fs13{font-size:54.060900px;}
.fs1b{font-size:57.149940px;}
.fs17{font-size:57.788760px;}
.fs1e{font-size:57.831660px;}
.fs1{font-size:59.775840px;}
.fs11{font-size:62.051400px;}
.fs9{font-size:65.454600px;}
.fs1a{font-size:65.483400px;}
.fs5{font-size:65.753400px;}
.fs1d{font-size:66.264600px;}
.fsd{font-size:66.361230px;}
.fsc{font-size:71.731200px;}
.fs19{font-size:72.235800px;}
.fsf{font-size:82.735200px;}
.fs18{font-size:86.683200px;}
.fs10{font-size:91.008600px;}
.fs7{font-size:101.618400px;}
.fs12{font-size:103.419000px;}
.fs16{font-size:115.577400px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.533500px;}
.yc0{bottom:4.092000px;}
.yeb{bottom:4.141500px;}
.ya5{bottom:7.224000px;}
.y50{bottom:7.256370px;}
.y71{bottom:10.173000px;}
.y4f{bottom:21.217500px;}
.yec{bottom:21.918000px;}
.yc1{bottom:25.167000px;}
.yee{bottom:31.560000px;}
.yc3{bottom:34.696500px;}
.y4e{bottom:35.992500px;}
.y70{bottom:54.923175px;}
.y9e{bottom:61.217250px;}
.y6f{bottom:69.114000px;}
.yef{bottom:83.616450px;}
.y51{bottom:86.217000px;}
.y47{bottom:92.669550px;}
.ybe{bottom:92.669700px;}
.y9a{bottom:92.669850px;}
.y24{bottom:92.669889px;}
.y132{bottom:92.670000px;}
.ye9{bottom:92.670150px;}
.y6c{bottom:92.670300px;}
.y23{bottom:93.029655px;}
.y76{bottom:101.286000px;}
.y52{bottom:102.160500px;}
.yc4{bottom:103.276950px;}
.ya0{bottom:109.553700px;}
.y6e{bottom:112.705500px;}
.y75{bottom:115.476000px;}
.ya1{bottom:132.430500px;}
.yf0{bottom:135.663000px;}
.ya6{bottom:137.123400px;}
.y4d{bottom:141.580500px;}
.y73{bottom:143.082675px;}
.y74{bottom:150.741000px;}
.y9f{bottom:152.894850px;}
.ya7{bottom:152.895150px;}
.y72{bottom:157.273500px;}
.yc5{bottom:172.817250px;}
.y46{bottom:181.229250px;}
.ybd{bottom:181.229400px;}
.y6b{bottom:181.229550px;}
.ye8{bottom:181.229850px;}
.y12a{bottom:181.230000px;}
.y22{bottom:186.090000px;}
.yf1{bottom:187.709550px;}
.y4c{bottom:194.779500px;}
.ya2{bottom:196.540200px;}
.y129{bottom:200.850000px;}
.y45{bottom:203.549400px;}
.ybc{bottom:203.549550px;}
.y6a{bottom:203.549700px;}
.ye7{bottom:203.550000px;}
.y4a{bottom:209.258370px;}
.y49{bottom:223.219500px;}
.y44{bottom:225.869550px;}
.ybb{bottom:225.869700px;}
.y99{bottom:225.869850px;}
.ye6{bottom:227.310300px;}
.y128{bottom:229.650000px;}
.ya4{bottom:232.657950px;}
.yf2{bottom:238.794450px;}
.yc6{bottom:242.348100px;}
.y69{bottom:243.509400px;}
.y97{bottom:248.189850px;}
.y98{bottom:248.190000px;}
.y43{bottom:248.909850px;}
.y21{bottom:248.910000px;}
.y127{bottom:249.270000px;}
.ye5{bottom:249.629850px;}
.ya3{bottom:254.328900px;}
.ycd{bottom:255.385500px;}
.yfa{bottom:264.348000px;}
.y9c{bottom:268.776000px;}
.y96{bottom:270.510000px;}
.y42{bottom:271.229400px;}
.y20{bottom:271.229550px;}
.ye4{bottom:271.950000px;}
.y126{bottom:278.070000px;}
.ycc{bottom:282.546000px;}
.y9d{bottom:286.835250px;}
.yf3{bottom:290.841450px;}
.yf9{bottom:291.832500px;}
.y95{bottom:293.010000px;}
.y94{bottom:293.010450px;}
.y41{bottom:293.549550px;}
.y68{bottom:293.910000px;}
.ye2{bottom:294.449850px;}
.ye3{bottom:294.450000px;}
.y4b{bottom:294.966000px;}
.y125{bottom:297.690000px;}
.ycb{bottom:309.688500px;}
.yc7{bottom:310.919250px;}
.yba{bottom:315.329550px;}
.y93{bottom:315.329700px;}
.y40{bottom:315.869700px;}
.y67{bottom:316.410000px;}
.ye0{bottom:316.769850px;}
.ye1{bottom:316.770000px;}
.y1f{bottom:317.489850px;}
.yed{bottom:318.354000px;}
.yf8{bottom:319.299000px;}
.yc2{bottom:324.861000px;}
.y124{bottom:326.490300px;}
.yca{bottom:336.838500px;}
.yb9{bottom:337.649700px;}
.y92{bottom:337.649850px;}
.y3f{bottom:338.369700px;}
.y66{bottom:338.729550px;}
.ydf{bottom:339.090000px;}
.yde{bottom:339.090300px;}
.y1e{bottom:339.810000px;}
.yf4{bottom:342.888450px;}
.y123{bottom:346.110450px;}
.yf7{bottom:346.771500px;}
.y90{bottom:359.969850px;}
.y91{bottom:359.970000px;}
.y3e{bottom:360.689850px;}
.y65{bottom:361.049700px;}
.ydd{bottom:361.410450px;}
.y1d{bottom:362.310000px;}
.yc9{bottom:363.970500px;}
.yf6{bottom:374.229000px;}
.y122{bottom:374.910450px;}
.yc8{bottom:380.468250px;}
.yb8{bottom:382.289850px;}
.y8f{bottom:382.290000px;}
.y3d{bottom:383.010300px;}
.y64{bottom:383.369850px;}
.ydc{bottom:383.730000px;}
.y1c{bottom:384.629550px;}
.y121{bottom:394.530000px;}
.yf5{bottom:394.935000px;}
.yb7{bottom:404.789850px;}
.y106{bottom:404.790000px;}
.y3c{bottom:405.329850px;}
.y63{bottom:405.690000px;}
.yda{bottom:406.229700px;}
.ydb{bottom:406.230000px;}
.y1b{bottom:406.949700px;}
.y8e{bottom:409.829700px;}
.y120{bottom:423.330000px;}
.yb6{bottom:427.109850px;}
.y105{bottom:427.110150px;}
.y3b{bottom:427.649700px;}
.y62{bottom:428.189850px;}
.yd9{bottom:428.549850px;}
.y1a{bottom:429.269850px;}
.y8d{bottom:432.149850px;}
.y11f{bottom:442.950000px;}
.yb5{bottom:449.429400px;}
.y104{bottom:449.429700px;}
.y3a{bottom:450.149700px;}
.y61{bottom:450.510000px;}
.yd8{bottom:450.870000px;}
.y19{bottom:451.590000px;}
.y8c{bottom:454.470000px;}
.yb4{bottom:471.749550px;}
.y103{bottom:471.749850px;}
.y11e{bottom:471.750000px;}
.y60{bottom:472.829550px;}
.y39{bottom:473.010000px;}
.yd7{bottom:473.190150px;}
.y18{bottom:474.090000px;}
.y8b{bottom:476.969700px;}
.y11d{bottom:491.370000px;}
.yb3{bottom:494.069700px;}
.y102{bottom:494.070000px;}
.y5f{bottom:495.149700px;}
.y38{bottom:495.510000px;}
.y37{bottom:495.510150px;}
.yd6{bottom:495.510300px;}
.y17{bottom:496.410150px;}
.y8a{bottom:499.289850px;}
.yb2{bottom:516.569700px;}
.y101{bottom:516.570000px;}
.y5e{bottom:517.469850px;}
.y36{bottom:517.829700px;}
.yd5{bottom:518.010300px;}
.y16{bottom:518.729700px;}
.y11c{bottom:520.169550px;}
.y89{bottom:521.610000px;}
.y88{bottom:521.610150px;}
.yb1{bottom:538.889850px;}
.y100{bottom:538.890150px;}
.y11b{bottom:539.789700px;}
.y5d{bottom:539.969850px;}
.y35{bottom:540.149850px;}
.yd4{bottom:540.329850px;}
.y15{bottom:541.049850px;}
.y87{bottom:543.929700px;}
.yb0{bottom:561.209400px;}
.yff{bottom:561.209700px;}
.y5c{bottom:562.290000px;}
.y33{bottom:562.469850px;}
.y34{bottom:562.470000px;}
.yd3{bottom:562.649700px;}
.y14{bottom:563.370000px;}
.y86{bottom:566.249850px;}
.y11a{bottom:578.309250px;}
.yaf{bottom:583.529550px;}
.yfe{bottom:583.529850px;}
.y5b{bottom:584.609550px;}
.y32{bottom:584.789850px;}
.yd2{bottom:584.969850px;}
.y85{bottom:588.749850px;}
.yae{bottom:605.849700px;}
.yfd{bottom:605.849850px;}
.y5a{bottom:606.929700px;}
.y31{bottom:607.289850px;}
.yd1{bottom:607.290000px;}
.y13{bottom:608.190405px;}
.y84{bottom:611.069700px;}
.yad{bottom:628.349700px;}
.y59{bottom:629.249850px;}
.y30{bottom:629.609400px;}
.yd0{bottom:629.790150px;}
.y83{bottom:633.389850px;}
.y119{bottom:633.929400px;}
.y12{bottom:640.950105px;}
.yac{bottom:650.669850px;}
.y58{bottom:651.749850px;}
.y2f{bottom:651.929550px;}
.y118{bottom:656.429400px;}
.y82{bottom:660.929550px;}
.y11{bottom:666.150105px;}
.yab{bottom:672.990300px;}
.y56{bottom:674.069850px;}
.y57{bottom:674.070000px;}
.y2e{bottom:674.249700px;}
.yfc{bottom:674.970000px;}
.y117{bottom:678.749550px;}
.ycf{bottom:682.170000px;}
.y10{bottom:682.709805px;}
.y81{bottom:683.249700px;}
.yfb{bottom:694.770000px;}
.yaa{bottom:695.309850px;}
.y55{bottom:696.390000px;}
.y2d{bottom:696.569850px;}
.yce{bottom:701.970000px;}
.y80{bottom:705.569850px;}
.yf{bottom:707.909805px;}
.y2c{bottom:719.069850px;}
.y116{bottom:720.689850px;}
.ye{bottom:724.470105px;}
.y7f{bottom:727.890000px;}
.yea{bottom:729.510000px;}
.y54{bottom:736.349700px;}
.ybf{bottom:736.530000px;}
.ya9{bottom:743.730000px;}
.yd{bottom:749.490255px;}
.y7e{bottom:750.209550px;}
.y2b{bottom:760.290000px;}
.yc{bottom:771.270150px;}
.y7d{bottom:772.709550px;}
.y115{bottom:776.489850px;}
.y53{bottom:786.390000px;}
.y7c{bottom:795.029700px;}
.yb{bottom:795.750000px;}
.y114{bottom:798.809400px;}
.ya8{bottom:799.530000px;}
.y113{bottom:821.129550px;}
.y7b{bottom:822.390150px;}
.y48{bottom:823.650000px;}
.y9b{bottom:836.790000px;}
.y112{bottom:843.449700px;}
.y7a{bottom:844.709700px;}
.y111{bottom:865.949700px;}
.y79{bottom:867.209700px;}
.y2a{bottom:875.850000px;}
.ya{bottom:888.090600px;}
.y110{bottom:888.269850px;}
.y10f{bottom:910.590000px;}
.y29{bottom:915.990000px;}
.y78{bottom:926.970000px;}
.y1{bottom:930.000000px;}
.y10e{bottom:932.909550px;}
.y131{bottom:955.049850px;}
.y28{bottom:955.950000px;}
.y9{bottom:961.350300px;}
.y6d{bottom:964.230000px;}
.y130{bottom:974.849850px;}
.y10d{bottom:975.029700px;}
.y8{bottom:983.670450px;}
.y27{bottom:995.910000px;}
.y12f{bottom:1003.470000px;}
.y7{bottom:1005.990600px;}
.y12e{bottom:1023.269850px;}
.y10c{bottom:1030.649850px;}
.y26{bottom:1036.049850px;}
.y6{bottom:1038.750300px;}
.y12d{bottom:1051.890000px;}
.y10b{bottom:1052.970000px;}
.y5{bottom:1056.930150px;}
.y12c{bottom:1071.690450px;}
.y4{bottom:1074.930150px;}
.y10a{bottom:1075.470000px;}
.y109{bottom:1075.470300px;}
.y25{bottom:1077.270000px;}
.y3{bottom:1093.110000px;}
.y108{bottom:1097.790450px;}
.y12b{bottom:1100.310000px;}
.y107{bottom:1120.110000px;}
.y2{bottom:1121.010000px;}
.h23{height:29.233464px;}
.h2c{height:32.003958px;}
.h30{height:32.385738px;}
.h18{height:33.554273px;}
.h22{height:34.011058px;}
.h21{height:34.105665px;}
.h1b{height:36.999587px;}
.h20{height:38.977909px;}
.he{height:41.066714px;}
.h2b{height:41.205107px;}
.h26{height:41.665696px;}
.h2f{height:41.696627px;}
.ha{height:43.391693px;}
.hf{height:46.933363px;}
.h2a{height:47.213531px;}
.h2e{height:47.776777px;}
.h28{height:52.082012px;}
.h3{height:52.800070px;}
.hb{height:58.637531px;}
.h2{height:58.666718px;}
.h10{height:58.667762px;}
.h19{height:59.652079px;}
.h32{height:60.241639px;}
.h1d{height:60.242839px;}
.h33{height:60.243439px;}
.h31{height:60.244639px;}
.h15{height:61.468386px;}
.h27{height:62.498587px;}
.hc{height:64.208150px;}
.hd{height:64.240110px;}
.h14{height:64.240710px;}
.h16{height:64.241310px;}
.h1e{height:64.241910px;}
.h1a{height:65.617201px;}
.h13{height:65.965964px;}
.h12{height:65.966564px;}
.h5{height:68.578741px;}
.h9{height:70.668633px;}
.h7{height:70.670973px;}
.h4{height:70.691983px;}
.h8{height:70.694323px;}
.h11{height:72.291600px;}
.h1c{height:74.565099px;}
.h25{height:83.331305px;}
.h6{height:105.984816px;}
.h1f{height:171.897000px;}
.h1{height:176.572266px;}
.h24{height:298.927500px;}
.h17{height:312.279000px;}
.h29{height:399.726000px;}
.h2d{height:407.037000px;}
.h0{height:1263.000000px;}
.w1{width:382.035000px;}
.w2{width:382.300500px;}
.w5{width:594.181800px;}
.w4{width:594.193800px;}
.w3{width:641.426850px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x21{left:3.379500px;}
.x23{left:6.955500px;}
.x19{left:10.600500px;}
.x3c{left:13.702800px;}
.x14{left:19.272000px;}
.x4b{left:20.605875px;}
.x25{left:26.455500px;}
.x4a{left:29.286540px;}
.x18{left:32.187840px;}
.x48{left:35.064300px;}
.x49{left:36.996300px;}
.x3b{left:41.667300px;}
.x3d{left:43.576800px;}
.x15{left:61.809000px;}
.x17{left:63.263640px;}
.x34{left:111.964950px;}
.x1a{left:120.051000px;}
.x6{left:125.280540px;}
.x56{left:127.260000px;}
.xb{left:128.340240px;}
.x8{left:130.679670px;}
.x55{left:134.818440px;}
.x9{left:136.979670px;}
.xa{left:143.279850px;}
.x39{left:148.859700px;}
.x10{left:155.519250px;}
.x22{left:160.494000px;}
.x4e{left:176.400000px;}
.x38{left:187.200000px;}
.x35{left:197.690550px;}
.x36{left:212.326095px;}
.x3e{left:215.236800px;}
.x32{left:216.707400px;}
.x24{left:233.560500px;}
.x12{left:255.060000px;}
.x16{left:259.075500px;}
.x13{left:264.246000px;}
.x7{left:269.099940px;}
.x51{left:275.580000px;}
.x4d{left:280.440000px;}
.x3f{left:281.520000px;}
.x52{left:286.380000px;}
.x26{left:297.540000px;}
.x1b{left:316.800000px;}
.x37{left:323.255850px;}
.x27{left:330.120000px;}
.x28{left:340.920000px;}
.x42{left:342.000000px;}
.x2f{left:350.100000px;}
.x30{left:360.900000px;}
.x53{left:362.160000px;}
.x20{left:370.989000px;}
.x54{left:372.960000px;}
.x2b{left:374.760000px;}
.x2c{left:385.560000px;}
.x31{left:406.327350px;}
.x2{left:412.200000px;}
.xc{left:420.661500px;}
.x4c{left:422.514300px;}
.x11{left:430.020930px;}
.xd{left:431.461500px;}
.x45{left:472.320000px;}
.x46{left:488.880000px;}
.x47{left:498.030300px;}
.x3a{left:500.344800px;}
.x33{left:509.262900px;}
.x4f{left:532.800000px;}
.x50{left:543.600000px;}
.x40{left:549.720000px;}
.x41{left:560.520000px;}
.x3{left:594.540240px;}
.x5{left:597.779910px;}
.x2d{left:601.380000px;}
.x2e{left:612.180000px;}
.x4{left:614.520210px;}
.x1c{left:628.380000px;}
.x1d{left:639.180000px;}
.x43{left:669.238500px;}
.x44{left:680.038500px;}
.xe{left:701.820000px;}
.xf{left:712.620000px;}
.x1e{left:727.380000px;}
.x1f{left:738.180000px;}
.x29{left:744.120000px;}
.x2a{left:754.920000px;}
.x1{left:825.000000px;}
@media print{
.v5{vertical-align:-41.368747pt;}
.v2{vertical-align:-21.120853pt;}
.v3{vertical-align:-19.200000pt;}
.v4{vertical-align:-17.281227pt;}
.v7{vertical-align:-8.960427pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.062501pt;}
.v1{vertical-align:21.118773pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.005611pt;}
.ls26{letter-spacing:0.007691pt;}
.ls2d{letter-spacing:0.007814pt;}
.ls2e{letter-spacing:0.008294pt;}
.ls28{letter-spacing:0.009771pt;}
.lsd{letter-spacing:0.055113pt;}
.ls2a{letter-spacing:0.174081pt;}
.ls15{letter-spacing:0.174546pt;}
.ls22{letter-spacing:0.208504pt;}
.ls44{letter-spacing:0.226351pt;}
.ls45{letter-spacing:0.264583pt;}
.ls2f{letter-spacing:0.292533pt;}
.ls43{letter-spacing:0.312956pt;}
.ls1d{letter-spacing:0.349067pt;}
.ls5{letter-spacing:0.673459pt;}
.ls7{letter-spacing:1.424062pt;}
.ls30{letter-spacing:2.247633pt;}
.ls8{letter-spacing:2.312031pt;}
.ls39{letter-spacing:2.425520pt;}
.ls32{letter-spacing:2.427600pt;}
.ls0{letter-spacing:2.457452pt;}
.lsa{letter-spacing:2.513260pt;}
.ls18{letter-spacing:2.523920pt;}
.lsb{letter-spacing:2.527871pt;}
.ls9{letter-spacing:2.600929pt;}
.ls2{letter-spacing:2.664024pt;}
.ls1{letter-spacing:2.684656pt;}
.lsc{letter-spacing:2.703254pt;}
.ls13{letter-spacing:2.740427pt;}
.ls2b{letter-spacing:2.768930pt;}
.ls16{letter-spacing:2.792692pt;}
.ls6{letter-spacing:2.851268pt;}
.ls14{letter-spacing:3.021446pt;}
.ls1f{letter-spacing:3.065147pt;}
.ls1c{letter-spacing:3.706800pt;}
.ls24{letter-spacing:7.213654pt;}
.ls3d{letter-spacing:7.855361pt;}
.ls17{letter-spacing:9.773974pt;}
.ls35{letter-spacing:10.413441pt;}
.ls19{letter-spacing:11.253280pt;}
.ls3{letter-spacing:12.305847pt;}
.ls1b{letter-spacing:12.667227pt;}
.ls4{letter-spacing:12.945421pt;}
.ls47{letter-spacing:12.956480pt;}
.ls42{letter-spacing:12.956800pt;}
.ls46{letter-spacing:12.959680pt;}
.ls20{letter-spacing:12.973974pt;}
.ls40{letter-spacing:13.112107pt;}
.ls23{letter-spacing:13.306800pt;}
.ls41{letter-spacing:13.595627pt;}
.ls3f{letter-spacing:13.602027pt;}
.ls2c{letter-spacing:13.614533pt;}
.ls1e{letter-spacing:14.255574pt;}
.ls3b{letter-spacing:15.650882pt;}
.ls37{letter-spacing:15.709067pt;}
.ls38{letter-spacing:16.506800pt;}
.ls3c{letter-spacing:16.989067pt;}
.ls3e{letter-spacing:17.146373pt;}
.ls12{letter-spacing:17.605926pt;}
.lsf{letter-spacing:17.783867pt;}
.ls21{letter-spacing:17.785947pt;}
.ls10{letter-spacing:18.425520pt;}
.ls31{letter-spacing:18.850879pt;}
.ls11{letter-spacing:18.885126pt;}
.lse{letter-spacing:19.067227pt;}
.ls29{letter-spacing:19.706800pt;}
.ls3a{letter-spacing:20.829067pt;}
.ls33{letter-spacing:21.627600pt;}
.ls34{letter-spacing:22.267227pt;}
.ls36{letter-spacing:23.546373pt;}
.ls27{letter-spacing:683.593139pt;}
.ws67{word-spacing:-31.535520pt;}
.ws23{word-spacing:-30.720026pt;}
.wsbb{word-spacing:-28.159975pt;}
.wsc1{word-spacing:-27.895392pt;}
.ws7f{word-spacing:-21.779919pt;}
.ws6b{word-spacing:-19.374562pt;}
.ws14{word-spacing:-18.951650pt;}
.ws81{word-spacing:-16.334967pt;}
.wsc{word-spacing:-16.248396pt;}
.ws37{word-spacing:-15.940267pt;}
.ws54{word-spacing:-15.590989pt;}
.ws3f{word-spacing:-14.545467pt;}
.ws19{word-spacing:-14.154915pt;}
.ws20{word-spacing:-13.283520pt;}
.wsf{word-spacing:-12.998717pt;}
.ws55{word-spacing:-11.693242pt;}
.ws24{word-spacing:-11.636347pt;}
.ws4{word-spacing:-10.626813pt;}
.ws5{word-spacing:-9.564133pt;}
.ws9e{word-spacing:-3.315552pt;}
.ws60{word-spacing:-2.675959pt;}
.ws4b{word-spacing:-2.618184pt;}
.wsb8{word-spacing:-2.245845pt;}
.ws8e{word-spacing:-2.153544pt;}
.ws4a{word-spacing:-2.036773pt;}
.ws28{word-spacing:-2.036365pt;}
.ws50{word-spacing:-1.978183pt;}
.wsae{word-spacing:-1.815166pt;}
.ws82{word-spacing:-1.813838pt;}
.wsa7{word-spacing:-1.675424pt;}
.wsc2{word-spacing:-1.606950pt;}
.ws33{word-spacing:-1.570445pt;}
.wsc0{word-spacing:-1.538232pt;}
.wsa4{word-spacing:-1.537966pt;}
.wsb7{word-spacing:-1.436464pt;}
.ws66{word-spacing:-1.396772pt;}
.ws86{word-spacing:-1.338997pt;}
.ws29{word-spacing:-1.338590pt;}
.wsbd{word-spacing:-1.312252pt;}
.wsc4{word-spacing:-1.311827pt;}
.wsb2{word-spacing:-1.311774pt;}
.ws48{word-spacing:-1.280408pt;}
.ws43{word-spacing:-1.280350pt;}
.wsb4{word-spacing:-1.175592pt;}
.ws90{word-spacing:-1.174423pt;}
.wsb9{word-spacing:-1.173891pt;}
.ws57{word-spacing:-1.035477pt;}
.ws9f{word-spacing:-1.035424pt;}
.ws1f{word-spacing:-0.967890pt;}
.wsb1{word-spacing:-0.967271pt;}
.ws1d{word-spacing:-0.967040pt;}
.wsb3{word-spacing:-0.966689pt;}
.wsbf{word-spacing:-0.966615pt;}
.wsbc{word-spacing:-0.965886pt;}
.wsab{word-spacing:-0.948702pt;}
.ws39{word-spacing:-0.872321pt;}
.ws46{word-spacing:-0.872263pt;}
.wsa8{word-spacing:-0.811549pt;}
.wsa3{word-spacing:-0.810712pt;}
.wsad{word-spacing:-0.810560pt;}
.wsac{word-spacing:-0.810551pt;}
.wsc3{word-spacing:-0.809710pt;}
.ws52{word-spacing:-0.757179pt;}
.ws42{word-spacing:-0.698997pt;}
.ws3a{word-spacing:-0.697775pt;}
.ws93{word-spacing:-0.697542pt;}
.wsbe{word-spacing:-0.673103pt;}
.ws21{word-spacing:-0.535220pt;}
.wsa1{word-spacing:-0.534848pt;}
.wsaa{word-spacing:-0.534688pt;}
.ws1b{word-spacing:-0.496862pt;}
.wsa6{word-spacing:-0.446326pt;}
.wsb0{word-spacing:-0.446273pt;}
.ws56{word-spacing:-0.395902pt;}
.wsb6{word-spacing:-0.394202pt;}
.wsa2{word-spacing:-0.328124pt;}
.wsaf{word-spacing:-0.327943pt;}
.wsa5{word-spacing:-0.327878pt;}
.ws1e{word-spacing:-0.327837pt;}
.wsc5{word-spacing:-0.327784pt;}
.ws1c{word-spacing:-0.327465pt;}
.wsba{word-spacing:-0.170023pt;}
.wsc6{word-spacing:-0.169957pt;}
.ws31{word-spacing:-0.115898pt;}
.ws3d{word-spacing:-0.115549pt;}
.ws83{word-spacing:-0.090031pt;}
.ws16{word-spacing:-0.088521pt;}
.ws6c{word-spacing:-0.058182pt;}
.ws3b{word-spacing:-0.057716pt;}
.ws62{word-spacing:-0.057367pt;}
.ws36{word-spacing:0.000000pt;}
.ws47{word-spacing:0.000756pt;}
.ws35{word-spacing:0.119913pt;}
.ws1a{word-spacing:0.142378pt;}
.ws18{word-spacing:0.142436pt;}
.ws17{word-spacing:0.142787pt;}
.ws65{word-spacing:0.216788pt;}
.wsa0{word-spacing:0.245798pt;}
.wsb5{word-spacing:0.312110pt;}
.ws6{word-spacing:0.408915pt;}
.ws7{word-spacing:0.409680pt;}
.ws51{word-spacing:0.524044pt;}
.ws9c{word-spacing:0.581819pt;}
.ws61{word-spacing:0.582168pt;}
.ws5d{word-spacing:0.582226pt;}
.ws73{word-spacing:0.640350pt;}
.ws8b{word-spacing:0.640408pt;}
.ws58{word-spacing:0.744857pt;}
.ws53{word-spacing:1.163637pt;}
.ws85{word-spacing:1.221703pt;}
.ws2b{word-spacing:1.221819pt;}
.ws84{word-spacing:1.223675pt;}
.ws34{word-spacing:1.255389pt;}
.ws87{word-spacing:1.279885pt;}
.ws25{word-spacing:1.279943pt;}
.ws45{word-spacing:1.280001pt;}
.ws32{word-spacing:1.629034pt;}
.ws75{word-spacing:1.802823pt;}
.ws4e{word-spacing:1.803231pt;}
.ws8d{word-spacing:1.861296pt;}
.ws44{word-spacing:1.861412pt;}
.ws77{word-spacing:1.919129pt;}
.ws9b{word-spacing:1.919536pt;}
.ws5c{word-spacing:2.326402pt;}
.ws49{word-spacing:2.442824pt;}
.ws74{word-spacing:2.444511pt;}
.ws12{word-spacing:2.454794pt;}
.ws76{word-spacing:2.500306pt;}
.ws89{word-spacing:2.501006pt;}
.ws26{word-spacing:2.502693pt;}
.ws4d{word-spacing:2.559188pt;}
.ws1{word-spacing:2.613878pt;}
.ws69{word-spacing:3.084104pt;}
.ws41{word-spacing:3.084453pt;}
.ws8c{word-spacing:3.141823pt;}
.ws97{word-spacing:3.142286pt;}
.ws5e{word-spacing:3.142635pt;}
.ws8a{word-spacing:3.200759pt;}
.ws4c{word-spacing:3.320594pt;}
.ws9d{word-spacing:3.607741pt;}
.ws40{word-spacing:3.724047pt;}
.ws10{word-spacing:3.733975pt;}
.ws6a{word-spacing:3.781821pt;}
.ws96{word-spacing:3.782170pt;}
.ws2d{word-spacing:3.782229pt;}
.ws94{word-spacing:3.840352pt;}
.ws22{word-spacing:3.841013pt;}
.wsa9{word-spacing:3.893910pt;}
.ws15{word-spacing:3.982377pt;}
.ws5b{word-spacing:4.189211pt;}
.ws6e{word-spacing:4.247276pt;}
.ws2c{word-spacing:4.363640pt;}
.ws27{word-spacing:4.421822pt;}
.ws5a{word-spacing:4.479946pt;}
.ws7e{word-spacing:4.828222pt;}
.ws6d{word-spacing:5.002826pt;}
.ws64{word-spacing:5.003233pt;}
.ws95{word-spacing:5.061008pt;}
.ws72{word-spacing:5.061415pt;}
.ws2{word-spacing:5.402884pt;}
.ws0{word-spacing:5.403012pt;}
.ws3{word-spacing:5.403863pt;}
.ws7d{word-spacing:5.642827pt;}
.ws30{word-spacing:5.644397pt;}
.ws2f{word-spacing:5.701008pt;}
.ws78{word-spacing:5.759190pt;}
.ws6f{word-spacing:5.759248pt;}
.ws9a{word-spacing:6.004151pt;}
.ws79{word-spacing:6.283933pt;}
.ws70{word-spacing:6.284456pt;}
.ws71{word-spacing:6.342231pt;}
.ws91{word-spacing:6.342289pt;}
.ws2e{word-spacing:6.342638pt;}
.wsa{word-spacing:6.362639pt;}
.ws99{word-spacing:6.645798pt;}
.ws3e{word-spacing:6.924049pt;}
.wsb{word-spacing:6.944361pt;}
.ws4f{word-spacing:6.981824pt;}
.ws88{word-spacing:6.982173pt;}
.wsd{word-spacing:7.002256pt;}
.ws92{word-spacing:7.040355pt;}
.ws68{word-spacing:7.040413pt;}
.ws11{word-spacing:7.071739pt;}
.ws63{word-spacing:7.563643pt;}
.ws7a{word-spacing:7.621825pt;}
.ws13{word-spacing:7.641994pt;}
.wse{word-spacing:7.653333pt;}
.ws59{word-spacing:7.679948pt;}
.ws2a{word-spacing:8.203236pt;}
.ws5f{word-spacing:8.261418pt;}
.ws9{word-spacing:9.003503pt;}
.ws7b{word-spacing:9.484459pt;}
.ws7c{word-spacing:9.949623pt;}
.ws8{word-spacing:10.360126pt;}
.ws38{word-spacing:44.043091pt;}
.ws3c{word-spacing:48.179775pt;}
.ws8f{word-spacing:144.761052pt;}
.ws98{word-spacing:146.487338pt;}
.ws80{word-spacing:610.992507pt;}
._22{margin-left:-23.330803pt;}
._32{margin-left:-20.495318pt;}
._27{margin-left:-7.858153pt;}
._15{margin-left:-6.534484pt;}
._21{margin-left:-5.645084pt;}
._a{margin-left:-4.644952pt;}
._4{margin-left:-3.134669pt;}
._2{margin-left:-1.393956pt;}
._3{width:1.451242pt;}
._0{width:2.588930pt;}
._5{width:3.504946pt;}
._9{width:6.978344pt;}
._28{width:8.563388pt;}
._e{width:10.228541pt;}
._11{width:11.976050pt;}
._23{width:13.142458pt;}
._b{width:14.053250pt;}
._d{width:15.010922pt;}
._1d{width:15.937703pt;}
._1{width:16.956320pt;}
._c{width:17.975875pt;}
._1f{width:18.960085pt;}
._7{width:19.991689pt;}
._6{width:20.945338pt;}
._f{width:22.690363pt;}
._12{width:24.432026pt;}
._8{width:26.125876pt;}
._20{width:27.051016pt;}
._2e{width:28.155305pt;}
._10{width:29.419355pt;}
._13{width:30.329214pt;}
._29{width:32.405298pt;}
._24{width:34.315187pt;}
._1e{width:35.464721pt;}
._30{width:36.731064pt;}
._31{width:38.040327pt;}
._2a{width:39.084599pt;}
._14{width:40.132277pt;}
._2b{width:41.423646pt;}
._2c{width:46.190264pt;}
._18{width:58.588558pt;}
._26{width:64.120041pt;}
._2d{width:158.905789pt;}
._2f{width:160.017342pt;}
._25{width:160.948603pt;}
._16{width:620.074164pt;}
._1b{width:1408.252344pt;}
._1a{width:1503.587819pt;}
._19{width:1819.693822pt;}
._17{width:1854.193667pt;}
._1c{width:1891.548835pt;}
.fs15{font-size:36.040640pt;}
.fsb{font-size:37.193867pt;}
.fs4{font-size:38.256533pt;}
.fs8{font-size:39.319147pt;}
.fs1c{font-size:40.639947pt;}
.fs1f{font-size:41.124747pt;}
.fse{font-size:41.367573pt;}
.fs14{font-size:42.047360pt;}
.fs2{font-size:42.507253pt;}
.fsa{font-size:46.545387pt;}
.fs6{font-size:46.757973pt;}
.fs3{font-size:47.820693pt;}
.fs13{font-size:48.054133pt;}
.fs1b{font-size:50.799947pt;}
.fs17{font-size:51.367787pt;}
.fs1e{font-size:51.405920pt;}
.fs1{font-size:53.134080pt;}
.fs11{font-size:55.156800pt;}
.fs9{font-size:58.181867pt;}
.fs1a{font-size:58.207467pt;}
.fs5{font-size:58.447467pt;}
.fs1d{font-size:58.901867pt;}
.fsd{font-size:58.987760pt;}
.fsc{font-size:63.761067pt;}
.fs19{font-size:64.209600pt;}
.fsf{font-size:73.542400pt;}
.fs18{font-size:77.051733pt;}
.fs10{font-size:80.896533pt;}
.fs7{font-size:90.327467pt;}
.fs12{font-size:91.928000pt;}
.fs16{font-size:102.735467pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.252000pt;}
.yc0{bottom:3.637333pt;}
.yeb{bottom:3.681333pt;}
.ya5{bottom:6.421333pt;}
.y50{bottom:6.450107pt;}
.y71{bottom:9.042667pt;}
.y4f{bottom:18.860000pt;}
.yec{bottom:19.482667pt;}
.yc1{bottom:22.370667pt;}
.yee{bottom:28.053333pt;}
.yc3{bottom:30.841333pt;}
.y4e{bottom:31.993333pt;}
.y70{bottom:48.820600pt;}
.y9e{bottom:54.415333pt;}
.y6f{bottom:61.434667pt;}
.yef{bottom:74.325733pt;}
.y51{bottom:76.637333pt;}
.y47{bottom:82.372933pt;}
.ybe{bottom:82.373067pt;}
.y9a{bottom:82.373200pt;}
.y24{bottom:82.373235pt;}
.y132{bottom:82.373333pt;}
.ye9{bottom:82.373467pt;}
.y6c{bottom:82.373600pt;}
.y23{bottom:82.693027pt;}
.y76{bottom:90.032000pt;}
.y52{bottom:90.809333pt;}
.yc4{bottom:91.801733pt;}
.ya0{bottom:97.381067pt;}
.y6e{bottom:100.182667pt;}
.y75{bottom:102.645333pt;}
.ya1{bottom:117.716000pt;}
.yf0{bottom:120.589333pt;}
.ya6{bottom:121.887467pt;}
.y4d{bottom:125.849333pt;}
.y73{bottom:127.184600pt;}
.y74{bottom:133.992000pt;}
.y9f{bottom:135.906533pt;}
.ya7{bottom:135.906800pt;}
.y72{bottom:139.798667pt;}
.yc5{bottom:153.615333pt;}
.y46{bottom:161.092667pt;}
.ybd{bottom:161.092800pt;}
.y6b{bottom:161.092933pt;}
.ye8{bottom:161.093200pt;}
.y12a{bottom:161.093333pt;}
.y22{bottom:165.413333pt;}
.yf1{bottom:166.852933pt;}
.y4c{bottom:173.137333pt;}
.ya2{bottom:174.702400pt;}
.y129{bottom:178.533333pt;}
.y45{bottom:180.932800pt;}
.ybc{bottom:180.932933pt;}
.y6a{bottom:180.933067pt;}
.ye7{bottom:180.933333pt;}
.y4a{bottom:186.007440pt;}
.y49{bottom:198.417333pt;}
.y44{bottom:200.772933pt;}
.ybb{bottom:200.773067pt;}
.y99{bottom:200.773200pt;}
.ye6{bottom:202.053600pt;}
.y128{bottom:204.133333pt;}
.ya4{bottom:206.807067pt;}
.yf2{bottom:212.261733pt;}
.yc6{bottom:215.420533pt;}
.y69{bottom:216.452800pt;}
.y97{bottom:220.613200pt;}
.y98{bottom:220.613333pt;}
.y43{bottom:221.253200pt;}
.y21{bottom:221.253333pt;}
.y127{bottom:221.573333pt;}
.ye5{bottom:221.893200pt;}
.ya3{bottom:226.070133pt;}
.ycd{bottom:227.009333pt;}
.yfa{bottom:234.976000pt;}
.y9c{bottom:238.912000pt;}
.y96{bottom:240.453333pt;}
.y42{bottom:241.092800pt;}
.y20{bottom:241.092933pt;}
.ye4{bottom:241.733333pt;}
.y126{bottom:247.173333pt;}
.ycc{bottom:251.152000pt;}
.y9d{bottom:254.964667pt;}
.yf3{bottom:258.525733pt;}
.yf9{bottom:259.406667pt;}
.y95{bottom:260.453333pt;}
.y94{bottom:260.453733pt;}
.y41{bottom:260.932933pt;}
.y68{bottom:261.253333pt;}
.ye2{bottom:261.733200pt;}
.ye3{bottom:261.733333pt;}
.y4b{bottom:262.192000pt;}
.y125{bottom:264.613333pt;}
.ycb{bottom:275.278667pt;}
.yc7{bottom:276.372667pt;}
.yba{bottom:280.292933pt;}
.y93{bottom:280.293067pt;}
.y40{bottom:280.773067pt;}
.y67{bottom:281.253333pt;}
.ye0{bottom:281.573200pt;}
.ye1{bottom:281.573333pt;}
.y1f{bottom:282.213200pt;}
.yed{bottom:282.981333pt;}
.yf8{bottom:283.821333pt;}
.yc2{bottom:288.765333pt;}
.y124{bottom:290.213600pt;}
.yca{bottom:299.412000pt;}
.yb9{bottom:300.133067pt;}
.y92{bottom:300.133200pt;}
.y3f{bottom:300.773067pt;}
.y66{bottom:301.092933pt;}
.ydf{bottom:301.413333pt;}
.yde{bottom:301.413600pt;}
.y1e{bottom:302.053333pt;}
.yf4{bottom:304.789733pt;}
.y123{bottom:307.653733pt;}
.yf7{bottom:308.241333pt;}
.y90{bottom:319.973200pt;}
.y91{bottom:319.973333pt;}
.y3e{bottom:320.613200pt;}
.y65{bottom:320.933067pt;}
.ydd{bottom:321.253733pt;}
.y1d{bottom:322.053333pt;}
.yc9{bottom:323.529333pt;}
.yf6{bottom:332.648000pt;}
.y122{bottom:333.253733pt;}
.yc8{bottom:338.194000pt;}
.yb8{bottom:339.813200pt;}
.y8f{bottom:339.813333pt;}
.y3d{bottom:340.453600pt;}
.y64{bottom:340.773200pt;}
.ydc{bottom:341.093333pt;}
.y1c{bottom:341.892933pt;}
.y121{bottom:350.693333pt;}
.yf5{bottom:351.053333pt;}
.yb7{bottom:359.813200pt;}
.y106{bottom:359.813333pt;}
.y3c{bottom:360.293200pt;}
.y63{bottom:360.613333pt;}
.yda{bottom:361.093067pt;}
.ydb{bottom:361.093333pt;}
.y1b{bottom:361.733067pt;}
.y8e{bottom:364.293067pt;}
.y120{bottom:376.293333pt;}
.yb6{bottom:379.653200pt;}
.y105{bottom:379.653467pt;}
.y3b{bottom:380.133067pt;}
.y62{bottom:380.613200pt;}
.yd9{bottom:380.933200pt;}
.y1a{bottom:381.573200pt;}
.y8d{bottom:384.133200pt;}
.y11f{bottom:393.733333pt;}
.yb5{bottom:399.492800pt;}
.y104{bottom:399.493067pt;}
.y3a{bottom:400.133067pt;}
.y61{bottom:400.453333pt;}
.yd8{bottom:400.773333pt;}
.y19{bottom:401.413333pt;}
.y8c{bottom:403.973333pt;}
.yb4{bottom:419.332933pt;}
.y103{bottom:419.333200pt;}
.y11e{bottom:419.333333pt;}
.y60{bottom:420.292933pt;}
.y39{bottom:420.453333pt;}
.yd7{bottom:420.613467pt;}
.y18{bottom:421.413333pt;}
.y8b{bottom:423.973067pt;}
.y11d{bottom:436.773333pt;}
.yb3{bottom:439.173067pt;}
.y102{bottom:439.173333pt;}
.y5f{bottom:440.133067pt;}
.y38{bottom:440.453333pt;}
.y37{bottom:440.453467pt;}
.yd6{bottom:440.453600pt;}
.y17{bottom:441.253467pt;}
.y8a{bottom:443.813200pt;}
.yb2{bottom:459.173067pt;}
.y101{bottom:459.173333pt;}
.y5e{bottom:459.973200pt;}
.y36{bottom:460.293067pt;}
.yd5{bottom:460.453600pt;}
.y16{bottom:461.093067pt;}
.y11c{bottom:462.372933pt;}
.y89{bottom:463.653333pt;}
.y88{bottom:463.653467pt;}
.yb1{bottom:479.013200pt;}
.y100{bottom:479.013467pt;}
.y11b{bottom:479.813067pt;}
.y5d{bottom:479.973200pt;}
.y35{bottom:480.133200pt;}
.yd4{bottom:480.293200pt;}
.y15{bottom:480.933200pt;}
.y87{bottom:483.493067pt;}
.yb0{bottom:498.852800pt;}
.yff{bottom:498.853067pt;}
.y5c{bottom:499.813333pt;}
.y33{bottom:499.973200pt;}
.y34{bottom:499.973333pt;}
.yd3{bottom:500.133067pt;}
.y14{bottom:500.773333pt;}
.y86{bottom:503.333200pt;}
.y11a{bottom:514.052667pt;}
.yaf{bottom:518.692933pt;}
.yfe{bottom:518.693200pt;}
.y5b{bottom:519.652933pt;}
.y32{bottom:519.813200pt;}
.yd2{bottom:519.973200pt;}
.y85{bottom:523.333200pt;}
.yae{bottom:538.533067pt;}
.yfd{bottom:538.533200pt;}
.y5a{bottom:539.493067pt;}
.y31{bottom:539.813200pt;}
.yd1{bottom:539.813333pt;}
.y13{bottom:540.613693pt;}
.y84{bottom:543.173067pt;}
.yad{bottom:558.533067pt;}
.y59{bottom:559.333200pt;}
.y30{bottom:559.652800pt;}
.yd0{bottom:559.813467pt;}
.y83{bottom:563.013200pt;}
.y119{bottom:563.492800pt;}
.y12{bottom:569.733427pt;}
.yac{bottom:578.373200pt;}
.y58{bottom:579.333200pt;}
.y2f{bottom:579.492933pt;}
.y118{bottom:583.492800pt;}
.y82{bottom:587.492933pt;}
.y11{bottom:592.133427pt;}
.yab{bottom:598.213600pt;}
.y56{bottom:599.173200pt;}
.y57{bottom:599.173333pt;}
.y2e{bottom:599.333067pt;}
.yfc{bottom:599.973333pt;}
.y117{bottom:603.332933pt;}
.ycf{bottom:606.373333pt;}
.y10{bottom:606.853160pt;}
.y81{bottom:607.333067pt;}
.yfb{bottom:617.573333pt;}
.yaa{bottom:618.053200pt;}
.y55{bottom:619.013333pt;}
.y2d{bottom:619.173200pt;}
.yce{bottom:623.973333pt;}
.y80{bottom:627.173200pt;}
.yf{bottom:629.253160pt;}
.y2c{bottom:639.173200pt;}
.y116{bottom:640.613200pt;}
.ye{bottom:643.973427pt;}
.y7f{bottom:647.013333pt;}
.yea{bottom:648.453333pt;}
.y54{bottom:654.533067pt;}
.ybf{bottom:654.693333pt;}
.ya9{bottom:661.093333pt;}
.yd{bottom:666.213560pt;}
.y7e{bottom:666.852933pt;}
.y2b{bottom:675.813333pt;}
.yc{bottom:685.573467pt;}
.y7d{bottom:686.852933pt;}
.y115{bottom:690.213200pt;}
.y53{bottom:699.013333pt;}
.y7c{bottom:706.693067pt;}
.yb{bottom:707.333333pt;}
.y114{bottom:710.052800pt;}
.ya8{bottom:710.693333pt;}
.y113{bottom:729.892933pt;}
.y7b{bottom:731.013467pt;}
.y48{bottom:732.133333pt;}
.y9b{bottom:743.813333pt;}
.y112{bottom:749.733067pt;}
.y7a{bottom:750.853067pt;}
.y111{bottom:769.733067pt;}
.y79{bottom:770.853067pt;}
.y2a{bottom:778.533333pt;}
.ya{bottom:789.413867pt;}
.y110{bottom:789.573200pt;}
.y10f{bottom:809.413333pt;}
.y29{bottom:814.213333pt;}
.y78{bottom:823.973333pt;}
.y1{bottom:826.666667pt;}
.y10e{bottom:829.252933pt;}
.y131{bottom:848.933200pt;}
.y28{bottom:849.733333pt;}
.y9{bottom:854.533600pt;}
.y6d{bottom:857.093333pt;}
.y130{bottom:866.533200pt;}
.y10d{bottom:866.693067pt;}
.y8{bottom:874.373733pt;}
.y27{bottom:885.253333pt;}
.y12f{bottom:891.973333pt;}
.y7{bottom:894.213867pt;}
.y12e{bottom:909.573200pt;}
.y10c{bottom:916.133200pt;}
.y26{bottom:920.933200pt;}
.y6{bottom:923.333600pt;}
.y12d{bottom:935.013333pt;}
.y10b{bottom:935.973333pt;}
.y5{bottom:939.493467pt;}
.y12c{bottom:952.613733pt;}
.y4{bottom:955.493467pt;}
.y10a{bottom:955.973333pt;}
.y109{bottom:955.973600pt;}
.y25{bottom:957.573333pt;}
.y3{bottom:971.653333pt;}
.y108{bottom:975.813733pt;}
.y12b{bottom:978.053333pt;}
.y107{bottom:995.653333pt;}
.y2{bottom:996.453333pt;}
.h23{height:25.985301pt;}
.h2c{height:28.447963pt;}
.h30{height:28.787323pt;}
.h18{height:29.826020pt;}
.h22{height:30.232052pt;}
.h21{height:30.316147pt;}
.h1b{height:32.888522pt;}
.h20{height:34.647030pt;}
.he{height:36.503746pt;}
.h2b{height:36.626762pt;}
.h26{height:37.036174pt;}
.h2f{height:37.063668pt;}
.ha{height:38.570393pt;}
.hf{height:41.718545pt;}
.h2a{height:41.967583pt;}
.h2e{height:42.468246pt;}
.h28{height:46.295122pt;}
.h3{height:46.933395pt;}
.hb{height:52.122249pt;}
.h2{height:52.148194pt;}
.h10{height:52.149122pt;}
.h19{height:53.024070pt;}
.h32{height:53.548123pt;}
.h1d{height:53.549190pt;}
.h33{height:53.549723pt;}
.h31{height:53.550790pt;}
.h15{height:54.638565pt;}
.h27{height:55.554300pt;}
.hc{height:57.073911pt;}
.hd{height:57.102320pt;}
.h14{height:57.102854pt;}
.h16{height:57.103387pt;}
.h1e{height:57.103920pt;}
.h1a{height:58.326401pt;}
.h13{height:58.636413pt;}
.h12{height:58.636946pt;}
.h5{height:60.958881pt;}
.h9{height:62.816562pt;}
.h7{height:62.818642pt;}
.h4{height:62.837318pt;}
.h8{height:62.839398pt;}
.h11{height:64.259200pt;}
.h1c{height:66.280088pt;}
.h25{height:74.072271pt;}
.h6{height:94.208725pt;}
.h1f{height:152.797333pt;}
.h1{height:156.953125pt;}
.h24{height:265.713333pt;}
.h17{height:277.581333pt;}
.h29{height:355.312000pt;}
.h2d{height:361.810667pt;}
.h0{height:1122.666667pt;}
.w1{width:339.586667pt;}
.w2{width:339.822667pt;}
.w5{width:528.161600pt;}
.w4{width:528.172267pt;}
.w3{width:570.157200pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x21{left:3.004000pt;}
.x23{left:6.182667pt;}
.x19{left:9.422667pt;}
.x3c{left:12.180267pt;}
.x14{left:17.130667pt;}
.x4b{left:18.316333pt;}
.x25{left:23.516000pt;}
.x4a{left:26.032480pt;}
.x18{left:28.611413pt;}
.x48{left:31.168267pt;}
.x49{left:32.885600pt;}
.x3b{left:37.037600pt;}
.x3d{left:38.734933pt;}
.x15{left:54.941333pt;}
.x17{left:56.234347pt;}
.x34{left:99.524400pt;}
.x1a{left:106.712000pt;}
.x6{left:111.360480pt;}
.x56{left:113.120000pt;}
.xb{left:114.080213pt;}
.x8{left:116.159707pt;}
.x55{left:119.838613pt;}
.x9{left:121.759707pt;}
.xa{left:127.359867pt;}
.x39{left:132.319733pt;}
.x10{left:138.239333pt;}
.x22{left:142.661333pt;}
.x4e{left:156.800000pt;}
.x38{left:166.400000pt;}
.x35{left:175.724933pt;}
.x36{left:188.734307pt;}
.x3e{left:191.321600pt;}
.x32{left:192.628800pt;}
.x24{left:207.609333pt;}
.x12{left:226.720000pt;}
.x16{left:230.289333pt;}
.x13{left:234.885333pt;}
.x7{left:239.199947pt;}
.x51{left:244.960000pt;}
.x4d{left:249.280000pt;}
.x3f{left:250.240000pt;}
.x52{left:254.560000pt;}
.x26{left:264.480000pt;}
.x1b{left:281.600000pt;}
.x37{left:287.338533pt;}
.x27{left:293.440000pt;}
.x28{left:303.040000pt;}
.x42{left:304.000000pt;}
.x2f{left:311.200000pt;}
.x30{left:320.800000pt;}
.x53{left:321.920000pt;}
.x20{left:329.768000pt;}
.x54{left:331.520000pt;}
.x2b{left:333.120000pt;}
.x2c{left:342.720000pt;}
.x31{left:361.179867pt;}
.x2{left:366.400000pt;}
.xc{left:373.921333pt;}
.x4c{left:375.568267pt;}
.x11{left:382.240827pt;}
.xd{left:383.521333pt;}
.x45{left:419.840000pt;}
.x46{left:434.560000pt;}
.x47{left:442.693600pt;}
.x3a{left:444.750933pt;}
.x33{left:452.678133pt;}
.x4f{left:473.600000pt;}
.x50{left:483.200000pt;}
.x40{left:488.640000pt;}
.x41{left:498.240000pt;}
.x3{left:528.480213pt;}
.x5{left:531.359920pt;}
.x2d{left:534.560000pt;}
.x2e{left:544.160000pt;}
.x4{left:546.240187pt;}
.x1c{left:558.560000pt;}
.x1d{left:568.160000pt;}
.x43{left:594.878667pt;}
.x44{left:604.478667pt;}
.xe{left:623.840000pt;}
.xf{left:633.440000pt;}
.x1e{left:646.560000pt;}
.x1f{left:656.160000pt;}
.x29{left:661.440000pt;}
.x2a{left:671.040000pt;}
.x1{left:733.333333pt;}
}

