
    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_f295ee376efd98076f644ee7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.968000;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_3441c7de2b51ce50ba09ba13.woff')format("woff");}.ff2{font-family:ff2;line-height:0.882000;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_d4203d3227bd11335550f387.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff136a454edbba453cca7f20.woff')format("woff");}.ff4{font-family:ff4;line-height:0.882000;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_23f4fd5bfb2c1c9dca862e62.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_78fde8cefa21c529205ef745.woff')format("woff");}.ff6{font-family:ff6;line-height:1.176000;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_65cba7260aaf16d4f715cbe4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.192000;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_f6a05ec019f37f370e1b69c8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_139c74d71cc1256a27659ba1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882000;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_724d286090887c019a7db648.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_37d0f827d19ea3dbc92dcd1f.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m3{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-5.328000px;}
.ls4{letter-spacing:-4.644000px;}
.ls9{letter-spacing:-2.857363px;}
.ls6{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-2.052000px;}
.ls8{letter-spacing:-1.620000px;}
.lsa{letter-spacing:-1.490798px;}
.ls1{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-1.055982px;}
.ls5{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.432000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws0{word-spacing:-131.100000px;}
.ws82{word-spacing:-16.800000px;}
.wsdd{word-spacing:-13.355065px;}
.ws20{word-spacing:-12.480000px;}
.wsde{word-spacing:-12.299084px;}
.ws3{word-spacing:-10.704000px;}
.ws2{word-spacing:-5.376000px;}
.ws89{word-spacing:-4.020000px;}
.ws5a{word-spacing:-3.660000px;}
.ws41{word-spacing:-3.240000px;}
.ws45{word-spacing:-2.772000px;}
.wsd0{word-spacing:-2.760000px;}
.ws2b{word-spacing:-2.700000px;}
.ws93{word-spacing:-2.460000px;}
.ws1e{word-spacing:-2.352000px;}
.wscf{word-spacing:-2.340000px;}
.ws54{word-spacing:-2.280000px;}
.wsa8{word-spacing:-2.220000px;}
.ws3a{word-spacing:-2.160000px;}
.wsd3{word-spacing:-2.100000px;}
.ws4a{word-spacing:-2.040000px;}
.ws15{word-spacing:-1.980000px;}
.wsd8{word-spacing:-1.860000px;}
.wsc3{word-spacing:-1.800000px;}
.ws2e{word-spacing:-1.740000px;}
.wsc0{word-spacing:-1.680000px;}
.ws28{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.560000px;}
.wsa2{word-spacing:-1.500000px;}
.ws85{word-spacing:-1.440000px;}
.wse2{word-spacing:-1.380000px;}
.wsb2{word-spacing:-1.260000px;}
.ws73{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.080000px;}
.ws81{word-spacing:-1.026000px;}
.wsf1{word-spacing:-1.020000px;}
.wsdc{word-spacing:-0.960000px;}
.wsd6{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.780000px;}
.ws94{word-spacing:-0.660000px;}
.ws71{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.480000px;}
.ws87{word-spacing:-0.420000px;}
.ws9a{word-spacing:-0.360000px;}
.wsac{word-spacing:-0.300000px;}
.wsa7{word-spacing:-0.240000px;}
.wsa5{word-spacing:-0.120000px;}
.ws90{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.060000px;}
.wsa3{word-spacing:0.180000px;}
.ws6b{word-spacing:0.240000px;}
.ws3c{word-spacing:0.300000px;}
.ws1f{word-spacing:0.378000px;}
.wsc4{word-spacing:0.420000px;}
.wsa9{word-spacing:0.540000px;}
.ws40{word-spacing:0.660000px;}
.ws11{word-spacing:0.780000px;}
.ws70{word-spacing:0.840000px;}
.wsb{word-spacing:0.900000px;}
.wsd1{word-spacing:0.960000px;}
.wsbf{word-spacing:1.080000px;}
.ws7{word-spacing:1.140000px;}
.ws3f{word-spacing:1.260000px;}
.ws4{word-spacing:1.296000px;}
.wsbc{word-spacing:1.320000px;}
.ws98{word-spacing:1.380000px;}
.ws12{word-spacing:1.440000px;}
.wsef{word-spacing:1.490798px;}
.ws7d{word-spacing:1.500000px;}
.ws58{word-spacing:1.560000px;}
.wsdf{word-spacing:1.620000px;}
.ws6a{word-spacing:1.680000px;}
.ws74{word-spacing:1.740000px;}
.wsd9{word-spacing:1.800000px;}
.ws5c{word-spacing:2.040000px;}
.wsc2{word-spacing:2.052000px;}
.wseb{word-spacing:2.160000px;}
.ws1b{word-spacing:2.220000px;}
.ws1c{word-spacing:2.298314px;}
.ws38{word-spacing:2.340000px;}
.ws6f{word-spacing:2.400000px;}
.ws97{word-spacing:2.460000px;}
.ws8c{word-spacing:2.580000px;}
.ws3e{word-spacing:2.640000px;}
.ws96{word-spacing:2.700000px;}
.ws80{word-spacing:2.820000px;}
.wsee{word-spacing:2.857363px;}
.ws9c{word-spacing:2.880000px;}
.ws76{word-spacing:2.940000px;}
.ws2d{word-spacing:3.000000px;}
.ws55{word-spacing:3.060000px;}
.ws77{word-spacing:3.120000px;}
.wscd{word-spacing:3.240000px;}
.ws52{word-spacing:3.300000px;}
.ws72{word-spacing:3.420000px;}
.ws13{word-spacing:3.480000px;}
.wsb5{word-spacing:3.540000px;}
.wsc8{word-spacing:3.660000px;}
.wsc5{word-spacing:3.720000px;}
.ws8{word-spacing:3.900000px;}
.wsce{word-spacing:3.960000px;}
.wsb8{word-spacing:4.020000px;}
.ws39{word-spacing:4.080000px;}
.ws14{word-spacing:4.140000px;}
.wsc{word-spacing:4.200000px;}
.ws16{word-spacing:4.260000px;}
.wse0{word-spacing:4.320000px;}
.ws19{word-spacing:4.380000px;}
.wsf{word-spacing:4.440000px;}
.wsd7{word-spacing:4.620000px;}
.ws83{word-spacing:4.644000px;}
.ws6{word-spacing:4.680000px;}
.ws50{word-spacing:4.800000px;}
.ws48{word-spacing:4.860000px;}
.ws4e{word-spacing:4.980000px;}
.ws34{word-spacing:5.040000px;}
.wsca{word-spacing:5.160000px;}
.ws27{word-spacing:5.220000px;}
.wsbd{word-spacing:5.340000px;}
.wsc1{word-spacing:5.460000px;}
.wsbb{word-spacing:5.520000px;}
.ws51{word-spacing:5.580000px;}
.ws17{word-spacing:5.640000px;}
.ws88{word-spacing:5.700000px;}
.ws23{word-spacing:5.760000px;}
.ws7a{word-spacing:5.820000px;}
.ws56{word-spacing:5.880000px;}
.ws3b{word-spacing:5.940000px;}
.wsa0{word-spacing:6.000000px;}
.ws44{word-spacing:6.060000px;}
.wsaa{word-spacing:6.120000px;}
.ws2f{word-spacing:6.180000px;}
.ws9b{word-spacing:6.240000px;}
.ws8d{word-spacing:6.420000px;}
.ws9e{word-spacing:6.480000px;}
.wsf0{word-spacing:6.522241px;}
.ws59{word-spacing:6.600000px;}
.wsb9{word-spacing:6.720000px;}
.ws10{word-spacing:6.780000px;}
.ws29{word-spacing:6.840000px;}
.wsae{word-spacing:6.900000px;}
.ws99{word-spacing:6.960000px;}
.ws7f{word-spacing:7.080000px;}
.ws42{word-spacing:7.200000px;}
.ws25{word-spacing:7.260000px;}
.ws8a{word-spacing:7.320000px;}
.ws86{word-spacing:7.380000px;}
.wsa1{word-spacing:7.500000px;}
.wsc7{word-spacing:7.560000px;}
.wsec{word-spacing:7.578223px;}
.ws35{word-spacing:7.620000px;}
.ws6d{word-spacing:7.680000px;}
.ws8b{word-spacing:7.740000px;}
.ws79{word-spacing:7.920000px;}
.ws75{word-spacing:7.980000px;}
.ws2a{word-spacing:8.040000px;}
.wse{word-spacing:8.160000px;}
.wse7{word-spacing:8.220000px;}
.ws3d{word-spacing:8.280000px;}
.wsa6{word-spacing:8.340000px;}
.wsba{word-spacing:8.520000px;}
.wsdb{word-spacing:8.580000px;}
.wsa4{word-spacing:8.700000px;}
.ws61{word-spacing:8.760000px;}
.ws4f{word-spacing:8.820000px;}
.ws4c{word-spacing:8.880000px;}
.ws47{word-spacing:9.000000px;}
.ws32{word-spacing:9.240000px;}
.wscc{word-spacing:9.300000px;}
.wse5{word-spacing:9.360000px;}
.wsb6{word-spacing:9.540000px;}
.ws78{word-spacing:9.600000px;}
.wscb{word-spacing:9.660000px;}
.wsaf{word-spacing:9.720000px;}
.ws46{word-spacing:9.840000px;}
.ws1a{word-spacing:9.900000px;}
.ws53{word-spacing:9.960000px;}
.ws6c{word-spacing:10.380000px;}
.ws8e{word-spacing:10.440000px;}
.ws22{word-spacing:10.500000px;}
.wse1{word-spacing:10.560000px;}
.wsda{word-spacing:10.620000px;}
.ws57{word-spacing:10.680000px;}
.ws95{word-spacing:10.740000px;}
.ws7e{word-spacing:10.920000px;}
.ws8f{word-spacing:11.040000px;}
.ws1d{word-spacing:11.160000px;}
.ws31{word-spacing:11.220000px;}
.wsd4{word-spacing:11.340000px;}
.wse4{word-spacing:11.400000px;}
.wsd2{word-spacing:11.460000px;}
.ws37{word-spacing:11.520000px;}
.ws63{word-spacing:11.580000px;}
.ws49{word-spacing:11.700000px;}
.ws69{word-spacing:11.760000px;}
.wsf4{word-spacing:11.802151px;}
.ws9d{word-spacing:12.000000px;}
.ws4d{word-spacing:12.180000px;}
.wsc9{word-spacing:12.420000px;}
.ws6e{word-spacing:12.480000px;}
.wsa{word-spacing:12.540000px;}
.wsab{word-spacing:12.780000px;}
.ws5d{word-spacing:12.900000px;}
.ws4b{word-spacing:13.200000px;}
.ws2c{word-spacing:13.260000px;}
.wsf5{word-spacing:13.665648px;}
.ws33{word-spacing:13.740000px;}
.ws68{word-spacing:14.100000px;}
.wsb3{word-spacing:14.160000px;}
.wse8{word-spacing:14.220000px;}
.ws26{word-spacing:14.460000px;}
.wsea{word-spacing:14.640000px;}
.ws21{word-spacing:15.120000px;}
.wse3{word-spacing:15.360000px;}
.ws9f{word-spacing:15.540000px;}
.wsad{word-spacing:15.840000px;}
.wsb7{word-spacing:16.140000px;}
.ws91{word-spacing:16.380000px;}
.ws84{word-spacing:16.560000px;}
.wsf2{word-spacing:16.620000px;}
.ws36{word-spacing:16.860000px;}
.ws24{word-spacing:16.920000px;}
.ws7c{word-spacing:17.340000px;}
.wsd5{word-spacing:17.640000px;}
.wsb0{word-spacing:18.060000px;}
.wsed{word-spacing:18.262276px;}
.wsc6{word-spacing:18.780000px;}
.ws92{word-spacing:18.900000px;}
.ws67{word-spacing:19.140000px;}
.wsf3{word-spacing:19.320000px;}
.ws5f{word-spacing:20.520000px;}
.wse6{word-spacing:21.120000px;}
.wsbe{word-spacing:22.260000px;}
.wsb4{word-spacing:24.120000px;}
.ws62{word-spacing:24.660000px;}
.ws66{word-spacing:24.960000px;}
.ws7b{word-spacing:25.440000px;}
.ws60{word-spacing:31.620000px;}
.ws9{word-spacing:31.800000px;}
.ws30{word-spacing:31.920000px;}
.wse9{word-spacing:35.220000px;}
.ws65{word-spacing:36.720000px;}
.ws5e{word-spacing:39.900000px;}
.ws64{word-spacing:46.980000px;}
._1{margin-left:-3542.391000px;}
._8{margin-left:-2277.979200px;}
._6{margin-left:-2266.995600px;}
._3{margin-left:-1279.152000px;}
._9{margin-left:-1251.871200px;}
._0{margin-left:-12.489000px;}
._2{margin-left:-11.016000px;}
._12{margin-left:-8.064000px;}
._5{margin-left:-5.864400px;}
._7{margin-left:-3.920400px;}
._4{margin-left:-2.916000px;}
._c{margin-left:-1.662600px;}
._d{width:1.096200px;}
._b{width:2.640000px;}
._a{width:3.984000px;}
._e{width:5.022000px;}
._f{width:6.060600px;}
._10{width:7.212600px;}
._11{width:8.681400px;}
._15{width:10.176000px;}
._19{width:11.449800px;}
._18{width:13.740000px;}
._14{width:14.752800px;}
._13{width:16.104600px;}
._17{width:18.114000px;}
._16{width:19.536000px;}
._1b{width:23.203200px;}
._1a{width:25.404600px;}
.fc3{color:rgb(145,25,30);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(104,43,18);}
.fc0{color:transparent;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:62.116583px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:324.000000px;}
.fs0{font-size:690.000000px;}
.y0{bottom:0.000000px;}
.y142{bottom:90.513750px;}
.ye1{bottom:97.559100px;}
.y165{bottom:104.013750px;}
.y10b{bottom:105.791400px;}
.ye7{bottom:106.299150px;}
.y80{bottom:108.023550px;}
.ydf{bottom:108.944850px;}
.ya8{bottom:109.355850px;}
.y42{bottom:109.381950px;}
.yb1{bottom:113.125950px;}
.y11b{bottom:113.607900px;}
.ye0{bottom:114.059100px;}
.y124{bottom:117.519600px;}
.y1dc{bottom:119.740050px;}
.y108{bottom:122.111850px;}
.y185{bottom:122.618250px;}
.y164{bottom:122.770800px;}
.ye6{bottom:122.799150px;}
.y7f{bottom:126.023550px;}
.yde{bottom:126.944850px;}
.ya7{bottom:127.355850px;}
.yb0{bottom:131.125950px;}
.y11a{bottom:131.607900px;}
.y123{bottom:135.519600px;}
.y1db{bottom:137.740050px;}
.y107{bottom:140.111850px;}
.y184{bottom:141.222600px;}
.y163{bottom:141.528000px;}
.y7e{bottom:144.023550px;}
.ydd{bottom:144.944850px;}
.ya6{bottom:145.355850px;}
.yaf{bottom:149.125950px;}
.y119{bottom:149.607900px;}
.y122{bottom:153.519600px;}
.y1da{bottom:155.740050px;}
.y106{bottom:158.111850px;}
.y183{bottom:159.827100px;}
.y7d{bottom:162.023550px;}
.ydc{bottom:162.944850px;}
.ya5{bottom:163.355850px;}
.yae{bottom:167.125950px;}
.y118{bottom:167.607900px;}
.y162{bottom:168.789000px;}
.y121{bottom:171.519600px;}
.y1d9{bottom:173.740050px;}
.y105{bottom:176.111850px;}
.y7c{bottom:180.023550px;}
.ydb{bottom:180.944850px;}
.ya4{bottom:181.355850px;}
.yad{bottom:185.125950px;}
.y182{bottom:186.935400px;}
.y1{bottom:188.620050px;}
.y120{bottom:189.519600px;}
.y1d8{bottom:191.740050px;}
.y104{bottom:194.111850px;}
.y7b{bottom:198.023550px;}
.yda{bottom:198.944850px;}
.ya3{bottom:199.355850px;}
.yac{bottom:203.125950px;}
.y181{bottom:205.539900px;}
.y11f{bottom:207.519600px;}
.y161{bottom:211.753950px;}
.y103{bottom:212.111850px;}
.y7a{bottom:216.023550px;}
.yd9{bottom:216.944850px;}
.ya2{bottom:217.355850px;}
.y1d7{bottom:218.244000px;}
.yab{bottom:221.125950px;}
.y180{bottom:224.144400px;}
.y102{bottom:230.111850px;}
.y160{bottom:230.511000px;}
.y79{bottom:234.023550px;}
.yd8{bottom:234.944850px;}
.y1d6{bottom:236.244000px;}
.yaa{bottom:239.125950px;}
.y17f{bottom:242.748750px;}
.ya1{bottom:243.859800px;}
.y101{bottom:248.111850px;}
.y15f{bottom:249.268050px;}
.y78{bottom:252.023550px;}
.yd7{bottom:252.944850px;}
.y1d5{bottom:254.244000px;}
.ya9{bottom:257.125950px;}
.y17e{bottom:261.353100px;}
.ya0{bottom:261.859800px;}
.y100{bottom:266.111850px;}
.y15e{bottom:268.025250px;}
.y77{bottom:270.023550px;}
.yd6{bottom:270.944850px;}
.y1d4{bottom:272.244000px;}
.y9f{bottom:279.859800px;}
.y17d{bottom:279.957600px;}
.yff{bottom:284.111850px;}
.y15d{bottom:286.782300px;}
.y76{bottom:288.023550px;}
.yd5{bottom:288.944850px;}
.y1d3{bottom:290.244000px;}
.y9e{bottom:297.859800px;}
.y17c{bottom:298.562100px;}
.yfe{bottom:302.111850px;}
.y15c{bottom:305.539350px;}
.y75{bottom:306.023550px;}
.yd4{bottom:306.944850px;}
.y117{bottom:310.615650px;}
.y9d{bottom:315.859800px;}
.y1d2{bottom:316.747950px;}
.y17b{bottom:317.166450px;}
.y74{bottom:324.023550px;}
.y15b{bottom:324.296400px;}
.yd3{bottom:324.944850px;}
.yfd{bottom:328.615650px;}
.y9c{bottom:333.859800px;}
.y1d1{bottom:334.747950px;}
.y17a{bottom:335.770950px;}
.y116{bottom:335.815650px;}
.yb4{bottom:339.921300px;}
.y73{bottom:342.023550px;}
.yd2{bottom:342.944850px;}
.y15a{bottom:343.053450px;}
.yfc{bottom:346.615650px;}
.y9b{bottom:351.859800px;}
.y1d0{bottom:352.747950px;}
.y179{bottom:354.375300px;}
.yb3{bottom:356.421300px;}
.y72{bottom:360.023550px;}
.yd1{bottom:360.944850px;}
.y159{bottom:361.810650px;}
.yfb{bottom:364.615650px;}
.y9a{bottom:369.859800px;}
.y1cf{bottom:370.747950px;}
.y178{bottom:372.979800px;}
.y71{bottom:378.023550px;}
.y158{bottom:380.567700px;}
.yfa{bottom:382.615650px;}
.yd0{bottom:387.448800px;}
.y99{bottom:387.859800px;}
.y1ce{bottom:388.747950px;}
.y70{bottom:396.023550px;}
.y157{bottom:399.324750px;}
.y177{bottom:400.088100px;}
.yf9{bottom:400.615800px;}
.ycf{bottom:405.448800px;}
.y98{bottom:405.859800px;}
.y6f{bottom:414.023550px;}
.y1cd{bottom:415.251900px;}
.y156{bottom:418.081950px;}
.yf8{bottom:418.615800px;}
.y176{bottom:418.692600px;}
.y11e{bottom:422.527500px;}
.yce{bottom:423.448800px;}
.y97{bottom:423.859800px;}
.y6e{bottom:432.023550px;}
.y1cc{bottom:433.251900px;}
.yf7{bottom:436.615800px;}
.y155{bottom:436.839000px;}
.y175{bottom:437.296950px;}
.y11d{bottom:440.527500px;}
.ycd{bottom:441.448800px;}
.y96{bottom:441.859800px;}
.y6d{bottom:450.023550px;}
.y1cb{bottom:451.251900px;}
.yf6{bottom:454.615800px;}
.y154{bottom:455.596050px;}
.y174{bottom:455.901450px;}
.y11c{bottom:458.527500px;}
.ycc{bottom:459.448800px;}
.y115{bottom:468.023550px;}
.y95{bottom:468.363750px;}
.y5{bottom:468.885900px;}
.yf5{bottom:472.615800px;}
.y153{bottom:474.353100px;}
.y173{bottom:474.505800px;}
.y6c{bottom:476.527500px;}
.ycb{bottom:477.448800px;}
.y1ca{bottom:477.755850px;}
.y1a8{bottom:480.472350px;}
.y114{bottom:486.023550px;}
.y94{bottom:486.363750px;}
.y41{bottom:487.913550px;}
.y1e{bottom:490.275450px;}
.yf4{bottom:490.615800px;}
.y152{bottom:493.110150px;}
.y172{bottom:493.110300px;}
.y6b{bottom:494.527500px;}
.yca{bottom:495.448800px;}
.y1c9{bottom:495.755850px;}
.y1a7{bottom:498.873900px;}
.y113{bottom:504.023550px;}
.y93{bottom:504.363750px;}
.y40{bottom:505.999050px;}
.y1d{bottom:508.275450px;}
.yf3{bottom:508.615800px;}
.y6a{bottom:512.527500px;}
.yc9{bottom:513.448800px;}
.y1c8{bottom:513.755850px;}
.y1a6{bottom:517.275450px;}
.y112{bottom:522.023550px;}
.y92{bottom:522.363750px;}
.y3f{bottom:524.084700px;}
.y1c{bottom:526.275450px;}
.y69{bottom:530.527500px;}
.yc8{bottom:531.448800px;}
.y1c7{bottom:531.755850px;}
.yf2{bottom:535.119750px;}
.y1a5{bottom:535.677000px;}
.y111{bottom:540.023550px;}
.y91{bottom:540.363750px;}
.y3e{bottom:542.170200px;}
.y1b{bottom:544.275450px;}
.y68{bottom:548.527500px;}
.yc7{bottom:549.448800px;}
.y1c6{bottom:549.755850px;}
.y1a4{bottom:554.078700px;}
.y151{bottom:555.868050px;}
.y110{bottom:558.023550px;}
.y90{bottom:558.363750px;}
.y3d{bottom:560.255850px;}
.yf1{bottom:560.319600px;}
.y1a{bottom:562.275450px;}
.y4{bottom:563.385900px;}
.y67{bottom:566.527500px;}
.yc6{bottom:567.448800px;}
.y1c5{bottom:567.755850px;}
.y150{bottom:572.368050px;}
.y1a3{bottom:572.480250px;}
.y10f{bottom:576.023550px;}
.y8f{bottom:576.363750px;}
.y3c{bottom:578.341500px;}
.y19{bottom:580.275450px;}
.y66{bottom:584.527500px;}
.yc5{bottom:585.448800px;}
.y1a2{bottom:590.881800px;}
.y10e{bottom:594.023550px;}
.y1c4{bottom:594.259800px;}
.y8e{bottom:594.363750px;}
.y3b{bottom:596.427000px;}
.y18{bottom:598.275450px;}
.y65{bottom:602.527500px;}
.yc4{bottom:603.448800px;}
.y8{bottom:604.264950px;}
.y48{bottom:604.424400px;}
.y1a1{bottom:609.283350px;}
.y1c3{bottom:612.259800px;}
.y3a{bottom:614.512650px;}
.y17{bottom:616.275450px;}
.ye5{bottom:616.576800px;}
.y7{bottom:618.664950px;}
.y47{bottom:618.824400px;}
.y64{bottom:620.527500px;}
.yc3{bottom:621.448800px;}
.y8d{bottom:625.119750px;}
.y1a0{bottom:627.684900px;}
.y1c2{bottom:630.259800px;}
.y39{bottom:632.598150px;}
.y6{bottom:633.064950px;}
.ye4{bottom:633.076800px;}
.y46{bottom:633.224400px;}
.y16{bottom:634.275450px;}
.yb7{bottom:638.527500px;}
.yc2{bottom:639.448800px;}
.y19f{bottom:646.086450px;}
.y63{bottom:647.031450px;}
.y1c1{bottom:648.259800px;}
.y8c{bottom:650.319600px;}
.y38{bottom:650.683800px;}
.y15{bottom:652.275450px;}
.yb6{bottom:656.527500px;}
.y13f{bottom:656.762400px;}
.y3{bottom:657.885900px;}
.y19e{bottom:664.488150px;}
.y62{bottom:665.031450px;}
.yc1{bottom:665.952750px;}
.y37{bottom:668.769450px;}
.y14{bottom:670.275450px;}
.yf0{bottom:674.527500px;}
.y13e{bottom:674.762400px;}
.y1c0{bottom:674.763750px;}
.y19d{bottom:682.889700px;}
.y61{bottom:683.031450px;}
.yc0{bottom:683.952750px;}
.y36{bottom:686.855100px;}
.y13{bottom:688.275600px;}
.yef{bottom:692.527500px;}
.y13d{bottom:692.762400px;}
.y1bf{bottom:692.763750px;}
.y60{bottom:701.031450px;}
.y19c{bottom:701.291250px;}
.ybf{bottom:701.952750px;}
.y10a{bottom:703.464600px;}
.yee{bottom:710.527500px;}
.y13c{bottom:710.762400px;}
.y1be{bottom:710.763750px;}
.y35{bottom:713.444550px;}
.y12{bottom:714.779550px;}
.y5f{bottom:719.031450px;}
.y19b{bottom:719.692800px;}
.ybe{bottom:719.952750px;}
.y109{bottom:719.964600px;}
.yed{bottom:728.527500px;}
.y1bd{bottom:728.763750px;}
.y34{bottom:731.530200px;}
.y11{bottom:732.779550px;}
.y5e{bottom:737.031450px;}
.y13b{bottom:737.266500px;}
.ybd{bottom:737.952750px;}
.y19a{bottom:738.094350px;}
.y141{bottom:740.881950px;}
.yec{bottom:746.527500px;}
.y1bc{bottom:746.763750px;}
.y33{bottom:749.615700px;}
.y10{bottom:750.779550px;}
.y2{bottom:752.385900px;}
.y5d{bottom:755.031450px;}
.y13a{bottom:755.266500px;}
.ybc{bottom:755.952750px;}
.y199{bottom:756.496050px;}
.y140{bottom:757.381950px;}
.yeb{bottom:764.527500px;}
.y1bb{bottom:764.763750px;}
.y32{bottom:767.701350px;}
.yf{bottom:768.779550px;}
.y5c{bottom:773.031450px;}
.y139{bottom:773.266350px;}
.ybb{bottom:773.952750px;}
.y198{bottom:774.897600px;}
.yea{bottom:782.527650px;}
.y31{bottom:785.787000px;}
.ye{bottom:786.779550px;}
.y5b{bottom:791.031450px;}
.y138{bottom:791.266350px;}
.y1ba{bottom:791.267700px;}
.yba{bottom:791.952750px;}
.y197{bottom:793.299150px;}
.ye9{bottom:800.527650px;}
.y30{bottom:803.872500px;}
.yd{bottom:804.779550px;}
.y8b{bottom:809.031450px;}
.y137{bottom:809.266350px;}
.y1b9{bottom:809.267700px;}
.yb9{bottom:809.952750px;}
.y196{bottom:811.700700px;}
.y5a{bottom:817.535400px;}
.ye8{bottom:818.527650px;}
.y2f{bottom:821.958000px;}
.yc{bottom:822.779550px;}
.y8a{bottom:827.031450px;}
.y136{bottom:827.266350px;}
.y1b8{bottom:827.267700px;}
.yb8{bottom:827.952750px;}
.y195{bottom:830.102250px;}
.y59{bottom:835.535400px;}
.y10d{bottom:836.527650px;}
.y2e{bottom:840.043800px;}
.yb{bottom:840.779550px;}
.y89{bottom:845.031450px;}
.y135{bottom:845.266350px;}
.y1b7{bottom:845.267700px;}
.y194{bottom:848.503950px;}
.y58{bottom:853.535400px;}
.y10c{bottom:854.527650px;}
.y2d{bottom:858.129300px;}
.yb2{bottom:858.153600px;}
.ya{bottom:858.779550px;}
.y88{bottom:863.031450px;}
.y134{bottom:863.266350px;}
.y1b6{bottom:863.267700px;}
.y193{bottom:866.905500px;}
.y57{bottom:871.535400px;}
.y2c{bottom:876.214950px;}
.ye3{bottom:880.559100px;}
.y87{bottom:881.031450px;}
.y133{bottom:881.266350px;}
.y1b5{bottom:881.267700px;}
.y192{bottom:885.307050px;}
.y56{bottom:889.535400px;}
.y2b{bottom:894.300450px;}
.ye2{bottom:897.059100px;}
.y86{bottom:899.031450px;}
.y132{bottom:899.266350px;}
.y55{bottom:907.535400px;}
.y1b4{bottom:907.771650px;}
.y191{bottom:912.212550px;}
.y2a{bottom:912.386100px;}
.y14f{bottom:914.173200px;}
.y171{bottom:914.173350px;}
.y85{bottom:917.031450px;}
.y131{bottom:917.266350px;}
.y54{bottom:925.535400px;}
.y1b3{bottom:925.771650px;}
.y29{bottom:930.471750px;}
.y190{bottom:930.614100px;}
.y170{bottom:932.411400px;}
.y14e{bottom:932.424750px;}
.y84{bottom:935.031450px;}
.y53{bottom:943.535400px;}
.y130{bottom:943.770300px;}
.y1b2{bottom:943.771650px;}
.y28{bottom:948.557250px;}
.y18f{bottom:949.015650px;}
.y16f{bottom:950.649600px;}
.y83{bottom:953.031450px;}
.y14d{bottom:959.180100px;}
.y52{bottom:961.535400px;}
.y12f{bottom:961.770300px;}
.y1b1{bottom:961.771650px;}
.y18e{bottom:967.417200px;}
.y16e{bottom:968.887800px;}
.y82{bottom:971.031450px;}
.y27{bottom:975.146850px;}
.y14c{bottom:977.431500px;}
.y51{bottom:979.535400px;}
.y12e{bottom:979.770300px;}
.y1b0{bottom:979.771650px;}
.y18d{bottom:985.818750px;}
.y16d{bottom:987.126000px;}
.y81{bottom:989.031450px;}
.y26{bottom:993.232500px;}
.y14b{bottom:995.683050px;}
.y50{bottom:997.535400px;}
.y12d{bottom:997.770300px;}
.y1af{bottom:997.771650px;}
.y18c{bottom:1004.220300px;}
.y16c{bottom:1005.364200px;}
.yb5{bottom:1007.031450px;}
.y25{bottom:1011.318000px;}
.y14a{bottom:1013.934450px;}
.y4f{bottom:1015.535400px;}
.y12c{bottom:1015.770300px;}
.y18b{bottom:1022.622000px;}
.y1ae{bottom:1024.275450px;}
.y24{bottom:1029.403500px;}
.y16b{bottom:1032.106350px;}
.y149{bottom:1032.186000px;}
.y4e{bottom:1033.535400px;}
.y12b{bottom:1033.770300px;}
.y18a{bottom:1041.023550px;}
.y1ad{bottom:1042.275450px;}
.y23{bottom:1047.489000px;}
.y16a{bottom:1050.344550px;}
.y148{bottom:1050.437400px;}
.y4d{bottom:1051.535400px;}
.y12a{bottom:1051.770300px;}
.y189{bottom:1059.425100px;}
.y1ac{bottom:1060.275450px;}
.y22{bottom:1065.574650px;}
.y45{bottom:1066.535400px;}
.y169{bottom:1068.582600px;}
.y147{bottom:1068.688950px;}
.y4c{bottom:1069.535400px;}
.y129{bottom:1069.770300px;}
.y188{bottom:1077.826650px;}
.y1ab{bottom:1078.275450px;}
.y21{bottom:1083.660300px;}
.y168{bottom:1086.820800px;}
.y146{bottom:1086.940500px;}
.y44{bottom:1087.535400px;}
.y128{bottom:1087.770300px;}
.y187{bottom:1096.228350px;}
.y1aa{bottom:1096.275450px;}
.y167{bottom:1105.059150px;}
.y145{bottom:1105.191900px;}
.y4b{bottom:1105.535400px;}
.y127{bottom:1105.770300px;}
.y20{bottom:1110.249900px;}
.y43{bottom:1111.535400px;}
.y1a9{bottom:1122.779550px;}
.y186{bottom:1123.133850px;}
.y166{bottom:1123.297200px;}
.y144{bottom:1123.443300px;}
.y4a{bottom:1123.535400px;}
.y126{bottom:1123.770300px;}
.y1f{bottom:1135.535400px;}
.y49{bottom:1141.535400px;}
.y143{bottom:1141.694850px;}
.y125{bottom:1141.770300px;}
.y9{bottom:1224.247950px;}
.h5{height:36.096000px;}
.hd{height:40.392000px;}
.h6{height:40.608000px;}
.he{height:43.980000px;}
.h7{height:44.880000px;}
.hf{height:45.531456px;}
.ha{height:46.463204px;}
.hb{height:52.218000px;}
.hc{height:54.144000px;}
.h8{height:58.020000px;}
.h4{height:81.216000px;}
.h9{height:82.488000px;}
.h3{height:247.212000px;}
.h2{height:526.470000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:30.487650px;}
.x10{left:37.462950px;}
.x2e{left:38.907150px;}
.x12{left:42.569850px;}
.x20{left:64.653900px;}
.x1e{left:78.464250px;}
.x1f{left:81.231450px;}
.x9{left:106.299150px;}
.x15{left:114.498600px;}
.x28{left:124.023450px;}
.xa{left:127.559100px;}
.x1{left:140.610150px;}
.x13{left:148.818900px;}
.x29{left:166.527450px;}
.xf{left:168.133500px;}
.x26{left:197.371500px;}
.x16{left:221.175150px;}
.x17{left:222.349050px;}
.x2c{left:233.701650px;}
.x24{left:241.447800px;}
.x2d{left:271.176600px;}
.x4{left:274.865550px;}
.x1b{left:276.704400px;}
.x3{left:278.020950px;}
.x2a{left:279.969900px;}
.x25{left:283.120800px;}
.x1a{left:315.326850px;}
.x1c{left:393.214200px;}
.xb{left:444.826800px;}
.x1d{left:447.347400px;}
.x22{left:461.834550px;}
.xc{left:466.086600px;}
.x21{left:483.094500px;}
.x2f{left:486.129150px;}
.x14{left:487.346400px;}
.x27{left:495.850350px;}
.xd{left:501.868350px;}
.x30{left:503.137050px;}
.x5{left:516.318000px;}
.x18{left:518.643750px;}
.x3b{left:522.997200px;}
.x2{left:524.742300px;}
.x39{left:531.066900px;}
.x42{left:534.081600px;}
.x19{left:539.903550px;}
.x32{left:574.581150px;}
.x37{left:583.987500px;}
.x41{left:608.070900px;}
.x3e{left:616.981500px;}
.x8{left:626.799000px;}
.x3a{left:633.225000px;}
.x43{left:638.166150px;}
.x44{left:648.987750px;}
.xe{left:663.164850px;}
.x40{left:665.660550px;}
.x35{left:667.042350px;}
.x38{left:687.593250px;}
.x34{left:694.520550px;}
.x45{left:702.656100px;}
.x31{left:716.089650px;}
.x33{left:718.505100px;}
.x36{left:725.421750px;}
.x3d{left:734.287650px;}
.x3c{left:750.034200px;}
.x23{left:751.750350px;}
.x3f{left:766.759050px;}
.x7{left:817.101900px;}
.x6{left:825.076050px;}
.x2b{left:828.154050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-4.736000pt;}
.ls4{letter-spacing:-4.128000pt;}
.ls9{letter-spacing:-2.539878pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-1.824000pt;}
.ls8{letter-spacing:-1.440000pt;}
.lsa{letter-spacing:-1.325154pt;}
.ls1{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-0.938651pt;}
.ls5{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.384000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-116.533333pt;}
.ws82{word-spacing:-14.933333pt;}
.wsdd{word-spacing:-11.871169pt;}
.ws20{word-spacing:-11.093333pt;}
.wsde{word-spacing:-10.932519pt;}
.ws3{word-spacing:-9.514667pt;}
.ws2{word-spacing:-4.778667pt;}
.ws89{word-spacing:-3.573333pt;}
.ws5a{word-spacing:-3.253333pt;}
.ws41{word-spacing:-2.880000pt;}
.ws45{word-spacing:-2.464000pt;}
.wsd0{word-spacing:-2.453333pt;}
.ws2b{word-spacing:-2.400000pt;}
.ws93{word-spacing:-2.186667pt;}
.ws1e{word-spacing:-2.090667pt;}
.wscf{word-spacing:-2.080000pt;}
.ws54{word-spacing:-2.026667pt;}
.wsa8{word-spacing:-1.973333pt;}
.ws3a{word-spacing:-1.920000pt;}
.wsd3{word-spacing:-1.866667pt;}
.ws4a{word-spacing:-1.813333pt;}
.ws15{word-spacing:-1.760000pt;}
.wsd8{word-spacing:-1.653333pt;}
.wsc3{word-spacing:-1.600000pt;}
.ws2e{word-spacing:-1.546667pt;}
.wsc0{word-spacing:-1.493333pt;}
.ws28{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.386667pt;}
.wsa2{word-spacing:-1.333333pt;}
.ws85{word-spacing:-1.280000pt;}
.wse2{word-spacing:-1.226667pt;}
.wsb2{word-spacing:-1.120000pt;}
.ws73{word-spacing:-1.013333pt;}
.ws5{word-spacing:-0.960000pt;}
.ws81{word-spacing:-0.912000pt;}
.wsf1{word-spacing:-0.906667pt;}
.wsdc{word-spacing:-0.853333pt;}
.wsd6{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.693333pt;}
.ws94{word-spacing:-0.586667pt;}
.ws71{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.426667pt;}
.ws87{word-spacing:-0.373333pt;}
.ws9a{word-spacing:-0.320000pt;}
.wsac{word-spacing:-0.266667pt;}
.wsa7{word-spacing:-0.213333pt;}
.wsa5{word-spacing:-0.106667pt;}
.ws90{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053333pt;}
.wsa3{word-spacing:0.160000pt;}
.ws6b{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.336000pt;}
.wsc4{word-spacing:0.373333pt;}
.wsa9{word-spacing:0.480000pt;}
.ws40{word-spacing:0.586667pt;}
.ws11{word-spacing:0.693333pt;}
.ws70{word-spacing:0.746667pt;}
.wsb{word-spacing:0.800000pt;}
.wsd1{word-spacing:0.853333pt;}
.wsbf{word-spacing:0.960000pt;}
.ws7{word-spacing:1.013333pt;}
.ws3f{word-spacing:1.120000pt;}
.ws4{word-spacing:1.152000pt;}
.wsbc{word-spacing:1.173333pt;}
.ws98{word-spacing:1.226667pt;}
.ws12{word-spacing:1.280000pt;}
.wsef{word-spacing:1.325154pt;}
.ws7d{word-spacing:1.333333pt;}
.ws58{word-spacing:1.386667pt;}
.wsdf{word-spacing:1.440000pt;}
.ws6a{word-spacing:1.493333pt;}
.ws74{word-spacing:1.546667pt;}
.wsd9{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.813333pt;}
.wsc2{word-spacing:1.824000pt;}
.wseb{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.973333pt;}
.ws1c{word-spacing:2.042945pt;}
.ws38{word-spacing:2.080000pt;}
.ws6f{word-spacing:2.133333pt;}
.ws97{word-spacing:2.186667pt;}
.ws8c{word-spacing:2.293333pt;}
.ws3e{word-spacing:2.346667pt;}
.ws96{word-spacing:2.400000pt;}
.ws80{word-spacing:2.506667pt;}
.wsee{word-spacing:2.539878pt;}
.ws9c{word-spacing:2.560000pt;}
.ws76{word-spacing:2.613333pt;}
.ws2d{word-spacing:2.666667pt;}
.ws55{word-spacing:2.720000pt;}
.ws77{word-spacing:2.773333pt;}
.wscd{word-spacing:2.880000pt;}
.ws52{word-spacing:2.933333pt;}
.ws72{word-spacing:3.040000pt;}
.ws13{word-spacing:3.093333pt;}
.wsb5{word-spacing:3.146667pt;}
.wsc8{word-spacing:3.253333pt;}
.wsc5{word-spacing:3.306667pt;}
.ws8{word-spacing:3.466667pt;}
.wsce{word-spacing:3.520000pt;}
.wsb8{word-spacing:3.573333pt;}
.ws39{word-spacing:3.626667pt;}
.ws14{word-spacing:3.680000pt;}
.wsc{word-spacing:3.733333pt;}
.ws16{word-spacing:3.786667pt;}
.wse0{word-spacing:3.840000pt;}
.ws19{word-spacing:3.893333pt;}
.wsf{word-spacing:3.946667pt;}
.wsd7{word-spacing:4.106667pt;}
.ws83{word-spacing:4.128000pt;}
.ws6{word-spacing:4.160000pt;}
.ws50{word-spacing:4.266667pt;}
.ws48{word-spacing:4.320000pt;}
.ws4e{word-spacing:4.426667pt;}
.ws34{word-spacing:4.480000pt;}
.wsca{word-spacing:4.586667pt;}
.ws27{word-spacing:4.640000pt;}
.wsbd{word-spacing:4.746667pt;}
.wsc1{word-spacing:4.853333pt;}
.wsbb{word-spacing:4.906667pt;}
.ws51{word-spacing:4.960000pt;}
.ws17{word-spacing:5.013333pt;}
.ws88{word-spacing:5.066667pt;}
.ws23{word-spacing:5.120000pt;}
.ws7a{word-spacing:5.173333pt;}
.ws56{word-spacing:5.226667pt;}
.ws3b{word-spacing:5.280000pt;}
.wsa0{word-spacing:5.333333pt;}
.ws44{word-spacing:5.386667pt;}
.wsaa{word-spacing:5.440000pt;}
.ws2f{word-spacing:5.493333pt;}
.ws9b{word-spacing:5.546667pt;}
.ws8d{word-spacing:5.706667pt;}
.ws9e{word-spacing:5.760000pt;}
.wsf0{word-spacing:5.797548pt;}
.ws59{word-spacing:5.866667pt;}
.wsb9{word-spacing:5.973333pt;}
.ws10{word-spacing:6.026667pt;}
.ws29{word-spacing:6.080000pt;}
.wsae{word-spacing:6.133333pt;}
.ws99{word-spacing:6.186667pt;}
.ws7f{word-spacing:6.293333pt;}
.ws42{word-spacing:6.400000pt;}
.ws25{word-spacing:6.453333pt;}
.ws8a{word-spacing:6.506667pt;}
.ws86{word-spacing:6.560000pt;}
.wsa1{word-spacing:6.666667pt;}
.wsc7{word-spacing:6.720000pt;}
.wsec{word-spacing:6.736198pt;}
.ws35{word-spacing:6.773333pt;}
.ws6d{word-spacing:6.826667pt;}
.ws8b{word-spacing:6.880000pt;}
.ws79{word-spacing:7.040000pt;}
.ws75{word-spacing:7.093333pt;}
.ws2a{word-spacing:7.146667pt;}
.wse{word-spacing:7.253333pt;}
.wse7{word-spacing:7.306667pt;}
.ws3d{word-spacing:7.360000pt;}
.wsa6{word-spacing:7.413333pt;}
.wsba{word-spacing:7.573333pt;}
.wsdb{word-spacing:7.626667pt;}
.wsa4{word-spacing:7.733333pt;}
.ws61{word-spacing:7.786667pt;}
.ws4f{word-spacing:7.840000pt;}
.ws4c{word-spacing:7.893333pt;}
.ws47{word-spacing:8.000000pt;}
.ws32{word-spacing:8.213333pt;}
.wscc{word-spacing:8.266667pt;}
.wse5{word-spacing:8.320000pt;}
.wsb6{word-spacing:8.480000pt;}
.ws78{word-spacing:8.533333pt;}
.wscb{word-spacing:8.586667pt;}
.wsaf{word-spacing:8.640000pt;}
.ws46{word-spacing:8.746667pt;}
.ws1a{word-spacing:8.800000pt;}
.ws53{word-spacing:8.853333pt;}
.ws6c{word-spacing:9.226667pt;}
.ws8e{word-spacing:9.280000pt;}
.ws22{word-spacing:9.333333pt;}
.wse1{word-spacing:9.386667pt;}
.wsda{word-spacing:9.440000pt;}
.ws57{word-spacing:9.493333pt;}
.ws95{word-spacing:9.546667pt;}
.ws7e{word-spacing:9.706667pt;}
.ws8f{word-spacing:9.813333pt;}
.ws1d{word-spacing:9.920000pt;}
.ws31{word-spacing:9.973333pt;}
.wsd4{word-spacing:10.080000pt;}
.wse4{word-spacing:10.133333pt;}
.wsd2{word-spacing:10.186667pt;}
.ws37{word-spacing:10.240000pt;}
.ws63{word-spacing:10.293333pt;}
.ws49{word-spacing:10.400000pt;}
.ws69{word-spacing:10.453333pt;}
.wsf4{word-spacing:10.490801pt;}
.ws9d{word-spacing:10.666667pt;}
.ws4d{word-spacing:10.826667pt;}
.wsc9{word-spacing:11.040000pt;}
.ws6e{word-spacing:11.093333pt;}
.wsa{word-spacing:11.146667pt;}
.wsab{word-spacing:11.360000pt;}
.ws5d{word-spacing:11.466667pt;}
.ws4b{word-spacing:11.733333pt;}
.ws2c{word-spacing:11.786667pt;}
.wsf5{word-spacing:12.147243pt;}
.ws33{word-spacing:12.213333pt;}
.ws68{word-spacing:12.533333pt;}
.wsb3{word-spacing:12.586667pt;}
.wse8{word-spacing:12.640000pt;}
.ws26{word-spacing:12.853333pt;}
.wsea{word-spacing:13.013333pt;}
.ws21{word-spacing:13.440000pt;}
.wse3{word-spacing:13.653333pt;}
.ws9f{word-spacing:13.813333pt;}
.wsad{word-spacing:14.080000pt;}
.wsb7{word-spacing:14.346667pt;}
.ws91{word-spacing:14.560000pt;}
.ws84{word-spacing:14.720000pt;}
.wsf2{word-spacing:14.773333pt;}
.ws36{word-spacing:14.986667pt;}
.ws24{word-spacing:15.040000pt;}
.ws7c{word-spacing:15.413333pt;}
.wsd5{word-spacing:15.680000pt;}
.wsb0{word-spacing:16.053333pt;}
.wsed{word-spacing:16.233134pt;}
.wsc6{word-spacing:16.693333pt;}
.ws92{word-spacing:16.800000pt;}
.ws67{word-spacing:17.013333pt;}
.wsf3{word-spacing:17.173333pt;}
.ws5f{word-spacing:18.240000pt;}
.wse6{word-spacing:18.773333pt;}
.wsbe{word-spacing:19.786667pt;}
.wsb4{word-spacing:21.440000pt;}
.ws62{word-spacing:21.920000pt;}
.ws66{word-spacing:22.186667pt;}
.ws7b{word-spacing:22.613333pt;}
.ws60{word-spacing:28.106667pt;}
.ws9{word-spacing:28.266667pt;}
.ws30{word-spacing:28.373333pt;}
.wse9{word-spacing:31.306667pt;}
.ws65{word-spacing:32.640000pt;}
.ws5e{word-spacing:35.466667pt;}
.ws64{word-spacing:41.760000pt;}
._1{margin-left:-3148.792000pt;}
._8{margin-left:-2024.870400pt;}
._6{margin-left:-2015.107200pt;}
._3{margin-left:-1137.024000pt;}
._9{margin-left:-1112.774400pt;}
._0{margin-left:-11.101333pt;}
._2{margin-left:-9.792000pt;}
._12{margin-left:-7.168000pt;}
._5{margin-left:-5.212800pt;}
._7{margin-left:-3.484800pt;}
._4{margin-left:-2.592000pt;}
._c{margin-left:-1.477867pt;}
._d{width:0.974400pt;}
._b{width:2.346667pt;}
._a{width:3.541333pt;}
._e{width:4.464000pt;}
._f{width:5.387200pt;}
._10{width:6.411200pt;}
._11{width:7.716800pt;}
._15{width:9.045333pt;}
._19{width:10.177600pt;}
._18{width:12.213333pt;}
._14{width:13.113600pt;}
._13{width:14.315200pt;}
._17{width:16.101333pt;}
._16{width:17.365333pt;}
._1b{width:20.625067pt;}
._1a{width:22.581867pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:55.214741pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:288.000000pt;}
.fs0{font-size:613.333333pt;}
.y0{bottom:0.000000pt;}
.y142{bottom:80.456667pt;}
.ye1{bottom:86.719200pt;}
.y165{bottom:92.456667pt;}
.y10b{bottom:94.036800pt;}
.ye7{bottom:94.488133pt;}
.y80{bottom:96.020933pt;}
.ydf{bottom:96.839867pt;}
.ya8{bottom:97.205200pt;}
.y42{bottom:97.228400pt;}
.yb1{bottom:100.556400pt;}
.y11b{bottom:100.984800pt;}
.ye0{bottom:101.385867pt;}
.y124{bottom:104.461867pt;}
.y1dc{bottom:106.435600pt;}
.y108{bottom:108.543867pt;}
.y185{bottom:108.994000pt;}
.y164{bottom:109.129600pt;}
.ye6{bottom:109.154800pt;}
.y7f{bottom:112.020933pt;}
.yde{bottom:112.839867pt;}
.ya7{bottom:113.205200pt;}
.yb0{bottom:116.556400pt;}
.y11a{bottom:116.984800pt;}
.y123{bottom:120.461867pt;}
.y1db{bottom:122.435600pt;}
.y107{bottom:124.543867pt;}
.y184{bottom:125.531200pt;}
.y163{bottom:125.802667pt;}
.y7e{bottom:128.020933pt;}
.ydd{bottom:128.839867pt;}
.ya6{bottom:129.205200pt;}
.yaf{bottom:132.556400pt;}
.y119{bottom:132.984800pt;}
.y122{bottom:136.461867pt;}
.y1da{bottom:138.435600pt;}
.y106{bottom:140.543867pt;}
.y183{bottom:142.068533pt;}
.y7d{bottom:144.020933pt;}
.ydc{bottom:144.839867pt;}
.ya5{bottom:145.205200pt;}
.yae{bottom:148.556400pt;}
.y118{bottom:148.984800pt;}
.y162{bottom:150.034667pt;}
.y121{bottom:152.461867pt;}
.y1d9{bottom:154.435600pt;}
.y105{bottom:156.543867pt;}
.y7c{bottom:160.020933pt;}
.ydb{bottom:160.839867pt;}
.ya4{bottom:161.205200pt;}
.yad{bottom:164.556400pt;}
.y182{bottom:166.164800pt;}
.y1{bottom:167.662267pt;}
.y120{bottom:168.461867pt;}
.y1d8{bottom:170.435600pt;}
.y104{bottom:172.543867pt;}
.y7b{bottom:176.020933pt;}
.yda{bottom:176.839867pt;}
.ya3{bottom:177.205200pt;}
.yac{bottom:180.556400pt;}
.y181{bottom:182.702133pt;}
.y11f{bottom:184.461867pt;}
.y161{bottom:188.225733pt;}
.y103{bottom:188.543867pt;}
.y7a{bottom:192.020933pt;}
.yd9{bottom:192.839867pt;}
.ya2{bottom:193.205200pt;}
.y1d7{bottom:193.994667pt;}
.yab{bottom:196.556400pt;}
.y180{bottom:199.239467pt;}
.y102{bottom:204.543867pt;}
.y160{bottom:204.898667pt;}
.y79{bottom:208.020933pt;}
.yd8{bottom:208.839867pt;}
.y1d6{bottom:209.994667pt;}
.yaa{bottom:212.556400pt;}
.y17f{bottom:215.776667pt;}
.ya1{bottom:216.764267pt;}
.y101{bottom:220.543867pt;}
.y15f{bottom:221.571600pt;}
.y78{bottom:224.020933pt;}
.yd7{bottom:224.839867pt;}
.y1d5{bottom:225.994667pt;}
.ya9{bottom:228.556400pt;}
.y17e{bottom:232.313867pt;}
.ya0{bottom:232.764267pt;}
.y100{bottom:236.543867pt;}
.y15e{bottom:238.244667pt;}
.y77{bottom:240.020933pt;}
.yd6{bottom:240.839867pt;}
.y1d4{bottom:241.994667pt;}
.y9f{bottom:248.764267pt;}
.y17d{bottom:248.851200pt;}
.yff{bottom:252.543867pt;}
.y15d{bottom:254.917600pt;}
.y76{bottom:256.020933pt;}
.yd5{bottom:256.839867pt;}
.y1d3{bottom:257.994667pt;}
.y9e{bottom:264.764267pt;}
.y17c{bottom:265.388533pt;}
.yfe{bottom:268.543867pt;}
.y15c{bottom:271.590533pt;}
.y75{bottom:272.020933pt;}
.yd4{bottom:272.839867pt;}
.y117{bottom:276.102800pt;}
.y9d{bottom:280.764267pt;}
.y1d2{bottom:281.553733pt;}
.y17b{bottom:281.925733pt;}
.y74{bottom:288.020933pt;}
.y15b{bottom:288.263467pt;}
.yd3{bottom:288.839867pt;}
.yfd{bottom:292.102800pt;}
.y9c{bottom:296.764267pt;}
.y1d1{bottom:297.553733pt;}
.y17a{bottom:298.463067pt;}
.y116{bottom:298.502800pt;}
.yb4{bottom:302.152267pt;}
.y73{bottom:304.020933pt;}
.yd2{bottom:304.839867pt;}
.y15a{bottom:304.936400pt;}
.yfc{bottom:308.102800pt;}
.y9b{bottom:312.764267pt;}
.y1d0{bottom:313.553733pt;}
.y179{bottom:315.000267pt;}
.yb3{bottom:316.818933pt;}
.y72{bottom:320.020933pt;}
.yd1{bottom:320.839867pt;}
.y159{bottom:321.609467pt;}
.yfb{bottom:324.102800pt;}
.y9a{bottom:328.764267pt;}
.y1cf{bottom:329.553733pt;}
.y178{bottom:331.537600pt;}
.y71{bottom:336.020933pt;}
.y158{bottom:338.282400pt;}
.yfa{bottom:340.102800pt;}
.yd0{bottom:344.398933pt;}
.y99{bottom:344.764267pt;}
.y1ce{bottom:345.553733pt;}
.y70{bottom:352.020933pt;}
.y157{bottom:354.955333pt;}
.y177{bottom:355.633867pt;}
.yf9{bottom:356.102933pt;}
.ycf{bottom:360.398933pt;}
.y98{bottom:360.764267pt;}
.y6f{bottom:368.020933pt;}
.y1cd{bottom:369.112800pt;}
.y156{bottom:371.628400pt;}
.yf8{bottom:372.102933pt;}
.y176{bottom:372.171200pt;}
.y11e{bottom:375.580000pt;}
.yce{bottom:376.398933pt;}
.y97{bottom:376.764267pt;}
.y6e{bottom:384.020933pt;}
.y1cc{bottom:385.112800pt;}
.yf7{bottom:388.102933pt;}
.y155{bottom:388.301333pt;}
.y175{bottom:388.708400pt;}
.y11d{bottom:391.580000pt;}
.ycd{bottom:392.398933pt;}
.y96{bottom:392.764267pt;}
.y6d{bottom:400.020933pt;}
.y1cb{bottom:401.112800pt;}
.yf6{bottom:404.102933pt;}
.y154{bottom:404.974267pt;}
.y174{bottom:405.245733pt;}
.y11c{bottom:407.580000pt;}
.ycc{bottom:408.398933pt;}
.y115{bottom:416.020933pt;}
.y95{bottom:416.323333pt;}
.y5{bottom:416.787467pt;}
.yf5{bottom:420.102933pt;}
.y153{bottom:421.647200pt;}
.y173{bottom:421.782933pt;}
.y6c{bottom:423.580000pt;}
.ycb{bottom:424.398933pt;}
.y1ca{bottom:424.671867pt;}
.y1a8{bottom:427.086533pt;}
.y114{bottom:432.020933pt;}
.y94{bottom:432.323333pt;}
.y41{bottom:433.700933pt;}
.y1e{bottom:435.800400pt;}
.yf4{bottom:436.102933pt;}
.y152{bottom:438.320133pt;}
.y172{bottom:438.320267pt;}
.y6b{bottom:439.580000pt;}
.yca{bottom:440.398933pt;}
.y1c9{bottom:440.671867pt;}
.y1a7{bottom:443.443467pt;}
.y113{bottom:448.020933pt;}
.y93{bottom:448.323333pt;}
.y40{bottom:449.776933pt;}
.y1d{bottom:451.800400pt;}
.yf3{bottom:452.102933pt;}
.y6a{bottom:455.580000pt;}
.yc9{bottom:456.398933pt;}
.y1c8{bottom:456.671867pt;}
.y1a6{bottom:459.800400pt;}
.y112{bottom:464.020933pt;}
.y92{bottom:464.323333pt;}
.y3f{bottom:465.853067pt;}
.y1c{bottom:467.800400pt;}
.y69{bottom:471.580000pt;}
.yc8{bottom:472.398933pt;}
.y1c7{bottom:472.671867pt;}
.yf2{bottom:475.662000pt;}
.y1a5{bottom:476.157333pt;}
.y111{bottom:480.020933pt;}
.y91{bottom:480.323333pt;}
.y3e{bottom:481.929067pt;}
.y1b{bottom:483.800400pt;}
.y68{bottom:487.580000pt;}
.yc7{bottom:488.398933pt;}
.y1c6{bottom:488.671867pt;}
.y1a4{bottom:492.514400pt;}
.y151{bottom:494.104933pt;}
.y110{bottom:496.020933pt;}
.y90{bottom:496.323333pt;}
.y3d{bottom:498.005200pt;}
.yf1{bottom:498.061867pt;}
.y1a{bottom:499.800400pt;}
.y4{bottom:500.787467pt;}
.y67{bottom:503.580000pt;}
.yc6{bottom:504.398933pt;}
.y1c5{bottom:504.671867pt;}
.y150{bottom:508.771600pt;}
.y1a3{bottom:508.871333pt;}
.y10f{bottom:512.020933pt;}
.y8f{bottom:512.323333pt;}
.y3c{bottom:514.081333pt;}
.y19{bottom:515.800400pt;}
.y66{bottom:519.580000pt;}
.yc5{bottom:520.398933pt;}
.y1a2{bottom:525.228267pt;}
.y10e{bottom:528.020933pt;}
.y1c4{bottom:528.230933pt;}
.y8e{bottom:528.323333pt;}
.y3b{bottom:530.157333pt;}
.y18{bottom:531.800400pt;}
.y65{bottom:535.580000pt;}
.yc4{bottom:536.398933pt;}
.y8{bottom:537.124400pt;}
.y48{bottom:537.266133pt;}
.y1a1{bottom:541.585200pt;}
.y1c3{bottom:544.230933pt;}
.y3a{bottom:546.233467pt;}
.y17{bottom:547.800400pt;}
.ye5{bottom:548.068267pt;}
.y7{bottom:549.924400pt;}
.y47{bottom:550.066133pt;}
.y64{bottom:551.580000pt;}
.yc3{bottom:552.398933pt;}
.y8d{bottom:555.662000pt;}
.y1a0{bottom:557.942133pt;}
.y1c2{bottom:560.230933pt;}
.y39{bottom:562.309467pt;}
.y6{bottom:562.724400pt;}
.ye4{bottom:562.734933pt;}
.y46{bottom:562.866133pt;}
.y16{bottom:563.800400pt;}
.yb7{bottom:567.580000pt;}
.yc2{bottom:568.398933pt;}
.y19f{bottom:574.299067pt;}
.y63{bottom:575.139067pt;}
.y1c1{bottom:576.230933pt;}
.y8c{bottom:578.061867pt;}
.y38{bottom:578.385600pt;}
.y15{bottom:579.800400pt;}
.yb6{bottom:583.580000pt;}
.y13f{bottom:583.788800pt;}
.y3{bottom:584.787467pt;}
.y19e{bottom:590.656133pt;}
.y62{bottom:591.139067pt;}
.yc1{bottom:591.958000pt;}
.y37{bottom:594.461733pt;}
.y14{bottom:595.800400pt;}
.yf0{bottom:599.580000pt;}
.y13e{bottom:599.788800pt;}
.y1c0{bottom:599.790000pt;}
.y19d{bottom:607.013067pt;}
.y61{bottom:607.139067pt;}
.yc0{bottom:607.958000pt;}
.y36{bottom:610.537867pt;}
.y13{bottom:611.800533pt;}
.yef{bottom:615.580000pt;}
.y13d{bottom:615.788800pt;}
.y1bf{bottom:615.790000pt;}
.y60{bottom:623.139067pt;}
.y19c{bottom:623.370000pt;}
.ybf{bottom:623.958000pt;}
.y10a{bottom:625.301867pt;}
.yee{bottom:631.580000pt;}
.y13c{bottom:631.788800pt;}
.y1be{bottom:631.790000pt;}
.y35{bottom:634.172933pt;}
.y12{bottom:635.359600pt;}
.y5f{bottom:639.139067pt;}
.y19b{bottom:639.726933pt;}
.ybe{bottom:639.958000pt;}
.y109{bottom:639.968533pt;}
.yed{bottom:647.580000pt;}
.y1bd{bottom:647.790000pt;}
.y34{bottom:650.249067pt;}
.y11{bottom:651.359600pt;}
.y5e{bottom:655.139067pt;}
.y13b{bottom:655.348000pt;}
.ybd{bottom:655.958000pt;}
.y19a{bottom:656.083867pt;}
.y141{bottom:658.561733pt;}
.yec{bottom:663.580000pt;}
.y1bc{bottom:663.790000pt;}
.y33{bottom:666.325067pt;}
.y10{bottom:667.359600pt;}
.y2{bottom:668.787467pt;}
.y5d{bottom:671.139067pt;}
.y13a{bottom:671.348000pt;}
.ybc{bottom:671.958000pt;}
.y199{bottom:672.440933pt;}
.y140{bottom:673.228400pt;}
.yeb{bottom:679.580000pt;}
.y1bb{bottom:679.790000pt;}
.y32{bottom:682.401200pt;}
.yf{bottom:683.359600pt;}
.y5c{bottom:687.139067pt;}
.y139{bottom:687.347867pt;}
.ybb{bottom:687.958000pt;}
.y198{bottom:688.797867pt;}
.yea{bottom:695.580133pt;}
.y31{bottom:698.477333pt;}
.ye{bottom:699.359600pt;}
.y5b{bottom:703.139067pt;}
.y138{bottom:703.347867pt;}
.y1ba{bottom:703.349067pt;}
.yba{bottom:703.958000pt;}
.y197{bottom:705.154800pt;}
.ye9{bottom:711.580133pt;}
.y30{bottom:714.553333pt;}
.yd{bottom:715.359600pt;}
.y8b{bottom:719.139067pt;}
.y137{bottom:719.347867pt;}
.y1b9{bottom:719.349067pt;}
.yb9{bottom:719.958000pt;}
.y196{bottom:721.511733pt;}
.y5a{bottom:726.698133pt;}
.ye8{bottom:727.580133pt;}
.y2f{bottom:730.629333pt;}
.yc{bottom:731.359600pt;}
.y8a{bottom:735.139067pt;}
.y136{bottom:735.347867pt;}
.y1b8{bottom:735.349067pt;}
.yb8{bottom:735.958000pt;}
.y195{bottom:737.868667pt;}
.y59{bottom:742.698133pt;}
.y10d{bottom:743.580133pt;}
.y2e{bottom:746.705600pt;}
.yb{bottom:747.359600pt;}
.y89{bottom:751.139067pt;}
.y135{bottom:751.347867pt;}
.y1b7{bottom:751.349067pt;}
.y194{bottom:754.225733pt;}
.y58{bottom:758.698133pt;}
.y10c{bottom:759.580133pt;}
.y2d{bottom:762.781600pt;}
.yb2{bottom:762.803200pt;}
.ya{bottom:763.359600pt;}
.y88{bottom:767.139067pt;}
.y134{bottom:767.347867pt;}
.y1b6{bottom:767.349067pt;}
.y193{bottom:770.582667pt;}
.y57{bottom:774.698133pt;}
.y2c{bottom:778.857733pt;}
.ye3{bottom:782.719200pt;}
.y87{bottom:783.139067pt;}
.y133{bottom:783.347867pt;}
.y1b5{bottom:783.349067pt;}
.y192{bottom:786.939600pt;}
.y56{bottom:790.698133pt;}
.y2b{bottom:794.933733pt;}
.ye2{bottom:797.385867pt;}
.y86{bottom:799.139067pt;}
.y132{bottom:799.347867pt;}
.y55{bottom:806.698133pt;}
.y1b4{bottom:806.908133pt;}
.y191{bottom:810.855600pt;}
.y2a{bottom:811.009867pt;}
.y14f{bottom:812.598400pt;}
.y171{bottom:812.598533pt;}
.y85{bottom:815.139067pt;}
.y131{bottom:815.347867pt;}
.y54{bottom:822.698133pt;}
.y1b3{bottom:822.908133pt;}
.y29{bottom:827.086000pt;}
.y190{bottom:827.212533pt;}
.y170{bottom:828.810133pt;}
.y14e{bottom:828.822000pt;}
.y84{bottom:831.139067pt;}
.y53{bottom:838.698133pt;}
.y130{bottom:838.906933pt;}
.y1b2{bottom:838.908133pt;}
.y28{bottom:843.162000pt;}
.y18f{bottom:843.569467pt;}
.y16f{bottom:845.021867pt;}
.y83{bottom:847.139067pt;}
.y14d{bottom:852.604533pt;}
.y52{bottom:854.698133pt;}
.y12f{bottom:854.906933pt;}
.y1b1{bottom:854.908133pt;}
.y18e{bottom:859.926400pt;}
.y16e{bottom:861.233600pt;}
.y82{bottom:863.139067pt;}
.y27{bottom:866.797200pt;}
.y14c{bottom:868.828000pt;}
.y51{bottom:870.698133pt;}
.y12e{bottom:870.906933pt;}
.y1b0{bottom:870.908133pt;}
.y18d{bottom:876.283333pt;}
.y16d{bottom:877.445333pt;}
.y81{bottom:879.139067pt;}
.y26{bottom:882.873333pt;}
.y14b{bottom:885.051600pt;}
.y50{bottom:886.698133pt;}
.y12d{bottom:886.906933pt;}
.y1af{bottom:886.908133pt;}
.y18c{bottom:892.640267pt;}
.y16c{bottom:893.657067pt;}
.yb5{bottom:895.139067pt;}
.y25{bottom:898.949333pt;}
.y14a{bottom:901.275067pt;}
.y4f{bottom:902.698133pt;}
.y12c{bottom:902.906933pt;}
.y18b{bottom:908.997333pt;}
.y1ae{bottom:910.467067pt;}
.y24{bottom:915.025333pt;}
.y16b{bottom:917.427867pt;}
.y149{bottom:917.498667pt;}
.y4e{bottom:918.698133pt;}
.y12b{bottom:918.906933pt;}
.y18a{bottom:925.354267pt;}
.y1ad{bottom:926.467067pt;}
.y23{bottom:931.101333pt;}
.y16a{bottom:933.639600pt;}
.y148{bottom:933.722133pt;}
.y4d{bottom:934.698133pt;}
.y12a{bottom:934.906933pt;}
.y189{bottom:941.711200pt;}
.y1ac{bottom:942.467067pt;}
.y22{bottom:947.177467pt;}
.y45{bottom:948.031467pt;}
.y169{bottom:949.851200pt;}
.y147{bottom:949.945733pt;}
.y4c{bottom:950.698133pt;}
.y129{bottom:950.906933pt;}
.y188{bottom:958.068133pt;}
.y1ab{bottom:958.467067pt;}
.y21{bottom:963.253600pt;}
.y168{bottom:966.062933pt;}
.y146{bottom:966.169333pt;}
.y44{bottom:966.698133pt;}
.y128{bottom:966.906933pt;}
.y187{bottom:974.425200pt;}
.y1aa{bottom:974.467067pt;}
.y167{bottom:982.274800pt;}
.y145{bottom:982.392800pt;}
.y4b{bottom:982.698133pt;}
.y127{bottom:982.906933pt;}
.y20{bottom:986.888800pt;}
.y43{bottom:988.031467pt;}
.y1a9{bottom:998.026267pt;}
.y186{bottom:998.341200pt;}
.y166{bottom:998.486400pt;}
.y144{bottom:998.616267pt;}
.y4a{bottom:998.698133pt;}
.y126{bottom:998.906933pt;}
.y1f{bottom:1009.364800pt;}
.y49{bottom:1014.698133pt;}
.y143{bottom:1014.839867pt;}
.y125{bottom:1014.906933pt;}
.y9{bottom:1088.220400pt;}
.h5{height:32.085333pt;}
.hd{height:35.904000pt;}
.h6{height:36.096000pt;}
.he{height:39.093333pt;}
.h7{height:39.893333pt;}
.hf{height:40.472405pt;}
.ha{height:41.300626pt;}
.hb{height:46.416000pt;}
.hc{height:48.128000pt;}
.h8{height:51.573333pt;}
.h4{height:72.192000pt;}
.h9{height:73.322667pt;}
.h3{height:219.744000pt;}
.h2{height:467.973333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:27.100133pt;}
.x10{left:33.300400pt;}
.x2e{left:34.584133pt;}
.x12{left:37.839867pt;}
.x20{left:57.470133pt;}
.x1e{left:69.746000pt;}
.x1f{left:72.205733pt;}
.x9{left:94.488133pt;}
.x15{left:101.776533pt;}
.x28{left:110.243067pt;}
.xa{left:113.385867pt;}
.x1{left:124.986800pt;}
.x13{left:132.283467pt;}
.x29{left:148.024400pt;}
.xf{left:149.452000pt;}
.x26{left:175.441333pt;}
.x16{left:196.600133pt;}
.x17{left:197.643600pt;}
.x2c{left:207.734800pt;}
.x24{left:214.620267pt;}
.x2d{left:241.045867pt;}
.x4{left:244.324933pt;}
.x1b{left:245.959467pt;}
.x3{left:247.129733pt;}
.x2a{left:248.862133pt;}
.x25{left:251.662933pt;}
.x1a{left:280.290533pt;}
.x1c{left:349.523733pt;}
.xb{left:395.401600pt;}
.x1d{left:397.642133pt;}
.x22{left:410.519600pt;}
.xc{left:414.299200pt;}
.x21{left:429.417333pt;}
.x2f{left:432.114800pt;}
.x14{left:433.196800pt;}
.x27{left:440.755867pt;}
.xd{left:446.105200pt;}
.x30{left:447.232933pt;}
.x5{left:458.949333pt;}
.x18{left:461.016667pt;}
.x3b{left:464.886400pt;}
.x2{left:466.437600pt;}
.x39{left:472.059467pt;}
.x42{left:474.739200pt;}
.x19{left:479.914267pt;}
.x32{left:510.738800pt;}
.x37{left:519.100000pt;}
.x41{left:540.507467pt;}
.x3e{left:548.428000pt;}
.x8{left:557.154667pt;}
.x3a{left:562.866667pt;}
.x43{left:567.258800pt;}
.x44{left:576.878000pt;}
.xe{left:589.479867pt;}
.x40{left:591.698267pt;}
.x35{left:592.926533pt;}
.x38{left:611.194000pt;}
.x34{left:617.351600pt;}
.x45{left:624.583200pt;}
.x31{left:636.524133pt;}
.x33{left:638.671200pt;}
.x36{left:644.819333pt;}
.x3d{left:652.700133pt;}
.x3c{left:666.697067pt;}
.x23{left:668.222533pt;}
.x3f{left:681.563600pt;}
.x7{left:726.312800pt;}
.x6{left:733.400933pt;}
.x2b{left:736.136933pt;}
}

