
    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_7b6bdb865c559239a5a4738e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7ba5c09181bae18db3fb721e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eaad38c855d9441b6d77379d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_80560173f8843de5d49f8e91.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_7c66f8a6f297fbe62c6aa1aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.086426;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_12196be00307a349bccab825.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5e8f8c050d5d4521417ad6ab.woff')format("woff");}.ff7{font-family:ff7;line-height:0.698242;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_2c225b7fb986d33b203e8f8b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2c225b7fb986d33b203e8f8b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-3.368400px;}
.v2{vertical-align:-1.054200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.054200px;}
.v4{vertical-align:19.800000px;}
.ls49{letter-spacing:-4.440000px;}
.ls32{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.660000px;}
.lsd{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.120000px;}
.ls22{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls2b{letter-spacing:0.060000px;}
.ls2f{letter-spacing:0.097200px;}
.ls11{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.322800px;}
.ls18{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.390000px;}
.ls20{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls47{letter-spacing:0.558600px;}
.ls29{letter-spacing:0.570000px;}
.ls3{letter-spacing:0.600000px;}
.ls3a{letter-spacing:0.602400px;}
.ls1c{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.780000px;}
.ls7{letter-spacing:0.840000px;}
.ls1f{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.960000px;}
.ls3d{letter-spacing:1.011000px;}
.ls12{letter-spacing:1.020000px;}
.ls3e{letter-spacing:1.020600px;}
.ls19{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.140000px;}
.ls2a{letter-spacing:1.200000px;}
.ls3b{letter-spacing:1.237200px;}
.ls3c{letter-spacing:1.246800px;}
.ls5{letter-spacing:1.260000px;}
.ls1b{letter-spacing:1.320000px;}
.ls15{letter-spacing:1.380000px;}
.ls14{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.500000px;}
.ls41{letter-spacing:1.554000px;}
.ls1d{letter-spacing:1.560000px;}
.ls33{letter-spacing:1.562400px;}
.ls40{letter-spacing:1.563600px;}
.ls34{letter-spacing:1.571400px;}
.ls30{letter-spacing:1.680000px;}
.ls1e{letter-spacing:1.740000px;}
.ls46{letter-spacing:1.800000px;}
.ls4{letter-spacing:1.860000px;}
.ls48{letter-spacing:1.920000px;}
.ls43{letter-spacing:2.100000px;}
.ls31{letter-spacing:2.220000px;}
.ls45{letter-spacing:2.340000px;}
.ls44{letter-spacing:2.460000px;}
.ls3f{letter-spacing:2.520000px;}
.ls26{letter-spacing:2.700000px;}
.ls36{letter-spacing:2.793000px;}
.ls38{letter-spacing:2.802600px;}
.ls39{letter-spacing:2.803200px;}
.ls35{letter-spacing:2.803800px;}
.ls37{letter-spacing:2.820000px;}
.ls4a{letter-spacing:5.431200px;}
.ls4b{letter-spacing:7.828200px;}
.ls0{letter-spacing:2812.500000px;}
.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;}
}
.ws66{word-spacing:-16.020000px;}
.ws2b{word-spacing:-15.570000px;}
.ws98{word-spacing:-15.420000px;}
.ws71{word-spacing:-15.360000px;}
.ws17{word-spacing:-15.000000px;}
.ws72{word-spacing:-14.880000px;}
.ws99{word-spacing:-14.820000px;}
.ws16{word-spacing:-13.500000px;}
.ws73{word-spacing:-8.700000px;}
.ws7a{word-spacing:-7.500000px;}
.wsb2{word-spacing:-7.080000px;}
.wsaa{word-spacing:-7.020000px;}
.ws7c{word-spacing:-6.720000px;}
.wsb3{word-spacing:-5.940000px;}
.ws84{word-spacing:-5.820000px;}
.wsac{word-spacing:-5.700000px;}
.ws7e{word-spacing:-5.580000px;}
.wsa9{word-spacing:-5.520000px;}
.ws4a{word-spacing:-5.460000px;}
.ws1{word-spacing:-5.292000px;}
.ws9d{word-spacing:-5.280000px;}
.ws92{word-spacing:-5.100000px;}
.ws8{word-spacing:-5.076000px;}
.ws14{word-spacing:-5.040000px;}
.ws63{word-spacing:-4.860000px;}
.ws49{word-spacing:-4.800000px;}
.ws5c{word-spacing:-4.590000px;}
.ws13{word-spacing:-4.500000px;}
.ws48{word-spacing:-4.440000px;}
.ws58{word-spacing:-4.380000px;}
.ws26{word-spacing:-4.320000px;}
.ws44{word-spacing:-4.260000px;}
.ws65{word-spacing:-4.212000px;}
.ws1e{word-spacing:-4.200000px;}
.ws96{word-spacing:-4.140000px;}
.ws61{word-spacing:-4.080000px;}
.ws45{word-spacing:-4.020000px;}
.ws97{word-spacing:-3.960000px;}
.ws5e{word-spacing:-3.900000px;}
.ws28{word-spacing:-3.840000px;}
.ws43{word-spacing:-3.780000px;}
.ws47{word-spacing:-3.720000px;}
.ws41{word-spacing:-3.660000px;}
.ws1a{word-spacing:-3.600000px;}
.ws19{word-spacing:-3.540000px;}
.ws60{word-spacing:-3.360000px;}
.ws1b{word-spacing:-3.240000px;}
.ws31{word-spacing:-3.180000px;}
.ws38{word-spacing:-3.120000px;}
.ws34{word-spacing:-3.060000px;}
.ws2c{word-spacing:-3.000000px;}
.ws2a{word-spacing:-2.940000px;}
.ws1f{word-spacing:-2.880000px;}
.ws15{word-spacing:-2.820000px;}
.ws6a{word-spacing:-2.700000px;}
.ws25{word-spacing:-2.640000px;}
.ws2e{word-spacing:-2.520000px;}
.ws7{word-spacing:-2.484000px;}
.ws5f{word-spacing:-2.460000px;}
.ws2f{word-spacing:-2.340000px;}
.ws6d{word-spacing:-2.220000px;}
.ws2d{word-spacing:-2.160000px;}
.ws1c{word-spacing:-2.100000px;}
.ws1d{word-spacing:-2.040000px;}
.ws37{word-spacing:-1.980000px;}
.ws27{word-spacing:-1.920000px;}
.ws6c{word-spacing:-1.860000px;}
.ws5b{word-spacing:-1.836000px;}
.wsa{word-spacing:-1.728000px;}
.ws22{word-spacing:-1.680000px;}
.ws21{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.566000px;}
.ws67{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.500000px;}
.ws6b{word-spacing:-1.440000px;}
.ws79{word-spacing:-1.320000px;}
.ws69{word-spacing:-1.260000px;}
.ws7d{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.080000px;}
.ws35{word-spacing:-1.020000px;}
.ws42{word-spacing:-0.960000px;}
.ws20{word-spacing:-0.840000px;}
.ws55{word-spacing:-0.780000px;}
.ws24{word-spacing:-0.660000px;}
.ws68{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.594000px;}
.ws36{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.480000px;}
.ws3{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.420000px;}
.ws32{word-spacing:-0.300000px;}
.ws53{word-spacing:-0.240000px;}
.ws59{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.120000px;}
.ws70{word-spacing:-0.108000px;}
.ws74{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.060000px;}
.ws54{word-spacing:0.120000px;}
.ws5a{word-spacing:0.180000px;}
.ws56{word-spacing:0.240000px;}
.ws62{word-spacing:0.300000px;}
.ws40{word-spacing:0.360000px;}
.ws29{word-spacing:0.420000px;}
.ws18{word-spacing:0.480000px;}
.ws5d{word-spacing:0.540000px;}
.ws9{word-spacing:0.702000px;}
.ws89{word-spacing:0.720000px;}
.ws10{word-spacing:0.810000px;}
.ws64{word-spacing:0.840000px;}
.ws4{word-spacing:0.972000px;}
.wsb1{word-spacing:1.200000px;}
.ws11{word-spacing:1.248000px;}
.wsf{word-spacing:1.296000px;}
.wsb{word-spacing:1.404000px;}
.ws78{word-spacing:1.560000px;}
.ws5{word-spacing:1.674000px;}
.wsa4{word-spacing:1.860000px;}
.wsa0{word-spacing:1.920000px;}
.ws2{word-spacing:2.376000px;}
.wsad{word-spacing:2.400000px;}
.ws6{word-spacing:2.484000px;}
.ws75{word-spacing:2.760000px;}
.wsab{word-spacing:2.820000px;}
.wsa7{word-spacing:2.880000px;}
.ws87{word-spacing:2.940000px;}
.wsb0{word-spacing:3.480000px;}
.wsd{word-spacing:3.780000px;}
.ws9e{word-spacing:3.900000px;}
.wsa6{word-spacing:4.080000px;}
.ws76{word-spacing:4.200000px;}
.wse{word-spacing:4.266000px;}
.ws83{word-spacing:4.440000px;}
.ws7b{word-spacing:4.620000px;}
.ws8c{word-spacing:4.680000px;}
.ws9a{word-spacing:4.740000px;}
.ws95{word-spacing:4.920000px;}
.ws80{word-spacing:5.280000px;}
.wsaf{word-spacing:5.340000px;}
.ws9b{word-spacing:5.460000px;}
.ws81{word-spacing:5.700000px;}
.ws86{word-spacing:5.760000px;}
.ws8a{word-spacing:5.940000px;}
.ws8f{word-spacing:6.420000px;}
.ws7f{word-spacing:6.660000px;}
.ws88{word-spacing:6.780000px;}
.ws9f{word-spacing:7.140000px;}
.wsa1{word-spacing:7.260000px;}
.ws82{word-spacing:7.440000px;}
.ws93{word-spacing:7.740000px;}
.ws85{word-spacing:7.860000px;}
.wsa2{word-spacing:8.220000px;}
.ws8e{word-spacing:8.700000px;}
.ws94{word-spacing:8.940000px;}
.ws91{word-spacing:9.180000px;}
.wsa8{word-spacing:9.360000px;}
.wsae{word-spacing:9.960000px;}
.wsa5{word-spacing:10.020000px;}
.wsb4{word-spacing:10.740000px;}
.ws8d{word-spacing:10.860000px;}
.ws90{word-spacing:11.160000px;}
.wsa3{word-spacing:12.060000px;}
.ws8b{word-spacing:12.300000px;}
.ws9c{word-spacing:14.340000px;}
.ws77{word-spacing:15.000000px;}
.ws50{word-spacing:29.875800px;}
.ws4d{word-spacing:33.277200px;}
.ws52{word-spacing:35.078400px;}
.ws30{word-spacing:90.360000px;}
.ws4b{word-spacing:90.573000px;}
.ws3b{word-spacing:94.606200px;}
.ws3f{word-spacing:95.128800px;}
.ws3c{word-spacing:95.129400px;}
.ws4e{word-spacing:100.060800px;}
.ws4f{word-spacing:137.929200px;}
.ws51{word-spacing:137.929800px;}
.ws4c{word-spacing:141.331200px;}
.ws3d{word-spacing:179.609400px;}
.ws39{word-spacing:179.619600px;}
.ws3e{word-spacing:203.182800px;}
.ws3a{word-spacing:203.183400px;}
._11{margin-left:-2810.767200px;}
._20{margin-left:-2763.259200px;}
._2b{margin-left:-2760.952800px;}
._d{margin-left:-14.220000px;}
._e{margin-left:-8.074200px;}
._7{margin-left:-6.922800px;}
._6{margin-left:-5.805000px;}
._4{margin-left:-4.446000px;}
._5{margin-left:-3.294000px;}
._0{margin-left:-1.350000px;}
._b{width:1.062000px;}
._8{width:2.430000px;}
._33{width:4.421400px;}
._32{width:5.704800px;}
._f{width:6.966000px;}
._34{width:8.669400px;}
._24{width:48.579000px;}
._2e{width:50.550600px;}
._25{width:52.084200px;}
._29{width:53.086200px;}
._26{width:57.777600px;}
._2a{width:62.078400px;}
._27{width:65.584200px;}
._28{width:71.277600px;}
._2d{width:104.073000px;}
._18{width:105.876000px;}
._1e{width:109.108800px;}
._19{width:113.071200px;}
._23{width:114.261600px;}
._17{width:115.379400px;}
._1b{width:119.376000px;}
._1d{width:121.539000px;}
._1a{width:128.879400px;}
._1f{width:135.039000px;}
._1c{width:137.870400px;}
._21{width:144.838800px;}
._15{width:163.600200px;}
._2c{width:168.625800px;}
._22{width:172.084200px;}
._14{width:173.088600px;}
._16{width:175.118400px;}
._12{width:225.312000px;}
._13{width:233.935800px;}
._a{width:238.837800px;}
._10{width:272.793000px;}
._30{width:412.063800px;}
._31{width:516.828600px;}
._2f{width:520.063800px;}
._2{width:1023.192000px;}
._1{width:1199.178000px;}
._c{width:1483.560000px;}
._9{width:1491.102000px;}
._3{width:1493.370000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.800000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:58.357950px;}
.y1{bottom:58.657950px;}
.y25{bottom:105.790800px;}
.yca{bottom:106.909500px;}
.yf5{bottom:107.635050px;}
.y102{bottom:107.695650px;}
.yae{bottom:112.216950px;}
.y92{bottom:113.612850px;}
.yad{bottom:118.065450px;}
.y91{bottom:119.461350px;}
.y66{bottom:119.851650px;}
.y124{bottom:121.036950px;}
.yc9{bottom:123.109500px;}
.y101{bottom:123.895650px;}
.yf4{bottom:125.635050px;}
.yac{bottom:133.590450px;}
.y24{bottom:134.590800px;}
.y90{bottom:134.986350px;}
.y65{bottom:137.851650px;}
.y123{bottom:139.036950px;}
.y100{bottom:140.095650px;}
.yf3{bottom:143.635050px;}
.y23{bottom:148.990800px;}
.yab{bottom:154.964100px;}
.y64{bottom:155.851650px;}
.yff{bottom:156.295650px;}
.y8f{bottom:156.359850px;}
.y122{bottom:157.036950px;}
.yaa{bottom:160.812600px;}
.yf2{bottom:161.635050px;}
.y8e{bottom:162.208350px;}
.y63{bottom:173.851650px;}
.y121{bottom:175.036950px;}
.ya9{bottom:176.337600px;}
.y8d{bottom:177.733350px;}
.yf1{bottom:179.635050px;}
.y62{bottom:191.851650px;}
.y120{bottom:193.036950px;}
.y2e{bottom:196.387050px;}
.yf0{bottom:197.635050px;}
.ya8{bottom:197.711100px;}
.y8c{bottom:199.106850px;}
.ya7{bottom:203.559600px;}
.y8b{bottom:204.955500px;}
.y61{bottom:209.851650px;}
.y11f{bottom:211.036950px;}
.y2d{bottom:214.387050px;}
.yef{bottom:215.635050px;}
.ya6{bottom:219.084600px;}
.y8a{bottom:220.480500px;}
.y60{bottom:227.851650px;}
.y11e{bottom:229.036950px;}
.y2c{bottom:232.387050px;}
.yee{bottom:233.635050px;}
.ya5{bottom:240.458250px;}
.y87{bottom:241.854000px;}
.y5f{bottom:245.851650px;}
.y11d{bottom:247.036950px;}
.y2b{bottom:250.387050px;}
.yed{bottom:251.635050px;}
.y88{bottom:257.379000px;}
.y89{bottom:257.616300px;}
.ya4{bottom:261.831750px;}
.y86{bottom:263.227500px;}
.y5e{bottom:263.851650px;}
.y11c{bottom:265.036950px;}
.y2a{bottom:268.387050px;}
.yec{bottom:269.635050px;}
.ya3{bottom:277.356750px;}
.y85{bottom:278.752500px;}
.y5d{bottom:281.851650px;}
.y11b{bottom:283.036950px;}
.y29{bottom:286.387050px;}
.yeb{bottom:287.635050px;}
.ya2{bottom:298.730250px;}
.y5c{bottom:299.851650px;}
.y84{bottom:300.126000px;}
.y11a{bottom:301.036950px;}
.y28{bottom:304.387050px;}
.yea{bottom:305.635050px;}
.y5b{bottom:317.851650px;}
.y119{bottom:319.036950px;}
.y27{bottom:322.387050px;}
.ye9{bottom:323.635050px;}
.ya1{bottom:335.309550px;}
.y5a{bottom:335.851650px;}
.yc6{bottom:336.989100px;}
.y118{bottom:337.036950px;}
.y26{bottom:340.387050px;}
.ye8{bottom:341.635050px;}
.y83{bottom:342.226950px;}
.y82{bottom:348.075450px;}
.y59{bottom:353.851650px;}
.y117{bottom:355.036950px;}
.y9f{bottom:356.575500px;}
.ya0{bottom:356.588700px;}
.ye7{bottom:359.635050px;}
.y81{bottom:363.600450px;}
.y14f{bottom:371.836950px;}
.y58{bottom:371.851650px;}
.y9e{bottom:372.100500px;}
.y116{bottom:373.036950px;}
.yc5{bottom:375.675000px;}
.ye6{bottom:377.635050px;}
.y80{bottom:384.974100px;}
.y14e{bottom:389.836950px;}
.y57{bottom:389.851650px;}
.y7f{bottom:390.822600px;}
.y115{bottom:391.036950px;}
.y22{bottom:391.272300px;}
.y9d{bottom:393.379500px;}
.yc4{bottom:393.675000px;}
.ye5{bottom:395.635050px;}
.yc8{bottom:397.576650px;}
.y7e{bottom:406.347600px;}
.y21{bottom:407.472300px;}
.y14d{bottom:407.836950px;}
.y56{bottom:407.851650px;}
.y114{bottom:409.036950px;}
.yc3{bottom:411.675000px;}
.ye4{bottom:413.635050px;}
.yc7{bottom:413.776650px;}
.y9b{bottom:414.645450px;}
.y9c{bottom:414.658650px;}
.y20{bottom:423.672300px;}
.y14c{bottom:425.836950px;}
.y55{bottom:425.851650px;}
.y113{bottom:427.036950px;}
.y7d{bottom:427.721100px;}
.yc2{bottom:429.675000px;}
.y9a{bottom:430.170450px;}
.ye3{bottom:431.635050px;}
.y7c{bottom:433.569600px;}
.y1f{bottom:439.872300px;}
.y14b{bottom:443.836950px;}
.y54{bottom:443.851650px;}
.y112{bottom:445.036950px;}
.yc1{bottom:447.675000px;}
.y7b{bottom:449.094600px;}
.ye2{bottom:449.635050px;}
.y99{bottom:451.449450px;}
.y1e{bottom:456.072300px;}
.y98{bottom:457.203450px;}
.y14a{bottom:461.836950px;}
.y53{bottom:461.851650px;}
.y111{bottom:463.036950px;}
.yc0{bottom:465.675000px;}
.ye1{bottom:467.635050px;}
.y78{bottom:470.468100px;}
.y1d{bottom:472.272300px;}
.y97{bottom:472.728450px;}
.y149{bottom:479.836950px;}
.y52{bottom:479.851650px;}
.y110{bottom:481.036950px;}
.ybf{bottom:483.675000px;}
.ye0{bottom:485.635050px;}
.y79{bottom:485.993250px;}
.y7a{bottom:486.230550px;}
.y1c{bottom:488.472300px;}
.y77{bottom:491.841750px;}
.y96{bottom:494.007450px;}
.y148{bottom:497.836950px;}
.y51{bottom:497.851650px;}
.y10f{bottom:499.036950px;}
.ybe{bottom:501.675000px;}
.ydf{bottom:503.635050px;}
.y1b{bottom:504.672300px;}
.y76{bottom:507.366750px;}
.y95{bottom:515.286600px;}
.y147{bottom:515.836950px;}
.y50{bottom:515.851650px;}
.ybd{bottom:519.675000px;}
.y1a{bottom:520.872300px;}
.yde{bottom:521.635050px;}
.y75{bottom:528.740250px;}
.y94{bottom:530.811600px;}
.y146{bottom:533.836950px;}
.y4f{bottom:533.851650px;}
.y10e{bottom:536.836950px;}
.y19{bottom:537.072300px;}
.ybc{bottom:537.675000px;}
.ydd{bottom:539.635050px;}
.y145{bottom:551.836950px;}
.y4e{bottom:551.851650px;}
.y93{bottom:552.137850px;}
.y18{bottom:553.272300px;}
.ybb{bottom:555.675000px;}
.ydc{bottom:557.635050px;}
.y17{bottom:569.472300px;}
.y144{bottom:569.836950px;}
.y4d{bottom:569.851650px;}
.y74{bottom:571.516200px;}
.y10d{bottom:572.836950px;}
.yba{bottom:573.675000px;}
.ydb{bottom:575.635050px;}
.y73{bottom:577.364700px;}
.y143{bottom:587.836950px;}
.y4c{bottom:587.851650px;}
.y10c{bottom:590.836950px;}
.yb9{bottom:591.675000px;}
.y72{bottom:592.889700px;}
.yda{bottom:593.635050px;}
.y16{bottom:601.872300px;}
.y142{bottom:605.836950px;}
.y4b{bottom:605.851650px;}
.y10b{bottom:608.836950px;}
.yb8{bottom:609.675000px;}
.yd9{bottom:611.635050px;}
.y71{bottom:614.263200px;}
.y15{bottom:618.072300px;}
.y70{bottom:620.111700px;}
.y141{bottom:623.836950px;}
.y4a{bottom:623.851650px;}
.y10a{bottom:626.836950px;}
.yb7{bottom:627.675000px;}
.yd8{bottom:629.635050px;}
.y14{bottom:634.272300px;}
.y6f{bottom:635.636700px;}
.y140{bottom:641.836950px;}
.y49{bottom:641.851650px;}
.y109{bottom:644.836950px;}
.yb6{bottom:645.675000px;}
.yd7{bottom:647.635050px;}
.y13{bottom:650.472300px;}
.y6e{bottom:657.010350px;}
.y13f{bottom:659.836950px;}
.y48{bottom:659.851650px;}
.y108{bottom:662.836950px;}
.y6d{bottom:662.858850px;}
.yb5{bottom:663.675000px;}
.yfe{bottom:665.620350px;}
.yd6{bottom:665.635050px;}
.y12{bottom:666.672300px;}
.y13e{bottom:677.836950px;}
.y47{bottom:677.851650px;}
.y6c{bottom:678.383850px;}
.y107{bottom:680.836950px;}
.yb4{bottom:681.675000px;}
.y11{bottom:682.872300px;}
.yfd{bottom:683.620350px;}
.yd5{bottom:683.635050px;}
.y13d{bottom:695.836950px;}
.y46{bottom:695.851650px;}
.y106{bottom:698.836950px;}
.y10{bottom:699.072300px;}
.yb3{bottom:699.675000px;}
.y69{bottom:699.757350px;}
.yfc{bottom:701.620350px;}
.yd4{bottom:701.635050px;}
.y13c{bottom:713.836950px;}
.y45{bottom:713.851650px;}
.yf{bottom:715.272300px;}
.y6a{bottom:715.282350px;}
.y6b{bottom:715.519650px;}
.y105{bottom:716.836950px;}
.yb2{bottom:717.675000px;}
.yfb{bottom:719.620350px;}
.yd3{bottom:719.635050px;}
.y68{bottom:721.130850px;}
.ye{bottom:731.472300px;}
.y13b{bottom:731.836950px;}
.y44{bottom:731.851650px;}
.y104{bottom:734.836950px;}
.yb1{bottom:735.675000px;}
.yfa{bottom:737.620350px;}
.yd2{bottom:737.635050px;}
.y67{bottom:742.504500px;}
.yd{bottom:747.672300px;}
.y13a{bottom:749.836950px;}
.y43{bottom:749.851650px;}
.y103{bottom:752.836950px;}
.yf9{bottom:755.620350px;}
.yd1{bottom:755.635050px;}
.yc{bottom:763.872300px;}
.y139{bottom:767.836950px;}
.y42{bottom:767.851650px;}
.yf8{bottom:773.620350px;}
.yd0{bottom:773.635050px;}
.yb{bottom:780.072300px;}
.y138{bottom:785.836950px;}
.y41{bottom:785.851650px;}
.y127{bottom:786.002100px;}
.yb0{bottom:788.475000px;}
.yf7{bottom:791.620350px;}
.ycf{bottom:791.635050px;}
.ya{bottom:796.272300px;}
.y126{bottom:802.202100px;}
.y137{bottom:803.836950px;}
.y40{bottom:803.851650px;}
.yaf{bottom:804.675000px;}
.yf6{bottom:809.620350px;}
.yce{bottom:809.635050px;}
.y125{bottom:818.402100px;}
.y136{bottom:821.836950px;}
.y3f{bottom:821.851650px;}
.y135{bottom:839.836950px;}
.y3e{bottom:839.851650px;}
.y9{bottom:852.072300px;}
.ycd{bottom:854.956650px;}
.y134{bottom:857.836950px;}
.y3d{bottom:857.851650px;}
.y8{bottom:868.272300px;}
.ycc{bottom:871.156650px;}
.y133{bottom:875.836950px;}
.y3c{bottom:875.851650px;}
.y7{bottom:886.272300px;}
.y132{bottom:893.836950px;}
.y3b{bottom:893.851650px;}
.y6{bottom:904.272300px;}
.y131{bottom:911.836950px;}
.y3a{bottom:911.851650px;}
.y130{bottom:929.836950px;}
.y39{bottom:929.851650px;}
.y12f{bottom:947.836950px;}
.y38{bottom:947.851650px;}
.y5{bottom:961.872300px;}
.y12e{bottom:965.836950px;}
.y37{bottom:965.851650px;}
.y12d{bottom:983.836950px;}
.y36{bottom:983.851650px;}
.y12c{bottom:1001.836950px;}
.y35{bottom:1001.851650px;}
.y12b{bottom:1019.836950px;}
.y34{bottom:1019.851650px;}
.y12a{bottom:1037.836950px;}
.y33{bottom:1037.851650px;}
.y129{bottom:1055.836950px;}
.y32{bottom:1055.851650px;}
.y4{bottom:1072.255350px;}
.y128{bottom:1073.836950px;}
.y31{bottom:1073.851650px;}
.ycb{bottom:1074.891600px;}
.y3{bottom:1088.455350px;}
.y2{bottom:1104.655350px;}
.y30{bottom:1118.726700px;}
.h6{height:33.351562px;}
.h5{height:37.494141px;}
.h2{height:37.520508px;}
.hc{height:37.572708px;}
.hb{height:37.573308px;}
.h8{height:38.443341px;}
.h9{height:41.074219px;}
.h11{height:41.660156px;}
.h7{height:41.689453px;}
.ha{height:42.714356px;}
.h10{height:43.962291px;}
.hf{height:43.962891px;}
.hd{height:47.118164px;}
.he{height:47.170964px;}
.h4{height:52.353516px;}
.h3{height:85.800000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.050000px;}
.x2b{left:87.309300px;}
.x21{left:88.451400px;}
.x11{left:91.049850px;}
.x2a{left:99.212550px;}
.x2{left:103.869600px;}
.x9{left:110.539350px;}
.x2c{left:111.896250px;}
.x8{left:127.564350px;}
.x7{left:153.064350px;}
.x22{left:174.908100px;}
.x12{left:197.624850px;}
.x24{left:246.181350px;}
.x1b{left:260.012550px;}
.x14{left:279.142800px;}
.x1a{left:281.445750px;}
.xc{left:298.888650px;}
.x17{left:313.116300px;}
.x13{left:315.565800px;}
.x25{left:377.108700px;}
.x1d{left:387.571500px;}
.x26{left:399.547200px;}
.x1c{left:409.380450px;}
.xa{left:461.344200px;}
.x16{left:466.723050px;}
.x18{left:477.256050px;}
.x15{left:479.712150px;}
.x19{left:485.268300px;}
.xb{left:486.844200px;}
.x27{left:498.303450px;}
.x28{left:505.920300px;}
.x1f{left:527.131050px;}
.x1e{left:539.559750px;}
.x5{left:558.648750px;}
.x29{left:616.790100px;}
.x6{left:621.277350px;}
.x4{left:625.753200px;}
.x20{left:639.351900px;}
.xd{left:642.943950px;}
.x3{left:655.057500px;}
.xe{left:737.943300px;}
.x10{left:739.377150px;}
.x23{left:750.426150px;}
.xf{left:801.873900px;}
@media print{
.v3{vertical-align:-2.994133pt;}
.v2{vertical-align:-0.937067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:0.937067pt;}
.v4{vertical-align:17.600000pt;}
.ls49{letter-spacing:-3.946667pt;}
.ls32{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.586667pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls22{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls2b{letter-spacing:0.053333pt;}
.ls2f{letter-spacing:0.086400pt;}
.ls11{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.286933pt;}
.ls18{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.346667pt;}
.ls20{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls47{letter-spacing:0.496533pt;}
.ls29{letter-spacing:0.506667pt;}
.ls3{letter-spacing:0.533333pt;}
.ls3a{letter-spacing:0.535467pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls7{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.853333pt;}
.ls3d{letter-spacing:0.898667pt;}
.ls12{letter-spacing:0.906667pt;}
.ls3e{letter-spacing:0.907200pt;}
.ls19{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls2a{letter-spacing:1.066667pt;}
.ls3b{letter-spacing:1.099733pt;}
.ls3c{letter-spacing:1.108267pt;}
.ls5{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls15{letter-spacing:1.226667pt;}
.ls14{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.333333pt;}
.ls41{letter-spacing:1.381333pt;}
.ls1d{letter-spacing:1.386667pt;}
.ls33{letter-spacing:1.388800pt;}
.ls40{letter-spacing:1.389867pt;}
.ls34{letter-spacing:1.396800pt;}
.ls30{letter-spacing:1.493333pt;}
.ls1e{letter-spacing:1.546667pt;}
.ls46{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.653333pt;}
.ls48{letter-spacing:1.706667pt;}
.ls43{letter-spacing:1.866667pt;}
.ls31{letter-spacing:1.973333pt;}
.ls45{letter-spacing:2.080000pt;}
.ls44{letter-spacing:2.186667pt;}
.ls3f{letter-spacing:2.240000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls36{letter-spacing:2.482667pt;}
.ls38{letter-spacing:2.491200pt;}
.ls39{letter-spacing:2.491733pt;}
.ls35{letter-spacing:2.492267pt;}
.ls37{letter-spacing:2.506667pt;}
.ls4a{letter-spacing:4.827733pt;}
.ls4b{letter-spacing:6.958400pt;}
.ls0{letter-spacing:2500.000000pt;}
.ws66{word-spacing:-14.240000pt;}
.ws2b{word-spacing:-13.840000pt;}
.ws98{word-spacing:-13.706667pt;}
.ws71{word-spacing:-13.653333pt;}
.ws17{word-spacing:-13.333333pt;}
.ws72{word-spacing:-13.226667pt;}
.ws99{word-spacing:-13.173333pt;}
.ws16{word-spacing:-12.000000pt;}
.ws73{word-spacing:-7.733333pt;}
.ws7a{word-spacing:-6.666667pt;}
.wsb2{word-spacing:-6.293333pt;}
.wsaa{word-spacing:-6.240000pt;}
.ws7c{word-spacing:-5.973333pt;}
.wsb3{word-spacing:-5.280000pt;}
.ws84{word-spacing:-5.173333pt;}
.wsac{word-spacing:-5.066667pt;}
.ws7e{word-spacing:-4.960000pt;}
.wsa9{word-spacing:-4.906667pt;}
.ws4a{word-spacing:-4.853333pt;}
.ws1{word-spacing:-4.704000pt;}
.ws9d{word-spacing:-4.693333pt;}
.ws92{word-spacing:-4.533333pt;}
.ws8{word-spacing:-4.512000pt;}
.ws14{word-spacing:-4.480000pt;}
.ws63{word-spacing:-4.320000pt;}
.ws49{word-spacing:-4.266667pt;}
.ws5c{word-spacing:-4.080000pt;}
.ws13{word-spacing:-4.000000pt;}
.ws48{word-spacing:-3.946667pt;}
.ws58{word-spacing:-3.893333pt;}
.ws26{word-spacing:-3.840000pt;}
.ws44{word-spacing:-3.786667pt;}
.ws65{word-spacing:-3.744000pt;}
.ws1e{word-spacing:-3.733333pt;}
.ws96{word-spacing:-3.680000pt;}
.ws61{word-spacing:-3.626667pt;}
.ws45{word-spacing:-3.573333pt;}
.ws97{word-spacing:-3.520000pt;}
.ws5e{word-spacing:-3.466667pt;}
.ws28{word-spacing:-3.413333pt;}
.ws43{word-spacing:-3.360000pt;}
.ws47{word-spacing:-3.306667pt;}
.ws41{word-spacing:-3.253333pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws19{word-spacing:-3.146667pt;}
.ws60{word-spacing:-2.986667pt;}
.ws1b{word-spacing:-2.880000pt;}
.ws31{word-spacing:-2.826667pt;}
.ws38{word-spacing:-2.773333pt;}
.ws34{word-spacing:-2.720000pt;}
.ws2c{word-spacing:-2.666667pt;}
.ws2a{word-spacing:-2.613333pt;}
.ws1f{word-spacing:-2.560000pt;}
.ws15{word-spacing:-2.506667pt;}
.ws6a{word-spacing:-2.400000pt;}
.ws25{word-spacing:-2.346667pt;}
.ws2e{word-spacing:-2.240000pt;}
.ws7{word-spacing:-2.208000pt;}
.ws5f{word-spacing:-2.186667pt;}
.ws2f{word-spacing:-2.080000pt;}
.ws6d{word-spacing:-1.973333pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws1c{word-spacing:-1.866667pt;}
.ws1d{word-spacing:-1.813333pt;}
.ws37{word-spacing:-1.760000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws6c{word-spacing:-1.653333pt;}
.ws5b{word-spacing:-1.632000pt;}
.wsa{word-spacing:-1.536000pt;}
.ws22{word-spacing:-1.493333pt;}
.ws21{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.392000pt;}
.ws67{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.333333pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws79{word-spacing:-1.173333pt;}
.ws69{word-spacing:-1.120000pt;}
.ws7d{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.960000pt;}
.ws35{word-spacing:-0.906667pt;}
.ws42{word-spacing:-0.853333pt;}
.ws20{word-spacing:-0.746667pt;}
.ws55{word-spacing:-0.693333pt;}
.ws24{word-spacing:-0.586667pt;}
.ws68{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.528000pt;}
.ws36{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.426667pt;}
.ws3{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.373333pt;}
.ws32{word-spacing:-0.266667pt;}
.ws53{word-spacing:-0.213333pt;}
.ws59{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.106667pt;}
.ws70{word-spacing:-0.096000pt;}
.ws74{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.053333pt;}
.ws54{word-spacing:0.106667pt;}
.ws5a{word-spacing:0.160000pt;}
.ws56{word-spacing:0.213333pt;}
.ws62{word-spacing:0.266667pt;}
.ws40{word-spacing:0.320000pt;}
.ws29{word-spacing:0.373333pt;}
.ws18{word-spacing:0.426667pt;}
.ws5d{word-spacing:0.480000pt;}
.ws9{word-spacing:0.624000pt;}
.ws89{word-spacing:0.640000pt;}
.ws10{word-spacing:0.720000pt;}
.ws64{word-spacing:0.746667pt;}
.ws4{word-spacing:0.864000pt;}
.wsb1{word-spacing:1.066667pt;}
.ws11{word-spacing:1.109333pt;}
.wsf{word-spacing:1.152000pt;}
.wsb{word-spacing:1.248000pt;}
.ws78{word-spacing:1.386667pt;}
.ws5{word-spacing:1.488000pt;}
.wsa4{word-spacing:1.653333pt;}
.wsa0{word-spacing:1.706667pt;}
.ws2{word-spacing:2.112000pt;}
.wsad{word-spacing:2.133333pt;}
.ws6{word-spacing:2.208000pt;}
.ws75{word-spacing:2.453333pt;}
.wsab{word-spacing:2.506667pt;}
.wsa7{word-spacing:2.560000pt;}
.ws87{word-spacing:2.613333pt;}
.wsb0{word-spacing:3.093333pt;}
.wsd{word-spacing:3.360000pt;}
.ws9e{word-spacing:3.466667pt;}
.wsa6{word-spacing:3.626667pt;}
.ws76{word-spacing:3.733333pt;}
.wse{word-spacing:3.792000pt;}
.ws83{word-spacing:3.946667pt;}
.ws7b{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws9a{word-spacing:4.213333pt;}
.ws95{word-spacing:4.373333pt;}
.ws80{word-spacing:4.693333pt;}
.wsaf{word-spacing:4.746667pt;}
.ws9b{word-spacing:4.853333pt;}
.ws81{word-spacing:5.066667pt;}
.ws86{word-spacing:5.120000pt;}
.ws8a{word-spacing:5.280000pt;}
.ws8f{word-spacing:5.706667pt;}
.ws7f{word-spacing:5.920000pt;}
.ws88{word-spacing:6.026667pt;}
.ws9f{word-spacing:6.346667pt;}
.wsa1{word-spacing:6.453333pt;}
.ws82{word-spacing:6.613333pt;}
.ws93{word-spacing:6.880000pt;}
.ws85{word-spacing:6.986667pt;}
.wsa2{word-spacing:7.306667pt;}
.ws8e{word-spacing:7.733333pt;}
.ws94{word-spacing:7.946667pt;}
.ws91{word-spacing:8.160000pt;}
.wsa8{word-spacing:8.320000pt;}
.wsae{word-spacing:8.853333pt;}
.wsa5{word-spacing:8.906667pt;}
.wsb4{word-spacing:9.546667pt;}
.ws8d{word-spacing:9.653333pt;}
.ws90{word-spacing:9.920000pt;}
.wsa3{word-spacing:10.720000pt;}
.ws8b{word-spacing:10.933333pt;}
.ws9c{word-spacing:12.746667pt;}
.ws77{word-spacing:13.333333pt;}
.ws50{word-spacing:26.556267pt;}
.ws4d{word-spacing:29.579733pt;}
.ws52{word-spacing:31.180800pt;}
.ws30{word-spacing:80.320000pt;}
.ws4b{word-spacing:80.509333pt;}
.ws3b{word-spacing:84.094400pt;}
.ws3f{word-spacing:84.558933pt;}
.ws3c{word-spacing:84.559467pt;}
.ws4e{word-spacing:88.942933pt;}
.ws4f{word-spacing:122.603733pt;}
.ws51{word-spacing:122.604267pt;}
.ws4c{word-spacing:125.627733pt;}
.ws3d{word-spacing:159.652800pt;}
.ws39{word-spacing:159.661867pt;}
.ws3e{word-spacing:180.606933pt;}
.ws3a{word-spacing:180.607467pt;}
._11{margin-left:-2498.459733pt;}
._20{margin-left:-2456.230400pt;}
._2b{margin-left:-2454.180267pt;}
._d{margin-left:-12.640000pt;}
._e{margin-left:-7.177067pt;}
._7{margin-left:-6.153600pt;}
._6{margin-left:-5.160000pt;}
._4{margin-left:-3.952000pt;}
._5{margin-left:-2.928000pt;}
._0{margin-left:-1.200000pt;}
._b{width:0.944000pt;}
._8{width:2.160000pt;}
._33{width:3.930133pt;}
._32{width:5.070933pt;}
._f{width:6.192000pt;}
._34{width:7.706133pt;}
._24{width:43.181333pt;}
._2e{width:44.933867pt;}
._25{width:46.297067pt;}
._29{width:47.187733pt;}
._26{width:51.357867pt;}
._2a{width:55.180800pt;}
._27{width:58.297067pt;}
._28{width:63.357867pt;}
._2d{width:92.509333pt;}
._18{width:94.112000pt;}
._1e{width:96.985600pt;}
._19{width:100.507733pt;}
._23{width:101.565867pt;}
._17{width:102.559467pt;}
._1b{width:106.112000pt;}
._1d{width:108.034667pt;}
._1a{width:114.559467pt;}
._1f{width:120.034667pt;}
._1c{width:122.551467pt;}
._21{width:128.745600pt;}
._15{width:145.422400pt;}
._2c{width:149.889600pt;}
._22{width:152.963733pt;}
._14{width:153.856533pt;}
._16{width:155.660800pt;}
._12{width:200.277333pt;}
._13{width:207.942933pt;}
._a{width:212.300267pt;}
._10{width:242.482667pt;}
._30{width:366.278933pt;}
._31{width:459.403200pt;}
._2f{width:462.278933pt;}
._2{width:909.504000pt;}
._1{width:1065.936000pt;}
._c{width:1318.720000pt;}
._9{width:1325.424000pt;}
._3{width:1327.440000pt;}
.fs4{font-size:30.933333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:51.873733pt;}
.y1{bottom:52.140400pt;}
.y25{bottom:94.036267pt;}
.yca{bottom:95.030667pt;}
.yf5{bottom:95.675600pt;}
.y102{bottom:95.729467pt;}
.yae{bottom:99.748400pt;}
.y92{bottom:100.989200pt;}
.yad{bottom:104.947067pt;}
.y91{bottom:106.187867pt;}
.y66{bottom:106.534800pt;}
.y124{bottom:107.588400pt;}
.yc9{bottom:109.430667pt;}
.y101{bottom:110.129467pt;}
.yf4{bottom:111.675600pt;}
.yac{bottom:118.747067pt;}
.y24{bottom:119.636267pt;}
.y90{bottom:119.987867pt;}
.y65{bottom:122.534800pt;}
.y123{bottom:123.588400pt;}
.y100{bottom:124.529467pt;}
.yf3{bottom:127.675600pt;}
.y23{bottom:132.436267pt;}
.yab{bottom:137.745867pt;}
.y64{bottom:138.534800pt;}
.yff{bottom:138.929467pt;}
.y8f{bottom:138.986533pt;}
.y122{bottom:139.588400pt;}
.yaa{bottom:142.944533pt;}
.yf2{bottom:143.675600pt;}
.y8e{bottom:144.185200pt;}
.y63{bottom:154.534800pt;}
.y121{bottom:155.588400pt;}
.ya9{bottom:156.744533pt;}
.y8d{bottom:157.985200pt;}
.yf1{bottom:159.675600pt;}
.y62{bottom:170.534800pt;}
.y120{bottom:171.588400pt;}
.y2e{bottom:174.566267pt;}
.yf0{bottom:175.675600pt;}
.ya8{bottom:175.743200pt;}
.y8c{bottom:176.983867pt;}
.ya7{bottom:180.941867pt;}
.y8b{bottom:182.182667pt;}
.y61{bottom:186.534800pt;}
.y11f{bottom:187.588400pt;}
.y2d{bottom:190.566267pt;}
.yef{bottom:191.675600pt;}
.ya6{bottom:194.741867pt;}
.y8a{bottom:195.982667pt;}
.y60{bottom:202.534800pt;}
.y11e{bottom:203.588400pt;}
.y2c{bottom:206.566267pt;}
.yee{bottom:207.675600pt;}
.ya5{bottom:213.740667pt;}
.y87{bottom:214.981333pt;}
.y5f{bottom:218.534800pt;}
.y11d{bottom:219.588400pt;}
.y2b{bottom:222.566267pt;}
.yed{bottom:223.675600pt;}
.y88{bottom:228.781333pt;}
.y89{bottom:228.992267pt;}
.ya4{bottom:232.739333pt;}
.y86{bottom:233.980000pt;}
.y5e{bottom:234.534800pt;}
.y11c{bottom:235.588400pt;}
.y2a{bottom:238.566267pt;}
.yec{bottom:239.675600pt;}
.ya3{bottom:246.539333pt;}
.y85{bottom:247.780000pt;}
.y5d{bottom:250.534800pt;}
.y11b{bottom:251.588400pt;}
.y29{bottom:254.566267pt;}
.yeb{bottom:255.675600pt;}
.ya2{bottom:265.538000pt;}
.y5c{bottom:266.534800pt;}
.y84{bottom:266.778667pt;}
.y11a{bottom:267.588400pt;}
.y28{bottom:270.566267pt;}
.yea{bottom:271.675600pt;}
.y5b{bottom:282.534800pt;}
.y119{bottom:283.588400pt;}
.y27{bottom:286.566267pt;}
.ye9{bottom:287.675600pt;}
.ya1{bottom:298.052933pt;}
.y5a{bottom:298.534800pt;}
.yc6{bottom:299.545867pt;}
.y118{bottom:299.588400pt;}
.y26{bottom:302.566267pt;}
.ye8{bottom:303.675600pt;}
.y83{bottom:304.201733pt;}
.y82{bottom:309.400400pt;}
.y59{bottom:314.534800pt;}
.y117{bottom:315.588400pt;}
.y9f{bottom:316.956000pt;}
.ya0{bottom:316.967733pt;}
.ye7{bottom:319.675600pt;}
.y81{bottom:323.200400pt;}
.y14f{bottom:330.521733pt;}
.y58{bottom:330.534800pt;}
.y9e{bottom:330.756000pt;}
.y116{bottom:331.588400pt;}
.yc5{bottom:333.933333pt;}
.ye6{bottom:335.675600pt;}
.y80{bottom:342.199200pt;}
.y14e{bottom:346.521733pt;}
.y57{bottom:346.534800pt;}
.y7f{bottom:347.397867pt;}
.y115{bottom:347.588400pt;}
.y22{bottom:347.797600pt;}
.y9d{bottom:349.670667pt;}
.yc4{bottom:349.933333pt;}
.ye5{bottom:351.675600pt;}
.yc8{bottom:353.401467pt;}
.y7e{bottom:361.197867pt;}
.y21{bottom:362.197600pt;}
.y14d{bottom:362.521733pt;}
.y56{bottom:362.534800pt;}
.y114{bottom:363.588400pt;}
.yc3{bottom:365.933333pt;}
.ye4{bottom:367.675600pt;}
.yc7{bottom:367.801467pt;}
.y9b{bottom:368.573733pt;}
.y9c{bottom:368.585467pt;}
.y20{bottom:376.597600pt;}
.y14c{bottom:378.521733pt;}
.y55{bottom:378.534800pt;}
.y113{bottom:379.588400pt;}
.y7d{bottom:380.196533pt;}
.yc2{bottom:381.933333pt;}
.y9a{bottom:382.373733pt;}
.ye3{bottom:383.675600pt;}
.y7c{bottom:385.395200pt;}
.y1f{bottom:390.997600pt;}
.y14b{bottom:394.521733pt;}
.y54{bottom:394.534800pt;}
.y112{bottom:395.588400pt;}
.yc1{bottom:397.933333pt;}
.y7b{bottom:399.195200pt;}
.ye2{bottom:399.675600pt;}
.y99{bottom:401.288400pt;}
.y1e{bottom:405.397600pt;}
.y98{bottom:406.403067pt;}
.y14a{bottom:410.521733pt;}
.y53{bottom:410.534800pt;}
.y111{bottom:411.588400pt;}
.yc0{bottom:413.933333pt;}
.ye1{bottom:415.675600pt;}
.y78{bottom:418.193867pt;}
.y1d{bottom:419.797600pt;}
.y97{bottom:420.203067pt;}
.y149{bottom:426.521733pt;}
.y52{bottom:426.534800pt;}
.y110{bottom:427.588400pt;}
.ybf{bottom:429.933333pt;}
.ye0{bottom:431.675600pt;}
.y79{bottom:431.994000pt;}
.y7a{bottom:432.204933pt;}
.y1c{bottom:434.197600pt;}
.y77{bottom:437.192667pt;}
.y96{bottom:439.117733pt;}
.y148{bottom:442.521733pt;}
.y51{bottom:442.534800pt;}
.y10f{bottom:443.588400pt;}
.ybe{bottom:445.933333pt;}
.ydf{bottom:447.675600pt;}
.y1b{bottom:448.597600pt;}
.y76{bottom:450.992667pt;}
.y95{bottom:458.032533pt;}
.y147{bottom:458.521733pt;}
.y50{bottom:458.534800pt;}
.ybd{bottom:461.933333pt;}
.y1a{bottom:462.997600pt;}
.yde{bottom:463.675600pt;}
.y75{bottom:469.991333pt;}
.y94{bottom:471.832533pt;}
.y146{bottom:474.521733pt;}
.y4f{bottom:474.534800pt;}
.y10e{bottom:477.188400pt;}
.y19{bottom:477.397600pt;}
.ybc{bottom:477.933333pt;}
.ydd{bottom:479.675600pt;}
.y145{bottom:490.521733pt;}
.y4e{bottom:490.534800pt;}
.y93{bottom:490.789200pt;}
.y18{bottom:491.797600pt;}
.ybb{bottom:493.933333pt;}
.ydc{bottom:495.675600pt;}
.y17{bottom:506.197600pt;}
.y144{bottom:506.521733pt;}
.y4d{bottom:506.534800pt;}
.y74{bottom:508.014400pt;}
.y10d{bottom:509.188400pt;}
.yba{bottom:509.933333pt;}
.ydb{bottom:511.675600pt;}
.y73{bottom:513.213067pt;}
.y143{bottom:522.521733pt;}
.y4c{bottom:522.534800pt;}
.y10c{bottom:525.188400pt;}
.yb9{bottom:525.933333pt;}
.y72{bottom:527.013067pt;}
.yda{bottom:527.675600pt;}
.y16{bottom:534.997600pt;}
.y142{bottom:538.521733pt;}
.y4b{bottom:538.534800pt;}
.y10b{bottom:541.188400pt;}
.yb8{bottom:541.933333pt;}
.yd9{bottom:543.675600pt;}
.y71{bottom:546.011733pt;}
.y15{bottom:549.397600pt;}
.y70{bottom:551.210400pt;}
.y141{bottom:554.521733pt;}
.y4a{bottom:554.534800pt;}
.y10a{bottom:557.188400pt;}
.yb7{bottom:557.933333pt;}
.yd8{bottom:559.675600pt;}
.y14{bottom:563.797600pt;}
.y6f{bottom:565.010400pt;}
.y140{bottom:570.521733pt;}
.y49{bottom:570.534800pt;}
.y109{bottom:573.188400pt;}
.yb6{bottom:573.933333pt;}
.yd7{bottom:575.675600pt;}
.y13{bottom:578.197600pt;}
.y6e{bottom:584.009200pt;}
.y13f{bottom:586.521733pt;}
.y48{bottom:586.534800pt;}
.y108{bottom:589.188400pt;}
.y6d{bottom:589.207867pt;}
.yb5{bottom:589.933333pt;}
.yfe{bottom:591.662533pt;}
.yd6{bottom:591.675600pt;}
.y12{bottom:592.597600pt;}
.y13e{bottom:602.521733pt;}
.y47{bottom:602.534800pt;}
.y6c{bottom:603.007867pt;}
.y107{bottom:605.188400pt;}
.yb4{bottom:605.933333pt;}
.y11{bottom:606.997600pt;}
.yfd{bottom:607.662533pt;}
.yd5{bottom:607.675600pt;}
.y13d{bottom:618.521733pt;}
.y46{bottom:618.534800pt;}
.y106{bottom:621.188400pt;}
.y10{bottom:621.397600pt;}
.yb3{bottom:621.933333pt;}
.y69{bottom:622.006533pt;}
.yfc{bottom:623.662533pt;}
.yd4{bottom:623.675600pt;}
.y13c{bottom:634.521733pt;}
.y45{bottom:634.534800pt;}
.yf{bottom:635.797600pt;}
.y6a{bottom:635.806533pt;}
.y6b{bottom:636.017467pt;}
.y105{bottom:637.188400pt;}
.yb2{bottom:637.933333pt;}
.yfb{bottom:639.662533pt;}
.yd3{bottom:639.675600pt;}
.y68{bottom:641.005200pt;}
.ye{bottom:650.197600pt;}
.y13b{bottom:650.521733pt;}
.y44{bottom:650.534800pt;}
.y104{bottom:653.188400pt;}
.yb1{bottom:653.933333pt;}
.yfa{bottom:655.662533pt;}
.yd2{bottom:655.675600pt;}
.y67{bottom:660.004000pt;}
.yd{bottom:664.597600pt;}
.y13a{bottom:666.521733pt;}
.y43{bottom:666.534800pt;}
.y103{bottom:669.188400pt;}
.yf9{bottom:671.662533pt;}
.yd1{bottom:671.675600pt;}
.yc{bottom:678.997600pt;}
.y139{bottom:682.521733pt;}
.y42{bottom:682.534800pt;}
.yf8{bottom:687.662533pt;}
.yd0{bottom:687.675600pt;}
.yb{bottom:693.397600pt;}
.y138{bottom:698.521733pt;}
.y41{bottom:698.534800pt;}
.y127{bottom:698.668533pt;}
.yb0{bottom:700.866667pt;}
.yf7{bottom:703.662533pt;}
.ycf{bottom:703.675600pt;}
.ya{bottom:707.797600pt;}
.y126{bottom:713.068533pt;}
.y137{bottom:714.521733pt;}
.y40{bottom:714.534800pt;}
.yaf{bottom:715.266667pt;}
.yf6{bottom:719.662533pt;}
.yce{bottom:719.675600pt;}
.y125{bottom:727.468533pt;}
.y136{bottom:730.521733pt;}
.y3f{bottom:730.534800pt;}
.y135{bottom:746.521733pt;}
.y3e{bottom:746.534800pt;}
.y9{bottom:757.397600pt;}
.ycd{bottom:759.961467pt;}
.y134{bottom:762.521733pt;}
.y3d{bottom:762.534800pt;}
.y8{bottom:771.797600pt;}
.ycc{bottom:774.361467pt;}
.y133{bottom:778.521733pt;}
.y3c{bottom:778.534800pt;}
.y7{bottom:787.797600pt;}
.y132{bottom:794.521733pt;}
.y3b{bottom:794.534800pt;}
.y6{bottom:803.797600pt;}
.y131{bottom:810.521733pt;}
.y3a{bottom:810.534800pt;}
.y130{bottom:826.521733pt;}
.y39{bottom:826.534800pt;}
.y12f{bottom:842.521733pt;}
.y38{bottom:842.534800pt;}
.y5{bottom:854.997600pt;}
.y12e{bottom:858.521733pt;}
.y37{bottom:858.534800pt;}
.y12d{bottom:874.521733pt;}
.y36{bottom:874.534800pt;}
.y12c{bottom:890.521733pt;}
.y35{bottom:890.534800pt;}
.y12b{bottom:906.521733pt;}
.y34{bottom:906.534800pt;}
.y12a{bottom:922.521733pt;}
.y33{bottom:922.534800pt;}
.y129{bottom:938.521733pt;}
.y32{bottom:938.534800pt;}
.y4{bottom:953.115867pt;}
.y128{bottom:954.521733pt;}
.y31{bottom:954.534800pt;}
.ycb{bottom:955.459200pt;}
.y3{bottom:967.515867pt;}
.y2{bottom:981.915867pt;}
.y30{bottom:994.423733pt;}
.h6{height:29.645833pt;}
.h5{height:33.328125pt;}
.h2{height:33.351562pt;}
.hc{height:33.397962pt;}
.hb{height:33.398496pt;}
.h8{height:34.171858pt;}
.h9{height:36.510417pt;}
.h11{height:37.031250pt;}
.h7{height:37.057292pt;}
.ha{height:37.968317pt;}
.h10{height:39.077592pt;}
.hf{height:39.078125pt;}
.hd{height:41.882812pt;}
.he{height:41.929746pt;}
.h4{height:46.536458pt;}
.h3{height:76.266667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.600000pt;}
.x2b{left:77.608267pt;}
.x21{left:78.623467pt;}
.x11{left:80.933200pt;}
.x2a{left:88.188933pt;}
.x2{left:92.328533pt;}
.x9{left:98.257200pt;}
.x2c{left:99.463333pt;}
.x8{left:113.390533pt;}
.x7{left:136.057200pt;}
.x22{left:155.473867pt;}
.x12{left:175.666533pt;}
.x24{left:218.827867pt;}
.x1b{left:231.122267pt;}
.x14{left:248.126933pt;}
.x1a{left:250.174000pt;}
.xc{left:265.678800pt;}
.x17{left:278.325600pt;}
.x13{left:280.502933pt;}
.x25{left:335.207733pt;}
.x1d{left:344.508000pt;}
.x26{left:355.153067pt;}
.x1c{left:363.893733pt;}
.xa{left:410.083733pt;}
.x16{left:414.864933pt;}
.x18{left:424.227600pt;}
.x15{left:426.410800pt;}
.x19{left:431.349600pt;}
.xb{left:432.750400pt;}
.x27{left:442.936400pt;}
.x28{left:449.706933pt;}
.x1f{left:468.560933pt;}
.x1e{left:479.608667pt;}
.x5{left:496.576667pt;}
.x29{left:548.257867pt;}
.x6{left:552.246533pt;}
.x4{left:556.225067pt;}
.x20{left:568.312800pt;}
.xd{left:571.505733pt;}
.x3{left:582.273333pt;}
.xe{left:655.949600pt;}
.x10{left:657.224133pt;}
.x23{left:667.045467pt;}
.xf{left:712.776800pt;}
}

