
    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_d42492408974a93af69df8ea.woff')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_e66397a0b5bbe8569e8ecd1e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119500;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_a34b21c5d7fda628a3657882.woff')format("woff");}.ff3{font-family:ff3;line-height:1.110000;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_fa7095da6843e2bb179f84d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.692000;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_70b384de819e2941a6626ef2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_7f2f046cf1b590660d6dfbed.woff')format("woff");}.ff6{font-family:ff6;line-height:1.128000;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;}
.m3{transform:matrix(0.224762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224762,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-16.800000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-7.920000px;}
.ls25{letter-spacing:-5.629800px;}
.ls2e{letter-spacing:-3.597000px;}
.ls15{letter-spacing:-3.531000px;}
.ls2c{letter-spacing:-2.628000px;}
.ls17{letter-spacing:-1.973400px;}
.lsf{letter-spacing:-1.174800px;}
.ls27{letter-spacing:-0.778800px;}
.ls2d{letter-spacing:-0.772200px;}
.ls2a{letter-spacing:-0.745800px;}
.ls26{letter-spacing:-0.693000px;}
.ls24{letter-spacing:-0.686400px;}
.ls23{letter-spacing:-0.666600px;}
.ls9{letter-spacing:-0.628650px;}
.ls28{letter-spacing:-0.429000px;}
.ls16{letter-spacing:-0.422400px;}
.ls14{letter-spacing:-0.382800px;}
.ls21{letter-spacing:-0.363000px;}
.ls1f{letter-spacing:-0.316800px;}
.ls1c{letter-spacing:-0.310200px;}
.ls19{letter-spacing:-0.303600px;}
.ls1e{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.125400px;}
.ls5{letter-spacing:-0.025200px;}
.lsb{letter-spacing:-0.019800px;}
.ls29{letter-spacing:-0.014400px;}
.lse{letter-spacing:-0.013200px;}
.lsc{letter-spacing:-0.010800px;}
.ls8{letter-spacing:-0.009000px;}
.ls18{letter-spacing:-0.007200px;}
.ls10{letter-spacing:-0.006600px;}
.lsd{letter-spacing:-0.005400px;}
.ls11{letter-spacing:-0.005100px;}
.ls7{letter-spacing:-0.004800px;}
.ls6{letter-spacing:-0.003600px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls12{letter-spacing:0.022050px;}
.ls1{letter-spacing:0.024000px;}
.ls1a{letter-spacing:0.025200px;}
.ls13{letter-spacing:0.028350px;}
.ls2{letter-spacing:0.030000px;}
.ls1b{letter-spacing:0.034650px;}
.ls4{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.040950px;}
.ls22{letter-spacing:35.039400px;}
.ls3{letter-spacing:54.990720px;}
.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;}
}
.wsc9{word-spacing:-51.539400px;}
.ws75{word-spacing:-18.360000px;}
.wsa2{word-spacing:-16.830000px;}
.ws5{word-spacing:-16.816800px;}
.ws3{word-spacing:-16.500000px;}
.wsf0{word-spacing:-16.071000px;}
.wsdd{word-spacing:-15.807000px;}
.ws25{word-spacing:-14.526600px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.489200px;}
.ws24{word-spacing:-12.969000px;}
.ws11a{word-spacing:-12.903000px;}
.ws6{word-spacing:-12.750000px;}
.ws1b{word-spacing:-12.000000px;}
.ws1{word-spacing:-8.996400px;}
.ws10c{word-spacing:-8.580000px;}
.ws121{word-spacing:-2.461800px;}
.ws9e{word-spacing:-2.402400px;}
.ws124{word-spacing:-2.395800px;}
.wsea{word-spacing:-2.277000px;}
.wsb8{word-spacing:-2.224200px;}
.ws31{word-spacing:-2.217600px;}
.ws58{word-spacing:-2.158200px;}
.ws8e{word-spacing:-2.098800px;}
.wsba{word-spacing:-2.032800px;}
.wsc0{word-spacing:-1.980000px;}
.ws120{word-spacing:-1.920600px;}
.ws52{word-spacing:-1.914000px;}
.ws2c{word-spacing:-1.861200px;}
.ws6f{word-spacing:-1.801800px;}
.ws114{word-spacing:-1.795200px;}
.ws79{word-spacing:-1.742400px;}
.ws45{word-spacing:-1.735800px;}
.ws62{word-spacing:-1.683000px;}
.wsbd{word-spacing:-1.669800px;}
.ws118{word-spacing:-1.617000px;}
.wsf{word-spacing:-1.557600px;}
.ws28{word-spacing:-1.498200px;}
.wsb1{word-spacing:-1.438800px;}
.ws37{word-spacing:-1.379400px;}
.wsda{word-spacing:-1.372800px;}
.ws48{word-spacing:-1.320000px;}
.ws6a{word-spacing:-1.313400px;}
.ws9b{word-spacing:-1.201200px;}
.wsbf{word-spacing:-1.194600px;}
.ws85{word-spacing:-1.141800px;}
.wsb2{word-spacing:-1.075800px;}
.ws68{word-spacing:-1.016400px;}
.wsf8{word-spacing:-0.957000px;}
.wsbe{word-spacing:-0.897600px;}
.ws89{word-spacing:-0.838200px;}
.ws3f{word-spacing:-0.660000px;}
.wsfd{word-spacing:-0.607200px;}
.wsb0{word-spacing:-0.594000px;}
.wsd8{word-spacing:-0.541200px;}
.ws110{word-spacing:-0.481800px;}
.ws54{word-spacing:-0.475200px;}
.wsa1{word-spacing:-0.422400px;}
.wsb5{word-spacing:-0.415800px;}
.ws103{word-spacing:-0.369600px;}
.wsf3{word-spacing:-0.363000px;}
.wscf{word-spacing:-0.303600px;}
.ws35{word-spacing:-0.237600px;}
.wsa0{word-spacing:-0.231000px;}
.ws4c{word-spacing:-0.184800px;}
.wsae{word-spacing:-0.171600px;}
.ws66{word-spacing:-0.118800px;}
.ws39{word-spacing:-0.112200px;}
.ws95{word-spacing:-0.059400px;}
.ws8{word-spacing:0.000000px;}
.ws7d{word-spacing:0.006600px;}
.ws3c{word-spacing:0.059400px;}
.wsc4{word-spacing:0.118800px;}
.ws107{word-spacing:0.178200px;}
.wsdc{word-spacing:0.184800px;}
.ws13{word-spacing:0.237600px;}
.ws5a{word-spacing:0.244200px;}
.ws9c{word-spacing:0.297000px;}
.ws83{word-spacing:0.415800px;}
.ws8c{word-spacing:0.422400px;}
.wsab{word-spacing:0.475200px;}
.ws3b{word-spacing:0.481800px;}
.ws74{word-spacing:0.534600px;}
.ws1d{word-spacing:0.541200px;}
.wsfb{word-spacing:0.547800px;}
.wsdb{word-spacing:0.594000px;}
.ws9a{word-spacing:0.600600px;}
.ws26{word-spacing:0.607200px;}
.wsbc{word-spacing:0.660000px;}
.wsac{word-spacing:0.712800px;}
.ws29{word-spacing:0.719400px;}
.ws7e{word-spacing:0.726000px;}
.ws6d{word-spacing:0.772200px;}
.wsc3{word-spacing:0.778800px;}
.ws5f{word-spacing:0.838200px;}
.ws78{word-spacing:0.897600px;}
.ws53{word-spacing:0.963600px;}
.wsc8{word-spacing:1.016400px;}
.ws50{word-spacing:1.075800px;}
.ws109{word-spacing:1.135200px;}
.ws9{word-spacing:1.200000px;}
.wsa4{word-spacing:1.201200px;}
.ws1a{word-spacing:1.259700px;}
.ws16{word-spacing:1.320000px;}
.wsd{word-spacing:1.377000px;}
.ws12{word-spacing:1.379400px;}
.wsc{word-spacing:1.382400px;}
.ws106{word-spacing:1.386000px;}
.wsb9{word-spacing:1.432200px;}
.ws15{word-spacing:1.438800px;}
.ws6c{word-spacing:1.445400px;}
.wsdf{word-spacing:1.504800px;}
.ws49{word-spacing:1.557600px;}
.ws19{word-spacing:1.560600px;}
.ws5e{word-spacing:1.564200px;}
.wsf4{word-spacing:1.617000px;}
.wsa9{word-spacing:1.623600px;}
.ws98{word-spacing:1.669800px;}
.ws11{word-spacing:1.676400px;}
.ws21{word-spacing:1.683000px;}
.wsb{word-spacing:1.689600px;}
.wsd9{word-spacing:1.735800px;}
.ws115{word-spacing:1.742400px;}
.ws119{word-spacing:1.795200px;}
.wsb6{word-spacing:1.801800px;}
.wsd0{word-spacing:1.850400px;}
.wsc2{word-spacing:1.854600px;}
.ws41{word-spacing:1.857600px;}
.wsf9{word-spacing:1.864800px;}
.ws123{word-spacing:1.920600px;}
.ws6e{word-spacing:1.980000px;}
.ws32{word-spacing:2.039400px;}
.wsf1{word-spacing:2.098800px;}
.ws70{word-spacing:2.158200px;}
.ws81{word-spacing:2.217600px;}
.wsa{word-spacing:2.277000px;}
.ws17{word-spacing:2.336400px;}
.ws65{word-spacing:2.395800px;}
.ws71{word-spacing:2.455200px;}
.ws36{word-spacing:2.461800px;}
.ws44{word-spacing:2.514600px;}
.ws34{word-spacing:2.521200px;}
.wsd6{word-spacing:2.574000px;}
.ws87{word-spacing:2.580600px;}
.ws93{word-spacing:2.633400px;}
.ws2d{word-spacing:2.640000px;}
.ws5b{word-spacing:2.699400px;}
.wse0{word-spacing:2.706000px;}
.ws60{word-spacing:2.752200px;}
.ws82{word-spacing:2.758800px;}
.wscb{word-spacing:2.811600px;}
.ws90{word-spacing:2.818200px;}
.ws125{word-spacing:2.877600px;}
.ws27{word-spacing:2.937000px;}
.ws72{word-spacing:2.943600px;}
.ws23{word-spacing:2.996400px;}
.ws108{word-spacing:3.003000px;}
.wsd1{word-spacing:3.062400px;}
.ws51{word-spacing:3.069000px;}
.ws2e{word-spacing:3.115200px;}
.ws11e{word-spacing:3.128400px;}
.wse6{word-spacing:3.174600px;}
.ws8a{word-spacing:3.181200px;}
.wsa7{word-spacing:3.234000px;}
.wse4{word-spacing:3.240600px;}
.ws4f{word-spacing:3.359400px;}
.ws47{word-spacing:3.418800px;}
.wsaa{word-spacing:3.478200px;}
.wse9{word-spacing:3.537600px;}
.ws1e{word-spacing:3.597000px;}
.ws5d{word-spacing:3.600450px;}
.ws5c{word-spacing:3.619350px;}
.ws2f{word-spacing:3.656400px;}
.wsfe{word-spacing:3.663000px;}
.ws127{word-spacing:3.715800px;}
.ws43{word-spacing:3.722400px;}
.ws80{word-spacing:3.775200px;}
.wse{word-spacing:3.781800px;}
.ws7b{word-spacing:3.834600px;}
.wsad{word-spacing:3.841200px;}
.ws113{word-spacing:3.894000px;}
.ws3a{word-spacing:3.900600px;}
.ws10e{word-spacing:4.072200px;}
.ws91{word-spacing:4.078800px;}
.ws67{word-spacing:4.131600px;}
.ws40{word-spacing:4.138200px;}
.wsd3{word-spacing:4.197600px;}
.ws61{word-spacing:4.204200px;}
.ws0{word-spacing:4.251600px;}
.ws4a{word-spacing:4.257000px;}
.ws7f{word-spacing:4.263600px;}
.ws1c{word-spacing:4.311600px;}
.ws117{word-spacing:4.316400px;}
.ws94{word-spacing:4.382400px;}
.wse8{word-spacing:4.435200px;}
.ws55{word-spacing:4.441800px;}
.ws18{word-spacing:4.498200px;}
.ws30{word-spacing:4.501200px;}
.wsde{word-spacing:4.554000px;}
.ws3d{word-spacing:4.560600px;}
.ws101{word-spacing:4.620000px;}
.ws126{word-spacing:4.672800px;}
.ws77{word-spacing:4.679400px;}
.wsb4{word-spacing:4.798200px;}
.wsc5{word-spacing:4.857600px;}
.ws8d{word-spacing:4.917000px;}
.ws122{word-spacing:4.983000px;}
.ws22{word-spacing:5.035800px;}
.ws116{word-spacing:5.042400px;}
.ws2b{word-spacing:5.095200px;}
.wseb{word-spacing:5.101800px;}
.wsa5{word-spacing:5.154600px;}
.ws69{word-spacing:5.161200px;}
.ws8b{word-spacing:5.220600px;}
.wsc6{word-spacing:5.273400px;}
.ws10{word-spacing:5.280000px;}
.wsed{word-spacing:5.332800px;}
.wse2{word-spacing:5.339400px;}
.wsbb{word-spacing:5.346000px;}
.ws73{word-spacing:5.398800px;}
.ws20{word-spacing:5.577000px;}
.ws2a{word-spacing:5.636400px;}
.ws9f{word-spacing:5.643000px;}
.wse3{word-spacing:5.761800px;}
.wsc7{word-spacing:5.940000px;}
.wsc1{word-spacing:5.999400px;}
.wsf2{word-spacing:6.058800px;}
.wsee{word-spacing:6.111600px;}
.ws11d{word-spacing:6.118200px;}
.ws8f{word-spacing:6.362400px;}
.wsf7{word-spacing:6.421800px;}
.ws100{word-spacing:6.481200px;}
.ws88{word-spacing:6.659400px;}
.wse5{word-spacing:6.712200px;}
.ws129{word-spacing:6.778200px;}
.ws38{word-spacing:6.837600px;}
.wsec{word-spacing:6.890400px;}
.ws10f{word-spacing:6.897000px;}
.wscc{word-spacing:6.963000px;}
.ws63{word-spacing:7.009200px;}
.ws9d{word-spacing:7.022400px;}
.ws2{word-spacing:7.062000px;}
.ws4e{word-spacing:7.075200px;}
.wsca{word-spacing:7.134600px;}
.ws96{word-spacing:7.200600px;}
.ws86{word-spacing:7.260000px;}
.wsd5{word-spacing:7.378800px;}
.wsf5{word-spacing:7.438200px;}
.ws104{word-spacing:7.497600px;}
.wse7{word-spacing:7.557000px;}
.ws99{word-spacing:7.616400px;}
.ws105{word-spacing:7.735200px;}
.ws4d{word-spacing:7.920000px;}
.ws64{word-spacing:7.972800px;}
.ws76{word-spacing:7.979400px;}
.wsff{word-spacing:8.098200px;}
.ws59{word-spacing:8.276400px;}
.ws42{word-spacing:8.283000px;}
.wsce{word-spacing:8.461200px;}
.wsb7{word-spacing:8.520600px;}
.wsd2{word-spacing:8.580000px;}
.ws102{word-spacing:8.639400px;}
.ws128{word-spacing:8.646000px;}
.ws14{word-spacing:8.758200px;}
.wsa3{word-spacing:8.817600px;}
.ws10b{word-spacing:8.883600px;}
.ws11b{word-spacing:8.936400px;}
.ws1f{word-spacing:8.995800px;}
.ws46{word-spacing:9.774600px;}
.ws84{word-spacing:9.840600px;}
.ws7c{word-spacing:9.893400px;}
.ws111{word-spacing:9.959400px;}
.ws112{word-spacing:10.018800px;}
.ws97{word-spacing:10.500600px;}
.wsaf{word-spacing:10.791000px;}
.ws33{word-spacing:10.797600px;}
.wsa6{word-spacing:10.916400px;}
.wsd4{word-spacing:10.975800px;}
.ws3e{word-spacing:11.220000px;}
.ws10a{word-spacing:11.398200px;}
.ws7a{word-spacing:11.517000px;}
.wsfc{word-spacing:11.569800px;}
.ws10d{word-spacing:11.635800px;}
.ws56{word-spacing:11.820600px;}
.ws57{word-spacing:11.939400px;}
.wsf6{word-spacing:12.361800px;}
.ws11f{word-spacing:12.837000px;}
.wsef{word-spacing:13.081200px;}
.ws6b{word-spacing:13.259400px;}
.wsd7{word-spacing:13.497000px;}
.wse1{word-spacing:13.919400px;}
.wsa8{word-spacing:14.401200px;}
.wsfa{word-spacing:15.120600px;}
.ws92{word-spacing:15.180000px;}
.ws11c{word-spacing:15.958800px;}
.wscd{word-spacing:16.137000px;}
.ws4b{word-spacing:22.803000px;}
.wsb3{word-spacing:24.538800px;}
._c{margin-left:-37.243800px;}
._b{margin-left:-35.805000px;}
._7{margin-left:-7.740000px;}
._5{margin-left:-6.120000px;}
._6{margin-left:-5.032200px;}
._2{margin-left:-3.231000px;}
._1{margin-left:-2.151000px;}
._0{margin-left:-1.008000px;}
._3{width:1.161600px;}
._e{width:2.442000px;}
._8{width:3.537600px;}
._4{width:4.943400px;}
._a{width:6.659400px;}
._9{width:8.012400px;}
._d{width:9.853800px;}
.fc1{color:rgb(222,221,222);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(217,217,217);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fs7{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs6{font-size:110.412762px;}
.y0{bottom:0.000000px;}
.y1{bottom:187.410000px;}
.y17{bottom:230.775000px;}
.y91{bottom:231.780750px;}
.yd2{bottom:231.781350px;}
.y17a{bottom:231.782100px;}
.yaf{bottom:231.782700px;}
.y156{bottom:231.783000px;}
.y1c4{bottom:231.786000px;}
.yf2{bottom:231.786300px;}
.y6d{bottom:231.787050px;}
.y139{bottom:231.787200px;}
.y19d{bottom:231.787950px;}
.y46{bottom:231.792000px;}
.y1e6{bottom:231.806100px;}
.y16{bottom:246.075000px;}
.y1c3{bottom:249.185250px;}
.y1e5{bottom:249.205350px;}
.y114{bottom:249.485850px;}
.y90{bottom:249.780600px;}
.yd1{bottom:249.781200px;}
.y179{bottom:249.781950px;}
.yae{bottom:249.782550px;}
.y155{bottom:249.782850px;}
.yf1{bottom:249.786150px;}
.y6c{bottom:249.786900px;}
.y138{bottom:249.787050px;}
.y19c{bottom:249.787800px;}
.y45{bottom:249.986550px;}
.y15{bottom:265.575000px;}
.y1c2{bottom:266.584500px;}
.y1e4{bottom:266.604600px;}
.y113{bottom:267.185400px;}
.y8f{bottom:267.780450px;}
.yd0{bottom:267.781050px;}
.y178{bottom:267.781800px;}
.yad{bottom:267.782400px;}
.yf0{bottom:267.786000px;}
.y6b{bottom:267.786750px;}
.y137{bottom:267.786900px;}
.y19b{bottom:267.787650px;}
.y44{bottom:268.181100px;}
.y154{bottom:279.738600px;}
.y1c1{bottom:283.983750px;}
.y1e3{bottom:284.003850px;}
.y112{bottom:284.884950px;}
.y8e{bottom:285.780300px;}
.ycf{bottom:285.780900px;}
.y177{bottom:285.781650px;}
.yef{bottom:285.785850px;}
.y6a{bottom:285.786600px;}
.y136{bottom:285.786750px;}
.y43{bottom:286.375650px;}
.y19a{bottom:295.746900px;}
.yac{bottom:296.837250px;}
.y153{bottom:297.738450px;}
.y1c0{bottom:301.383000px;}
.y8d{bottom:303.780150px;}
.y176{bottom:303.781500px;}
.yee{bottom:303.785700px;}
.y69{bottom:303.786450px;}
.y42{bottom:304.570200px;}
.y14{bottom:312.030450px;}
.y135{bottom:312.861600px;}
.y1e2{bottom:313.494300px;}
.y199{bottom:313.746750px;}
.y111{bottom:313.865550px;}
.yab{bottom:314.837100px;}
.yce{bottom:315.736650px;}
.y152{bottom:315.738300px;}
.y1bf{bottom:318.782250px;}
.yed{bottom:321.785550px;}
.y68{bottom:321.786300px;}
.y13{bottom:330.045150px;}
.y134{bottom:330.861450px;}
.y1e1{bottom:330.893550px;}
.y198{bottom:331.746600px;}
.y41{bottom:331.765500px;}
.yaa{bottom:332.836950px;}
.y175{bottom:333.526050px;}
.ycd{bottom:333.736500px;}
.y151{bottom:333.738150px;}
.y1be{bottom:336.181500px;}
.yec{bottom:339.785400px;}
.y67{bottom:339.786150px;}
.y8c{bottom:341.249400px;}
.y1e0{bottom:348.292800px;}
.y133{bottom:348.861300px;}
.y197{bottom:349.746450px;}
.y40{bottom:349.960050px;}
.ya9{bottom:350.836800px;}
.y174{bottom:351.525900px;}
.ycc{bottom:351.736350px;}
.y150{bottom:351.738000px;}
.y1bd{bottom:353.580750px;}
.y12{bottom:357.060600px;}
.yeb{bottom:357.785250px;}
.y8b{bottom:362.250000px;}
.y1df{bottom:365.692050px;}
.y132{bottom:366.861150px;}
.y196{bottom:367.746300px;}
.y3f{bottom:368.154600px;}
.ya8{bottom:368.836650px;}
.y66{bottom:369.065400px;}
.y173{bottom:369.525750px;}
.ycb{bottom:369.736200px;}
.y14f{bottom:369.737850px;}
.y1bc{bottom:370.980000px;}
.y110{bottom:372.425700px;}
.y11{bottom:375.075300px;}
.yea{bottom:375.785100px;}
.y1de{bottom:383.091300px;}
.y195{bottom:385.746150px;}
.y3e{bottom:386.349150px;}
.ya7{bottom:386.836500px;}
.y65{bottom:387.065250px;}
.y172{bottom:387.525600px;}
.yca{bottom:387.736050px;}
.y14e{bottom:387.737700px;}
.y131{bottom:389.180700px;}
.y10f{bottom:390.425550px;}
.y10{bottom:393.090000px;}
.ye9{bottom:393.784950px;}
.y1dd{bottom:400.490550px;}
.y194{bottom:403.746000px;}
.y3d{bottom:404.543700px;}
.ya6{bottom:404.836350px;}
.y64{bottom:405.065100px;}
.y171{bottom:405.525450px;}
.yc9{bottom:405.735900px;}
.y14d{bottom:405.737550px;}
.y1bb{bottom:406.740000px;}
.y130{bottom:407.180550px;}
.y10e{bottom:408.425400px;}
.ye8{bottom:411.784800px;}
.y1dc{bottom:417.889800px;}
.y193{bottom:421.745850px;}
.y8a{bottom:422.179800px;}
.y3c{bottom:422.738250px;}
.y63{bottom:423.064950px;}
.y170{bottom:423.525300px;}
.yc8{bottom:423.735750px;}
.y14c{bottom:423.737400px;}
.y12f{bottom:425.180400px;}
.y10d{bottom:426.425250px;}
.ye7{bottom:429.784650px;}
.ya5{bottom:433.891200px;}
.y1db{bottom:435.289050px;}
.y89{bottom:440.179650px;}
.y3b{bottom:440.932800px;}
.y62{bottom:441.064800px;}
.y16f{bottom:441.525150px;}
.yc7{bottom:441.735600px;}
.y14b{bottom:441.737250px;}
.y12e{bottom:443.180250px;}
.y10c{bottom:444.425100px;}
.yf{bottom:445.621200px;}
.y192{bottom:449.705100px;}
.ya4{bottom:451.891050px;}
.y1da{bottom:452.688300px;}
.ye6{bottom:457.743900px;}
.y88{bottom:458.179500px;}
.y61{bottom:459.064650px;}
.y16e{bottom:459.525000px;}
.yc6{bottom:459.735450px;}
.y1ba{bottom:460.895400px;}
.y10b{bottom:462.424950px;}
.ye{bottom:463.621050px;}
.y12d{bottom:465.499800px;}
.y191{bottom:467.704950px;}
.y3a{bottom:468.113250px;}
.y1d9{bottom:470.087550px;}
.y14a{bottom:471.693000px;}
.ye5{bottom:475.743750px;}
.y87{bottom:476.179350px;}
.yc5{bottom:477.735300px;}
.y1b9{bottom:478.294650px;}
.y10a{bottom:480.424800px;}
.ya3{bottom:480.945900px;}
.yd{bottom:481.635750px;}
.y12c{bottom:483.499650px;}
.y190{bottom:485.704800px;}
.y39{bottom:486.307800px;}
.y1d8{bottom:487.486800px;}
.y60{bottom:488.343900px;}
.y149{bottom:489.692850px;}
.ye4{bottom:493.743600px;}
.y86{bottom:494.179200px;}
.y1b8{bottom:495.693900px;}
.y16d{bottom:498.255000px;}
.y109{bottom:498.424650px;}
.ya2{bottom:498.945750px;}
.yc{bottom:499.650450px;}
.y18f{bottom:503.704650px;}
.y38{bottom:504.502350px;}
.y1d7{bottom:504.886050px;}
.y12b{bottom:505.819200px;}
.y5f{bottom:506.343750px;}
.yc4{bottom:507.691050px;}
.y148{bottom:507.692700px;}
.ye3{bottom:511.743450px;}
.y1b7{bottom:513.093150px;}
.y108{bottom:516.424500px;}
.ya1{bottom:516.945600px;}
.y18e{bottom:521.704500px;}
.y85{bottom:522.633450px;}
.y37{bottom:522.696900px;}
.y12a{bottom:523.819050px;}
.y5e{bottom:524.343600px;}
.yc3{bottom:525.690900px;}
.y147{bottom:525.692550px;}
.yb{bottom:526.665900px;}
.y1b6{bottom:530.492400px;}
.y1d6{bottom:534.391350px;}
.y107{bottom:534.424350px;}
.ya0{bottom:534.945450px;}
.ye2{bottom:539.702700px;}
.y18d{bottom:539.704350px;}
.y84{bottom:540.633300px;}
.y36{bottom:540.891450px;}
.y5d{bottom:542.343450px;}
.yc2{bottom:543.690750px;}
.y146{bottom:543.692400px;}
.ya{bottom:544.680600px;}
.y1b5{bottom:547.891650px;}
.y129{bottom:550.879050px;}
.y1d5{bottom:551.790600px;}
.y106{bottom:552.424200px;}
.y9f{bottom:552.945300px;}
.y16c{bottom:556.083900px;}
.ye1{bottom:557.702550px;}
.y18c{bottom:557.704200px;}
.y83{bottom:558.633150px;}
.y35{bottom:559.086000px;}
.y5c{bottom:560.343300px;}
.yc1{bottom:561.690600px;}
.y145{bottom:561.692250px;}
.y9{bottom:562.695300px;}
.y128{bottom:568.578600px;}
.y1d4{bottom:569.189850px;}
.y9e{bottom:570.945150px;}
.y16b{bottom:574.083750px;}
.y1b4{bottom:574.651350px;}
.ye0{bottom:575.702400px;}
.y18b{bottom:575.704050px;}
.y82{bottom:576.633000px;}
.y34{bottom:577.280550px;}
.yc0{bottom:579.690450px;}
.y144{bottom:579.692100px;}
.y8{bottom:580.710000px;}
.y105{bottom:581.719950px;}
.y1d3{bottom:586.589100px;}
.y9d{bottom:588.945000px;}
.y5b{bottom:589.639050px;}
.y1b3{bottom:592.050600px;}
.y16a{bottom:592.083600px;}
.ydf{bottom:593.702250px;}
.y81{bottom:594.632850px;}
.y127{bottom:595.353150px;}
.y33{bottom:595.475100px;}
.ybf{bottom:597.690300px;}
.y104{bottom:599.719800px;}
.y18a{bottom:603.679800px;}
.y1d2{bottom:603.988350px;}
.y5a{bottom:607.638900px;}
.y1b2{bottom:609.449850px;}
.y143{bottom:609.646200px;}
.y169{bottom:610.083450px;}
.yde{bottom:611.702100px;}
.y80{bottom:612.632700px;}
.y126{bottom:613.052700px;}
.y32{bottom:613.669650px;}
.ybe{bottom:615.690150px;}
.y103{bottom:617.719650px;}
.y1d1{bottom:621.387600px;}
.y189{bottom:621.679650px;}
.y59{bottom:625.638750px;}
.y1b1{bottom:626.849100px;}
.y9c{bottom:627.000000px;}
.y142{bottom:627.646050px;}
.y168{bottom:628.083300px;}
.ydd{bottom:629.701950px;}
.y7f{bottom:630.632550px;}
.y125{bottom:630.752250px;}
.ybd{bottom:633.690000px;}
.y102{bottom:635.719500px;}
.y188{bottom:639.679500px;}
.y31{bottom:640.864950px;}
.y58{bottom:643.638600px;}
.y7{bottom:643.755000px;}
.y1b0{bottom:644.248350px;}
.y141{bottom:645.645900px;}
.y167{bottom:646.083150px;}
.y124{bottom:648.451800px;}
.y7e{bottom:648.632400px;}
.y1d0{bottom:650.878050px;}
.y101{bottom:653.719350px;}
.ydc{bottom:657.677700px;}
.y30{bottom:659.059500px;}
.y57{bottom:661.638450px;}
.y1af{bottom:661.647600px;}
.ybc{bottom:663.645750px;}
.y166{bottom:664.083000px;}
.y123{bottom:666.151350px;}
.y7d{bottom:666.632250px;}
.y187{bottom:667.638750px;}
.y1cf{bottom:668.277300px;}
.y100{bottom:671.719200px;}
.ydb{bottom:675.677550px;}
.y2f{bottom:677.254050px;}
.y1ae{bottom:679.046850px;}
.y56{bottom:679.638300px;}
.ybb{bottom:681.645600px;}
.y165{bottom:682.082850px;}
.y9b{bottom:683.447400px;}
.y122{bottom:683.850900px;}
.y186{bottom:685.638600px;}
.y1ce{bottom:685.676550px;}
.yff{bottom:689.719050px;}
.y140{bottom:693.601500px;}
.yda{bottom:693.677400px;}
.y7c{bottom:695.086500px;}
.y2e{bottom:695.448600px;}
.y1ad{bottom:696.446100px;}
.y55{bottom:697.638150px;}
.yba{bottom:699.645450px;}
.y164{bottom:700.082700px;}
.y9a{bottom:701.447250px;}
.y121{bottom:701.550450px;}
.y1cd{bottom:703.075800px;}
.y185{bottom:703.638450px;}
.yfe{bottom:707.718900px;}
.y13f{bottom:711.601350px;}
.yd9{bottom:711.677250px;}
.y7b{bottom:713.086350px;}
.y2d{bottom:713.643150px;}
.y1ac{bottom:713.845350px;}
.y54{bottom:715.638000px;}
.yb9{bottom:717.645300px;}
.y163{bottom:718.082550px;}
.y120{bottom:719.250000px;}
.y99{bottom:719.447100px;}
.y1cc{bottom:720.475050px;}
.y184{bottom:721.638300px;}
.y13e{bottom:729.601200px;}
.yd8{bottom:729.677100px;}
.y7a{bottom:731.086200px;}
.y2c{bottom:731.837700px;}
.y53{bottom:733.637850px;}
.yb8{bottom:735.645150px;}
.y162{bottom:736.082400px;}
.y6{bottom:736.800600px;}
.yfd{bottom:736.998150px;}
.y98{bottom:737.446950px;}
.y1cb{bottom:737.874300px;}
.y183{bottom:739.638150px;}
.y1ab{bottom:740.605050px;}
.y13d{bottom:747.601050px;}
.yd7{bottom:747.676950px;}
.y79{bottom:749.086050px;}
.y52{bottom:751.637700px;}
.y161{bottom:754.082250px;}
.y5{bottom:754.815000px;}
.yfc{bottom:754.998000px;}
.y11f{bottom:755.010000px;}
.y1ca{bottom:755.273550px;}
.y97{bottom:755.446800px;}
.y1aa{bottom:758.004300px;}
.y2b{bottom:759.033000px;}
.yb7{bottom:765.600900px;}
.yd6{bottom:765.676800px;}
.y78{bottom:767.085900px;}
.y182{bottom:767.597400px;}
.y51{bottom:769.637550px;}
.y160{bottom:772.082100px;}
.yfb{bottom:772.997850px;}
.y96{bottom:773.446650px;}
.y1a9{bottom:775.403550px;}
.y2a{bottom:777.212700px;}
.y4{bottom:781.830000px;}
.yb6{bottom:783.600750px;}
.yd5{bottom:783.676650px;}
.y1c9{bottom:784.764000px;}
.y77{bottom:785.085750px;}
.y181{bottom:785.597250px;}
.y22{bottom:786.555300px;}
.y50{bottom:787.637400px;}
.y15f{bottom:790.081950px;}
.yfa{bottom:790.997700px;}
.y95{bottom:791.446500px;}
.y1a8{bottom:792.802800px;}
.y29{bottom:795.407250px;}
.yb5{bottom:801.600600px;}
.yd4{bottom:801.676500px;}
.y1c8{bottom:802.163250px;}
.y76{bottom:803.085600px;}
.y180{bottom:803.597100px;}
.y21{bottom:804.555150px;}
.y4f{bottom:805.637250px;}
.y11e{bottom:807.484500px;}
.y15e{bottom:808.081800px;}
.yf9{bottom:808.997550px;}
.y1a7{bottom:810.202050px;}
.y28{bottom:813.601800px;}
.y1c7{bottom:819.562500px;}
.yb4{bottom:819.600450px;}
.y94{bottom:820.501350px;}
.y75{bottom:821.085450px;}
.y17f{bottom:821.596950px;}
.y20{bottom:822.555000px;}
.y11d{bottom:825.184050px;}
.y15d{bottom:826.081650px;}
.y1a6{bottom:827.601300px;}
.yd3{bottom:829.635750px;}
.y13c{bottom:831.556350px;}
.y27{bottom:831.796350px;}
.y4e{bottom:834.916500px;}
.y1c6{bottom:836.961750px;}
.yb3{bottom:837.600300px;}
.yf8{bottom:838.276800px;}
.y93{bottom:838.501200px;}
.y74{bottom:839.085300px;}
.y17e{bottom:839.596800px;}
.y1f{bottom:840.554850px;}
.y11c{bottom:842.883600px;}
.y15c{bottom:844.081500px;}
.y1a5{bottom:845.000550px;}
.y13b{bottom:849.556200px;}
.y26{bottom:849.990900px;}
.y3{bottom:850.859250px;}
.y4d{bottom:852.916350px;}
.y1c5{bottom:854.361000px;}
.yb2{bottom:855.600150px;}
.yf7{bottom:856.276650px;}
.y92{bottom:856.501050px;}
.y73{bottom:857.085150px;}
.y17d{bottom:857.596650px;}
.y11b{bottom:860.583150px;}
.y15b{bottom:862.081350px;}
.y1e{bottom:867.555450px;}
.y13a{bottom:867.556050px;}
.y25{bottom:868.185450px;}
.y1a4{bottom:871.760250px;}
.yb1{bottom:873.600000px;}
.yf6{bottom:874.276500px;}
.y17c{bottom:875.596500px;}
.y2{bottom:877.875000px;}
.y11a{bottom:878.282700px;}
.y4c{bottom:882.195600px;}
.y1d{bottom:885.555300px;}
.y72{bottom:885.555900px;}
.y24{bottom:886.380000px;}
.y1a3{bottom:889.159500px;}
.yb0{bottom:891.599850px;}
.y15a{bottom:891.811050px;}
.yf5{bottom:892.276350px;}
.y17b{bottom:893.596350px;}
.y119{bottom:895.982250px;}
.y4b{bottom:900.195450px;}
.y1c{bottom:903.555150px;}
.y71{bottom:903.555750px;}
.y1a2{bottom:906.558750px;}
.y159{bottom:909.810900px;}
.yf4{bottom:910.276200px;}
.y118{bottom:913.681800px;}
.y4a{bottom:918.195300px;}
.y1b{bottom:921.555000px;}
.y70{bottom:921.555600px;}
.y1a1{bottom:923.958000px;}
.y158{bottom:927.810750px;}
.yf3{bottom:928.276050px;}
.y49{bottom:936.195150px;}
.y6f{bottom:939.555450px;}
.y117{bottom:940.456350px;}
.y1a0{bottom:941.357250px;}
.y157{bottom:945.810600px;}
.y48{bottom:954.195000px;}
.y6e{bottom:957.555300px;}
.y116{bottom:958.155900px;}
.y19f{bottom:958.756500px;}
.y1a{bottom:975.555150px;}
.y115{bottom:975.855450px;}
.y19e{bottom:976.155750px;}
.y47{bottom:992.475000px;}
.y19{bottom:993.555000px;}
.y18{bottom:1022.745000px;}
.y23{bottom:1034.475000px;}
.h9{height:27.853920px;}
.hd{height:28.035000px;}
.hc{height:37.380000px;}
.h2{height:42.720000px;}
.ha{height:42.891000px;}
.h5{height:45.414000px;}
.h8{height:47.193143px;}
.h4{height:55.506000px;}
.h6{height:56.133000px;}
.he{height:61.236000px;}
.hb{height:66.456000px;}
.h7{height:76.405631px;}
.h3{height:76.545000px;}
.h1{height:1262.970000px;}
.h0{height:1263.000000px;}
.w1{width:892.455000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:190.095000px;}
.x9{left:215.595000px;}
.x1a{left:232.769850px;}
.x2{left:251.715000px;}
.x3{left:324.255000px;}
.x10{left:328.785000px;}
.x5{left:354.180000px;}
.x4{left:367.695000px;}
.x11{left:375.705000px;}
.x12{left:381.480000px;}
.x6{left:385.019400px;}
.xb{left:392.475000px;}
.xa{left:396.690000px;}
.x7{left:403.290000px;}
.xc{left:413.970000px;}
.xd{left:419.625000px;}
.x13{left:432.975000px;}
.x14{left:439.800000px;}
.xe{left:445.065000px;}
.xf{left:450.825000px;}
.x15{left:462.075000px;}
.x16{left:470.475000px;}
.x17{left:492.765000px;}
.x18{left:498.540000px;}
.x1{left:506.160000px;}
.x19{left:682.440000px;}
@media print{
.v1{vertical-align:-14.933333pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-7.040000pt;}
.ls25{letter-spacing:-5.004267pt;}
.ls2e{letter-spacing:-3.197333pt;}
.ls15{letter-spacing:-3.138667pt;}
.ls2c{letter-spacing:-2.336000pt;}
.ls17{letter-spacing:-1.754133pt;}
.lsf{letter-spacing:-1.044267pt;}
.ls27{letter-spacing:-0.692267pt;}
.ls2d{letter-spacing:-0.686400pt;}
.ls2a{letter-spacing:-0.662933pt;}
.ls26{letter-spacing:-0.616000pt;}
.ls24{letter-spacing:-0.610133pt;}
.ls23{letter-spacing:-0.592533pt;}
.ls9{letter-spacing:-0.558800pt;}
.ls28{letter-spacing:-0.381333pt;}
.ls16{letter-spacing:-0.375467pt;}
.ls14{letter-spacing:-0.340267pt;}
.ls21{letter-spacing:-0.322667pt;}
.ls1f{letter-spacing:-0.281600pt;}
.ls1c{letter-spacing:-0.275733pt;}
.ls19{letter-spacing:-0.269867pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.111467pt;}
.ls5{letter-spacing:-0.022400pt;}
.lsb{letter-spacing:-0.017600pt;}
.ls29{letter-spacing:-0.012800pt;}
.lse{letter-spacing:-0.011733pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:-0.008000pt;}
.ls18{letter-spacing:-0.006400pt;}
.ls10{letter-spacing:-0.005867pt;}
.lsd{letter-spacing:-0.004800pt;}
.ls11{letter-spacing:-0.004533pt;}
.ls7{letter-spacing:-0.004267pt;}
.ls6{letter-spacing:-0.003200pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls12{letter-spacing:0.019600pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1a{letter-spacing:0.022400pt;}
.ls13{letter-spacing:0.025200pt;}
.ls2{letter-spacing:0.026667pt;}
.ls1b{letter-spacing:0.030800pt;}
.ls4{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.036400pt;}
.ls22{letter-spacing:31.146133pt;}
.ls3{letter-spacing:48.880640pt;}
.wsc9{word-spacing:-45.812800pt;}
.ws75{word-spacing:-16.320000pt;}
.wsa2{word-spacing:-14.960000pt;}
.ws5{word-spacing:-14.948267pt;}
.ws3{word-spacing:-14.666667pt;}
.wsf0{word-spacing:-14.285333pt;}
.wsdd{word-spacing:-14.050667pt;}
.ws25{word-spacing:-12.912533pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.990400pt;}
.ws24{word-spacing:-11.528000pt;}
.ws11a{word-spacing:-11.469333pt;}
.ws6{word-spacing:-11.333333pt;}
.ws1b{word-spacing:-10.666667pt;}
.ws1{word-spacing:-7.996800pt;}
.ws10c{word-spacing:-7.626667pt;}
.ws121{word-spacing:-2.188267pt;}
.ws9e{word-spacing:-2.135467pt;}
.ws124{word-spacing:-2.129600pt;}
.wsea{word-spacing:-2.024000pt;}
.wsb8{word-spacing:-1.977067pt;}
.ws31{word-spacing:-1.971200pt;}
.ws58{word-spacing:-1.918400pt;}
.ws8e{word-spacing:-1.865600pt;}
.wsba{word-spacing:-1.806933pt;}
.wsc0{word-spacing:-1.760000pt;}
.ws120{word-spacing:-1.707200pt;}
.ws52{word-spacing:-1.701333pt;}
.ws2c{word-spacing:-1.654400pt;}
.ws6f{word-spacing:-1.601600pt;}
.ws114{word-spacing:-1.595733pt;}
.ws79{word-spacing:-1.548800pt;}
.ws45{word-spacing:-1.542933pt;}
.ws62{word-spacing:-1.496000pt;}
.wsbd{word-spacing:-1.484267pt;}
.ws118{word-spacing:-1.437333pt;}
.wsf{word-spacing:-1.384533pt;}
.ws28{word-spacing:-1.331733pt;}
.wsb1{word-spacing:-1.278933pt;}
.ws37{word-spacing:-1.226133pt;}
.wsda{word-spacing:-1.220267pt;}
.ws48{word-spacing:-1.173333pt;}
.ws6a{word-spacing:-1.167467pt;}
.ws9b{word-spacing:-1.067733pt;}
.wsbf{word-spacing:-1.061867pt;}
.ws85{word-spacing:-1.014933pt;}
.wsb2{word-spacing:-0.956267pt;}
.ws68{word-spacing:-0.903467pt;}
.wsf8{word-spacing:-0.850667pt;}
.wsbe{word-spacing:-0.797867pt;}
.ws89{word-spacing:-0.745067pt;}
.ws3f{word-spacing:-0.586667pt;}
.wsfd{word-spacing:-0.539733pt;}
.wsb0{word-spacing:-0.528000pt;}
.wsd8{word-spacing:-0.481067pt;}
.ws110{word-spacing:-0.428267pt;}
.ws54{word-spacing:-0.422400pt;}
.wsa1{word-spacing:-0.375467pt;}
.wsb5{word-spacing:-0.369600pt;}
.ws103{word-spacing:-0.328533pt;}
.wsf3{word-spacing:-0.322667pt;}
.wscf{word-spacing:-0.269867pt;}
.ws35{word-spacing:-0.211200pt;}
.wsa0{word-spacing:-0.205333pt;}
.ws4c{word-spacing:-0.164267pt;}
.wsae{word-spacing:-0.152533pt;}
.ws66{word-spacing:-0.105600pt;}
.ws39{word-spacing:-0.099733pt;}
.ws95{word-spacing:-0.052800pt;}
.ws8{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.005867pt;}
.ws3c{word-spacing:0.052800pt;}
.wsc4{word-spacing:0.105600pt;}
.ws107{word-spacing:0.158400pt;}
.wsdc{word-spacing:0.164267pt;}
.ws13{word-spacing:0.211200pt;}
.ws5a{word-spacing:0.217067pt;}
.ws9c{word-spacing:0.264000pt;}
.ws83{word-spacing:0.369600pt;}
.ws8c{word-spacing:0.375467pt;}
.wsab{word-spacing:0.422400pt;}
.ws3b{word-spacing:0.428267pt;}
.ws74{word-spacing:0.475200pt;}
.ws1d{word-spacing:0.481067pt;}
.wsfb{word-spacing:0.486933pt;}
.wsdb{word-spacing:0.528000pt;}
.ws9a{word-spacing:0.533867pt;}
.ws26{word-spacing:0.539733pt;}
.wsbc{word-spacing:0.586667pt;}
.wsac{word-spacing:0.633600pt;}
.ws29{word-spacing:0.639467pt;}
.ws7e{word-spacing:0.645333pt;}
.ws6d{word-spacing:0.686400pt;}
.wsc3{word-spacing:0.692267pt;}
.ws5f{word-spacing:0.745067pt;}
.ws78{word-spacing:0.797867pt;}
.ws53{word-spacing:0.856533pt;}
.wsc8{word-spacing:0.903467pt;}
.ws50{word-spacing:0.956267pt;}
.ws109{word-spacing:1.009067pt;}
.ws9{word-spacing:1.066667pt;}
.wsa4{word-spacing:1.067733pt;}
.ws1a{word-spacing:1.119733pt;}
.ws16{word-spacing:1.173333pt;}
.wsd{word-spacing:1.224000pt;}
.ws12{word-spacing:1.226133pt;}
.wsc{word-spacing:1.228800pt;}
.ws106{word-spacing:1.232000pt;}
.wsb9{word-spacing:1.273067pt;}
.ws15{word-spacing:1.278933pt;}
.ws6c{word-spacing:1.284800pt;}
.wsdf{word-spacing:1.337600pt;}
.ws49{word-spacing:1.384533pt;}
.ws19{word-spacing:1.387200pt;}
.ws5e{word-spacing:1.390400pt;}
.wsf4{word-spacing:1.437333pt;}
.wsa9{word-spacing:1.443200pt;}
.ws98{word-spacing:1.484267pt;}
.ws11{word-spacing:1.490133pt;}
.ws21{word-spacing:1.496000pt;}
.wsb{word-spacing:1.501867pt;}
.wsd9{word-spacing:1.542933pt;}
.ws115{word-spacing:1.548800pt;}
.ws119{word-spacing:1.595733pt;}
.wsb6{word-spacing:1.601600pt;}
.wsd0{word-spacing:1.644800pt;}
.wsc2{word-spacing:1.648533pt;}
.ws41{word-spacing:1.651200pt;}
.wsf9{word-spacing:1.657600pt;}
.ws123{word-spacing:1.707200pt;}
.ws6e{word-spacing:1.760000pt;}
.ws32{word-spacing:1.812800pt;}
.wsf1{word-spacing:1.865600pt;}
.ws70{word-spacing:1.918400pt;}
.ws81{word-spacing:1.971200pt;}
.wsa{word-spacing:2.024000pt;}
.ws17{word-spacing:2.076800pt;}
.ws65{word-spacing:2.129600pt;}
.ws71{word-spacing:2.182400pt;}
.ws36{word-spacing:2.188267pt;}
.ws44{word-spacing:2.235200pt;}
.ws34{word-spacing:2.241067pt;}
.wsd6{word-spacing:2.288000pt;}
.ws87{word-spacing:2.293867pt;}
.ws93{word-spacing:2.340800pt;}
.ws2d{word-spacing:2.346667pt;}
.ws5b{word-spacing:2.399467pt;}
.wse0{word-spacing:2.405333pt;}
.ws60{word-spacing:2.446400pt;}
.ws82{word-spacing:2.452267pt;}
.wscb{word-spacing:2.499200pt;}
.ws90{word-spacing:2.505067pt;}
.ws125{word-spacing:2.557867pt;}
.ws27{word-spacing:2.610667pt;}
.ws72{word-spacing:2.616533pt;}
.ws23{word-spacing:2.663467pt;}
.ws108{word-spacing:2.669333pt;}
.wsd1{word-spacing:2.722133pt;}
.ws51{word-spacing:2.728000pt;}
.ws2e{word-spacing:2.769067pt;}
.ws11e{word-spacing:2.780800pt;}
.wse6{word-spacing:2.821867pt;}
.ws8a{word-spacing:2.827733pt;}
.wsa7{word-spacing:2.874667pt;}
.wse4{word-spacing:2.880533pt;}
.ws4f{word-spacing:2.986133pt;}
.ws47{word-spacing:3.038933pt;}
.wsaa{word-spacing:3.091733pt;}
.wse9{word-spacing:3.144533pt;}
.ws1e{word-spacing:3.197333pt;}
.ws5d{word-spacing:3.200400pt;}
.ws5c{word-spacing:3.217200pt;}
.ws2f{word-spacing:3.250133pt;}
.wsfe{word-spacing:3.256000pt;}
.ws127{word-spacing:3.302933pt;}
.ws43{word-spacing:3.308800pt;}
.ws80{word-spacing:3.355733pt;}
.wse{word-spacing:3.361600pt;}
.ws7b{word-spacing:3.408533pt;}
.wsad{word-spacing:3.414400pt;}
.ws113{word-spacing:3.461333pt;}
.ws3a{word-spacing:3.467200pt;}
.ws10e{word-spacing:3.619733pt;}
.ws91{word-spacing:3.625600pt;}
.ws67{word-spacing:3.672533pt;}
.ws40{word-spacing:3.678400pt;}
.wsd3{word-spacing:3.731200pt;}
.ws61{word-spacing:3.737067pt;}
.ws0{word-spacing:3.779200pt;}
.ws4a{word-spacing:3.784000pt;}
.ws7f{word-spacing:3.789867pt;}
.ws1c{word-spacing:3.832533pt;}
.ws117{word-spacing:3.836800pt;}
.ws94{word-spacing:3.895467pt;}
.wse8{word-spacing:3.942400pt;}
.ws55{word-spacing:3.948267pt;}
.ws18{word-spacing:3.998400pt;}
.ws30{word-spacing:4.001067pt;}
.wsde{word-spacing:4.048000pt;}
.ws3d{word-spacing:4.053867pt;}
.ws101{word-spacing:4.106667pt;}
.ws126{word-spacing:4.153600pt;}
.ws77{word-spacing:4.159467pt;}
.wsb4{word-spacing:4.265067pt;}
.wsc5{word-spacing:4.317867pt;}
.ws8d{word-spacing:4.370667pt;}
.ws122{word-spacing:4.429333pt;}
.ws22{word-spacing:4.476267pt;}
.ws116{word-spacing:4.482133pt;}
.ws2b{word-spacing:4.529067pt;}
.wseb{word-spacing:4.534933pt;}
.wsa5{word-spacing:4.581867pt;}
.ws69{word-spacing:4.587733pt;}
.ws8b{word-spacing:4.640533pt;}
.wsc6{word-spacing:4.687467pt;}
.ws10{word-spacing:4.693333pt;}
.wsed{word-spacing:4.740267pt;}
.wse2{word-spacing:4.746133pt;}
.wsbb{word-spacing:4.752000pt;}
.ws73{word-spacing:4.798933pt;}
.ws20{word-spacing:4.957333pt;}
.ws2a{word-spacing:5.010133pt;}
.ws9f{word-spacing:5.016000pt;}
.wse3{word-spacing:5.121600pt;}
.wsc7{word-spacing:5.280000pt;}
.wsc1{word-spacing:5.332800pt;}
.wsf2{word-spacing:5.385600pt;}
.wsee{word-spacing:5.432533pt;}
.ws11d{word-spacing:5.438400pt;}
.ws8f{word-spacing:5.655467pt;}
.wsf7{word-spacing:5.708267pt;}
.ws100{word-spacing:5.761067pt;}
.ws88{word-spacing:5.919467pt;}
.wse5{word-spacing:5.966400pt;}
.ws129{word-spacing:6.025067pt;}
.ws38{word-spacing:6.077867pt;}
.wsec{word-spacing:6.124800pt;}
.ws10f{word-spacing:6.130667pt;}
.wscc{word-spacing:6.189333pt;}
.ws63{word-spacing:6.230400pt;}
.ws9d{word-spacing:6.242133pt;}
.ws2{word-spacing:6.277333pt;}
.ws4e{word-spacing:6.289067pt;}
.wsca{word-spacing:6.341867pt;}
.ws96{word-spacing:6.400533pt;}
.ws86{word-spacing:6.453333pt;}
.wsd5{word-spacing:6.558933pt;}
.wsf5{word-spacing:6.611733pt;}
.ws104{word-spacing:6.664533pt;}
.wse7{word-spacing:6.717333pt;}
.ws99{word-spacing:6.770133pt;}
.ws105{word-spacing:6.875733pt;}
.ws4d{word-spacing:7.040000pt;}
.ws64{word-spacing:7.086933pt;}
.ws76{word-spacing:7.092800pt;}
.wsff{word-spacing:7.198400pt;}
.ws59{word-spacing:7.356800pt;}
.ws42{word-spacing:7.362667pt;}
.wsce{word-spacing:7.521067pt;}
.wsb7{word-spacing:7.573867pt;}
.wsd2{word-spacing:7.626667pt;}
.ws102{word-spacing:7.679467pt;}
.ws128{word-spacing:7.685333pt;}
.ws14{word-spacing:7.785067pt;}
.wsa3{word-spacing:7.837867pt;}
.ws10b{word-spacing:7.896533pt;}
.ws11b{word-spacing:7.943467pt;}
.ws1f{word-spacing:7.996267pt;}
.ws46{word-spacing:8.688533pt;}
.ws84{word-spacing:8.747200pt;}
.ws7c{word-spacing:8.794133pt;}
.ws111{word-spacing:8.852800pt;}
.ws112{word-spacing:8.905600pt;}
.ws97{word-spacing:9.333867pt;}
.wsaf{word-spacing:9.592000pt;}
.ws33{word-spacing:9.597867pt;}
.wsa6{word-spacing:9.703467pt;}
.wsd4{word-spacing:9.756267pt;}
.ws3e{word-spacing:9.973333pt;}
.ws10a{word-spacing:10.131733pt;}
.ws7a{word-spacing:10.237333pt;}
.wsfc{word-spacing:10.284267pt;}
.ws10d{word-spacing:10.342933pt;}
.ws56{word-spacing:10.507200pt;}
.ws57{word-spacing:10.612800pt;}
.wsf6{word-spacing:10.988267pt;}
.ws11f{word-spacing:11.410667pt;}
.wsef{word-spacing:11.627733pt;}
.ws6b{word-spacing:11.786133pt;}
.wsd7{word-spacing:11.997333pt;}
.wse1{word-spacing:12.372800pt;}
.wsa8{word-spacing:12.801067pt;}
.wsfa{word-spacing:13.440533pt;}
.ws92{word-spacing:13.493333pt;}
.ws11c{word-spacing:14.185600pt;}
.wscd{word-spacing:14.344000pt;}
.ws4b{word-spacing:20.269333pt;}
.wsb3{word-spacing:21.812267pt;}
._c{margin-left:-33.105600pt;}
._b{margin-left:-31.826667pt;}
._7{margin-left:-6.880000pt;}
._5{margin-left:-5.440000pt;}
._6{margin-left:-4.473067pt;}
._2{margin-left:-2.872000pt;}
._1{margin-left:-1.912000pt;}
._0{margin-left:-0.896000pt;}
._3{width:1.032533pt;}
._e{width:2.170667pt;}
._8{width:3.144533pt;}
._4{width:4.394133pt;}
._a{width:5.919467pt;}
._9{width:7.122133pt;}
._d{width:8.758933pt;}
.fsb{font-size:28.000000pt;}
.fs7{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs6{font-size:98.144677pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:166.586667pt;}
.y17{bottom:205.133333pt;}
.y91{bottom:206.027333pt;}
.yd2{bottom:206.027867pt;}
.y17a{bottom:206.028533pt;}
.yaf{bottom:206.029067pt;}
.y156{bottom:206.029333pt;}
.y1c4{bottom:206.032000pt;}
.yf2{bottom:206.032267pt;}
.y6d{bottom:206.032933pt;}
.y139{bottom:206.033067pt;}
.y19d{bottom:206.033733pt;}
.y46{bottom:206.037333pt;}
.y1e6{bottom:206.049867pt;}
.y16{bottom:218.733333pt;}
.y1c3{bottom:221.498000pt;}
.y1e5{bottom:221.515867pt;}
.y114{bottom:221.765200pt;}
.y90{bottom:222.027200pt;}
.yd1{bottom:222.027733pt;}
.y179{bottom:222.028400pt;}
.yae{bottom:222.028933pt;}
.y155{bottom:222.029200pt;}
.yf1{bottom:222.032133pt;}
.y6c{bottom:222.032800pt;}
.y138{bottom:222.032933pt;}
.y19c{bottom:222.033600pt;}
.y45{bottom:222.210267pt;}
.y15{bottom:236.066667pt;}
.y1c2{bottom:236.964000pt;}
.y1e4{bottom:236.981867pt;}
.y113{bottom:237.498133pt;}
.y8f{bottom:238.027067pt;}
.yd0{bottom:238.027600pt;}
.y178{bottom:238.028267pt;}
.yad{bottom:238.028800pt;}
.yf0{bottom:238.032000pt;}
.y6b{bottom:238.032667pt;}
.y137{bottom:238.032800pt;}
.y19b{bottom:238.033467pt;}
.y44{bottom:238.383200pt;}
.y154{bottom:248.656533pt;}
.y1c1{bottom:252.430000pt;}
.y1e3{bottom:252.447867pt;}
.y112{bottom:253.231067pt;}
.y8e{bottom:254.026933pt;}
.ycf{bottom:254.027467pt;}
.y177{bottom:254.028133pt;}
.yef{bottom:254.031867pt;}
.y6a{bottom:254.032533pt;}
.y136{bottom:254.032667pt;}
.y43{bottom:254.556133pt;}
.y19a{bottom:262.886133pt;}
.yac{bottom:263.855333pt;}
.y153{bottom:264.656400pt;}
.y1c0{bottom:267.896000pt;}
.y8d{bottom:270.026800pt;}
.y176{bottom:270.028000pt;}
.yee{bottom:270.031733pt;}
.y69{bottom:270.032400pt;}
.y42{bottom:270.729067pt;}
.y14{bottom:277.360400pt;}
.y135{bottom:278.099200pt;}
.y1e2{bottom:278.661600pt;}
.y199{bottom:278.886000pt;}
.y111{bottom:278.991600pt;}
.yab{bottom:279.855200pt;}
.yce{bottom:280.654800pt;}
.y152{bottom:280.656267pt;}
.y1bf{bottom:283.362000pt;}
.yed{bottom:286.031600pt;}
.y68{bottom:286.032267pt;}
.y13{bottom:293.373467pt;}
.y134{bottom:294.099067pt;}
.y1e1{bottom:294.127600pt;}
.y198{bottom:294.885867pt;}
.y41{bottom:294.902667pt;}
.yaa{bottom:295.855067pt;}
.y175{bottom:296.467600pt;}
.ycd{bottom:296.654667pt;}
.y151{bottom:296.656133pt;}
.y1be{bottom:298.828000pt;}
.yec{bottom:302.031467pt;}
.y67{bottom:302.032133pt;}
.y8c{bottom:303.332800pt;}
.y1e0{bottom:309.593600pt;}
.y133{bottom:310.098933pt;}
.y197{bottom:310.885733pt;}
.y40{bottom:311.075600pt;}
.ya9{bottom:311.854933pt;}
.y174{bottom:312.467467pt;}
.ycc{bottom:312.654533pt;}
.y150{bottom:312.656000pt;}
.y1bd{bottom:314.294000pt;}
.y12{bottom:317.387200pt;}
.yeb{bottom:318.031333pt;}
.y8b{bottom:322.000000pt;}
.y1df{bottom:325.059600pt;}
.y132{bottom:326.098800pt;}
.y196{bottom:326.885600pt;}
.y3f{bottom:327.248533pt;}
.ya8{bottom:327.854800pt;}
.y66{bottom:328.058133pt;}
.y173{bottom:328.467333pt;}
.ycb{bottom:328.654400pt;}
.y14f{bottom:328.655867pt;}
.y1bc{bottom:329.760000pt;}
.y110{bottom:331.045067pt;}
.y11{bottom:333.400267pt;}
.yea{bottom:334.031200pt;}
.y1de{bottom:340.525600pt;}
.y195{bottom:342.885467pt;}
.y3e{bottom:343.421467pt;}
.ya7{bottom:343.854667pt;}
.y65{bottom:344.058000pt;}
.y172{bottom:344.467200pt;}
.yca{bottom:344.654267pt;}
.y14e{bottom:344.655733pt;}
.y131{bottom:345.938400pt;}
.y10f{bottom:347.044933pt;}
.y10{bottom:349.413333pt;}
.ye9{bottom:350.031067pt;}
.y1dd{bottom:355.991600pt;}
.y194{bottom:358.885333pt;}
.y3d{bottom:359.594400pt;}
.ya6{bottom:359.854533pt;}
.y64{bottom:360.057867pt;}
.y171{bottom:360.467067pt;}
.yc9{bottom:360.654133pt;}
.y14d{bottom:360.655600pt;}
.y1bb{bottom:361.546667pt;}
.y130{bottom:361.938267pt;}
.y10e{bottom:363.044800pt;}
.ye8{bottom:366.030933pt;}
.y1dc{bottom:371.457600pt;}
.y193{bottom:374.885200pt;}
.y8a{bottom:375.270933pt;}
.y3c{bottom:375.767333pt;}
.y63{bottom:376.057733pt;}
.y170{bottom:376.466933pt;}
.yc8{bottom:376.654000pt;}
.y14c{bottom:376.655467pt;}
.y12f{bottom:377.938133pt;}
.y10d{bottom:379.044667pt;}
.ye7{bottom:382.030800pt;}
.ya5{bottom:385.681067pt;}
.y1db{bottom:386.923600pt;}
.y89{bottom:391.270800pt;}
.y3b{bottom:391.940267pt;}
.y62{bottom:392.057600pt;}
.y16f{bottom:392.466800pt;}
.yc7{bottom:392.653867pt;}
.y14b{bottom:392.655333pt;}
.y12e{bottom:393.938000pt;}
.y10c{bottom:395.044533pt;}
.yf{bottom:396.107733pt;}
.y192{bottom:399.737867pt;}
.ya4{bottom:401.680933pt;}
.y1da{bottom:402.389600pt;}
.ye6{bottom:406.883467pt;}
.y88{bottom:407.270667pt;}
.y61{bottom:408.057467pt;}
.y16e{bottom:408.466667pt;}
.yc6{bottom:408.653733pt;}
.y1ba{bottom:409.684800pt;}
.y10b{bottom:411.044400pt;}
.ye{bottom:412.107600pt;}
.y12d{bottom:413.777600pt;}
.y191{bottom:415.737733pt;}
.y3a{bottom:416.100667pt;}
.y1d9{bottom:417.855600pt;}
.y14a{bottom:419.282667pt;}
.ye5{bottom:422.883333pt;}
.y87{bottom:423.270533pt;}
.yc5{bottom:424.653600pt;}
.y1b9{bottom:425.150800pt;}
.y10a{bottom:427.044267pt;}
.ya3{bottom:427.507467pt;}
.yd{bottom:428.120667pt;}
.y12c{bottom:429.777467pt;}
.y190{bottom:431.737600pt;}
.y39{bottom:432.273600pt;}
.y1d8{bottom:433.321600pt;}
.y60{bottom:434.083467pt;}
.y149{bottom:435.282533pt;}
.ye4{bottom:438.883200pt;}
.y86{bottom:439.270400pt;}
.y1b8{bottom:440.616800pt;}
.y16d{bottom:442.893333pt;}
.y109{bottom:443.044133pt;}
.ya2{bottom:443.507333pt;}
.yc{bottom:444.133733pt;}
.y18f{bottom:447.737467pt;}
.y38{bottom:448.446533pt;}
.y1d7{bottom:448.787600pt;}
.y12b{bottom:449.617067pt;}
.y5f{bottom:450.083333pt;}
.yc4{bottom:451.280933pt;}
.y148{bottom:451.282400pt;}
.ye3{bottom:454.883067pt;}
.y1b7{bottom:456.082800pt;}
.y108{bottom:459.044000pt;}
.ya1{bottom:459.507200pt;}
.y18e{bottom:463.737333pt;}
.y85{bottom:464.563067pt;}
.y37{bottom:464.619467pt;}
.y12a{bottom:465.616933pt;}
.y5e{bottom:466.083200pt;}
.yc3{bottom:467.280800pt;}
.y147{bottom:467.282267pt;}
.yb{bottom:468.147467pt;}
.y1b6{bottom:471.548800pt;}
.y1d6{bottom:475.014533pt;}
.y107{bottom:475.043867pt;}
.ya0{bottom:475.507067pt;}
.ye2{bottom:479.735733pt;}
.y18d{bottom:479.737200pt;}
.y84{bottom:480.562933pt;}
.y36{bottom:480.792400pt;}
.y5d{bottom:482.083067pt;}
.yc2{bottom:483.280667pt;}
.y146{bottom:483.282133pt;}
.ya{bottom:484.160533pt;}
.y1b5{bottom:487.014800pt;}
.y129{bottom:489.670267pt;}
.y1d5{bottom:490.480533pt;}
.y106{bottom:491.043733pt;}
.y9f{bottom:491.506933pt;}
.y16c{bottom:494.296800pt;}
.ye1{bottom:495.735600pt;}
.y18c{bottom:495.737067pt;}
.y83{bottom:496.562800pt;}
.y35{bottom:496.965333pt;}
.y5c{bottom:498.082933pt;}
.yc1{bottom:499.280533pt;}
.y145{bottom:499.282000pt;}
.y9{bottom:500.173600pt;}
.y128{bottom:505.403200pt;}
.y1d4{bottom:505.946533pt;}
.y9e{bottom:507.506800pt;}
.y16b{bottom:510.296667pt;}
.y1b4{bottom:510.801200pt;}
.ye0{bottom:511.735467pt;}
.y18b{bottom:511.736933pt;}
.y82{bottom:512.562667pt;}
.y34{bottom:513.138267pt;}
.yc0{bottom:515.280400pt;}
.y144{bottom:515.281867pt;}
.y8{bottom:516.186667pt;}
.y105{bottom:517.084400pt;}
.y1d3{bottom:521.412533pt;}
.y9d{bottom:523.506667pt;}
.y5b{bottom:524.123600pt;}
.y1b3{bottom:526.267200pt;}
.y16a{bottom:526.296533pt;}
.ydf{bottom:527.735333pt;}
.y81{bottom:528.562533pt;}
.y127{bottom:529.202800pt;}
.y33{bottom:529.311200pt;}
.ybf{bottom:531.280267pt;}
.y104{bottom:533.084267pt;}
.y18a{bottom:536.604267pt;}
.y1d2{bottom:536.878533pt;}
.y5a{bottom:540.123467pt;}
.y1b2{bottom:541.733200pt;}
.y143{bottom:541.907733pt;}
.y169{bottom:542.296400pt;}
.yde{bottom:543.735200pt;}
.y80{bottom:544.562400pt;}
.y126{bottom:544.935733pt;}
.y32{bottom:545.484133pt;}
.ybe{bottom:547.280133pt;}
.y103{bottom:549.084133pt;}
.y1d1{bottom:552.344533pt;}
.y189{bottom:552.604133pt;}
.y59{bottom:556.123333pt;}
.y1b1{bottom:557.199200pt;}
.y9c{bottom:557.333333pt;}
.y142{bottom:557.907600pt;}
.y168{bottom:558.296267pt;}
.ydd{bottom:559.735067pt;}
.y7f{bottom:560.562267pt;}
.y125{bottom:560.668667pt;}
.ybd{bottom:563.280000pt;}
.y102{bottom:565.084000pt;}
.y188{bottom:568.604000pt;}
.y31{bottom:569.657733pt;}
.y58{bottom:572.123200pt;}
.y7{bottom:572.226667pt;}
.y1b0{bottom:572.665200pt;}
.y141{bottom:573.907467pt;}
.y167{bottom:574.296133pt;}
.y124{bottom:576.401600pt;}
.y7e{bottom:576.562133pt;}
.y1d0{bottom:578.558267pt;}
.y101{bottom:581.083867pt;}
.ydc{bottom:584.602400pt;}
.y30{bottom:585.830667pt;}
.y57{bottom:588.123067pt;}
.y1af{bottom:588.131200pt;}
.ybc{bottom:589.907333pt;}
.y166{bottom:590.296000pt;}
.y123{bottom:592.134533pt;}
.y7d{bottom:592.562000pt;}
.y187{bottom:593.456667pt;}
.y1cf{bottom:594.024267pt;}
.y100{bottom:597.083733pt;}
.ydb{bottom:600.602267pt;}
.y2f{bottom:602.003600pt;}
.y1ae{bottom:603.597200pt;}
.y56{bottom:604.122933pt;}
.ybb{bottom:605.907200pt;}
.y165{bottom:606.295867pt;}
.y9b{bottom:607.508800pt;}
.y122{bottom:607.867467pt;}
.y186{bottom:609.456533pt;}
.y1ce{bottom:609.490267pt;}
.yff{bottom:613.083600pt;}
.y140{bottom:616.534667pt;}
.yda{bottom:616.602133pt;}
.y7c{bottom:617.854667pt;}
.y2e{bottom:618.176533pt;}
.y1ad{bottom:619.063200pt;}
.y55{bottom:620.122800pt;}
.yba{bottom:621.907067pt;}
.y164{bottom:622.295733pt;}
.y9a{bottom:623.508667pt;}
.y121{bottom:623.600400pt;}
.y1cd{bottom:624.956267pt;}
.y185{bottom:625.456400pt;}
.yfe{bottom:629.083467pt;}
.y13f{bottom:632.534533pt;}
.yd9{bottom:632.602000pt;}
.y7b{bottom:633.854533pt;}
.y2d{bottom:634.349467pt;}
.y1ac{bottom:634.529200pt;}
.y54{bottom:636.122667pt;}
.yb9{bottom:637.906933pt;}
.y163{bottom:638.295600pt;}
.y120{bottom:639.333333pt;}
.y99{bottom:639.508533pt;}
.y1cc{bottom:640.422267pt;}
.y184{bottom:641.456267pt;}
.y13e{bottom:648.534400pt;}
.yd8{bottom:648.601867pt;}
.y7a{bottom:649.854400pt;}
.y2c{bottom:650.522400pt;}
.y53{bottom:652.122533pt;}
.yb8{bottom:653.906800pt;}
.y162{bottom:654.295467pt;}
.y6{bottom:654.933867pt;}
.yfd{bottom:655.109467pt;}
.y98{bottom:655.508400pt;}
.y1cb{bottom:655.888267pt;}
.y183{bottom:657.456133pt;}
.y1ab{bottom:658.315600pt;}
.y13d{bottom:664.534267pt;}
.yd7{bottom:664.601733pt;}
.y79{bottom:665.854267pt;}
.y52{bottom:668.122400pt;}
.y161{bottom:670.295333pt;}
.y5{bottom:670.946667pt;}
.yfc{bottom:671.109333pt;}
.y11f{bottom:671.120000pt;}
.y1ca{bottom:671.354267pt;}
.y97{bottom:671.508267pt;}
.y1aa{bottom:673.781600pt;}
.y2b{bottom:674.696000pt;}
.yb7{bottom:680.534133pt;}
.yd6{bottom:680.601600pt;}
.y78{bottom:681.854133pt;}
.y182{bottom:682.308800pt;}
.y51{bottom:684.122267pt;}
.y160{bottom:686.295200pt;}
.yfb{bottom:687.109200pt;}
.y96{bottom:687.508133pt;}
.y1a9{bottom:689.247600pt;}
.y2a{bottom:690.855733pt;}
.y4{bottom:694.960000pt;}
.yb6{bottom:696.534000pt;}
.yd5{bottom:696.601467pt;}
.y1c9{bottom:697.568000pt;}
.y77{bottom:697.854000pt;}
.y181{bottom:698.308667pt;}
.y22{bottom:699.160267pt;}
.y50{bottom:700.122133pt;}
.y15f{bottom:702.295067pt;}
.yfa{bottom:703.109067pt;}
.y95{bottom:703.508000pt;}
.y1a8{bottom:704.713600pt;}
.y29{bottom:707.028667pt;}
.yb5{bottom:712.533867pt;}
.yd4{bottom:712.601333pt;}
.y1c8{bottom:713.034000pt;}
.y76{bottom:713.853867pt;}
.y180{bottom:714.308533pt;}
.y21{bottom:715.160133pt;}
.y4f{bottom:716.122000pt;}
.y11e{bottom:717.764000pt;}
.y15e{bottom:718.294933pt;}
.yf9{bottom:719.108933pt;}
.y1a7{bottom:720.179600pt;}
.y28{bottom:723.201600pt;}
.y1c7{bottom:728.500000pt;}
.yb4{bottom:728.533733pt;}
.y94{bottom:729.334533pt;}
.y75{bottom:729.853733pt;}
.y17f{bottom:730.308400pt;}
.y20{bottom:731.160000pt;}
.y11d{bottom:733.496933pt;}
.y15d{bottom:734.294800pt;}
.y1a6{bottom:735.645600pt;}
.yd3{bottom:737.454000pt;}
.y13c{bottom:739.161200pt;}
.y27{bottom:739.374533pt;}
.y4e{bottom:742.148000pt;}
.y1c6{bottom:743.966000pt;}
.yb3{bottom:744.533600pt;}
.yf8{bottom:745.134933pt;}
.y93{bottom:745.334400pt;}
.y74{bottom:745.853600pt;}
.y17e{bottom:746.308267pt;}
.y1f{bottom:747.159867pt;}
.y11c{bottom:749.229867pt;}
.y15c{bottom:750.294667pt;}
.y1a5{bottom:751.111600pt;}
.y13b{bottom:755.161067pt;}
.y26{bottom:755.547467pt;}
.y3{bottom:756.319333pt;}
.y4d{bottom:758.147867pt;}
.y1c5{bottom:759.432000pt;}
.yb2{bottom:760.533467pt;}
.yf7{bottom:761.134800pt;}
.y92{bottom:761.334267pt;}
.y73{bottom:761.853467pt;}
.y17d{bottom:762.308133pt;}
.y11b{bottom:764.962800pt;}
.y15b{bottom:766.294533pt;}
.y1e{bottom:771.160400pt;}
.y13a{bottom:771.160933pt;}
.y25{bottom:771.720400pt;}
.y1a4{bottom:774.898000pt;}
.yb1{bottom:776.533333pt;}
.yf6{bottom:777.134667pt;}
.y17c{bottom:778.308000pt;}
.y2{bottom:780.333333pt;}
.y11a{bottom:780.695733pt;}
.y4c{bottom:784.173867pt;}
.y1d{bottom:787.160267pt;}
.y72{bottom:787.160800pt;}
.y24{bottom:787.893333pt;}
.y1a3{bottom:790.364000pt;}
.yb0{bottom:792.533200pt;}
.y15a{bottom:792.720933pt;}
.yf5{bottom:793.134533pt;}
.y17b{bottom:794.307867pt;}
.y119{bottom:796.428667pt;}
.y4b{bottom:800.173733pt;}
.y1c{bottom:803.160133pt;}
.y71{bottom:803.160667pt;}
.y1a2{bottom:805.830000pt;}
.y159{bottom:808.720800pt;}
.yf4{bottom:809.134400pt;}
.y118{bottom:812.161600pt;}
.y4a{bottom:816.173600pt;}
.y1b{bottom:819.160000pt;}
.y70{bottom:819.160533pt;}
.y1a1{bottom:821.296000pt;}
.y158{bottom:824.720667pt;}
.yf3{bottom:825.134267pt;}
.y49{bottom:832.173467pt;}
.y6f{bottom:835.160400pt;}
.y117{bottom:835.961200pt;}
.y1a0{bottom:836.762000pt;}
.y157{bottom:840.720533pt;}
.y48{bottom:848.173333pt;}
.y6e{bottom:851.160267pt;}
.y116{bottom:851.694133pt;}
.y19f{bottom:852.228000pt;}
.y1a{bottom:867.160133pt;}
.y115{bottom:867.427067pt;}
.y19e{bottom:867.694000pt;}
.y47{bottom:882.200000pt;}
.y19{bottom:883.160000pt;}
.y18{bottom:909.106667pt;}
.y23{bottom:919.533333pt;}
.h9{height:24.759040pt;}
.hd{height:24.920000pt;}
.hc{height:33.226667pt;}
.h2{height:37.973333pt;}
.ha{height:38.125333pt;}
.h5{height:40.368000pt;}
.h8{height:41.949460pt;}
.h4{height:49.338667pt;}
.h6{height:49.896000pt;}
.he{height:54.432000pt;}
.hb{height:59.072000pt;}
.h7{height:67.916117pt;}
.h3{height:68.040000pt;}
.h1{height:1122.640000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.293333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:168.973333pt;}
.x9{left:191.640000pt;}
.x1a{left:206.906533pt;}
.x2{left:223.746667pt;}
.x3{left:288.226667pt;}
.x10{left:292.253333pt;}
.x5{left:314.826667pt;}
.x4{left:326.840000pt;}
.x11{left:333.960000pt;}
.x12{left:339.093333pt;}
.x6{left:342.239467pt;}
.xb{left:348.866667pt;}
.xa{left:352.613333pt;}
.x7{left:358.480000pt;}
.xc{left:367.973333pt;}
.xd{left:373.000000pt;}
.x13{left:384.866667pt;}
.x14{left:390.933333pt;}
.xe{left:395.613333pt;}
.xf{left:400.733333pt;}
.x15{left:410.733333pt;}
.x16{left:418.200000pt;}
.x17{left:438.013333pt;}
.x18{left:443.146667pt;}
.x1{left:449.920000pt;}
.x19{left:606.613333pt;}
}

